*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-dark: #8a6d2e;
  --crimson: #7a1c1c;
  --crimson-light: #a02828;
  --dark: #0e0c0a;
  --dark-mid: #1a1612;
  --dark-warm: #231e18;
  --parchment: #f0e8d8;
  --parchment-light: #f8f3ea;
  --text-light: #d4c8b0;
  --text-mid: #8a7d68;
}

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--parchment);
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.125rem;
  line-height: 1.7;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 3rem;
  background: linear-gradient(to bottom, rgba(14,12,10,.97), transparent);
  transition: background .3s;
}
nav.scrolled { background: rgba(14,12,10,.98); border-bottom: 1px solid rgba(201,168,76,.2); }

.nav-logo {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-family: 'Cinzel', serif;
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-light);
  text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span { display: block; width: 26px; height: 2px; background: var(--gold); transition: all .3s; }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(14,12,10,.98);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity .3s ease, transform .3s ease;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.mobile-menu a {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  letter-spacing: .12em;
  color: var(--parchment);
  text-decoration: none;
  text-transform: uppercase;
  padding: .5rem 0;
  width: 65%;
  text-align: center;
  border-bottom: 1px solid rgba(201,168,76,.15);
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--gold); }
.close-btn {
  position: absolute;
  top: 1.2rem; right: 1.5rem;
  background: none; border: none;
  color: var(--gold); font-size: 2rem;
  cursor: pointer; padding: .3rem .6rem; line-height: 1;
}

/* SECTIONS */
section { padding: 7rem 2rem; }

.section-label {
  font-family: 'Cinzel', serif;
  font-size: .65rem;
  letter-spacing: .5em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--parchment);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.ornament-line {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.ornament-line::before, .ornament-line::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,.4));
}
.ornament-line::after { background: linear-gradient(to left, transparent, rgba(201,168,76,.4)); }
.ornament-diamond { width: 8px; height: 8px; background: var(--gold); transform: rotate(45deg); flex-shrink: 0; }

/* BUTTONS */
.btn-primary {
  font-family: 'Cinzel', serif;
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--dark);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border: none;
  padding: .9rem 2.2rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all .25s;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.btn-primary:hover { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); transform: translateY(-2px); }

.btn-secondary {
  font-family: 'Cinzel', serif;
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  background: transparent;
  border: 1px solid rgba(201,168,76,.5);
  padding: .9rem 2.2rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all .25s;
}
.btn-secondary:hover { border-color: var(--gold); background: rgba(201,168,76,.08); }

/* FOOTER */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(201,168,76,.1);
  padding: 2.5rem 2rem;
  text-align: center;
}
.footer-logo { font-family: 'Cinzel', serif; font-size: 1.1rem; color: var(--gold); letter-spacing: .2em; margin-bottom: .8rem; }
footer p { color: var(--text-mid); font-size: .85rem; }
.footer-links { display: flex; gap: 2rem; justify-content: center; margin-top: 1rem; flex-wrap: wrap; }
.footer-links a {
  font-family: 'Cinzel', serif;
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  transition: color .2s;
}
.footer-links a:hover { color: var(--gold); }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 600px) {
  section { padding: 5rem 1.2rem; }
}
