/* ============================================================
   THE VOW NANNY — Luxury Redesign 2026-05-09
   White / Black / Gold — Aesop aesthetic
   ============================================================ */

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  --white:       #ffffff;
  --off-white:   #fafaf8;
  --cream:       #f5f0e8;
  --black:       #000000;
  --ink:         #1a1a1a;
  --text:        #1a1a1a;
  --text-mid:    #4a4a4a;
  --text-light:  #7a7a7a;
  --gold:        #c4a265;
  --gold-light:  #d4b07a;
  --gold-dark:   #a8885a;
  --border:      #e8e4dd;
  --border-soft: #f0ebe3;

  --font-display: 'Cormorant Infant', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;

  --r:    4px;
  --gap:  clamp(2rem, 5vw, 4rem);
  --section-pad: clamp(5rem, 10vw, 9rem);
  --max-w: 1200px;
}

/* ── Base ────────────────────────────────────────────────── */
body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.03em;
  color: var(--text);
}

h2 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); font-weight: 500; }
h4 { font-size: 1.1rem; font-weight: 500; letter-spacing: 0.04em; }

em { font-style: italic; color: var(--gold); }

p { color: var(--text-mid); font-size: 0.95rem; line-height: 1.8; }

/* ── Layout ──────────────────────────────────────────────── */
.container {
  width: 90%;
  max-width: var(--max-w);
  margin-inline: auto;
}
.container--narrow { max-width: 640px; text-align: center; }

/* ── NAV ─────────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s ease, border-bottom 0.3s ease, box-shadow 0.3s ease;
  background: transparent;
}

#nav.nav--solid {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 5%;
  max-width: calc(var(--max-w) + 10%);
  margin-inline: auto;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--white);
  transition: color 0.3s;
}
#nav.nav--solid .nav-logo { color: var(--text); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links li a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}
.nav-links li a:hover { color: var(--gold-light); }
#nav.nav--solid .nav-links li a { color: var(--text); }
#nav.nav--solid .nav-links li a:hover { color: var(--gold); }

.nav-cta {
  padding: 0.45rem 1.2rem !important;
  border: 1px solid rgba(255,255,255,0.5) !important;
  color: var(--white) !important;
  border-radius: 2px;
  transition: background 0.2s, border-color 0.2s, color 0.2s !important;
}
.nav-cta:hover {
  background: var(--white) !important;
  color: var(--text) !important;
}
#nav.nav--solid .nav-cta {
  border-color: var(--gold) !important;
  color: var(--gold) !important;
}
#nav.nav--solid .nav-cta:hover {
  background: var(--gold) !important;
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--white);
  cursor: pointer;
  line-height: 1;
}
#nav.nav--solid .nav-toggle { color: var(--text); }

/* ── HERO ────────────────────────────────────────────────── */
#hero {
  min-height: 100dvh;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 5% 6rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

/* Subtle texture on hero */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.02'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.4;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 300;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 14vw, 12rem);
  font-weight: 300;
  line-height: 0.92;
  color: var(--text);
  letter-spacing: 0.02em;
}
.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}

.hero-rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0.4rem auto;
  opacity: 0.5;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  color: var(--text-light);
  font-weight: 300;
  letter-spacing: 0.04em;
}

.hero-sub {
  font-size: 0.9rem;
  color: var(--text-mid);
  max-width: 380px;
  line-height: 1.7;
  margin-top: 0.3rem;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  margin-top: 0.8rem;
  padding: 0.85rem 2.4rem;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}
.btn-primary.btn--lg { padding: 1rem 3rem; font-size: 0.8rem; }

.btn-outline {
  display: inline-block;
  padding: 0.85rem 2.4rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
  background: transparent;
  cursor: pointer;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
}

/* ── SECTIONS ────────────────────────────────────────────── */
.section {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.section--ink {
  background: var(--white);
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.section--ink h2 { color: var(--text); }
.section--ink p { color: var(--text-mid); }
.section--ink .section-label { color: var(--gold); }

.section--warm {
  background: var(--cream);
}

.section--cta {
  text-align: center;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.section--cta h2 { color: var(--text); }
.section--cta > .container > p {
  color: var(--text-mid);
  margin-bottom: 1.5rem;
  margin-top: 1rem;
}

.section-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.section-label--light { color: var(--gold); }

.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-header h2 { max-width: 520px; }

/* ── SPLIT (ABOUT) ───────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.split-text h2 { margin-bottom: 1.5rem; }
.split-text p + p { margin-top: 1rem; }

.split-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.founder-frame {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 2px;
  max-width: 420px;
  width: 100%;
  display: block;
  position: relative;
}
.founder-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s ease;
  display: block;
}
.founder-frame:hover img { transform: scale(1.02); }

/* Credential text below founder photo — Jost Light, uppercase, gold, no icons, no absolute positioning */
.founder-credentials-text {
  margin-top: 16px;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  position: static;
}

/* ── WHY / SERVICES — Editorial scroll layout ─────────────── */
.section--why {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.why-header {
  text-align: center;
  padding-top: 0;
}

.why-list {
  display: flex;
  flex-direction: column;
}

.why-item {
  padding: 5rem 0;
  border-top: 1px solid var(--border-soft);
}
.why-item:last-child {
  border-bottom: 1px solid var(--border-soft);
}

.why-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin-bottom: 0;
}

.why-rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 12px 0;
}

.why-desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  color: #555555;
  max-width: 520px;
  line-height: 1.7;
}

@media (max-width: 600px) {
  .why-title { font-size: 1.5rem; }
  .why-item { padding: 3.5rem 0; text-align: center; }
  .why-rule { margin: 12px auto; }
  .why-desc { max-width: 100%; }
}

/* ── PRICING — Editorial service descriptions ─────────────── */
.section--pricing {
  background: var(--white);
}

.packages-list {
  display: flex;
  flex-direction: column;
  margin-bottom: 5rem;
}

.package-item {
  padding: 5rem 0;
  border-top: 1px solid var(--border-soft);
}
.package-item:last-child {
  border-bottom: 1px solid var(--border-soft);
}

.package-item--warm { background: #fafafa; }

.package-inner {
  max-width: 800px;
}

.package-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin-bottom: 0;
}

.package-rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 12px 0;
}

.package-desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.05rem;
  color: #555555;
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 0;
}

.package-price {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 16px;
  margin-bottom: 1.5rem;
}

.pricing-addenda {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.addendum {
  border-left: 2px solid var(--gold);
  padding: 1.2rem 1.5rem;
  background: var(--off-white);
}
.addendum h4 {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.addendum p {
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--text-mid);
}
.addendum strong { color: var(--text); }

@media (max-width: 600px) {
  .package-name { font-size: 1.6rem; }
  .package-item { padding: 3.5rem 0; text-align: center; }
  .package-rule { margin: 12px auto; }
  .package-desc { max-width: 100%; }
  .package-inner { max-width: 100%; }
  .pricing-addenda { grid-template-columns: 1fr; }
}

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2rem;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow 0.2s;
}
.testimonial:hover { box-shadow: 0 6px 30px rgba(0,0,0,0.07); }

.testimonial-stars {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.15em;
}

.testimonial p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  line-height: 1.65;
  color: var(--text);
  flex: 1;
}

.testimonial footer cite {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--text-light);
  font-style: normal;
}

/* ── CTA EMAIL ───────────────────────────────────────────── */
.cta-email {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--text-light) !important;
}
.cta-email a {
  color: var(--gold);
  border-bottom: 1px solid rgba(196, 162, 101, 0.3);
  transition: border-color 0.2s;
}
.cta-email a:hover { border-color: var(--gold); }

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
  padding-bottom: 3rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
}
.footer-brand p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.7;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-self: center;
}
.footer-nav a {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--gold); }

.footer-contact {
  text-align: right;
}
.footer-contact a {
  font-size: 0.82rem;
  color: var(--gold);
  border-bottom: 1px solid rgba(196, 162, 101, 0.3);
  transition: border-color 0.2s;
}
.footer-contact a:hover { border-color: var(--gold); }

.footer-rule {
  width: 90%;
  max-width: var(--max-w);
  margin: 0 auto;
  height: 1px;
  background: var(--border);
}

.footer-bottom {
  padding-top: 1.5rem;
  text-align: center;
}
.footer-bottom p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--text-light);
}

/* ── SCROLL REVEAL ───────────────────────────────────────── */
.will-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.will-reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Stagger siblings */
.why-item:nth-child(2) { transition-delay: 0.06s; }
.why-item:nth-child(3) { transition-delay: 0.12s; }
.why-item:nth-child(4) { transition-delay: 0.06s; }
.why-item:nth-child(5) { transition-delay: 0.12s; }
.why-item:nth-child(6) { transition-delay: 0.18s; }

.package-item:nth-child(2) { transition-delay: 0.08s; }
.package-item:nth-child(3) { transition-delay: 0.16s; }

.testimonials-grid .testimonial:nth-child(2) { transition-delay: 0.1s; }
.testimonials-grid .testimonial:nth-child(3) { transition-delay: 0.2s; }

/* ── MOBILE ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .split { grid-template-columns: 1fr; }
  .split-visual { order: -1; }
  .founder-frame { max-width: 100%; aspect-ratio: 4/3; }
  .pricing-addenda { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-contact { text-align: left; }
}

@media (max-width: 600px) {
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--text);
    border-top: 1px solid var(--border);
    padding: 1rem 5%;
  }
  .nav-links.nav-links--open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links li a {
    display: block;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--white) !important;
  }
  .nav-cta { border: none !important; }

  .nav-toggle { display: block; }

  .hero-title { font-size: clamp(3.5rem, 18vw, 6rem); }

  .testimonials-grid { grid-template-columns: 1fr; }
}
