/* ─── RESET & BASE ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:      #F5F3EE;
  --cream-d:    #EAE7DF;
  --warm-mid:   #C8C2B6;
  --taupe:      #9A9289;
  --stone:      #6B6560;
  --ink:        #1A1815;
  --gold:       #C09A5C;
  --gold-l:     #D4B87A;
  --gold-d:     #8A6D3A;
  --line:       rgba(26,24,21,0.10);
  --line-s:     rgba(26,24,21,0.06);
  --ff-d: 'Cormorant Garamond', serif;
  --ff-b: 'Jost', sans-serif;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--ff-b);
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }

/* ─── NAV ─────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.75rem 5vw;
  background: rgba(245,243,238,0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: padding .4s ease;
}
.nav.scrolled { padding: 1.1rem 5vw; }

.nav-logo { display: flex; flex-direction: column; gap: 1px; }
.nav-logo-mark { display: flex; align-items: flex-end; gap: 4px; }
.nav-logo-livid {
  font-family: var(--ff-d);
  font-size: 1.6rem; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--ink); line-height: 1;
}
.nav-logo-home {
  font-family: var(--ff-b);
  font-size: 0.52rem; font-weight: 300;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--stone); padding-bottom: 4px;
}
.nav-logo-sub {
  font-family: var(--ff-b);
  font-size: 0.48rem; font-weight: 200;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--warm-mid);
}

.nav-links { display: flex; gap: 2.2rem; list-style: none; }
.nav-links li a {
  font-family: var(--ff-b);
  font-size: 0.67rem; font-weight: 300;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--stone);
  position: relative; padding: 0.2rem 0;
  transition: color .2s;
}
.nav-links li a::after {
  content: ''; position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.nav-links li a:hover,
.nav-links li a.active { color: var(--ink); }
.nav-links li a:hover::after,
.nav-links li a.active::after { transform: scaleX(1); }

.nav-cta {
  font-family: var(--ff-b);
  font-size: 0.62rem; font-weight: 300;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink); background: transparent;
  border: 1px solid var(--ink);
  padding: 0.65rem 1.6rem;
  transition: background .25s, color .25s;
}
.nav-cta:hover { background: var(--ink); color: var(--cream); }

/* hamburger */
.nav-burger {
  display: none; flex-direction: column;
  gap: 5px; background: none; border: none; padding: 4px;
}
.nav-burger span {
  display: block; width: 22px; height: 1px;
  background: var(--ink); transition: .3s;
}
.nav-mobile {
  display: none; position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--cream);
  z-index: 300; flex-direction: column;
  align-items: center; justify-content: center; gap: 2.5rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--ff-d);
  font-size: 2rem; font-weight: 300;
  letter-spacing: 0.1em; color: var(--ink);
}
.nav-mobile-close {
  position: absolute; top: 1.5rem; right: 5vw;
  background: none; border: none;
  font-size: 1.5rem; color: var(--stone); cursor: pointer;
}

/* ─── BUTTONS ─────────────────────────────────── */
.btn-primary {
  display: inline-block;
  font-family: var(--ff-b);
  font-size: 0.65rem; font-weight: 300;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--cream); background: var(--ink);
  border: 1px solid var(--ink);
  padding: 1rem 2.4rem;
  transition: background .25s, border-color .25s;
  cursor: pointer;
}
.btn-primary:hover { background: var(--gold-d); border-color: var(--gold-d); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--ff-b);
  font-size: 0.65rem; font-weight: 300;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--stone); background: none; border: none;
  cursor: pointer; transition: color .2s;
}
.btn-ghost::after { content: '→'; font-size: 0.85rem; transition: transform .2s; }
.btn-ghost:hover { color: var(--ink); }
.btn-ghost:hover::after { transform: translateX(4px); }

.btn-gold {
  display: inline-block;
  font-family: var(--ff-b);
  font-size: 0.62rem; font-weight: 300;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink); background: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.85rem 1.8rem;
  transition: background .25s; cursor: pointer;
}
.btn-gold:hover { background: var(--gold-l); border-color: var(--gold-l); }

/* ─── SHARED LAYOUT ───────────────────────────── */
.section { padding: 8rem 5vw; }
.section-sm { padding: 5rem 5vw; }

.section-label {
  font-family: var(--ff-b);
  font-size: 0.58rem; font-weight: 200;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.2rem; display: block;
}
.section-h2 {
  font-family: var(--ff-d);
  font-size: clamp(2rem, 3.2vw, 3.8rem);
  font-weight: 400; line-height: 1.15; color: var(--ink);
  margin-bottom: 1.5rem;
}
.section-h2 em { font-style: italic; }
.section-body {
  font-size: 0.9rem; font-weight: 300;
  line-height: 1.85; color: var(--stone); max-width: 580px;
}

.divider { height: 1px; background: var(--line); margin: 0 5vw; }
.gold-line { width: 40px; height: 1px; background: var(--gold); margin-bottom: 2rem; }

/* ─── PAGE HERO (dark) ───────────────────────── */
.page-hero {
  padding-top: 88px;
  background: var(--ink);
  min-height: 50vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-left: 5vw; padding-right: 5vw; padding-bottom: 5rem;
  position: relative; overflow: hidden;
}
.page-hero-pattern {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 40%; opacity: 0.06; pointer-events: none;
}
.page-hero .section-label { color: var(--gold); }
.page-hero-h1 {
  font-family: var(--ff-d);
  font-size: clamp(2.2rem, 4vw, 4.5rem);
  font-weight: 400; line-height: 1.12;
  color: var(--cream); max-width: 700px;
  margin-bottom: 1.5rem;
}
.page-hero-h1 em { font-style: italic; }
.page-hero-body {
  font-size: 0.9rem; font-weight: 300;
  line-height: 1.8; color: var(--warm-mid); max-width: 560px;
}

/* ─── CTA BANNER ─────────────────────────────── */
.cta-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center; gap: 4rem;
  padding: 6rem 5vw;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-banner-h {
  font-family: var(--ff-d);
  font-size: clamp(1.6rem, 2.5vw, 3rem);
  font-weight: 400; line-height: 1.2; color: var(--ink);
}
.cta-banner-h em { font-style: italic; color: var(--stone); }

/* ─── FOOTER ─────────────────────────────────── */
footer {
  background: var(--ink);
  padding: 4rem 5vw;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 2rem;
}
.footer-logo-txt {
  font-family: var(--ff-d);
  font-size: 1.1rem; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream);
}
.footer-logo-sub {
  font-family: var(--ff-b);
  font-size: 0.5rem; font-weight: 200;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--stone); margin-top: 3px;
}
.footer-claim {
  font-family: var(--ff-d);
  font-style: italic; font-size: 0.9rem; color: var(--taupe);
}
.footer-links { display: flex; gap: 2rem; list-style: none; flex-wrap: wrap; }
.footer-links li a {
  font-size: 0.58rem; font-weight: 200;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--stone); transition: color .2s;
}
.footer-links li a:hover { color: var(--warm-mid); }
.footer-copy {
  width: 100%;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem; margin-top: 0.5rem;
  font-size: 0.58rem; font-weight: 200;
  letter-spacing: 0.1em; color: var(--stone);
  display: flex; justify-content: space-between;
}

/* ─── FADE ANIMATIONS ────────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.d1 { transition-delay: .1s; }
.fade-up.d2 { transition-delay: .2s; }
.fade-up.d3 { transition-delay: .3s; }
.fade-up.d4 { transition-delay: .4s; }

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .cta-banner { grid-template-columns: 1fr; gap: 2rem; }
  footer { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .footer-claim { display: none; }
}
@media (max-width: 640px) {
  .section { padding: 5rem 1.5rem; }
  .page-hero { padding-left: 1.5rem; padding-right: 1.5rem; }
  .cta-banner { padding: 4rem 1.5rem; }
  footer { padding: 3rem 1.5rem; }
  .divider { margin: 0 1.5rem; }
}
