/* ═══════════════════════════════════════════
   BELLE AVENUE CONSULTING — SHARED STYLES
   Deep Forest Palette
═══════════════════════════════════════════ */

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

:root {
  --forest:    #1A2416;
  --pine:      #2C3E28;
  --sage:      #4A7A5A;
  --sage-lt:   #6E9E7E;
  --mist:      #C5D4C0;
  --mist-lt:   #E4EDE1;
  --amber:     #9E6B3A;
  --amber-lt:  #C49060;
  --linen:     #F4F0E8;
  --linen-dk:  #EAE4D8;
  --white:     #FDFCF9;
  --ink:       #1A2416;
  --ink-mid:   #4A5A44;
  --ink-lt:    #8A9E84;
  --rule:      1px solid #C5D4C0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  background: var(--linen);
  color: var(--ink);
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 5vw;
  background: rgba(244,240,232,0.96);
  backdrop-filter: blur(20px);
  border-bottom: var(--rule);
}

.logo {
  font-family: 'Cormorant', serif;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--forest);
  text-decoration: none;
}
.logo em { font-style: italic; color: var(--sage); }

.nav-links {
  display: flex; gap: 2.5rem; list-style: none;
}
.nav-links a {
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mid);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--sage); }

.nav-cta {
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  text-decoration: none;
  border-bottom: 1px solid var(--sage);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.nav-cta:hover { color: var(--amber); border-color: var(--amber); }

/* ─── STRIP ─── */
.strip {
  background: var(--pine);
  padding: 1.1rem 5vw;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.strip-item {
  display: flex; align-items: center;
  flex: 1; justify-content: center;
}
.strip-text {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--mist);
  opacity: 0.7;
  white-space: nowrap;
}
.strip-dot {
  width: 3px; height: 3px;
  background: var(--sage);
  border-radius: 50%;
  margin: 0 2rem;
  opacity: 0.5;
  flex-shrink: 0;
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  padding: 12rem 5vw 6rem;
  background: var(--linen);
  border-bottom: var(--rule);
  position: relative;
  overflow: hidden;
}
.page-hero-wm {
  position: absolute;
  right: -2vw; top: 50%;
  transform: translateY(-50%);
  font-family: 'Cormorant', serif;
  font-size: 30vw;
  font-weight: 600;
  color: var(--mist);
  opacity: 0.18;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}
.page-hero-label {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.page-hero-label::before {
  content: '';
  width: 1.5rem; height: 1px;
  background: var(--sage); opacity: 0.6;
}
.page-hero h1 {
  font-family: 'Cormorant', serif;
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 300;
  line-height: 1;
  color: var(--forest);
  position: relative; z-index: 1;
}
.page-hero h1 em { font-style: italic; color: var(--sage); }
.page-hero h1 strong { font-weight: 600; color: var(--amber); font-style: normal; }
.page-hero-sub {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--ink-mid);
  line-height: 1.8;
  max-width: 50ch;
  margin-top: 2rem;
  position: relative; z-index: 1;
}

/* ─── SECTION SHARED ─── */
.section-label {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.section-label::before {
  content: '';
  width: 1.5rem; height: 1px;
  background: var(--sage); opacity: 0.6;
}

.link-arrow {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-lt);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s, gap 0.2s;
}
.link-arrow:hover { color: var(--sage); gap: 0.9rem; }
.link-arrow::after { content: '→'; }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--forest);
  padding: 1rem 2.2rem;
  text-decoration: none;
  border-radius: 100px;
  transition: background 0.3s, gap 0.25s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--sage); gap: 1.2rem; }

.btn-sage {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--sage);
  padding: 1rem 2.2rem;
  text-decoration: none;
  border-radius: 100px;
  transition: background 0.3s, gap 0.25s;
  border: none;
  cursor: pointer;
}
.btn-sage:hover { background: var(--forest); gap: 1.2rem; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  background: transparent;
  padding: 1.1rem 2.5rem;
  border-radius: 100px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.4);
  transition: background 0.3s, border-color 0.3s, gap 0.25s;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.8); gap: 1.4rem; }
.btn-outline::after { content: '→'; }

/* ─── CTA SECTION ─── */
.cta-section {
  padding: 10rem 5vw;
  background: var(--sage);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: 'B';
  position: absolute;
  bottom: -6rem; right: 2vw;
  font-family: 'Cormorant', serif;
  font-size: 40rem;
  font-weight: 600;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-overline {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.cta-overline::before, .cta-overline::after {
  content: ''; display: block;
  width: 2rem; height: 1px;
  background: rgba(255,255,255,0.3);
}
.cta-section h2 {
  font-family: 'Cormorant', serif;
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.2;
  max-width: 26ch;
  margin: 0 auto 1.5rem;
}
.cta-section h2 strong { font-style: normal; font-weight: 600; color: var(--amber-lt); }
.cta-section p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
  letter-spacing: 0.06em;
  margin-bottom: 3.5rem;
}

/* ─── FOOTER ─── */
footer {
  background: var(--forest);
  padding: 5rem 5vw 3rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 5vw;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2.5rem;
}
.footer-brand .logo {
  color: rgba(255,255,255,0.75);
  display: block;
  margin-bottom: 1.25rem;
}
.footer-brand .logo em { color: var(--sage-lt); }
.footer-tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  font-weight: 300;
  line-height: 2;
}
.footer-col-title {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1.5rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; }
.footer-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--mist); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.1em;
}

/* ─── REVEAL ─── */
.r {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.95s cubic-bezier(0.22,1,0.36,1),
              transform 0.95s cubic-bezier(0.22,1,0.36,1);
}
.r.in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.22s; }
.d3 { transition-delay: 0.34s; }
.d4 { transition-delay: 0.46s; }

/* ─── MOBILE ─── */
@media (max-width: 768px) {
  nav { padding: 1.2rem 5vw; }
  .nav-links { display: none; }
  .page-hero { padding: 9rem 5vw 4rem; }
  .footer-top { grid-template-columns: 1fr; gap: 3rem; }
}
