@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap");

:root {
  --background: #f7f4ee;
  --foreground: #1b2424;
  --muted: #60706d;
  --line: #d8d1c6;
  --panel: #fffdf8;
  --green: #194d46;
  --blue: #2f5f7f;
  --gold: #b98d45;
  --clay: #9b5f47;
  --font-sans: "Inter", system-ui, sans-serif;
  --step--1: 0.8rem;
  --step-0: 1rem;
  --step-1: 1.25rem;
  --step-2: 1.5625rem;
  --step-3: 1.953125rem;
  --step-4: 2.44140625rem;
  --step-5: 3.0517578125rem;
  --step-6: 3.814697265625rem;
  --step-7: 4.76837158203125rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: var(--step-0);
  font-weight: 400;
  margin: 0;
}
a { color: inherit; text-decoration: none; }
b, strong { font-weight: 600; }
img { max-width: 100%; }
main { min-height: 100vh; overflow: hidden; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-weight: 600; }
h1 { max-width: 880px; margin-bottom: 28px; font-size: var(--step-7); line-height: .98; }
h2 { margin-bottom: 18px; font-size: var(--step-5); line-height: 1.06; }
h3 { margin-bottom: 16px; font-size: var(--step-2); line-height: 1.16; }

.hero {
  isolation: isolate;
  background: linear-gradient(130deg, #194d461f, transparent 34%), linear-gradient(25deg, #2f5f7f21, transparent 40%), var(--background);
  min-height: 94vh;
  padding: 28px clamp(20px, 5vw, 72px) 56px;
  position: relative;
}
.hero::after {
  content: "";
  background: linear-gradient(180deg, transparent, var(--background));
  pointer-events: none;
  z-index: 0;
  height: 140px;
  position: absolute;
  inset: auto 0 0;
}
.nav {
  z-index: 1000;
  justify-content: flex-start;
  align-items: center;
  gap: clamp(28px, 4vw, 64px);
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  position: relative;
}
.brand, .navLinks { align-items: center; display: flex; }
.brand { gap: 12px; font-weight: 600; }
.brandMark {
  background: var(--green);
  color: #fffdf8;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  display: inline-flex;
}
.navLinks { color: #435350; gap: 26px; font-size: var(--step--1); }
.navDropdown { z-index: 1000; position: relative; }
.navTrigger { align-items: center; gap: 6px; min-height: 40px; display: inline-flex; }
.navTrigger span { color: var(--green); font-size: var(--step--1); line-height: 1; }
.navMenu {
  opacity: 0;
  pointer-events: none;
  z-index: 1001;
  background: #fffdf8;
  border: 1px solid rgba(41,55,52,.14);
  border-radius: 8px;
  gap: 4px;
  min-width: 310px;
  padding: 10px;
  transition: opacity .16s, transform .16s;
  display: grid;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translate(-50%) translateY(8px);
  box-shadow: rgba(40,34,24,.14) 0 24px 64px;
}
.navDropdown:hover .navMenu, .navDropdown:focus-within .navMenu { opacity: 1; pointer-events: auto; transform: translate(-50%) translateY(0); }
.navMenu a { border-radius: 8px; gap: 4px; padding: 13px 14px; display: grid; }
.navMenu a:hover, .navMenu a:focus-visible { background: #ebe7df; outline: none; }
.navMenu strong { color: #1b2424; font-size: var(--step--1); }
.navMenu span { color: var(--muted); font-size: var(--step--1); }
.navMenuOverview { color: var(--green); font-weight: 600; }

.heroGrid {
  z-index: 0;
  grid-template-columns: minmax(0,1.04fr) minmax(360px,.76fr);
  align-items: center;
  gap: clamp(34px, 6vw, 82px);
  max-width: 1180px;
  margin: 88px auto 0;
  display: grid;
  position: relative;
}
.kicker, .sectionLabel { color: var(--clay); text-transform: uppercase; margin: 0 0 14px; font-size: var(--step--1); font-weight: 600; }
.lead { color: #465752; max-width: 710px; font-size: var(--step-1); line-height: 1.55; }
.heroActions { flex-wrap: wrap; gap: 12px; margin-top: 34px; display: flex; }
.primaryButton, .secondaryButton { border-radius: 8px; justify-content: center; align-items: center; min-height: 50px; padding: 0 20px; font-weight: 600; display: inline-flex; }
.primaryButton { background: var(--green); color: #fffdf8; box-shadow: rgba(25,77,70,.18) 0 18px 42px; }
.secondaryButton { color: var(--green); border: 1px solid rgba(25,77,70,.22); }
.primaryButton:hover, .secondaryButton:hover { transform: translateY(-1px); }

.readinessPanel, .serviceCard, .processGrid > div { background: rgba(255,253,248,.82); border: 1px solid rgba(41,55,52,.14); border-radius: 8px; box-shadow: rgba(40,34,24,.08) 0 28px 70px; }
.readinessPanel { backdrop-filter: blur(18px); z-index: 0; padding: 24px; position: relative; }
.heroImage { aspect-ratio: 16/10; object-fit: cover; border-radius: 8px; width: 100%; height: auto; margin-bottom: 18px; display: block; }
.panelTopline, .signalItem, .principle, .booking { align-items: center; display: flex; }
.panelTopline { color: var(--muted); justify-content: space-between; margin-bottom: 22px; font-size: var(--step--1); }
.panelTopline strong { color: var(--green); }
.signalBox { background: linear-gradient(135deg,#194d46f5,#2f5f7fe6),var(--green); color: #fffdf8; border-radius: 8px; min-height: 210px; padding: 28px; position: relative; overflow: hidden; }
.signalBox::after { content: ""; aspect-ratio: 1/1; border: 28px solid rgba(255,253,248,.16); border-radius: 999px; width: 170px; position: absolute; top: 28px; right: -56px; }
.signalBox p { color: rgba(255,253,248,.74); text-transform: uppercase; margin-bottom: 42px; font-size: var(--step--1); font-weight: 600; }
.signalBox h2 { z-index: 1; max-width: 310px; margin: 0; font-size: var(--step-4); position: relative; }
.signalGrid { gap: 10px; margin-top: 14px; display: grid; }
.signalItem { background: rgba(247,244,238,.78); border-radius: 8px; gap: 12px; padding: 14px; }
.signalItem span { background: var(--gold); border-radius: 999px; width: 10px; height: 10px; }
.signalItem p, .panelOutcome p { margin: 0; }
.panelOutcome { border-top: 1px solid var(--line); color: #435350; margin-top: 18px; padding-top: 18px; font-weight: 600; }

.section { max-width: 1180px; margin: 0 auto; padding: 82px clamp(20px,5vw,72px); }
.intro, .approach, .booking { grid-template-columns: .86fr 1fr; gap: clamp(28px,5vw,70px); display: grid; }
.intro p:last-child, .approachCopy p, .booking p { color: #465752; font-size: var(--step-1); line-height: 1.62; }
.sectionHeader { max-width: 760px; }
.serviceGrid { grid-template-columns: repeat(4,minmax(0,1fr)); gap: 16px; margin-top: 34px; display: grid; }
.serviceCard { min-height: 330px; padding: 24px; }
.serviceCard p { color: var(--blue); text-transform: uppercase; margin-bottom: 32px; font-size: var(--step--1); font-weight: 600; }
.serviceCard span { color: #50615d; margin-bottom: 28px; line-height: 1.55; display: block; }
.serviceCard strong { color: var(--green); line-height: 1.35; display: block; }
.serviceCard a, .insightCard a { color: var(--green); margin-top: 24px; font-weight: 600; display: inline-flex; }
.approach { border-top: 1px solid var(--line); align-items: start; }
.principleList { gap: 12px; display: grid; }
.principle { background: #ebe7df; border-radius: 8px; gap: 14px; padding: 18px; }
.principle span { color: var(--green); font-weight: 600; }
.principle p { margin: 0; font-size: var(--step-1); font-weight: 600; }
.processGrid { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; margin-top: 34px; display: grid; }
.processGrid > div { min-height: 250px; padding: 26px; }
.processGrid span { color: #684327; background: #e4d6bf; border-radius: 999px; justify-content: center; align-items: center; width: 38px; height: 38px; margin-bottom: 34px; font-weight: 600; display: inline-flex; }
.processGrid p { color: #50615d; line-height: 1.55; }
.booking { color: #fffdf8; background: #1b2424; border-radius: 8px; align-items: center; max-width: 1180px; margin: 0 auto 72px; padding: clamp(28px,5vw,52px); }
.booking .sectionLabel { color: #e4c48b; }
.booking p { color: rgba(255,253,248,.76); max-width: 660px; }
.booking .primaryButton { color: #1b2424; background: #fffdf8; justify-self: end; min-width: 190px; }

.subHero { background: linear-gradient(130deg,#194d461f,transparent 36%), linear-gradient(25deg,#b98d4529,transparent 46%), var(--background); padding: 28px clamp(20px,5vw,72px) 74px; }
.subHeroCopy { max-width: 980px; margin: 88px auto 0; }
.subHero h1 { max-width: 980px; }
.splitPanel, .proofBand, .founderGrid, .detailGrid, .contactGrid { grid-template-columns: .9fr 1fr; gap: clamp(28px,5vw,70px); display: grid; }
.splitPanel, .proofBand { border-top: 1px solid var(--line); align-items: center; }
.splitPanel p:last-child, .founderGrid p, .detailGrid p, .contactPanel p { color: #465752; font-size: var(--step-1); line-height: 1.62; }
.proofBand .secondaryButton { justify-self: end; }
.detailGrid aside, .credentialPanel, .contactAside, .contactPanel { background: rgba(255,253,248,.84); border: 1px solid rgba(41,55,52,.14); border-radius: 8px; padding: 26px; box-shadow: rgba(40,34,24,.08) 0 28px 70px; }
.detailItem { color: #31413f; background: rgba(247,244,238,.9); border-radius: 8px; margin-bottom: 10px; padding: 15px; font-weight: 600; }
.detailGrid aside strong { color: var(--green); margin-top: 18px; display: block; }
.faqGrid, .insightGrid, .timeline { gap: 16px; display: grid; }
.faqGrid { grid-template-columns: repeat(2,minmax(0,1fr)); padding-top: 0; }
.faqGrid article, .insightCard, .timeline article { background: rgba(255,253,248,.82); border: 1px solid rgba(41,55,52,.14); border-radius: 8px; padding: 26px; }
.faqGrid p, .insightCard span, .timeline p, .article p { color: #50615d; line-height: 1.62; }
.founderGrid { align-items: start; }
.timeline { grid-template-columns: repeat(4,minmax(0,1fr)); padding-top: 0; }
.timeline article { min-height: 300px; }
.insightGrid { grid-template-columns: repeat(3,minmax(0,1fr)); }
.insightCard { min-height: 320px; }
.insightCard p { color: var(--blue); text-transform: uppercase; font-size: var(--step--1); font-weight: 600; }
.insightCard h2 { font-size: var(--step-3); }
.article { max-width: 820px; }
.article h2 { margin-top: 42px; font-size: var(--step-3); }
.article p { font-size: var(--step-1); }
.contactGrid { align-items: start; }
.contactPanel .primaryButton { margin-top: 16px; }

@media (max-width: 960px) {
  .hero { min-height: auto; }
  .heroGrid, .intro, .approach, .booking, .splitPanel, .proofBand, .founderGrid, .detailGrid, .contactGrid { grid-template-columns: 1fr; }
  .serviceGrid, .processGrid, .timeline, .insightGrid, .faqGrid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .booking .primaryButton, .proofBand .secondaryButton { justify-self: start; }
}
@media (max-width: 680px) {
  .nav { align-items: flex-start; justify-content: space-between; gap: 18px; }
  .navLinks { flex-direction: column; align-items: flex-end; gap: 10px; }
  .navMenu { min-width: min(310px,calc(100vw - 40px)); left: auto; right: 0; transform: translateY(8px); }
  .navDropdown:hover .navMenu, .navDropdown:focus-within .navMenu { transform: translateY(0); }
  .heroGrid, .subHeroCopy { margin-top: 58px; }
  h1 { font-size: var(--step-5); }
  h2 { font-size: var(--step-4); }
  .serviceGrid, .processGrid, .timeline, .insightGrid, .faqGrid { grid-template-columns: 1fr; }
  .serviceCard, .processGrid > div { min-height: auto; }
  .heroActions { flex-direction: column; }
  .primaryButton, .secondaryButton { width: 100%; }
}
