/* ════════════════════════════════════════════════════════════════
   M. NOCKELS LTD — The 'Quality' Butcher — Scarborough Market Hall
   Heritage editorial. Palette drawn from the painted fascia:
   enamel cream, signwriter red, butcher blue, slate, tile gold.
   ════════════════════════════════════════════════════════════════ */

:root {
  --paper:        #f6f1e5;
  --paper-raised: #fbf8ef;
  --paper-deep:   #ede5d1;
  --ink:          #221b14;
  --ink-soft:     #5f5546;
  --red:          #a3251b;
  --red-deep:     #6f1710;
  --blue:         #205a83;
  --gold:         #ab8447;
  --board:        #222c26;
  --board-text:   #ede7d8;
  --hairline:     rgba(34, 27, 20, 0.18);
  --hairline-soft:rgba(34, 27, 20, 0.1);

  --display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --label:   "Archivo", "Helvetica Neue", Arial, sans-serif;

  --gutter: clamp(20px, 5vw, 56px);
  --section-pad: clamp(88px, 12vw, 168px);
  --ease: cubic-bezier(0.22, 0.61, 0.21, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--display);
  font-optical-sizing: auto;
  font-weight: 420;
  font-size: 1.075rem;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* faint butcher-paper fibre over everything */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0.36;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0.13 0 0 0 0 0.1 0 0 0 0 0.07 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='260' height='260' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection { background: var(--red); color: var(--paper); }

img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, p, ul, dl, figure, address { margin: 0; }
ul { padding: 0; list-style: none; }
address { font-style: normal; }

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

.container {
  width: min(1160px, 100% - 2 * var(--gutter));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: 10px; left: 10px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--label);
  font-size: 0.8rem;
  text-decoration: none;
  transform: translateY(-300%);
}
.skip-link:focus { transform: none; }

/* small gold diamond — the counter-tile motif */
.tile-diamond {
  display: inline-block;
  width: 6px; height: 6px;
  margin: 0 0.9em;
  background: var(--gold);
  transform: rotate(45deg) translateY(-1px);
  opacity: 0.8;
}

/* ═══════════════ header ═══════════════ */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 40;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.site-header.scrolled {
  background: rgba(246, 241, 229, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--hairline);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 40px);
  width: min(1280px, 100% - 2 * var(--gutter));
  margin-inline: auto;
  padding-block: 18px;
  transition: padding 0.35s ease;
}
.site-header.scrolled .header-inner { padding-block: 12px; }

.brand {
  font-family: var(--display);
  font-weight: 640;
  font-size: 1.32rem;
  letter-spacing: 0.01em;
  color: var(--red);
  text-decoration: none;
  white-space: nowrap;
}

.nav {
  display: flex;
  gap: clamp(14px, 2.4vw, 30px);
  margin-left: auto;
}

.nav a {
  position: relative;
  padding: 6px 2px;
  font-family: var(--label);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 2px;
  height: 1.5px;
  background: var(--red);
  transition: right 0.3s var(--ease);
}
.nav a:hover::after,
.nav a:focus-visible::after { right: 0; }

.header-tel {
  font-family: var(--label);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: var(--red);
  border: 1px solid var(--red);
  padding: 9px 16px 8px;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.header-tel:hover,
.header-tel:focus-visible { background: var(--red); color: var(--paper); }

/* mobile toggle */
.menu-toggle {
  display: none;
  position: relative;
  width: 44px; height: 44px;
  margin-left: auto;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}
.menu-line {
  position: absolute;
  left: 10px; right: 10px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), top 0.3s var(--ease);
}
.menu-line:nth-child(1) { top: 18px; }
.menu-line:nth-child(2) { top: 26px; }
.menu-toggle[aria-expanded="true"] .menu-line:nth-child(1) { top: 22px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-line:nth-child(2) { top: 22px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  background: var(--paper);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu.open { opacity: 1; }

.mobile-menu nav {
  display: grid;
  gap: 8px;
  text-align: center;
}

.mobile-menu a {
  font-family: var(--display);
  font-size: clamp(1.9rem, 8vw, 2.6rem);
  font-weight: 560;
  text-decoration: none;
  color: var(--ink);
  padding: 6px 20px;
  transform: translateY(14px);
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.5s var(--ease);
}
.mobile-menu.open a { opacity: 1; transform: none; }
.mobile-menu.open a:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.2s; }
.mobile-menu.open a:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu.open a:nth-child(6) { transition-delay: 0.3s; }

.mobile-tel {
  margin-top: 22px;
  color: var(--red) !important;
  font-weight: 640;
}

body.menu-open { overflow: hidden; }

/* ═══════════════ hero ═══════════════ */

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 96svh;
  padding: clamp(110px, 16vh, 170px) var(--gutter) clamp(64px, 9vh, 96px);
  text-align: center;
  background:
    radial-gradient(ellipse 90% 55% at 50% -12%, rgba(171, 132, 71, 0.13), transparent),
    radial-gradient(ellipse 70% 45% at 50% 112%, rgba(32, 90, 131, 0.05), transparent);
}

.hero-est {
  display: flex;
  align-items: center;
  font-family: var(--label);
  font-size: clamp(0.66rem, 1.4vw, 0.78rem);
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.lockup {
  width: min(860px, 94vw);
  margin-top: clamp(20px, 3.5vh, 38px);
}

.lockup-arc { width: 100%; height: auto; overflow: visible; display: block; }

.lockup-arc text {
  font-family: var(--display);
  font-weight: 900;
  font-variation-settings: "opsz" 144;
  letter-spacing: 0.015em;
}

.arc-shadow { fill: #6b1a12; opacity: 0.85; transform: translate(5px, 6px); }
.arc-face   { fill: var(--red); }

.arc-tel {
  fill: var(--red);
  opacity: 0.92;
  font-weight: 640 !important;
  letter-spacing: 0.42em !important;
}

.quality-line {
  display: flex;
  align-items: center;
  gap: 0.55em;
  margin-top: clamp(22px, 3.6vh, 36px);
  font-family: var(--label);
  font-size: clamp(0.78rem, 1.9vw, 1.02rem);
  font-weight: 600;
  letter-spacing: 0.34em;
  text-indent: 0.34em; /* balance trailing tracking */
  text-transform: uppercase;
  white-space: nowrap;
}

.quality-line .rule {
  width: clamp(34px, 7vw, 88px);
  height: 1px;
  margin-inline: 0.6em;
  background: var(--hairline);
}

.q-red  { color: var(--red); }
.q-blue { color: var(--blue); }

.hero-standfirst {
  max-width: 33em;
  margin-top: clamp(26px, 4vh, 40px);
  font-size: clamp(1.08rem, 2.1vw, 1.26rem);
  line-height: 1.62;
  color: var(--ink-soft);
  text-wrap: balance;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: clamp(30px, 4.4vh, 44px);
}

/* load-in sequence */
@media (prefers-reduced-motion: no-preference) {
  [data-load] {
    opacity: 0;
    transform: translateY(18px);
    animation: rise 1s var(--ease) forwards;
  }
  [data-load="1"] { animation-delay: 0.1s; }
  [data-load="2"] { animation-delay: 0.25s; }
  [data-load="3"] { animation-delay: 0.45s; }
  [data-load="4"] { animation-delay: 0.6s; }
  [data-load="5"] { animation-delay: 0.75s; }
}

@keyframes rise {
  to { opacity: 1; transform: none; }
}

/* ═══════════════ buttons ═══════════════ */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 28px 13px;
  font-family: var(--label);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.22s var(--ease);
}
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }

.button-primary {
  background: var(--red);
  border-color: var(--red);
  color: var(--paper);
}
.button-primary:hover, .button-primary:focus-visible {
  background: var(--red-deep);
  border-color: var(--red-deep);
}

.button-ghost:hover, .button-ghost:focus-visible {
  background: var(--ink);
  color: var(--paper);
}

.button-cream {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--red-deep);
}
.button-cream:hover, .button-cream:focus-visible {
  background: transparent;
  color: var(--paper);
  border-color: var(--paper);
}

.text-link {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--label);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--red);
  border-bottom: 1px solid rgba(163, 37, 27, 0.4);
  padding-bottom: 3px;
  transition: border-color 0.2s ease;
}
.text-link:hover { border-color: var(--red); }

/* ═══════════════ marquee ═══════════════ */

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--hairline);
  padding-block: 15px;
  background: var(--paper-deep);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 46s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }

.marquee-run {
  display: flex;
  align-items: center;
  white-space: nowrap;
  font-family: var(--label);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ═══════════════ sections — shared ═══════════════ */

.section { padding-block: var(--section-pad); }
.section[id] { scroll-margin-top: 70px; }

.section-head { margin-bottom: clamp(30px, 4.5vw, 52px); }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--hairline);
  font-family: var(--label);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.eyebrow-no {
  color: var(--red);
  letter-spacing: 0.08em;
}

h2 {
  margin-top: clamp(20px, 3vw, 32px);
  font-family: var(--display);
  font-weight: 560;
  font-size: clamp(2.1rem, 4.6vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.28rem;
  letter-spacing: -0.005em;
}

p { color: var(--ink-soft); }
p + p { margin-top: 1em; }

/* ═══════════════ 01 · the counter (manifesto) ═══════════════ */

.manifesto {
  max-width: 21em;
  margin-top: 0;
  font-size: clamp(1.9rem, 4.2vw, 3.3rem);
  font-weight: 480;
  line-height: 1.14;
  letter-spacing: -0.012em;
  color: var(--ink);
}

.manifesto em {
  font-style: italic;
  font-weight: 460;
  color: var(--red);
}

.manifesto-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 56px);
  max-width: 900px;
  margin-top: clamp(34px, 5vw, 54px);
}
.manifesto-copy p { margin: 0; }

/* ═══════════════ photo band ═══════════════ */

.photo-band {
  padding-bottom: var(--section-pad);
}

.photo-band img {
  width: 100%;
  height: clamp(380px, 68vh, 660px);
  object-fit: cover;
  object-position: 50% 30%;
  filter: sepia(0.14) saturate(0.9) contrast(1.02) brightness(1.01);
}

.photo-band figcaption {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-top: 16px;
  font-family: var(--label);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.photo-band figcaption::before {
  content: "";
  flex: none;
  width: 26px;
  height: 1.5px;
  background: var(--red);
  transform: translateY(-3px);
}

/* ═══════════════ 02 · the story ═══════════════ */

.section-story { padding-top: 0; }

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: start;
}

.story-copy p { max-width: 34em; }

.story-facts {
  display: grid;
  margin: 0;
  border-top: 1px solid var(--hairline);
}

.fact {
  padding: clamp(20px, 2.6vw, 30px) 0;
  border-bottom: 1px solid var(--hairline);
}

.fact dt {
  font-family: var(--label);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.fact dd {
  margin: 10px 0 0;
  font-family: var(--display);
  font-weight: 580;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.fact:first-child dd {
  font-size: clamp(2.6rem, 4.6vw, 3.6rem);
  color: var(--red);
}

/* ═══════════════ 03 · produce list ═══════════════ */

.produce-list {
  border-top: 1px solid var(--hairline);
}

.produce-row {
  display: grid;
  grid-template-columns: clamp(54px, 8vw, 96px) minmax(0, 0.85fr) minmax(0, 1.4fr);
  align-items: baseline;
  gap: clamp(14px, 3vw, 40px);
  padding: clamp(20px, 3vw, 30px) clamp(4px, 1vw, 12px);
  border-bottom: 1px solid var(--hairline);
  transition: background 0.25s ease;
}

.produce-row:hover { background: var(--paper-raised); }

.row-no {
  font-family: var(--label);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
  transition: color 0.25s ease;
}
.produce-row:hover .row-no { color: var(--red); }

.produce-row h3 {
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  font-weight: 570;
}

.produce-row p {
  margin: 0;
  font-size: 1rem;
}

.produce-note {
  margin-top: clamp(26px, 4vw, 38px);
  font-style: italic;
  font-size: 1.05rem;
}
.produce-note a {
  color: var(--red);
  text-decoration-color: rgba(163, 37, 27, 0.4);
  text-underline-offset: 3px;
}

/* ═══════════════ 04 · the board ═══════════════ */

.section-board {
  background:
    radial-gradient(ellipse 70% 60% at 18% 8%, rgba(255, 255, 255, 0.045), transparent),
    radial-gradient(ellipse 60% 50% at 85% 95%, rgba(255, 255, 255, 0.03), transparent),
    var(--board);
  color: var(--board-text);
}

.section-board .eyebrow {
  border-top-color: rgba(237, 231, 216, 0.25);
  color: rgba(237, 231, 216, 0.6);
}
.section-board .eyebrow-no { color: var(--gold); }
.section-board h2 { color: var(--board-text); }

.board-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.95fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: center;
}

.board-grid .section-head { margin-bottom: 0; }

.board-intro {
  max-width: 26em;
  margin-top: 20px;
  color: rgba(237, 231, 216, 0.68);
}

.board-panel {
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid rgba(237, 231, 216, 0.28);
  outline: 1px solid rgba(237, 231, 216, 0.12);
  outline-offset: 6px;
}

.board-label {
  font-family: var(--label);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
}

.board-list { margin-top: 22px; }

.board-list li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 13px 0;
}

.board-item {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  font-weight: 500;
  letter-spacing: -0.005em;
}

.board-leader {
  flex: 1;
  border-bottom: 1px dotted rgba(237, 231, 216, 0.4);
  transform: translateY(-5px);
}

.board-unit {
  font-family: var(--label);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(237, 231, 216, 0.66);
  white-space: nowrap;
}

.board-foot {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(237, 231, 216, 0.16);
  font-style: italic;
  font-size: 1.02rem;
  color: rgba(237, 231, 216, 0.62);
}

/* ═══════════════ 05 · trade ═══════════════ */

.section-trade {
  background: linear-gradient(155deg, var(--red) 0%, #8c1e15 55%, var(--red-deep) 100%);
}

.trade-frame {
  padding: clamp(36px, 5.5vw, 72px);
  border: 1px solid rgba(222, 189, 130, 0.55);
  outline: 1px solid rgba(222, 189, 130, 0.28);
  outline-offset: 7px;
  text-align: center;
}

.trade-frame .eyebrow {
  justify-content: center;
  border-top: 0;
  padding-top: 0;
  color: rgba(246, 241, 229, 0.72);
}
.trade-frame .eyebrow-no { color: #debd82; }

.trade-frame h2 { color: var(--paper); }

.trade-copy {
  max-width: 30em;
  margin: 22px auto 0;
  color: rgba(246, 241, 229, 0.8);
}

.trade-frame .button { margin-top: 32px; }

/* ═══════════════ 06 · visit ═══════════════ */

.visit-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: start;
}

.visit-details h3 {
  font-family: var(--label);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.visit-details address {
  margin-top: 14px;
  font-size: 1.16rem;
  line-height: 1.6;
}

.visit-h-times { margin-top: clamp(30px, 4vw, 44px); }

.times { margin-top: 6px; }

.times div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid var(--hairline);
}

.times dt { font-size: 1.05rem; }
.times dd {
  margin: 0;
  font-family: var(--label);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
}

.times-note {
  margin-top: 14px;
  font-style: italic;
  font-size: 0.95rem;
}

.visit-call {
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid var(--hairline);
  background: var(--paper-raised);
  text-align: center;
}

.call-label {
  font-family: var(--label);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.call-number {
  display: inline-block;
  margin-top: 18px;
  font-family: var(--display);
  font-weight: 640;
  font-variation-settings: "opsz" 144;
  font-size: clamp(3rem, 7.5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-decoration: none;
  color: var(--red);
  transition: color 0.2s ease;
}
.call-number:hover { color: var(--red-deep); }

.call-note {
  margin-top: 20px;
  font-style: italic;
  font-size: 0.98rem;
}

/* ═══════════════ footer ═══════════════ */

.site-footer {
  background: var(--ink);
  color: rgba(246, 241, 229, 0.78);
  padding-block: clamp(44px, 6vw, 64px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.footer-wordmark {
  font-family: var(--display);
  font-weight: 640;
  font-size: 1.5rem;
  color: var(--paper);
}

.footer-quality {
  margin-top: 6px;
  font-family: var(--label);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(246, 241, 229, 0.55);
}

.footer-details {
  text-align: center;
  font-size: 0.98rem;
  line-height: 1.8;
}
.footer-details p { color: rgba(246, 241, 229, 0.78); }
.footer-details a {
  color: var(--paper);
  text-decoration-color: rgba(246, 241, 229, 0.4);
  text-underline-offset: 3px;
}

.footer-legal {
  text-align: right;
  font-family: var(--label);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
}
.footer-legal p { color: rgba(246, 241, 229, 0.55); }

/* ═══════════════ reveals ═══════════════ */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.9s ease calc(var(--d, 0) * 90ms),
    transform 0.9s var(--ease) calc(var(--d, 0) * 90ms);
}
.reveal.in { opacity: 1; transform: none; }

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

/* ═══════════════ responsive ═══════════════ */

@media (max-width: 900px) {
  .nav, .header-tel { display: none; }
  .menu-toggle { display: block; }

  .manifesto-copy { grid-template-columns: 1fr; }

  .story-grid { grid-template-columns: 1fr; }
  .story-facts { margin-top: 8px; }

  .produce-row {
    grid-template-columns: clamp(44px, 7vw, 60px) 1fr;
  }
  .produce-row p { grid-column: 2; margin-top: 4px; }

  .board-grid { grid-template-columns: 1fr; }

  .visit-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-details, .footer-legal { text-align: center; }
}

@media (max-width: 560px) {
  :root { --section-pad: clamp(72px, 18vw, 100px); }

  body { font-size: 1.02rem; }

  .hero { min-height: 92svh; }

  .quality-line { letter-spacing: 0.22em; text-indent: 0.22em; }
  .quality-line .rule { width: 22px; }

  .hero-actions { flex-direction: column; align-items: stretch; width: 100%; max-width: 320px; }

  .photo-band img { height: clamp(300px, 55vh, 420px); }

  .board-panel { outline-offset: 4px; }
  .trade-frame { outline-offset: 5px; }
}

/* ═══════════════ print ═══════════════ */

@media print {
  body::before, .site-header, .mobile-menu, .marquee, .hero-actions { display: none; }
  body { background: #fff; }
  .section { padding-block: 24px; }
  .section-board, .section-trade { background: #fff; color: #000; }
}
