
/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --forest:   #1a3327;
  --fmid:     #224433;
  --flight:   #2d5c45;
  --spring:   #7ecba4;
  --smuted:   #a8d9be;
  --maroon:   #7c1f2e;
  --white:    #f5f3ef;
  --cream:    #ede9e1;
  --char:     #1c1c1c;
  --mid:      #5a5a5a;
  --rule:     #d4cfc7;
  --serif:    'Cormorant Garamond', Georgia, serif;
  --sans:     'DM Sans', system-ui, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--char);
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ─── NAV ────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  display: flex; align-items: center; justify-content: space-between;
  padding: .9rem 5vw;
  background: rgba(245,243,239,.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(26,51,39,.14);
  box-shadow: 0 1px 12px rgba(26,51,39,.06);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 2px 24px rgba(26,51,39,.1); }
.nav-logo { display: flex; align-items: center; gap: .6rem; text-decoration: none; }
.nav-wm { font-family: var(--serif); font-size: 1.05rem; font-weight: 600; color: var(--forest); letter-spacing: .01em; }
.nav-hamburger { display: none; }
.nav-links { list-style: none; display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: .75rem; font-weight: 500; letter-spacing: .08em;
  text-transform: uppercase; color: var(--mid); text-decoration: none;
  transition: color .18s;
}
.nav-links a:hover { color: var(--forest); }
.nav-cta {
  background: var(--forest); color: var(--white) !important;
  padding: .42rem 1.1rem; letter-spacing: .02em !important;
  text-transform: none !important; font-weight: 400 !important;
  transition: background .18s !important;
}
.nav-cta:hover { background: var(--flight) !important; }

/* ─── HERO ───────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  background: var(--forest);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0;
}
.hero-l { padding: 7rem 4vw 5rem 5vw; }
.hero-kicker {
  font-size: .68rem; font-weight: 500; letter-spacing: .2em;
  text-transform: uppercase; color: var(--spring);
  margin-bottom: 1.5rem; display: block;
}
.hero-h {
  font-family: var(--serif);
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  font-weight: 600; line-height: 1.0;
  color: var(--white);
  margin-bottom: 1.6rem;
}
.hero-h em { font-style: italic; color: var(--spring); }
.hero-sub {
  font-size: .95rem; font-weight: 300;
  color: rgba(245,243,239,.65);
  max-width: 400px; line-height: 1.75;
  margin-bottom: 2.5rem;
}
.hero-btns { display: flex; gap: .75rem; flex-wrap: wrap; }
.btn {
  display: inline-block; text-decoration: none;
  font-family: var(--sans); font-size: .82rem;
  font-weight: 500; padding: .7rem 1.6rem;
  transition: all .18s; cursor: pointer; border: none;
}
.btn-spring { background: var(--spring); color: var(--forest); }
.btn-spring:hover { background: var(--smuted); }
.btn-outline {
  border: 1px solid rgba(126,203,164,.4);
  color: var(--spring); background: transparent;
}
.btn-outline:hover { border-color: var(--spring); background: rgba(126,203,164,.06); }
.btn-forest { background: var(--forest); color: var(--white); }
.btn-forest:hover { background: var(--flight); }

.hero-r {
  height: 100%;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  border-left: 1px solid rgba(255,255,255,.05);
}
.hero-circles {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -55%);
  opacity: .09;
}
.hero-numbers {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(3,1fr);
  border-top: 1px solid rgba(126,203,164,.1);
}
.hn {
  padding: 1.5rem 1.75rem;
  border-right: 1px solid rgba(126,203,164,.08);
}
.hn:last-child { border: none; }
.hn-val {
  font-family: var(--serif); font-size: 2rem;
  font-weight: 600; color: var(--spring); line-height: 1;
}
.hn-label {
  font-size: .65rem; color: rgba(245,243,239,.55);
  margin-top: .3rem; line-height: 1.4;
}

/* ─── SECTION BASE ───────────────────────────────────────── */
.sec { padding: 5rem 5vw; }
.sec-sm { padding: 3.5rem 5vw; }
.kicker {
  font-size: .65rem; font-weight: 500; letter-spacing: .2em;
  text-transform: uppercase; display: block; margin-bottom: .6rem;
}
.kicker-green { color: var(--spring); }
.kicker-dark  { color: var(--forest); }
.kicker-faint { color: var(--mid); }
h2 {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.8vw, 2.6rem);
  font-weight: 600; line-height: 1.15;
  margin-bottom: 1rem;
}
.rule { border: none; border-top: 1px solid var(--rule); margin: 0; }

/* ─── DIVIDER STRIP ──────────────────────────────────────── */
.strip {
  background: var(--fmid);
  padding: .85rem 5vw;
  display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap;
  border-top: 1px solid rgba(126,203,164,.08);
  border-bottom: 1px solid rgba(126,203,164,.08);
}
.strip-lbl {
  font-size: .62rem; font-weight: 500; letter-spacing: .16em;
  text-transform: uppercase; color: rgba(245,243,239,.28);
  white-space: nowrap; flex-shrink: 0;
}
.strip-items { display: flex; flex-wrap: wrap; gap: .35rem 1.5rem; }
.strip-item {
  font-size: .73rem; color: rgba(245,243,239,.7);
  display: flex; align-items: center; gap: .4rem; font-weight: 400;
}
.strip-item::before { content: "–"; color: var(--spring); font-weight: 300; }

/* ─── MANIFESTO ──────────────────────────────────────────── */
#manifesto { background: var(--white); }
.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.manifesto-l h2 { color: var(--forest); }
.manifesto-l p {
  font-size: .92rem; color: var(--mid);
  line-height: 1.8; margin-bottom: 1rem;
}
.manifesto-r {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--rule);
  margin-top: 2rem;
}
.pillar {
  background: var(--white);
  padding: 1.5rem 1.25rem;
  border-top: 2px solid transparent;
  transition: border-color .2s;
}
.pillar:hover { border-top-color: var(--spring); }
.pillar-num {
  font-family: var(--serif); font-size: 1.6rem;
  font-weight: 600; color: var(--rule);
  line-height: 1; margin-bottom: .6rem;
}
.pillar h3 {
  font-family: var(--serif); font-size: 1.05rem;
  font-weight: 600; color: var(--forest); margin-bottom: .4rem;
}
.pillar p { font-size: .8rem; color: var(--mid); line-height: 1.65; }

/* ─── WHO WE SERVE ───────────────────────────────────────── */
#serve { background: var(--cream); }
.serve-intro { max-width: 600px; margin-bottom: 2.5rem; }
.serve-intro h2 { color: var(--forest); }
.serve-intro p { font-size: .9rem; color: var(--mid); }
/* serve-grid styles moved to icp-stack */

/* ─── HOW WE WORK / PROCESS ──────────────────────────────── */
#process { background: var(--forest); }
.process-hd { margin-bottom: 3rem; }
.process-hd h2 { color: var(--white); }
.process-hd p {
  font-size: .9rem; color: rgba(245,243,239,.55);
  max-width: 520px; margin-top: .5rem;
}
.process-steps {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: rgba(255,255,255,.06);
}
.ps {
  background: var(--forest);
  padding: 1.75rem 1.5rem;
  border-top: 2px solid rgba(126,203,164,.15);
  transition: border-color .2s;
}
.ps:hover { border-top-color: var(--spring); }
.ps-num {
  font-size: .62rem; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: var(--spring);
  margin-bottom: .6rem;
}
.ps h3 {
  font-family: var(--serif); font-size: 1.1rem;
  font-weight: 600; color: var(--white); margin-bottom: .5rem;
}
.ps p { font-size: .8rem; color: rgba(245,243,239,.55); line-height: 1.65; }

/* ─── SERVICES ───────────────────────────────────────────── */
#services { background: var(--white); }
.services-hd {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: end; margin-bottom: 2.5rem;
}
.services-hd h2 { color: var(--forest); }
.services-hd p { font-size: .88rem; color: var(--mid); line-height: 1.7; }
/* svc-grid styles moved to svc-expand-grid */

/* ─── ABOUT ──────────────────────────────────────────────── */
#about {
  background: var(--forest);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
  padding: 5rem 5vw;
}
.about-txt .kicker { color: var(--spring); }
.about-txt h2 { color: var(--white); margin-bottom: 1rem; }
.about-txt p {
  font-size: .88rem; color: rgba(245,243,239,.72);
  margin-bottom: .9rem; line-height: 1.75;
}
.cred-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: rgba(255,255,255,.06);
  margin: 1.5rem 0;
}
.cred-item {
  background: var(--forest); padding: .85rem 1rem;
  border-left: 2px solid rgba(126,203,164,.2);
}
.cred-item span {
  font-size: .73rem; font-weight: 500; color: rgba(245,243,239,.7);
  line-height: 1.45; display: block;
}
.cred-item small {
  font-size: .62rem; color: rgba(245,243,239,.52);
  text-transform: uppercase; letter-spacing: .06em;
}
.feature-badge {
  margin-top: 1.25rem; padding: 1rem 1.1rem;
  background: rgba(255,255,255,.04);
  border-left: 2px solid var(--maroon);
}
.fb-eye {
  font-size: .6rem; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(245,243,239,.5); margin-bottom: .3rem;
}
.fb-body { font-size: .83rem; color: rgba(245,243,239,.75); line-height: 1.55; }
.fb-foot {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: .4rem; margin-top: .5rem;
}
.fb-org { font-size: .62rem; color: var(--spring); letter-spacing: .06em; text-transform: uppercase; }
.fb-link {
  font-size: .64rem; color: var(--spring); text-decoration: none;
  letter-spacing: .05em; text-transform: uppercase;
  border: 1px solid rgba(126,203,164,.25); padding: .15rem .48rem;
}
.fb-link:hover { background: rgba(126,203,164,.08); }
.about-portrait { position: relative; }
.portrait-img {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover; object-position: center top;
  display: block;
}
.portrait-label {
  position: absolute; bottom: 0; left: 0;
  background: var(--maroon); color: var(--white);
  padding: .5rem 1rem; font-size: .7rem; font-weight: 500;
}

/* ─── THINKING / INSIGHTS ────────────────────────────────── */
#thinking { background: var(--white); }
.thinking-hd {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: end; margin-bottom: 2.5rem;
}
.thinking-hd h2 { color: var(--forest); }
.thinking-hd p { font-size: .88rem; color: var(--mid); line-height: 1.7; }

/* minerals interactive */
.minerals-label { margin-bottom: .75rem; }
.minerals-label h3 {
  font-family: var(--serif); font-size: 1.2rem;
  font-weight: 600; color: var(--forest);
}
.minerals-label p { font-size: .78rem; color: var(--mid); margin-top: .2rem; }
.minerals-shell {
  display: grid; grid-template-columns: 240px 1fr;
  gap: 1px; background: var(--rule); margin-bottom: 1px;
}
.minerals-nav { background: var(--cream); }
.m-btn {
  width: 100%; text-align: left;
  padding: .85rem 1.1rem; background: none;
  border: none; border-bottom: 1px solid var(--rule);
  color: var(--mid); font-family: var(--sans); font-size: .8rem;
  cursor: pointer; display: flex; align-items: center;
  gap: .6rem; transition: all .15s;
}
.m-btn:hover { background: var(--white); color: var(--forest); }
.m-btn.on {
  background: var(--white); color: var(--forest);
  border-left: 2px solid var(--spring); font-weight: 500;
}
.m-btn .mn { font-size: .6rem; color: var(--spring); font-weight: 500; min-width: 16px; }
.m-btn .mi { font-size: .95rem; }
.mineral-panel { background: var(--white); padding: 2rem; display: none; }
.mineral-panel.on { display: block; }
.mp-tag {
  font-size: .62rem; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: var(--spring); margin-bottom: .6rem;
}
.mp-h {
  font-family: var(--serif); font-size: 1.5rem;
  font-weight: 600; color: var(--forest);
  line-height: 1.22; margin-bottom: .75rem;
}
.mp-hook {
  font-family: var(--serif); font-size: 1rem;
  font-style: italic; color: var(--forest);
  border-left: 2px solid var(--spring);
  padding-left: .9rem; margin-bottom: .9rem;
  line-height: 1.6;
}
.mp-body { font-size: .83rem; color: var(--mid); line-height: 1.75; margin-bottom: 1rem; }
.mp-link {
  font-size: .74rem; color: var(--forest); text-decoration: none;
  letter-spacing: .06em; text-transform: uppercase;
  border-bottom: 1px solid var(--spring); padding-bottom: .1rem;
}
.mp-link:hover { color: var(--spring); }

/* other insights */
.insights-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--rule);
}
.insight {
  background: var(--white); padding: 1.6rem 1.4rem;
  border-top: 2px solid var(--white); transition: border-color .2s;
}
.insight:hover { border-top-color: var(--spring); }
.insight.ext { border-top-color: var(--maroon); }
.insight-badge {
  font-size: .62rem; font-weight: 500; letter-spacing: .08em;
  text-transform: uppercase; color: var(--forest);
  border: 1px solid var(--rule); padding: .13rem .48rem;
  display: inline-block; margin-bottom: .55rem;
}
.insight.ext .insight-badge { border-color: rgba(124,31,46,.3); color: var(--maroon); }
.insight-meta {
  font-size: .63rem; color: var(--mid); letter-spacing: .05em;
  text-transform: uppercase; margin-bottom: .55rem;
}
.insight h3 {
  font-family: var(--serif); font-size: 1.05rem;
  font-weight: 600; color: var(--forest);
  line-height: 1.28; margin-bottom: .55rem;
}
.insight p { font-size: .79rem; color: var(--mid); line-height: 1.65; margin-bottom: .75rem; }
.insight-link {
  font-size: .71rem; color: var(--forest); text-decoration: none;
  letter-spacing: .05em; text-transform: uppercase;
  border-bottom: 1px solid var(--spring); padding-bottom: .1rem;
}
.insight-link:hover { color: var(--spring); }

/* ─── CONTACT ────────────────────────────────────────────── */
#contact {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
}
.con-l {
  background: var(--cream); padding: 5rem 4vw 5rem 5vw;
  display: flex; flex-direction: column; justify-content: center;
}
.con-l h2 { color: var(--forest); margin-bottom: .75rem; }
.con-l > p {
  font-size: .88rem; color: var(--mid);
  max-width: 360px; margin-bottom: 1.5rem; line-height: 1.7;
}
.con-details { display: flex; flex-direction: column; gap: .55rem; margin-top: 2rem; }
.con-row { display: flex; align-items: center; gap: .55rem; }
.con-icon {
  width: 26px; height: 26px; background: var(--forest);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.con-icon svg { width: 11px; height: 11px; stroke: var(--spring); fill: none; stroke-width: 1.6; }
.con-row span { font-size: .82rem; color: var(--char); }
.con-r {
  background: var(--forest); padding: 5rem 5vw 5rem 4vw;
  display: flex; flex-direction: column; justify-content: center;
}
.con-r-hd { margin-bottom: 1.5rem; }
.con-r-hd h3 { font-family: var(--serif); font-size: 1.3rem; color: var(--white); margin-bottom: .2rem; }
.con-r-hd p { font-size: .75rem; color: rgba(245,243,239,.38); }
.fg { margin-bottom: .9rem; }
.fg2 { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
label {
  display: block; font-size: .62rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(245,243,239,.38); margin-bottom: .28rem;
}
input, select, textarea {
  width: 100%; background: rgba(255,255,255,.05);
  border: 1px solid rgba(245,243,239,.1);
  padding: .6rem .8rem; color: var(--white);
  font-family: var(--sans); font-size: .83rem;
  outline: none; transition: border-color .18s;
  -webkit-appearance: none;
}
input::placeholder, textarea::placeholder { color: rgba(245,243,239,.25); }
input:focus, select:focus, textarea:focus { border-color: var(--spring); }
textarea { resize: vertical; min-height: 80px; }
select option { background: var(--fmid); }
.btn-sub {
  width: 100%; padding: .78rem; background: var(--spring);
  color: var(--forest); font-family: var(--sans); font-size: .86rem;
  font-weight: 500; border: none; cursor: pointer;
  transition: background .18s; margin-top: .35rem;
}
.btn-sub:hover { background: var(--smuted); }

/* ─── FOOTER ─────────────────────────────────────────────── */
footer {
  background: var(--char); padding: 2rem 5vw;
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: .75rem;
}
.ft-logo { display: flex; align-items: center; gap: .6rem; }
.ft-wm { font-family: var(--serif); font-size: .9rem; color: rgba(245,243,239,.5); }
.ft-links { list-style: none; display: flex; gap: 1.5rem; }
.ft-links a { font-size: .71rem; color: rgba(245,243,239,.28); text-decoration: none; transition: color .18s; }
.ft-links a:hover { color: var(--spring); }
.ft-copy { font-size: .65rem; color: rgba(245,243,239,.15); }



/* ─── ICP EXPANDABLE CARDS ────────────────────── */
.icp-stack { display: flex; flex-direction: column; gap: 1px; background: var(--rule); }
.icp-card {
  background: var(--white); cursor: pointer;
  border-left: 3px solid transparent;
  transition: border-color .2s;
}
.icp-card:hover { border-left-color: var(--spring); }
.icp-card.open { border-left-color: var(--spring); }
.icp-card-head {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 2rem;
  padding: 1.75rem 2rem;
}
.icp-card-left { flex: 1; }
.icp-seg-label {
  font-size: .62rem; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: var(--spring);
  margin-bottom: .4rem;
}
.icp-card-title {
  font-family: var(--serif); font-size: 1.3rem;
  font-weight: 600; color: var(--forest); margin-bottom: .4rem;
}
.icp-card-sub { font-size: .85rem; color: var(--mid); line-height: 1.6; }
.icp-toggle {
  width: 32px; height: 32px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--mid); transition: transform .25s, color .2s;
  margin-top: .2rem;
}
.icp-card.open .icp-toggle { transform: rotate(180deg); color: var(--spring); }
.icp-card-body {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease;
}
.icp-card.open .icp-card-body { max-height: 600px; }
.icp-body-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-top: 1px solid var(--rule);
}
.icp-body-col { padding: 1.75rem 2rem; }
.icp-body-col:first-child { border-right: 1px solid var(--rule); background: rgba(237,233,225,.4); }
.icp-body-label {
  font-size: .63rem; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: var(--forest);
  margin-bottom: .8rem; display: block;
}
.icp-fit-row {
  display: flex; align-items: baseline; gap: .5rem;
  font-size: .83rem; color: var(--mid); line-height: 1.6;
  padding: .3rem 0; border-top: 1px solid rgba(212,207,199,.5);
}
.icp-fit-row:first-of-type { border-top: none; }
.icp-arrow { color: var(--spring); font-size: .7rem; flex-shrink: 0; }
.icp-offer-item { margin-bottom: 1rem; }
.icp-offer-item:last-child { margin-bottom: 0; }
.icp-offer-tag {
  font-size: .68rem; font-weight: 500; letter-spacing: .07em;
  text-transform: uppercase; color: var(--forest);
  border-bottom: 1px solid var(--spring);
  padding-bottom: .18rem; display: inline-block;
  margin-bottom: .3rem;
}
.icp-offer-text { font-size: .82rem; color: var(--mid); line-height: 1.6; }

/* ─── SERVICES EXPANDABLE ─────────────────────── */
.svc-expand-grid { display: flex; flex-direction: column; gap: 1px; background: var(--rule); }
.svc-ex {
  background: var(--white); cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: border-color .2s;
}
.svc-ex:hover { border-bottom-color: var(--spring); }
.svc-ex.open { border-bottom-color: var(--spring); }
.svc-ex-head { padding: 1.5rem 1.75rem; }
.svc-ex-top {
  display: flex; align-items: center;
  justify-content: space-between; margin-bottom: .55rem;
}
.svc-ex-toggle {
  color: var(--mid); transition: transform .25s, color .2s;
}
.svc-ex.open .svc-ex-toggle { transform: rotate(180deg); color: var(--spring); }
.svc-ex h3 {
  font-family: var(--serif); font-size: 1.1rem;
  font-weight: 600; color: var(--forest); margin-bottom: .3rem;
}
.svc-ex-sub { font-size: .82rem; color: var(--mid); line-height: 1.6; }
.svc-ex-body {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease;
}
.svc-ex.open .svc-ex-body { max-height: 500px; }
.svc-ex-detail {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; border-top: 1px solid var(--rule);
}
.svc-detail-col { padding: 1.5rem 1.75rem; }
.svc-detail-col:first-child { border-right: 1px solid var(--rule); background: rgba(237,233,225,.4); }
.svc-detail-label {
  font-size: .62rem; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: var(--forest);
  margin-bottom: .65rem; display: block;
}
.svc-detail-col p { font-size: .82rem; color: var(--mid); line-height: 1.7; }
.svc-deliverable {
  font-size: .81rem; color: var(--mid); line-height: 1.6;
  padding: .28rem 0; border-top: 1px solid rgba(212,207,199,.5);
  display: flex; align-items: baseline; gap: .4rem;
}
.svc-deliverable::before { content: "✓"; color: var(--spring); font-size: .7rem; flex-shrink: 0; }

@media(max-width:900px){
  .icp-body-grid, .svc-ex-detail { grid-template-columns: 1fr; }
  .icp-body-col:first-child { border-right: none; border-bottom: 1px solid var(--rule); }
  .svc-detail-col:first-child { border-right: none; border-bottom: 1px solid var(--rule); }
  .icp-card-head { padding: 1.25rem 1.25rem; }
}



/* ─── STUDIO SPLIT ───────────────────────────── */
.studio-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--rule);
  min-height: 360px;
}
.studio-img-col { position: relative; }
.studio-quote-col {
  background: var(--forest);
  padding: 2.5rem 2.5rem 2rem;
  display: flex; align-items: center;
}
.pull-quote-stack {
  display: flex; flex-direction: column; gap: 1.5rem; width: 100%;
}
.pull-quote { position: relative; }
.pq-mark {
  font-family: var(--serif);
  font-size: 5rem; line-height: .7;
  color: var(--spring); opacity: .4;
  margin-bottom: .25rem;
}
.pq-large blockquote {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 600; font-style: italic;
  color: var(--white); line-height: 1.2;
  margin-bottom: .6rem;
}
.pq-large cite {
  font-size: .65rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--spring); font-style: normal;
}
.pq-mid {
  border-top: 1px solid rgba(126,203,164,.15);
  padding-top: 1.25rem;
}
.pq-mid blockquote {
  font-family: var(--serif);
  font-size: 1.05rem; font-style: italic;
  color: rgba(245,243,239,.75); line-height: 1.55;
}
.pq-small {
  border-top: 1px solid rgba(126,203,164,.15);
  padding-top: 1.25rem;
}
.pq-small blockquote {
  font-size: .85rem;
  color: rgba(245,243,239,.55); line-height: 1.7;
  font-style: normal; margin-bottom: .75rem;
}
.pq-link-wrap { margin-top: .5rem; }
.pq-link {
  font-size: .72rem; color: var(--spring);
  text-decoration: none; letter-spacing: .06em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(126,203,164,.3);
  padding-bottom: .1rem;
}
.pq-link:hover { color: var(--smuted); }

@media(max-width:900px){
  .studio-split { grid-template-columns: 1fr; }
  .studio-img-col { min-height: 260px; }
  .studio-quote-col { padding: 2rem 1.5rem; }
  .pq-large blockquote { font-size: 1.5rem; }
}


/* ─── HERO CIRCLES ANIMATION ─────────────────── */
.hero-circles circle {
  transform-origin: 240px 240px;
  transform-box: fill-box;
}
/* Each ring gets a staggered ripple — outermost first, innermost last */
/* They scale slightly and fade, like a ripple moving outward */
@keyframes ripple-ring {
  0%   { opacity: .09; transform: scale(1); }
  50%  { opacity: .18; transform: scale(1.04); }
  100% { opacity: .09; transform: scale(1); }
}
.hero-circles circle:nth-child(1) { animation: ripple-ring 4s ease-in-out 0s    infinite; }
.hero-circles circle:nth-child(2) { animation: ripple-ring 4s ease-in-out 0.5s  infinite; }
.hero-circles circle:nth-child(3) { animation: ripple-ring 4s ease-in-out 1s    infinite; }
.hero-circles circle:nth-child(4) { animation: ripple-ring 4s ease-in-out 1.5s  infinite; }
.hero-circles circle:nth-child(5) { animation: ripple-ring 4s ease-in-out 2s    infinite; }
.hero-circles circle:nth-child(6) { animation: ripple-ring 4s ease-in-out 2.5s  infinite; }
/* Override the parent opacity so individual rings control their own */
.hero-circles { opacity: 1; }

/* ─── PHOTO BLOCKS ───────────────────────────── */
.photo-band {
  width: 100%; overflow: hidden;
  display: grid; gap: 2px;
}
.photo-band-2 { grid-template-columns: 1fr 1fr; }
.photo-band-3 { grid-template-columns: 1.4fr 1fr 1fr; }
.photo-block {
  position: relative; overflow: hidden;
  background: var(--forest-mid, #224433);
}
.photo-block img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  filter: brightness(.92) saturate(.9);
  transition: transform .4s ease, filter .4s ease;
}
.photo-block:hover img {
  transform: scale(1.03);
  filter: brightness(1) saturate(1);
}
.photo-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(26,51,39,.85));
  padding: .75rem 1rem .6rem;
  font-size: .68rem; font-weight: 500;
  letter-spacing: .07em; text-transform: uppercase;
  color: rgba(245,243,239,.8);
}
.photo-block-tall { height: 360px; }
.photo-block-mid  { height: 280px; }
.photo-block-wide { height: 320px; }

@media(max-width:900px){
  .photo-band-2, .photo-band-3 { grid-template-columns: 1fr; }
  .photo-block-tall, .photo-block-mid, .photo-block-wide { height: 240px; }
}
@media(max-width:700px){
  #social-proof > div > div { grid-template-columns: 1fr; }
}

/* ─── SECTION ILLUSTRATIONS ──────────────────── */
.sec-art {
  display: flex; align-items: center; justify-content: center;
  opacity: .055; pointer-events: none; user-select: none;
}
.manifesto-art {
  position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  opacity: .04; pointer-events: none;
}
.serve-art {
  text-align: center; margin-bottom: 2rem; opacity: .07;
}

/* Image placeholder blocks for visual rhythm */
.img-block {
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.img-block::after {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent, transparent 20px,
    rgba(26,51,39,.03) 20px, rgba(26,51,39,.03) 21px
  );
}
.insight-img {
  width: 100%; height: 120px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--rule) 100%);
  margin-bottom: 1rem;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.insight-img svg { opacity: .15; }

/* Service section background texture */
#services { position: relative; }
#services::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 320px; height: 320px;
  background: radial-gradient(circle at center, rgba(26,51,39,.04) 0%, transparent 70%);
  pointer-events: none;
}

/* Who we serve — left accent line on section */
#serve { position: relative; }
#serve::after {
  content: '';
  position: absolute; left: 0; top: 3rem; bottom: 3rem;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--spring), transparent);
  opacity: .3;
}

/* Manifesto pillars - subtle grid lines */
.manifesto-r { position: relative; }

/* thinking section pull quote visual */
.minerals-pull {
  background: var(--forest);
  padding: 2rem 2.5rem;
  margin-bottom: 1px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background-color: var(--rule);
}
.minerals-pull-stat {
  background: var(--forest);
  padding: 1.5rem;
  text-align: center;
}
.minerals-pull-val {
  font-family: var(--serif); font-size: 2.2rem;
  font-weight: 600; color: var(--spring); line-height: 1;
}
.minerals-pull-label {
  font-size: .72rem; color: rgba(245,243,239,.55);
  margin-top: .4rem; line-height: 1.45;
}

/* ─── GLOBAL OVERFLOW GUARD ──────────────────────────────── */
/* Prevents horizontal scroll at any viewport width */
html, body { max-width: 100%; overflow-x: hidden; }
.hero-circles { max-width: 100%; overflow: hidden; }
svg { max-width: 100%; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */

@media (max-width: 900px) {
  #hero, #about, #contact { grid-template-columns: 1fr; }
  .hero-r { display: none; }
  .hero-l { padding: 6rem 5vw 4rem; }
  .manifesto-grid, .services-hd, .thinking-hd { grid-template-columns: 1fr; gap: 1.5rem; }
  .svc-grid, .serve-grid, .process-steps, .insights-grid, .cred-grid { grid-template-columns: 1fr; }
  .minerals-shell { grid-template-columns: 1fr; }
  .manifesto-r { grid-template-columns: 1fr; }
  .con-l, .con-r { padding: 3.5rem 5vw; }
  nav .nav-links { display: none; }
  nav .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    border-top: 2px solid var(--forest);
    padding: 1.25rem 5vw 1.75rem;
    gap: 0;
    box-shadow: 0 8px 24px rgba(26,51,39,.12);
    z-index: 999;
  }
  nav .nav-links.open li { border-bottom: 1px solid var(--rule); }
  nav .nav-links.open li:last-child { border-bottom: none; }
  nav .nav-links.open a {
    display: block;
    padding: 1rem 0;
    font-size: 1.05rem;
    letter-spacing: .02em;
    text-transform: none;
    color: var(--forest);
    font-weight: 500;
  }
  nav .nav-links.open .nav-cta {
    display: inline-block;
    margin-top: .85rem;
    padding: .7rem 1.5rem;
    font-size: .9rem;
  }
  .nav-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: 1px solid rgba(26,51,39,.15);
    border-radius: 4px;
    cursor: pointer;
    padding: .55rem .65rem;
    margin-left: auto;
    min-width: 44px;
    min-height: 44px;
  }
  .nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--forest);
    border-radius: 2px;
    transition: transform .25s ease, opacity .25s ease;
  }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  /* Bigger base font on mobile */
  body { font-size: 16px; }
  /* Inner pages — push content below fixed nav */
  .page-header { padding-top: 6rem !important; }
  .sec { padding: 3.5rem 5vw; }
  .sec-sm { padding: 2.5rem 5vw; }
  /* AMII badge image-text layout collapses on mobile */
  .feature-badge div[style*="grid-template-columns:180px"] {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 600px) {
  .hero-h { font-size: 2.4rem; }
  .icp-body-grid { grid-template-columns: 1fr; }
  .icp-body-col:first-child { border-right: none; border-bottom: 1px solid var(--rule); }
  .svc-ex-detail { grid-template-columns: 1fr !important; }
  .fg2 { grid-template-columns: 1fr; }
  /* Testimonial grid single column */
  #social-proof div[style*="grid-template-columns:1fr 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  /* Strip wraps neatly */
  .strip { gap: 1rem; }
  /* Footer stacks */
  footer { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .ft-links { flex-wrap: wrap; gap: .75rem; }
}

/* ─── MULTI-PAGE PRODUCT CARDS ─────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 2.5rem;
}
@media (max-width: 860px) {
  .product-grid { grid-template-columns: 1fr; }
}
.product-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-top: 4px solid var(--forest);
  padding: 2.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
}
.product-card .pc-num {
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: .75rem;
}
.product-card h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1.25;
  color: var(--forest);
  margin-bottom: 1rem;
}
.product-card .pc-sub {
  font-size: .92rem;
  line-height: 1.6;
  color: var(--mid);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
}
.product-card .pc-section-label {
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: .75rem;
  font-weight: 600;
}
.product-card .pc-feature {
  padding: .75rem 0;
  border-bottom: 1px solid var(--rule);
  font-size: .87rem;
  line-height: 1.55;
  color: var(--ink);
}
.product-card .pc-feature:last-of-type { border-bottom: none; }
.product-card .pc-feature strong {
  display: block;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--forest);
  margin-bottom: .2rem;
}
.pc-delivery {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.pc-delivery-item {
  font-size: .85rem;
  color: var(--ink);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.5;
}
.pc-delivery-item::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--spring);
  font-size: .8rem;
}
.product-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2.5rem;
  background: var(--cream);
  border-top: 1px solid var(--rule);
}

/* ─── NAV ACTIVE PAGE INDICATOR ─────────────────────────── */
.nav-links a.active {
  color: var(--forest);
  font-weight: 600;
}

/* ─── PAGE HERO (non-home) ──────────────────────────────── */
.page-hero {
  padding: 5rem 5vw 3rem;
  max-width: 800px;
}
.page-hero .kicker { display: block; margin-bottom: 1rem; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); }
.page-hero .page-hero-sub {
  font-size: 1.1rem;
  color: var(--mid);
  margin-top: 1rem;
  max-width: 600px;
  line-height: 1.6;
}

/* ─── BLOG PAGE CARDS ────────────────────────────────────── */
.blog-section-label {
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mid);
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: block;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
  margin-bottom: 3rem;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--rule);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.blog-card .bc-badge {
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--spring);
  font-weight: 600;
}
.blog-card .bc-meta {
  font-size: .75rem;
  color: var(--mid);
}
.blog-card h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.35;
  color: var(--forest);
}
.blog-card p {
  font-size: .85rem;
  line-height: 1.55;
  color: var(--mid);
  flex: 1;
}
.blog-card .bc-link {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--forest);
  text-decoration: none;
  margin-top: auto;
}
.blog-card .bc-link:hover { color: var(--spring); }

/* ─── EVENT PHOTOS ON ABOUT ─────────────────────────────── */
.event-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}
.event-photo-grid .ep-block img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}
.ep-caption {
  font-size: .75rem;
  color: var(--mid);
  margin-top: .5rem;
  line-height: 1.4;
}
@media (max-width: 640px) {
  .event-photo-grid { grid-template-columns: 1fr; }
}

/* ─── BLOG CARD HEADING ──────────────────────────────────── */
.blog-card-h {
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.35;
  color: var(--forest);
  font-weight: 400;
  margin: 0;
}

/* ─── PRODUCT CARDS ──────────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 1rem;
}
@media (max-width: 860px) { .product-grid { grid-template-columns: 1fr; } }
.product-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-top: 4px solid var(--forest);
  padding: 2.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
}
.pc-num {
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: .75rem;
}
.pc-sub {
  font-size: .92rem;
  line-height: 1.6;
  color: var(--mid);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
}
.pc-section-label {
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: .75rem;
  font-weight: 600;
  margin-top: .5rem;
}
.pc-feature {
  padding: .75rem 0;
  border-bottom: 1px solid var(--rule);
  font-size: .87rem;
  line-height: 1.55;
  color: var(--ink);
}
.pc-feature:last-of-type { border-bottom: none; }
.pc-feature strong {
  display: block;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--forest);
  margin-bottom: .3rem;
}
.pc-delivery { margin-top: 1.25rem; display: flex; flex-direction: column; gap: .65rem; }
.pc-delivery-item {
  font-size: .85rem;
  color: var(--ink);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.5;
}
.pc-delivery-item::before { content:"→"; position:absolute; left:0; color:var(--spring); font-size:.8rem; }
.product-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2.5rem;
  background: var(--cream);
  border-top: 1px solid var(--rule);
}

/* ─── BLOG GRID ──────────────────────────────────────────── */
.blog-section-label {
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mid);
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: block;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
  margin-bottom: 2rem;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--rule);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.bc-badge { font-size:.7rem; letter-spacing:.1em; text-transform:uppercase; color:var(--spring); font-weight:600; }
.bc-meta { font-size:.75rem; color:var(--mid); }
.blog-card p { font-size:.85rem; line-height:1.55; color:var(--mid); flex:1; margin:0; }
.bc-link { font-size:.8rem; font-weight:600; letter-spacing:.06em; text-transform:uppercase; color:var(--forest); text-decoration:none; margin-top:auto; }
.bc-link:hover { color:var(--spring); }

/* ─── MOBILE CONTACT PADDING ─────────────────────────────── */
@media (max-width: 900px) {
  .con-l { padding-top: 5.5rem !important; }
}

/* ─── AKFC PHOTO SECTION RESPONSIVE ─────────────────────── */
@media (max-width: 900px) {
  #main-content.page-header,
  section.page-header { padding-top: 5.5rem !important; }
  div[style*="grid-template-columns:1fr 1fr"][style*="gap:3rem"] {
    grid-template-columns: 1fr !important;
  }
  div[style*="grid-template-columns:1fr 1fr"][style*="gap:3rem"] img {
    height: 260px !important;
  }
}
