:root {
  --teal: #123f43;
  --teal-2: #0b3033;
  --sea: #78a69b;
  --sand: #e6d9c4;
  --paper: #f7f5ef;
  --lime: #d8eb75;
  --ink: #123f43;
  --white: #ffffff;
  --line: rgba(18, 63, 67, .18);
  --radius: 18px;
  --shadow: 0 24px 70px rgba(7, 35, 38, .12);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 4px; }
button, input, textarea { font: inherit; }
:focus-visible { outline: 3px solid var(--lime); outline-offset: 4px; }
.skip-link { position: fixed; left: 1rem; top: -6rem; z-index: 100; background: var(--lime); color: #000; padding: .7rem 1rem; }
.skip-link:focus { top: 1rem; }
.wrap { width: min(1160px, calc(100% - 48px)); margin: 0 auto; }
.narrow { width: min(780px, calc(100% - 48px)); margin: 0 auto; }
.eyebrow { margin: 0 0 1rem; color: var(--sea); font-size: .76rem; font-weight: 700; letter-spacing: .14em; line-height: 1.35; text-transform: uppercase; }
.eyebrow.lime { color: var(--lime); }
h1, h2, h3 { margin: 0; font-family: var(--serif); font-weight: 400; letter-spacing: -.035em; line-height: 1.04; }
h1 { font-size: clamp(2.9rem, 7vw, 5.8rem); max-width: 12ch; }
h2 { font-size: clamp(2.1rem, 4.4vw, 3.7rem); max-width: 16ch; }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.75rem); }
p { margin: 0 0 1.2rem; }
.lead { font-size: clamp(1.08rem, 2vw, 1.35rem); line-height: 1.55; max-width: 64ch; }
.muted { color: #536668; }
.kicker { border-left: 3px solid var(--lime); padding-left: 1rem; }

.site-header { position: absolute; inset: 0 0 auto; z-index: 20; color: var(--white); }
.site-header.light-page { position: relative; background: var(--teal); }
.nav { min-height: 102px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { width: 244px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 1.8rem; font-size: .89rem; }
.nav-links a { text-decoration: none; }
.nav-links a:not(.nav-cta) { opacity: .82; }
.nav-links a:not(.nav-cta):hover, .nav-links a[aria-current="page"] { opacity: 1; }
.nav-cta { border: 1px solid rgba(255,255,255,.35); border-radius: 999px; padding: .62rem 1rem; }
.nav-cta:hover { border-color: var(--lime); color: var(--lime); }
.menu-button { display: none; border: 1px solid rgba(255,255,255,.35); border-radius: 999px; background: transparent; color: #fff; padding: .45rem .8rem; }

.hero { min-height: 820px; background: var(--teal); color: var(--white); display: grid; align-items: center; overflow: hidden; position: relative; padding: 180px 0 100px; }
.hero::before { content: ""; position: absolute; width: 760px; height: 760px; right: -330px; top: -280px; border: 1px solid rgba(216,235,117,.55); border-radius: 48% 52% 65% 35%; transform: rotate(20deg); }
.hero::after { content: ""; position: absolute; width: 570px; height: 570px; right: -210px; top: -140px; border: 1px solid rgba(120,166,155,.55); border-radius: 65% 35% 48% 52%; transform: rotate(-12deg); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr); align-items: end; gap: 6rem; position: relative; z-index: 1; }
.hero h1 span { color: var(--white); }
.hero-copy .lead { max-width: 690px; margin: 1.7rem 0 1.9rem; color: rgba(255,255,255,.82); }
.hero-note { margin: 1.25rem 0 0; color: rgba(255,255,255,.62); font-size: .88rem; }
.actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.2rem; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: .55rem; min-height: 52px; border: 1px solid transparent; border-radius: 999px; padding: .72rem 1.15rem; background: var(--lime); color: #000; font-weight: 700; text-decoration: none; cursor: pointer; }
.button::after { content: "→"; transition: transform .2s ease; }
.button:hover::after { transform: translateX(4px); }
.button.secondary { background: transparent; color: inherit; border-color: currentColor; }
.text-link { font-weight: 700; text-decoration: none; border-bottom: 1px solid currentColor; padding-bottom: .1rem; }
.text-link:hover { color: var(--sea); }
.hero-aside { position: relative; padding: 1.5rem 0 1.5rem 1.5rem; border-left: 1px solid rgba(255,255,255,.22); }
.hero-stat { padding: 1.15rem 0; border-bottom: 1px solid rgba(255,255,255,.13); }
.hero-stat:last-child { border-bottom: 0; }
.hero-stat strong { display: block; color: var(--lime); font-family: var(--serif); font-size: 2.2rem; font-weight: 400; line-height: 1; }
.hero-stat span { display: block; margin-top: .4rem; color: rgba(255,255,255,.68); font-size: .82rem; line-height: 1.4; }

.section { padding: 110px 0; }
.section.compact { padding: 80px 0; }
.section.sand { background: var(--sand); }
.section.white { background: var(--white); }
.section.teal { background: var(--teal); color: var(--white); }
.section-head { display: grid; grid-template-columns: .7fr 1.3fr; gap: 4rem; align-items: start; margin-bottom: 3.6rem; }
.section-head .lead { margin: .2rem 0 0; }
.problem-list { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--line); }
.problem { min-height: 220px; padding: 1.35rem 1.2rem 1.2rem 0; border-bottom: 1px solid var(--line); }
.problem + .problem { border-left: 1px solid var(--line); padding-left: 1.2rem; }
.problem span { display: block; color: var(--sea); font-size: .75rem; font-weight: 700; letter-spacing: .12em; margin-bottom: 2.8rem; }
.problem p { font-family: var(--serif); font-size: 1.15rem; line-height: 1.35; }
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.16); }
.service-card { min-height: 365px; display: flex; flex-direction: column; background: var(--teal); padding: 2rem; }
.service-card .number { color: var(--lime); font-size: .75rem; letter-spacing: .12em; }
.service-card h3 { margin: 3.3rem 0 1rem; }
.service-card p { color: rgba(255,255,255,.69); }
.service-card a { margin-top: auto; color: var(--lime); font-weight: 700; text-decoration: none; }

.stage-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 7rem; align-items: start; }
.stage-grid h2 { position: sticky; top: 2rem; }
.check-list { list-style: none; margin: 0; padding: 0; }
.check-list li { position: relative; padding: 1.25rem 0 1.25rem 2.6rem; border-bottom: 1px solid var(--line); }
.check-list li::before { content: ""; position: absolute; left: 0; top: 1.65rem; width: 1rem; height: .5rem; border-left: 2px solid var(--sea); border-bottom: 2px solid var(--sea); transform: rotate(-45deg); }
.founder-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 6rem; align-items: center; }
.portrait-wrap { position: relative; }
.portrait-wrap::before { content: ""; position: absolute; inset: -18px 18px 18px -18px; border: 1px solid var(--sea); border-radius: 210px 210px 18px 18px; }
.portrait-wrap img { position: relative; width: 100%; max-height: 650px; object-fit: cover; object-position: center 24%; border-radius: 190px 190px 16px 16px; box-shadow: var(--shadow); }
.founder-copy h2 { margin-bottom: 1.8rem; }
.founder-copy p { max-width: 64ch; }
.philosophy { position: relative; overflow: hidden; }
.philosophy::after { content: ""; position: absolute; width: 560px; height: 260px; right: -150px; bottom: -130px; border: 2px solid var(--lime); border-radius: 50%; transform: rotate(-9deg); }
.philosophy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 7rem; align-items: end; position: relative; z-index: 1; }
.tagline { color: var(--lime); font-size: .8rem; font-weight: 700; letter-spacing: .13em; }
.cta-band { padding: 74px 0; background: var(--sea); color: #000; }
.cta-grid { display: flex; justify-content: space-between; align-items: center; gap: 3rem; }
.cta-grid h2 { max-width: 13ch; }
.cta-grid .button { background: #000; color: #fff; white-space: nowrap; }

.page-hero { padding: 100px 0 90px; background: var(--teal); color: var(--white); position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; width: 520px; height: 240px; right: -150px; bottom: -130px; border: 1px solid var(--lime); border-radius: 50%; transform: rotate(-12deg); }
.page-hero h1 { margin-bottom: 1.5rem; }
.page-hero .lead { color: rgba(255,255,255,.76); }
.anchor-nav { background: #fff; border-bottom: 1px solid var(--line); }
.anchor-nav .wrap { display: flex; gap: 1.6rem; overflow-x: auto; padding-top: 1rem; padding-bottom: 1rem; }
.anchor-nav a { flex: 0 0 auto; font-size: .84rem; font-weight: 700; text-decoration: none; }
.service-detail { scroll-margin-top: 20px; display: grid; grid-template-columns: .7fr 1.3fr; gap: 6rem; padding: 90px 0; border-bottom: 1px solid var(--line); }
.service-detail:last-child { border-bottom: 0; }
.service-detail .label { color: var(--sea); font-size: .78rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.service-detail h2 { margin-top: .8rem; }
.offer-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 2rem 0; }
.offer-item { border: 1px solid var(--line); border-radius: 12px; padding: 1.2rem; background: rgba(255,255,255,.55); }
.offer-item h3 { font-size: 1.16rem; margin-bottom: .55rem; }
.offer-item p { margin: 0; font-size: .91rem; }
.process { counter-reset: steps; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 3rem; }
.process article { counter-increment: steps; border-top: 1px solid var(--sea); padding: 1.4rem 1rem 0 0; }
.process article::before { content: "0" counter(steps); color: var(--sea); font-size: .74rem; font-weight: 700; letter-spacing: .12em; }
.process h3 { margin: 2rem 0 .8rem; }
.faq { max-width: 850px; }
.faq details { border-bottom: 1px solid rgba(255,255,255,.22); padding: 1.2rem 0; }
.faq summary { cursor: pointer; list-style: none; font-family: var(--serif); font-size: 1.25rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--lime); }
.faq details[open] summary::after { content: "−"; }
.faq details p { color: rgba(255,255,255,.74); margin-top: 1rem; }

.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 7rem; }
.wire-panel { border-radius: var(--radius); background: var(--sand); padding: 2rem; }
.wire-panel::before, .wire-panel::after { content: ""; position: absolute; border-radius: 50%; transform: rotate(-14deg); }
.wire-panel::before, .wire-panel::after { content: none; }
.wire-copy { border-top: 1px solid var(--line); padding-top: 1.5rem; margin-top: 1.5rem; font-family: var(--serif); font-size: inherit; line-height: 1.62; }
.wire-panel p { font-size: 1rem; }
.proof-heading { max-width: none; white-space: nowrap; font-size: clamp(1.3rem, 5.5vw, 3.7rem); letter-spacing: -.035em; }
.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 3rem; }
.principle { border: 1px solid rgba(255,255,255,.2); border-radius: 12px; padding: 1.5rem; }
.principle span { color: var(--lime); font-size: .78rem; font-weight: 700; }
.principle h3 { margin: 2.4rem 0 .7rem; }

.contact-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 7rem; align-items: start; }
.contact-aside { position: sticky; top: 2rem; }
.contact-aside a { font-weight: 700; }
.form-card { background: #fff; border-radius: var(--radius); padding: clamp(1.4rem, 4vw, 3rem); box-shadow: var(--shadow); }
.prototype-note { background: var(--sand); border-left: 4px solid var(--lime); padding: .8rem 1rem; font-size: .84rem; margin-bottom: 2rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field { display: grid; gap: .4rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .84rem; font-weight: 700; }
.field input, .field textarea { width: 100%; border: 1px solid #aab7b8; border-radius: 8px; background: #fff; color: #102a2c; padding: .8rem .9rem; }
.field input:focus, .field textarea:focus { border-color: var(--teal); outline: 3px solid rgba(216,235,117,.55); }
.field textarea { min-height: 160px; resize: vertical; }
.helper { font-size: .78rem; color: #637274; }
.form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-top: 1.5rem; }
.form-status { display: none; border-radius: 8px; margin-top: 1rem; padding: .9rem 1rem; background: var(--sand); }
.form-status.show { display: block; }
.legal-copy h2 { margin-top: 3rem; font-size: 2rem; }
.legal-copy h2:first-child { margin-top: 0; }

.site-footer { background: #081f21; color: #fff; padding: 70px 0 34px; }
.footer-top { display: grid; grid-template-columns: 1.1fr .9fr; gap: 5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.15); }
.footer-brand img { width: 260px; }
.footer-tagline { color: var(--lime); font-size: .75rem; font-weight: 700; letter-spacing: .13em; margin-top: 1.5rem; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem 2rem; align-content: start; }
.footer-links a, .cookie-button { color: rgba(255,255,255,.76); font-size: .87rem; text-decoration: none; }
.cookie-button { border: 0; background: none; padding: 0; text-align: left; cursor: pointer; }
.footer-bottom { display: flex; justify-content: space-between; gap: 2rem; padding-top: 2rem; color: rgba(255,255,255,.56); font-size: .76rem; }

@media (max-width: 980px) {
  .nav { min-height: 82px; }
  .brand img { width: 210px; }
  .menu-button { display: inline-flex; }
  .nav-links { position: absolute; top: 82px; left: 24px; right: 24px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 1rem; border-radius: 12px; background: #0b3033; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .8rem; }
  .nav-cta { margin-top: .5rem; text-align: center; }
  .hero { min-height: auto; padding-top: 160px; }
  .hero-grid, .section-head, .stage-grid, .founder-grid, .philosophy-grid, .service-detail, .about-intro, .contact-grid { grid-template-columns: 1fr; gap: 3.2rem; }
  .hero-aside { display: grid; grid-template-columns: repeat(3, 1fr); border-left: 0; border-top: 1px solid rgba(255,255,255,.22); padding: 1rem 0 0; }
  .hero-stat { border-bottom: 0; padding-right: 1rem; }
  .problem-list { grid-template-columns: 1fr 1fr; }
  .problem + .problem { border-left: 0; padding-left: 0; }
  .problem:nth-child(even) { border-left: 1px solid var(--line); padding-left: 1.2rem; }
  .services { grid-template-columns: 1fr; }
  .service-card { min-height: 280px; }
  .stage-grid h2, .contact-aside { position: static; }
  .portrait-wrap { max-width: 570px; }
  .offer-list, .principles { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  body { font-size: 17px; }
  .wrap, .narrow { width: min(100% - 32px, 1160px); }
  .section { padding: 78px 0; }
  .hero { padding: 132px 0 76px; }
  .hero-grid { gap: 3rem; }
  .hero-aside { grid-template-columns: 1fr; }
  .hero-stat { display: grid; grid-template-columns: 90px 1fr; align-items: center; border-bottom: 1px solid rgba(255,255,255,.13); }
  .hero-stat strong { font-size: 1.8rem; }
  .hero-stat span { margin: 0; }
  .problem-list { grid-template-columns: 1fr; }
  .problem, .problem + .problem, .problem:nth-child(even) { min-height: 0; border-left: 0; padding: 1.3rem 0; }
  .problem span { margin-bottom: 1rem; }
  .cta-grid, .footer-bottom { align-items: flex-start; flex-direction: column; }
  .process { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .footer-top { grid-template-columns: 1fr; gap: 3rem; }
  .footer-links { grid-template-columns: 1fr; }
}

.growth-route { list-style: none; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 2rem; padding: 0; margin: 3rem 0 1rem; }
.growth-route li { border-top: 2px solid var(--sea); padding: 1.5rem 1rem 0 0; position: relative; }
.growth-route li:not(:last-child)::after { content: '→'; position: absolute; right: -.8rem; top: -.9rem; background: var(--white); padding: 0 .3rem; }
.growth-route span { font-size: .8rem; font-weight: bold; }
.growth-route h3 { margin: 1.2rem 0; }
.image-plan { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1.5rem; margin-top: 2rem; }
.image-placeholder { margin: 0; }
.image-placeholder > div { aspect-ratio: 3 / 2; display: flex; flex-direction: column; justify-content: space-between; padding: 1.5rem; border: 1px dashed var(--teal); background: var(--paper); }
.image-placeholder span { font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; }
.image-placeholder h3 { font-size: 1.35rem; }
.image-placeholder figcaption { font-size: .82rem; padding-top: .65rem; }
.section:not(.teal) .eyebrow, .problem span, .service-detail .label { color: var(--teal); }
.teal .eyebrow:not(.lime) { color: var(--sea); }
.philosophy-grid { align-items: start; }
.about-intro h2, .narrow h2 { margin-bottom: 1.5rem; }
.stage-grid h2 { position: static; }
.page-hero h1 { max-width: 19ch; font-size: clamp(2.7rem,5.5vw,4.7rem); }
.hero h1 { font-size: clamp(2.7rem,5.6vw,4.8rem); max-width: 15ch; }
.section-head .lead { margin-top: 0; }
@media (max-width: 980px) {
  .image-plan { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .wire-panel { padding: 1.5rem; }
}
@media (max-width: 640px) {
  .growth-route, .image-plan { grid-template-columns: 1fr; }
  .growth-route li:not(:last-child)::after { content: none; }
  .portrait-wrap::before { inset: -8px 8px 8px -8px; }
  .contact-aside a { overflow-wrap: anywhere; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
