:root {
  --navy: #0b1d3a;
  --navy-soft: #12294f;
  --coral: #ff6b4d;
  --sage: #a7c4b2;
  --lavender: #cac5f0;
  --lavender-soft: #f0edff;
  --cream: #fafaf8;
  --white: #ffffff;
  --ink-muted: #4d5b70;
  --line: rgba(11,29,58,.15);
  --shell: min(1280px, calc(100vw - 64px));
  --heading: "Manrope", Arial, sans-serif;
  --body: "Open Sans", Arial, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--navy); background: var(--cream); font-family: var(--body); line-height: 1.6; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.skip-link { position: fixed; top: 12px; left: 12px; z-index: 1000; padding: 10px 14px; background: var(--coral); transform: translateY(-160%); }
.skip-link:focus { transform: none; }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.96); border-bottom: 1px solid var(--line); backdrop-filter: blur(14px); }
.header-inner { min-height: 108px; display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.brand { display: inline-flex; align-items: center; }
.brand img { width: 250px; height: auto; }
.site-nav { display: flex; align-items: center; gap: 36px; font-family: var(--heading); font-size: 14px; font-weight: 700; }
.site-nav > a:not(.nav-cta) { position: relative; }
.site-nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--coral); transition: right .2s ease; }
.site-nav > a:not(.nav-cta):hover::after, .site-nav > a:not(.nav-cta):focus-visible::after { right: 0; }
.nav-cta { min-width: 132px; text-align: center; padding: 14px 22px; color: var(--white); background: var(--coral); border-radius: 5px; box-shadow: 0 6px 16px rgba(255,107,77,.18); }
.menu-toggle { display: none; border: 0; background: transparent; padding: 10px; }
.menu-toggle span:not(.sr-only) { width: 28px; height: 2px; display: block; margin: 6px 0; background: var(--navy); }

.hero { position: relative; isolation: isolate; min-height: 650px; overflow: hidden; background: var(--white); border-bottom: 1px solid var(--line); }
.hero-shape { position: absolute; z-index: -1; right: 0; top: 0; width: 50%; height: 100%; overflow: hidden; }
.hero-shape::before { content: ""; position: absolute; width: 145%; height: 145%; right: -78%; top: -22%; background: linear-gradient(180deg, #f1ecff 0%, #e4dafc 100%); border-radius: 50%; }
.hero-grid { min-height: 650px; display: grid; grid-template-columns: minmax(0,1.15fr) minmax(320px,.85fr); gap: 68px; align-items: center; padding-block: 78px; }
.hero-copy { max-width: 790px; }
.hero h1 { margin: 0; font-family: var(--heading); font-size: clamp(58px, 6.2vw, 94px); line-height: 1.05; letter-spacing: -.065em; font-weight: 800; }
.pen-underline { display: inline-block; position: relative; }
.pen-underline::after { content: ""; position: absolute; left: 44%; width: 40%; bottom: -18px; height: 20px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 420 40' preserveAspectRatio='none'%3E%3Cpath d='M10 24 C90 8 250 8 408 21' fill='none' stroke='%23ff6b4d' stroke-width='5.5' stroke-linecap='round'/%3E%3C/svg%3E") center/100% 100% no-repeat; }
.hero-kicker { margin: 46px 0 0; max-width: 740px; font-family: var(--heading); font-size: clamp(20px, 2vw, 27px); line-height: 1.45; font-weight: 600; }
.hero-kicker strong { color: #6551e6; font-weight: 700; }
.hero-intro { max-width: 720px; margin: 26px 0 0; color: var(--ink-muted); font-size: 18px; }
.hero-actions { margin-top: 34px; display: flex; gap: 28px; flex-wrap: wrap; }
.button { min-width: 190px; min-height: 58px; display: inline-flex; align-items: center; justify-content: center; padding: 14px 25px; font-family: var(--heading); font-weight: 700; border-radius: 5px; border: 1px solid transparent; transition: transform .2s ease, box-shadow .2s ease; cursor: pointer; }
.button:hover { transform: translateY(-2px); }
.button-coral { color: var(--white); background: var(--coral); box-shadow: 0 9px 20px rgba(255,107,77,.17); }
.button-outline { color: #6551e6; background: var(--white); border-color: #7762eb; }
.hero-mark { justify-self: end; width: min(370px, 90%); filter: drop-shadow(0 18px 35px rgba(11,29,58,.15)); }
.hero-mark img { width: 100%; border-radius: 6px; }

.values { background: var(--white); border-bottom: 1px solid var(--line); }
.values-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.value { min-height: 240px; padding: 36px 30px 34px; text-align: center; border-right: 1px solid var(--line); }
.value:first-child { border-left: 1px solid var(--line); }
.value-icon { display: none; }
.value h2 { margin: 0 0 12px; font-family: var(--heading); color: #5c49df; text-transform: uppercase; letter-spacing: .05em; font-size: 14px; }
.value p { max-width: 250px; margin: 0 auto; color: var(--ink-muted); font-size: 14px; }

.section { padding: clamp(88px, 9vw, 140px) 0; }
.eyebrow { margin: 0 0 18px; font-family: var(--heading); color: #5c49df; font-size: 12px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow::before { content: ""; display: inline-block; width: 30px; height: 2px; margin-right: 12px; vertical-align: middle; background: var(--coral); }
.eyebrow-light { color: var(--lavender); }
.section-heading { margin-bottom: 60px; display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 80px; }
h2 { margin: 0; font-family: var(--heading); font-size: clamp(40px,5vw,68px); line-height: 1.05; letter-spacing: -.055em; }
.section-heading > p { margin: 0; color: var(--ink-muted); font-size: 18px; }

.services { background: var(--cream); }
.service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.service-card { min-height: 570px; display: flex; flex-direction: column; padding: 34px 30px; background: var(--white); border: 1px solid var(--line); }
.service-card-lavender { background: linear-gradient(160deg,#f4f1ff,#e8e2fb); }
.service-card-navy { color: var(--white); background: var(--navy); border-color: var(--navy); }
.service-number { margin: 0 0 40px; font-family: var(--heading); color: var(--coral); font-weight: 800; font-size: 13px; }
.service-label { margin: 0 0 12px; color: #5c49df; font-family: var(--heading); font-size: 12px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.service-card-navy .service-label { color: var(--lavender); }
.service-card h3 { margin: 0 0 26px; font-family: var(--heading); font-size: clamp(27px,2.6vw,38px); line-height: 1.12; letter-spacing: -.045em; }
.service-card ul { margin: auto 0 0; padding: 0; list-style: none; }
.service-card li { padding: 15px 0; border-top: 1px solid var(--line); font-size: 15px; }
.service-card-navy li { border-color: rgba(255,255,255,.18); }

.impact { color: var(--white); background: var(--navy); }
.impact-grid { display: grid; grid-template-columns: 1fr .8fr; gap: 80px; align-items: stretch; }
.impact-copy p:not(.eyebrow) { max-width: 720px; color: rgba(255,255,255,.76); font-size: 18px; }
.impact-panel { position: relative; min-height: 430px; padding: 44px; overflow: hidden; color: var(--navy); background: linear-gradient(150deg,#f4f0ff,#cac5f0); }
.impact-panel::before { content: ""; position: absolute; inset: auto -25% -55% 20%; aspect-ratio: 1; border: 2px solid rgba(11,29,58,.14); border-radius: 50%; }
.impact-panel img { position: absolute; right: 38px; bottom: 34px; width: 130px; border-radius: 4px; }
.impact-strapline { position: relative; z-index: 1; max-width: 480px; margin: 0; font-family: var(--heading); font-size: clamp(34px,4vw,58px); line-height: 1.12; letter-spacing: -.055em; font-weight: 700; }

.approach { background: var(--white); }
.approach-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; }
.approach-intro { position: sticky; top: 150px; align-self: start; }
.approach-intro > p:last-child { color: var(--ink-muted); font-size: 18px; }
.principle { border-top: 1px solid var(--navy); }
.principle:last-child { border-bottom: 1px solid var(--navy); }
.principle button { width: 100%; padding: 25px 0; display: grid; grid-template-columns: 58px 1fr 28px; align-items: center; text-align: left; border: 0; background: transparent; cursor: pointer; }
.principle button span { color: var(--coral); font-size: 12px; font-weight: 800; }
.principle button strong { font-family: var(--heading); font-size: clamp(25px,3vw,38px); letter-spacing: -.04em; }
.principle button i { font-style: normal; font-size: 28px; transition: transform .2s ease; }
.principle.is-open button i { transform: rotate(45deg); }
.principle-content { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.principle-content p { overflow: hidden; margin: 0; padding-left: 58px; color: var(--ink-muted); }
.principle.is-open .principle-content { grid-template-rows: 1fr; }
.principle.is-open .principle-content p { padding-bottom: 28px; }

.about { background: linear-gradient(180deg,var(--lavender-soft),var(--cream)); }
.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; }
.about-lead { margin-top: 0; color: var(--navy)!important; font-family: var(--heading); font-size: clamp(26px,2.7vw,39px)!important; font-weight: 700; line-height: 1.32; letter-spacing: -.035em; }
.about-copy > p { color: var(--ink-muted); font-size: 18px; }
.attribute-row { margin-top: 35px; display: flex; flex-wrap: wrap; gap: 9px; }
.attribute-row span { padding: 9px 13px; border: 1px solid rgba(11,29,58,.18); background: var(--white); font-family: var(--heading); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.attribute-row span:nth-child(2), .attribute-row span:nth-child(5) { background: var(--lavender); }
.attribute-row span:nth-child(3) { background: var(--sage); }

.contact { color: var(--white); background: var(--navy); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 95px; }
.contact-copy > p:not(.eyebrow) { max-width: 620px; color: rgba(255,255,255,.72); font-size: 18px; }
.contact-email { display: inline-block; margin-top: 18px; color: var(--lavender); border-bottom: 1px solid currentColor; font-weight: 700; }
.contact-form { padding: 40px; color: var(--navy); background: var(--cream); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.contact-form label { display: block; margin-bottom: 22px; }
.contact-form label span { display: block; margin-bottom: 8px; font-family: var(--heading); font-size: 11px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.contact-form input, .contact-form textarea { width: 100%; padding: 12px 2px; color: var(--navy); background: transparent; border: 0; border-bottom: 1px solid rgba(11,29,58,.35); border-radius: 0; outline: 0; }
.contact-form input:focus, .contact-form textarea:focus { border-bottom: 2px solid var(--coral); }
.contact-form textarea { resize: vertical; min-height: 130px; }
.privacy-note { margin: 16px 0 0; color: var(--ink-muted); font-size: 12px; }
.honeypot { display: none; }

.site-footer { color: var(--white); background: #071426; }
.footer-main { padding: 68px 0 55px; display: grid; grid-template-columns: 1fr auto; gap: 70px; align-items: start; }
.footer-brand img { width: 300px; }
.footer-main p { max-width: 560px; color: rgba(255,255,255,.64); }
.footer-links { display: grid; gap: 10px; }
.footer-links a:hover { color: var(--coral); }
.footer-bottom { min-height: 70px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.55); font-size: 12px; }
.footer-bottom p { margin: 0; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.thanks-page { min-height: 100vh; display: grid; place-items: center; padding: 32px; background: linear-gradient(145deg,var(--cream),var(--lavender-soft)); }
.thanks-card { width: min(760px,100%); padding: 46px; background: var(--white); border: 1px solid var(--line); box-shadow: 22px 22px 0 var(--lavender); }
.thanks-card .brand img { width: 280px; }
.thanks-card .eyebrow { margin-top: 52px; }
.thanks-card h1 { margin: 0; font-family: var(--heading); font-size: clamp(58px,9vw,100px); line-height: .95; letter-spacing: -.06em; }
.thanks-card p { max-width: 620px; color: var(--ink-muted); font-size: 19px; }

@media (max-width: 1020px) {
  :root { --shell: min(900px,calc(100vw - 40px)); }
  .menu-toggle { display: block; z-index: 111; }
  .site-nav { position: fixed; inset: 0; padding: 130px 28px 40px; flex-direction: column; align-items: flex-start; gap: 25px; background: var(--white); font-size: 27px; transform: translateX(100%); transition: transform .3s ease; }
  .site-nav.is-open { transform: none; }
  .hero-grid, .section-heading, .impact-grid, .approach-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-shape { right: -8%; width: 58%; opacity: .9; }
  .hero-mark { justify-self: start; width: 290px; }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .value:nth-child(2) { border-right: 0; }
  .value:nth-child(3), .value:nth-child(4) { border-top: 1px solid var(--line); }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .approach-intro { position: static; }
}
@media (max-width: 640px) {
  :root { --shell: calc(100vw - 28px); }
  .header-inner { min-height: 86px; }
  .brand img { width: 205px; }
  .hero-grid { min-height: auto; padding-block: 60px 70px; }
  .hero h1 { font-size: clamp(47px,14vw,70px); }
  .pen-underline::after { content: ""; position: absolute; left: 44%; width: 40%; bottom: -18px; height: 20px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 420 40' preserveAspectRatio='none'%3E%3Cpath d='M10 24 C90 8 250 8 408 21' fill='none' stroke='%23ff6b4d' stroke-width='5.5' stroke-linecap='round'/%3E%3C/svg%3E") center/100% 100% no-repeat; }
  .hero-kicker { margin-top: 38px; font-size: 19px; }
  .hero-intro { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 14px; }
  .button { width: 100%; }
  .hero-mark { width: 220px; }
  .values-grid { grid-template-columns: 1fr; }
  .value, .value:first-child { border-left: 0; border-right: 0; border-top: 1px solid var(--line); }
  .section { padding: 78px 0; }
  .section-heading { gap: 28px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 28px 22px; }
  .footer-main { grid-template-columns: 1fr; gap: 35px; }
  .footer-bottom { padding-block: 20px; flex-direction: column; align-items: flex-start; gap: 8px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,*::before,*::after { transition-duration: .01ms!important; animation-duration: .01ms!important; }
  .reveal { opacity: 1; transform: none; }
}

.brand img { display:block; width: 238px; height:auto; }
@media (max-width: 720px){ .brand img { width: 205px; } }
