/* ==========================================================================
   Bio Plant Solutions — Design System
   All-sans editorial layout, deep-green inset panels, leaf mark.
   Single stylesheet. No build step.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */

:root {
  color-scheme: light;

  /* Brand — deep pine through fresh leaf */
  --pine-950: #071b12;
  --pine-900: #0b2a1c;
  --pine-800: #103a27;
  --pine-700: #164e33;
  --pine-600: #1d6a45;
  --pine-500: #268a5a;
  --pine-400: #45a878;
  --pine-300: #7cc7a0;
  --pine-200: #b4e0c8;
  --pine-100: #ddf1e6;
  --pine-50:  #f0f8f4;

  /* Warm counterpoint, used sparingly */
  --ochre-500: #a8823d;
  --ochre-300: #d6b878;

  /* Neutrals — biased a touch green so nothing reads as default grey */
  --page:          #fafbf9;
  --surface:       #ffffff;
  --surface-2:     #f3f5f2;
  --surface-sunken: #eef1ed;

  --ink:           #0d1712;
  --ink-2:         #3d4a43;
  --ink-3:         #6a766f;
  --ink-4:         #9aa49e;

  --rule:          rgba(13, 23, 18, 0.10);
  --rule-strong:   rgba(13, 23, 18, 0.18);
  --fill:          rgba(13, 23, 18, 0.05);
  --fill-2:        rgba(13, 23, 18, 0.035);
  --fill-3:        rgba(13, 23, 18, 0.09);

  --accent:        var(--pine-700);
  --accent-soft:   var(--pine-50);
  --on-accent:     #ffffff;

  /* Solid "ink" button, as in the reference */
  --btn-ink:       #111a15;
  --btn-ink-hover: #22322a;

  /* The signature panel */
  --panel: linear-gradient(140deg, #0c3122 0%, #1a5c3c 52%, #0f3b28 100%);
  --panel-band: linear-gradient(180deg, rgba(7, 27, 18, 0.15) 0%, rgba(7, 27, 18, 0.78) 100%);

  --material: rgba(250, 251, 249, 0.82);
  --material-blur: saturate(180%) blur(20px);

  --shadow-1: 0 1px 2px rgba(11, 42, 28, 0.06), 0 2px 6px rgba(11, 42, 28, 0.04);
  --shadow-2: 0 6px 16px rgba(11, 42, 28, 0.07), 0 18px 44px rgba(11, 42, 28, 0.09);
  --shadow-3: 0 12px 28px rgba(11, 42, 28, 0.10), 0 40px 90px rgba(11, 42, 28, 0.14);
  --ring: 0 0 0 3px rgba(38, 138, 90, 0.35);

  /* Radii — large, soft, as in the references */
  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-2xl: 40px;
  --r-full: 999px;

  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px;
  --s-5: 20px; --s-6: 24px; --s-8: 32px; --s-10: 40px;
  --s-12: 48px; --s-16: 64px; --s-20: 80px; --s-24: 96px;

  --container: 1240px;
  --container-narrow: 720px;
  --gutter: clamp(20px, 4.5vw, 56px);
  --header-h: 72px;
  --tabbar-h: calc(58px + env(safe-area-inset-bottom, 0px));

  --sans: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
          Helvetica, Arial, sans-serif;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.4, 0.64, 1);
  --dur-fast: 160ms;
  --dur: 320ms;
  --dur-slow: 620ms;
}

:root[data-theme="dark"] {
  color-scheme: dark;

  --page:          #07100c;
  --surface:       #0f1a15;
  --surface-2:     #16241d;
  --surface-sunken: #0b1410;

  --ink:           #eef3ef;
  --ink-2:         #c3cec8;
  --ink-3:         #8d9a93;
  --ink-4:         #66716b;

  --rule:          rgba(215, 235, 225, 0.14);
  --rule-strong:   rgba(215, 235, 225, 0.24);
  --fill:          rgba(215, 235, 225, 0.08);
  --fill-2:        rgba(215, 235, 225, 0.05);
  --fill-3:        rgba(215, 235, 225, 0.14);

  --accent:        var(--pine-300);
  --accent-soft:   rgba(124, 199, 160, 0.13);
  --on-accent:     #06190f;

  --btn-ink:       #eef3ef;
  --btn-ink-hover: #ffffff;

  --panel: linear-gradient(140deg, #0a2719 0%, #14472f 52%, #0a2317 100%);

  --material: rgba(7, 16, 12, 0.8);

  --shadow-1: 0 1px 2px rgba(0, 0, 0, 0.5);
  --shadow-2: 0 6px 18px rgba(0, 0, 0, 0.5), 0 22px 50px rgba(0, 0, 0, 0.45);
  --shadow-3: 0 14px 34px rgba(0, 0, 0, 0.6), 0 44px 96px rgba(0, 0, 0, 0.5);
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.62;
  color: var(--ink);
  background: var(--page);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  transition: background-color var(--dur) var(--ease-out), color var(--dur) var(--ease-out);
}
body.is-locked { overflow: hidden; }

img, svg, video, iframe { display: block; max-width: 100%; }
img { height: auto; background: var(--fill-2); }

a { color: inherit; text-decoration: none; }

figure, blockquote { margin: 0; }

/* Components set their own display, which would otherwise beat the UA's
   [hidden] { display: none } — the product filter depends on this. */
[hidden] { display: none !important; }

button, input, textarea, select { font: inherit; color: inherit; }

:focus-visible { outline: none; box-shadow: var(--ring); border-radius: var(--r-xs); }

::selection { background: var(--pine-200); color: var(--pine-900); }
:root[data-theme="dark"] ::selection { background: var(--pine-700); color: #fff; }

/* --------------------------------------------------------------------------
   3. Typography
   -------------------------------------------------------------------------- */

.display, h1, h2 {
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.07;
  margin: 0 0 var(--s-5);
  text-wrap: balance;
}

.display { font-size: clamp(2.15rem, 4vw, 3.3rem); }
h1 { font-size: clamp(2.15rem, 4.4vw, 3.4rem); }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.7rem); }

h3 {
  font-family: var(--sans);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.012em;
  line-height: 1.3;
  margin: 0 0 var(--s-3);
}
h4 {
  font-family: var(--sans);
  font-size: 0.9375rem; font-weight: 600;
  margin: 0 0 var(--s-3);
}

/* The accent word inside a heading — italic and a step lighter than its line */
em, .em { font-style: italic; font-weight: 400; }
.display em, h1 em, h2 em { letter-spacing: -0.028em; }

p { margin: 0 0 var(--s-4); text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  line-height: 1.66;
  color: var(--ink-2);
}

.eyebrow {
  display: block;
  margin: 0 0 var(--s-5);
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow--muted { color: var(--ink-3); }
.eyebrow--light { color: var(--pine-200); }

.muted { color: var(--ink-3); }
.small { font-size: 0.875rem; }
.tiny  { font-size: 0.75rem; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip-path: inset(50%); white-space: nowrap;
}

/* Section ornament — a four-point star, as in reference 1 */
.ornament {
  width: 22px; height: 22px;
  margin: 0 auto var(--s-6);
  color: var(--ink);
}
.ornament--light { color: #fff; }

/* --------------------------------------------------------------------------
   4. Layout
   -------------------------------------------------------------------------- */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: clamp(64px, 8vw, 128px); }
.section--tight { padding-block: clamp(40px, 5vw, 72px); }
.section--sunken { background: var(--surface-sunken); }

.section-head { max-width: 640px; margin-bottom: clamp(32px, 4.5vw, 60px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--split {
  max-width: none; display: flex; flex-wrap: wrap;
  gap: var(--s-6); align-items: end; justify-content: space-between;
}

.grid { display: grid; gap: clamp(16px, 2vw, 24px); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.split { display: grid; gap: clamp(28px, 4.5vw, 72px); align-items: center; }
.split--top { align-items: start; }
@media (min-width: 920px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--reverse > :first-child { order: 2; }
  .split--wide-right { grid-template-columns: 0.85fr 1.15fr; }
  .split--wide-left { grid-template-columns: 1.15fr 0.85fr; }
}

.cluster { display: flex; flex-wrap: wrap; gap: var(--s-3); align-items: center; }
.center { text-align: center; }
.stack > * + * { margin-top: var(--s-4); }

/* --------------------------------------------------------------------------
   5. Header
   -------------------------------------------------------------------------- */

.skip-link {
  position: fixed; top: 10px; left: 10px; z-index: 200;
  transform: translateY(-220%);
  padding: 10px 18px; border-radius: var(--r-full);
  background: var(--btn-ink); color: var(--page); font-weight: 600;
  transition: transform var(--dur-fast) var(--ease-out);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  background: var(--material);
  -webkit-backdrop-filter: var(--material-blur);
  backdrop-filter: var(--material-blur);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease-out);
}
.site-header.is-scrolled { border-bottom-color: var(--rule); }

.nav {
  display: flex; align-items: center; gap: var(--s-4);
  width: 100%; max-width: var(--container);
  margin-inline: auto; padding-inline: var(--gutter);
}

.brand {
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.028em;
  white-space: nowrap;
  margin-right: auto;
  display: inline-flex; align-items: center; gap: 10px;
  transition: opacity var(--dur-fast) var(--ease-out);
}
.brand:hover { opacity: 0.66; }
.brand__mark { width: 28px; height: 28px; flex: none; border-radius: 7px; }
.brand__name { display: inline-block; }
.brand__name span { color: var(--accent); font-weight: 500; }

.nav__links { display: none; align-items: center; gap: clamp(20px, 2.4vw, 38px); margin-inline: auto; }
@media (min-width: 900px) { .nav__links { display: flex; } }

.nav__link {
  position: relative;
  font-size: 0.9375rem;
  color: var(--ink-2);
  padding-block: 4px;
  transition: color var(--dur-fast) var(--ease-out);
}
.nav__link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: 0 50%;
  transition: transform var(--dur) var(--ease-out);
}
.nav__link:hover { color: var(--ink); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { color: var(--ink); }
.nav__link[aria-current="page"]::after { transform: scaleX(1); }

.nav__actions { display: flex; align-items: center; gap: var(--s-2); }
.nav .nav__cta { display: none; }
@media (min-width: 900px) { .nav .nav__cta { display: inline-flex; } }

.icon-btn {
  display: inline-grid; place-items: center;
  width: 40px; height: 40px; flex: none;
  border: 1px solid var(--rule); border-radius: var(--r-full);
  background: transparent; color: var(--ink-2); cursor: pointer;
  transition: background-color var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-spring);
}
.icon-btn:hover { background: var(--fill); color: var(--ink); }
.icon-btn:active { transform: scale(0.92); }
.icon-btn svg { width: 18px; height: 18px; }

.theme-toggle .icon-moon { display: none; }
:root[data-theme="dark"] .theme-toggle .icon-moon { display: block; }
:root[data-theme="dark"] .theme-toggle .icon-sun { display: none; }

.nav__menu-btn { display: inline-grid; }
@media (min-width: 900px) { .nav__menu-btn { display: none; } }

.scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 110;
  height: 2px; width: 100%;
  transform: scaleX(0); transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--pine-400), var(--pine-700));
  will-change: transform;
}

/* Mobile sheet */
.sheet {
  position: fixed; inset: 0; z-index: 150;
  display: grid; align-items: end;
  pointer-events: none; visibility: hidden;
  transition: visibility 0s linear var(--dur);
}
.sheet[data-open="true"] { pointer-events: auto; visibility: visible; transition-delay: 0s; }
.sheet__scrim {
  position: absolute; inset: 0; background: rgba(7, 27, 18, 0.45);
  opacity: 0; transition: opacity var(--dur) var(--ease-out);
  -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
}
.sheet[data-open="true"] .sheet__scrim { opacity: 1; }
.sheet__panel {
  position: relative; margin: 10px;
  padding: var(--s-3) var(--s-4) calc(var(--s-6) + env(safe-area-inset-bottom, 0px));
  border-radius: var(--r-2xl);
  background: var(--surface); box-shadow: var(--shadow-3);
  transform: translateY(110%);
  transition: transform var(--dur) var(--ease-out);
  max-height: 84dvh; overflow-y: auto;
}
.sheet[data-open="true"] .sheet__panel { transform: translateY(0); }
.sheet__grabber {
  width: 38px; height: 4px; border-radius: 3px;
  background: var(--fill-3); margin: 4px auto var(--s-5);
}
.sheet__link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 10px; min-height: 48px;
  font-size: 1.0625rem; font-weight: 600; letter-spacing: -0.02em;
  border-bottom: 1px solid var(--rule);
}
.sheet__link[aria-current="page"] { color: var(--accent); }
.sheet__link svg { width: 15px; height: 15px; opacity: 0.35; }
.sheet__contact { padding: var(--s-5) 10px var(--s-3); display: grid; gap: 6px; font-size: 0.9375rem; color: var(--ink-2); }

/* Bottom tab bar — phones */
.tabbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none; height: var(--tabbar-h);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  background: var(--material);
  -webkit-backdrop-filter: var(--material-blur); backdrop-filter: var(--material-blur);
  border-top: 1px solid var(--rule);
}
@media (max-width: 640px) { .tabbar { display: flex; } body { padding-bottom: var(--tabbar-h); } }
.tabbar__item {
  flex: 1; display: grid; place-items: center; gap: 3px; padding-top: 8px;
  color: var(--ink-3); font-size: 0.625rem; font-weight: 500;
  transition: color var(--dur-fast) var(--ease-out);
}
.tabbar__item svg { width: 21px; height: 21px; }
.tabbar__item[aria-current="page"] { color: var(--accent); }

/* --------------------------------------------------------------------------
   6. Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 48px; padding: 13px 26px;
  border: 1px solid transparent; border-radius: var(--r-full);
  font-size: 0.9375rem; font-weight: 600; letter-spacing: -0.005em;
  cursor: pointer; text-align: center;
  transition: transform var(--dur-fast) var(--ease-spring),
              background-color var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out);
}
.btn:active { transform: scale(0.97); }
.btn svg { width: 16px; height: 16px; flex: none; }

.btn--ink { background: var(--btn-ink); color: var(--page); }
.btn--ink:hover { background: var(--btn-ink-hover); }

.btn--outline { border-color: var(--rule-strong); color: var(--ink); }
.btn--outline:hover { background: var(--fill); }

.btn--light { background: #fff; color: var(--pine-900); }
.btn--light:hover { background: var(--pine-50); }

.btn--glass {
  background: rgba(255, 255, 255, 0.12); color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.btn--glass:hover { background: rgba(255, 255, 255, 0.22); }

.btn--sm { min-height: 40px; padding: 9px 18px; font-size: 0.875rem; }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.9375rem; font-weight: 600; color: var(--accent);
}
.link-arrow svg { width: 14px; height: 14px; transition: transform var(--dur-fast) var(--ease-out); }
.link-arrow:hover svg { transform: translateX(3px); }

.circle-btn {
  display: inline-grid; place-items: center;
  width: 44px; height: 44px; border-radius: var(--r-full);
  border: 1px solid var(--rule-strong); background: transparent;
  color: var(--ink); cursor: pointer;
  transition: background-color var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.circle-btn:hover { background: var(--btn-ink); color: var(--page); border-color: var(--btn-ink); }
.circle-btn svg { width: 17px; height: 17px; }

.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: var(--r-full);
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.01em;
  background: var(--accent-soft); color: var(--accent);
  border: 1px solid rgba(38, 138, 90, 0.2);
}
.pill--neutral { background: var(--fill-2); color: var(--ink-3); border-color: var(--rule); }
.pill--glass {
  background: rgba(255, 255, 255, 0.13); color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}

/* --------------------------------------------------------------------------
   7. Hero panel — the signature layout
   -------------------------------------------------------------------------- */

.hero { padding-top: clamp(28px, 4vw, 56px); padding-bottom: clamp(32px, 4vw, 64px); }

.hero__panel {
  position: relative;
  border-radius: var(--r-2xl);
  background: var(--panel);
  color: #fff;
  padding: clamp(36px, 5vw, 76px);
  display: grid; gap: clamp(28px, 4vw, 48px);
  align-items: center;
}
@media (min-width: 960px) {
  .hero__panel { grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr); padding-block: clamp(56px, 6vw, 92px); }
}

.hero__panel .display { color: #fff; margin-bottom: var(--s-6); }
.hero__panel .lead { color: rgba(255, 255, 255, 0.82); max-width: 46ch; }

.hero__figure {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-3);
}
.hero__figure img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 5 / 4; }

/* The photo lifts out above the panel on wide screens — reference 1's move */
@media (min-width: 960px) {
  .hero__figure {
    align-self: start;                       /* so the negative margin lifts, not drops */
    margin-top: clamp(-140px, -9vw, -72px);  /* clears the panel's top padding, then some */
  }
  .hero__figure img { aspect-ratio: 5 / 8; }
}

.hero__actions { margin-top: var(--s-8); }

/* --------------------------------------------------------------------------
   8. Credential strip
   -------------------------------------------------------------------------- */

.strip {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 4vw, 48px);
  padding-block: clamp(24px, 3vw, 40px);
  border-block: 1px solid var(--rule);
}
.strip__item {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.8125rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-3);
}
.strip__item img { height: 40px; width: auto; background: none; }
@media (max-width: 760px) {
  .strip { justify-content: flex-start; gap: 18px 28px; }
  .strip__item { font-size: 0.75rem; }
  .strip__item img { height: 32px; }
}
/* The certification marks are white on transparent — invert them on light ground */
:root:not([data-theme="dark"]) .strip__item img { filter: invert(1); opacity: 0.72; }

/* --------------------------------------------------------------------------
   9. Editorial statement with offset cards
   -------------------------------------------------------------------------- */

.editorial { overflow: hidden; }
.editorial__grid { display: grid; gap: clamp(28px, 4vw, 56px); align-items: center; }
.editorial__body { text-align: center; max-width: 560px; margin-inline: auto; }
.editorial__body h2 { font-size: clamp(2.1rem, 4vw, 3.1rem); }
.editorial__body .lead { margin-inline: auto; max-width: 48ch; }

.editorial__card {
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-2);
  aspect-ratio: 4 / 3;
}
.editorial__card img { width: 100%; height: 100%; object-fit: cover; }

@media (min-width: 1080px) {
  .editorial__grid {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.4fr) minmax(0, 0.8fr);
    align-items: center;
  }
  .editorial__card { aspect-ratio: 5 / 4; }
  .editorial__card--left  { align-self: start;  margin-left: clamp(-220px, -12vw, -80px); }
  .editorial__card--right { align-self: end;    margin-right: clamp(-220px, -12vw, -80px); }
}
@media (max-width: 1079px) {
  .editorial__grid { grid-template-columns: 1fr 1fr; }
  .editorial__body { grid-column: 1 / -1; order: -1; }
}
@media (max-width: 560px) {
  .editorial__grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   10. Figures / stat block
   -------------------------------------------------------------------------- */

.figures { display: grid; gap: clamp(24px, 3vw, 40px) clamp(28px, 4vw, 64px); }
@media (min-width: 640px) { .figures { grid-template-columns: 1fr 1fr; } }

.figure-item__value {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1; letter-spacing: -0.045em;
  font-variant-numeric: tabular-nums;
}
.figure-item__label {
  margin-top: 8px; font-size: 0.8125rem; color: var(--ink-3);
  max-width: 22ch;
}

/* --------------------------------------------------------------------------
   11. Dark image band
   -------------------------------------------------------------------------- */

.band {
  position: relative; isolation: isolate; overflow: hidden;
  border-radius: var(--r-2xl);
  min-height: clamp(360px, 46vw, 520px);
  display: grid; align-items: end;
  color: #fff;
  padding: clamp(28px, 4.5vw, 64px);
}
.band__media { position: absolute; inset: 0; z-index: -2; }
.band__media img { width: 100%; height: 100%; object-fit: cover; }
.band::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--panel-band);
}
.band__body { max-width: 46ch; }
.band h2 { color: #fff; }
.band p { color: rgba(255, 255, 255, 0.82); }

/* --------------------------------------------------------------------------
   12. Cards
   -------------------------------------------------------------------------- */

.card {
  position: relative; display: flex; flex-direction: column;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--rule);
  padding: clamp(22px, 2.4vw, 30px);
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
.card--hover:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.card p { color: var(--ink-2); font-size: 0.9375rem; }
.card__foot { margin-top: auto; padding-top: var(--s-5); }
.card__num {
  font-size: 0.8125rem; font-weight: 600; line-height: 1;
  letter-spacing: 0.12em; color: var(--ink-4);
  margin-bottom: var(--s-5); display: block;
}
.card__icon {
  display: grid; place-items: center;
  width: 44px; height: 44px; margin-bottom: var(--s-5);
  border-radius: var(--r-sm);
  background: var(--accent-soft); color: var(--accent);
}
.card__icon svg { width: 22px; height: 22px; }

/* Numbered media card — reference 3's services row */
.tile { position: relative; display: flex; flex-direction: column; }
.tile__media {
  position: relative; overflow: hidden;
  border-radius: var(--r-lg);
  aspect-ratio: var(--tile-ratio, 3 / 4);
  background: var(--surface-2);
}
.tile__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease-out); }
.tile:hover .tile__media img { transform: scale(1.04); }
.tile__badge {
  position: absolute; top: 14px; left: 14px;
  display: grid; place-items: center;
  min-width: 40px; height: 34px; padding-inline: 10px;
  border-radius: var(--r-full);
  background: rgba(10, 30, 20, 0.55); color: #fff;
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.04em;
}
.tile__body { padding-top: var(--s-5); display: flex; flex-direction: column; flex: 1; }
.tile__foot { margin-top: auto; padding-top: var(--s-6); }
.tile__body h3 { margin-bottom: 6px; }
.tile__body p { font-size: 0.875rem; color: var(--ink-3); margin: 0; }

/* Service cards — two up, with what each engagement includes */
.services { display: grid; gap: clamp(16px, 2vw, 24px); }
@media (min-width: 860px) { .services { grid-template-columns: 1fr 1fr; } }

.service {
  display: flex; flex-direction: column;
  padding: clamp(24px, 3vw, 38px);
  border-radius: var(--r-xl);
  background: var(--surface);
  border: 1px solid var(--rule);
  transition: border-color var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
.service:hover { border-color: var(--rule-strong); box-shadow: var(--shadow-1); }
.service__num {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em;
  color: var(--ink-4); display: block; margin-bottom: var(--s-4);
}
.service h3 { font-size: clamp(1.25rem, 1.9vw, 1.5rem); letter-spacing: -0.022em; margin-bottom: var(--s-3); }
.service > p { color: var(--ink-2); font-size: 0.9688rem; }
.service__included {
  margin-top: var(--s-5); padding-top: var(--s-5);
  border-top: 1px solid var(--rule);
}
.service__included h4 {
  font-size: 0.6875rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: var(--s-4);
}
.service__meta {
  margin-top: auto; padding-top: var(--s-5);
  display: flex; flex-wrap: wrap; gap: 6px 20px;
  font-size: 0.8125rem; color: var(--ink-3);
}
.service__meta span { display: inline-flex; gap: 6px; }
.service__meta strong { color: var(--ink-2); font-weight: 600; }

/* Engagement steps — what happens, what each side brings, how long it takes */
.steps { display: grid; }
.step {
  display: grid; gap: var(--s-5);
  padding-block: clamp(26px, 3.4vw, 44px);
  border-top: 1px solid var(--rule);
}
.steps .step:last-child { border-bottom: 1px solid var(--rule); }
@media (min-width: 900px) {
  .step {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.35fr) minmax(0, 1fr);
    gap: clamp(24px, 3vw, 48px);
    align-items: start;
  }
}
.step__num {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em;
  color: var(--accent); display: block; margin-bottom: 10px;
}
.step h3 { font-size: clamp(1.15rem, 1.7vw, 1.375rem); letter-spacing: -0.02em; margin-bottom: var(--s-3); }
.step__time {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.75rem; color: var(--ink-3);
}
.step__time svg { width: 13px; height: 13px; }
.step__body { color: var(--ink-2); font-size: 0.9688rem; }
.step__exchange { display: grid; gap: var(--s-4); }
.exchange__k {
  font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-4); margin-bottom: 5px;
}
.exchange__v { font-size: 0.875rem; color: var(--ink-2); }

/* Standing commitments */
.promises { display: grid; gap: clamp(20px, 2.6vw, 36px); }
@media (min-width: 720px) { .promises { grid-template-columns: repeat(4, 1fr); } }
.promise__icon {
  display: grid; place-items: center;
  width: 38px; height: 38px; margin-bottom: var(--s-4);
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.12); color: #fff;
}
.promise__icon svg { width: 19px; height: 19px; }
.promise h3 { color: #fff; font-size: 1rem; margin-bottom: 6px; }
.promise p { color: rgba(255, 255, 255, 0.76); font-size: 0.875rem; margin: 0; }

/* --------------------------------------------------------------------------
   13. Alternating process rows
   -------------------------------------------------------------------------- */

.row { display: grid; gap: clamp(24px, 4vw, 64px); align-items: center; }
@media (min-width: 900px) {
  .row { grid-template-columns: 1fr 1fr; }
  .row:nth-child(even) > .row__media { order: -1; }
}
.row + .row { margin-top: clamp(48px, 6vw, 96px); }
.row__media { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-1); }
.row__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.row__step {
  font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-4);
  display: block; margin-bottom: var(--s-4);
}
.row h2 { font-size: clamp(1.7rem, 2.9vw, 2.3rem); }

/* --------------------------------------------------------------------------
   14. Bento gallery + lightbox
   -------------------------------------------------------------------------- */

.bento { display: grid; gap: clamp(10px, 1.2vw, 16px); grid-template-columns: repeat(2, 1fr); }
@media (min-width: 860px) { .bento { grid-template-columns: repeat(4, 1fr); grid-auto-rows: minmax(0, auto); } }

.bento__item {
  position: relative; display: block; padding: 0; border: none;
  border-radius: var(--r-lg); overflow: hidden; cursor: zoom-in;
  background: var(--surface-2);
  aspect-ratio: 1 / 1;
}
.bento__item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease-out); }
.bento__item:hover img { transform: scale(1.045); }
@media (min-width: 860px) {
  .bento__item--tall { grid-row: span 2; aspect-ratio: 1 / 2.06; }
  .bento__item--wide { grid-column: span 2; aspect-ratio: 2.06 / 1; }
}
.bento__cap {
  position: absolute; left: 14px; bottom: 14px;
  padding: 7px 14px; border-radius: var(--r-full);
  background: rgba(10, 30, 20, 0.55); color: #fff;
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  font-size: 0.75rem; font-weight: 600;
  opacity: 0; transform: translateY(5px);
  transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
}
.bento__item:hover .bento__cap,
.bento__item:focus-visible .bento__cap { opacity: 1; transform: none; }

.lightbox {
  position: fixed; inset: 0; z-index: 180;
  display: grid; place-items: center;
  padding: clamp(12px, 3vw, 40px);
  background: rgba(5, 18, 12, 0.94);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  opacity: 0; pointer-events: none; visibility: hidden;
  transition: opacity var(--dur) var(--ease-out), visibility 0s linear var(--dur);
}
.lightbox[data-open="true"] { opacity: 1; pointer-events: auto; visibility: visible; transition-delay: 0s; }
.lightbox__figure {
  margin: 0; display: grid; gap: var(--s-4); justify-items: center;
  max-width: min(1150px, 100%);
  transform: scale(0.95); transition: transform var(--dur) var(--ease-out);
}
.lightbox[data-open="true"] .lightbox__figure { transform: scale(1); }
.lightbox img { max-height: 76dvh; width: auto; border-radius: var(--r-md); background: none; }
.lightbox figcaption { color: rgba(255, 255, 255, 0.8); font-size: 0.9375rem; text-align: center; }
.lightbox__btn {
  position: absolute; display: grid; place-items: center;
  width: 46px; height: 46px; border: none; cursor: pointer;
  border-radius: var(--r-full);
  background: rgba(255, 255, 255, 0.13); color: #fff;
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  transition: background-color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-spring);
}
.lightbox__btn:hover { background: rgba(255, 255, 255, 0.24); }
.lightbox__btn:active { transform: scale(0.9); }
.lightbox__btn svg { width: 21px; height: 21px; }
.lightbox__close { top: max(16px, env(safe-area-inset-top, 0px)); right: 16px; }
.lightbox__prev { left: 16px; top: 50%; margin-top: -23px; }
.lightbox__next { right: 16px; top: 50%; margin-top: -23px; }
.lightbox__counter {
  position: absolute; bottom: max(18px, env(safe-area-inset-bottom, 0px)); left: 50%;
  transform: translateX(-50%); padding: 6px 14px; border-radius: var(--r-full);
  background: rgba(255, 255, 255, 0.13); color: #fff; font-size: 0.8125rem;
  font-variant-numeric: tabular-nums;
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}

/* --------------------------------------------------------------------------
   15. Lists, tables, accordion, forms
   -------------------------------------------------------------------------- */

.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--s-3); }
.check-list li {
  position: relative;
  padding-left: 32px;
  font-size: 0.9375rem; color: var(--ink-2);
}
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 3px;
  width: 19px; height: 19px; border-radius: 50%;
  background: var(--accent-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23164e33' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 11px no-repeat;
}
:root[data-theme="dark"] .check-list li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237cc7a0' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}
.check-list--2 { column-gap: clamp(24px, 4vw, 64px); }
.check-list--3 { column-gap: clamp(24px, 3vw, 56px); }
@media (min-width: 620px) { .check-list--3 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .check-list--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 680px) { .check-list--2 { grid-template-columns: 1fr 1fr; } }

.doc-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--rule); }
.doc-list li { border-bottom: 1px solid var(--rule); }
.doc-row {
  display: flex; align-items: center; gap: var(--s-4);
  padding: 18px 4px; min-height: 60px;
  transition: padding-inline var(--dur) var(--ease-out), background-color var(--dur-fast) var(--ease-out);
}
a.doc-row:hover { background: var(--fill-2); padding-inline: 14px 4px; }
.doc-row__num { font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.06em; color: var(--ink-4); width: 28px; flex: none; font-variant-numeric: tabular-nums; }
.doc-row__text { flex: 1; min-width: 0; }
.doc-row__text strong { display: block; font-weight: 600; font-size: 1rem; }
.doc-row__text span { display: block; font-size: 0.8125rem; color: var(--ink-3); }
.doc-row__chevron { width: 15px; height: 15px; color: var(--ink-4); flex: none; }
.doc-row__file {
  font-size: 0.75rem; color: var(--ink-4); flex: none;
  font-variant-numeric: tabular-nums; white-space: nowrap;
}
@media (max-width: 560px) { .doc-row__file { display: none; } }

/* Segmented control */
.segmented {
  display: inline-flex; position: relative; padding: 4px; gap: 2px;
  border-radius: var(--r-full); background: var(--fill-2);
  border: 1px solid var(--rule);
  max-width: 100%; overflow-x: auto; scrollbar-width: none;
}
.segmented::-webkit-scrollbar { display: none; }
.segmented__btn {
  position: relative; z-index: 1; border: none; background: transparent;
  padding: 8px 18px; min-height: 38px; border-radius: var(--r-full);
  font-size: 0.875rem; font-weight: 600; color: var(--ink-3);
  white-space: nowrap; cursor: pointer;
  transition: color var(--dur-fast) var(--ease-out);
}
.segmented__btn[aria-selected="true"] { color: var(--page); }
.segmented__thumb {
  position: absolute; z-index: 0; top: 4px; bottom: 4px; left: 4px;
  border-radius: var(--r-full); background: var(--btn-ink);
  transition: transform var(--dur) var(--ease-out), width var(--dur) var(--ease-out);
}

.table-wrap {
  overflow-x: auto; border: 1px solid var(--rule);
  border-radius: var(--r-lg); background: var(--surface);
  -webkit-overflow-scrolling: touch;
}
table.spec { width: 100%; border-collapse: collapse; font-size: 0.875rem; min-width: 560px; }
table.spec th, table.spec td { padding: 14px 20px; text-align: left; }
table.spec thead th {
  background: var(--surface-2);
  font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-3); white-space: nowrap;
}
table.spec tbody tr + tr { border-top: 1px solid var(--rule); }
table.spec td:first-child { font-weight: 600; color: var(--ink); }
table.spec td { color: var(--ink-2); font-variant-numeric: tabular-nums; }

.accordion { border-top: 1px solid var(--rule); }
.accordion > details { border-bottom: 1px solid var(--rule); }
.accordion summary {
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-4);
  padding: 20px 4px; cursor: pointer; list-style: none;
  font-size: clamp(1rem, 1.35vw, 1.125rem); font-weight: 600;
  letter-spacing: -0.015em; line-height: 1.35;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: ""; flex: none; width: 18px; height: 18px; background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center / contain no-repeat;
  opacity: 0.4; transition: transform var(--dur) var(--ease-out);
}
.accordion details[open] summary::after { transform: rotate(45deg); }
.accordion__body { padding: 0 4px 24px; color: var(--ink-2); max-width: 62ch; }

.form { display: grid; gap: var(--s-4); }
.form__row { display: grid; gap: var(--s-4); grid-template-columns: 1fr; }
@media (min-width: 620px) { .form__row { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: 7px; }
.field > label { font-size: 0.8125rem; font-weight: 600; color: var(--ink-2); }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; min-height: 50px;
  border: 1px solid var(--rule-strong); border-radius: var(--r-sm);
  background: var(--surface); color: var(--ink); font-size: 0.9375rem;
  transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
  appearance: none;
}
.field textarea { min-height: 140px; resize: vertical; line-height: 1.55; }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236a766f' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 17px;
  padding-right: 42px;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-4); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: var(--ring);
}
.form__note { font-size: 0.8125rem; color: var(--ink-3); }
.form__status {
  padding: 13px 16px; border-radius: var(--r-sm); font-size: 0.9375rem;
  background: var(--accent-soft); color: var(--accent);
  border: 1px solid rgba(38, 138, 90, 0.22);
}
.form__status[hidden] { display: none !important; }

/* --------------------------------------------------------------------------
   16. CTA panel & footer
   -------------------------------------------------------------------------- */

.cta {
  position: relative; overflow: hidden; isolation: isolate;
  border-radius: var(--r-2xl);
  padding: clamp(40px, 6vw, 88px);
  background: var(--panel); color: #fff;
  text-align: center;
}
.cta::before {
  content: ""; position: absolute; z-index: -1;
  inset: -45% -15% auto auto; width: 62%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 68%);
}
.cta h2 { color: #fff; max-width: 18ch; margin-inline: auto; }
.cta p { color: rgba(255, 255, 255, 0.82); max-width: 52ch; margin-inline: auto; }
.cta .cluster { justify-content: center; }

.site-footer {
  padding-top: clamp(48px, 6vw, 88px);
  padding-bottom: calc(var(--s-8) + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--rule);
  margin-top: clamp(56px, 7vw, 104px);
  font-size: 0.875rem;
}
.footer__grid { display: grid; gap: clamp(28px, 4vw, 56px); grid-template-columns: 1fr; }
@media (min-width: 760px) { .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }
.footer__col h4 {
  font-size: 0.6875rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: var(--s-4);
}
.footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer__col a { color: var(--ink-2); }
.footer__col a:hover { color: var(--accent); }
.footer__about p { color: var(--ink-3); max-width: 32ch; margin-top: var(--s-4); }
.footer__bottom {
  display: flex; flex-wrap: wrap; gap: var(--s-4);
  justify-content: space-between; align-items: center;
  margin-top: clamp(36px, 5vw, 64px); padding-top: var(--s-6);
  border-top: 1px solid var(--rule); color: var(--ink-3); font-size: 0.8125rem;
}
.social { display: flex; gap: var(--s-2); }
.social a {
  display: grid; place-items: center; width: 36px; height: 36px;
  border-radius: var(--r-full); border: 1px solid var(--rule); color: var(--ink-2);
  transition: background-color var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.social a:hover { background: var(--btn-ink); color: var(--page); border-color: var(--btn-ink); }
.social svg { width: 16px; height: 16px; }

.to-top {
  position: fixed; right: 18px; z-index: 95;
  bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  width: 44px; height: 44px; display: grid; place-items: center;
  border: 1px solid var(--rule); border-radius: var(--r-full);
  background: var(--material); color: var(--ink);
  -webkit-backdrop-filter: var(--material-blur); backdrop-filter: var(--material-blur);
  box-shadow: var(--shadow-2); cursor: pointer;
  opacity: 0; transform: translateY(12px) scale(0.9); pointer-events: none;
  transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-spring);
}
.to-top.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.to-top svg { width: 18px; height: 18px; }
@media (max-width: 640px) { .to-top { bottom: calc(var(--tabbar-h) + 12px); } }

/* --------------------------------------------------------------------------
   17. Page hero (interior pages)
   -------------------------------------------------------------------------- */

.page-hero { padding-top: clamp(28px, 4vw, 52px); }
.page-hero__panel {
  position: relative; isolation: isolate; overflow: hidden;
  border-radius: var(--r-2xl);
  padding: clamp(48px, 7vw, 108px) clamp(28px, 5vw, 76px);
  color: #fff;
  display: grid; align-items: end;
  min-height: clamp(280px, 34vw, 420px);
}
.page-hero__panel img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.page-hero__panel::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(7, 27, 18, 0.35), rgba(7, 27, 18, 0.82));
}
.page-hero h1 { color: #fff; margin-bottom: var(--s-5); }
.page-hero .lead { color: rgba(255, 255, 255, 0.84); max-width: 58ch; }
.crumbs { display: flex; gap: 8px; align-items: center; font-size: 0.8125rem; margin-bottom: var(--s-5); color: rgba(255, 255, 255, 0.6); }
.crumbs a:hover { color: #fff; }

/* Media helpers */
.frame { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-1); }
.frame img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.frame--tall img { aspect-ratio: 3 / 4; }
.frame--wide img { aspect-ratio: 16 / 9; }
.frame--strip img { aspect-ratio: 3.4 / 1; }

/* --------------------------------------------------------------------------
   18. Reveal & utilities
   -------------------------------------------------------------------------- */

[data-reveal] {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal="scale"] { transform: scale(0.97); }
@media (min-width: 1080px) {
  [data-reveal="left"]  { transform: translateX(-24px); }
  [data-reveal="right"] { transform: translateX(24px); }
}

.mt-3 { margin-top: var(--s-3); }
.mt-4 { margin-top: var(--s-4); }
.mt-6 { margin-top: var(--s-6); }
.mt-8 { margin-top: var(--s-8); }
.mt-10 { margin-top: var(--s-10); }
.mt-12 { margin-top: var(--s-12); }
.mb-0 { margin-bottom: 0; }

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

@media print {
  .site-header, .tabbar, .to-top, .scroll-progress, .sheet, .lightbox { display: none !important; }
  body { background: #fff; color: #000; padding: 0; }
  .hero__panel, .page-hero__panel, .cta, .band { background: none !important; color: #000 !important; min-height: 0; padding: 12px 0; }
  .hero__panel .display, .page-hero h1, .cta h2, .band h2 { color: #000 !important; }
  .band__media, .page-hero__panel img { display: none; }
  a { color: #000; text-decoration: underline; }
}
