/* TrendHive — site styles
   Concept: the hive. Hexagonal cells carry every photo; the comb fills as you scroll.
   Palette: warm ink, honey amber, wax, white. */

@font-face { font-family: "Bricolage"; src: url("../fonts/bricolage-grotesque-latin-700-normal.woff2") format("woff2"); font-weight: 700; font-display: swap; }
@font-face { font-family: "Bricolage"; src: url("../fonts/bricolage-grotesque-latin-800-normal.woff2") format("woff2"); font-weight: 800; font-display: swap; }
@font-face { font-family: "Instrument"; src: url("../fonts/instrument-sans-latin-400-normal.woff2") format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Instrument"; src: url("../fonts/instrument-sans-latin-500-normal.woff2") format("woff2"); font-weight: 500; font-display: swap; }
@font-face { font-family: "Instrument"; src: url("../fonts/instrument-sans-latin-600-normal.woff2") format("woff2"); font-weight: 600; font-display: swap; }

:root {
  --ink: #17161B;
  --ink-2: #232129;
  --ink-3: #302D37;
  --honey: #F2B01E;
  --honey-lit: #FFD166;
  --honey-deep: #A9720A;
  --wax: #FBF6EC;
  --paper: #FFFFFF;
  --slate: #56555F;
  --line: #E4E0D8;

  --display: "Bricolage", "Helvetica Neue", Arial, sans-serif;
  --body: "Instrument", "Helvetica Neue", Arial, sans-serif;

  --hex: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  --pad: clamp(20px, 5vw, 64px);
  --rail: 0px;
  --max: 1300px;
  --ease: cubic-bezier(.2, .7, .1, 1);
}
@media (min-width: 1150px) { :root { --rail: 64px; } }

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font: 400 17px/1.62 var(--body); overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; }
:focus-visible { outline: 3px solid var(--honey-deep); outline-offset: 3px; }
::selection { background: var(--honey); color: var(--ink); }

.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: 12px; top: -60px; z-index: 100; background: var(--honey); color: var(--ink); padding: 10px 16px; font-weight: 600; }
.skip:focus { top: 12px; }

.wrap { width: 100%; max-width: calc(var(--max) + 2 * var(--pad)); margin-inline: auto; padding-inline: calc(var(--pad) + var(--rail)) var(--pad); }

.h2 { font: 800 clamp(38px, 4.6vw, 68px)/1.02 var(--display); letter-spacing: -.028em; margin: 0 0 24px; text-wrap: balance; }
.lead { font-size: clamp(17px, 1.4vw, 20px); line-height: 1.6; max-width: 36em; margin: 0 0 24px; color: var(--slate); }
.underline { text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: 4px; }
.underline:hover { color: var(--honey-deep); }

/* Buttons — a clipped corner echoing the comb */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 54px; padding: 0 30px; border: 0; cursor: pointer; text-decoration: none;
  font: 600 16px/1 var(--body); letter-spacing: -.005em; border-radius: 2px;
  transition: background-color .22s, color .22s, box-shadow .22s, transform .22s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn--honey { background: var(--honey); color: var(--ink); }
.btn--honey:hover { background: var(--honey-lit); }
.btn--ghost { background: transparent; color: var(--wax); box-shadow: inset 0 0 0 1.5px rgba(251,246,236,.4); }
.btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--wax); background: rgba(251,246,236,.07); }
.btn--ink { background: var(--ink); color: var(--wax); }
.btn--ink:hover { background: var(--ink-3); }
.btn--wide { width: 100%; }
.btn--sm { min-height: 40px; padding: 0 18px; font-size: 14px; white-space: nowrap; }

/* Header */
.top { position: fixed; inset: 0 0 auto; z-index: 50; color: var(--ink); background: rgba(255,255,255,.96); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); box-shadow: 0 1px 0 var(--line); transition: box-shadow .3s; }
.top.is-scrolled { box-shadow: 0 8px 28px rgba(23,22,27,.09); }
.top__in { display: flex; align-items: center; justify-content: space-between; gap: 24px; max-width: calc(var(--max) + 2 * var(--pad)); margin: 0 auto; padding: 15px var(--pad); transition: padding .3s; }
.top.is-scrolled .top__in { padding-block: 10px; }

.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; position: relative; z-index: 60; }
.brand__logo { height: 46px; width: auto; transition: height .3s var(--ease); }
.top.is-scrolled .brand__logo { height: 40px; }
.brand__mark { width: 34px; height: 39px; flex: none; }
.brand__word { font: 800 25px/1 var(--display); letter-spacing: -.035em; }
.brand__word b { font-weight: 800; color: var(--honey-deep); }
@media (max-width: 520px) { .brand__word { font-size: 21px; } .brand__mark { width: 28px; height: 32px; } .brand__logo { height: 38px; } }

.nav { display: flex; align-items: center; gap: clamp(14px, 2vw, 28px); }
.nav > a { text-decoration: none; font-weight: 500; font-size: 15px; position: relative; padding: 6px 0; }
.nav > a:not(.nav__cta)::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--honey); transform: scaleX(0); transform-origin: left; transition: transform .28s var(--ease); }
.nav > a:hover::after { transform: scaleX(1); }
.nav__cta { background: var(--ink); color: var(--wax); padding: 11px 20px !important; border-radius: 2px; font-weight: 600 !important; transition: background-color .22s; }
.nav__cta:hover { background: var(--honey); color: var(--ink); }
.lang { display: inline-flex; gap: 2px; margin-left: 4px; font-size: 13px; font-weight: 600; }
.lang a { text-decoration: none; padding: 6px 7px; opacity: .5; }
.lang a[aria-current] { opacity: 1; box-shadow: inset 0 -2px var(--honey); }
.lang a:hover { opacity: 1; }

.burger { display: none; background: none; border: 0; color: var(--ink); width: 44px; height: 44px; cursor: pointer; position: relative; z-index: 60; }
.burger__lines, .burger__lines::before, .burger__lines::after { position: absolute; left: 10px; right: 10px; height: 2px; background: currentColor; transition: transform .3s var(--ease), opacity .2s; }
.burger__lines { top: 21px; }
.burger__lines::before { content: ""; left: 0; right: 0; top: -8px; }
.burger__lines::after { content: ""; left: 0; right: 7px; top: 8px; }
.burger[aria-expanded="true"] .burger__lines { background: transparent; }
.burger[aria-expanded="true"] .burger__lines::before { transform: translateY(8px) rotate(45deg); }
.burger[aria-expanded="true"] .burger__lines::after { right: 0; transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 980px) {
  .burger { display: block; }
  .nav {
    position: fixed; inset: 0; z-index: 55; background: var(--paper);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 4px; padding: 90px var(--pad) 40px;
    opacity: 0; visibility: hidden; transition: opacity .28s, visibility .28s;
  }
  .nav.is-open { opacity: 1; visibility: visible; }
  .nav > a { font: 800 clamp(32px, 8.5vw, 50px)/1.12 var(--display); letter-spacing: -.03em; }
  .nav > a::after { display: none; }
  .nav__cta { margin-top: 18px; font: 600 17px/1 var(--body) !important; padding: 16px 26px !important; }
  .lang { margin: 24px 0 0; font-size: 16px; }
}

/* Hero */
.hero {
  position: relative; background: var(--ink); color: var(--wax);
  min-height: 100svh; display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr);
  align-items: center; gap: clamp(24px, 4vw, 56px);
  padding: 132px var(--pad) 76px; overflow: hidden;
}
.hero::after { /* faint comb texture bleeding from the cluster */
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background: radial-gradient(70% 60% at 74% 44%, rgba(242,176,30,.13), transparent 70%);
}
.hero__copy { position: relative; z-index: 2; padding-left: var(--rail); max-width: 700px; justify-self: end; width: 100%; }
.hero__title { font: 800 clamp(40px, 5.2vw, 84px)/1.0 var(--display); letter-spacing: -.04em; margin: 0 0 26px; }
.hero__title .ln { display: block; overflow: hidden; padding-bottom: .06em; }
.hero__title .ln > span { display: block; transform: translateY(105%); transition: transform .9s var(--ease); transition-delay: calc(var(--l) * 110ms + 120ms); }
.is-loaded .hero__title .ln > span { transform: none; }
.hero__title .ln:last-child > span { color: var(--honey); }
.hero__text { font-size: clamp(17px, 1.35vw, 20px); max-width: 32em; color: #C9C5CE; margin: 0 0 34px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__addr { margin: 38px 0 0; font-size: 14px; color: #8F8B98; display: flex; align-items: center; gap: 11px; }
.hero__addr::before { content: ""; width: 11px; height: 12px; background: var(--honey); clip-path: var(--hex); flex: none; }
.hero__copy > :not(.hero__title) { opacity: 0; transform: translateY(16px); transition: opacity .7s, transform .7s var(--ease); transition-delay: .62s; }
.is-loaded .hero__copy > :not(.hero__title) { opacity: 1; transform: none; }

/* The comb: seven hexagonal cells tessellated into a flower.
   Cell width 33% of the container, rows at 0 / 30 / 60% — exact pointy-top honeycomb spacing. */
.comb { position: relative; z-index: 1; width: min(100%, 600px); aspect-ratio: 1 / .9525; justify-self: start; }
.cell {
  position: absolute; width: 33%; aspect-ratio: 1 / 1.1547; clip-path: var(--hex);
  background: var(--ink-2); overflow: hidden;
  opacity: 0; transform: scale(.5) translateY(12px);
  transition: opacity .55s var(--ease), transform .7s var(--ease);
  transition-delay: calc(var(--i) * 90ms + 220ms);
}
.is-loaded .cell { opacity: 1; transform: scale(.96); }
.cell img { width: 100%; height: 100%; object-fit: cover; }
.cell--core { left: 33.5%; top: 30%; z-index: 3; }
.cell--core img { position: absolute; inset: 0; opacity: 0; transition: opacity .9s ease; }
.cell--core img.is-on { opacity: 1; animation: cellDrift 8s linear both; }
@keyframes cellDrift { from { transform: scale(1.1); } to { transform: scale(1); } }
.cell--a { left: 17%;   top: 0; }
.cell--b { left: 50%;   top: 0; }
.cell--c { left: 66.5%; top: 30%; }
.cell--d { left: 50%;   top: 60%; }
.cell--e { left: 17%;   top: 60%; }
.cell--f { left: 0.5%;  top: 30%; }
.cell--a img, .cell--d img { filter: saturate(.7) brightness(.86); }
.cell--b img, .cell--e img { filter: saturate(.8) brightness(.94); }
.cell--c img, .cell--f img { filter: saturate(.66) brightness(.8); }

.comb__ring { position: absolute; inset: 0; pointer-events: none; z-index: 4; }
.comb__ring span {
  position: absolute; width: 33%; aspect-ratio: 1 / 1.1547; left: 33.5%; top: 30%;
  clip-path: var(--hex); background: var(--honey); opacity: 0;
}
.comb__ring span::after { content: ""; position: absolute; inset: 3px; clip-path: var(--hex); background: var(--ink); }
.comb__ring.is-pulse span { animation: ringPulse 1.5s var(--ease); }
@keyframes ringPulse { 0% { opacity: 0; transform: scale(.96); } 25% { opacity: .9; } 100% { opacity: 0; transform: scale(1.1); } }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; padding-top: 108px; gap: 14px; align-content: start; }
  .hero__copy { justify-self: stretch; padding-left: 0; }
  .comb { order: -1; width: min(84vw, 420px); justify-self: center; margin-bottom: 6px; }
}

/* Marquee */
.ticker { background: var(--honey); color: var(--ink); overflow: hidden; padding: 15px 0; }
.ticker__track { display: flex; width: max-content; animation: ticker var(--dur, 46s) linear infinite; }
.ticker span { font: 800 clamp(22px, 2.5vw, 34px)/1 var(--display); letter-spacing: -.03em; padding: 0 24px; display: inline-flex; align-items: center; gap: 48px; white-space: nowrap; }
.ticker span::after { content: ""; width: 12px; height: 14px; background: var(--ink); clip-path: var(--hex); }
@keyframes ticker { to { transform: translateX(-50%); } }
.ticker:hover .ticker__track { animation-play-state: paused; }

/* Comb rail — scroll progress as filling cells */
.journey { position: relative; }
.rail { position: absolute; left: calc(var(--pad) - 6px); top: 0; bottom: 0; width: 34px; z-index: 3; pointer-events: none; display: none; }
@media (min-width: 1150px) { .rail { display: block; } }
.rail__in { position: sticky; top: 0; height: 100vh; display: flex; flex-direction: column; justify-content: center; gap: 5px; }
.rail__cell { width: 26px; aspect-ratio: 1 / 1.1547; clip-path: var(--hex); background: #D9D4CA; transition: background-color .35s var(--ease), transform .35s var(--ease); }
.rail__cell.is-on { background: var(--honey); transform: scale(1.14); }
.process .rail__cell, .contact .rail__cell { background: #45414D; }
.process .rail__cell.is-on, .contact .rail__cell.is-on { background: var(--honey); }

/* Services */
.services { padding: clamp(88px, 11vw, 160px) 0; background: var(--paper); }
.services__grid { display: grid; grid-template-columns: minmax(0, .88fr) minmax(0, 1.28fr); gap: clamp(30px, 6vw, 100px); align-items: start; }
.services__head { position: sticky; top: 118px; }
.services__list { display: grid; gap: clamp(52px, 7vw, 92px); }
.svc { display: grid; grid-template-columns: 148px 1fr; gap: clamp(20px, 3vw, 40px); align-items: start; }
.svc__cell { position: relative; aspect-ratio: 1 / 1.1547; clip-path: var(--hex); background: var(--ink-2); overflow: hidden; }
.svc__cell img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.18); transition: transform 1.4s var(--ease); }
.svc__cell::after { content: ""; position: absolute; inset: 0; background: var(--honey); transform-origin: top; transform: scaleY(1); transition: transform .85s var(--ease); }
.svc__cell.in::after { transform: scaleY(0); }
.svc__cell.in img { transform: scale(1); }
.svc:hover .svc__cell img { transform: scale(1.07); }
.svc__title { font: 800 clamp(24px, 2.5vw, 34px)/1.08 var(--display); letter-spacing: -.032em; margin: 0 0 10px; }
.svc__text { margin: 0; max-width: 36em; color: var(--slate); }
@media (max-width: 900px) {
  .services__grid { grid-template-columns: 1fr; }
  .services__head { position: static; }
}
@media (max-width: 560px) { .svc { grid-template-columns: 116px 1fr; gap: 18px; } }

/* Process — a chain of comb cells */
.process { background: var(--ink); color: var(--wax); padding: clamp(88px, 10vw, 150px) 0; }
.process .h2 { color: var(--wax); }
.steps { list-style: none; margin: 52px 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 26px; }
.step { position: relative; padding-top: 96px; }
.step__cell {
  position: absolute; top: 0; left: 0; width: 74px; aspect-ratio: 1 / 1.1547; clip-path: var(--hex);
  background: var(--ink-3); display: grid; place-items: center;
  font: 800 27px/1 var(--display); color: var(--honey);
  transform: scale(.4); opacity: 0; transition: transform .55s var(--ease), opacity .45s, background-color .45s;
  transition-delay: calc(var(--n) * 150ms + 120ms);
}
.steps.in .step__cell { transform: none; opacity: 1; }
.step::after { content: ""; position: absolute; top: 42px; left: 84px; right: -18px; height: 2px; background: repeating-linear-gradient(90deg, #4A4553 0 6px, transparent 6px 12px); transform: scaleX(0); transform-origin: left; transition: transform .6s var(--ease); transition-delay: calc(var(--n) * 150ms + 320ms); }
.steps.in .step::after { transform: scaleX(1); }
.step:last-child::after { display: none; }
.step__title { font: 800 23px/1.1 var(--display); letter-spacing: -.028em; margin: 0 0 8px; }
.step p { margin: 0; color: #B3AEBC; max-width: 24em; font-size: 15.5px; }
@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr; gap: 30px; }
  .step { padding: 0 0 0 96px; min-height: 84px; }
  .step::after { display: none; }
}

/* Fleet */
.fleet { position: relative; min-height: min(92vh, 860px); display: flex; align-items: flex-end; color: var(--ink); overflow: hidden; background: var(--ink); }
.fleet__media { position: absolute; inset: 0; }
.fleet__media img { width: 100%; height: 122%; object-fit: cover; will-change: transform; }
.fleet__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(23,22,27,.25) 20%, rgba(23,22,27,.62)); }
.fleet__wrap { position: relative; z-index: 2; padding-block: clamp(64px, 9vw, 130px); display: flex; justify-content: flex-end; }
.fleet__panel { background: var(--wax); padding: clamp(26px, 3.6vw, 52px); max-width: 580px; border-radius: 2px; }
.fleet__panel .h2 { font-size: clamp(34px, 3.8vw, 56px); }
.specs { margin: 6px 0 0; display: grid; }
.specs div { display: grid; grid-template-columns: minmax(0, 10em) 1fr; gap: 16px; padding: 14px 0; border-top: 1.5px solid #E0DACD; }
.specs dt { color: var(--slate); font-size: 15px; }
.specs dd { margin: 0; font-weight: 600; }
@media (max-width: 560px) { .specs div { grid-template-columns: 1fr; gap: 2px; } }

/* Gallery */
.gallery { padding: clamp(88px, 10vw, 150px) 0 clamp(74px, 8vw, 120px); background: var(--wax); overflow: hidden; }
.gallery__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; }
.gallery__ctrl { display: flex; gap: 10px; margin-bottom: 28px; }
.gallery__ctrl button { width: 50px; height: 50px; border: 1.5px solid var(--ink); background: transparent; color: var(--ink); font-size: 20px; cursor: pointer; border-radius: 2px; transition: background-color .2s, color .2s; }
.gallery__ctrl button:hover { background: var(--ink); color: var(--honey); }
.strip {
  display: flex; gap: clamp(14px, 1.6vw, 22px); overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none;
  padding: 6px max(var(--pad), calc((100vw - var(--max)) / 2 + var(--rail))) 10px;
  scroll-padding-inline: max(var(--pad), calc((100vw - var(--max)) / 2 + var(--rail)));
  cursor: grab;
}
.strip::-webkit-scrollbar { display: none; }
.strip.is-drag { cursor: grabbing; scroll-snap-type: none; }
.strip.is-drag img { pointer-events: none; }
.shot { flex: none; width: clamp(230px, 27vw, 380px); margin: 0; scroll-snap-align: start; }
.shot:nth-child(even) { margin-top: 44px; }
.shot img { width: 100%; aspect-ratio: 1 / 1.1547; object-fit: cover; clip-path: var(--hex); background: var(--ink-2); user-select: none; transition: filter .5s; filter: saturate(.88); }
.shot:hover img { filter: saturate(1.04); }
.shot figcaption { font-size: 14px; color: var(--slate); padding-top: 13px; display: flex; gap: 10px; align-items: center; }
.shot figcaption::before { content: ""; width: 9px; height: 10px; background: var(--honey); clip-path: var(--hex); flex: none; }

/* Careers */
.careers { background: var(--paper); padding: clamp(88px, 10vw, 150px) 0; }
.careers__grid { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1fr); gap: clamp(30px, 6vw, 86px); align-items: center; }
.careers__cell { position: relative; margin: 0; aspect-ratio: 1 / 1.1547; clip-path: var(--hex); background: var(--ink-2); overflow: hidden; }
.careers__cell img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.16); transition: transform 1.5s var(--ease); }
.careers__cell::after { content: ""; position: absolute; inset: 0; background: var(--honey); transform-origin: bottom; transition: transform .9s var(--ease); }
.careers__cell.in::after { transform: scaleY(0); }
.careers__cell.in img { transform: scale(1); }
@media (max-width: 900px) { .careers__grid { grid-template-columns: 1fr; } .careers__cell { max-width: 320px; } }

/* Contact */
.contact { background: var(--ink); color: var(--wax); padding: clamp(88px, 10vw, 150px) 0; }
.contact .h2 { color: var(--wax); }
.contact__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.04fr); gap: clamp(36px, 6vw, 96px); align-items: start; }
.contact .lead { color: #C9C5CE; }
.contact__lines p { margin: 0 0 20px; }
.contact__lines .k { display: block; color: #8F8B98; font-size: 14px; margin-bottom: 4px; }
.big-link { font: 800 clamp(21px, 2.1vw, 29px)/1.3 var(--display); letter-spacing: -.03em; text-decoration: none; background: linear-gradient(var(--honey), var(--honey)) 0 100% / 0 2px no-repeat; transition: background-size .35s var(--ease), color .2s; overflow-wrap: anywhere; }
.big-link:hover { background-size: 100% 2px; color: var(--honey); }
.muted { color: #8F8B98; }

.form { background: var(--ink-2); padding: clamp(24px, 3.2vw, 44px); border-radius: 2px; box-shadow: inset 0 0 0 1px rgba(251,246,236,.07); }
.hp { position: absolute; left: -9999px; }
.field { position: relative; margin-bottom: 22px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field input, .field textarea {
  width: 100%; background: transparent; border: 0; border-bottom: 1.5px solid rgba(251,246,236,.26); color: var(--wax);
  font: 400 17px/1.4 var(--body); padding: 26px 0 10px; border-radius: 0; resize: vertical; transition: border-color .2s;
}
.field textarea { min-height: 126px; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--honey); }
.field label { position: absolute; left: 0; top: 26px; color: #8F8B98; pointer-events: none; transition: transform .25s var(--ease), color .25s, font-size .25s; transform-origin: left top; }
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label { transform: translateY(-22px); font-size: 13px; color: var(--honey); }
.field input:user-invalid, .field textarea:user-invalid { border-color: #FF8A7A; }
.consent { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: #B3AEBC; margin: 6px 0 24px; cursor: pointer; }
.consent input { width: 20px; height: 20px; accent-color: var(--honey); margin-top: 1px; flex: none; }
.consent a { color: var(--wax); }
.form__msg { margin: 16px 0 0; min-height: 1.6em; font-weight: 500; }
.form__msg.is-ok { color: var(--honey-lit); }
.form__msg.is-err { color: #FFB1A5; }
@media (max-width: 900px) { .contact__grid { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; gap: 0; } }

/* Legal pages */
.legal { padding: clamp(130px, 15vw, 190px) 0 clamp(74px, 9vw, 130px); background: var(--paper); min-height: 70vh; }
.legal__wrap { padding-left: var(--pad); }
.legal__title { font: 800 clamp(40px, 6.6vw, 88px)/1 var(--display); letter-spacing: -.04em; margin: 0 0 44px; }
.prose { max-width: 70ch; color: var(--slate); }
.prose h2 { font: 800 24px/1.18 var(--display); letter-spacing: -.028em; margin: 42px 0 10px; color: var(--ink); }
.prose p { margin: 0 0 14px; }
.prose a { color: var(--ink); text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
.prose a:hover { color: var(--honey-deep); }
.table-wrap { overflow-x: auto; margin: 0 0 20px; }
.prose table { border-collapse: collapse; width: 100%; min-width: 600px; font-size: 15px; }
.prose th, .prose td { text-align: left; vertical-align: top; padding: 12px 14px 12px 0; border-bottom: 1.5px solid var(--line); }
.prose th { font-weight: 600; color: var(--ink); }

/* Footer */
.foot { background: var(--wax); color: var(--slate); padding: 54px 0 38px; font-size: 15px; border-top: 1px solid var(--line); }
.foot__grid { display: grid; grid-template-columns: 1fr auto; gap: 20px 40px; align-items: end; }
.foot__logo { width: clamp(150px, 16vw, 200px); height: auto; margin: 0 0 14px; }
.foot__brand p { margin: 0; }
.foot__word { display: inline-flex; align-items: center; gap: 11px; font: 800 clamp(30px, 4vw, 44px)/1 var(--display); letter-spacing: -.04em; color: var(--ink); margin-bottom: 12px; }
.foot__word svg { width: 32px; height: 37px; flex: none; }
.foot__links { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.foot__links a { text-decoration: none; color: var(--ink); font-weight: 500; }
.foot__links a:hover { color: var(--honey-deep); }
.foot__copy { grid-column: 1 / -1; margin: 22px 0 0; padding-top: 18px; border-top: 1px solid var(--line); font-size: 13px; }
@media (max-width: 760px) { .foot__grid { grid-template-columns: 1fr; } }

/* Storage notice */
.notice { position: fixed; right: 16px; bottom: 16px; z-index: 70; max-width: 410px; background: var(--ink); color: var(--wax); padding: 16px 18px; display: flex; gap: 16px; align-items: center; font-size: 14px; border-radius: 2px; box-shadow: 0 18px 40px rgba(23,22,27,.34); }
.notice[hidden] { display: none; }
.notice p { margin: 0; }
.notice a { color: var(--honey); }
@media (max-width: 520px) { .notice { left: 16px; max-width: none; } }

/* Mobile scroll progress */
.progress { position: fixed; left: 0; top: 0; height: 3px; width: 100%; background: var(--honey); transform-origin: left; transform: scaleX(0); z-index: 80; }
@media (min-width: 1150px) { .progress { display: none; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; transition-delay: 0s !important; }
  .ticker__track { animation: none; flex-wrap: wrap; width: auto; }
}
