/* Fonts loaded via <link> in each HTML file */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --plum-deep:   #2E1229;
  --plum:        #4A2040;
  --burgundy:    #7B2D3E;
  --dark:        #1A0F0A;
  --ember:       #3D1A0A;
  --gold:        #C8922A;
  --gold-light:  #E8B84B;
  --honey:       #E8923A;
  --honey-light: #F5B469;
  --apricot:     #F2A86F;
  --parchment:   #EAD9B8;
  --cream:       #F5ECD7;
  --glow:        #FDE8C8;
  --text-dark:   #2C1810;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  background: var(--dark);
  color: var(--parchment);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(26, 15, 10, 0.92);
  border-bottom: 1px solid rgba(232, 146, 58, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: padding 0.4s;
}

nav.scrolled {
  padding: 16px 56px;
  border-bottom-color: rgba(232, 146, 58, 0.15);
}

.nav-logo {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  color: var(--honey-light);
}

.nav-links {
  display: flex;
  gap: 48px;
  list-style: none;
}

.nav-links a {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.58rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--parchment);
  opacity: 0.6;
  transition: opacity 0.3s, color 0.3s;
}

.nav-links a:hover { opacity: 1; }
.nav-links a.active { opacity: 1; color: var(--honey); }

.nav-cta {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  padding: 10px 28px;
  background: transparent;
  color: var(--honey);
  border: 1px solid rgba(232, 146, 58, 0.4);
  transition: all 0.3s;
}
.nav-cta:hover {
  background: rgba(232, 146, 58, 0.1);
  border-color: var(--honey);
}

/* ── BUTTONS ── */
.btn-primary {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  padding: 16px 44px;
  background: var(--honey);
  color: var(--dark);
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  display: inline-block;
}
.btn-primary:hover { background: var(--honey-light); }

.btn-ghost {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  padding: 15px 44px;
  background: transparent;
  color: var(--parchment);
  border: 1px solid rgba(234, 217, 184, 0.28);
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
}
.btn-ghost:hover { border-color: rgba(234, 217, 184, 0.7); color: var(--cream); }

/* ── DIVIDER ── */
.honey-line {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--honey), transparent);
  margin: 0 auto;
}

/* ── SECTION TRANSITIONS ── */
.band {
  height: 100px;
}
.band-dark-to-plum {
  background: linear-gradient(to bottom, var(--dark), var(--plum-deep));
}
.band-plum-to-ember {
  background: linear-gradient(to bottom, var(--plum-deep), var(--ember));
}
.band-ember-to-dark {
  background: linear-gradient(to bottom, var(--ember), var(--dark));
}
.band-dark-to-burgundy {
  background: linear-gradient(to bottom, var(--dark), #3A0F1E);
}
.band-burgundy-to-plum {
  background: linear-gradient(to bottom, #3A0F1E, var(--plum-deep));
}

/* ── TOP BORDER RULES ── */
.top-honey::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--honey), transparent);
}
.top-gold::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ── EYEBROW ── */
.eyebrow {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.58rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--honey);
  opacity: 0.65;
  margin-bottom: 20px;
  display: block;
}

/* ── SECTION TITLE ── */
.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.25;
  color: var(--gold-light);
  margin-bottom: 16px;
}

/* ── SECTION SUB ── */
.section-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--apricot);
  opacity: 0.8;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* ── BODY COPY ── */
.body-copy {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 2;
  color: var(--parchment);
  opacity: 0.72;
}

/* ── FADE IN ── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(232, 146, 58, 0.08);
  padding: 64px 56px 48px;
  text-align: center;
}

.footer-logo {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  color: var(--honey-light);
  margin-bottom: 12px;
}

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--parchment);
  opacity: 0.4;
  margin-bottom: 36px;
}

.footer-links {
  display: flex;
  gap: 36px;
  justify-content: center;
  list-style: none;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.footer-links a {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--parchment);
  opacity: 0.35;
  transition: opacity 0.3s;
}
.footer-links a:hover { opacity: 0.8; }

.footer-copy {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--parchment);
  opacity: 0.2;
}

/* ── MOBILE ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--parchment);
  opacity: 0.7;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(26, 15, 10, 0.98);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 44px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.68rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--parchment);
  opacity: 0.65;
  transition: opacity 0.3s, color 0.3s;
}
.mobile-menu a:hover { opacity: 1; color: var(--honey); }

@media (max-width: 860px) {
  nav { padding: 20px 28px; }
  nav.scrolled { padding: 14px 28px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  footer { padding: 48px 28px 36px; }
}
