/* ==========================================================================
   Connected Living Tech LLC — "Clinical Datasheet" design system
   Graphite ink · clinical teal · bone paper. Zero radius, 1px rules, no shadows.
   ========================================================================== */

/* --------------------------------------------------------------- 1. Tokens */
:root {
  /* material palette */
  --ink:        #12191B;
  --ink-2:      #1B2427;
  --ink-3:      #2A3538;
  --teal:       #0E8C7F;
  --teal-deep:  #0A6259;
  --teal-soft:  #7FCFC2;
  --teal-tint:  #E1F0ED;
  --bone:       #F1EFE9;
  --paper:      #FAF9F5;
  --white:      #FFFFFF;

  /* text */
  --text:       #12191B;
  --body:       #3E4749;
  --muted:      #5F6B6D;
  --muted-dark: #9BAAAC;
  --on-dark:    #F1EFE9;

  /* lines */
  --hairline:      #D8D5CC;
  --hairline-soft: #E6E3DB;
  --hairline-dark: #2A3538;

  /* geometry */
  --radius:  0px;
  --maxw:    1240px;
  --gutter:  clamp(20px, 5vw, 64px);
  --sec:     clamp(72px, 10vw, 140px);
  --ease:    cubic-bezier(.22, .61, .36, 1);

  /* type */
  --display: "Zilla Slab", Georgia, "Times New Roman", serif;
  --sans:    "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono:    "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
}

/* ----------------------------------------------------------- 2. Foundation */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bone);
  color: var(--body);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.62;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
@media (max-width: 640px) { body { font-size: 16px; } }
body.is-locked { overflow: hidden; }

img, svg, video { max-width: 100%; display: block; }
img { height: auto; }

a { color: inherit; text-decoration: none; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--text);
  font-weight: 500;
  letter-spacing: -.015em;
  margin: 0;
}
h1 { font-size: clamp(2.35rem, 4.9vw, 3.9rem); line-height: 1.04; font-weight: 600; }
h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); line-height: 1.08; font-weight: 600; }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); line-height: 1.18; }
h4 { font-size: 1.06rem; line-height: 1.3; }

em { font-style: italic; }
strong { font-weight: 600; color: var(--text); }
hr { border: 0; border-top: 1px solid var(--hairline); margin: 0; }

::selection { background: var(--teal-soft); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--teal-deep);
  outline-offset: 3px;
  border-radius: var(--radius);
}

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--wide { max-width: 1440px; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: var(--on-dark);
  padding: 12px 18px; font: 600 13px/1 var(--sans);
}
.skip:focus { left: 12px; top: 12px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* paper grain — the material tell, 3% opacity */
.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  opacity: .028; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* --------------------------------------------------------- 3. Micro-typography */
.eyebrow {
  font-family: var(--mono);
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 30px; height: 2px;
  background: var(--teal);
  flex: none;
}
.eyebrow--plain::before { display: none; }
.eyebrow--dark { color: var(--teal-soft); }
.eyebrow--dark::before { background: var(--teal-soft); }

.lead {
  font-size: clamp(1.05rem, 1.45vw, 1.2rem);
  line-height: 1.6;
  color: var(--muted);
  max-width: 46ch;
}
.lead--dark { color: var(--muted-dark); }

.num { font-variant-numeric: tabular-nums; }

/* spec ticket — the repeated identity object (mono label + teal left bar) */
.ticket {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--mono);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--teal-deep);
  background: var(--teal-tint);
  border: 1px solid var(--teal-soft);
  border-left: 3px solid var(--teal);
  border-radius: var(--radius);
  padding: 7px 12px 7px 11px;
  font-variant-numeric: tabular-nums;
  width: fit-content;
}
.ticket--dark {
  color: var(--teal-soft);
  background: rgba(14, 140, 127, .16);
  border-color: rgba(127, 207, 194, .3);
  border-left-color: var(--teal);
}
.ticket__dot {
  width: 7px; height: 7px;
  background: var(--teal); flex: none;
}

/* section heading block: teal rule + eyebrow + h2 + lead */
.head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }
.head--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 26rem);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
}
.head--split .head__title { margin: 0; }
.head--split .lead { max-width: none; }
.head__title { margin: 0 0 20px; }
.head__title em { color: var(--teal-deep); font-style: italic; }

/* ------------------------------------------------------------- 4. Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 15px 26px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color .18s var(--ease), color .18s var(--ease),
              border-color .18s var(--ease), transform .18s var(--ease);
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--teal-deep); color: var(--paper); border-color: var(--teal-deep); }
.btn--primary:hover { background: var(--ink); border-color: var(--ink); }

.btn--ink { background: var(--ink); color: var(--on-dark); border-color: var(--ink); }
.btn--ink:hover { background: var(--teal-deep); border-color: var(--teal-deep); }

.btn--outline { background: transparent; color: var(--text); border-color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--on-dark); }

.btn--ghost { background: transparent; color: var(--on-dark); border-color: rgba(241,239,233,.35); }
.btn--ghost:hover { background: var(--on-dark); color: var(--ink); border-color: var(--on-dark); }

.btn--light { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn--light:hover { background: var(--teal-soft); border-color: var(--teal-soft); }

.btn--sm { padding: 11px 18px; font-size: .74rem; }
.btn--block { width: 100%; }

.btnrow { display: flex; flex-wrap: wrap; gap: 12px; }

.tlink {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--mono); font-size: .72rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--teal-deep);
  background: none; cursor: pointer;
  border: 0; border-bottom: 1px solid var(--teal-soft);
  padding: 0 0 3px;
  transition: gap .18s var(--ease), border-color .18s var(--ease);
}
/* inline text link that lives inside prose/labels */
.tlink--inline {
  display: inline; font-family: inherit; font-size: inherit; font-weight: inherit;
  letter-spacing: inherit; text-transform: none; padding: 0;
  border-bottom: 1px solid var(--teal-soft); color: var(--teal-deep);
}
.tlink:hover { gap: 15px; border-color: var(--teal); }
.tlink--dark { color: var(--teal-soft); border-color: rgba(232,199,156,.35); }

/* -------------------------------------------------------------- 5. Top bar */
.topbar {
  background: var(--ink);
  color: var(--muted-dark);
  font-size: .76rem;
  letter-spacing: .04em;
  position: relative;
  z-index: 60;
}
.topbar__in {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; min-height: 40px; flex-wrap: wrap;
}
.topbar__loc { display: inline-flex; align-items: center; gap: 8px; }
.topbar__loc svg { width: 13px; height: 13px; stroke: var(--teal); flex: none; }
.topbar__right { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar a { transition: color .18s var(--ease); }
.topbar a:hover { color: var(--teal-soft); }
.topbar__sep { width: 1px; height: 12px; background: var(--hairline-dark); }
@media (max-width: 900px) { .topbar { display: none; } }

/* --------------------------------------------------------------- 6. Header */
.hdr {
  position: sticky; top: 0; z-index: 70;
  background: var(--bone);
  border-bottom: 1px solid transparent;
  transition: border-color .2s var(--ease), background-color .2s var(--ease);
}
.hdr.is-scrolled { border-bottom-color: var(--hairline); background: rgba(241,239,233,.94); backdrop-filter: blur(8px); }
.hdr__in { display: flex; align-items: center; gap: 24px; min-height: 76px; }

.mark { display: inline-flex; align-items: center; gap: 11px; flex: none; }
.mark__ico { width: 30px; height: 30px; flex: none; }
.mark__txt {
  font-family: var(--display);
  font-size: 1.16rem;
  font-weight: 500;
  letter-spacing: -.015em;
  color: var(--text);
  line-height: 1;
}
.mark__txt .dot { color: var(--teal); }
.mark__sub {
  display: block;
  font-family: var(--mono);
  font-size: .55rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 5px;
}

.nav { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.nav a {
  font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--body); position: relative; padding: 6px 0; white-space: nowrap;
  transition: color .18s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px;
  background: var(--teal); transition: right .25s var(--ease);
}
.nav a:hover { color: var(--text); }
.nav a:hover::after { right: 0; }
.nav a.is-active { color: var(--teal-deep); }
.nav a.is-active::after { right: 0; }

.hdr__cta { display: flex; align-items: center; gap: 10px; flex: none; }

.burger {
  display: none; margin-left: auto;
  width: 44px; height: 44px; padding: 0;
  background: transparent; border: 1px solid var(--hairline);
  border-radius: var(--radius); cursor: pointer;
  align-items: center; justify-content: center;
}
.burger span { display: block; width: 18px; height: 1.5px; background: var(--ink); position: relative; transition: background-color .2s var(--ease); }
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 1.5px; background: var(--ink);
  transition: transform .25s var(--ease), top .2s var(--ease);
}
.burger span::before { top: -6px; }
.burger span::after  { top: 6px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.burger[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

@media (max-width: 1080px) {
  .nav, .hdr__cta { display: none; }
  .burger { display: flex; }
}

/* mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 90;
  background: var(--ink); color: var(--on-dark);
  padding: 96px var(--gutter) 40px;
  overflow-y: auto;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .28s var(--ease), transform .28s var(--ease), visibility .28s;
}
.drawer.is-open { opacity: 1; visibility: visible; transform: none; }
.drawer__nav { display: grid; gap: 2px; border-top: 1px solid var(--hairline-dark); }
.drawer__nav a {
  font-family: var(--display); font-size: 1.9rem; line-height: 1.1;
  padding: 18px 0; border-bottom: 1px solid var(--hairline-dark);
  color: var(--on-dark);
  display: flex; align-items: baseline; gap: 14px;
}
.drawer__nav a span {
  font-family: var(--mono); font-size: .6rem; letter-spacing: .2em; color: var(--teal);
}
.drawer__foot { margin-top: 36px; display: grid; gap: 14px; }
.drawer__foot .btn { width: 100%; }
.drawer__meta { font-size: .85rem; color: var(--muted-dark); display: grid; gap: 6px; }
.drawer__close {
  position: absolute; top: 18px; right: var(--gutter);
  width: 44px; height: 44px; background: transparent;
  border: 1px solid var(--hairline-dark); border-radius: var(--radius);
  color: var(--on-dark); cursor: pointer; font-size: 20px; line-height: 1;
}

/* ----------------------------------------------------------------- 7. Hero */
.hero { padding: clamp(48px, 7vw, 92px) 0 clamp(56px, 7vw, 100px); position: relative; }
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .85fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
}
.hero h1 { margin: 0 0 26px; max-width: 18ch; }
.hero h1 em { color: var(--teal-deep); display: block; }
.hero .lead { max-width: 50ch; margin-bottom: 32px; }
.hero .btnrow { margin-bottom: 40px; }

.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--hairline);
  margin: 0;
}
.hero__fact { padding: 20px 20px 0 0; }
.hero__fact + .hero__fact { border-left: 1px solid var(--hairline); padding-left: 22px; }
.hero__fact dt {
  font-family: var(--mono); font-size: .62rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--muted);
  margin-bottom: 8px;
}
.hero__fact dd {
  margin: 0; font-family: var(--display); font-size: clamp(1.5rem, 2.4vw, 2rem);
  color: var(--text); line-height: 1; font-variant-numeric: tabular-nums;
}

/* photo plate — matted print, mono caption */
.plate { margin: 0; position: relative; }
.plate--wide { max-width: 100%; }
.plate--wide .plate__img img { aspect-ratio: 21/9; object-fit: cover; }
.plate__img {
  border: 1px solid var(--ink);
  padding: 10px;
  background: var(--paper);
  overflow: hidden;
}
.plate__img img {
  width: 100%;
  display: block;
  transition: transform 6s var(--ease);
}
.plate:hover .plate__img img { transform: scale(1.035); }
.plate__cap {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--mono); font-size: .62rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--muted);
  margin-top: 12px; font-variant-numeric: tabular-nums;
}
.plate__cap b { color: var(--teal-deep); font-weight: 700; }
.plate--dark .plate__img { border-color: var(--hairline-dark); background: var(--ink-2); }
.plate--dark .plate__cap { color: var(--muted-dark); }
.plate--dark .plate__cap b { color: var(--teal-soft); }

.hero__plate .ticket {
  position: absolute; left: -14px; bottom: 74px;
  background: var(--paper);
}
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__plate { max-width: 460px; }
  .hero__plate .ticket { left: 12px; bottom: 60px; }
}
@media (max-width: 560px) {
  .hero__facts { grid-template-columns: 1fr; }
  .hero__fact + .hero__fact { border-left: 0; border-top: 1px solid var(--hairline); padding-left: 0; }
  .hero__fact { padding-right: 0; }
}

/* --------------------------------------------------- 8. Trade terms band */
.terms { background: var(--ink); color: var(--on-dark); }
.terms__grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
}
.terms__item {
  padding: clamp(28px, 3.4vw, 44px) clamp(18px, 2.4vw, 34px);
  border-left: 1px solid var(--hairline-dark);
}
.terms__item:first-child { border-left: 0; padding-left: 0; }
.terms__item:last-child { padding-right: 0; }
.terms__k {
  font-family: var(--mono); font-size: .62rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: var(--teal-soft);
  margin: 0 0 12px;
}
.terms__v {
  font-family: var(--display); font-size: clamp(1.15rem, 1.6vw, 1.42rem);
  line-height: 1.24; color: var(--on-dark); margin: 0;
}
.terms__n { color: var(--muted-dark); font-size: .84rem; margin: 8px 0 0; line-height: 1.5; }
@media (max-width: 900px) {
  .terms__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .terms__item:nth-child(3) { border-left: 0; padding-left: 0; }
  .terms__item:nth-child(2), .terms__item:nth-child(4) { padding-right: 0; }
  .terms__item:nth-child(n+3) { border-top: 1px solid var(--hairline-dark); }
}
@media (max-width: 560px) {
  .terms__grid { grid-template-columns: 1fr; }
  .terms__item { border-left: 0; padding-inline: 0; }
  .terms__item + .terms__item { border-top: 1px solid var(--hairline-dark); }
}

/* --------------------------------------------------------- 9. Section base */
.sec { padding: var(--sec) 0; position: relative; }
.sec--paper { background: var(--paper); }
.sec--bone { background: var(--bone); }
.sec--ink { background: var(--ink); color: var(--on-dark); }
.sec--ink h2, .sec--ink h3, .sec--ink h4 { color: var(--on-dark); }
.sec--tight { padding-block: clamp(56px, 7vw, 96px); }
.sec + .sec--paper, .sec--paper + .sec--bone { border-top: 1px solid var(--hairline); }

/* ------------------------------------------------- 10. Catalog index table */
.index { border-top: 1px solid var(--ink); }
.index__row {
  display: grid;
  grid-template-columns: 76px minmax(0, 1.05fr) minmax(0, 1.5fr) 180px;
  gap: 24px;
  align-items: start;
  padding: 30px 0;
  border-bottom: 1px solid var(--hairline);
  transition: background-color .25s var(--ease), padding-left .25s var(--ease);
}
.index__row:hover { background: rgba(14,140,127,.055); padding-left: 14px; }
.index__no {
  font-family: var(--mono); font-size: .78rem; font-weight: 700;
  letter-spacing: .12em; color: var(--teal-deep); padding-top: 6px;
  font-variant-numeric: tabular-nums;
}
.index__name { font-family: var(--display); font-size: clamp(1.3rem, 2.1vw, 1.7rem); line-height: 1.16; color: var(--text); }
.index__name small {
  display: block; font-family: var(--mono); font-size: .62rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-top: 10px;
}
.index__desc { font-size: .96rem; color: var(--muted); padding-top: 4px; }
.index__aside { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; padding-top: 4px; }
.index__count {
  font-family: var(--mono); font-size: .72rem; color: var(--body);
  font-variant-numeric: tabular-nums; letter-spacing: .08em;
}
@media (max-width: 1000px) {
  .index__row { grid-template-columns: 60px minmax(0, 1fr); gap: 16px 20px; }
  .index__desc { grid-column: 2; }
  .index__aside { grid-column: 2; flex-direction: row; align-items: center; }
}

/* photo strip under the index */
.strip {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px; background: var(--hairline); border: 1px solid var(--hairline);
  margin-top: clamp(40px, 5vw, 64px);
}
.strip figure { margin: 0; background: var(--paper); overflow: hidden; }
.strip img { width: 100%; aspect-ratio: 3/2; object-fit: cover; transition: transform 6s var(--ease); }
.strip figure:hover img { transform: scale(1.05); }
.strip figcaption {
  font-family: var(--mono); font-size: .6rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--muted); padding: 12px 14px;
}
@media (max-width: 820px) { .strip { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* --------------------------------------- 11. Brand register (typographic wall) */
.register { border-top: 2px solid var(--ink); }

/* mono spec strip across the top of the register */
.register__spec {
  display: flex; flex-wrap: wrap; gap: 10px 44px;
  padding: 14px 0 26px;
  border-bottom: 1px solid var(--hairline);
  margin-bottom: clamp(30px, 4vw, 46px);
  font-family: var(--mono); font-size: .64rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.register__spec b { color: var(--teal-deep); font-weight: 700; }

/* the wall itself: brand names set as running display type */
.register__wall {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.45rem, 3.1vw, 2.55rem);
  line-height: 1.62;
  color: var(--text);
  margin: 0;
  letter-spacing: -.015em;
  text-wrap: pretty;
}
.reg {
  display: inline;
  position: relative;
  white-space: nowrap;          /* keeps the name and its separator on one line */
  padding: .06em .1em;
  margin: 0 .04em;
  transition: background-color .2s var(--ease), color .2s var(--ease);
}
.reg:hover { background: var(--teal-tint); color: var(--teal-deep); }
.reg__n {
  font-family: var(--mono);
  font-size: .3em;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--teal-deep);
  vertical-align: .95em;
  margin-right: .35em;
  font-variant-numeric: tabular-nums;
}
/* teal square separator trailing each entry (sits at line ends on wrap) */
.reg:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: .16em; height: .16em;
  background: var(--teal);
  vertical-align: .28em;
  margin: 0 .1em 0 .46em;
}
.register__note {
  margin-top: clamp(30px, 4vw, 46px);
  padding-top: 22px;
  border-top: 1px solid var(--hairline);
  font-size: .88rem; color: var(--muted);
  display: flex; flex-wrap: wrap; gap: 14px 28px; align-items: center;
  justify-content: space-between;
}
.register__note span { max-width: 74ch; }
@media (max-width: 640px) {
  .register__wall { line-height: 1.55; }
  .reg__n { font-size: .34em; }
}

/* marquee ribbon (inside dark band) */
.ribbon {
  border-top: 1px solid var(--hairline-dark);
  border-bottom: 1px solid var(--hairline-dark);
  overflow: hidden;
  padding: 18px 0;
  margin-top: clamp(40px, 5vw, 64px);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ribbon__track { display: flex; width: max-content; animation: slide 48s linear infinite; }
.ribbon__set { display: flex; align-items: center; flex: none; }
.ribbon__item {
  font-family: var(--display); font-size: 1.28rem; color: var(--muted-dark);
  padding: 0 30px; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 30px;
}
.ribbon__item::after {
  content: ""; width: 6px; height: 6px;
  background: var(--teal); opacity: .8;
}
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ------------------------------------------------------------ 12. Process */
.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; }
.step {
  padding: 34px 26px 34px 0;
  border-top: 2px solid var(--teal);
  position: relative;
}
.step + .step { padding-left: 26px; border-left: 1px solid var(--hairline); }
.step:last-child { padding-right: 0; }
.step__no {
  font-family: var(--mono); font-size: .72rem; font-weight: 700; letter-spacing: .18em;
  color: var(--teal-deep); display: block; margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
}
.step h3 { margin: 0 0 12px; font-size: 1.28rem; }
.step p { font-size: .94rem; color: var(--muted); margin: 0; }
@media (max-width: 900px) {
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .step:nth-child(odd) { padding-left: 0; border-left: 0; }
  .step:nth-child(even) { padding-right: 0; }
}
@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
  .step { padding-inline: 0; border-left: 0; }
}

/* ------------------------------------------------------ 13. Who we serve */
.serve { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(20px, 2.6vw, 34px); }
.serve__card { border: 1px solid var(--hairline); background: var(--paper); border-radius: var(--radius); overflow: hidden; }
.serve__media { overflow: hidden; border-bottom: 1px solid var(--hairline); }
.serve__media img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  filter: grayscale(.7) contrast(1.04) brightness(1.02);
  transition: transform 6s var(--ease), filter .5s var(--ease);
}
.serve__card:hover .serve__media img { transform: scale(1.04); filter: grayscale(0) contrast(1) brightness(1); }
.serve__body { padding: 26px 24px 28px; }
.serve__body h3 { margin: 0 0 12px; }
.serve__body p { font-size: .95rem; color: var(--muted); margin: 0 0 16px; }
.serve__list { margin: 0; padding: 0; list-style: none; display: grid; gap: 7px; border-top: 1px solid var(--hairline-soft); padding-top: 16px; }
.serve__list li {
  font-family: var(--mono); font-size: .64rem; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; color: var(--body);
  display: flex; gap: 9px; align-items: baseline;
}
.serve__list li::before { content: "—"; color: var(--teal); }
@media (max-width: 900px) { .serve { grid-template-columns: 1fr; } }

/* --------------------------------------------- 14. Authenticity dark band */
.band { position: relative; background: var(--ink); color: var(--on-dark); overflow: hidden; }
.band h2, .band h3, .band h4 { color: var(--on-dark); }
.band__bg { position: absolute; inset: 0; z-index: 0; }
.band__bg img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.15); opacity: .26; }
.band__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18,25,27,.84), rgba(18,25,27,.94));
}
.band > .wrap { position: relative; z-index: 1; }
.band__grid {
  display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 5vw, 72px); align-items: start;
}
.proof { display: grid; gap: 0; }
.proof__item { padding: 26px 0; border-top: 1px solid var(--hairline-dark); }
.proof__item:last-child { border-bottom: 1px solid var(--hairline-dark); }
.proof__item h3 { font-size: 1.32rem; margin: 0 0 10px; }
.proof__item p { color: var(--muted-dark); font-size: .95rem; margin: 0; }
.band__quote {
  font-family: var(--display); font-style: italic;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem); line-height: 1.36;
  color: var(--teal-soft); border-left: 2px solid var(--teal);
  padding-left: 24px; margin: 32px 0 0;
}
@media (max-width: 900px) { .band__grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------- 15. Stats */
.stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--hairline); }
.stat { padding: clamp(28px, 3vw, 42px) 24px clamp(28px, 3vw, 42px) 0; }
.stat + .stat { border-left: 1px solid var(--hairline); padding-left: 26px; }
.stat__n {
  font-family: var(--display); font-size: clamp(2.4rem, 4.6vw, 3.6rem); line-height: 1;
  color: var(--teal-deep); font-variant-numeric: tabular-nums; margin: 0 0 12px;
}
.stat__l {
  font-family: var(--mono); font-size: .63rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--muted); margin: 0;
}
@media (max-width: 820px) {
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat:nth-child(odd) { padding-left: 0; border-left: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--hairline); }
}
@media (max-width: 480px) {
  .stats { grid-template-columns: 1fr; }
  .stat { padding-inline: 0; border-left: 0; }
  .stat + .stat { border-top: 1px solid var(--hairline); padding-left: 0; }
}

/* ---------------------------------------------------- 16. Journal teasers */
.posts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(22px, 2.8vw, 36px); }
.post {
  display: flex; flex-direction: column;
  border: 1px solid var(--hairline); background: var(--paper);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color .22s var(--ease), transform .22s var(--ease);
}
.post:hover { border-color: var(--teal); transform: translateY(-3px); }
.post__media { overflow: hidden; border-bottom: 1px solid var(--hairline); }
.post__media img { width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform 6s var(--ease); }
.post:hover .post__media img { transform: scale(1.045); }
.post__body { padding: 24px 22px 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.post__cat {
  font-family: var(--mono); font-size: .6rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--teal-deep);
}
.post__title { font-family: var(--display); font-size: 1.3rem; line-height: 1.2; color: var(--text); margin: 0; }
.post__ex { font-size: .93rem; color: var(--muted); margin: 0; }
.post__meta {
  margin-top: auto; padding-top: 14px; border-top: 1px solid var(--hairline-soft);
  font-family: var(--mono); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); display: flex; gap: 12px; font-variant-numeric: tabular-nums;
}
@media (max-width: 900px) { .posts { grid-template-columns: 1fr; } }

/* ----------------------------------------------------------------- 17. FAQ */
.faq { border-top: 1px solid var(--ink); }
.faq__item { border-bottom: 1px solid var(--hairline); }
.faq__q {
  width: 100%; text-align: left; background: transparent; border: 0; cursor: pointer;
  display: flex; align-items: flex-start; gap: 20px; padding: 26px 0;
  font-family: var(--display); font-size: clamp(1.1rem, 1.7vw, 1.35rem); line-height: 1.28;
  color: var(--text);
}
.faq__q .num {
  font-family: var(--mono); font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  color: var(--teal-deep); padding-top: 7px; flex: none;
}
.faq__q .sign { margin-left: auto; flex: none; width: 16px; height: 16px; position: relative; margin-top: 8px; }
.faq__q .sign::before, .faq__q .sign::after {
  content: ""; position: absolute; background: var(--teal-deep); transition: transform .28s var(--ease), opacity .28s var(--ease);
}
.faq__q .sign::before { top: 7px; left: 0; width: 16px; height: 1.5px; }
.faq__q .sign::after  { left: 7px; top: 0; width: 1.5px; height: 16px; }
.faq__item.is-open .faq__q .sign::after { transform: rotate(90deg); opacity: 0; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .34s var(--ease); }
.faq__a > div { padding: 0 0 28px 46px; max-width: 68ch; color: var(--muted); font-size: .98rem; }
@media (max-width: 560px) { .faq__a > div { padding-left: 0; } }

/* ------------------------------------------------------ 18. Account form */
.account__grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 340px);
  gap: clamp(32px, 5vw, 72px); align-items: start;
}
.form { display: grid; gap: 34px; }
.fieldset { border: 0; margin: 0; padding: 0; }
.fieldset__legend {
  font-family: var(--mono); font-size: .66rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--teal-deep);
  padding: 0 0 14px; margin: 0 0 22px; width: 100%;
  border-bottom: 1px solid var(--hairline);
  display: flex; align-items: center; gap: 12px;
}
.fieldset__legend b { color: var(--muted); font-weight: 700; }
.grid2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 20px; }
.grid3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px 20px; }
.field { display: grid; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: .78rem; font-weight: 600; letter-spacing: .05em;
  text-transform: uppercase; color: var(--body);
}
.field label .req { color: var(--teal-deep); }
.field label .opt { color: var(--muted); font-weight: 400; text-transform: none; letter-spacing: 0; }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: .95rem; color: var(--text);
  background: var(--white); border: 1px solid var(--hairline);
  border-radius: var(--radius); padding: 13px 14px; width: 100%;
  transition: border-color .18s var(--ease), background-color .18s var(--ease);
}
.field textarea { min-height: 128px; resize: vertical; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%236B5D4C' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--teal); background: var(--teal-tint);
}
.field input.invalid, .field select.invalid, .field textarea.invalid { border-color: #A32C1E; background: #FBEDE9; }
.field__err { font-size: .78rem; color: #A32C1E; display: none; }
.field.has-error .field__err { display: block; }

.checkrow { display: flex; align-items: flex-start; gap: 11px; font-size: .88rem; color: var(--muted); }
.checkrow input { width: 17px; height: 17px; margin-top: 3px; accent-color: var(--teal-deep); flex: none; }

.form__foot { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 24px; }
.form__note { font-size: .84rem; color: var(--muted); max-width: 44ch; }
.form__note a { color: var(--teal-deep); border-bottom: 1px solid var(--teal-soft); }

.form__done { display: none; border: 1px solid var(--teal); background: var(--teal-tint); border-radius: var(--radius); padding: clamp(28px, 4vw, 44px); }
.form__done h3 { margin: 0 0 12px; }
.form__done p { color: var(--body); margin: 0 0 8px; max-width: 56ch; }
.is-sent .form { display: none; }
.is-sent .form__done { display: block; }

.aside {
  border: 1px solid var(--hairline); background: var(--paper);
  border-radius: var(--radius); padding: 28px 26px;
  position: sticky; top: 100px; display: grid; gap: 22px;
}
.aside__row { display: grid; gap: 6px; }
.aside__k {
  font-family: var(--mono); font-size: .6rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--muted);
}
.aside__v { font-size: .96rem; color: var(--text); font-weight: 500; }
.aside__v a { border-bottom: 1px solid var(--hairline); }
.aside__v a:hover { border-color: var(--teal); }
.aside hr { border-top: 1px solid var(--hairline-soft); }
@media (max-width: 1000px) {
  .account__grid { grid-template-columns: 1fr; }
  .aside { position: static; }
  .grid3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .grid2, .grid3 { grid-template-columns: 1fr; }
}

/* -------------------------------------------------------------- 19. Contact */
.contact__grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(28px, 4vw, 56px); align-items: stretch; }
.card {
  border: 1px solid var(--hairline); background: var(--paper);
  border-radius: var(--radius); padding: clamp(26px, 3vw, 38px);
  display: grid; gap: 24px; align-content: start;
}
.card__row { display: grid; gap: 7px; padding-bottom: 22px; border-bottom: 1px solid var(--hairline-soft); }
.card__row:last-child { border-bottom: 0; padding-bottom: 0; }
.card__k {
  font-family: var(--mono); font-size: .6rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--teal-deep);
}
.card__v { font-size: 1rem; color: var(--text); line-height: 1.55; }
.card__v a:hover { color: var(--teal-deep); }
.map { border: 1px solid var(--hairline); border-radius: var(--radius); overflow: hidden; min-height: 420px; background: var(--hairline-soft); }
.map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; filter: grayscale(.4) contrast(1.02); }
@media (max-width: 900px) { .contact__grid { grid-template-columns: 1fr; } }

/* ----------------------------------------------------------------- 20. CTA */
.cta { background: var(--ink); color: var(--on-dark); text-align: center; }
.cta h2 { max-width: 18ch; margin: 0 auto 20px; color: var(--on-dark); }
.cta .eyebrow { justify-content: center; }
.cta h2 em { color: var(--teal-soft); }
.cta .lead { margin: 0 auto 32px; color: var(--muted-dark); }
.cta .btnrow { justify-content: center; }
.cta__fine { margin-top: 26px; font-family: var(--mono); font-size: .64rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-dark); }

/* -------------------------------------------------------------- 21. Footer */
.ftr { background: var(--ink); color: var(--muted-dark); border-top: 1px solid var(--hairline-dark); }
.ftr__news {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 440px);
  gap: clamp(24px, 4vw, 56px); align-items: center;
  padding: clamp(40px, 5vw, 64px) 0; border-bottom: 1px solid var(--hairline-dark);
}
.ftr__news h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); color: var(--on-dark); margin: 0 0 8px; }
.ftr__news p { margin: 0; font-size: .9rem; }
.nform { display: flex; gap: 10px; flex-wrap: wrap; }
.nform input {
  flex: 1 1 200px; background: transparent; border: 1px solid var(--hairline-dark);
  border-radius: var(--radius); padding: 14px 15px; color: var(--on-dark);
  font-family: var(--sans); font-size: .92rem;
}
.nform input::placeholder { color: #7C6D5A; }
.nform input:focus { outline: none; border-color: var(--teal); }
.nform__fine { font-size: .76rem; color: #7C6D5A; margin-top: 12px; }
.nform__done { display: none; color: var(--teal-soft); font-size: .9rem; margin-top: 12px; }

.ftr__cols {
  display: grid; grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 56px); padding: clamp(44px, 5vw, 72px) 0;
}
.ftr__brand .mark__txt { color: var(--on-dark); }
.ftr__brand p { margin: 20px 0 0; font-size: .92rem; max-width: 34ch; }
.ftr h4 {
  font-family: var(--mono); font-size: .62rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--teal-soft); margin: 0 0 20px;
}
.ftr ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.ftr li { font-size: .92rem; }
.ftr li button {
  background: none; border: 0; padding: 0; margin: 0;
  font: inherit; color: inherit; cursor: pointer; text-align: left;
}
.ftr a { transition: color .18s var(--ease); }
.ftr a:hover { color: var(--teal-soft); }
.ftr__bottom {
  border-top: 1px solid var(--hairline-dark);
  padding: 24px 0 30px;
  display: flex; flex-wrap: wrap; gap: 12px 26px; align-items: center; justify-content: space-between;
  font-size: .82rem;
}
.ftr__legal { display: flex; flex-wrap: wrap; gap: 12px 22px; }
.ftr__legal button {
  background: transparent; border: 0; padding: 0; cursor: pointer;
  color: inherit; font: inherit; border-bottom: 1px solid transparent;
}
.ftr__legal button:hover { color: var(--teal-soft); border-bottom-color: var(--teal); }
@media (max-width: 900px) {
  .ftr__news, .ftr__cols { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------- 22. Modal */
.modal {
  position: fixed; inset: 0; z-index: 120;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(12px, 4vw, 44px);
  opacity: 0; visibility: hidden;
  transition: opacity .22s var(--ease), visibility .22s;
}
.modal.is-open { opacity: 1; visibility: visible; }
.modal__overlay { position: absolute; inset: 0; background: rgba(18,25,27,.74); backdrop-filter: blur(3px); }
.modal__panel {
  position: relative; z-index: 1;
  width: min(760px, 100%); max-height: min(86vh, 900px); overflow-y: auto;
  background: var(--paper); border: 1px solid var(--ink); border-radius: var(--radius);
  padding: clamp(28px, 4vw, 46px);
  transform: translateY(16px) scale(.985);
  transition: transform .24s var(--ease);
}
.modal.is-open .modal__panel { transform: none; }
.modal__close {
  position: absolute; top: 14px; right: 14px;
  width: 40px; height: 40px; border: 1px solid var(--hairline); background: var(--paper);
  border-radius: var(--radius); cursor: pointer; color: var(--ink);
  font-size: 19px; line-height: 1;
  transition: background-color .18s var(--ease), color .18s var(--ease);
}
.modal__close:hover { background: var(--ink); color: var(--paper); }
.modal__panel h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 0 0 10px; }
.modal__panel h3 { font-size: 1.08rem; margin: 26px 0 10px; }
.modal__panel p, .modal__panel li { font-size: .95rem; color: var(--muted); }
.modal__panel ul { padding-left: 20px; margin: 0 0 14px; display: grid; gap: 7px; }
.modal__meta {
  font-family: var(--mono); font-size: .62rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 22px;
  padding-bottom: 18px; border-bottom: 1px solid var(--hairline);
}
.modal--form .modal__panel { width: min(620px, 100%); }

/* ----------------------------------------------------------- 23. Blog pages */
.crumbs {
  font-family: var(--mono); font-size: .64rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted);
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-bottom: 26px;
}
.crumbs a:hover { color: var(--teal-deep); }
.crumbs span { color: var(--hairline); }

.phead { padding: clamp(40px, 5vw, 72px) 0 clamp(28px, 3vw, 40px); }
.phead h1 { font-size: clamp(2.1rem, 4.6vw, 3.6rem); max-width: 20ch; margin: 0 0 24px; }
.pmeta {
  display: flex; flex-wrap: wrap; gap: 10px 26px; align-items: center;
  font-family: var(--mono); font-size: .64rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted);
  padding: 18px 0; border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline);
  font-variant-numeric: tabular-nums;
}
.pcover { margin: clamp(28px, 4vw, 48px) auto; max-width: 940px; }

.prose { max-width: 72ch; margin-inline: auto; font-size: 1.06rem; }
.prose > * { margin-inline: auto; }
.prose h2 { font-size: clamp(1.6rem, 2.8vw, 2.1rem); margin: 52px 0 16px; }
.prose h3 { font-size: 1.24rem; margin: 34px 0 12px; }
.prose p { margin: 0 0 1.15em; color: var(--body); }
.prose ul, .prose ol { margin: 0 0 1.3em; padding-left: 22px; display: grid; gap: 9px; color: var(--body); }
.prose li::marker { color: var(--teal); }
.prose strong { color: var(--text); }
.prose a { color: var(--teal-deep); border-bottom: 1px solid var(--teal-soft); }
.prose blockquote {
  margin: 30px 0; padding: 4px 0 4px 24px; border-left: 2px solid var(--teal);
  font-family: var(--display); font-style: italic; font-size: 1.24rem; line-height: 1.42; color: var(--text);
}
.prose figure { margin: 34px 0; }
.prose table { width: 100%; border-collapse: collapse; margin: 0 0 1.4em; font-size: .93rem; }
.prose th, .prose td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--hairline); }
.prose th {
  font-family: var(--mono); font-size: .62rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); border-bottom-color: var(--ink);
}
.prose td { color: var(--body); font-variant-numeric: tabular-nums; }

.takeaways {
  border: 1px solid var(--teal-soft); background: var(--teal-tint);
  border-left: 3px solid var(--teal);
  border-radius: var(--radius); padding: 28px 28px 30px; margin: 40px 0;
}
.takeaways h3 {
  font-family: var(--mono); font-size: .66rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--teal-deep); margin: 0 0 16px;
}
.takeaways ul { margin: 0; padding-left: 20px; display: grid; gap: 10px; }
.takeaways li { color: var(--body); font-size: .97rem; }

.pfoot {
  max-width: 72ch; margin: 48px auto 0; padding-top: 28px; border-top: 1px solid var(--hairline);
  display: flex; flex-wrap: wrap; gap: 16px 28px; justify-content: space-between; align-items: center;
}

.plist { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(22px, 3vw, 38px); }
@media (max-width: 820px) { .plist { grid-template-columns: 1fr; } }

.post--wide { flex-direction: row; }
.post--wide .post__media { border-bottom: 0; border-right: 1px solid var(--hairline); flex: 0 0 44%; }
.post--wide .post__media img { height: 100%; aspect-ratio: auto; min-height: 260px; }
@media (max-width: 720px) {
  .post--wide { flex-direction: column; }
  .post--wide .post__media { border-right: 0; border-bottom: 1px solid var(--hairline); flex: none; }
  .post--wide .post__media img { min-height: 0; aspect-ratio: 16/9; }
}

/* --------------------------------------------------------- 24. 404 / misc */
.center-pad { padding: clamp(80px, 14vw, 180px) 0; text-align: center; }
.center-pad .lead { margin-inline: auto; }
.center-pad .btnrow { justify-content: center; margin-top: 30px; }

/* --------------------------------------------------------- 25. Reveal / motion */
.reveal { opacity: 0; transform: translateY(18px); }
.reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity .55s var(--ease), transform .55s var(--ease);
  transition-delay: var(--d, 0ms);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .ribbon__track { animation: none; }
  .plate:hover .plate__img img,
  .strip figure:hover img,
  .post:hover .post__media img { transform: none; }
}

@media print {
  .topbar, .hdr, .drawer, .modal, .band__bg, .map, .ftr__news { display: none !important; }
  body { background: #fff; }
}
