/* =================================================================
   Dream Accounting Inc. — MODERN ITERATION
   Warm ivory canvas · deep navy · refined gold accent
   Playfair Display + Inter · animated mesh hero · scroll motion
   ================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---------- Tokens ---------- */
:root {
  --navy:      #1B2A4A;
  --navy-deep: #111d36;
  --steel:     #4A7BA7;
  --medium:    #6B9DC2;
  --light:     #B8CDD9;
  --warm-grey: #8A9BAE;

  --ivory:     #F7F4ED;   /* warm page canvas      */
  --ivory-2:   #EFEAE0;   /* slightly deeper tint  */
  --cream-card:#FFFDF9;
  --gold:      #C49A5A;   /* refined brass accent  */
  --gold-soft: #D9BE8E;
  --ink:       #232f3e;
  --muted:     #5d6b7a;

  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --maxw: 1240px;
  --ease: 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-sm: 0 4px 24px rgba(27,42,74,0.07);
  --shadow-md: 0 24px 60px rgba(27,42,74,0.16);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--steel); text-decoration: none; }

/* ---------- Type ---------- */
h1,h2,h3,h4 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.12;
  margin: 0 0 0.5em;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
p  { margin: 0 0 1.15em; text-wrap: pretty; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: '';
  width: 26px;
  height: 1.5px;
  background: var(--gold);
}
.eyebrow.center { justify-content: center; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 28px; }
.section   { padding: clamp(64px, 8vw, 116px) 0; }
.narrow    { max-width: 820px; margin-inline: auto; }
.section-heading { text-align: center; margin-bottom: 3.4rem; }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  padding: 17px 36px;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease), background 0.3s, color 0.3s;
}
.btn svg { width: 17px; height: 17px; transition: transform 0.4s; }
.btn:hover svg { transform: translateX(4px); }

.btn-primary { background: var(--gold); color: #2a2113; box-shadow: 0 12px 30px rgba(196,154,90,0.32); }
.btn-primary:hover { background: var(--gold-soft); transform: translateY(-3px); box-shadow: 0 18px 40px rgba(196,154,90,0.42); }

.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-deep); transform: translateY(-3px); box-shadow: var(--shadow-md); }

.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: #fff; transform: translateY(-3px); }

/* =================================================================
   HEADER
   ================================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
  padding: 14px 0;
}
.site-header::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 190px;
  background: linear-gradient(to bottom, rgba(14,22,42,0.62) 0%, rgba(14,22,42,0.32) 42%, rgba(14,22,42,0) 100%);
  pointer-events: none;
  z-index: 0;
  opacity: 1;
  transition: opacity 0.4s;
}
.site-header.scrolled::before { opacity: 0; }
.site-header.scrolled {
  background: rgba(247,244,237,0.86);
  backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 1px 0 rgba(27,42,74,0.08);
}
.nav { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; min-height: 66px; }

.wordmark {
  display: inline-flex;
  align-items: center;
  position: relative;
  z-index: 2;
  transition: transform 0.3s;
}
.wordmark:hover { transform: translateY(-1px); }
.wordmark-logo { display: block; height: 64px; width: auto; }
.logo-dark { display: none; }
.site-header.scrolled .logo-light { display: none; }
.site-header.scrolled .logo-dark { display: block; }

.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  display: block;
  font-weight: 500;
  font-size: 0.96rem;
  color: rgba(255,255,255,0.92);
  padding: 9px 18px;
  border-radius: 100px;
  transition: color 0.3s, background 0.3s;
}
.site-header.scrolled .nav-links a { color: var(--navy); }
.nav-links a:hover { background: rgba(255,255,255,0.14); }
.site-header.scrolled .nav-links a:hover { background: rgba(27,42,74,0.06); }
.nav-links a.active { color: var(--gold); }
.site-header.scrolled .nav-links a.active { color: var(--gold); }
.nav-links .nav-cta {
  margin-left: 10px;
  background: var(--gold);
  color: #2a2113 !important;
  font-weight: 600;
}
.nav-links .nav-cta:hover { background: var(--gold-soft); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  background: none; border: none; cursor: pointer; padding: 0;
}
.nav-toggle span { display: block; width: 26px; height: 2px; background: #fff; border-radius: 2px; transition: transform var(--ease), opacity 0.3s, background 0.4s; }
.site-header.scrolled .nav-toggle span { background: var(--navy); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =================================================================
   ANIMATED MESH HERO
   ================================================================= */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--navy-deep);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero-mesh { position: absolute; inset: -25%; z-index: 0; }
.blob {
  position: absolute;
  width: 60vw; height: 60vw;
  border-radius: 50%;
  filter: blur(70px);
  mix-blend-mode: screen;
  opacity: 0.7;
  will-change: transform;
}
.blob.b1 { background: radial-gradient(circle, #4A7BA7, transparent 68%); top: -8%; left: -6%; animation: drift1 19s ease-in-out infinite; }
.blob.b2 { background: radial-gradient(circle, #6B9DC2, transparent 66%); bottom: -14%; right: -4%; animation: drift2 23s ease-in-out infinite; }
.blob.b3 { background: radial-gradient(circle, #2f5f8f, transparent 70%); top: 16%; right: 14%; width: 44vw; height: 44vw; animation: drift3 27s ease-in-out infinite; }
.blob.b4 { background: radial-gradient(circle, rgba(196,154,90,0.55), transparent 70%); bottom: 6%; left: 18%; width: 38vw; height: 38vw; opacity: 0.5; animation: drift1 31s ease-in-out infinite reverse; }

@keyframes drift1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(8%, 6%) scale(1.12); } }
@keyframes drift2 { 0%,100% { transform: translate(0,0) scale(1.05); } 50% { transform: translate(-7%, -5%) scale(0.92); } }
@keyframes drift3 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-6%, 8%) scale(1.15); } }

/* subtle dark vignette + fine grid for depth */
.hero-veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(120% 90% at 50% 0%, transparent 40%, rgba(10,18,33,0.55) 100%),
    linear-gradient(180deg, rgba(10,18,33,0.45) 0%, transparent 30%, rgba(10,18,33,0.35) 100%);
}
.hero .container { position: relative; z-index: 2; width: 100%; }

@media (prefers-reduced-motion: reduce) {
  .blob { animation: none !important; }
}

/* ----- Home hero ----- */
.hero-home { min-height: 100vh; }
.hero-home .hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 64px;
  align-items: center;
  padding: 150px 0 96px;
}

/* ----- Ken Burns slow zoom ----- */
@keyframes kenburns { from { transform: scale(1) translate(0,0); } to { transform: scale(1.1) translate(-1.5%, -2%); } }
@media (prefers-reduced-motion: reduce) { .hero-photo, .portrait-frame img { animation: none !important; } }

/* ----- Jennifer portrait (home hero) ----- */
.hero-portrait { position: relative; justify-self: center; width: 100%; max-width: 430px; }
.portrait-frame {
  position: relative; border-radius: 26px; overflow: hidden;
  aspect-ratio: 4 / 4.7; box-shadow: 0 34px 80px rgba(0,0,0,0.42);
  animation: floatA 9s ease-in-out infinite;
}
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; animation: kenburns 17s ease-in-out infinite alternate; }
.portrait-frame::after { content: ''; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,0.2); border-radius: 26px; }
.hero-portrait::before { content: ''; position: absolute; inset: 20px -16px -16px 20px; border: 1.5px solid var(--gold); border-radius: 26px; z-index: -1; }
.portrait-tag, .portrait-chip {
  position: absolute; z-index: 3;
  background: rgba(18,30,54,0.5);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 44px rgba(0,0,0,0.32);
}
.portrait-tag { left: -20px; bottom: 28px; padding: 14px 22px; border-radius: 16px; }
.portrait-tag strong { display: block; font-family: var(--font-head); color: #fff; font-size: 1.18rem; line-height: 1.15; }
.portrait-tag span { font-size: 0.78rem; letter-spacing: 0.05em; color: var(--gold-soft); }
.portrait-chip { right: -14px; top: 30px; padding: 10px 18px; border-radius: 100px; font-size: 0.82rem; font-weight: 600; color: #fff; }
.portrait-chip b { color: var(--gold-soft); font-weight: 700; }

/* ----- Photographic hero background (inner pages) ----- */
.hero-photo {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  animation: kenburns 24s ease-in-out infinite alternate;
}
.hero-photo-home     { background-image: url('img/office.jpg'); }
.hero-photo-about    { background-image: url('img/about-hero.jpg'); }
.hero-photo-services { background-image: url('img/cfo.jpg'); }
.hero-photo-contact  { background-image: url('img/contact-hero.jpg'); }

/* ----- Home hero content over photo ----- */
.hero-home .hero-content { position: relative; z-index: 2; max-width: 790px; padding: 154px 0 96px; }
.hero-home .hero-veil {
  background:
    linear-gradient(90deg, rgba(13,23,43,0.92) 0%, rgba(13,23,43,0.72) 44%, rgba(13,23,43,0.34) 100%),
    linear-gradient(180deg, rgba(13,23,43,0.5) 0%, transparent 32%, rgba(13,23,43,0.6) 100%);
}
.hero-stats { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 44px; }
.hero-stat {
  display: flex; flex-direction: column; gap: 3px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.17);
  backdrop-filter: blur(12px);
  border-radius: 15px; padding: 16px 24px;
}
.hero-stat .s-num { font-family: var(--font-head); font-weight: 700; font-size: 1.55rem; color: #fff; line-height: 1; }
.hero-stat .s-num span { color: var(--gold-soft); }
.hero-stat .s-cap { font-size: 0.78rem; letter-spacing: 0.04em; color: rgba(255,255,255,0.8); }
.hero-sub .hero-veil {
  background:
    linear-gradient(180deg, rgba(15,26,48,0.74) 0%, rgba(15,26,48,0.6) 45%, rgba(15,26,48,0.82) 100%),
    radial-gradient(120% 100% at 50% 0%, rgba(15,26,48,0.25), rgba(15,26,48,0.55));
}
.hero-home h1 { color: #fff; font-size: clamp(2.6rem, 5.4vw, 4.6rem); }
.hero-home h1 em { font-style: italic; color: var(--gold-soft); font-weight: 600; }
.hero-lead {
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  color: rgba(255,255,255,0.86);
  max-width: 560px;
  margin: 1.4rem 0 2.2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

/* floating glass stat cards (right column) */
.hero-cards { display: grid; gap: 20px; }
.glass {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(16px);
  border-radius: 20px;
  padding: 26px 28px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  will-change: transform;
}
.glass:nth-child(1) { animation: floatA 7s ease-in-out infinite; }
.glass:nth-child(2) { animation: floatB 8s ease-in-out infinite; margin-left: 36px; }
.glass:nth-child(3) { animation: floatA 9s ease-in-out infinite; }
@keyframes floatA { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes floatB { 0%,100%{transform:translateY(0)} 50%{transform:translateY(10px)} }
.glass .stat { font-family: var(--font-head); font-size: 2.1rem; font-weight: 700; color: #fff; line-height: 1; }
.glass .stat span { color: var(--gold-soft); }
.glass .label { font-size: 0.82rem; letter-spacing: 0.04em; color: rgba(255,255,255,0.78); margin-top: 8px; }

/* scroll cue */
.scroll-cue {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.6); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
}
.scroll-cue .mouse { width: 22px; height: 36px; border: 1.5px solid rgba(255,255,255,0.5); border-radius: 12px; position: relative; }
.scroll-cue .mouse::after { content:''; position:absolute; top:7px; left:50%; transform:translateX(-50%); width:3px; height:7px; border-radius:2px; background:#fff; animation: wheel 1.6s ease-in-out infinite; }
@keyframes wheel { 0%{opacity:0;transform:translate(-50%,0)} 30%{opacity:1} 100%{opacity:0;transform:translate(-50%,10px)} }

/* ----- Inner page heros (shorter) ----- */
.hero-sub { text-align: center; justify-content: center; }
.hero-sub .container { max-width: 900px; }
.hero-sub h1 { color: #fff; }
.hero-sub .hero-lead { margin-inline: auto; color: rgba(255,255,255,0.85); }
.hero-about    { min-height: 62vh; padding-top: 80px; }
.hero-services { min-height: 60vh; padding-top: 80px; }
.hero-contact  { min-height: 52vh; padding-top: 80px; }
.hero-services h1 { max-width: 900px; margin-inline: auto; font-size: clamp(1.7rem, 2.9vw, 2.45rem); text-wrap: balance; }
.hero-services .hero-lead { font-style: italic; }

/* =================================================================
   SCROLL REVEAL
   ================================================================= */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22,1,0.36,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* =================================================================
   SECTIONS / BLOCKS
   ================================================================= */
.tint { background: var(--ivory-2); }
.lead-lg { font-size: clamp(1.15rem, 1.7vw, 1.42rem); line-height: 1.65; color: var(--ink); }

/* Intro split: oversized heading left, body right */
.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.split h2 { font-size: clamp(2rem, 3.6vw, 3.1rem); }

/* Stat band */
.stat-band { background: var(--navy); color: #fff; }
.stat-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; text-align: center; max-width: 640px; margin: 0 auto; }
.stat-item { padding: 10px; border-left: 1px solid rgba(255,255,255,0.12); }
.stat-item:first-child { border-left: none; }
.stat-item .num { font-family: var(--font-head); font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 700; color: #fff; line-height: 1; }
.stat-item .num span { color: var(--gold-soft); }
.stat-item .cap { font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-top: 12px; }

/* Value cards — indexed */
.cards-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.value-card {
  position: relative;
  background: var(--cream-card);
  border: 1px solid rgba(27,42,74,0.07);
  border-radius: 18px;
  padding: 40px 38px 38px;
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.value-card::before {
  content: '';
  position: absolute; top: 0; left: 0; width: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  transition: width var(--ease);
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.value-card:hover::before { width: 100%; }
.value-card .idx { font-family: var(--font-head); font-size: 1rem; font-weight: 600; color: var(--gold); letter-spacing: 0.1em; margin-bottom: 18px; display: block; }
.value-card h3 { margin-bottom: 0.5em; }
.value-card p { margin: 0; color: var(--muted); font-size: 0.99rem; }

/* Mission image band */
.mission { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(40px,6vw,80px); align-items: center; }
.mission .m-media {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3.1;
}
.mission .m-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.mission .m-media:hover img { transform: scale(1.05); }
.mission .m-media::after { content:''; position:absolute; inset:0; background: linear-gradient(160deg, transparent 55%, rgba(27,42,74,0.28)); }
.mission .m-badge {
  position: absolute; left: 22px; bottom: 22px; z-index: 2;
  background: rgba(255,253,249,0.92); backdrop-filter: blur(8px);
  border-radius: 14px; padding: 14px 20px; box-shadow: var(--shadow-sm);
}
.mission .m-badge strong { display: block; font-family: var(--font-head); color: var(--navy); font-size: 1.5rem; line-height: 1; }
.mission .m-badge span { font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }

/* Testimonials */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi {
  position: relative;
  background: var(--cream-card);
  border: 1px solid rgba(27,42,74,0.07);
  border-radius: 18px;
  padding: 56px 32px 34px;
  margin: 0;
  display: flex; flex-direction: column;
  transition: transform var(--ease), box-shadow var(--ease);
}
.testi:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.testi .quote { position: absolute; top: 18px; left: 30px; font-family: var(--font-head); font-size: 4.5rem; line-height: 1; color: var(--gold-soft); opacity: 0.6; }
.testi p { font-style: italic; color: var(--ink); font-size: 1.01rem; line-height: 1.7; margin: 0 0 1.5rem; }
.testi cite {
  margin-top: auto; font-style: normal; font-weight: 600; font-size: 0.94rem; color: var(--navy);
  padding-top: 18px; border-top: 1px solid rgba(27,42,74,0.1);
}
.testi cite span { display: block; font-weight: 400; font-size: 0.84rem; color: var(--muted); margin-top: 3px; }

/* CTA band */
.cta-band { position: relative; background: var(--navy); color: #fff; overflow: hidden; isolation: isolate; text-align: center; }
.cta-band .blob { opacity: 0.5; }
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; font-size: clamp(2rem, 4vw, 3.2rem); }
.cta-band p { color: rgba(255,255,255,0.85); max-width: 620px; margin: 0 auto 2.2rem; }

/* =================================================================
   TWO-COLUMN SERVICE ROWS
   ================================================================= */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,84px); align-items: center; }
.feature.reverse .f-media { order: 2; }
.f-media { position: relative; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/3; }
.f-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.f-media:hover img { transform: scale(1.05); }
.f-price {
  display: inline-block; font-family: var(--font-body); font-weight: 600; font-size: 1.05rem;
  color: var(--navy); background: rgba(196,154,90,0.16); border: 1px solid rgba(196,154,90,0.4);
  padding: 7px 18px; border-radius: 100px; margin: 4px 0 1.4rem;
}
.feature ul.f-list { list-style: none; margin: 1.4rem 0 0; padding: 0; display: grid; gap: 10px; }
.feature ul.f-list li { position: relative; padding-left: 30px; font-size: 0.96rem; color: var(--muted); }
.feature ul.f-list li::before {
  content: ''; position: absolute; left: 0; top: 8px; width: 16px; height: 16px;
  background: var(--gold); border-radius: 50%;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/12px no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/12px no-repeat;
}

/* coming soon note */
.coming-soon {
  margin-top: 2.4rem; padding: 26px 28px;
  background: var(--ivory-2); border: 1px dashed var(--warm-grey); border-radius: 16px;
  text-align: center; font-style: italic; color: var(--muted);
}

/* =================================================================
   ABOUT — JENNIFER
   ================================================================= */
.bio { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(40px,6vw,80px); align-items: center; }
.bio-photo { position: relative; }
.bio-photo .frame {
  position: relative; border-radius: 22px; overflow: hidden;
  box-shadow: var(--shadow-md); aspect-ratio: 4/4.4;
}
.bio-photo .frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.bio-photo::before {
  content: ''; position: absolute; inset: 18px -18px -18px 18px; z-index: -1;
  border: 1.5px solid var(--gold); border-radius: 22px;
}
.bio-cred { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 1.6rem; }
.bio-cred span {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em; color: var(--navy);
  background: var(--cream-card); border: 1px solid rgba(27,42,74,0.12); border-radius: 100px; padding: 7px 16px;
}

/* values word list (about) */
.value-words { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 1.8rem; justify-content: center; }
.value-words span {
  font-family: var(--font-head); font-style: italic; font-size: 1.15rem; color: var(--navy);
  padding: 8px 22px; border: 1px solid rgba(196,154,90,0.5); border-radius: 100px; background: var(--cream-card);
}

/* =================================================================
   CONTACT
   ================================================================= */
.contact-shell { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px,5vw,64px); align-items: start; }
.contact-card { background: var(--cream-card); border: 1px solid rgba(27,42,74,0.08); border-radius: 22px; padding: clamp(28px,4vw,46px); box-shadow: var(--shadow-sm); }
.contact-form { display: grid; gap: 20px; }
.fg { display: flex; flex-direction: column; }
.fg label { font-weight: 600; font-size: 0.88rem; color: var(--navy); margin-bottom: 8px; }
.contact-form input, .contact-form textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: 14px 16px; border: 1.5px solid var(--ivory-2); background: var(--ivory);
  border-radius: 12px; transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--steel); background: #fff; box-shadow: 0 0 0 4px rgba(74,123,167,0.15);
}
.contact-form textarea { resize: vertical; min-height: 140px; }

.contact-info { display: grid; gap: 18px; align-self: start; align-content: start; }
.info-card {
  background: var(--cream-card); border: 1px solid rgba(27,42,74,0.08); border-radius: 18px;
  padding: 28px 30px; display: flex; gap: 18px; align-items: flex-start;
  transition: transform var(--ease), box-shadow var(--ease);
}
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.info-card .ic {
  flex: none; width: 46px; height: 46px; border-radius: 12px;
  background: rgba(196,154,90,0.16); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.info-card .ic svg { width: 22px; height: 22px; }
.info-card h3 { font-size: 1.18rem; margin-bottom: 0.25em; }
.info-card p { margin: 0; color: var(--muted); font-size: 0.97rem; }

/* =================================================================
   FOOTER
   ================================================================= */
.site-footer { background: #fff; color: rgba(27,42,74,0.70); padding: 72px 0 36px; border-top: 1px solid rgba(27,42,74,0.10); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(27,42,74,0.10); }
.footer-mark { margin-bottom: 1rem; }
.footer-logo { display: block; height: 104px; width: auto; }
.footer-top p { font-size: 0.96rem; line-height: 1.8; max-width: 360px; }
.footer-col h4 { color: var(--navy); font-family: var(--font-body); font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col a { color: rgba(27,42,74,0.72); font-size: 0.96rem; transition: color 0.3s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { padding-top: 26px; display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; font-size: 0.86rem; color: rgba(27,42,74,0.50); }

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 960px) {
  .hero-home .hero-grid { grid-template-columns: 1fr; gap: 40px; padding: 130px 0 80px; }
  .hero-cards { grid-template-columns: repeat(3, 1fr); }
  .glass:nth-child(2) { margin-left: 0; }
  .split { grid-template-columns: 1fr; gap: 24px; }
  .stat-row { grid-template-columns: repeat(2, 1fr); gap: 30px 24px; }
  .stat-item:nth-child(3) { border-left: none; }
  .mission, .feature, .bio, .contact-shell { grid-template-columns: 1fr; }
  .mission .m-media, .feature .f-media { aspect-ratio: 16/10; }
  .feature.reverse .f-media { order: 0; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute; top: calc(100% + 8px); left: 16px; right: 16px;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: rgba(247,244,237,0.97); backdrop-filter: blur(16px);
    border-radius: 18px; padding: 14px; box-shadow: var(--shadow-md);
    max-height: 0; overflow: hidden; opacity: 0; pointer-events: none;
    transition: max-height var(--ease), opacity 0.3s;
  }
  .nav-links.open { max-height: 420px; opacity: 1; pointer-events: auto; }
  .nav-links a { color: var(--navy) !important; padding: 14px 18px; }
  .nav-links .nav-cta { text-align: center; margin: 6px 0 0; }
  .cards-grid { grid-template-columns: 1fr; }
  .hero-cards { grid-template-columns: 1fr; }
  .glass:nth-child(2) { margin-left: 0; }
  .stat-row { grid-template-columns: 1fr; gap: 26px; }
  .stat-item { border-left: none; border-top: 1px solid rgba(255,255,255,0.12); padding-top: 22px; }
  .stat-item:first-child { border-top: none; padding-top: 10px; }
  .footer-top { grid-template-columns: 1fr; }
  .bio-photo::before { inset: 12px -12px -12px 12px; }
}

/* Netlify Forms honeypot, never shown to humans */
.hp-field { display: none !important; }
