*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
a { text-decoration: none !important; }

:root {
  --navy: #1b3a4b; --teal: #2a5c6e; --teal-mid: #3a7d93;
  --teal-pale: #d6eaf0; --muted: #4a6e7e; --faint: #7da0b0;
  --rule: #ccdde5; --surface: #f2f7fa;
}

html { background: #fff; scroll-behavior: smooth; }
body { background: #fff; color: var(--navy); font-family: 'Archivo', sans-serif; font-weight: 400; line-height: 1.7; overflow-x: hidden; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 3rem; background: rgba(255,255,255,0.97); backdrop-filter: blur(10px); border-bottom: 1px solid var(--rule); }
.nav-logo { display: block; height: 28px; width: auto; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-cta { color: var(--teal) !important; font-weight: 500 !important; }
.hamburger { display: none; }

/* SHARED */
.sec-label { font-size: 0.68rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--faint); margin-bottom: 0.85rem; }
.sec-title { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: clamp(2.4rem, 3.5vw, 4rem); line-height: 1.1; color: var(--navy); margin-bottom: 1.75rem; }
.sec-body { font-size: 1rem; color: var(--muted); max-width: 56ch; line-height: 1.9; }
.btn { display: inline-block; font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: #fff; background: var(--teal); padding: 0.9rem 2.25rem; transition: background 0.2s; border: none; cursor: pointer; }
.btn:hover { background: var(--teal-mid); }
.reveal { opacity:0; transform:translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.on { opacity:1; transform:none; }

/* FOOTER */
footer { padding: 1.75rem 3rem; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--rule); margin-top: 0; }
.footer-logo { display: block; height: 18px; width: auto; opacity: 0.6; }
.footer-copy { font-size: 0.7rem; color: var(--faint); letter-spacing: 0.04em; }

/* PAGE HERO */
.page-hero { padding: 8rem 3rem 5rem; border-bottom: 1px solid var(--rule); }
.page-hero .sec-body { margin-top: 0; }

/* HERO (home) */
.hero { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; padding-top: 68px; }
.hero-left { display: flex; flex-direction: column; justify-content: center; padding: 5rem 4rem 5rem 3rem; border-right: 1px solid var(--rule); }
.eyebrow { font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--teal); margin-bottom: 1.75rem; }
.eyebrow-mobile { display: none; }
.hero-headline { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: clamp(2.8rem, 4.5vw, 5.2rem); line-height: 1.06; color: var(--navy); margin-bottom: 2rem; }
.hero-headline span { color: var(--teal); }
.hero-sub { font-size: 1rem; color: var(--muted); max-width: 40ch; line-height: 1.85; margin-bottom: 2.5rem; }
.hero-right { display: flex; align-items: center; justify-content: center; padding: 5rem 3rem; }
.hero-logo { width: min(320px, 75%); animation: rise 1s cubic-bezier(0.22,1,0.36,1) both; }
@keyframes rise { from { opacity:0; transform: translateY(28px); } to { opacity:1; transform: translateY(0); } }

/* STAT BAR */
.stat-bar { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.stat-item { padding: 2.25rem 3rem; border-right: 1px solid var(--rule); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2.75rem; font-weight: 300; color: var(--teal); line-height: 1; margin-bottom: 0.4rem; }
.stat-label { font-size: 0.85rem; color: var(--muted); line-height: 1.5; }

/* PROBLEM */
.problem { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--rule); }
.problem > * { padding: 5rem 3rem; border-right: 1px solid var(--rule); }
.problem > *:last-child { border-right: none; display: flex; align-items: center; }

/* OPPORTUNITY */
.opportunity { padding: 6rem 3rem; border-top: 1px solid var(--rule); background: var(--surface); }
.opp-intro { max-width: 640px; margin-bottom: 3.5rem; }
.opp-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-bottom: 3rem; }
.opp-card { padding: 2.5rem; background: #fff; border: 1px solid var(--rule); }
.opp-num { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 300; color: var(--teal); line-height: 1; margin-bottom: 0.75rem; }
.opp-title { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); margin-bottom: 0.75rem; }
.opp-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.8; }
.opp-callout { background: var(--navy); padding: 3rem; margin-bottom: 2rem; }
.opp-callout-label { font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: #ffffff; margin-bottom: 1rem; }
.opp-callout-text { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.3rem, 2vw, 1.75rem); font-weight: 300; color: #fff; line-height: 1.6; }
.opp-callout-text strong { color: #ffffff; font-weight: 600; }
.opp-source { font-size: 0.7rem; color: var(--faint); line-height: 1.7; }

/* FINDINGS */
.findings-callout { display: grid; grid-template-columns: auto 1px 1fr; gap: 3rem; align-items: center; background: var(--navy); padding: 3rem; margin: 0 3rem 3rem; }
.callout-stat { display: flex; flex-direction: column; gap: 0.5rem; min-width: 160px; }
.callout-num { font-family: 'Cormorant Garamond', serif; font-size: 5rem; font-weight: 300; line-height: 1; color: #fff; }
.callout-label { font-size: 0.78rem; color: rgba(255,255,255,0.7); line-height: 1.5; max-width: 16ch; }
.callout-divider { width: 1px; height: 100%; background: rgba(255,255,255,0.12); align-self: stretch; }
.callout-body { font-size: 1rem; color: rgba(255,255,255,0.7); line-height: 1.85; max-width: 58ch; }
.callout-body strong { color: #fff; font-weight: 400; }

/* CAROUSEL */
.carousel-wrap { position: relative; overflow: hidden; margin: 0 3rem; }
.carousel-track { display: flex; transition: transform 0.45s cubic-bezier(0.4,0,0.2,1); }
.audit-card { min-width: 100%; padding: 3rem; border: 1px solid var(--rule); background: #fff; display: flex; flex-direction: column; gap: 2rem; }
.audit-card-header { display: flex; justify-content: space-between; align-items: baseline; padding-bottom: 1.5rem; border-bottom: 1px solid var(--rule); }
.audit-co-name { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 300; color: var(--navy); line-height: 1; }
.audit-co-cat { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); margin-top: 0.6rem; line-height: 1.2; }
.audit-overall { text-align: right; flex-shrink: 0; }
.audit-overall-num { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 300; color: var(--teal); line-height: 1; }
.audit-overall-label { font-size: 0.7rem; color: var(--faint); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 0.6rem; display: block; line-height: 1.2; }
.audit-stages { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.audit-stage { padding: 1.25rem; background: var(--surface); }
.audit-stage-name { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--faint); margin-bottom: 0.6rem; }
.audit-stage-score { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 300; line-height: 1; margin-bottom: 0.3rem; }
.audit-stage-score.hit  { color: #1a6b3a; }
.audit-stage-score.miss { color: #991b1b; }
.audit-stage-score.part { color: #7a4f00; }
.audit-stage-sub { font-size: 0.72rem; color: var(--faint); }
.audit-impact { padding: 1.5rem; border-left: 3px solid var(--teal); background: var(--surface); }
.audit-impact-label { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--navy); margin-bottom: 0.5rem; }
.audit-impact-text { font-size: 0.92rem; color: var(--muted); line-height: 1.75; }
.carousel-controls { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 3rem; }
.carousel-dots { display: flex; gap: 0.5rem; }
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--rule); cursor: pointer; transition: background 0.2s; }
.dot.active { background: var(--teal); }
.carousel-btns { display: flex; gap: 0.75rem; }
.carousel-btn { width: 36px; height: 36px; border: 1px solid var(--rule); background: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--navy); font-size: 1rem; transition: background 0.2s, border-color 0.2s; }
.carousel-btn:hover { background: var(--surface); border-color: var(--teal); }
.findings-note { font-size: 0.75rem; color: var(--faint); letter-spacing: 0.03em; border-top: 1px solid var(--rule); padding: 1rem 3rem 3rem; }

/* SERVICES */
.services-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--rule); }
.svc-card { padding: 3rem; border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); background: #fff; transition: background 0.2s; }
.svc-card:hover { background: var(--teal-pale); }
.svc-card:nth-child(2n) { border-right: none; }
.svc-num { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 300; color: var(--teal); margin-bottom: 1rem; line-height: 1; }
.svc-name { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); margin-bottom: 0.85rem; }
.svc-desc { font-size: 0.92rem; color: var(--muted); line-height: 1.85; }

/* PROCESS */
.process { padding: 6rem 3rem; border-top: 1px solid var(--rule); }
.steps { margin-top: 3rem; max-width: 700px; }
.step { display: grid; grid-template-columns: 70px 1fr; gap: 1.75rem; padding: 2.5rem 0; border-bottom: 1px solid var(--rule); align-items: start; }
.step:first-child { border-top: 1px solid var(--rule); }
.step-num { font-family: 'Cormorant Garamond', serif; font-size: 2.75rem; font-weight: 300; color: var(--rule); line-height: 1; }
.step-title { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); margin-bottom: 0.65rem; }
.step-desc { font-size: 0.95rem; color: var(--muted); line-height: 1.85; max-width: 54ch; }

/* ABOUT */
.about-top { display: grid; grid-template-columns: 1fr 1.5fr; border-top: 1px solid var(--rule); padding-top: 68px; }
.about-left { padding: 5rem 3rem; border-right: 1px solid var(--rule); background: var(--surface); }
.about-right { padding: 5rem 3rem; }
.about-body { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: clamp(1.25rem, 1.8vw, 1.65rem); line-height: 1.65; color: var(--navy); }
.about-body strong { font-weight: 400; color: var(--teal); }
.founder { display: grid; grid-template-columns: 1fr 1.5fr; border-top: 1px solid var(--rule); }
.founder-left { padding: 5rem 3rem; border-right: 1px solid var(--rule); background: #fff; }
.founder-name { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 300; color: var(--navy); margin-bottom: 0.3rem; }
.founder-title { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal); margin-bottom: 1.5rem; }
.founder-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.founder-tag { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.35rem 0.75rem; border: 1px solid var(--rule); color: var(--muted); }
.founder-right { padding: 5rem 3rem; background: #fff; }
.founder-bio { font-size: 1rem; color: var(--muted); line-height: 1.9; max-width: 58ch; }
.founder-bio p + p { margin-top: 1.25rem; }

/* CONTACT */
.contact-page { display: grid; grid-template-columns: 1fr 1fr; padding-top: 68px; min-height: 100vh; }
.contact-left { padding: 6rem 4rem 6rem 3rem; border-right: 1px solid var(--rule); display: flex; flex-direction: column; justify-content: center; }
.contact-right { padding: 6rem 3rem; display: flex; align-items: center; }
.contact-form { width: 100%; }
.form-group { margin-bottom: 1.5rem; }
.form-label { display: block; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.5rem; }
.form-input { width: 100%; padding: 0.85rem 1rem; border: 1px solid var(--rule); background: #fff; color: var(--navy); font-family: 'Archivo', sans-serif; font-size: 0.95rem; outline: none; transition: border-color 0.2s; }
.form-input:focus { border-color: var(--teal); }
.form-textarea { min-height: 140px; resize: vertical; }

@media (max-width: 768px) {
  nav { padding: 1.1rem 1.5rem; }
  .nav-links { 
    display: flex !important;
    flex-direction: column; 
    position: fixed; 
    top: 0; right: 0;
    height: 100vh;
    width: 60%; max-width: 240px; 
    background: var(--navy); 
    z-index: 999; 
    justify-content: flex-start;
    align-items: flex-start; 
    gap: 0;
    padding: 68px 0 0 0;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links li { width: 100%; list-style: none; }
  .nav-links a { display: block; width: 100%; font-size: 0.78rem; letter-spacing: 0.15em; color: rgba(255,255,255,0.75) !important; padding: 1rem 1.75rem; border-bottom: 1px solid rgba(255,255,255,0.08); text-transform: uppercase; }
  .nav-links a:hover, .nav-links a.active { color: #ffffff !important; background: rgba(255,255,255,0.05); }
  .nav-cta { color: #ffffff !important; font-weight: 500 !important; }
  .hamburger { display: flex; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; background: none; border: none; padding: 4px; }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); transition: all 0.3s; }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .eyebrow-mobile { display: block; order: 1; padding: 2rem 1.5rem 0; margin-bottom: 0; text-align: center; }
  .eyebrow-desktop { display: none; }
  .hero-right { padding: 1.5rem 1.5rem 1rem; order: 2; }
  .hero-left { padding: 1rem 1.5rem 3rem; border-right: none; order: 3; }
  .stat-bar { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--rule); padding: 1.75rem 1.5rem; }
  .problem { grid-template-columns: 1fr; }
  .problem > * { border-right: none; border-bottom: 1px solid var(--rule); padding: 3rem 1.5rem; }
  .opportunity { padding: 4rem 1.5rem; }
  .opp-grid { grid-template-columns: 1fr; }
  .findings-callout { grid-template-columns: 1fr; gap: 1.5rem; padding: 2rem 1.5rem; margin: 0 1.5rem 2rem; }
  .callout-divider { display: none; }
  .carousel-wrap { margin: 0 1.5rem; }
  .carousel-controls { padding: 1rem 1.5rem; }
  .audit-stages { grid-template-columns: repeat(2,1fr); }
  .audit-card { padding: 2rem 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .svc-card { border-right: none !important; }
  .process { padding: 4rem 1.5rem; }
  .step { grid-template-columns: 50px 1fr; }
  .about-top { grid-template-columns: 1fr; padding-top: 68px; }
  .about-left { border-right: none; border-bottom: 1px solid var(--rule); padding: 3rem 1.5rem; }
  .about-right { padding: 3rem 1.5rem; }
  .founder { grid-template-columns: 1fr; }
  .founder-left { border-right: none; border-bottom: 1px solid var(--rule); padding: 3rem 1.5rem; }
  .founder-right { padding: 3rem 1.5rem; }
  .contact-page { grid-template-columns: 1fr; }
  .contact-left { padding: 5rem 1.5rem 2.5rem; border-right: none; border-bottom: 1px solid var(--rule); }
  .contact-right { padding: 2.5rem 1.5rem; }
  .page-hero { padding: 5rem 1.5rem 3rem; }
  footer { flex-direction: column; gap: 0.4rem; text-align: center; padding: 1.75rem 1.5rem; }
}
