:root {
  --graphite: #24272d;
  --graphite-2: #30343c;
  --near-black: #191b1f;
  --purple: #7048b8;
  --purple-deep: #563196;
  --purple-soft: #eee8f8;
  --gold: #d99a32;
  --gold-soft: #f2d7a5;
  --ivory: #f7f5f0;
  --cream: #fbfaf7;
  --mist: #e8e7eb;
  --mist-2: #d9d8dd;
  --white: #ffffff;
  --text: #24272d;
  --muted: #676a72;
  --shadow: 0 24px 70px rgba(25, 27, 31, 0.10);
  --shadow-soft: 0 12px 36px rgba(25, 27, 31, 0.07);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
::selection { background: rgba(112, 72, 184, 0.2); }

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}
.section { padding: 100px 0; position: relative; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 2000;
  transform: translateY(-150%);
  background: var(--near-black);
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
}
.skip-link:focus { transform: translateY(0); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.hidden-field { display: none !important; }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(247, 245, 240, 0.90);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(36, 39, 45, 0.08);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled { box-shadow: 0 8px 30px rgba(25, 27, 31, 0.08); background: rgba(247,245,240,.96); }
.header-inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  letter-spacing: -0.035em;
  font-size: 25px;
  line-height: 1;
  font-weight: 500;
  white-space: nowrap;
}
.brand-asita { color: var(--graphite); }
.brand-grow { color: var(--purple); }
.brand-swoosh {
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 34px;
  height: 10px;
  border-top: 3px solid var(--gold);
  border-radius: 50%;
  transform: rotate(-14deg);
}
.primary-nav { display: flex; align-items: center; gap: 27px; font-size: 14px; font-weight: 650; }
.primary-nav a { position: relative; }
.primary-nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--gold));
  transition: right .25s ease;
}
.primary-nav a:not(.nav-cta):hover::after,
.primary-nav a:not(.nav-cta):focus-visible::after { right: 0; }
.nav-cta {
  padding: 11px 17px;
  background: var(--graphite);
  color: white;
  border-radius: 999px;
  transition: transform .2s ease, background .2s ease;
}
.nav-cta:hover, .nav-cta:focus-visible { background: var(--purple-deep); transform: translateY(-1px); }
.menu-toggle { display: none; border: 0; background: transparent; width: 42px; height: 42px; padding: 9px; }
.menu-toggle span:not(.sr-only) { display: block; height: 2px; background: var(--graphite); margin: 5px 0; border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }

/* Reusable type */
.eyebrow, .section-kicker {
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 12px;
  font-weight: 800;
  color: var(--purple-deep);
}
.eyebrow { display: flex; align-items: center; gap: 14px; color: #5e6269; }
.eyebrow span { width: 42px; height: 2px; background: var(--gold); }
.section-kicker.gold { color: var(--gold); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--near-black); }
h1, h2 { font-family: var(--serif); font-weight: 400; letter-spacing: -0.035em; line-height: 1.03; }
h2 { font-size: clamp(40px, 5vw, 68px); margin-bottom: 22px; }
h3 { font-family: var(--serif); font-weight: 400; letter-spacing: -0.02em; line-height: 1.15; }
.section-heading { max-width: 840px; margin-bottom: 52px; }
.section-lede { color: var(--muted); font-size: 20px; max-width: 760px; }
.tm { font-size: .35em; vertical-align: super; letter-spacing: 0; margin-left: 2px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 750;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { background: var(--purple); color: white; box-shadow: 0 13px 30px rgba(112,72,184,.24); }
.button-primary:hover, .button-primary:focus-visible { background: var(--purple-deep); box-shadow: 0 16px 34px rgba(112,72,184,.30); }
.button-secondary { color: var(--graphite); border-color: rgba(36,39,45,.24); background: rgba(255,255,255,.45); backdrop-filter: blur(8px); }
.button-secondary:hover, .button-secondary:focus-visible { border-color: var(--purple); color: var(--purple-deep); background: rgba(255,255,255,.75); }
.button-gold { background: var(--gold); color: var(--near-black); box-shadow: 0 13px 28px rgba(217,154,50,.20); }
.button-gold:hover, .button-gold:focus-visible { background: #e7aa46; box-shadow: 0 16px 34px rgba(217,154,50,.26); }
.text-link, .card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--purple-deep);
  font-weight: 800;
  border: 0;
  background: none;
  padding: 0;
}
.text-link span { transition: transform .2s ease; }
.text-link:hover span, .text-link:focus-visible span { transform: translateX(4px); }
.card-link { margin-top: auto; font-size: 14px; }
.card-link:hover, .card-link:focus-visible { color: var(--gold); }

/* Hero */
.hero {
  min-height: 760px;
  padding-top: 76px;
  position: relative;
  overflow: hidden;
  background: var(--ivory);
  isolation: isolate;
}
.hero-image {
  position: absolute;
  z-index: -3;
  top: 76px;
  right: 0;
  width: 62%;
  height: calc(100% - 152px);
  background-image: url('assets/hero-mountain.webp');
  background-size: cover;
  background-position: 52% center;
}
.hero-wash {
  position: absolute;
  z-index: -2;
  inset: 76px 0 76px 0;
  background:
    linear-gradient(90deg, var(--ivory) 0%, rgba(247,245,240,.98) 34%, rgba(247,245,240,.82) 48%, rgba(247,245,240,.10) 68%, rgba(247,245,240,0) 100%),
    linear-gradient(180deg, rgba(247,245,240,.25), rgba(247,245,240,0) 55%);
}
.hero-content {
  min-height: 610px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 40px;
  padding-bottom: 40px;
}
.hero-copy { width: min(700px, 61%); }
.hero-logo {
  display: flex;
  align-items: baseline;
  font-size: clamp(42px, 6vw, 79px);
  line-height: .9;
  letter-spacing: -.055em;
  margin-bottom: 28px;
  font-weight: 450;
  position: relative;
  width: fit-content;
}
.hero-logo span { color: var(--graphite); }
.hero-logo strong { color: var(--purple); font-weight: 500; }
.hero-logo::after {
  content: '';
  position: absolute;
  left: -3px;
  bottom: -9px;
  width: 72px;
  height: 16px;
  border-top: 5px solid var(--gold);
  border-radius: 50%;
  transform: rotate(-13deg);
}
.hero h1 { font-size: clamp(48px, 6.1vw, 82px); margin-bottom: 24px; }
.hero-lede { max-width: 660px; font-size: 20px; color: #4d5057; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-side-note {
  position: absolute;
  right: 0;
  bottom: 60px;
  width: 150px;
  margin: 0;
  color: white;
  text-transform: uppercase;
  letter-spacing: .2em;
  line-height: 1.8;
  font-size: 11px;
}
.hero-side-note strong { color: var(--gold-soft); font-weight: 800; }
.capability-ribbon {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  min-height: 76px;
  display: flex;
  align-items: center;
  background: rgba(251,250,247,.96);
  border-top: 1px solid rgba(36,39,45,.07);
}
.capability-ribbon-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 13px;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-weight: 800;
  font-size: 10px;
  color: #51545b;
}
.capability-ribbon i { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex: 0 0 auto; }

/* Challenge */
.challenge { background: var(--cream); border-bottom: 1px solid rgba(36,39,45,.07); }
.split-intro { display: grid; grid-template-columns: 1.05fr .95fr; gap: 80px; align-items: center; }
.challenge h2 { margin-bottom: 0; }
.challenge-copy { border-left: 2px solid var(--gold); padding-left: 32px; }
.challenge-copy p { font-size: 19px; color: #4f5258; }
.challenge-copy p:last-child { margin-bottom: 0; }

/* Framework */
.framework { background: var(--ivory); overflow: hidden; }
.framework::before, .framework::after {
  content: '';
  position: absolute;
  border: 1px solid rgba(112,72,184,.13);
  border-radius: 50%;
  pointer-events: none;
}
.framework::before { width: 720px; height: 720px; right: -420px; top: -280px; }
.framework::after { width: 460px; height: 460px; left: -320px; bottom: -140px; border-color: rgba(217,154,50,.15); }
.framework-stage { position: relative; }
.framework-center {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: radial-gradient(circle at 40% 30%, #fff 0%, #f4effb 48%, #d8c9ef 100%);
  border: 1px solid rgba(112,72,184,.25);
  box-shadow: 0 20px 55px rgba(112,72,184,.12), inset 0 0 0 8px rgba(255,255,255,.45);
}
.mini-brand { font-size: 21px; letter-spacing: -.035em; }
.mini-brand b { font-weight: 600; color: var(--graphite); }
.mini-brand strong { font-weight: 600; color: var(--purple); }
.framework-center small { margin-top: 7px; color: #676a72; text-transform: uppercase; letter-spacing: .12em; }
.framework-orbit {
  position: absolute;
  width: 320px;
  height: 320px;
  left: 50%;
  top: -55px;
  transform: translateX(-50%);
  border: 1px dashed rgba(217,154,50,.32);
  border-radius: 50%;
  pointer-events: none;
}
.framework-orbit::before,
.framework-orbit::after {
  content: '';
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(217,154,50,.10);
}
.framework-orbit::before { right: 35px; top: 52px; }
.framework-orbit::after { left: 24px; bottom: 65px; }
.framework-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 1020px; margin: 0 auto; position: relative; z-index: 1; }
.framework-card {
  border: 1px solid rgba(36,39,45,.10);
  background: rgba(255,255,255,.70);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.framework-card:hover { transform: translateY(-4px); border-color: rgba(112,72,184,.25); box-shadow: var(--shadow); }
.framework-card.is-open { border-color: rgba(112,72,184,.36); background: white; }
.framework-card-wide { grid-column: 2 / span 1; }
.framework-trigger {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text);
  padding: 22px 22px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  text-align: left;
  align-items: center;
}
.framework-number { color: var(--gold); font-weight: 900; letter-spacing: .08em; }
.framework-name { font-family: var(--serif); font-size: 21px; line-height: 1.15; }
.framework-plus { width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid rgba(112,72,184,.20); border-radius: 50%; color: var(--purple); font-size: 20px; transition: transform .2s ease, background .2s ease, color .2s ease; }
.framework-card.is-open .framework-plus { transform: rotate(45deg); background: var(--purple); color: white; }
.framework-panel { max-height: 0; overflow: hidden; opacity: .45; transition: max-height .35s ease, opacity .25s ease; }
.framework-card.is-open .framework-panel { max-height: 520px; opacity: 1; }
.framework-panel > div + div { border-top: 1px solid rgba(36,39,45,.08); }
.framework-panel > div { padding: 0 22px; }
.framework-card.is-open .framework-panel > div { padding-top: 18px; padding-bottom: 18px; }
.framework-panel strong { display: block; margin-bottom: 7px; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--purple-deep); }
.framework-panel p { margin: 0; color: var(--muted); font-size: 14px; }
.framework-footer { max-width: 900px; margin: 44px auto 0; padding-top: 28px; border-top: 1px solid rgba(36,39,45,.10); display: flex; justify-content: space-between; gap: 35px; align-items: center; }
.framework-footer p { margin: 0; color: var(--muted); max-width: 650px; }
.framework-footer strong { color: var(--near-black); }

/* Services */
.services { background: #fff; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
  min-height: 260px;
  padding: 28px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #fff, #faf9f6);
  border: 1px solid rgba(36,39,45,.08);
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card::after {
  content: '';
  position: absolute;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  right: -70px;
  bottom: -70px;
  border: 1px solid rgba(112,72,184,.20);
  box-shadow: 0 0 0 25px rgba(112,72,184,.025), 0 0 0 52px rgba(217,154,50,.025);
  transition: transform .3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(112,72,184,.24); }
.service-card:hover::after { transform: scale(1.12); }
.service-card > span { color: var(--gold); font-weight: 900; letter-spacing: .12em; font-size: 12px; }
.service-card h3 { font-size: 26px; margin: 18px 0 13px; max-width: 260px; }
.service-card p { color: var(--muted); margin-bottom: 0; }

/* Who we serve */
.serve { background: var(--ivory); }
.serve-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(36,39,45,.10); border-bottom: 1px solid rgba(36,39,45,.10); }
.serve-card { min-height: 360px; padding: 34px 26px; border-right: 1px solid rgba(36,39,45,.10); position: relative; overflow: hidden; transition: background .25s ease; }
.serve-card:last-child { border-right: 0; }
.serve-card::after { content:''; position:absolute; width:170px; height:170px; border-radius:50%; right:-85px; bottom:-75px; background: radial-gradient(circle, rgba(112,72,184,.15), rgba(112,72,184,0) 70%); transition: transform .3s ease; }
.serve-card:hover { background: rgba(255,255,255,.56); }
.serve-card:hover::after { transform: translate(-15px,-15px) scale(1.15); }
.serve-icon { width: 62px; height: 62px; border-radius: 50%; display: grid; place-items:center; font-family: var(--serif); font-size: 28px; border: 2px solid rgba(112,72,184,.55); box-shadow: inset -8px 4px 0 rgba(217,154,50,.12); color: var(--graphite); }
.serve-plus { font-family: var(--sans); font-weight: 350; font-size: 38px; }
.serve-card h3 { font-size: 28px; margin: 25px 0 16px; }
.serve-card p { color: var(--muted); }

/* Engagements */
.engage { background: #fff; }
.engage-intro { display: grid; grid-template-columns: 1fr .8fr; gap: 80px; align-items: end; margin-bottom: 46px; }
.engage-intro h2 { margin-bottom: 0; }
.engage-intro > p { font-size: 19px; color: var(--muted); }
.engage-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.engage-card { padding: 28px; background: var(--ivory); border-radius: var(--radius-md); border: 1px solid rgba(36,39,45,.08); min-height: 330px; display:flex; flex-direction:column; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.engage-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(112,72,184,.22); }
.engage-card > span { color: var(--gold); font-weight: 900; letter-spacing: .13em; font-size: 12px; }
.engage-card h3 { font-size: 27px; margin: 22px 0 15px; }
.engage-card p { color: var(--muted); margin-bottom: 28px; }

/* Right-sized */
.right-sized { background: linear-gradient(135deg, #21242a 0%, #2a2e36 68%, #25252e 100%); color: rgba(255,255,255,.82); overflow:hidden; }
.right-sized::before { content:''; position:absolute; width:620px; height:620px; border:1px solid rgba(112,72,184,.32); border-radius:50%; right:-380px; top:-270px; box-shadow: 0 0 0 60px rgba(112,72,184,.03), 0 0 0 130px rgba(217,154,50,.02); }
.right-sized h2, .right-sized h3 { color: white; }
.right-sized-head { display:grid; grid-template-columns: .9fr 1.1fr; gap:80px; align-items:end; margin-bottom:54px; }
.right-sized-head h2 { margin-bottom: 10px; }
.right-sized-tagline { font-family:var(--serif); font-size:25px; color:#e7e2dc; margin-bottom:0; }
.right-sized-head > p { font-size:18px; color:rgba(255,255,255,.72); margin-bottom:5px; }
.value-grid { display:grid; grid-template-columns:repeat(4,1fr); border-top:1px solid rgba(255,255,255,.12); border-bottom:1px solid rgba(255,255,255,.12); }
.value-card { padding:34px 28px; border-right:1px solid rgba(255,255,255,.12); }
.value-card:last-child { border-right:0; }
.value-icon { display:grid; place-items:center; width:52px; height:52px; border:1px solid rgba(217,154,50,.62); border-radius:50%; color:var(--gold); font-size:25px; }
.value-card h3 { font-size:24px; margin:20px 0 12px; }
.value-card p { color:rgba(255,255,255,.68); margin-bottom:0; font-size:15px; }
.delivery-model { margin:46px 0 34px; padding:30px; border-radius:var(--radius-md); background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.10); display:grid; grid-template-columns:.6fr 1.4fr; gap:40px; align-items:center; }
.model-label span { color:var(--gold); text-transform:uppercase; letter-spacing:.18em; font-size:11px; font-weight:800; }
.model-label h3 { font-size:28px; margin:12px 0 0; }
.model-comparison { display:grid; gap:16px; }
.model-row { display:grid; grid-template-columns:100px 1fr; gap:16px; align-items:center; }
.model-title { text-transform:uppercase; letter-spacing:.15em; font-size:10px; font-weight:800; color:rgba(255,255,255,.52); }
.nodes { display:flex; align-items:center; min-width:0; }
.nodes b, .nodes strong, .nodes em { font-style:normal; font-size:11px; white-space:nowrap; border-radius:999px; padding:8px 11px; border:1px solid rgba(255,255,255,.16); font-weight:650; }
.nodes i { height:1px; flex:1; min-width:8px; background:rgba(255,255,255,.18); position:relative; }
.nodes i::after { content:''; position:absolute; right:-1px; top:-2px; width:5px; height:5px; border-radius:50%; background:rgba(255,255,255,.32); }
.model-muted { opacity:.55; }
.model-asita .nodes b { border-color:rgba(217,154,50,.45); }
.model-asita .nodes em { border-color:rgba(112,72,184,.68); color:#e9defd; }
.model-asita .nodes strong { background:var(--gold); color:var(--near-black); border-color:var(--gold); }
.model-asita .nodes i { background:linear-gradient(90deg,var(--gold),var(--purple)); }
.model-asita .nodes i::after { background:var(--gold); }
.proof-copy { max-width:950px; font-size:17px; color:rgba(255,255,255,.74); margin:0 auto 34px; text-align:center; }
.right-sized-close { border-top:1px solid rgba(255,255,255,.12); padding-top:34px; display:flex; justify-content:space-between; align-items:center; gap:30px; }
.right-sized-close blockquote { margin:0; font-family:var(--serif); font-style:italic; font-size:clamp(25px,3vw,38px); color:#f3efe8; max-width:670px; }

/* Results */
.results { background: var(--cream); }
.results-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.result-card { padding:30px; background:#fff; border:1px solid rgba(36,39,45,.08); border-radius:var(--radius-md); min-height:290px; position:relative; overflow:hidden; }
.result-card::before { content:''; position:absolute; left:0; top:0; width:100%; height:4px; background:linear-gradient(90deg,var(--purple),var(--gold)); transform:scaleX(.3); transform-origin:left; transition:transform .3s ease; }
.result-card:hover::before { transform:scaleX(1); }
.result-card strong { display:block; font-family:var(--serif); font-size:42px; font-weight:400; color:var(--purple); line-height:1; margin-bottom:30px; }
.result-card h3 { font-size:25px; margin-bottom:14px; }
.result-card p { color:var(--muted); margin:0; }

/* Working */
.working { background:#fff; }
.working-grid { display:grid; grid-template-columns:.9fr 1.1fr; gap:80px; align-items:start; }
.working-grid > div:first-child p:last-child { color:var(--muted); font-size:18px; }
.working-points { display:grid; grid-template-columns:1fr 1fr; gap:0; border-top:1px solid rgba(36,39,45,.10); border-left:1px solid rgba(36,39,45,.10); }
.working-points div { padding:24px; border-right:1px solid rgba(36,39,45,.10); border-bottom:1px solid rgba(36,39,45,.10); }
.working-points strong { display:block; font-family:var(--serif); font-size:20px; margin-bottom:7px; }
.working-points span { color:var(--muted); font-size:14px; }
.working-link { grid-column:2; justify-self:start; }

/* Philosophy */
.philosophy { padding-top:60px; padding-bottom:90px; background:linear-gradient(180deg,#fff,var(--ivory)); }
.philosophy-grid { display:grid; grid-template-columns:170px 1fr; gap:55px; max-width:1000px; align-items:center; }
.philosophy-mark { margin:0; width:150px; height:150px; border-radius:50%; display:grid; place-items:center; font-family:var(--serif); font-size:90px; font-weight:200; color:var(--purple); border:1px solid rgba(112,72,184,.20); background:radial-gradient(circle at 70% 30%,rgba(217,154,50,.18),rgba(112,72,184,.06) 62%,transparent 63%); }
.philosophy h2 { font-size:clamp(39px,4.6vw,61px); }
.philosophy p:last-child { color:var(--muted); font-size:18px; max-width:760px; }

/* Contact */
.contact { background:var(--graphite); color:rgba(255,255,255,.8); }
.contact h2 { color:white; }
.contact-grid { display:grid; grid-template-columns:.86fr 1.14fr; gap:80px; align-items:start; }
.contact-copy > p:not(.section-kicker) { font-size:18px; color:rgba(255,255,255,.70); }
.contact-prompts { display:flex; flex-wrap:wrap; gap:8px; margin-top:30px; }
.contact-prompts span { border:1px solid rgba(255,255,255,.14); border-radius:999px; padding:8px 12px; font-size:12px; color:rgba(255,255,255,.72); }
.contact-form { background:var(--ivory); color:var(--text); padding:34px; border-radius:var(--radius-lg); box-shadow:0 30px 70px rgba(0,0,0,.22); }
.contact-form label { display:block; font-size:12px; font-weight:800; text-transform:uppercase; letter-spacing:.08em; color:#4f535b; margin-bottom:16px; }
.contact-form input, .contact-form textarea, .contact-form select {
  display:block;
  width:100%;
  margin-top:7px;
  border:1px solid #d2d1d5;
  border-radius:10px;
  background:#fff;
  color:var(--text);
  padding:12px 13px;
  outline:none;
  text-transform:none;
  letter-spacing:normal;
  font-weight:500;
  transition:border-color .2s ease, box-shadow .2s ease;
}
.contact-form textarea { resize:vertical; min-height:135px; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color:var(--purple); box-shadow:0 0 0 4px rgba(112,72,184,.10); }
.field-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.form-submit { width:100%; border:0; }
.form-note { color:#777a80; font-size:12px; margin:12px 0 0; text-align:center; }
.form-success { padding:12px 14px; border-radius:10px; background:#ece6f7; color:var(--purple-deep); font-weight:700; margin:14px 0 0; }

/* Footer */
.site-footer { background:var(--near-black); color:rgba(255,255,255,.64); padding:42px 0; }
.footer-grid { display:grid; grid-template-columns:1.2fr 1fr auto; gap:40px; align-items:end; }
.brand-footer .brand-asita { color:#fff; }
.brand-footer .brand-grow { color:#a987e7; }
.site-footer p { margin:12px 0 0; font-size:13px; }
.site-footer nav { display:flex; flex-wrap:wrap; gap:16px 22px; font-size:13px; }
.site-footer nav a:hover { color:white; }
.footer-note { white-space:nowrap; }

/* Reveal motion */
.reveal { opacity:0; transform:translateY(18px); transition:opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity:1; transform:none; }

/* Focus */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible { outline:3px solid rgba(217,154,50,.60); outline-offset:3px; }

@media (max-width: 1080px) {
  .primary-nav { gap:18px; }
  .hero-copy { width:67%; }
  .framework-grid { grid-template-columns:repeat(2,1fr); }
  .framework-card-wide { grid-column:auto; }
  .service-grid { grid-template-columns:repeat(2,1fr); }
  .serve-grid { grid-template-columns:repeat(2,1fr); }
  .serve-card { border-bottom:1px solid rgba(36,39,45,.10); }
  .serve-card:nth-child(2) { border-right:0; }
  .engage-grid { grid-template-columns:repeat(2,1fr); }
  .value-grid { grid-template-columns:repeat(2,1fr); }
  .value-card:nth-child(2) { border-right:0; }
  .value-card:nth-child(-n+2) { border-bottom:1px solid rgba(255,255,255,.12); }
  .results-grid { grid-template-columns:repeat(2,1fr); }
  .delivery-model { grid-template-columns:1fr; }
}

@media (max-width: 860px) {
  .section { padding:78px 0; }
  .menu-toggle { display:block; position:relative; z-index:1100; }
  .primary-nav {
    position:fixed;
    inset:76px 0 0 0;
    height:calc(100dvh - 76px);
    padding:35px 24px;
    background:rgba(247,245,240,.99);
    display:flex;
    flex-direction:column;
    align-items:stretch;
    gap:4px;
    transform:translateX(100%);
    transition:transform .28s ease;
    overflow:auto;
  }
  .primary-nav.is-open { transform:none; }
  .primary-nav a { padding:14px 4px; font-size:19px; font-family:var(--serif); }
  .primary-nav a:not(.nav-cta)::after { display:none; }
  .primary-nav .nav-cta { margin-top:10px; text-align:center; font-family:var(--sans); font-size:15px; padding:14px 18px; }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform:translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { opacity:0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(4) { transform:translateY(-7px) rotate(-45deg); }

  .hero { min-height:860px; padding-top:76px; }
  .hero-image {
    top:76px;
    width:100%;
    height:58%;
    bottom:auto;
    background-image:url('assets/hero-mountain-mobile.webp');
    background-position:center 30%;
  }
  .hero-wash {
    inset:76px 0 76px 0;
    background:linear-gradient(180deg, rgba(247,245,240,.20) 0%, rgba(247,245,240,.30) 24%, rgba(247,245,240,.92) 49%, var(--ivory) 61%, var(--ivory) 100%);
  }
  .hero-content { min-height:710px; justify-content:flex-end; padding-bottom:105px; }
  .eyebrow { position:absolute; top:30px; left:0; color:#4c5056; }
  .hero-copy { width:100%; max-width:670px; }
  .hero-logo { font-size:clamp(40px,10vw,72px); margin-bottom:24px; }
  .hero h1 { font-size:clamp(47px,11vw,70px); }
  .hero-lede { font-size:18px; }
  .hero-side-note { display:none; }
  .capability-ribbon { min-height:76px; overflow:hidden; }
  .capability-ribbon-inner { justify-content:flex-start; overflow:auto; scrollbar-width:none; padding-bottom:1px; }
  .capability-ribbon-inner::-webkit-scrollbar { display:none; }
  .capability-ribbon-inner span { white-space:nowrap; }

  .split-intro, .engage-intro, .right-sized-head, .working-grid, .contact-grid { grid-template-columns:1fr; gap:35px; }
  .challenge-copy { border-left:0; border-top:2px solid var(--gold); padding:26px 0 0; }
  .framework-center, .framework-orbit { display:none; }
  .framework-grid { grid-template-columns:1fr; }
  .framework-footer { flex-direction:column; align-items:flex-start; }
  .serve-card { min-height:300px; }
  .right-sized-head { margin-bottom:38px; }
  .delivery-model { overflow:hidden; }
  .model-row { grid-template-columns:1fr; }
  .nodes { overflow-x:auto; padding-bottom:6px; }
  .nodes b, .nodes strong, .nodes em { flex:0 0 auto; }
  .nodes i { flex:0 0 28px; }
  .right-sized-close { flex-direction:column; align-items:flex-start; }
  .working-link { grid-column:1; }
  .philosophy-grid { grid-template-columns:100px 1fr; gap:28px; }
  .philosophy-mark { width:95px; height:95px; font-size:62px; }
  .footer-grid { grid-template-columns:1fr; align-items:start; }
  .footer-note { white-space:normal; }
}

@media (max-width: 620px) {
  .container { width:min(calc(100% - 28px), var(--max)); }
  .section { padding:66px 0; }
  h2 { font-size:clamp(38px,11vw,52px); }
  .section-heading { margin-bottom:36px; }
  .section-lede { font-size:17px; }
  .hero { min-height:820px; }
  .hero-content { min-height:670px; padding-bottom:100px; }
  .hero-logo { font-size:clamp(38px,12vw,60px); }
  .hero h1 { font-size:clamp(44px,13vw,61px); }
  .hero-actions { flex-direction:column; align-items:stretch; }
  .button { width:100%; }
  .service-grid, .serve-grid, .engage-grid, .value-grid, .results-grid, .working-points { grid-template-columns:1fr; }
  .serve-card { border-right:0; border-bottom:1px solid rgba(36,39,45,.10); }
  .serve-card:last-child { border-bottom:0; }
  .engage-card { min-height:auto; }
  .value-card { border-right:0; border-bottom:1px solid rgba(255,255,255,.12); }
  .value-card:last-child { border-bottom:0; }
  .delivery-model { padding:22px; }
  .nodes { align-items:center; }
  .right-sized-close blockquote { font-size:28px; }
  .result-card { min-height:auto; }
  .working-points { border-left:0; }
  .working-points div { border-left:1px solid rgba(36,39,45,.10); }
  .philosophy-grid { grid-template-columns:1fr; }
  .philosophy-mark { width:80px; height:80px; font-size:50px; }
  .field-row { grid-template-columns:1fr; gap:0; }
  .contact-form { padding:24px 18px; border-radius:20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *, *::before, *::after { animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; }
  .reveal { opacity:1; transform:none; }
}
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0 56%, rgba(25,27,31,.03) 67%, rgba(25,27,31,.28) 100%);
  pointer-events: none;
}

/* V2 Giving Back bulletin + section */
.giving-bulletin {
  background: var(--graphite);
  color: white;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.giving-bulletin-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.giving-bulletin-inner > div { display: flex; flex-direction: column; gap: 3px; }
.giving-bulletin-label { color: var(--gold-soft); text-transform: uppercase; letter-spacing: .16em; font-size: 10px; font-weight: 850; }
.giving-bulletin-inner strong { font-family: var(--serif); font-size: 19px; font-weight: 400; color: white; }
.giving-bulletin-link { flex: 0 0 auto; color: var(--gold-soft); font-weight: 800; font-size: 13px; }
.giving-bulletin-link span { display: inline-block; margin-left: 7px; transition: transform .2s ease; }
.giving-bulletin-link:hover span, .giving-bulletin-link:focus-visible span { transform: translateX(4px); }

.giving-back { background: linear-gradient(135deg, #21242a 0%, #2a2e36 70%, #25252e 100%); color: rgba(255,255,255,.78); overflow: hidden; }
.giving-back::after { content:''; position:absolute; width:560px; height:560px; border:1px solid rgba(217,154,50,.18); border-radius:50%; right:-330px; bottom:-300px; box-shadow:0 0 0 60px rgba(112,72,184,.035); pointer-events:none; }
.giving-back h2, .giving-back h3 { color:white; }
.giving-back-grid { display:grid; grid-template-columns:.95fr 1.05fr; gap:90px; align-items:start; }
.giving-back-intro > p:last-child { font-size:20px; color:rgba(255,255,255,.74); max-width:580px; }
.giving-back-intro strong { color:white; }
.giving-back-details { padding:32px; border:1px solid rgba(255,255,255,.12); border-radius:var(--radius-md); background:rgba(255,255,255,.045); }
.giving-back-details h3 { font-size:30px; margin-bottom:16px; }
.giving-back-details p { color:rgba(255,255,255,.70); }
.giving-deadline { margin:25px 0; }
.giving-deadline strong { color:var(--gold-soft); }
.community-impact { margin-top:70px; padding-top:36px; border-top:1px solid rgba(255,255,255,.12); }
.community-impact .section-kicker { color:var(--gold-soft); }
.community-impact-grid { display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.community-impact-grid article { padding:25px 0; }
.community-impact-grid article + article { border-left:1px solid rgba(255,255,255,.12); padding-left:34px; }
.community-impact-grid h3 { font-size:24px; margin-bottom:10px; }
.community-impact-grid p { color:rgba(255,255,255,.65); margin-bottom:0; }

@media (max-width: 860px) {
  .giving-bulletin-inner { padding-top:17px; padding-bottom:17px; align-items:flex-start; flex-direction:column; gap:10px; }
  .giving-back-grid { grid-template-columns:1fr; gap:35px; }
}
@media (max-width: 620px) {
  .community-impact-grid { grid-template-columns:1fr; }
  .community-impact-grid article + article { border-left:0; border-top:1px solid rgba(255,255,255,.12); padding-left:0; }
}
