/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;1,9..144,300;1,9..144,400&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* ── Brand tokens ── */
:root {
  --navy:      #052e4d;
  --navy2:     #093d63;
  --orange:    #fe6930;
  --orange-lt: #ff8f5e;
  --white:     #ffffff;
  --cream:     #FDF8F3;
  --off:       #F3EEE9;
  --ink:       #052e4d;
  --mid:       #3a5570;
  --muted:     #7a94a8;
  --rule:      #dde5ed;
  --ff-head:   'Fraunces', Georgia, serif;
  --ff-body:   'DM Sans', system-ui, sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--ff-body); color: var(--ink); background: #fff; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── Layout ── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 clamp(1.25rem,4vw,2.5rem); }
.container--narrow { max-width: 780px; margin: 0 auto; padding: 0 clamp(1.25rem,4vw,2.5rem); }
section { padding: clamp(3.5rem,7vw,6rem) 0; }

/* ── Typography ── */
h1,h2,h3,h4 { font-family: var(--ff-head); font-weight: 300; line-height: 1.1; letter-spacing: -.02em; }
.display { font-size: clamp(2.8rem,5.5vw,4.7rem); }
.section-title { font-size: clamp(1.85rem,3.5vw,2.8rem); }
.section-title em, .display em { font-style: italic; color: var(--orange); }
.section-title.on-dark { color: #fff; }
.section-title.on-dark em { color: var(--orange-lt); }
.section-title.on-light { color: var(--ink); }
.section-title.on-light em { color: var(--orange); }

/* ── Eyebrow ── */
.eyebrow {
  font-family: var(--ff-body); font-size: .68rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--orange);
  display: flex; align-items: center; gap: .55rem; margin-bottom: .6rem;
}
.eyebrow::before { content:''; display:block; width:1.4rem; height:2px; background:currentColor; flex-shrink:0; }
.eyebrow.on-dark { color: var(--orange-lt); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: var(--ff-body); font-weight: 600; font-size: .875rem;
  line-height: 1; padding: .9rem 1.75rem; border-radius: 4px;
  border: none; cursor: pointer; text-decoration: none;
  transition: all .18s; white-space: nowrap;
}
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-lt); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.3); }
.btn-ghost:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.07); }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-lg { font-size: 1rem; padding: 1.05rem 2.1rem; }
.btn svg { width: 14px; height: 14px; transition: transform .18s; }
.btn:hover svg { transform: translateX(3px); }

/* ── Nav ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(5,46,77,.95); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: background .25s;
}
.nav.scrolled { background: rgba(5,46,77,1); }
.nav__inner { height: 66px; display: flex; align-items: center; justify-content: space-between; }
.nav__logo { display: flex; align-items: center; }
.nav__logo svg { height: 30px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 1.75rem; }
.nav__links a { font-size: .82rem; font-weight: 500; color: rgba(255,255,255,.48); transition: color .15s; }
.nav__links a:hover { color: #fff; }
.nav__links a.active { color: #fff; border-bottom: 1.5px solid var(--orange); padding-bottom: 2px; }
.nav .btn { padding: .6rem 1.2rem; font-size: .8rem; margin-left: .5rem; }

/* ── Hero ── */
.hero {
  min-height: 100vh; background: var(--navy);
  position: relative; display: flex; align-items: center;
  padding-top: 66px; overflow: hidden;
}
.hero__grid { position:absolute; inset:0; pointer-events:none;
  background-image: linear-gradient(rgba(255,255,255,.027) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.027) 1px,transparent 1px);
  background-size: 72px 72px; }
.hero__glow { position:absolute; inset:0; pointer-events:none;
  background: radial-gradient(ellipse 65% 55% at 72% 35%,rgba(254,105,48,.12) 0%,transparent 65%),
              radial-gradient(ellipse 40% 50% at 15% 75%,rgba(255,255,255,.03) 0%,transparent 60%); }
.hero__content { position:relative; z-index:2; width:100%; }
.hero__layout { display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:center; }
.hero h1 { color:#fff; margin-bottom:1.25rem; }
.hero h1 em { font-style:italic; color:var(--orange-lt); }
.hero__sub { font-size:1.075rem; color:rgba(255,255,255,.52); line-height:1.72; max-width:440px; margin-bottom:2.5rem; }
.hero__ctas { display:flex; gap:.875rem; flex-wrap:wrap; margin-bottom:3rem; }
.hero__stats { display:flex; gap:2.5rem; flex-wrap:wrap; }
.stat__num { font-family:var(--ff-head); font-weight:300; font-size:1.85rem; color:#fff; line-height:1; margin-bottom:.25rem; }
.stat__label { font-size:.68rem; font-weight:600; letter-spacing:.08em; text-transform:uppercase; color:rgba(255,255,255,.3); }

/* Problem cards */
.problem-cards { display:grid; grid-template-columns:1fr 1fr; gap:.875rem; }
.problem-card { background:rgba(255,255,255,.045); border:1px solid rgba(255,255,255,.07); border-radius:8px; padding:1.35rem; }
.problem-card__icon { font-size:1.25rem; margin-bottom:.6rem; }
.problem-card__title { font-family:var(--ff-head); font-size:.96rem; font-weight:500; color:#fff; margin-bottom:.4rem; }
.problem-card__desc { font-size:.78rem; color:rgba(255,255,255,.38); line-height:1.6; }

/* ── Clients bar ── */
.clients-bar { background:rgba(5,46,77,.97); padding:2.5rem 0; border-top:1px solid rgba(255,255,255,.05); }
.clients-bar__label { font-size:.68rem; font-weight:700; letter-spacing:.18em; text-transform:uppercase; color:rgba(255,255,255,.22); text-align:center; margin-bottom:1.5rem; }
.clients-bar__list { display:flex; flex-wrap:wrap; gap:1rem; justify-content:center; }
.client-chip { background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.07); border-radius:6px; padding:.6rem 1.2rem; }
.client-chip__name { font-family:var(--ff-head); font-size:.88rem; font-weight:500; color:rgba(255,255,255,.72); }
.client-chip__tag { font-size:.63rem; color:rgba(255,255,255,.3); letter-spacing:.05em; margin-top:.15rem; }

/* ── Backgrounds ── */
.bg-navy  { background:var(--navy); }
.bg-navy2 { background:var(--navy2); }
.bg-off   { background:var(--off); }
.bg-white { background:#fff; }
.bg-cream { background:var(--cream); }

/* ── Problem grid ── */
.problem-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--rule); border:1px solid var(--rule); border-radius:10px; overflow:hidden; }
.problem-item { background:#fff; padding:2.25rem 1.875rem; }
.problem-item__num { font-family:var(--ff-head); font-size:3rem; font-weight:300; font-style:italic; color:var(--rule); line-height:1; margin-bottom:1rem; }
.problem-item__title { font-family:var(--ff-head); font-size:1.15rem; font-weight:500; color:var(--ink); margin-bottom:.7rem; }
.problem-item__body { font-size:.875rem; color:var(--mid); line-height:1.72; }

/* ── Service cards ── */
.services-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.25rem; }
.service-card { background:#fff; border:1px solid var(--rule); border-radius:9px; padding:1.75rem; text-decoration:none; display:block; transition:border-color .2s,transform .2s; }
.service-card:hover { border-color:var(--orange); transform:translateY(-2px); }
.service-card__icon { font-size:1.75rem; margin-bottom:1rem; }
.service-card__name { font-family:var(--ff-head); font-size:1.1rem; font-weight:500; color:var(--ink); margin-bottom:.4rem; }
.service-card__desc { font-size:.845rem; color:var(--mid); line-height:1.65; margin-bottom:1rem; }
.service-card__link { font-size:.8rem; font-weight:600; color:var(--orange); }

/* ── Packages ── */
.packages-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:1.1rem; }
.pkg { background:rgba(255,255,255,.045); border:1px solid rgba(255,255,255,.08); border-radius:9px; padding:2rem; position:relative; display:flex; flex-direction:column; transition:border-color .2s; }
.pkg:hover { border-color:rgba(254,105,48,.4); }
.pkg--featured { background:rgba(254,105,48,.1) !important; border-color:var(--orange) !important; }
.pkg__badge { position:absolute; top:-1px; right:1.5rem; background:var(--orange); color:#fff; font-size:.6rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; padding:.27rem .7rem; border-radius:0 0 5px 5px; }
.pkg__owner { font-size:.66rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:rgba(255,255,255,.4); margin-bottom:.8rem; }
.pkg__owner.amber { color:var(--orange-lt); }
.pkg__name { font-family:var(--ff-head); font-size:1.4rem; font-weight:400; color:#fff; line-height:1.2; margin-bottom:.45rem; }
.pkg__tagline { font-size:.82rem; color:rgba(255,255,255,.42); line-height:1.6; margin-bottom:1.3rem; flex:1; }
.pkg__price { display:flex; align-items:baseline; gap:.3rem; margin-bottom:1.3rem; padding-bottom:1.2rem; border-bottom:1px solid rgba(255,255,255,.08); }
.pkg__price-num { font-family:var(--ff-head); font-weight:300; font-size:1.9rem; color:#fff; }
.pkg__price-period { font-size:.76rem; color:rgba(255,255,255,.32); }
.pkg__list { list-style:none; margin-bottom:1.5rem; }
.pkg__list li { display:flex; align-items:flex-start; gap:.55rem; font-size:.83rem; color:rgba(255,255,255,.62); margin-bottom:.55rem; line-height:1.45; }
.pkg__list li::before { content:'✓'; color:var(--orange-lt); flex-shrink:0; }
.pkg__cta { display:block; text-align:center; font-weight:600; font-size:.84rem; padding:.8rem; border-radius:4px; background:rgba(255,255,255,.07); color:rgba(255,255,255,.68); border:1px solid rgba(255,255,255,.1); transition:all .18s; }
.pkg__cta:hover, .pkg--featured .pkg__cta { background:var(--orange); color:#fff; border-color:var(--orange); }

/* ── Steps ── */
.steps { display:grid; grid-template-columns:repeat(3,1fr); gap:2.5rem; }
.step__num { width:3.5rem; height:3.5rem; border-radius:50%; background:var(--navy); color:#fff; display:flex; align-items:center; justify-content:center; font-family:var(--ff-head); font-style:italic; font-size:1.35rem; margin-bottom:1.25rem; }
.step__title { font-family:var(--ff-head); font-size:1.15rem; font-weight:500; color:var(--ink); margin-bottom:.65rem; }
.step__body { font-size:.875rem; color:var(--mid); line-height:1.75; }

/* ── Founders ── */
.founders-grid { display:grid; grid-template-columns:1fr 1fr; gap:2rem; }
.founder-card { border:1px solid var(--rule); border-radius:10px; overflow:hidden; }
.founder-card__header { background:var(--navy); padding:2rem; border-left:4px solid var(--orange); }
.founder-card__header.alt { border-left-color:var(--orange-lt); }
.founder-card__name { font-family:var(--ff-head); font-size:1.3rem; font-weight:500; color:#fff; margin-bottom:.2rem; }
.founder-card__role { font-size:.68rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:var(--orange-lt); margin-bottom:.5rem; }
.founder-card__cred { font-size:.75rem; color:rgba(255,255,255,.35); }
.founder-card__body { padding:1.75rem 2rem; }
.founder-card__bio { font-size:.875rem; color:var(--mid); line-height:1.8; margin-bottom:1.5rem; }
.founder-facts { display:grid; grid-template-columns:1fr 1fr; gap:.75rem; margin-bottom:1.25rem; }
.fact { background:var(--off); border-radius:6px; padding:1rem; }
.fact__num { font-family:var(--ff-head); font-weight:300; font-style:italic; font-size:1.5rem; color:var(--navy); line-height:1; margin-bottom:.3rem; }
.fact__label { font-size:.72rem; color:var(--muted); line-height:1.45; }
.skill-tags { display:flex; flex-wrap:wrap; gap:.4rem; }
.skill-tag { font-size:.73rem; font-weight:500; padding:.28rem .65rem; border-radius:100px; background:var(--off); border:1px solid var(--rule); color:var(--mid); }

/* ── Client profiles ── */
.clients-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.1rem; }
.client-profile { background:#fff; border:1px solid var(--rule); border-radius:8px; padding:1.5rem 1.75rem; }
.client-profile__name { font-family:var(--ff-head); font-size:1.05rem; font-weight:500; color:var(--ink); margin-bottom:.2rem; }
.client-profile__tag { font-size:.65rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--orange); margin-bottom:.875rem; }
.client-profile__desc { font-size:.855rem; color:var(--mid); line-height:1.72; }

/* ── FAQ ── */
.faq-list { display:flex; flex-direction:column; gap:.6rem; }
.faq-item { background:#fff; border:1px solid var(--rule); border-radius:8px; overflow:hidden; transition:border-color .2s; }
.faq-item.open { border-color:var(--orange); }
.faq-item__q { display:flex; justify-content:space-between; align-items:center; gap:1rem; padding:1.25rem 1.75rem; cursor:pointer; font-family:var(--ff-head); font-size:1rem; font-weight:500; color:var(--ink); line-height:1.35; user-select:none; }
.faq-item__icon { width:20px; height:20px; border-radius:50%; background:var(--rule); display:flex; align-items:center; justify-content:center; flex-shrink:0; transition:background .2s; }
.faq-item.open .faq-item__icon { background:var(--orange); }
.faq-item.open .faq-item__icon svg { stroke:#fff; }
.faq-item__a { display:none; padding:0 1.75rem 1.25rem; font-size:.875rem; color:var(--mid); line-height:1.78; }
.faq-item.open .faq-item__a { display:block; }

/* ── CTA Band ── */
.cta-band { background:var(--navy); padding:clamp(4rem,8vw,7rem) 0; position:relative; overflow:hidden; text-align:center; }
.cta-band::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse 55% 80% at 25% 50%,rgba(254,105,48,.13) 0%,transparent 60%),radial-gradient(ellipse 40% 60% at 80% 50%,rgba(255,255,255,.03) 0%,transparent 60%); pointer-events:none; }
.cta-band__inner { position:relative; z-index:2; }
.cta-band h2 { color:#fff; margin-bottom:1.1rem; }
.cta-band h2 em { font-style:italic; color:var(--orange-lt); }
.cta-band__sub { font-size:1.05rem; color:rgba(255,255,255,.48); line-height:1.7; margin-bottom:2.5rem; max-width:560px; margin-left:auto; margin-right:auto; }
.cta-band__btns { display:flex; gap:.875rem; justify-content:center; flex-wrap:wrap; margin-bottom:1.25rem; }
.cta-band__note { font-size:.78rem; color:rgba(255,255,255,.22); }

/* ── Service landing heroes ── */
.service-hero { background:var(--navy); padding:clamp(5rem,10vw,8rem) 0 clamp(3rem,6vw,5rem); position:relative; overflow:hidden; }
.service-hero::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse 60% 50% at 60% 40%,rgba(254,105,48,.1) 0%,transparent 65%); pointer-events:none; }
.service-hero h1 { font-size:clamp(2.2rem,4.5vw,3.8rem); color:#fff; margin-bottom:1.25rem; }
.service-hero h1 em { font-style:italic; color:var(--orange-lt); }
.service-hero__sub { font-size:1.1rem; color:rgba(255,255,255,.5); line-height:1.72; max-width:580px; margin-bottom:2.5rem; }
.service-hero__btns { display:flex; gap:.875rem; flex-wrap:wrap; }
.breadcrumb { font-size:.78rem; color:rgba(255,255,255,.3); margin-bottom:1.5rem; display:flex; align-items:center; gap:.5rem; }
.breadcrumb a { color:rgba(255,255,255,.42); transition:color .15s; }
.breadcrumb a:hover { color:rgba(255,255,255,.78); }
.breadcrumb span { color:rgba(255,255,255,.2); }

/* ── Prose ── */
.prose h2 { font-family:var(--ff-head); font-size:1.6rem; font-weight:400; color:var(--ink); margin-bottom:.875rem; }
.prose p { font-size:.95rem; color:var(--mid); line-height:1.8; margin-bottom:1rem; }
.prose ul { list-style:none; margin-bottom:1rem; }
.prose ul li { display:flex; align-items:flex-start; gap:.6rem; font-size:.9rem; color:var(--mid); margin-bottom:.6rem; line-height:1.55; }
.prose ul li::before { content:'✓'; color:var(--orange); flex-shrink:0; margin-top:1px; }

/* ── Layout helpers ── */
.two-col { display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:start; }
.three-col { display:grid; grid-template-columns:repeat(3,1fr); gap:2rem; }

/* ── Callout ── */
.callout { background:var(--off); border-left:3px solid var(--orange); border-radius:0 8px 8px 0; padding:1.5rem 1.75rem; margin-bottom:1.5rem; }
.callout__label { font-size:.68rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:var(--orange); margin-bottom:.5rem; }
.callout__text { font-size:.9rem; color:var(--mid); line-height:1.7; }

/* ── Feature cards ── */
.feature-card { background:#fff; border:1px solid var(--rule); border-radius:9px; padding:1.75rem; }
.feature-card__icon { font-size:1.5rem; margin-bottom:1rem; }
.feature-card__title { font-family:var(--ff-head); font-size:1.1rem; font-weight:500; color:var(--ink); margin-bottom:.6rem; }
.feature-card__body { font-size:.875rem; color:var(--mid); line-height:1.72; }

/* ── Related services ── */
.related-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1rem; }
.related-card { background:var(--off); border:1px solid var(--rule); border-radius:8px; padding:1.25rem 1.5rem; display:block; transition:border-color .2s; }
.related-card:hover { border-color:var(--orange); }
.related-card__name { font-family:var(--ff-head); font-size:1rem; font-weight:500; color:var(--ink); margin-bottom:.3rem; }
.related-card__desc { font-size:.8rem; color:var(--muted); line-height:1.5; }

/* ── Footer ── */
.footer { background:var(--navy); padding:3rem 0; border-top:1px solid rgba(255,255,255,.05); }
.footer__inner { display:flex; justify-content:space-between; align-items:flex-start; flex-wrap:wrap; gap:2rem; }
.footer__logo { display:flex; align-items:center; margin-bottom:.75rem; }
.footer__logo svg { height:26px; width:auto; }
.footer__tagline { font-size:.78rem; color:rgba(255,255,255,.28); max-width:220px; line-height:1.55; }
.footer__col-title { font-size:.68rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:rgba(255,255,255,.25); margin-bottom:.875rem; }
.footer__links { list-style:none; display:flex; flex-direction:column; gap:.5rem; }
.footer__links a { font-size:.82rem; color:rgba(255,255,255,.38); transition:color .15s; }
.footer__links a:hover { color:rgba(255,255,255,.72); }
.footer__bottom { border-top:1px solid rgba(255,255,255,.05); margin-top:2.5rem; padding-top:1.5rem; font-size:.72rem; color:rgba(255,255,255,.2); }

/* ── Animations ── */
.reveal { opacity:0; transform:translateY(24px); transition:opacity .65s ease,transform .65s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
.fade-in-1 { opacity:0; animation:fadeUp .7s .1s ease forwards; }
.fade-in-2 { opacity:0; animation:fadeUp .7s .2s ease forwards; }
.fade-in-3 { opacity:0; animation:fadeUp .7s .3s ease forwards; }
.fade-in-4 { opacity:0; animation:fadeUp .7s .38s ease forwards; }
.fade-in-5 { opacity:0; animation:fadeUp .7s .46s ease forwards; }
@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }

/* ── Responsive ── */
@media (max-width:900px) {
  .hero__layout,.two-col,.founders-grid { grid-template-columns:1fr; }
  .problem-cards { grid-template-columns:1fr 1fr; }
  .packages-grid,.services-grid,.clients-grid,.related-grid,.three-col { grid-template-columns:1fr; }
  .steps,.problem-grid { grid-template-columns:1fr; }
  .nav__links { display:none; }
  .hero__layout > div:last-child { display:none; }
}
@media (max-width:600px) {
  .packages-grid,.founder-facts { grid-template-columns:1fr 1fr; }
  .footer__inner { flex-direction:column; }
}
