/* =====================================================================
   Odinzone Labs LLC — corporate site
   Concept: the house is monochrome; the brands bring the colour.
   Type: Instrument Serif (display) · Instrument Sans (body) · IBM Plex Mono (labels)
   ===================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Apple-black neutrals — the "house" */
  --ink:        #000000;
  --ink-2:      #1d1d1f;
  --ink-3:      #2a2a2c;
  --bone:       #f5f5f7;
  --bone-dim:   #a1a1a6;
  --taupe:      #86868b;
  --line:       rgba(245, 245, 247, 0.11);
  --line-2:     rgba(245, 245, 247, 0.20);

  /* Brand accents — the only colour on the site */
  --c-designodin:    #c47445;  /* copper   */
  --c-atlasway:      #cf9b3e;  /* gold     */
  --c-odinbrain:     #ff5c3c;  /* coral    */
  --c-goneglobe:     #e0a45e;  /* amber    */
  --c-cityraze:      #46a0b8;  /* teal     */
  --c-sailraze:      #4c8fe0;  /* blue     */
  --c-passraze:      #74b56d;  /* green    */
  --c-octobazaar:    #9b6cff;  /* violet   */
  --c-ohsticker:     #ff5678;  /* oh-pink  */
  --c-literalfactory:#93a3b3;  /* slate (placeholder — no brand colour defined yet) */

  --serif: "Instrument Serif", "Times New Roman", Georgia, serif;
  --sans:  "Instrument Sans", ui-sans-serif, system-ui, sans-serif;
  --mono:  "IBM Plex Mono", ui-monospace, "SFMono-Regular", monospace;

  --maxw: 1340px;
  --pad: clamp(1.25rem, 5vw, 4rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

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

body {
  background: var(--ink);
  color: var(--bone);
  font-family: var(--sans);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Grain / atmosphere */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
/* Warm radial breath behind the top of the page */
body::after {
  content: "";
  position: fixed;
  top: -30vh; left: 50%;
  width: 90vw; height: 80vh;
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(50% 50% at 50% 50%, rgba(245, 245, 247, 0.055), transparent 70%);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

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

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.shell { position: relative; z-index: 1; }

.eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe);
  font-weight: 500;
}

/* ---------- Header ---------- */
.site-head {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
  /* Full-bleed bar, but pull the row in to line up with the content column */
  padding-block: 1.05rem;
  padding-inline: max(var(--pad), calc((100% - var(--maxw)) / 2 + var(--pad)));
  background: color-mix(in srgb, var(--ink) 82%, transparent);
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; gap: 0.6rem; }
.brand__mark { width: 34px; height: 34px; }
.brand__name {
  font-family: var(--serif);
  font-size: 1.4rem;
  letter-spacing: 0.01em;
  line-height: 1;
  padding-top: 3px;
}
.brand__labs { color: var(--taupe); }

.site-nav { display: flex; align-items: center; gap: 0.35rem; flex-wrap: wrap; }
.site-nav a {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-dim);
  padding: 0.45rem 0.7rem;
  border-radius: 100px;
  transition: color 0.25s var(--ease), background 0.25s var(--ease);
}
.site-nav a:hover { color: var(--bone); }
.site-nav a[aria-current="page"] { color: var(--bone); background: var(--ink-3); }
.site-nav__cta { color: var(--ink) !important; background: var(--bone); }
.site-nav__cta:hover { background: #fff; }

/* ---------- Hero (home) ---------- */
.hero {
  padding-block: clamp(4rem, 12vh, 9rem) clamp(3rem, 8vh, 6rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 400px);
  gap: clamp(2rem, 4.5vw, 4.5rem);
  align-items: center;
}
.hero__eyebrow { margin-bottom: 1.75rem; }
.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.9rem, 1.6rem + 6vw, 6.5rem);
  line-height: 0.98;
  letter-spacing: -0.015em;
  max-width: 15ch;
}
.hero__title em { font-style: italic; color: var(--bone-dim); }
/* Kinetic headline — the emphasized word cycles (see site.js) */
.hero__title em.rotator {
  display: inline-block;
  transition: opacity 0.26s var(--ease), transform 0.26s var(--ease);
}
.hero__title em.is-out   { opacity: 0; transform: translateY(-0.72em) skewX(-6deg); }
.hero__title em.is-below { opacity: 0; transform: translateY(0.62em) skewX(6deg); }
.hero__lede {
  margin-top: 1.9rem;
  max-width: 48ch;
  font-size: clamp(1.1rem, 1.02rem + 0.4vw, 1.35rem);
  line-height: 1.55;
  color: var(--bone-dim);
}
.hero__actions { margin-top: 2.4rem; display: flex; gap: 0.9rem; flex-wrap: wrap; }

/* ---------- "In the lab" hero tracker ---------- */
.lab-panel {
  --c: var(--taupe);
  position: relative;
  margin-top: 0;
  width: 100%;
  max-width: 560px;
  justify-self: end;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--ink-2) 90%, transparent), color-mix(in srgb, var(--ink) 96%, transparent));
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(1.2rem, 3vw, 1.7rem) clamp(1.25rem, 3vw, 1.85rem) clamp(1.1rem, 3vw, 1.5rem);
  box-shadow: 0 40px 90px -50px rgba(0, 0, 0, 0.95), inset 0 1px 0 rgba(245, 245, 247, 0.045);
  perspective: 900px;
}
/* Inner wrapper carries the cursor tilt (see initTilt); the outer panel
   keeps the reveal entrance, so the two transforms never collide. */
.lab-panel__inner {
  transform-style: preserve-3d;
  will-change: transform;
}
/* A specular highlight rides the tilt — sells the depth and adds presence */
.lab-panel::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  pointer-events: none; z-index: 2;
  opacity: 0; transition: opacity 0.45s var(--ease);
  background: radial-gradient(26rem 26rem at var(--mx, 50%) var(--my, 50%),
    color-mix(in srgb, var(--bone) 12%, transparent), transparent 55%);
  mix-blend-mode: screen;
}
.lab-panel.tilting::after { opacity: 1; }
.lab-panel__top {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  margin-bottom: 1.05rem;
}
.lab-panel__label {
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--bone-dim);
}
.lab-panel__live {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--c); transition: color 0.5s var(--ease);
}
.lab-panel__live i {
  width: 7px; height: 7px; border-radius: 100px; background: var(--c);
  transition: background 0.5s var(--ease);
  animation: labpulse 2.2s var(--ease) infinite;
}
@keyframes labpulse {
  0%   { box-shadow: 0 0 0 0 color-mix(in srgb, var(--c) 55%, transparent); }
  70%  { box-shadow: 0 0 0 7px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

.lab-steps { list-style: none; margin: 0; padding: 0; }
.lab-step {
  display: grid; grid-template-columns: 1.5rem 1rem 1fr auto;
  align-items: center; gap: 0.7rem;
  padding: 0.7rem 0; border-top: 1px solid var(--line);
}
.lab-step:first-child { border-top: 0; }
.lab-step__no {
  font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.08em;
  color: var(--taupe); transition: color 0.45s var(--ease);
}
.lab-step__tick {
  color: var(--c); font-size: 0.82rem; justify-self: center; line-height: 1;
  opacity: 0; transform: scale(0.4);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.lab-step__name {
  font-size: 0.98rem; color: var(--bone-dim); transition: color 0.45s var(--ease);
}
.lab-step__stat {
  font-family: var(--mono); font-size: 0.63rem; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--taupe);
  opacity: 0; transform: translateX(-6px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease), color 0.45s var(--ease);
}
.lab-step.done .lab-step__no   { color: var(--c); }
.lab-step.done .lab-step__tick { opacity: 1; transform: none; }
.lab-step.done .lab-step__name { color: var(--bone); }
.lab-step.done .lab-step__stat { opacity: 1; transform: none; color: var(--c); }

.lab-panel__result {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  margin-top: 1.05rem; padding-top: 1.05rem; border-top: 1px solid var(--line-2);
}
.lab-result__brand {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--serif); font-size: clamp(1.35rem, 1.1rem + 1vw, 1.8rem);
  line-height: 1; color: var(--bone);
  opacity: 0; transform: translateY(7px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.lab-result__dot {
  width: 11px; height: 11px; border-radius: 100px; background: var(--c);
  box-shadow: 0 0 16px 1px color-mix(in srgb, var(--c) 55%, transparent);
  transition: background 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.lab-result__name { color: var(--c); transition: color 0.5s var(--ease); }
.lab-result__div {
  font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--taupe);
  opacity: 0; transition: opacity 0.55s var(--ease);
}
.lab-panel__result.show .lab-result__brand { opacity: 1; transform: none; }
.lab-panel__result.show .lab-result__div   { opacity: 1; }

.lab-panel__note {
  display: flex; align-items: baseline; gap: 0.6rem;
  margin-top: 0.95rem; opacity: 0; transition: opacity 0.55s var(--ease);
}
.lab-panel__result.show ~ .lab-panel__note { opacity: 1; }
.lab-note__by {
  font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--c); white-space: nowrap;
  transition: color 0.5s var(--ease); padding-top: 0.1rem;
}
.lab-note__txt {
  font-family: var(--serif); font-style: italic;
  font-size: 1.02rem; line-height: 1.3; color: var(--bone-dim);
}

/* ---------- Buttons / inline links ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--mono);
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.85rem 1.25rem;
  border-radius: 100px;
  border: 1px solid var(--line-2);
  color: var(--bone);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.btn .arw { transition: transform 0.3s var(--ease); }
.btn:hover { border-color: var(--bone); }
.btn:hover .arw { transform: translateX(4px); }
.btn--solid { background: var(--bone); color: var(--ink); border-color: var(--bone); }
.btn--solid:hover { transform: translateY(-2px); }

/* ---------- Pointer-reactive interaction layer ---------- */
/* House light — a soft bone glow trails the cursor across the black canvas */
.cursor-glow {
  position: fixed; left: 0; top: 0; z-index: 0;
  width: 48rem; height: 48rem; border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(closest-side,
    color-mix(in srgb, var(--bone) 10%, transparent), transparent 70%);
  transform: translate3d(calc(var(--gx, 50vw) - 50%), calc(var(--gy, 30vh) - 50%), 0);
  opacity: 0; transition: opacity 0.6s var(--ease);
  will-change: transform;
}
.cursor-glow.on { opacity: 1; }

/* Scroll progress — a thin bone hairline across the very top */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 100%;
  transform: scaleX(0); transform-origin: 0 50%;
  background: var(--bone); opacity: 0.85;
  z-index: 100; pointer-events: none; will-change: transform;
}

/* Accent spotlight — a light in each card's own colour follows the cursor.
   Divisions carry no --c, so they light bone-white; brand cards light in
   their brand hue. Set via --mx/--my in site.js. */
.division::after,
.brand-card::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  pointer-events: none; opacity: 0;
  transition: opacity 0.45s var(--ease);
  background: radial-gradient(22rem 22rem at var(--mx, 50%) var(--my, 50%),
    color-mix(in srgb, var(--c, var(--bone)) 20%, transparent), transparent 58%);
}
.division:hover::after,
.brand-card:hover::after { opacity: 1; }

/* ---------- Section scaffolding ---------- */
.section { padding-block: clamp(3.5rem, 9vh, 7rem); }
.section__head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 2.75rem; flex-wrap: wrap; }
.section__title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.9rem, 1.4rem + 2vw, 3rem);
  line-height: 1.02; letter-spacing: -0.01em;
}
.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

/* ---------- Divisions index (home) ---------- */
.divisions { display: flex; flex-direction: column; }
.division {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(1rem, 4vw, 3.5rem);
  align-items: center;
  padding: clamp(1.75rem, 4vw, 2.75rem) 0;
  border-top: 1px solid var(--line);
  transition: background 0.4s var(--ease);
}
.division:last-child { border-bottom: 1px solid var(--line); }
.division::before {
  content: ""; position: absolute; left: calc(-1 * var(--pad)); right: calc(-1 * var(--pad)); top: 0; bottom: 0;
  background: linear-gradient(90deg, color-mix(in srgb, var(--ink-2) 90%, transparent), transparent 60%);
  opacity: 0; transition: opacity 0.4s var(--ease); pointer-events: none; z-index: -1;
}
.division:hover::before { opacity: 1; }
.division__no {
  font-family: var(--mono); font-size: 0.85rem; letter-spacing: 0.1em;
  color: var(--taupe); padding-top: 0.4rem;
}
.division__name {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2rem, 1.4rem + 3vw, 3.6rem); line-height: 1; letter-spacing: -0.01em;
}
.division__desc { margin-top: 0.55rem; color: var(--bone-dim); max-width: 46ch; }
.division__brands {
  list-style: none; padding: 0; margin: 1.1rem 0 0;
  display: flex; flex-wrap: wrap; gap: 0.4rem 1.4rem;
}
.division__brands li {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--mono); font-size: 0.76rem; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--bone-dim);
}
.division__brands li::before {
  content: ""; width: 8px; height: 8px; border-radius: 100px;
  background: var(--c, var(--taupe));
  box-shadow: 0 0 0 0 color-mix(in srgb, var(--c, var(--taupe)) 60%, transparent);
  transition: box-shadow 0.4s var(--ease);
}
.division:hover .division__brands li::before { box-shadow: 0 0 14px 1px color-mix(in srgb, var(--c, var(--taupe)) 55%, transparent); }
.division__go {
  font-family: var(--serif); font-size: 2rem; color: var(--taupe);
  transition: transform 0.4s var(--ease), color 0.4s var(--ease);
  justify-self: end;
}
.division:hover .division__go { transform: translateX(8px); color: var(--bone); }

/* ---------- Marquee credibility strip ---------- */
.ticker {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  overflow: hidden; padding: 1.05rem 0; white-space: nowrap;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ticker__row { display: inline-flex; gap: 2.5rem; animation: slide 34s linear infinite; }
.ticker:hover .ticker__row { animation-play-state: paused; }
.ticker__row span {
  font-family: var(--mono); font-size: 0.76rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--taupe);
}
.ticker__row span::after { content: "·"; margin-left: 2.5rem; color: var(--line-2); }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- Page intro (inner pages) ---------- */
.page-intro { padding-block: clamp(3.5rem, 11vh, 7rem) clamp(1.5rem, 4vh, 3rem); }
.page-intro__eyebrow { margin-bottom: 1.5rem; }
.page-intro__title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.6rem, 1.6rem + 5vw, 5.5rem); line-height: 1; letter-spacing: -0.015em;
}
.page-intro__lede {
  margin-top: 1.8rem; max-width: 60ch; font-size: clamp(1.08rem, 1rem + 0.45vw, 1.3rem);
  line-height: 1.6; color: var(--bone-dim);
}
.page-intro__lede + .page-intro__lede { margin-top: 1rem; }

/* ---------- Brand showcase (inner pages) ---------- */
.brands { display: flex; flex-direction: column; }
.brand-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: end;
  padding: clamp(2rem, 5vw, 3.25rem) 0;
  border-top: 1px solid var(--line);
}
.brands .brand-card:last-child { border-bottom: 1px solid var(--line); }
.brand-card__accent {
  position: absolute; left: calc(-1 * var(--pad)); top: -1px; bottom: 0; width: 3px;
  background: var(--c, var(--taupe));
  transform: scaleY(0); transform-origin: top;
  transition: transform 0.5s var(--ease);
}
.brand-card:hover .brand-card__accent { transform: scaleY(1); }
.brand-card__eyebrow {
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--c, var(--taupe)); margin-bottom: 0.9rem; display: flex; align-items: center; gap: 0.6rem;
}
.brand-card__eyebrow::before {
  content: ""; width: 9px; height: 9px; border-radius: 100px; background: var(--c, var(--taupe));
}
.brand-card__name {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.3rem, 1.6rem + 3.5vw, 4rem); line-height: 1; letter-spacing: -0.01em;
}
.brand-card__name .lower { text-transform: none; }
.brand-card__desc { margin-top: 1rem; max-width: 52ch; color: var(--bone-dim); }
.brand-card__meta {
  margin-top: 1.15rem; font-family: var(--mono); font-size: 0.72rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--taupe);
}
.visit {
  display: inline-flex; align-items: center; gap: 0.55rem; white-space: nowrap;
  font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--bone);
  padding: 0.8rem 1.15rem; border-radius: 100px; border: 1px solid var(--line-2);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
}
.visit .arw { transition: transform 0.3s var(--ease); }
.brand-card:hover .visit { border-color: var(--c, var(--bone)); color: var(--bone); }
.brand-card:hover .visit .arw { transform: translate(3px, -3px); }

/* ---------- Sub-group label (e.g. "the raze family") ---------- */
.sub-label {
  display: flex; align-items: center; gap: 1.1rem;
  padding: clamp(2.25rem, 5vw, 3.25rem) 0 0.25rem;
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--taupe);
}
.sub-label::after { content: ""; flex: 1; height: 1px; background: var(--line); }

/* ---------- About: centred, wider single column ---------- */
.about .wrap { max-width: 900px; }
.about .prose { max-width: none; }
.about .facts { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 640px) { .about .facts { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 400px) { .about .facts { grid-template-columns: 1fr; } }

/* ---------- Prose (About) ---------- */
.prose { max-width: 68ch; }
.prose p {
  color: var(--bone-dim);
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.24rem);
  line-height: 1.72; margin-bottom: 1.35rem;
}
.prose p.lead { color: var(--bone); }
.prose h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.7rem, 1.3rem + 1.6vw, 2.5rem);
  line-height: 1.05; letter-spacing: -0.01em; color: var(--bone);
  margin: clamp(2.75rem, 6vw, 4.25rem) 0 1.5rem;
}

/* ---------- Fact tiles (About) ---------- */
.facts {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
  gap: 1px; background: var(--line); border: 1px solid var(--line);
  border-radius: 16px; overflow: hidden; margin-top: clamp(2.75rem, 6vw, 4.25rem);
}
.facts__item { background: var(--ink); padding: clamp(1.5rem, 3vw, 2.1rem); }
.facts__k {
  font-family: var(--mono); font-size: 0.67rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--taupe); display: block; margin-bottom: 0.75rem;
}
.facts__v {
  font-family: var(--serif); font-size: clamp(1.5rem, 1.2rem + 1vw, 2.1rem);
  line-height: 1.12; color: var(--bone);
}
.facts__v small {
  display: block; font-family: var(--sans); font-size: 0.88rem;
  color: var(--bone-dim); margin-top: 0.4rem; letter-spacing: 0;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(2rem, 6vw, 5rem);
  align-items: start; padding-bottom: clamp(3rem, 9vh, 6rem);
}
.contact-mail {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.6rem, 1rem + 3vw, 3rem); line-height: 1.1; color: var(--bone);
  display: inline-block; margin-top: 1.25rem;
  border-bottom: 1px solid var(--line-2); padding-bottom: 0.25rem;
  transition: border-color 0.3s var(--ease);
}
.contact-mail:hover { border-color: var(--bone); }
.contact-block { margin-bottom: 2rem; }
.contact-block h4 {
  font-family: var(--mono); font-size: 0.67rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--taupe); margin-bottom: 0.65rem; font-weight: 500;
}
.contact-block p { color: var(--bone-dim); }
.contact-block a { color: var(--bone-dim); transition: color 0.25s var(--ease); }
.contact-block a:hover { color: var(--bone); }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-foot {
  border-top: 1px solid var(--line);
  margin-top: clamp(3rem, 8vh, 6rem);
  padding: clamp(2.75rem, 6vw, 4.5rem) 0 2.5rem;
}
.foot__grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.foot__brand { display: inline-flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem; }
.foot__brand img { width: 30px; height: 30px; }
.foot__brand span { font-family: var(--serif); font-size: 1.25rem; }
.foot__tag { color: var(--taupe); max-width: 34ch; font-size: 0.95rem; }
.foot__col h4 {
  font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--taupe); font-weight: 500; margin-bottom: 1rem;
}
.foot__col a, .foot__col p { display: block; color: var(--bone-dim); font-size: 0.92rem; padding: 0.18rem 0; }
.foot__col a { transition: color 0.25s var(--ease); }
.foot__col a:hover { color: var(--bone); }
.foot__legal {
  margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--taupe);
}

/* ---------- Entrance motion ---------- */
/* Hidden only when JS is present (html.js); each block plays its rise
   when it scrolls into view (.is-in, added by site.js). Without JS the
   content is simply visible — no dependency on scripts to read the site. */
@keyframes rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
.js .reveal { opacity: 0; }
.js .reveal.is-in { animation: rise 0.9s var(--ease) forwards; }
.reveal.is-in[data-d="1"] { animation-delay: 0.04s; }
.reveal.is-in[data-d="2"] { animation-delay: 0.12s; }
.reveal.is-in[data-d="3"] { animation-delay: 0.20s; }
.reveal.is-in[data-d="4"] { animation-delay: 0.28s; }
.reveal.is-in[data-d="5"] { animation-delay: 0.36s; }
.reveal.is-in[data-d="6"] { animation-delay: 0.44s; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; align-items: start; }
  .lab-panel { justify-self: start; margin-top: clamp(2.5rem, 8vw, 3.5rem); }
}
@media (max-width: 820px) {
  .site-head { flex-direction: column; align-items: flex-start; gap: 0.85rem; }
  .site-nav { width: 100%; }
  .site-nav a { padding: 0.4rem 0.55rem; }
  .division { grid-template-columns: auto 1fr; }
  .division__go { display: none; }
  .brand-card { grid-template-columns: 1fr; align-items: start; }
  .foot__grid { grid-template-columns: 1fr 1fr; }
  .foot__brandcol { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .foot__grid { grid-template-columns: 1fr; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .js .reveal { opacity: 1; animation: none; }
  .ticker__row { animation: none; }
  .lab-panel__live i { animation: none; }
  * { transition-duration: 0.001ms !important; }
}
