:root {
  
  --bg:        #F3EFE7;
  --bg-2:      #EBE6DB;
  --paper:     #FAF7F0;
  --ink:       #0E0E0C;
  --ink-2:     #2A2A26;
  --muted:     #6B675F;
  --line:      rgba(14,14,12,0.12);
  --line-2:    rgba(14,14,12,0.06);
  --forest:    #2A4A3A;
  --forest-2:  #4A7A60;
  --forest-3:  #C7D9B0;
  --sand:      #D9CDB2;
  --gold:      #A8843A;
  --gold-2:    #C9A055;
  --gold-3:    #ECD8A6;
  --accent:    #2A4A3A;   
  --accent-2:  #4A7A60;  

  
  --glow:        0 0 24px rgba(127,216,159,0.35), 0 0 56px rgba(127,216,159,0.15);
  --glow-strong: 0 0 40px rgba(127,216,159,0.55), 0 0 80px rgba(127,216,159,0.28);

  
  --f-sans: "Schibsted Grotesk", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, monospace;

  
  --fs-display: clamp(52px, 9vw, 160px);
  --fs-h1:      clamp(44px, 7vw, 120px);
  --fs-h2:      clamp(36px, 5.2vw, 88px);
  --fs-h3:      clamp(22px, 2.2vw, 34px);
  --fs-lede:    clamp(19px, 1.35vw, 22px);
  --fs-body:    17px;
  --fs-small:   13px;
  --fs-mono:    13px;

  --ease: cubic-bezier(.2,.7,.2,1);
  --max:  1640px;
  --pad:  clamp(20px, 3vw, 48px);

  
  --header-h: 96px;
  --cyclebar-h: 0px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth; overflow-x: clip;
  scrollbar-width: thin;
  scrollbar-color: var(--forest) transparent;
}
html::-webkit-scrollbar { width: 6px; }
html::-webkit-scrollbar-track { background: transparent; }
html::-webkit-scrollbar-thumb { background: var(--forest); border-radius: 3px; }
html::-webkit-scrollbar-thumb:hover { background: var(--forest-2); }

@view-transition { navigation: auto; }
::view-transition-group(*) {
  animation-duration: 0.32s;
  animation-timing-function: cubic-bezier(.2,.7,.2,1);
}
::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 0.32s;
}
.nav      { view-transition-name: nav; }
.foot     { view-transition-name: foot; }
.cyclebar { view-transition-name: cyclebar; }
@media (prefers-reduced-motion: reduce) {
  ::view-transition-group(*),
  ::view-transition-old(root),
  ::view-transition-new(root) { animation: none !important; }
}
body {
  font-family: var(--f-sans);
  font-size: var(--fs-body);
  line-height: 1.55;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
img, svg { display: block; max-width: 100%; }
img { -webkit-user-drag: none; user-select: none; }

.mono {
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 500;
}
.eyebrow { display: inline-flex; align-items: center; gap: 10px; }
.eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--forest); }

.h-display { font-weight: 800; font-size: var(--fs-display); line-height: 0.95; letter-spacing: -0.035em; }
.h1 { font-weight: 800; font-size: var(--fs-h1); line-height: 0.98; letter-spacing: -0.03em; }
.h2 { font-weight: 800; font-size: var(--fs-h2); line-height: 1; letter-spacing: -0.028em; }
.h3 { font-weight: 700; font-size: var(--fs-h3); line-height: 1.1; letter-spacing: -0.018em; }
.stress { color: var(--forest); }

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h-display, blockquote { text-wrap: balance; }
p, li, .lede, .mono, summary { text-wrap: pretty; }

.h1 em, .h2 em, .h3 em, .h-display em,
.phead__title em, .closing__title em, .sec__t em {
  color: var(--forest);
  font-style: normal;
}

.brand-mark {
  width: 30px; height: 30px; flex: 0 0 auto;
  background: var(--forest);
  display: inline-grid; place-items: center;
  border-radius: 6px;
  color: #fff;
}
.brand-mark svg { width: 22px; height: 22px; }
.brand-mark--lg { width: 40px; height: 40px; border-radius: 8px; }
.brand-mark--lg svg { width: 30px; height: 30px; }

.brand__mark {
  display: inline-block;
  width: 26px; height: 26px;
  flex: 0 0 auto;
  color: var(--forest);
  line-height: 0;
  transition: color .3s;
}
.brand__mark svg { width: 100%; height: 100%; display: block; }

.nav {
  position: fixed; top: var(--cyclebar-h, 0px); left: 0; right: 0; z-index: 100;
  padding: 12px var(--pad);
  background: color-mix(in oklab, var(--bg) 90%, transparent);
  transition: top .25s var(--ease), padding .3s var(--ease), border-color .3s;
}
.nav::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  pointer-events: none;
}
.nav__inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: auto 1fr auto; gap: 32px; align-items: center;
}
.nav__brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: -0.02em; line-height: 1; }
.nav__brand-word, .brand__word { font-size: 16px; letter-spacing: -0.012em; line-height: 1; }
.nav__links { display: flex; justify-content: center; gap: 28px; }
.nav__links a {
  font-size: 14px; font-weight: 500; color: var(--ink-2);
  position: relative; padding: 6px 0;
  transition: color .2s;
}
.nav__links a::after {
  content: ""; position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--forest);
  transform: scaleX(0); transform-origin: right center;
  transition: transform .35s var(--ease);
}
.nav__links a:hover::after,
.nav__links a[aria-current="page"]::after {
  transform: scaleX(1); transform-origin: left center;
}
.nav__links a[aria-current="page"] { color: var(--ink); }
.nav__links a:hover { color: var(--ink); }
.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px; border-radius: 999px;
  background: var(--ink); color: var(--bg);
  font-size: 14px; font-weight: 500;
  transition: transform .2s var(--ease), background .2s, color .2s;
  white-space: nowrap;
}
.nav__cta:hover { transform: translateY(-1px); background: var(--forest); color: #fff; }

.nav { border-bottom: 1px solid transparent; }
.nav--scrolled { border-bottom-color: var(--line-2); padding-top: 8px; padding-bottom: 8px; top: 0; }

.scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 200;
  height: 3px; width: 0;
  background: linear-gradient(90deg, var(--forest) 0%, #7FD89F 50%, var(--forest-2, #4A7A60) 100%);
  transition: none;
  pointer-events: none;
  box-shadow: 0 0 12px rgba(127,216,159,0.4);
}
.nav__cta-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #7FD89F; box-shadow: 0 0 0 3px rgba(127,216,159,0.22);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse { 50% { box-shadow: 0 0 0 7px rgba(127,216,159,0); } }

.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 15px 22px; border-radius: 999px;
  font-size: 15px; font-weight: 500;
  letter-spacing: -0.005em;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), box-shadow .35s var(--ease);
  white-space: nowrap;
  position: relative; overflow: hidden;
  will-change: transform;
}
.btn::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.22) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .6s var(--ease);
  pointer-events: none;
  mix-blend-mode: overlay;
}
.btn:hover::before {
  transform: translateX(-120%);
  animation: btn-shimmer 2.4s linear infinite;
}
@keyframes btn-shimmer {
  0%   { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}

@property --btn-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
.btn--primary { isolation: isolate; }
.btn--primary::after {
  content: ""; position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: conic-gradient(from var(--btn-angle),
    transparent 0deg,
    rgba(127,216,159,0.55) 80deg,
    rgba(199,217,176,0.95) 180deg,
    rgba(127,216,159,0.55) 280deg,
    transparent 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease);
  z-index: 0;
}
.btn--primary:hover::after {
  opacity: 1;
  animation: btn-orbit 4s linear infinite;
}
@keyframes btn-orbit {
  to { --btn-angle: 360deg; }
}
.btn-ripple {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.22);
  transform: scale(0); animation: btnRipple 0.55s ease-out forwards;
  pointer-events: none;
}
@keyframes btnRipple {
  to { transform: scale(1); opacity: 0; }
}
.btn--lg { padding: 18px 28px; font-size: 16px; }

.btn--primary {
  background: var(--ink); color: var(--bg);
  box-shadow: 0 2px 0 rgba(14,14,12,0.08), 0 10px 30px -12px rgba(14,14,12,0.35);
}
.btn--primary:hover {
  background: var(--forest); color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 2px 0 rgba(42,74,58,0.15), 0 18px 40px -14px rgba(42,74,58,0.55), 0 0 0 3px rgba(127,216,159,0.12);
}

.btn--onfilm {
  background: #fff; color: var(--ink);
  box-shadow: 0 2px 0 rgba(255,255,255,0.2), 0 12px 30px -12px rgba(0,0,0,0.45);
}
.btn--onfilm:hover {
  background: var(--forest-3); color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 2px 0 rgba(199,217,176,0.35), 0 16px 40px -12px rgba(127,216,159,0.45), 0 0 0 3px rgba(127,216,159,0.22);
}

.btn--ghost {
  border: 1px solid var(--line); color: var(--ink);
  background: transparent;
}
.btn--ghost:hover {
  border-color: var(--ink); transform: translateY(-2px);
  background: rgba(14,14,12,0.03);
}
.btn--onfilm-ghost {
  border: 1px solid rgba(255,255,255,0.45); color: #fff;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(4px);
}
.btn--onfilm-ghost:hover {
  border-color: #fff; background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -14px rgba(255,255,255,0.35);
}

.btn svg { transition: transform .25s var(--ease); flex-shrink: 0; }
.btn:hover svg { transform: translateX(4px); }
.btn:active { transform: translateY(0); transition-duration: .1s; }

.cta-dialog {
  border: none; padding: 0;
  background: var(--bg);
  color: var(--ink);
  border-radius: 18px;
  max-width: 480px; width: calc(100% - 32px);
  max-height: 92vh; overflow: auto;
  box-shadow: 0 30px 80px -20px rgba(14,14,12,0.45), 0 0 0 1px rgba(14,14,12,0.06);
  position: fixed; inset: 0; margin: auto;
}
.cta-dialog::backdrop {
  background: rgba(14,14,12,0.55);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.cta-dialog[open] {
  animation: cta-dialog-in .28s var(--ease) both;
}
.cta-dialog[open]::backdrop {
  animation: cta-dialog-fade .28s var(--ease) both;
}
@keyframes cta-dialog-in {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to   { opacity: 1; transform: none; }
}
@keyframes cta-dialog-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cta-dialog__close {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px;
  border: none; background: transparent;
  font-size: 22px; line-height: 1;
  cursor: pointer; color: var(--muted);
  border-radius: 50%;
  display: grid; place-items: center;
  transition: background .2s, color .2s;
}
.cta-dialog__close:hover { background: var(--line-2); color: var(--ink); }
.cta-dialog__close:focus-visible {
  outline: 2px solid var(--forest); outline-offset: 2px;
}
.cta-dialog__head { padding: 32px 32px 0; }
.cta-dialog__title {
  font-size: 22px; font-weight: 700;
  letter-spacing: -0.015em; line-height: 1.2;
  margin: 0 0 6px;
}
.cta-dialog__title em { color: var(--forest); font-style: normal; }
.cta-dialog__sub {
  font-size: 14px; color: var(--muted); line-height: 1.5;
  margin: 0;
}
.cta-dialog__group { padding: 0 32px; margin-top: 24px; }
.cta-dialog__legend {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
  margin: 0 0 12px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 10px;
}
.cta-dialog__legend::before {
  content: ""; width: 22px; height: 1px; background: var(--forest);
}
.cta-dialog__chips {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.cta-dialog__chip {
  display: inline-flex; align-items: center;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.45);
  font-family: inherit;
  font-size: 13px; font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink-2);
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.cta-dialog__chip:hover {
  border-color: var(--ink); color: var(--ink);
  transform: translateY(-1px);
  background: rgba(255,255,255,0.7);
}
.cta-dialog__chip:focus-visible {
  outline: 2px solid var(--forest); outline-offset: 2px;
}
.cta-dialog__chip[aria-pressed="true"] {
  background: var(--forest); color: #fff; border-color: var(--forest);
  box-shadow: 0 6px 20px -10px rgba(42,74,58,0.55), 0 0 0 3px rgba(127,216,159,0.18);
}
.cta-dialog__chip[aria-pressed="true"]:hover {
  background: var(--forest-2); border-color: var(--forest-2);
}
.cta-dialog__other-input {
  display: block;
  margin-top: 12px; width: 100%;
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 14px;
  font: inherit; font-size: 14px; color: var(--ink);
  outline: none;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
  animation: cta-dialog-in .25s var(--ease) both;
}
.cta-dialog__other-input::placeholder { color: var(--muted); opacity: 0.7; }
.cta-dialog__other-input:focus {
  border-color: var(--forest); background: #fff;
  box-shadow: 0 0 0 3px rgba(127,216,159,0.18);
}
.cta-dialog__other-input[hidden] { display: none; }

.cta-dialog__actions {
  display: flex; gap: 12px; justify-content: flex-end; flex-wrap: wrap;
  padding: 24px 32px 32px;
  margin-top: 28px;
  border-top: 1px solid var(--line-2);
}

@media (max-width: 520px) {
  .cta-dialog { border-radius: 16px; }
  .cta-dialog__head, .cta-dialog__group, .cta-dialog__actions {
    padding-left: 22px; padding-right: 22px;
  }
  .cta-dialog__title { font-size: 20px; }
  .cta-dialog__chip { padding: 8px 14px; font-size: 12.5px; }
  .cta-dialog__actions { flex-direction: column-reverse; }
  .cta-dialog__actions .btn { width: 100%; justify-content: center; }
}

.linkish {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--forest); font-weight: 500;
  padding-bottom: 2px;
  border-bottom: 1px solid currentColor;
  transition: gap 0.25s var(--ease);
}
.linkish:hover { gap: 14px; }

.reveal { opacity: 1; transform: none; }
.js-anim .reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js-anim .reveal.in { opacity: 1; transform: none; }

.reveal-left { opacity: 1; transform: none; }
.js-anim .reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js-anim .reveal-left.in { opacity: 1; transform: none; }

.reveal-right { opacity: 1; transform: none; }
.js-anim .reveal-right { opacity: 0; transform: translateX(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js-anim .reveal-right.in { opacity: 1; transform: none; }

.reveal-scale { opacity: 1; transform: none; }
.js-anim .reveal-scale { opacity: 0; transform: scale(0.84) translateY(10px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.js-anim .reveal-scale.in { opacity: 1; transform: none; }

.reveal-blur { opacity: 1; filter: none; transform: none; }
.js-anim .reveal-blur { opacity: 0; filter: blur(14px); transform: translateY(6px); transition: opacity .9s var(--ease), filter .9s var(--ease), transform .9s var(--ease); }
.js-anim .reveal-blur.in { opacity: 1; filter: none; transform: none; }

[data-stagger] > :nth-child(1) { --stagger: 0s; }
[data-stagger] > :nth-child(2) { --stagger: 0.09s; }
[data-stagger] > :nth-child(3) { --stagger: 0.18s; }
[data-stagger] > :nth-child(4) { --stagger: 0.27s; }
[data-stagger] > :nth-child(5) { --stagger: 0.36s; }
[data-stagger] > :nth-child(6) { --stagger: 0.45s; }
.js-anim [data-stagger] > .reveal,
.js-anim [data-stagger] > .reveal-left,
.js-anim [data-stagger] > .reveal-right,
.js-anim [data-stagger] > .reveal-scale { transition-delay: var(--stagger, 0s); }

.ladder__list > :nth-child(1) { --stagger: 0s; }
.ladder__list > :nth-child(2) { --stagger: 0.08s; }
.ladder__list > :nth-child(3) { --stagger: 0.14s; }
.ladder__list > :nth-child(4) { --stagger: 0.18s; }
.ladder__list > :nth-child(5) { --stagger: 0.20s; }
.ladder__list > :nth-child(6) { --stagger: 0.22s; }

@keyframes statGlow {
  0%, 100% { text-shadow: var(--glow); }
  50% { text-shadow: var(--glow-strong); }
}
@keyframes statHalo {
  0%, 100% { opacity: 0.55; transform: translate(-50%,-50%) scale(1); }
  50%      { opacity: 0.95; transform: translate(-50%,-50%) scale(1.18); }
}
.stat-halo { position: relative; isolation: isolate; display: inline-flex; }
.stat-halo::before {
  content: ""; position: absolute; left: 50%; top: 55%;
  width: 160%; height: 200%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(74,122,96,0.32) 0%, rgba(74,122,96,0.14) 35%, transparent 70%);
  animation: statHalo 3.5s ease-in-out infinite;
  z-index: -1; pointer-events: none;
  filter: blur(10px);
}

.line { display: block; overflow: hidden; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.line > span { display: inline-block; transform: translateY(0); transition: transform 1.1s var(--ease); }
.js-anim .line > span { transform: translateY(110%); }
.js-anim .reveal-line.in > span { transform: translateY(0); }

.marquee-wrap { padding: 48px 0; border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); overflow: hidden; }
.marquee-label {
  display: flex; align-items: center; gap: 20px;
  padding: 0 40px 20px;
  max-width: var(--max); margin: 0 auto;
}
.marquee-label__line { flex: 1; height: 1px; background: var(--line); }
.marquee { overflow: hidden; }
.marquee__track {
  display: flex; gap: 40px; align-items: center;
  font-weight: 700; font-size: clamp(28px, 3.8vw, 56px);
  letter-spacing: -0.02em; white-space: nowrap;
  animation: marquee 60s linear infinite;
}
@keyframes marquee { to { transform: translateX(-50%); } }

.eyebrow::before,
.phead__eyebrow::before {
  transition: width .8s var(--ease);
}
.js-anim .mono.reveal:not(.in)::before,
.js-anim .phead__eyebrow:not(.in)::before { width: 0 !important; }

.phead {
  padding: clamp(140px,14vw,180px) var(--pad) clamp(60px,7vw,96px);
  border-bottom: 1px solid var(--line-2);
  background: var(--bg);
}
.phead__inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,5vw,80px); align-items: end;
}
.phead__eyebrow { display: inline-flex; align-items: center; gap: 10px; font-weight: 500; }
.phead__eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--forest); }
.phead__title {
  font-weight: 800; font-size: clamp(44px,6.4vw,108px); line-height: 0.95; letter-spacing: -0.03em;
  margin-top: 16px; text-wrap: balance;
}
.phead__sub { color: var(--ink-2); font-size: var(--fs-lede); line-height: 1.55; text-wrap: pretty; }

.closing {
  padding: clamp(80px,10vw,140px) var(--pad);
  background: var(--bg);
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.closing::after {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: url('cta-bg.jpg') center/cover no-repeat;
  opacity: 0.2;
  pointer-events: none;
}
.closing__inner { max-width: 1100px; margin: 0 auto; display: grid; gap: 24px; position: relative; z-index: 1; }

.closing--center { text-align: center; background: radial-gradient(ellipse 60% 50% at 50% 40%, color-mix(in oklab, var(--forest) 12%, transparent), transparent 70%), var(--bg); }
.closing--center .closing__inner { justify-items: center; }
.closing__eyebrow, .closing__kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-mono); font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-2);
}
.closing__eyebrow::before, .closing__kicker::before { content: ""; width: 22px; height: 1px; background: var(--forest); }
.closing__title {
  font-weight: 800; font-size: var(--fs-h2); line-height: 1; letter-spacing: -0.028em;
  max-width: 22ch; text-wrap: balance;
}
.closing__body { max-width: 58ch; font-size: var(--fs-lede); color: var(--ink-2); line-height: 1.5; }
.closing--center .closing__body { max-width: 56ch; margin: 0 auto; }
.closing__ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.closing--center .closing__ctas { justify-content: center; }
.closing__phone { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }

.foot {
  padding: 80px var(--pad) 36px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}
.foot__top {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 2fr; gap: 60px;
  padding-bottom: 60px;
}

.foot__brand-block { display: grid; gap: 18px; align-content: start; }

.foot__brand { display: grid; gap: 18px; align-content: start; }
.foot__brand-line, .foot__brand-block .foot__brand {
  display: inline-flex; align-items: center; gap: 12px;
  font-weight: 800; font-size: 24px; letter-spacing: -0.02em;
}
.foot__brand-block .foot__brand .brand__mark { width: 32px; height: 32px; }
.foot__tag, .foot__tagline { color: var(--muted); font-size: 14px; max-width: 40ch; line-height: 1.55; }
.foot__legal { font-size: 12px; line-height: 1.65; opacity: 0.72; margin-top: 4px; }
.foot__wa {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 18px; border-radius: 999px;
  background: var(--ink); color: var(--bg);
  font-size: 14px; font-weight: 500; align-self: start;
  transition: background .2s, color .2s;
}
.foot__wa:hover { background: var(--forest); color: #fff; }
.foot__cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.foot__col { display: grid; gap: 10px; align-content: start; }
.foot__h { margin-bottom: 8px; color: var(--muted); }
.foot__col a { color: var(--ink-2); font-size: 14px; transition: color .2s; }
.foot__col a:hover { color: var(--forest); }
.foot__btm {
  max-width: var(--max); margin: 0 auto;
  padding-top: 24px; border-top: 1px solid var(--line-2);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted);
}

.foot__tickertape {
  max-width: var(--max); margin: 20px auto 16px;
  padding: 14px 0;
  border-top: 1px solid var(--line-2);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.foot__tickertape-track {
  display: inline-flex; gap: 22px; white-space: nowrap;
  animation: footTicker 90s linear infinite;
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
  will-change: transform;
}
.foot__tickertape-track span { flex-shrink: 0; }
.foot__tickertape-track .dot { color: var(--forest); opacity: 0.55; }
@keyframes footTicker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .foot__tickertape-track { animation: none; }
}

.nav__menu {
  display: none;
  width: 44px; height: 44px;
  flex: 0 0 auto;
  align-items: center; justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  position: relative;
  z-index: 120;
  transition: border-color .2s, background .2s, color .2s;
}
.nav__menu:hover { border-color: var(--ink); background: rgba(14,14,12,0.04); }
.nav__menu span {
  display: block; width: 18px; height: 1.5px;
  background: currentColor;
  position: absolute; left: 50%; margin-left: -9px;
  transition: transform .3s var(--ease), top .3s var(--ease), opacity .2s;
}
.nav__menu span:nth-child(1) { top: 16px; }
.nav__menu span:nth-child(2) { top: 24px; }
.nav__menu[aria-expanded="true"] {
  border-color: var(--ink); color: #fff; background: var(--ink);
}
.nav__menu[aria-expanded="true"] span:nth-child(1) {
  top: 20px; transform: rotate(45deg);
}
.nav__menu[aria-expanded="true"] span:nth-child(2) {
  top: 20px; transform: rotate(-45deg);
}

@media (max-width: 1100px) {
  .nav__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
  }
  .nav__links {
    position: fixed; inset: 0;
    z-index: 110;
    background: var(--bg);
    padding: calc(var(--cyclebar-h, 0px) + 88px) var(--pad) clamp(40px, 8vw, 80px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    overflow-y: auto;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity .3s var(--ease), transform .35s var(--ease), visibility .35s;
  }
  .nav__links.is-open {
    display: flex;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    visibility: visible;
  }
  .nav__links a {
    padding: 22px 4px;
    font-size: clamp(28px, 6vw, 38px);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--ink);
    border-bottom: 1px solid var(--line-2);
  }
  .nav__links a::after { display: none; }
  .nav__links a[aria-current="page"] { color: var(--forest); }
  
  .nav__cta {
    padding: 11px 16px;
    gap: 8px;
    font-size: 13px;
  }
  .nav__cta-label { display: inline; }
  .nav__menu { display: inline-flex; }

  .phead { padding: 140px var(--pad) 60px; }
  .phead__inner { grid-template-columns: 1fr; }
  .closing { padding: 80px var(--pad); }
  .foot { padding: 60px var(--pad) 30px; }
  .foot__top { grid-template-columns: 1fr; }
  .foot__btm { flex-direction: column; gap: 6px; }
}
body.nav-open { overflow: hidden; }
@media (max-width: 640px) {
  .foot__cols { grid-template-columns: 1fr; }
  .nav__inner { gap: 8px; }
}

.serif-pull {
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.018em;
  line-height: 1.18;
  text-wrap: balance;
}
.serif-kicker {
  font-style: italic;
  font-weight: 500;
  text-transform: none;
  letter-spacing: -0.008em;
  font-size: clamp(14px, 1vw, 17px);
}

.cyclebar {
  position: relative; z-index: 120;
  background: var(--forest);
  color: rgba(255,255,255,0.92);
  overflow: hidden;
  display: block; text-decoration: none;
  cursor: pointer;
}
.cyclebar::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg,
    rgba(199,217,176,0) 0%,
    rgba(199,217,176,0.14) 50%,
    rgba(199,217,176,0) 100%);
  animation: cyclebarShimmer 14s linear infinite;
  pointer-events: none;
}
@keyframes cyclebarShimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.cyclebar__inner {
  position: relative;
  max-width: var(--max); margin: 0 auto;
  padding: 10px var(--pad);
  display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap;
  font-family: var(--f-mono);
  font-size: 10.5px; letter-spacing: 0.12em;
  text-transform: uppercase;
}
.cyclebar__tag {
  color: var(--forest-3); letter-spacing: 0.12em;
  font-weight: 500;
}
.cyclebar__note { color: rgba(255,255,255,0.92); }
.cyclebar__cta {
  color: #fff; letter-spacing: 0.12em;
  position: relative;
}
.cyclebar__cta::after {
  content: "→"; margin-left: 6px;
  display: inline-block; transition: transform .3s var(--ease);
}
.cyclebar:hover .cyclebar__cta::after { transform: translateX(3px); }
.cyclebar__dot {
  width: 3px; height: 3px; border-radius: 50%;
  background: rgba(199,217,176,0.55);
}
@media (max-width: 640px) {
  
  .cyclebar__inner { gap: 10px; padding: 8px var(--pad); font-size: 9.5px; flex-wrap: nowrap; }
  .cyclebar__dot,
  .cyclebar__note { display: none; }
  .cyclebar__tag,
  .cyclebar__cta { white-space: nowrap; flex-shrink: 1; min-width: 0; }
}
@media (max-width: 380px) {
  
  .cyclebar__inner { gap: 8px; padding: 8px 14px; font-size: 9px; letter-spacing: 0.1em; }
  .cyclebar__tag { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .cyclebar::before { animation: none; }
}
