/* Athenais — Modern Editorial Design System */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}

:root{
  --green:#2e3320;
  --green-dark:#191e0d;
  --green-mid:#444934;
  --green-soft:#5b614b;
  --surface:#fcf9f5;
  --surface-dim:#f0edea;
  --page-taupe:#8c847f;
  --surface-high:#ebe8e4;
  --on-surface:#1c1c1a;
  --on-surface-muted:#46473f;
  --on-green:#fcf9f5;
  --outline:rgba(46,51,32,0.12);
  --outline-strong:rgba(46,51,32,0.22);
  --shadow:0 8px 40px rgba(25,30,13,0.15);
  --shadow-soft:0 4px 24px rgba(25,30,13,0.08);
  --max:1280px;
  --gutter:32px;
  --ease:cubic-bezier(0.16,1,0.3,1);
  --font-display:'EB Garamond',Georgia,'Times New Roman',serif;
  --font-ui:'Archivo Narrow',Arial,sans-serif;
  --font-quote:'Source Serif 4',Georgia,serif;
  --header-h:120px;
  --radius-sm:0.5rem;
  --radius:1rem;
  --radius-md:1.5rem;
  --radius-lg:2rem;
  --radius-xl:3rem;
  --radius-pill:9999px;
}

html{scroll-behavior:smooth;}
body{
  font-family:var(--font-ui);
  background:var(--surface);
  color:var(--on-surface);
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
  line-height:1.6;
}

img{display:block;max-width:100%;height:auto;}
a{color:inherit;text-decoration:none;}
button{font:inherit;cursor:pointer;border:none;background:none;}
ul{list-style:none;}

a:focus-visible,
button:focus-visible{
  outline:2px solid currentColor;
  outline-offset:4px;
}

.container{
  width:min(var(--max),100% - 40px);
  margin-inline:auto;
}
@media(min-width:768px){
  .container{width:min(var(--max),100% - var(--gutter)*2);}
}

/* ── TYPOGRAPHY ── */
.display-lg{
  font-family:var(--font-display);
  font-size:clamp(2.5rem,5.5vw,4rem);
  font-weight:500;
  line-height:1.1;
  letter-spacing:-0.02em;
}
.headline-lg{
  font-family:var(--font-display);
  font-size:clamp(2rem,4vw,3rem);
  font-weight:500;
  line-height:1.15;
  letter-spacing:-0.015em;
}
.headline-md{
  font-family:var(--font-display);
  font-size:clamp(1.5rem,2.5vw,2rem);
  font-weight:500;
  line-height:1.25;
}
.label{
  font-family:var(--font-ui);
  font-size:12px;
  font-weight:700;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color:var(--on-surface-muted);
}
.label-light{color:rgba(252,249,245,0.55);}
.body-lg{font-size:18px;line-height:1.65;}
.body-md{font-size:16px;line-height:1.65;color:var(--on-surface-muted);}
.quote{
  font-family:var(--font-quote);
  font-size:clamp(1.25rem,2.2vw,1.5rem);
  font-weight:700;
  line-height:1.5;
}

/* ── BUTTONS ── */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:14px 28px;
  border-radius:var(--radius-pill);
  font-family:var(--font-ui);
  font-size:12px;font-weight:700;
  letter-spacing:0.1em;
  text-transform:uppercase;
  transition:transform 0.25s var(--ease),background 0.25s,box-shadow 0.25s,border-color 0.25s;
  white-space:nowrap;
}
.btn:hover{transform:translateY(-1px);}
.btn-primary{
  background:#0a0a0a;
  color:#f5f5f5;
}
.btn-primary:hover{background:#1a1a1a;box-shadow:var(--shadow-soft);}
.btn-secondary{
  background:var(--surface);
  color:var(--green-dark);
  border:1.5px solid var(--green-dark);
}
.btn-secondary:hover{background:var(--surface-dim);}
.btn-light{
  background:var(--surface);
  color:var(--green-dark);
}
.btn-light:hover{background:var(--surface-dim);box-shadow:var(--shadow-soft);}
.btn-green{
  background:var(--green);
  color:var(--on-green);
}
.btn-green:hover{background:var(--green-mid);}

/* ── HEADER / NAV ── */
.site-header{
  position:fixed;top:0;left:0;right:0;z-index:1000;
  padding:20px 24px;
  transition:padding 0.35s var(--ease),opacity 0.4s var(--ease),transform 0.4s var(--ease),visibility 0.4s;
}
.site-header.is-hidden{
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transform:translateY(-16px);
}
.site-header.scrolled{padding:12px 20px;}
.header-inner{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  max-width:var(--max);margin:0 auto;
  padding:12px 24px;
  transition:background 0.35s,box-shadow 0.35s,border-color 0.35s;
}
/* Transparent nav over hero — no bubble */
.site-header.hero-mode .header-inner{
  max-width:var(--max);
  padding:12px 24px;
  background:transparent;
  backdrop-filter:none;
  -webkit-backdrop-filter:none;
  border:none;
  box-shadow:none;
  border-radius:0;
}
.site-header.hero-mode .logo{
  margin-left:0;
}
/* Frosted bar once scrolled past hero */
.site-header:not(.hero-mode) .header-inner{
  padding:8px 22px 8px 28px;
  max-width:960px;
  border-radius:var(--radius-pill);
  background:rgba(252,249,245,0.88);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border:1px solid rgba(46,51,32,0.08);
  box-shadow:var(--shadow-soft);
}
.logo{
  justify-self:start;
  grid-column:1;
  display:flex;align-items:center;
  line-height:0;
  margin-left:16px;
  transition:margin 0.35s var(--ease);
}
.site-header:not(.hero-mode) .logo{
  margin-left:20px;
}
.site-header:not(.hero-mode) .logo img{
  height:52px;
  filter:brightness(0);
}
.logo img{
  height:100px;width:auto;
  display:block;
  object-fit:contain;
  border:none;
  outline:none;
  background:transparent;
  box-shadow:none;
  border-radius:0;
  transition:height 0.35s var(--ease);
}
.site-header.hero-mode .logo img{filter:none;}
.nav-cluster{
  grid-column:2;
  display:none;
  align-items:center;
  justify-content:center;
  gap:6px;
  justify-self:center;
  transition:opacity 0.35s var(--ease),visibility 0.35s var(--ease);
}
.site-header.nav-overlap-hidden .nav-cluster,
.site-header.nav-overlap-hidden .hamburger{
  opacity:0;
  visibility:hidden;
  pointer-events:none;
}
.nav-desktop{
  display:flex;align-items:center;justify-content:center;gap:2px;
}
.nav-desktop a{
  padding:8px 16px;
  font-size:11px;font-weight:700;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:var(--on-surface);
  border-radius:var(--radius-pill);
  transition:color 0.2s;
  position:relative;
}
.site-header.hero-mode .nav-desktop a{
  color:#fff;
  text-shadow:0 1px 12px rgba(0,0,0,0.45);
}
.site-header.hero-mode .nav-desktop a:hover{color:#fff;opacity:0.85;}
.site-header.hero-mode .nav-desktop a.active{color:#fff;}
.site-header.hero-mode .nav-desktop a.active::after{background:#fff;}
.nav-desktop a:hover{color:var(--green-dark);}
.nav-desktop a.active{color:var(--green-dark);}
.nav-desktop a.active::after{
  content:'';position:absolute;bottom:2px;left:50%;transform:translateX(-50%);
  width:4px;height:4px;border-radius:50%;background:var(--green-dark);
}
.site-header.hero-mode .hamburger span{background:#fff;}
.nav-cta{
  padding:10px 22px;
  font-size:11px;
  background:#2E3320;
  color:#FAF2ED;
  opacity:1;
  border-radius:var(--radius-pill);
  border:1.5px solid rgba(250,242,237,0.4);
  box-shadow:none;
}
.nav-cta:hover{
  background:#1a1f10 !important;
  border-color:rgba(250,242,237,0.6);
}
.site-header.hero-mode .nav-cta{
  background:#2E3320;
  color:#FAF2ED;
  text-shadow:none;
  box-shadow:none;
}
.site-header.hero-mode .nav-cta:hover{
  background:#1a1f10 !important;
  border-color:rgba(250,242,237,0.6);
  opacity:1;
  transform:none;
}
.site-header:not(.hero-mode) .nav-cta{
  background:#2E3320;
  color:#FAF2ED;
  box-shadow:none;
}
.site-header:not(.hero-mode) .nav-cta:hover{
  background:#1a1f10 !important;
  border-color:rgba(250,242,237,0.6);
  opacity:1;
  transform:none;
}
.hamburger{
  grid-column:3;
  justify-self:end;
  display:flex;flex-direction:column;gap:5px;
  padding:8px;
  background:none;border:none;cursor:pointer;
  transition:opacity 0.35s var(--ease),visibility 0.35s var(--ease);
}
.hamburger span{
  display:block;width:22px;height:1.5px;
  background:var(--green-dark);
  transition:transform 0.3s,opacity 0.3s;
}
.hamburger.open span:nth-child(1){transform:translateY(6.5px) rotate(45deg);}
.hamburger.open span:nth-child(2){opacity:0;}
.hamburger.open span:nth-child(3){transform:translateY(-6.5px) rotate(-45deg);}

.mobile-menu{
  position:fixed;inset:0;z-index:999;
  background:rgba(25,30,13,0.45);
  backdrop-filter:blur(4px);
  opacity:0;pointer-events:none;
  transition:opacity 0.35s var(--ease);
}
.mobile-menu.open{opacity:1;pointer-events:all;}
.mobile-panel{
  position:absolute;top:0;right:0;bottom:0;
  width:min(320px,88vw);
  background:var(--surface);
  padding:100px 32px 40px;
  display:flex;flex-direction:column;gap:8px;
  transform:translateX(100%);
  transition:transform 0.4s var(--ease);
  box-shadow:var(--shadow);
}
.mobile-menu.open .mobile-panel{transform:translateX(0);}
.mobile-panel a{
  padding:14px 0;
  font-size:13px;font-weight:700;
  letter-spacing:0.1em;
  text-transform:uppercase;
  border-bottom:1px solid var(--outline);
  color:var(--on-surface);
}
.mobile-panel .btn{margin-top:24px;width:100%;}

@media(min-width:960px){
  .nav-cluster{display:flex;}
  .hamburger{display:none;}
}
@media(max-width:959px){
  .logo img{height:72px;}
  .header-inner{grid-template-columns:auto 1fr auto;}
}

/* ── SCROLL REVEAL ── */
.reveal{
  opacity:0;transform:translateY(28px);
  transition:opacity 0.7s var(--ease),transform 0.7s var(--ease);
}
.reveal.on{opacity:1;transform:none;}
.reveal.d1{transition-delay:0.1s;}
.reveal.d2{transition-delay:0.2s;}
.reveal.d3{transition-delay:0.3s;}

/* ── SECTION SPACING ── */
section[id],
.story-block[id]{scroll-margin-top:calc(var(--header-h) + 24px);}

/* ── PAGE VIEWS (SPA-style nav) ── */
.page-view{display:none;}
.page-view.is-active{display:block;}

/* ── HOME HERO ── */
.hero{
  position:relative;min-height:100vh;min-height:100svh;
  display:flex;flex-direction:column;
  align-items:center;justify-content:center;
  padding:calc(var(--header-h) + 80px) 20px 80px;
  color:#fff;
}
.hero-bg{
  position:absolute;inset:0;z-index:0;overflow:hidden;
}
.hero-bg img{
  width:100%;height:100%;object-fit:cover;
  object-position:center 30%;
  will-change:transform;
  opacity:1;
}
.hero-bg::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(
    to bottom,
    rgba(0,0,0,0.18) 0%,
    rgba(0,0,0,0.28) 45%,
    rgba(0,0,0,0.28) 78%,
    rgba(0,0,0,0.12) 92%,
    rgba(252,249,245,0.35) 100%
  );
}
.hero-content{
  position:relative;z-index:2;
  text-align:center;
  max-width:820px;
}
.hero-content h1{
  font-family:var(--font-display);
  font-size:clamp(1.85rem,3.8vw,3rem);
  font-weight:500;line-height:1.15;
  letter-spacing:-0.02em;
  margin-bottom:28px;
  color:#fff;
  text-shadow:0 2px 24px rgba(0,0,0,0.35),0 1px 4px rgba(0,0,0,0.25);
  max-width:920px;margin-inline:auto;
}
.hero-line{
  display:block;
  white-space:nowrap;
}
@media(max-width:640px){
  .hero-line{white-space:normal;}
}
.hero-badge{
  display:none;
}

/* Hero name marquee — width locked to first headline line */
.hero-line-group{
  display:inline-block;
  max-width:100%;
  margin-bottom:8px;
}
.hero-line-group > .hero-line{
  display:block;
}
.hero-marquee{
  display:block;
  width:calc(100% - 2in);
  max-width:calc(100% - 2in);
  margin-inline:1in;
  overflow:hidden;
  margin-bottom:8px;
  opacity:0.8;
}
#home .hero-marquee{
  width:auto;
  max-width:calc(100% - 4in);
  margin-inline:2in;
}
.hero-marquee .marquee-track{
  animation:marquee-scroll 50s linear infinite;
}
.hero-marquee .marquee-item{
  font-family:var(--font-display);
  font-size:clamp(0.62rem,1.05vw,0.78rem);
  font-weight:500;
  letter-spacing:0.1em;
  color:#fff;
  text-transform:uppercase;
  gap:10px;
  padding-right:10px;
}
.hero-marquee .marquee-dot{background:#fff;opacity:0.35;width:3px;height:3px;}

/* Hero CTA — frosted pill, hover solid white */
.btn-hero-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 32px;
  border-radius:var(--radius-pill);
  font-family:var(--font-ui);
  font-size:11px;font-weight:700;
  letter-spacing:0.12em;
  text-transform:uppercase;
  background:rgba(255,255,255,0.12);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border:1.5px solid rgba(255,255,255,0.45);
  color:#fff;
  transition:transform 0.35s var(--ease),background 0.35s,color 0.35s,border-color 0.35s,backdrop-filter 0.35s;
}
.btn-hero-cta:hover{
  transform:scale(1.08);
  background:#fff;
  backdrop-filter:none;
  -webkit-backdrop-filter:none;
  color:var(--green);
  border-color:#fff;
}
.btn-hero-cta--on-light{
  background:rgba(255,255,255,0.55);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  border-color:rgba(46,51,32,0.2);
  color:var(--green);
}
.btn-hero-cta--on-light:hover{
  background:#fff;
  backdrop-filter:none;
  -webkit-backdrop-filter:none;
  color:var(--green);
  border-color:#fff;
  box-shadow:var(--shadow-soft);
}

/* Marquee base */
.marquee{overflow:hidden;white-space:nowrap;user-select:none;}
.marquee-track{display:inline-flex;animation:marquee-scroll 28s linear infinite;}
.marquee-track:hover{animation-play-state:paused;}
.marquee-item{
  display:inline-flex;align-items:center;gap:18px;
  padding-right:18px;
  font-size:11px;font-weight:700;
  letter-spacing:0.16em;text-transform:uppercase;
}
.marquee-dot{width:4px;height:4px;border-radius:50%;background:currentColor;opacity:0.35;}
@keyframes marquee-scroll{
  from{transform:translateX(0);}
  to{transform:translateX(-50%);}
}

/* Shared muted section surface (our story grey) */
.section-muted{background:var(--surface-dim);color:var(--on-surface);}

/* ── BLUR SURFACE (home → our story) ── */
.blur-surface{
  position:relative;
  color:var(--on-surface);
  overflow:hidden;
}
.blur-surface-bg{
  position:absolute;inset:0;z-index:0;
  background-size:cover;background-position:center top;
  filter:blur(80px) brightness(0.7);
  transform:scale(1.2);
  pointer-events:none;
}
.blur-surface-bg::after{
  content:'';position:absolute;inset:0;
  background:rgba(252,249,245,0.55);
}
.blur-surface > section,
.blur-surface > .container{
  position:relative;z-index:2;
}
.blur-surface .section-muted{background:transparent;}
.blur-surface .story-block.dark,
.blur-surface .story-block.light,
.blur-surface .story-block.muted{background:transparent;color:var(--on-surface);}
.blur-surface .story-block.dark .label-light{color:var(--on-surface-muted);opacity:1;}
.blur-surface .story-block.dark h2{color:var(--on-surface);}
.blur-surface .story-block.dark p{color:var(--on-surface-muted);opacity:1;}
.blur-surface .cta-band{background:transparent;color:var(--on-surface);}

/* ── OUR OFFERS SCROLL DIAL ── */
.offers-dial-section{
  position:relative;
  padding:80px 0 32px;
  color:var(--on-surface);
}
.offers-dial-layout{
  position:relative;z-index:1;
  display:grid;gap:24px;
  align-items:start;
}
@media(min-width:900px){
  .offers-dial-layout{
    grid-template-columns:200px 1fr;
    gap:40px;
    align-items:start;
  }
}
.offers-heading{
  font-family:var(--font-display);
  font-size:clamp(1.75rem,3vw,2.5rem);
  font-weight:500;
  line-height:1.2;
  padding-top:2px;
  margin:0;
}
.offers-heading-spacer{display:none;}
@media(min-width:900px){
  .offers-heading-spacer{display:block;}
}
.offers-dial-wrap{
  overflow:visible;
}
.offers-dial{list-style:none;}
.offers-dial-item{
  display:block;
  padding:2px 0;
  font-family:var(--font-display);
  font-size:clamp(1.15rem,2.2vw,1.65rem);
  font-weight:500;
  letter-spacing:-0.02em;
  line-height:1.2;
  color:var(--on-surface);
  opacity:0.35;
  transition:opacity 0.3s var(--ease);
}
.offers-dial-item.is-active{
  opacity:1;
}

/* ── QUOTE BAND ── */
.quote-band{
  position:relative;
  min-height:100vh;
  min-height:100svh;
  display:flex;
  align-items:center;
  padding:140px 0 100px;
  text-align:left;
  box-sizing:border-box;
}
.quote-band .offers-dial-layout{
  width:100%;
  align-items:center;
}
.quote-band-stack{
  grid-column:1;
  display:flex;
  flex-direction:column;
  gap:28px;
}
@media(min-width:900px){
  .quote-band-stack{grid-column:2;}
}
.quote-marquee{
  width:min(100%,52ch);
  max-width:100%;
  margin-inline:0;
  margin-bottom:0;
  opacity:0.42;
  font-size:clamp(0.62rem,1.05vw,0.78rem);
}
.quote-marquee .marquee-item{
  color:var(--on-surface);
}
.quote-marquee .marquee-dot{background:var(--on-surface);opacity:0.35;}
.quote-band-text{
  font-family:var(--font-display);
  font-size:clamp(1.85rem,3.8vw,3rem);
  font-weight:500;
  line-height:1.15;
  letter-spacing:-0.02em;
  color:var(--on-surface);
  max-width:820px;
  margin:0;
  border:none;
}

/* ── HOME CTA (OKO-style floating photos) ── */
.home-cta{
  position:relative;
  min-height:100vh;
  min-height:100svh;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  padding:calc(var(--header-h) + 48px) 20px 100px;
}
.home-cta-bg{
  position:absolute;inset:0;z-index:0;
  overflow:hidden;pointer-events:none;
}
.home-cta-bg-blur{
  position:absolute;inset:0;
  background-size:cover;background-position:center;
  filter:blur(64px) brightness(0.8);
  transform:scale(1.18);
}
.home-cta-bg-blur::after{
  content:'';position:absolute;inset:0;
  background:rgba(252,249,245,0.72);
}
.home-cta-floats{
  position:absolute;inset:0;
  z-index:1;
  pointer-events:none;
  overflow:hidden;
}
.home-cta-frost{
  position:absolute;inset:0;z-index:2;
  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);
  background:rgba(240,237,234,0.14);
  pointer-events:none;
}
.home-cta-float{
  position:absolute;
  left:var(--x);
  top:var(--y);
  width:var(--w);
  aspect-ratio:4/5;
  border-radius:var(--radius-lg);
  overflow:hidden;
  background:#d9d4cc;
  will-change:transform;
  box-shadow:0 24px 64px rgba(25,30,13,0.14);
  line-height:0;
}
.home-cta-float img{
  width:100%;height:100%;
  object-fit:cover;
  object-position:center;
  transform:scale(1.14);
  display:block;
}
.home-cta-float--rise{
  animation:cta-float-rise 13s ease-in-out infinite alternate;
}
.home-cta-float--fall{
  animation:cta-float-fall 13s ease-in-out infinite alternate;
}
.home-cta-float--rise:nth-child(1){animation-delay:0s;}
.home-cta-float--rise:nth-child(2){animation-delay:-6.5s;}
.home-cta-float--fall:nth-child(3){animation-delay:-3s;}
.home-cta-float--fall:nth-child(4){animation-delay:-9.5s;}
@keyframes cta-float-rise{
  0%{transform:translateY(72px);}
  100%{transform:translateY(-72px);}
}
@keyframes cta-float-fall{
  0%{transform:translateY(-72px);}
  100%{transform:translateY(72px);}
}
.home-cta-inner{
  position:relative;z-index:3;
  text-align:center;
  max-width:640px;
  margin-inline:auto;
  padding-inline:var(--gutter);
}
.home-cta .label{margin-bottom:16px;}
.home-cta h2{margin-bottom:32px;}
@media(max-width:768px){
  .home-cta-float:nth-child(2),
  .home-cta-float:nth-child(4){display:none;}
}

/* ── PAGE HERO (shared) ── */
.page-hero{
  padding:calc(var(--header-h) + 64px) 0 80px;
}
.page-hero.dark{
  background:var(--green);
  color:var(--on-green);
}
.page-hero.light{background:var(--surface);}
.page-hero.light .headline-lg{margin-bottom:28px;}
.page-hero.light .intro{margin-bottom:0;}
.page-hero.blur-hero{
  position:relative;min-height:70vh;
  display:flex;align-items:center;justify-content:center;
}
.blur-surface .page-hero.blur-hero{background:transparent;}
.page-hero.blur-hero .blur-bg{
  position:absolute;inset:0;
  background-size:cover;background-position:center;
  filter:blur(24px) brightness(0.7);
  transform:scale(1.1);
}
.page-hero.blur-hero .blur-bg::after{
  content:'';position:absolute;inset:0;
  background:rgba(252,249,245,0.55);
}
.page-hero.blur-hero .page-hero-inner{
  position:relative;z-index:2;text-align:center;
  padding:40px 20px;
}
.page-hero.blur-hero h1{
  font-family:var(--font-display);
  font-size:clamp(22px,3vw,38px);
  font-weight:500;
  letter-spacing:0.04em;
  text-transform:uppercase;
  color:var(--green-dark);
  max-width:800px;margin:0 auto 24px;
}
.page-hero h1 em{font-style:italic;font-weight:500;opacity:0.85;}

.page-label{
  font-family:var(--font-ui);
  font-size:11px;font-weight:700;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--on-surface-muted);
  margin-bottom:20px;
}
.page-hero.dark .page-label{color:rgba(252,249,245,0.5);}
.page-hero .intro{
  max-width:640px;
  font-size:16px;line-height:1.75;
  opacity:0.72;
}
.page-hero.dark .intro{color:rgba(252,249,245,0.72);}
.page-hero.dark h1{
  font-family:var(--font-display);
  font-size:clamp(2rem,4.5vw,3.25rem);
  font-weight:500;line-height:1.15;
  letter-spacing:-0.015em;
  max-width:800px;
  margin-bottom:32px;
}

/* ── STORY SECTIONS ── */
.story-block{
  padding:80px 0;
}
.story-block.dark{background:var(--green);color:var(--on-green);}
.story-block.light{background:var(--surface);}
.story-block.muted{background:var(--surface-dim);}
.story-split{
  display:grid;gap:40px;align-items:center;
}
@media(min-width:900px){
  .story-split{grid-template-columns:1fr 1fr;gap:64px;}
}
.story-block .section-num{margin-bottom:16px;}
.story-block.dark .label-light{opacity:0.55;}
.story-block h2{
  font-family:var(--font-display);
  font-size:clamp(1.75rem,3.5vw,2.75rem);
  font-weight:500;line-height:1.2;
  margin-bottom:24px;
}
.story-block.dark h2{color:var(--on-green);}
.story-block p{margin-bottom:16px;font-size:15px;line-height:1.75;}
.story-block.dark p{opacity:0.75;}
.story-img{
  border-radius:var(--radius-xl);
  overflow:hidden;
  aspect-ratio:4/3;
  box-shadow:var(--shadow-soft);
}
.story-img img{width:100%;height:100%;object-fit:cover;filter:grayscale(20%);}
.story-pullquote{
  text-align:center;
  padding:100px 20px;
}
.story-pullquote .quote{
  max-width:780px;margin:0 auto 24px;
  font-style:italic;font-weight:500;
}
.story-stars{
  display:flex;justify-content:center;gap:6px;
  color:var(--green);font-size:14px;letter-spacing:4px;
}

/* Insight cards */
.insight-grid{
  display:grid;gap:20px;
  margin-top:48px;
}
@media(min-width:768px){
  .insight-grid{grid-template-columns:repeat(3,1fr);}
}
.insight-card{
  background:var(--surface);
  border:1px solid var(--outline);
  border-radius:var(--radius-lg);
  padding:32px 28px;
  transition:transform 0.3s var(--ease),box-shadow 0.3s;
}
.insight-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-soft);}
.insight-card.featured{
  background:var(--surface-dim);
  border-color:var(--outline-strong);
}
.insight-icon{
  width:40px;height:40px;margin-bottom:20px;
  border-radius:50%;
  border:1.5px solid var(--outline-strong);
  display:flex;align-items:center;justify-content:center;
  font-size:18px;color:var(--green-soft);
}
.insight-card h3{
  font-family:var(--font-display);
  font-size:1.25rem;font-weight:500;
  margin-bottom:12px;
}
.insight-card p{
  font-size:14px;line-height:1.65;color:var(--on-surface-muted);
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

/* Story page */
.story-page{background:var(--page-taupe);}
.story-page .page-hero.light{background:transparent;}
.story-page-hero{
  padding-bottom:40px;
  background:transparent;
}
.story-page .story-block.light,
.story-page .story-block.muted{background:transparent;}
.story-hero-title{
  font-family:var(--font-display);
  font-size:clamp(1.35rem,2.8vw,2rem);
  font-weight:500;
  line-height:1.2;
  letter-spacing:-0.015em;
  white-space:nowrap;
  margin-bottom:24px;
}
@media(max-width:720px){
  .story-hero-title{
    font-size:clamp(1.05rem,4.5vw,1.35rem);
  }
}
.story-lead{max-width:640px;margin-bottom:8px;}
.story-block .body-md{max-width:640px;}

/* Compact editorial origin layout */
.origins-layout{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:20px;
  align-items:start;
}
.origins-copy{max-width:680px;min-width:0;}
.origins-quote{
  margin-top:28px;
  font-size:clamp(1rem,1.45vw,1.2rem);
  line-height:1.5;
  opacity:0.92;
}
@media(min-width:900px){
  .origins-layout{
    grid-template-columns:minmax(0,1.15fr) minmax(380px,0.85fr);
    gap:clamp(48px,6vw,84px);
    align-items:center;
  }
}

/* Proof stats */
.proof-stats{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;
  margin-top:28px;
}
.proof-stat{
  display:flex;flex-direction:column;justify-content:flex-start;gap:10px;
  text-align:left;
  min-width:0;
  min-height:0;
  padding:16px 14px;
  border:1px solid rgba(46,51,32,0.14);
  border-radius:var(--radius-md);
  background:rgba(252,249,245,0.22);
}
.proof-stat .num{
  font-family:var(--font-ui);
  font-size:clamp(28px,4vw,40px);
  font-weight:700;
  letter-spacing:-0.04em;
  color:var(--on-surface);
  line-height:1;
}
.proof-stat .lbl{
  font-size:10px;
  color:var(--on-surface-muted);
  font-weight:700;
  letter-spacing:0.06em;
  text-transform:uppercase;
  line-height:1.35;
  max-width:none;
}

/* Story timeline (mobile tabs) */
.story-nav{
  display:flex;gap:8px;overflow-x:auto;
  padding:16px 0;margin-bottom:32px;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
}
.story-nav::-webkit-scrollbar{display:none;}
.story-nav button{
  flex-shrink:0;
  padding:10px 18px;
  border-radius:var(--radius-pill);
  font-size:11px;font-weight:700;
  letter-spacing:0.08em;text-transform:uppercase;
  color:var(--on-surface-muted);
  border:1px solid var(--outline);
  transition:all 0.25s;
}
.story-nav button.active{
  background:var(--green);
  color:var(--on-green);
  border-color:var(--green);
}
.story-panel{display:block;}

.founders-row{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin:0;
  width:92px;
  flex-shrink:0;
}
.founder-photo{
  margin:0;
  overflow:visible;
  text-align:center;
}
.founder-photo img{
  width:100%;
  height:auto;
  aspect-ratio:4/5;
  display:block;
  border-radius:var(--radius-sm);
  object-fit:cover;
  box-shadow:0 10px 24px rgba(0,0,0,0.16);
}
.founder-photo:first-child img{object-position:center 28%;}
.founder-photo:last-child img{object-position:center 42%;}
.founder-photo figcaption{
  margin-top:6px;
  font-size:8px;
  font-weight:700;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:rgba(252,249,245,0.55);
  line-height:1.2;
}
@media(min-width:900px){
  .founders-row{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:16px;
    width:auto;
    max-width:none;
  }
  .founder-photo img{
    height:100%;
    border-radius:var(--radius-md);
    box-shadow:0 18px 44px rgba(0,0,0,0.18);
  }
  .founder-photo figcaption{
    margin-top:12px;
    font-size:10px;
    letter-spacing:0.1em;
  }
}

/* ── EDGE ── */
.edge-page-hero{padding-bottom:32px;}
.edge-hero-title{
  font-family:var(--font-display);
  font-size:clamp(1.35rem,2.8vw,2rem);
  font-weight:500;
  line-height:1.2;
  letter-spacing:-0.015em;
  white-space:nowrap;
  margin-bottom:36px;
}
.edge-hero-title em{font-style:italic;font-weight:500;}
@media(max-width:720px){
  .edge-hero-title{font-size:clamp(1rem,4.2vw,1.3rem);}
}
.edge-page-hero .intro{margin-bottom:0;}

.edge-services-wrap{
  background:var(--surface);
  padding:0 24px 64px;
}
.edge-services{
  background:var(--green);
  border-radius:var(--radius-xl);
  padding:72px 0 80px;
  max-width:var(--max);
  margin:0 auto;
}
.edge-services-inner{padding-top:0;padding-bottom:0;}
.edge-service{
  display:grid;
  gap:32px;
  padding:48px 0;
  border:none;
  align-items:start;
  text-align:left;
}
.edge-service + .edge-service{
  border-top:1px solid rgba(250,242,237,0.1);
}
.edge-service:first-child{padding-top:0;}
.edge-service:last-child{padding-bottom:0;}
@media(min-width:900px){
  .edge-service{
    grid-template-columns:1.05fr 0.95fr;
    gap:48px;
    align-items:center;
  }
}
@media(max-width:860px){
  .edge-services-wrap{padding:0 16px 48px;}
  .edge-services{padding:56px 0 64px;}
}
.edge-num{
  display:block;
  font-size:11px;font-weight:700;
  letter-spacing:0.2em;
  color:var(--on-green);
  opacity:0.45;
  margin-bottom:14px;
}
.edge-service h3{
  font-family:var(--font-display);
  font-size:clamp(16px,1.8vw,22px);
  font-weight:500;
  color:var(--on-green);
  margin-bottom:16px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.edge-service p{
  font-size:14px;line-height:1.88;
  color:var(--on-green);opacity:0.65;
  max-width:560px;
}
.edge-service p + p{margin-top:20px;}
.edge-service ul{margin-top:20px;list-style:none;}
.edge-service li{
  font-size:14px;color:var(--on-green);opacity:0.65;
  padding:5px 0 5px 18px;position:relative;
}
.edge-service li::before{
  content:'—';position:absolute;left:0;opacity:0.35;
}
.edge-photo{
  border-radius:var(--radius-lg);
  overflow:hidden;
  aspect-ratio:4/5;
  background:#d9d4cc;
  line-height:0;
}
.edge-photo img{
  width:100%;height:100%;
  object-fit:cover;
  object-position:center;
  transform:scale(1.08);
  display:block;
}

.edge-testimonial{
  padding:80px 20px;
  text-align:center;
}
.edge-testimonial .quote{
  max-width:680px;
  margin:0 auto 24px;
  font-weight:500;
  font-style:italic;
  font-family:var(--font-display);
  font-size:clamp(1.15rem,2vw,1.4rem);
  line-height:1.55;
}
.edge-testimonial cite{
  display:block;
  max-width:480px;
  margin:0 auto;
}

.edge-cta-band{
  padding:64px 52px 48px;
}
.edge-cta-band h2{margin-bottom:24px;}
.edge-cta-band .btn{margin-top:0;}

.testimonial{
  background:var(--surface);
  padding:100px 20px;
  text-align:center;
}
.testimonial-marks{
  font-family:var(--font-display);
  font-size:5rem;line-height:0.5;
  color:rgba(46,51,32,0.12);
  margin-bottom:24px;
}
.testimonial .quote{max-width:780px;margin:0 auto 28px;}
.testimonial cite{
  font-size:11px;font-weight:700;
  letter-spacing:0.12em;text-transform:uppercase;
  color:var(--on-surface-muted);
  font-style:normal;
}

/* ── OFFERINGS ── */
.offer-hero{padding-bottom:48px;}
.offer-hero h1{
  white-space:nowrap;
  margin-bottom:32px;
}
.offer-list{padding:20px 0 80px;}
.offer-row{
  display:flex;flex-wrap:wrap;align-items:baseline;justify-content:space-between;gap:12px;
  padding:22px 0;
  border-bottom:1px solid var(--outline);
  transition:padding-left 0.25s var(--ease);
}
.offer-row:first-child{border-top:1px solid var(--outline);}
.offer-row:hover{padding-left:12px;}
.offer-row .name{
  font-size:clamp(1rem,2vw,1.35rem);
  font-weight:700;letter-spacing:0.06em;text-transform:uppercase;
}
.offer-row .tag{font-size:13px;color:var(--on-surface-muted);}

.systems-wrap{
  background:transparent;
  color:#2E3320;
  padding:0 0 80px;
}
.offerings-page{background:var(--page-taupe);}
.offerings-page .page-hero.light{background:transparent;}
.offerings-page-hero{
  background:transparent;
  padding-bottom:32px;
}
.offerings-hero-title{
  font-family:var(--font-display);
  font-size:clamp(1.35rem,2.8vw,2rem);
  font-weight:500;
  line-height:1.2;
  letter-spacing:-0.015em;
  white-space:nowrap;
  margin-bottom:36px;
}
@media(max-width:720px){
  .offerings-hero-title{font-size:clamp(0.95rem,4.2vw,1.25rem);}
}
.offerings-page-hero .intro{margin-bottom:0;}
.sys-panel h3{
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.offerings-cta-band{
  padding:64px 52px 48px;
}
.offerings-cta-band h2{margin-bottom:24px;}
.offerings-cta-band .btn{margin-top:0;}
.systems-card{
  background:var(--surface);
  border:1px solid var(--outline);
  border-radius:var(--radius-xl);
  padding:40px 36px 48px;
  box-shadow:var(--shadow-soft);
}
.systems-eyebrow{
  font-size:11px;font-weight:700;
  letter-spacing:0.14em;text-transform:uppercase;
  color:rgba(46,51,32,0.45);
  margin-bottom:28px;
}
.systems-wrap .label-light{color:#2E3320;opacity:0.55;}
.systems-tabs{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:0;
  border-bottom:1px solid rgba(46,51,32,0.1);
  margin-bottom:0;
  scrollbar-width:none;
}
@media(max-width:768px){
  .systems-tabs{
    display:flex;
    overflow-x:auto;
    grid-template-columns:none;
  }
}
.systems-tabs::-webkit-scrollbar{display:none;}
.systems-panels{
  padding-top:40px;
  min-height:300px;
}
.sys-tab{
  display:flex;align-items:center;justify-content:center;gap:10px;
  padding:18px 12px;
  font-size:10px;font-weight:700;
  letter-spacing:0.12em;text-transform:uppercase;
  color:rgba(46,51,32,0.38);
  border-bottom:2px solid transparent;
  margin-bottom:-1px;
  white-space:nowrap;
  transition:color 0.2s,border-color 0.2s;
}
.sys-tab:hover{color:rgba(46,51,32,0.7);}
.sys-tab.active{color:#2E3320;border-bottom-color:#2E3320;}
.sys-num{
  width:24px;height:24px;border-radius:50%;
  border:1.5px solid rgba(46,51,32,0.2);
  display:flex;align-items:center;justify-content:center;
  font-size:10px;flex-shrink:0;
}
.sys-tab.active .sys-num{background:#2E3320;color:#FAF2ED;border-color:#2E3320;}
.sys-panel{display:none;}
.sys-panel.active{
  display:grid;
  gap:40px;
  align-items:start;
  animation:sys-fade 0.35s var(--ease);
}
@keyframes sys-fade{
  from{opacity:0;transform:translateY(8px);}
  to{opacity:1;transform:translateY(0);}
}
@media(min-width:768px){
  .sys-panel.active{grid-template-columns:1.15fr 0.85fr;gap:48px;}
}
.sys-panel-num{
  display:block;
  font-size:10px;font-weight:700;
  letter-spacing:0.16em;text-transform:uppercase;
  color:rgba(46,51,32,0.4);
  margin-bottom:12px;
}
.sys-panel h3{
  font-family:var(--font-display);
  font-size:clamp(1.5rem,2.5vw,2rem);
  font-weight:500;margin-bottom:16px;
  color:#2E3320;
}
.sys-panel-lead{
  font-size:16px;line-height:1.7;
  color:#2E3320;font-weight:600;
  margin-bottom:12px;
}
.sys-panel-body{
  font-size:15px;line-height:1.75;
  color:#2E3320;opacity:0.65;
  max-width:520px;
}
.sys-panel-body + .sys-panel-body{margin-top:16px;}
.sys-panel-capabilities{
  background:var(--surface-dim);
  border:1px solid var(--outline);
  border-radius:var(--radius-lg);
  padding:28px 24px;
}
.sys-cap-label{
  font-size:10px;font-weight:700;
  letter-spacing:0.14em;text-transform:uppercase;
  color:rgba(46,51,32,0.45);
  margin-bottom:16px;
}
.sys-tags{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}
.sys-tag{
  display:flex;align-items:center;justify-content:center;
  padding:12px 14px;
  border-radius:var(--radius-pill);
  border:1px solid rgba(46,51,32,0.18);
  font-size:9px;font-weight:700;
  letter-spacing:0.08em;text-transform:uppercase;
  color:#2E3320;
  text-align:center;
  line-height:1.35;
  min-height:44px;
  background:var(--surface);
  transition:border-color 0.2s,background 0.2s;
}
.sys-tag:hover{
  border-color:rgba(46,51,32,0.35);
  background:#fff;
}
@media(max-width:480px){
  .sys-tags{grid-template-columns:1fr;}
  .systems-card{padding:28px 20px 36px;}
}

/* Role tracks */
.roles-section{
  background:var(--surface-dim);
  padding:100px 0;
}
.roles-section h2{margin-bottom:12px;}
.roles-section .sub{margin-bottom:48px;max-width:640px;}
.distinguish-grid{
  display:grid;gap:20px;margin-bottom:48px;
}
@media(min-width:768px){
  .distinguish-grid{grid-template-columns:repeat(3,1fr);}
}
.distinguish-card{
  background:var(--surface);
  border:1px solid var(--outline);
  border-radius:var(--radius-lg);
  padding:28px;
}
.distinguish-card h4{
  font-family:var(--font-display);
  font-size:1.15rem;font-weight:500;
  margin-bottom:10px;
}
.distinguish-card p{font-size:14px;color:var(--on-surface-muted);line-height:1.65;}
.role-grid{
  display:grid;gap:20px;
}
@media(min-width:768px){
  .role-grid{grid-template-columns:repeat(2,1fr);}
}
.role-card{
  background:var(--surface);
  border:1px solid var(--outline);
  border-radius:var(--radius-lg);
  padding:28px;
  transition:box-shadow 0.3s;
}
.role-card:hover{box-shadow:var(--shadow-soft);}
.role-name{
  font-family:var(--font-display);
  font-size:1.25rem;font-weight:500;
  margin-bottom:8px;
}
.role-focus{font-size:12px;font-weight:700;letter-spacing:0.08em;text-transform:uppercase;color:var(--on-surface-muted);margin-bottom:12px;}
.role-goal{
  display:inline-block;
  padding:8px 14px;
  border-radius:var(--radius-pill);
  background:var(--surface-dim);
  font-size:12px;font-weight:600;
  margin-bottom:16px;
}
.role-items li{
  font-size:14px;color:var(--on-surface-muted);
  padding:6px 0 6px 18px;position:relative;
}
.role-items li::before{
  content:'';position:absolute;left:0;top:13px;
  width:6px;height:6px;border-radius:50%;background:var(--green-soft);
}

/* Pricing */
.pricing-section{padding:100px 0;background:var(--surface);}
.pricing-header{margin-bottom:48px;}
.pricing-header h2{margin-bottom:8px;}
.pricing-grid{
  display:grid;gap:24px;
}
@media(min-width:900px){
  .pricing-grid{grid-template-columns:repeat(3,1fr);}
}
.pricing-card{
  background:var(--surface);
  border:1px solid var(--outline);
  border-radius:var(--radius-lg);
  padding:36px 28px;
  display:flex;flex-direction:column;
  transition:transform 0.3s,box-shadow 0.3s;
}
.pricing-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-soft);}
.pricing-card.featured{
  background:var(--green);
  color:var(--on-green);
  border-color:transparent;
  transform:scale(1.02);
}
.pricing-card.featured:hover{transform:scale(1.02) translateY(-4px);}
.pricing-badge{
  display:inline-block;
  padding:6px 12px;
  border-radius:var(--radius-pill);
  background:rgba(252,249,245,0.15);
  font-size:10px;font-weight:700;
  letter-spacing:0.1em;
  margin-bottom:16px;
  width:fit-content;
}
.pricing-name{
  font-family:var(--font-display);
  font-size:1.5rem;font-weight:500;
  margin-bottom:4px;
}
.pricing-sub{font-size:13px;opacity:0.65;margin-bottom:16px;}
.pricing-price{
  font-family:var(--font-display);
  font-size:2.25rem;font-weight:500;
  margin-bottom:4px;
}
.pricing-price span{font-size:14px;font-family:var(--font-ui);opacity:0.55;}
.pricing-note{font-size:13px;opacity:0.55;margin-bottom:20px;}
.pricing-divider{height:1px;background:var(--outline);margin:20px 0;}
.pricing-card.featured .pricing-divider{background:rgba(252,249,245,0.15);}
.pricing-label{
  font-size:10px;font-weight:700;
  letter-spacing:0.12em;text-transform:uppercase;
  opacity:0.55;margin-bottom:12px;
}
.pricing-items li{
  font-size:14px;padding:6px 0;
  opacity:0.8;
}
.pricing-roles{display:flex;flex-wrap:wrap;gap:6px;margin-bottom:4px;}
.role-pill{
  padding:6px 12px;
  border-radius:var(--radius-pill);
  border:1px solid var(--outline);
  font-size:10px;font-weight:700;
  letter-spacing:0.06em;
}
.pricing-card.featured .role-pill{border-color:rgba(252,249,245,0.2);}
.checkpoints{display:flex;gap:8px;margin:12px 0;}
.checkpoint-num{
  width:32px;height:32px;border-radius:50%;
  border:1.5px solid var(--outline);
  display:flex;align-items:center;justify-content:center;
  font-size:12px;font-weight:700;
}
.pricing-card.featured .checkpoint-num{border-color:rgba(252,249,245,0.25);}
.pricing-note-box{
  margin-top:auto;padding-top:20px;
  font-size:13px;opacity:0.65;line-height:1.55;
  border-top:1px solid var(--outline);
}
.pricing-card.featured .pricing-note-box{border-color:rgba(252,249,245,0.12);}
.pricing-footer{
  margin-top:40px;padding:24px;
  background:var(--surface-dim);
  border-radius:var(--radius-lg);
  font-size:14px;color:var(--on-surface-muted);
  text-align:center;
}

/* ── CLIENTS ── */
.clients-section{padding:60px 0 100px;}
.clients-intro{
  display:grid;gap:32px;margin-bottom:48px;
  grid-template-columns:1fr;
}
.clients-label{
  display:none;
}
.clients-intro .body-md{text-align:left;}
.cl-bubbles{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:48px;}
.cl-bubble{border:1px solid rgba(46,51,32,0.12);border-radius:4px;padding:48px 32px;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:10px;min-height:180px;}
.cl-bubble-label{font-size:8px;font-weight:700;letter-spacing:0.22em;text-transform:uppercase;color:#2E3320;opacity:0.3;}
.cl-bubble-soon{font-size:14px;color:#2E3320;opacity:0.45;font-style:italic;font-family:Georgia,serif;}
@media(max-width:860px){.cl-bubbles{grid-template-columns:1fr;}}
.clients-placeholder{
  border:1px dashed var(--outline-strong);
  border-radius:var(--radius-lg);
  padding:64px 32px;
  text-align:center;
  color:var(--on-surface-muted);
  font-size:14px;font-weight:600;
  letter-spacing:0.08em;text-transform:uppercase;
}

/* ── CTA BAND ── */
.cta-band{
  background:var(--green);
  color:var(--on-green);
  padding:90px 52px 80px;
  text-align:center;
}
.cta-band h2{
  font-family:var(--font-display);
  font-size:clamp(1.75rem,4vw,2.75rem);
  font-weight:500;
  margin-bottom:32px;
  max-width:640px;margin-inline:auto;
}
.cta-band h2 em{font-style:italic;font-family:var(--font-display);font-weight:500;}
.cta-band .btn{margin-top:8px;}
.story-cta-band{
  position:relative;
  isolation:isolate;
  overflow:hidden;
  min-height:360px;
  padding:96px 52px 84px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  background:var(--green);
}
@media(min-width:768px){
  .story-cta-band{
    min-height:100vh;
    min-height:100svh;
    padding:0 52px;
    box-sizing:border-box;
  }
}
.story-cta-band::before{
  content:'';
  position:absolute;
  inset:22px;
  z-index:-1;
  border:1px solid rgba(252,249,245,0.13);
  border-radius:var(--radius-lg);
}
.story-cta-band h2{margin-bottom:24px;}
.story-cta-band .btn{margin-top:0;}

body[data-page="our-story"] .site-footer,
body[data-page="our-offerings"] .site-footer{
  background:var(--surface);
}

/* ── CONTACT ── */
.contact-body{
  background:var(--surface);
  padding:calc(var(--header-h) + 48px) 0 96px;
}
.contact-panel{
  max-width:var(--max);
  margin:0 auto;
  display:grid;
  gap:36px;
  align-items:center;
  text-align:left;
}
.contact-content{
  min-width:0;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
  text-align:left;
}
.contact-content .page-label{margin-bottom:16px;}
.contact-content .headline-lg{
  margin-bottom:16px;
  max-width:18ch;
}
.contact-content .intro{
  margin-bottom:28px;
  max-width:42ch;
  font-size:15px;
  line-height:1.65;
  color:var(--on-surface-muted);
}
.contact-cards{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:8px;
  width:100%;
  max-width:520px;
  margin-bottom:24px;
}
@media(min-width:900px){
  .contact-panel{
    grid-template-columns:minmax(0,1.05fr) minmax(320px,0.95fr);
    gap:clamp(32px,4vw,56px);
  }
}
.contact-card{
  background:var(--surface-dim);
  border:1px solid var(--outline);
  border-radius:var(--radius);
  padding:12px 10px;
  min-height:0;
  text-align:left;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.contact-card .contact-socials{margin-top:2px;}
.contact-cta-wrap{display:flex;justify-content:flex-start;}
.contact-visual{
  position:relative;
  min-height:320px;
  height:100%;
  margin:0;
  overflow:hidden;
  border-radius:var(--radius-lg);
  background:var(--green);
  box-shadow:0 22px 56px rgba(25,30,13,0.14);
}
.contact-visual img{
  width:100%;
  height:100%;
  min-height:320px;
  max-height:560px;
  object-fit:cover;
  object-position:center 30%;
  display:block;
}
.contact-meta{display:flex;flex-wrap:wrap;gap:32px;margin-bottom:40px;}
.ci-label{
  font-size:9px;font-weight:700;
  letter-spacing:0.1em;text-transform:uppercase;
  color:#2E3320;
  opacity:0.55;
  margin-bottom:4px;
}
.ci-val{font-size:11px;font-weight:600;color:#2E3320;overflow-wrap:anywhere;line-height:1.35;}
.contact-socials{display:flex;gap:8px;}
.contact-socials a{
  width:28px;height:28px;
  border-radius:50%;
  border:1px solid rgba(46,51,32,0.2);
  display:flex;align-items:center;justify-content:center;
  color:#2E3320;
  transition:background 0.2s,border-color 0.2s;
}
.contact-socials a:hover{background:var(--surface-dim);border-color:var(--outline-strong);}
.contact-socials svg{width:13px;height:13px;}

.cf-group{margin-bottom:20px;}
.cf-row{display:grid;gap:16px;}
@media(min-width:500px){.cf-row{grid-template-columns:1fr 1fr;}}
.cf-label{
  display:block;
  font-size:10px;font-weight:700;
  letter-spacing:0.12em;text-transform:uppercase;
  color:var(--on-surface-muted);
  margin-bottom:8px;
}
.cf-input,.cf-select,.cf-textarea{
  width:100%;
  padding:12px 0;
  border:none;
  border-bottom:2px solid var(--green-dark);
  background:transparent;
  font-family:var(--font-ui);
  font-size:15px;
  color:var(--on-surface);
  outline:none;
  transition:border-color 0.2s;
}
.cf-input:focus,.cf-select:focus,.cf-textarea:focus{border-color:var(--green-soft);}
.cf-textarea{min-height:100px;resize:vertical;}
.cf-submit{margin-top:12px;width:100%;}
.cf-success{
  display:none;
  padding:32px;
  background:var(--surface-dim);
  border-radius:var(--radius-lg);
  font-size:15px;line-height:1.65;
}

/* ── FOOTER ── */
.site-footer{
  background:var(--surface-dim);
  padding:64px 0 32px;
  border-top:1px solid var(--outline);
}
.site-footer--home{
  position:relative;
  z-index:2;
}
.footer-grid{
  display:grid;gap:40px;
  margin-bottom:48px;
}
@media(min-width:768px){
  .footer-grid{grid-template-columns:1.2fr 1fr;align-items:start;}
}
.footer-brand .footer-logo{display:inline-block;margin-bottom:16px;line-height:0;}
.footer-brand .footer-logo img{
  display:block;
  height:56px;width:auto;
  border:none;background:transparent;
  filter:brightness(0);
}
.footer-tagline{font-size:14px;color:var(--on-surface-muted);max-width:360px;margin-bottom:24px;line-height:1.65;}
.footer-nav{
  display:flex;flex-wrap:wrap;gap:8px 20px;
}
.footer-nav a{
  font-size:11px;font-weight:700;
  letter-spacing:0.08em;text-transform:uppercase;
  color:var(--on-surface-muted);
  transition:color 0.2s;
}
.footer-nav a:hover{color:var(--green-dark);}
.footer-bottom{
  display:flex;flex-wrap:wrap;justify-content:space-between;gap:16px;
  padding-top:24px;
  border-top:1px solid var(--outline);
  font-size:11px;font-weight:600;
  letter-spacing:0.08em;text-transform:uppercase;
  color:var(--on-surface-muted);
}
.footer-socials{display:flex;gap:10px;}
.footer-socials a{
  width:36px;height:36px;border-radius:50%;
  border:1px solid var(--outline);
  display:flex;align-items:center;justify-content:center;
  transition:background 0.2s;
}
.footer-socials a:hover{background:var(--surface);}
.footer-socials svg{width:16px;height:16px;}

/* ══════════════════════════════════════════
   SPEC V2 — Global nav, scroll track, pages
   ══════════════════════════════════════════ */
:root{
  --orange:#FAF2ED;
  --font-marquee:'EB Garamond',Georgia,serif;
  --font-condensed:'Archivo Narrow','Arial Narrow',Arial,sans-serif;
  --header-spec-h:72px;
}

/* Global fixed green nav */
.site-header--global{
  padding:0;
  pointer-events:none;
}
.site-header--global.is-hidden{
  opacity:1;visibility:visible;transform:none;pointer-events:none;
}
.site-header--global .header-inner{
  pointer-events:auto;
  max-width:none;
  margin:16px 24px 0;
  padding:10px 20px 10px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  background:#2E3320;
  border:1.5px solid rgba(250,242,237,0.45);
  border-radius:3px;
  box-shadow:0 8px 32px rgba(0,0,0,0.25);
}
.site-header--global .logo{
  margin:0;grid-column:auto;justify-self:auto;
}
.site-header--global .logo img{
  height:44px;filter:none;
}
.site-header--global .nav-cluster{
  display:flex;grid-column:auto;justify-self:auto;
  margin-left:auto;gap:4px;
}
.site-header--global .nav-desktop a{
  font-family:var(--font-condensed);
  font-size:11px;font-weight:700;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:#FAF2ED;
  padding:8px 14px;
  border-radius:3px;
  transition:background 0.2s,opacity 0.2s;
}
.site-header--global .nav-desktop a:hover{
  background:rgba(250,242,237,0.1);
  opacity:1;
}
.site-header--global .nav-desktop a.active{
  background:rgba(250,242,237,0.14);
}
.site-header--global .nav-desktop a.active::after{display:none;}
.site-header--global .nav-cta--invert{
  background:#FAF2ED !important;
  color:#2E3320 !important;
  border:1.5px solid rgba(250,242,237,0.6) !important;
  border-radius:3px;
  font-family:var(--font-condensed);
  font-weight:700;
  letter-spacing:0.14em;
  text-transform:uppercase;
  padding:10px 18px;
}
.site-header--global .nav-cta--invert:hover{
  background:#fff !important;
}
.site-header--global .hamburger span{background:#FAF2ED;}
.site-header--global .hamburger{pointer-events:auto;}

@media(min-width:900px){
  .site-header--global .hamburger{display:none;}
  .site-header--global .nav-cluster{display:flex;}
}
@media(max-width:899px){
  .site-header--global .nav-cluster{display:none;}
}

/* Scroll progress ring — right sidebar */
.scroll-track{
  position:fixed;
  right:20px;
  top:50%;
  transform:translateY(-50%);
  z-index:999;
}
.scroll-track-btn{
  position:relative;
  width:44px;height:44px;
  border:none;background:transparent;
  cursor:pointer;padding:0;
  display:flex;align-items:center;justify-content:center;
}
.scroll-track-svg{width:44px;height:44px;transform:rotate(-90deg);}
.scroll-track-bg{
  fill:none;
  stroke:rgba(250,242,237,0.2);
  stroke-width:2;
}
.scroll-track-fill{
  fill:none;
  stroke:#FAF2ED;
  stroke-width:2;
  stroke-linecap:round;
  stroke-dasharray:113;
  stroke-dashoffset:113;
  transition:stroke-dashoffset 0.15s linear;
}
.page-dark .scroll-track-bg{stroke:rgba(250,242,237,0.25);}
.scroll-track-arrow{
  position:absolute;
  font-size:14px;
  color:#FAF2ED;
  line-height:1;
  font-weight:700;
}

/* Shared page marquee */
.page-marquee{
  overflow:hidden;
  margin-bottom:20px;
  opacity:0.9;
}
.page-marquee .marquee-track{
  animation:marquee-scroll 40s linear infinite;
}
.page-marquee .marquee-item{
  font-family:var(--font-marquee);
  font-size:clamp(0.7rem,1.2vw,0.85rem);
  font-weight:500;
  letter-spacing:0.14em;
  text-transform:uppercase;
  gap:12px;padding-right:12px;
}
.page-dark .page-marquee .marquee-item{color:#FAF2ED;}
.page-marquee .marquee-dot{width:3px;height:3px;border-radius:50%;opacity:0.4;}

/* CTA spec button */
.btn-cta-spec{
  display:inline-flex;align-items:center;justify-content:center;
  padding:14px 28px;
  border-radius:3px;
  font-family:var(--font-condensed);
  font-size:11px;font-weight:700;
  letter-spacing:0.14em;
  text-transform:uppercase;
  background:#2E3320;
  color:#FAF2ED;
  border:1.5px solid rgba(250,242,237,0.35);
  transition:background 0.25s,transform 0.25s;
}
.btn-cta-spec:hover{
  background:#1a1f10;
  transform:translateY(-1px);
}

/* Footer spec layout */
.site-footer--spec{
  background:#FAF2ED;
  border-top:none;
  padding:64px 0 32px;
}
.footer-spec-grid{
  display:grid;gap:40px;
  margin-bottom:40px;
}
@media(min-width:768px){
  .footer-spec-grid{grid-template-columns:1fr auto;align-items:start;}
}
.footer-spec-copy{
  font-family:var(--font-condensed);
  font-size:14px;
  color:#2E3320;
  max-width:400px;
  line-height:1.65;
  margin-bottom:24px;
}
.footer-spec-explore{
  display:flex;flex-direction:column;gap:8px;
  text-align:right;
}
.footer-explore-label{
  font-family:var(--font-condensed);
  font-size:11px;font-weight:700;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:#2E3320;
  margin-bottom:8px;
}
.footer-spec-explore a{
  font-family:var(--font-condensed);
  font-size:11px;font-weight:700;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:#2E3320;
  opacity:0.55;
  transition:opacity 0.2s;
}
.footer-spec-explore a:hover{opacity:1;}
.footer-spec-bottom{
  padding-top:24px;
  border-top:1px solid rgba(46,51,32,0.12);
  font-size:11px;
  color:rgba(46,51,32,0.45);
  letter-spacing:0.08em;
  text-transform:uppercase;
}
.site-footer--spec .footer-socials a{
  border-color:rgba(46,51,32,0.2);
  color:#2E3320;
}

/* ── OUR OFFERINGS PAGE ── */
.page-dark{
  background:#2E3320;
  color:#FAF2ED;
}
.off-page{
  padding-top:var(--header-spec-h);
}
.off-hero{
  padding:80px 0 60px;
  background:#2E3320;
}
.off-hero-title{
  font-family:var(--font-condensed);
  font-size:clamp(2rem,5vw,3.5rem);
  font-weight:700;
  line-height:1.1;
  letter-spacing:0.02em;
  text-transform:uppercase;
  color:#FAF2ED;
  max-width:720px;
}
.off-intro{
  padding:40px 0 80px;
  background:#2E3320;
}
.off-intro-text{
  font-family:var(--font-condensed);
  font-size:clamp(1rem,2vw,1.25rem);
  font-weight:700;
  line-height:1.75;
  color:#FAF2ED;
  max-width:720px;
  text-align:left;
  opacity:0.85;
}
.off-systems{
  padding:60px 0 100px;
  background:#2E3320;
  border-top:1px solid rgba(250,242,237,0.08);
}
.off-systems-layout{
  display:grid;
  gap:48px;
  align-items:start;
}
@media(min-width:900px){
  .off-systems-layout{grid-template-columns:1fr auto;gap:64px;}
}
.off-systems-label{
  font-family:var(--font-marquee);
  font-size:clamp(1.25rem,2.5vw,1.75rem);
  font-weight:500;
  color:#FAF2ED;
  margin-bottom:40px;
  letter-spacing:0.06em;
}
.off-systems-main .sys-panel{
  display:none;
  text-align:left;
}
.off-systems-main .sys-panel.active{display:block;}
.off-systems-main .sys-panel h3{
  font-family:var(--font-condensed);
  font-size:clamp(1.25rem,2.5vw,1.75rem);
  font-weight:700;
  color:#FAF2ED;
  margin-bottom:16px;
  text-transform:uppercase;
  letter-spacing:0.04em;
}
.off-systems-main .sys-panel p{
  font-family:var(--font-condensed);
  font-size:15px;
  line-height:1.8;
  color:#FAF2ED;
  opacity:0.72;
  max-width:640px;
  margin-bottom:20px;
}
.sys-list{
  list-style:none;
  margin-top:8px;
}
.sys-list li{
  font-family:var(--font-condensed);
  font-size:12px;
  font-weight:700;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color:#FAF2ED;
  opacity:0.55;
  padding:6px 0;
  border-bottom:1px solid rgba(250,242,237,0.08);
}

/* Vertical timeline — right side */
.page-timeline{
  display:flex;
  flex-direction:column;
  gap:0;
  align-items:flex-end;
  position:sticky;
  top:calc(var(--header-spec-h) + 40px);
}
.page-timeline::before{
  content:'';
  position:absolute;
  right:11px;
  top:0;bottom:0;
  width:1px;
  background:rgba(250,242,237,0.15);
}
.page-timeline button{
  position:relative;
  width:24px;height:48px;
  border:none;background:transparent;
  cursor:pointer;
  display:flex;align-items:center;justify-content:flex-end;
  padding:0;
}
.page-timeline button span{
  width:22px;height:22px;
  border-radius:50%;
  border:1.5px solid rgba(250,242,237,0.35);
  background:#2E3320;
  font-family:var(--font-condensed);
  font-size:9px;font-weight:700;
  color:#FAF2ED;
  display:flex;align-items:center;justify-content:center;
  transition:background 0.2s,border-color 0.2s,transform 0.2s;
  z-index:1;
}
.page-timeline button.active span,
.page-timeline button:hover span{
  background:#FAF2ED;
  color:#2E3320;
  border-color:#FAF2ED;
  transform:scale(1.1);
}

/* CTA with blurry photos */
.cta-float-section{
  position:relative;
  min-height:70vh;
  display:flex;align-items:center;justify-content:center;
  overflow:hidden;
  padding:100px 20px;
  text-align:center;
}
.cta-float-bg{
  position:absolute;inset:0;z-index:0;
}
.cta-float-bg-blur{
  position:absolute;inset:-20px;
  background-size:cover;background-position:center;
  filter:blur(14px) brightness(0.16);
  transform:scale(1.1);
}
.cta-float-inner{
  position:relative;z-index:2;
}
.cta-float-inner h2{
  font-family:var(--font-condensed);
  font-size:clamp(1.75rem,4vw,2.75rem);
  font-weight:700;
  color:#2E3320;
  margin-bottom:32px;
  line-height:1.15;
  text-transform:uppercase;
  letter-spacing:0.02em;
}
.cta-float-section .btn-cta-spec{
  background:#2E3320;
  color:#FAF2ED;
}

@media(max-width:899px){
  .scroll-track{right:12px;}
  .page-timeline{
    flex-direction:row;
    justify-content:center;
    position:static;
    margin-top:32px;
  }
  .page-timeline::before{display:none;}
  .off-systems-layout{grid-template-columns:1fr;}
}

/* ══════════════════════════════════════════
   MOBILE / IPHONE (desktop unchanged above 768px)
   ══════════════════════════════════════════ */
@media(max-width:767px){
  :root{
    --header-h:88px;
    --gutter:20px;
  }

  html{-webkit-text-size-adjust:100%;}

  .container{
    width:min(var(--max),100% - 32px);
  }

  .site-header{
    padding:max(10px,env(safe-area-inset-top)) 14px 10px;
  }
  .site-header.scrolled{padding:max(8px,env(safe-area-inset-top)) 12px 8px;}
  .header-inner{padding:8px 10px;}
  .site-header.hero-mode .header-inner{padding:8px 12px;}
  .logo{margin-left:0;}
  .logo img{height:56px;}
  .site-header:not(.hero-mode) .header-inner{
    max-width:calc(100% - 16px);
    padding:8px 12px 8px 16px;
  }
  .site-header:not(.hero-mode) .logo img{height:42px;}
  .site-header:not(.hero-mode) .logo{margin-left:12px;}

  .mobile-panel{
    padding-top:max(88px,calc(72px + env(safe-area-inset-top)));
    padding-bottom:max(32px,env(safe-area-inset-bottom));
  }

  .hero{
    padding:calc(var(--header-h) + 40px) 16px 56px;
  }
  .hero-content h1{
    font-size:clamp(1.45rem,6.8vw,2rem);
    margin-bottom:22px;
  }
  .hero-line{white-space:normal;}
  .hero-marquee,
  #home .hero-marquee{
    width:100% !important;
    max-width:100% !important;
    margin-inline:0;
  }
  .hero-line-group{margin-bottom:12px;}

  .offers-dial-section{padding:52px 0 20px;}
  .offers-dial-item{font-size:clamp(1rem,4.8vw,1.3rem);}

  .quote-band{
    min-height:auto;
    padding:72px 0 56px;
  }
  .quote-band-text{
    font-size:clamp(1.35rem,5.8vw,1.85rem);
  }

  .home-cta{
    min-height:auto;
    padding:calc(var(--header-h) + 28px) 12px 64px;
  }
  .home-cta-inner{padding-inline:16px;}
  .home-cta h2{font-size:clamp(1.35rem,5.5vw,1.85rem);}
  .home-cta-float{
    width:clamp(88px,26vw,130px) !important;
  }

  .page-hero{
    padding:calc(var(--header-h) + 36px) 0 44px;
  }
  .page-hero .intro{
    font-size:15px;
    line-height:1.65;
  }

  .story-hero-title,
  .edge-hero-title,
  .offerings-hero-title,
  .offer-hero h1{
    white-space:normal;
    overflow:visible;
    text-overflow:unset;
    font-size:clamp(1.2rem,5.4vw,1.6rem);
    line-height:1.25;
    margin-bottom:24px;
  }

  .story-block{padding:40px 0;}
  .story-block#s-origins{padding:28px 0 36px;}
  .story-block#s-origins h2{
    font-size:clamp(1.15rem,4.8vw,1.45rem);
    margin-bottom:12px;
  }
  .story-block#s-origins p{
    font-size:13px;
    line-height:1.55;
    margin-bottom:10px;
  }
  .story-pullquote{padding:56px 16px;}
  .story-nav{margin-bottom:16px;padding:8px 0;}
  .insight-grid{margin-top:28px;}
  .proof-stat{
    padding:12px 10px;
    gap:8px;
  }
  .proof-stat .num{font-size:clamp(22px,7vw,28px);}
  .proof-stat .lbl{font-size:8px;letter-spacing:0.04em;}
  .origins-layout{
    grid-template-columns:minmax(0,1fr) auto;
    gap:14px;
    align-items:start;
  }
  .founders-row{
    width:78px;
    gap:8px;
  }
  .founder-photo figcaption{
    font-size:7px;
    margin-top:4px;
  }
  .origins-quote{
    margin-top:14px;
    font-size:0.92rem;
    line-height:1.4;
  }

  .edge-services-wrap{padding:0 12px 40px;}
  .edge-services{padding:44px 0 52px;border-radius:var(--radius-lg);}
  .edge-service{
    grid-template-columns:1fr;
    padding:36px 0;
    gap:24px;
  }
  .edge-service h3{
    white-space:normal;
    overflow:visible;
    text-overflow:unset;
    font-size:clamp(1.05rem,4.8vw,1.35rem);
  }
  .edge-photo{aspect-ratio:5/4;}
  .edge-testimonial{padding:52px 16px;}

  .systems-wrap{padding-bottom:48px;}
  .systems-card{padding:22px 16px 28px;}
  .systems-panels{padding-top:28px;min-height:0;}
  .sys-panel.active{gap:28px;}
  .sys-panel h3{
    white-space:normal;
    overflow:visible;
    text-overflow:unset;
    font-size:clamp(1.2rem,5vw,1.45rem);
  }
  .sys-tags{grid-template-columns:1fr;}
  .sys-tag{font-size:10px;min-height:40px;}

  .cta-band,
  .story-cta-band,
  .edge-cta-band,
  .offerings-cta-band{
    padding:48px 20px 36px;
  }
  .cta-band h2{
    font-size:clamp(1.3rem,5.5vw,1.85rem);
    margin-bottom:20px;
  }

  .clients-section{padding:44px 0 56px;}
  .cl-bubbles{gap:16px;}

  .contact-body{padding:calc(var(--header-h) + 28px) 0 56px;}
  .contact-content .headline-lg{max-width:none;font-size:clamp(1.6rem,6vw,2.2rem);}
  .contact-cards{
    max-width:100%;
    gap:6px;
  }
  .contact-card{padding:10px 8px;}
  .ci-val{font-size:10px;}
  .contact-visual,
  .contact-visual img{min-height:240px;max-height:320px;}

  .site-footer{
    padding:44px 0 max(28px,env(safe-area-inset-bottom));
  }
  .footer-grid{gap:28px;margin-bottom:36px;}
  .footer-nav{gap:6px 14px;}
}

@media(max-width:390px){
  .hero-content h1{font-size:1.3rem;}
  .btn{padding:12px 20px;font-size:10px;}
  .btn-hero-cta{padding:12px 20px;font-size:10px;letter-spacing:0.1em;}
  .story-hero-title,
  .edge-hero-title,
  .offerings-hero-title{font-size:1.1rem;}
}

@media(prefers-reduced-motion:reduce){
  html{scroll-behavior:auto;}
  *,*::before,*::after{
    animation-duration:0.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:0.01ms !important;
    scroll-behavior:auto !important;
  }
  .reveal{opacity:1;transform:none;}
}
