/* =========================================================
   Marram Apothecary (DEMO) — strict monochrome retail.
   Black, white and one grey. No accent colour anywhere:
   the product line art and the type do all the work, which
   is the whole point of the look. Inter Tight display,
   Inter body, Azeret Mono for labels.
   ========================================================= */

:root {
  --ink:      #000;
  --ink-2:    #141414;
  --paper:    #fff;
  --paper-2:  #f4f4f2;      /* barely-there warm off-white */
  --paper-3:  #e8e8e5;      /* product panel */
  --muted:    #6b6b6b;
  --muted-d:  rgba(255,255,255,.62);
  --line:     rgba(0,0,0,.14);
  --line-d:   rgba(255,255,255,.18);

  --wrap: 1320px;
  --sect: clamp(78px, 9.5vw, 148px);
  --ease: cubic-bezier(.19,1,.22,1);
  --f-disp: "Inter Tight", system-ui, sans-serif;
  --f-body: "Inter", system-ui, sans-serif;
  --f-mono: "Azeret Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-body); color: var(--ink); background: var(--paper);
  line-height: 1.55; -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid currentColor; outline-offset: 3px; }

.wrap { width: min(100% - 44px, var(--wrap)); margin-inline: auto; }
.section { padding-block: var(--sect); }
.section--paper2 { background: var(--paper-2); }
.section--ink {
  background: var(--ink); color: var(--paper);
  --line: var(--line-d); --muted: var(--muted-d);
}

/* Photography is greyscaled at build time by scripts/make_marram_images.py, not by a
   CSS filter — see that script's header for why. Nothing here should reintroduce
   colour, or the shot backdrops start fighting each other again. */

/* ---------- Type primitives ---------- */
.label {
  font-family: var(--f-mono); font-size: 11px; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase; color: var(--muted);
}
.sechead__title,
.hero__title, .feature__title, .cta__title {
  font-family: var(--f-disp); font-weight: 500; letter-spacing: -.035em; line-height: .98;
}
.sechead__title { font-size: clamp(30px, 4.2vw, 54px); }

/* ---------- Demo badge ---------- */
.demobadge {
  position: fixed; left: 14px; bottom: 14px; z-index: 200;
  font-family: var(--f-mono); font-size: 10.5px; font-weight: 500; letter-spacing: .04em;
  color: #fff; background: var(--ink); border-radius: 999px; padding: 8px 15px;
}
.demobadge::before { content: "\25CF"; margin-right: 8px; font-size: 7px; vertical-align: middle; }
@media (max-width: 560px) { .demobadge { font-size: 9.5px; padding: 6px 12px; } }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--ink); --fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--bg); color: var(--fg); border: 1px solid var(--bg);
  font-size: 14.5px; font-weight: 500; letter-spacing: -.01em;
  padding: 14px 28px; border-radius: 999px; cursor: pointer;
  transition: background .25s, color .25s, border-color .25s, transform .3s var(--ease);
}
.btn span { transition: transform .3s var(--ease); }
.btn:hover span { transform: translateX(4px); }
.btn--ink:hover { background: transparent; color: var(--ink); border-color: var(--ink); }
.section--ink .btn--ink:hover { color: var(--paper); border-color: var(--paper); }
.btn--paper { --bg: #fff; --fg: #000; border-color: #fff; }
.btn--paper:hover { background: transparent; color: #fff; }
.btn--sm { padding: 10px 20px; font-size: 13.5px; }
.btn--lg { padding: 17px 34px; font-size: 15.5px; }
.btn--block { display: flex; width: 100%; }

.linkarrow {
  font-family: var(--f-mono); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase;
  border-bottom: 1px solid var(--line); padding-bottom: 5px; white-space: nowrap;
  transition: border-color .25s;
}
.linkarrow:hover { border-color: currentColor; }
.linkarrow span { display: inline-block; transition: transform .3s var(--ease); }
.linkarrow:hover span { transform: translateX(4px); }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  border-bottom: 1px solid transparent; transition: background .35s, border-color .35s;
}
.nav.is-stuck { background: rgba(255,255,255,.86); backdrop-filter: blur(14px); border-color: var(--line); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 76px; }
.brand {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--f-disp); font-weight: 600; font-size: 21px; letter-spacing: -.045em;
}
.nav__links { display: flex; gap: 34px; }
.nav__links a { font-size: 14.5px; position: relative; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -4px; height: 1px; width: 0;
  background: currentColor; transition: width .3s var(--ease);
}
.nav__links a:hover::after { width: 100%; }
.nav__actions { display: flex; align-items: center; gap: 20px; }
.nav__ghost { font-family: var(--f-mono); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; }
.nav__toggle { display: none; background: none; border: 0; padding: 8px 0; width: 30px; cursor: pointer; }
.nav__toggle span { display: block; height: 1.5px; background: var(--ink); margin: 5px 0; transition: transform .3s, opacity .2s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav__mobile { display: none; }

@media (max-width: 940px) {
  .nav__links, .nav__ghost { display: none; }
  .nav__toggle { display: block; }
  .nav__mobile {
    display: block; background: var(--paper); border-bottom: 1px solid var(--line);
    padding: 0 22px; max-height: 0; overflow: hidden; transition: max-height .4s var(--ease), padding .3s;
  }
  .nav__mobile.open { max-height: 420px; padding: 10px 22px 26px; }
  .nav__mobile a { display: block; padding: 13px 0; font-size: 17px; border-bottom: 1px solid var(--line); }
  .nav__mobile .btn { margin-top: 18px; border-bottom: 0; }
}

/* ---------- Hero ---------- */
.hero { position: relative; min-height: min(94vh, 900px); display: flex; align-items: flex-end; padding: 140px 0 clamp(46px, 6vw, 84px); overflow: hidden; }
.hero__inner { position: relative; z-index: 2; }
.hero__eyebrow {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted); margin-bottom: clamp(24px, 4vw, 46px);
  opacity: 0; transform: translateY(14px); transition: opacity .7s, transform .7s var(--ease);
}
.hero__title { font-size: clamp(44px, 10.5vw, 156px); }
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line > span { display: block; transform: translateY(105%); transition: transform 1.05s var(--ease); }
.hero.is-in .hero__eyebrow { opacity: 1; transform: none; transition-delay: .1s; }
.hero.is-in .hero__title .line:nth-child(1) > span { transform: none; transition-delay: .18s; }
.hero.is-in .hero__title .line:nth-child(2) > span { transform: none; transition-delay: .3s; }

.hero__foot {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; flex-wrap: wrap;
  margin-top: clamp(30px, 4.5vw, 60px);
  opacity: 0; transform: translateY(18px); transition: opacity .8s .55s, transform .8s .55s var(--ease);
}
.hero.is-in .hero__foot { opacity: 1; transform: none; }
.hero__lead { max-width: 46ch; font-size: 16px; color: var(--muted); }
.hero__cta { display: flex; align-items: center; gap: 18px; }
.hero__scroll {
  width: 50px; height: 50px; border: 1px solid var(--line); border-radius: 50%;
  display: grid; place-items: center; font-size: 16px; transition: background .25s, color .25s, border-color .25s;
}
.hero__scroll:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.hero__scroll span { animation: bob 2.4s var(--ease) infinite; }
@keyframes bob { 0%,100% { transform: translateY(-2px); } 50% { transform: translateY(3px); } }

.hero__art {
  position: absolute; right: clamp(-40px, -2vw, 20px); top: 50%; transform: translateY(-52%);
  width: clamp(230px, 27vw, 400px); z-index: 1; pointer-events: none;
  opacity: 0; transition: opacity 1s .35s, transform 1.2s .35s var(--ease);
}
.hero.is-in .hero__art { opacity: 1; transform: translateY(-50%); }
.hero__art img { width: 100%; height: auto; aspect-ratio: 5 / 7; object-fit: cover; border-radius: 4px; }
/* Below 900px the headline needs the full width, so the portrait drops back to a
   faint wash behind the type rather than competing with it. */
@media (max-width: 900px) { .hero__art { opacity: .12 !important; right: -60px; } }

/* ---------- Press marquee ---------- */
.press { border-block: 1px solid var(--line); padding: 26px 0; display: flex; align-items: center; gap: 34px; overflow: hidden; }
.press__label {
  flex: none; padding-left: 22px; font-family: var(--f-mono); font-size: 10.5px;
  letter-spacing: .16em; text-transform: uppercase; color: var(--muted);
}
.marquee { flex: 1; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.marquee__track { display: flex; align-items: center; gap: 30px; width: max-content; animation: slide 34s linear infinite; }
.marquee__track span { font-family: var(--f-disp); font-size: clamp(17px, 2vw, 24px); font-weight: 500; letter-spacing: -.03em; white-space: nowrap; }
.marquee__track i { font-size: 6px; color: var(--muted); font-style: normal; }
@keyframes slide { to { transform: translateX(-50%); } }
@media (max-width: 700px) { .press__label { display: none; } .press { padding-inline: 0; } }

/* ---------- Statement ---------- */
.statement__big {
  font-family: var(--f-disp); font-weight: 400; letter-spacing: -.035em; line-height: 1.06;
  font-size: clamp(27px, 4.6vw, 62px); max-width: 20ch; margin: 22px 0 clamp(48px, 7vw, 88px);
}
.statement__big span { color: var(--muted); }
.statement__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; border-top: 1px solid var(--line); padding-top: 34px; }
.figc { display: flex; flex-direction: column; gap: 8px; }
.figc__n { font-family: var(--f-disp); font-size: clamp(38px, 6vw, 78px); font-weight: 400; letter-spacing: -.05em; line-height: 1; }
.figc__l { font-family: var(--f-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 760px) { .statement__grid { grid-template-columns: 1fr; gap: 26px; } }

/* ---------- Section head + tabs ---------- */
.sechead { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; flex-wrap: wrap; margin-bottom: clamp(34px, 5vw, 62px); }
.sechead .label { margin-bottom: 14px; }
.tabs { display: flex; gap: 8px; }
.tab {
  background: none; border: 1px solid var(--line); border-radius: 999px; padding: 9px 20px;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  cursor: pointer; transition: background .22s, color .22s, border-color .22s;
}
.tab:hover { border-color: currentColor; }
.tab.is-on { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* ---------- Product grid ---------- */
.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px 26px; }
.card { display: flex; flex-direction: column; }
.card.is-hidden { display: none; }
.card__media {
  position: relative; display: block; background: var(--paper-3); border-radius: 4px;
  aspect-ratio: 4 / 5; overflow: hidden; margin-bottom: 16px;
}
.section--paper2 .card__media { background: #fff; }
.card__img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.card__media:hover .card__img { transform: scale(1.04); }
.card__badge {
  position: absolute; top: 12px; left: 12px; background: var(--ink); color: #fff;
  font-family: var(--f-mono); font-size: 9.5px; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px;
}
.card__hover {
  position: absolute; left: 12px; right: 12px; bottom: 12px; text-align: center;
  background: var(--ink); color: #fff; border-radius: 999px; padding: 11px 14px;
  font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase;
  opacity: 0; transform: translateY(12px); transition: opacity .3s, transform .38s var(--ease);
}
.card__media:hover .card__hover, .card__media:focus-visible .card__hover { opacity: 1; transform: none; }
.card__meta { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.card__cat { font-family: var(--f-mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.card__price { font-family: var(--f-disp); font-size: 16px; font-weight: 500; letter-spacing: -.02em; }
.card__name { font-family: var(--f-disp); font-size: 18px; font-weight: 500; letter-spacing: -.028em; line-height: 1.2; margin-top: 6px; }
.card__note { font-size: 13px; color: var(--muted); margin-top: 4px; }
.grid__empty { text-align: center; padding: 60px 0; color: var(--muted); font-family: var(--f-mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
@media (max-width: 1000px) { .grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .grid { grid-template-columns: repeat(2, 1fr); gap: 26px 18px; } }

/* ---------- Collections ---------- */
.cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cat {
  position: relative; border-radius: 4px; overflow: hidden;
  aspect-ratio: 4 / 5; display: flex; flex-direction: column; justify-content: flex-end;
  color: #fff;
}
.cat__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.cat:hover .cat__img { transform: scale(1.05); }
/* Scrim, not a flat overlay: darkening only the edges keeps the product visible in the
   middle of the frame while the type stays legible over it. The lighter band along the
   top is there purely so the 01/02/03 stays readable — these photos are near-white up
   there and white-on-white loses it completely. */
.cat::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(to top, rgba(0,0,0,.64) 0%, rgba(0,0,0,.18) 38%, rgba(0,0,0,0) 66%),
    linear-gradient(to bottom, rgba(0,0,0,.38) 0%, rgba(0,0,0,0) 20%);
}
.cat__n { position: absolute; top: 20px; left: 22px; z-index: 2; font-family: var(--f-mono); font-size: 11px; letter-spacing: .1em; color: rgba(255,255,255,.8); }
.cat__body { position: relative; z-index: 2; padding: 28px; display: flex; flex-direction: column; gap: 3px; }
.cat__name { font-family: var(--f-disp); font-size: clamp(26px, 3vw, 38px); font-weight: 500; letter-spacing: -.04em; }
.cat__count { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.72); }
@media (max-width: 820px) { .cats { grid-template-columns: 1fr; } .cat { aspect-ratio: 3 / 2; } }

/* ---------- Feature ---------- */
.feature__inner { display: grid; grid-template-columns: .85fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.feature__art { border-radius: 4px; overflow: hidden; }
.feature__art img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; }
.feature__title { font-size: clamp(34px, 5.4vw, 74px); margin: 16px 0 22px; }
.feature__lead { color: var(--muted); max-width: 48ch; font-size: 16px; }
.speclist { list-style: none; margin: 34px 0; border-top: 1px solid var(--line); }
.speclist li { display: flex; justify-content: space-between; gap: 20px; padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 14.5px; }
.speclist li span:last-child { font-family: var(--f-mono); font-size: 12.5px; color: var(--muted); }
@media (max-width: 900px) { .feature__inner { grid-template-columns: 1fr; } }

/* ---------- Values ---------- */
.values__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 4px; overflow: hidden; }
.value { background: var(--paper); padding: 36px 30px 40px; }
.value svg { width: 26px; height: 26px; margin-bottom: 22px; }
.value h3 { font-family: var(--f-disp); font-size: 19px; font-weight: 500; letter-spacing: -.03em; margin-bottom: 9px; }
.value p { font-size: 14px; color: var(--muted); }
@media (max-width: 1000px) { .values__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .values__grid { grid-template-columns: 1fr; } }

/* ---------- Visit ---------- */
.visit { display: grid; grid-template-columns: 1fr .9fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.visit .sechead__title { margin: 14px 0 20px; }
.visit__lead { color: var(--muted); max-width: 42ch; font-size: 16px; }
.hours { margin: 34px 0 28px; border-top: 1px solid var(--line); max-width: 420px; }
.hours > div { display: flex; justify-content: space-between; gap: 20px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.hours dt { font-size: 14.5px; }
.hours dd { font-family: var(--f-mono); font-size: 12.5px; color: var(--muted); }
.visit__contact { display: flex; gap: 26px; flex-wrap: wrap; font-family: var(--f-mono); font-size: 12.5px; }
.visit__contact a { border-bottom: 1px solid var(--line); padding-bottom: 3px; transition: border-color .25s; }
.visit__contact a:hover { border-color: currentColor; }

.visit__map { position: relative; border-radius: 4px; overflow: hidden; aspect-ratio: 1 / 1; border: 1px solid var(--line); }
.visit__map svg { width: 100%; height: 100%; }
.map-bg   { fill: #fff; }
.map-road { stroke: rgba(0,0,0,.16); stroke-width: 13; fill: none; }
.map-block rect { fill: rgba(0,0,0,.05); }
.map-here { fill: rgba(0,0,0,.14); }
.map-dot  { fill: #000; }
.map-ring { fill: none; stroke: #000; stroke-width: 1.2; opacity: .35; transform-origin: 214px 194px; animation: ping 2.8s var(--ease) infinite; }
@keyframes ping { 0% { transform: scale(.5); opacity: .6; } 70%,100% { transform: scale(1.5); opacity: 0; } }
.visit__pin {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  background: var(--ink); color: #fff; border-radius: 999px; padding: 8px 16px;
  font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; white-space: nowrap;
}
@media (max-width: 880px) { .visit { grid-template-columns: 1fr; } }

/* ---------- Journal ---------- */
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.post__media {
  position: relative; background: var(--paper-2); border-radius: 4px; aspect-ratio: 3 / 2;
  margin-bottom: 18px; overflow: hidden;
}
.post__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.post:hover .post__media img { transform: scale(1.05); }
.post__tag { font-family: var(--f-mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.post__title { font-family: var(--f-disp); font-size: clamp(19px, 2vw, 23px); font-weight: 500; letter-spacing: -.03em; line-height: 1.22; margin: 9px 0 8px; max-width: 22ch; }
.post__note { font-size: 13px; color: var(--muted); }
@media (max-width: 820px) { .posts { grid-template-columns: 1fr; } }

/* ---------- Quotes ---------- */
.quotes__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-d); border: 1px solid var(--line-d); border-radius: 4px; overflow: hidden; margin-top: 34px; }
.quote { background: var(--ink); padding: 40px 32px 36px; display: flex; flex-direction: column; justify-content: space-between; gap: 28px; }
.quote blockquote { font-family: var(--f-disp); font-size: clamp(19px, 2.1vw, 25px); font-weight: 400; letter-spacing: -.032em; line-height: 1.24; }
.quote blockquote::before { content: "\201C"; }
.quote blockquote::after  { content: "\201D"; }
.quote figcaption { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-d); }
@media (max-width: 900px) { .quotes__grid { grid-template-columns: 1fr; } }

/* ---------- CTA / enquiry ---------- */
.cta__inner { display: grid; grid-template-columns: 1fr .95fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
.cta__title { font-size: clamp(38px, 6vw, 82px); margin: 16px 0 22px; }
.cta__lead { color: var(--muted); max-width: 44ch; font-size: 16px; }
.cta__info { list-style: none; margin-top: 34px; border-top: 1px solid var(--line); }
.cta__info li { padding: 14px 0; border-bottom: 1px solid var(--line); font-family: var(--f-mono); font-size: 12.5px; }

.enquiry { border: 1px solid var(--line); border-radius: 4px; padding: clamp(24px, 3vw, 38px); display: grid; gap: 16px; }
.field { display: grid; gap: 7px; }
.field label { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.field input, .field select, .field textarea {
  background: transparent; border: 0; border-bottom: 1px solid var(--line);
  padding: 10px 0; font-size: 15px; border-radius: 0; transition: border-color .25s;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--ink); }
.field input::placeholder, .field textarea::placeholder { color: rgba(0,0,0,.3); }
.field .err { border-color: var(--ink); background: rgba(0,0,0,.04); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.enquiry .btn { margin-top: 8px; }
.enquiry__note { font-size: 12.5px; color: var(--muted); text-align: center; }

.enquiry-ok { text-align: center; padding: 30px 10px; display: grid; gap: 12px; justify-items: center; }
.enquiry-ok__tick { width: 46px; height: 46px; border: 1px solid var(--ink); border-radius: 50%; display: grid; place-items: center; }
.enquiry-ok h3 { font-family: var(--f-disp); font-size: 26px; font-weight: 500; letter-spacing: -.035em; }
.enquiry-ok p { color: var(--muted); font-size: 14.5px; max-width: 34ch; }
.enquiry-ok__demo { display: block; margin-top: 12px; font-family: var(--f-mono); font-size: 11px; letter-spacing: .06em; }
@media (max-width: 900px) { .cta__inner { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: var(--paper); --line: var(--line-d); --muted: var(--muted-d); padding: clamp(56px, 7vw, 92px) 0 30px; overflow: hidden; }
.footer__row { display: flex; justify-content: space-between; gap: 34px; flex-wrap: wrap; padding-bottom: 40px; }
.footer__blurb { max-width: 38ch; color: var(--muted-d); font-size: 14.5px; }
.footer__links { display: flex; gap: 26px; flex-wrap: wrap; font-family: var(--f-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.footer__links a { transition: opacity .25s; }
.footer__links a:hover { opacity: .6; }
.footer__big {
  font-family: var(--f-disp); font-weight: 500; letter-spacing: -.05em; line-height: .8;
  font-size: clamp(64px, 21vw, 300px); text-align: center; margin-bottom: 18px;
  white-space: nowrap;
}
.footer__bottom { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; border-top: 1px solid var(--line-d); padding-top: 22px; font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .06em; color: var(--muted-d); }
.footer__bottom a { border-bottom: 1px solid var(--line-d); }
.footer__bottom a:hover { border-color: currentColor; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  .reveal, .hero__eyebrow, .hero__foot, .hero__art { opacity: 1 !important; transform: none !important; }
  .hero__title .line > span { transform: none !important; }
}
