:root {
  --navy: #0F172A;
  --navy-2: #111E35;
  --cream: #F8F8F5;
  --white: #FFFFFF;
  --sand: #C8A46A;
  --sand-soft: #EDE2D0;
  --gray: #6F7785;
  --line: rgba(15, 23, 42, .14);
  --line-dark: rgba(248, 248, 245, .18);
  --max: 1180px;
  --radius: 8px;
  --shadow: 0 20px 40px rgba(15, 23, 42, .08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--cream); color: var(--navy); font-family: "Manrope", Arial, sans-serif;
  font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.container { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }

.site-header {
  position: sticky; top: 0; z-index: 50; background: rgba(15, 23, 42, .96);
  border-bottom: 1px solid rgba(248,248,245,.10); backdrop-filter: blur(12px);
}
.nav-wrap { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; flex-direction: column; line-height: .95; font-weight: 800; letter-spacing: .09em; font-size: 17px; }
.brand small { color: var(--sand); font-size: 8px; letter-spacing: .34em; margin-top: 7px; font-weight: 700; }
.site-header .brand { color: var(--cream); }
.main-nav { display: flex; align-items: center; gap: 25px; font-size: 13px; font-weight: 600; color: rgba(248,248,245,.88); }
.main-nav a:not(.nav-cta) { transition: color .2s ease; }
.main-nav a:not(.nav-cta):hover { color: var(--sand); }
.nav-cta { background: var(--sand); color: var(--navy); padding: 10px 14px; border-radius: 4px; }
.menu-toggle { display:none; border: 0; background: transparent; padding: 6px; cursor:pointer; }
.menu-toggle span { display:block; width:23px; height:2px; background: var(--cream); margin: 5px 0; }

.section { padding: 112px 0; }
.section-dark { background: var(--navy); color: var(--cream); }
.hero { padding: 96px 0 104px; overflow:hidden; }
.hero-grid { display:grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items:center; min-height: 560px; }
.eyebrow { font-size: 11px; font-weight: 800; letter-spacing: .16em; color: var(--sand); margin: 0 0 22px; }
.eyebrow-dark { color: #94713F; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(38px, 5vw, 68px); line-height: 1.08; letter-spacing: -.045em; max-width: 760px; margin-bottom: 25px; }
h2 { font-size: clamp(32px, 4vw, 52px); line-height: 1.1; letter-spacing: -.04em; margin-bottom: 28px; }
h3 { font-size: 20px; line-height: 1.25; letter-spacing: -.025em; margin-bottom: 13px; }
em { color: var(--sand); font-style: normal; }
.hero-text { max-width: 660px; color: rgba(248,248,245,.78); font-size: 17px; }
.hero-actions { display:flex; flex-wrap:wrap; gap:12px; margin-top: 32px; }
.button { display:inline-flex; align-items:center; justify-content:center; text-align:center; padding: 14px 20px; border-radius: 4px; font-size: 13px; font-weight: 800; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-gold { background: var(--sand); color: var(--navy); }
.button-ghost { border: 1px solid rgba(248,248,245,.35); color: var(--cream); }
.button-navy { background: var(--navy); color: var(--cream); }
.hero-note { color: rgba(248,248,245,.58); font-size: 12px; margin-top: 25px; }
.hero-note span { color: var(--sand); padding: 0 4px; }

.hero-visual { position:relative; min-height: 460px; }
.diagram-shell { position:absolute; inset: 0; border: 1px solid rgba(248,248,245,.24); overflow:hidden; border-radius: 2px; }
.diagram-grid { position:absolute; inset:0; background-image: linear-gradient(rgba(248,248,245,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(248,248,245,.07) 1px, transparent 1px); background-size: 42px 42px; }
.diagram-line { position:absolute; height: 1px; transform-origin: left center; background: linear-gradient(90deg, var(--sand), rgba(200,164,106,.08)); }
.line-a { width:68%; transform: rotate(24deg); top: 31%; left: 10%; }
.line-b { width:66%; transform: rotate(-38deg); top: 60%; left: 17%; }
.line-c { width:45%; transform: rotate(82deg); top: 17%; left: 58%; }
.diagram-node { position:absolute; width:14px; height:14px; border-radius: 99px; background: var(--sand); box-shadow: 0 0 0 8px rgba(200,164,106,.12); }
.node-a { top: 26%; left: 22%; } .node-b { top: 48%; left: 57%; } .node-c { bottom: 20%; right: 17%; } .node-d { top: 15%; right: 25%; width:8px; height:8px; }
.diagram-label { position:absolute; font-size:10px; letter-spacing:.14em; font-weight:800; color:rgba(248,248,245,.67); }
.label-a { top:15%; left:12%; } .label-b { bottom:14%; left:13%; } .label-c { right:9%; top:39%; }

.section-heading { display:grid; grid-template-columns: .85fr 1.15fr; gap: 60px; padding-bottom: 55px; border-bottom: 1px solid var(--line); margin-bottom: 50px; }
.section-heading .eyebrow { grid-column: 1 / -1; margin-bottom: -16px; }
.heading-copy { color: var(--gray); max-width: 620px; font-size: 16px; }
.heading-copy p { margin-bottom: 14px; }
.section-heading-light { border-color: var(--line-dark); }
.section-heading-light .heading-copy { color: rgba(248,248,245,.68); }

.problem-grid, .why-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.problem-card, .why-card { border: 1px solid var(--line); padding: 28px; background: rgba(255,255,255,.45); min-height: 230px; }
.card-index { color: var(--sand); font-size: 13px; font-weight: 800; letter-spacing: .12em; display:block; margin-bottom: 45px; }
.problem-card p, .why-card p, .capability p { color: var(--gray); font-size: 14px; margin-bottom: 0; }
.section-callout { margin-top: 42px; display:flex; justify-content:space-between; align-items:center; border-top: 1px solid var(--line); padding-top: 28px; gap:20px; }
.section-callout p { font-weight: 800; margin:0; font-size: 17px; }
.text-link { font-size:13px; font-weight:800; color:var(--navy); white-space:nowrap; }
.text-link span { color:var(--sand); margin-left:7px; font-size:18px; }

.what-we-solve { background:#F1F2F0; }
.capabilities-grid { display:grid; grid-template-columns: repeat(3, 1fr); border-top:1px solid var(--line); border-left:1px solid var(--line); }
.capability { border-right:1px solid var(--line); border-bottom:1px solid var(--line); padding: 28px; min-height: 240px; background: rgba(255,255,255,.35); }
.capability-icon { font-size: 13px; color: var(--sand); font-weight:800; letter-spacing:.12em; display:block; margin-bottom: 43px; }
.solution-statement { text-align:center; padding: 78px 20px 0; }
.solution-statement p { margin-bottom:4px; font-size:17px; }
.solution-statement strong { display:block; font-size:clamp(20px,2.6vw,30px); letter-spacing:-.035em; max-width:700px; margin:0 auto 28px; }

.method-path { display:grid; grid-template-columns: repeat(5,1fr); gap:0; margin-top: 65px; position:relative; }
.method-path:before { content:""; position:absolute; top: 18px; left:5%; right:5%; height:1px; background:rgba(248,248,245,.23); }
.method-step { padding-right: 24px; position:relative; z-index:1; }
.method-step span { display:flex; width:38px; height:38px; align-items:center; justify-content:center; background: var(--sand); color:var(--navy); border-radius: 99px; font-weight:800; font-size:11px; margin-bottom: 27px; }
.method-step h3 { color:var(--cream); font-size:18px; }
.method-step p { color:rgba(248,248,245,.64); font-size:13px; line-height:1.55; }
.method-footer { display:flex; justify-content:space-between; align-items:center; gap:22px; margin-top:70px; border-top:1px solid var(--line-dark); padding-top:30px; }
.method-footer p { font-size:19px; font-weight:800; margin:0; }

.experience-strip { display:grid; grid-template-columns: repeat(4,1fr); gap:0; background:var(--navy); color:var(--cream); margin-top: 52px; }
.experience-strip div { padding:28px; border-right:1px solid rgba(248,248,245,.16); display:flex; flex-direction:column; gap:8px; }
.experience-strip div:last-child { border-right:0; }
.experience-strip strong { color:var(--sand); font-size:29px; line-height:1; letter-spacing:-.05em; }
.experience-strip span { font-size:12px; color:rgba(248,248,245,.75); }
.why-closing { text-align:center; padding-top:65px; }
.why-closing p { margin-bottom:4px; font-size:17px; }
.why-closing strong { display:block; font-size:clamp(21px,2.5vw,31px); max-width:800px; line-height:1.2; letter-spacing:-.04em; margin:0 auto 30px; }

.final-cta { padding: 125px 0; position:relative; overflow:hidden; }
.final-cta:before { content:""; position:absolute; width:600px; height:600px; border:1px solid rgba(200,164,106,.28); border-radius:50%; right:-245px; top:-210px; }
.final-cta-inner { max-width:800px; text-align:center; position:relative; }
.final-cta h2 { margin-bottom:26px; }
.final-cta-inner > p:not(.eyebrow) { color:rgba(248,248,245,.72); max-width:680px; margin:0 auto 11px; }
.final-cta small { display:block; margin-top:15px; color:rgba(248,248,245,.55); }

.site-footer { border-top:1px solid rgba(248,248,245,.12); padding-top:55px; }
.footer-grid { display:grid; grid-template-columns: 1.6fr 1fr 1fr; gap:32px; padding-bottom:45px; }
.footer-brand .brand { color:var(--cream); margin-bottom:17px; }
.footer-brand p { color:rgba(248,248,245,.65); font-size:13px; margin:0; }
.footer-links, .footer-social { display:flex; flex-direction:column; gap:10px; font-size:13px; color:rgba(248,248,245,.72); }
.footer-links a:hover, .footer-social a:hover { color:var(--sand); }
.footer-bottom { padding:17px 0 25px; border-top:1px solid rgba(248,248,245,.1); }
.footer-bottom p { font-size:11px; color:rgba(248,248,245,.42); margin:0; }

.reveal { opacity:0; transform:translateY(15px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity:1; transform:none; }

@media (max-width: 900px) {
  .main-nav { position:absolute; top:76px; left:0; right:0; background:var(--navy); padding:18px 24px 25px; display:none; flex-direction:column; align-items:flex-start; border-bottom:1px solid rgba(248,248,245,.15); }
  .main-nav.open { display:flex; }
  .nav-cta { margin-top:4px; }
  .menu-toggle { display:block; }
  .hero-grid, .section-heading { grid-template-columns:1fr; gap:32px; }
  .hero-visual { min-height:300px; }
  .section-heading .eyebrow { margin-bottom:0; }
  .problem-grid, .why-grid { grid-template-columns:1fr; }
  .capabilities-grid { grid-template-columns:1fr 1fr; }
  .method-path { grid-template-columns:1fr; gap:28px; margin-top:42px; }
  .method-path:before { top: 3%; bottom:3%; left:18px; right:auto; width:1px; height:auto; }
  .method-step { padding:0 0 0 62px; }
  .method-step span { position:absolute; left:0; top:0; margin:0; }
  .experience-strip { grid-template-columns:1fr 1fr; }
  .experience-strip div:nth-child(2) { border-right:0; }
  .experience-strip div:nth-child(-n+2) { border-bottom:1px solid rgba(248,248,245,.16); }
}
@media (max-width: 580px) {
  .container { width:min(var(--max), calc(100% - 32px)); }
  .section { padding:76px 0; }
  .hero { padding:72px 0 80px; }
  .hero-actions, .method-footer, .section-callout { align-items:stretch; flex-direction:column; }
  .button { width:100%; }
  .hero-visual { min-height:245px; }
  .capabilities-grid { grid-template-columns:1fr; }
  .capability { min-height:auto; }
  .experience-strip { grid-template-columns:1fr; }
  .experience-strip div, .experience-strip div:nth-child(2) { border-right:0; border-bottom:1px solid rgba(248,248,245,.16); }
  .experience-strip div:last-child { border-bottom:0; }
  .footer-grid { grid-template-columns:1fr; }
  .footer-links, .footer-social { margin-top:8px; }
}