/* Bu Qtair — design tokens & base styles */

:root {
  --harbour-blue: #1F3A4D;
  --harbour-blue-soft: #3E6B85;
  --fry-amber: #E8A33A;
  --fry-amber-deep: #C9851E;
  --storefront-green: #2E5E3A;
  --concrete: #9A9590;
  --concrete-soft: #C7C1B8;
  --paper: #F7F1E6;
  --paper-deep: #EFE7D5;
  --ink: #161412;
  --ink-soft: #3A352E;

  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, Menlo, monospace;
  --arabic-sans: "Tajawal", system-ui, sans-serif;
  --arabic-serif: "Reem Kufi", "Tajawal", serif;

  --maxw: 1180px;
  --gutter: 64px;

  --d-pad-section: 96px;
  --d-pad-card: 28px;
}

[data-density="compact"] {
  --d-pad-section: 64px;
  --d-pad-card: 20px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

[lang="ar"] body { font-family: var(--arabic-sans); }
[lang="ar"] .display { font-family: var(--arabic-serif); }

a { color: var(--harbour-blue-soft); text-decoration: none; }
a:hover { text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: 3px; }

img { display: block; max-width: 100%; }

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

/* Typography */
.display {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.02;
  font-style: italic;
  font-variation-settings: "SOFT" 50, "WONK" 1;
}
.display-roman { font-style: normal; font-variation-settings: "SOFT" 50, "WONK" 0; }

h1.display { font-size: clamp(44px, 7vw, 88px); }
h2.display { font-size: clamp(34px, 4.4vw, 56px); }
h3.display { font-size: clamp(26px, 2.6vw, 36px); }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}

.lead {
  font-size: 20px;
  line-height: 1.55;
  max-width: 56ch;
}

/* Layout */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
@media (max-width: 760px) {
  :root { --gutter: 24px; }
}

.section { padding-top: var(--d-pad-section); padding-bottom: var(--d-pad-section); }
.section-sm { padding-top: calc(var(--d-pad-section) * 0.5); padding-bottom: calc(var(--d-pad-section) * 0.5); }
.divider { border-top: 1px solid color-mix(in oklab, var(--concrete) 40%, transparent); }

/* Pills */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: 1px solid color-mix(in oklab, var(--ink) 14%, transparent);
  background: color-mix(in oklab, var(--paper) 70%, transparent);
  color: var(--ink);
  white-space: nowrap;
}
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ink); }
.pill.green .dot { background: var(--storefront-green); }
.pill.amber .dot { background: var(--fry-amber); }
.pill.red .dot { background: #B23A2B; }
.pill.blue .dot { background: var(--harbour-blue); }

.pill-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  background: transparent;
  color: inherit;
  transition: transform .12s ease, background .12s ease, color .12s ease, border-color .12s ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--harbour-blue); color: var(--paper); }
.btn-primary:hover { background: var(--ink); }

.btn-accent { background: var(--fry-amber); color: var(--ink); }
.btn-accent:hover { background: var(--fry-amber-deep); }

.btn-ghost { border-color: color-mix(in oklab, var(--ink) 22%, transparent); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); background: color-mix(in oklab, var(--ink) 4%, transparent); }

.btn-inverse { background: var(--paper); color: var(--ink); }
.btn-inverse:hover { background: #fff; }

.btn-link {
  padding: 0;
  background: transparent;
  color: var(--harbour-blue);
  border: 0;
  font-weight: 600;
  border-bottom: 1.5px solid currentColor;
  border-radius: 0;
}
.btn-link:hover { color: var(--ink); }

.arrow { width: 1em; height: 1em; }

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  transition: background .25s ease, border-color .25s ease, color .25s ease;
  background: transparent;
  color: var(--paper);
  border-bottom: 1px solid transparent;
}
.nav.solid {
  background: var(--paper);
  color: var(--ink);
  border-bottom-color: color-mix(in oklab, var(--ink) 12%, transparent);
}
.nav .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--gutter);
  max-width: var(--maxw);
  margin: 0 auto;
}
.nav .brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
  cursor: pointer;
}
.nav .brand .crest {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--fry-amber);
  color: var(--ink);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  padding-bottom: 2px;
}
.nav .links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav .links a {
  color: inherit;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.005em;
  position: relative;
  padding: 6px 0;
  cursor: pointer;
}
.nav .links a.active::after {
  content: "";
  position: absolute;
  inset: auto 0 -2px 0;
  height: 1.5px;
  background: currentColor;
}
.nav .links a:hover { text-decoration: none; opacity: 0.75; }
.nav .nav-right { display: flex; gap: 14px; align-items: center; }
.nav .lang {
  display: inline-flex; gap: 2px;
  border: 1px solid currentColor; border-radius: 2px;
  padding: 2px; font-size: 11px; font-weight: 600; letter-spacing: 0.06em;
  opacity: 0.85;
}
.nav .lang button {
  appearance: none; border: 0; background: transparent; color: inherit;
  padding: 4px 8px; cursor: pointer; font: inherit;
}
.nav .lang button.on { background: currentColor; color: var(--paper); }
.nav.solid .lang button.on { color: var(--paper); }
.nav.solid .lang button.on { background: var(--ink); color: var(--paper); }

@media (max-width: 880px) {
  .nav .links { display: none; }
}

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  color: var(--paper);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  margin-top: -76px;
  padding-top: 76px;
}
.hero .bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero .scrim {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 22% 78%, rgba(15,25,35,0.78) 0%, rgba(15,25,35,0.55) 30%, rgba(15,25,35,0) 65%),
    linear-gradient(180deg,
      rgba(0,0,0,0.40) 0%,
      rgba(0,0,0,0.10) 30%,
      rgba(0,0,0,0.05) 50%,
      rgba(0,0,0,0.55) 100%);
  z-index: 1;
}
.hero .grain {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 23% 47%, rgba(255,255,255,0.04) 0 1px, transparent 1px),
    radial-gradient(circle at 71% 23%, rgba(0,0,0,0.07) 0 1px, transparent 1px),
    radial-gradient(circle at 47% 81%, rgba(255,255,255,0.03) 0 1px, transparent 1px);
  background-size: 5px 5px, 7px 7px, 9px 9px;
  z-index: 2;
  mix-blend-mode: overlay;
  opacity: 0.5;
  pointer-events: none;
}
.hero .content {
  position: relative; z-index: 3;
  max-width: var(--maxw); margin: 0 auto; width: 100%;
  padding: 80px var(--gutter);
}
.hero h1 {
  margin: 0 0 24px 0;
  color: var(--paper);
  max-width: 14ch;
}
.hero h1 em {
  font-style: italic;
  color: var(--paper);
  position: relative;
  white-space: nowrap;
  background: linear-gradient(180deg, transparent 62%, color-mix(in oklab, var(--fry-amber) 78%, transparent) 62%, color-mix(in oklab, var(--fry-amber) 78%, transparent) 92%, transparent 92%);
  padding: 0 0.05em;
}
.hero .ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero .hero-pills {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px;
}
.hero .hero-pills .pill {
  background: rgba(247,241,230,0.92);
  color: var(--ink);
  border-color: transparent;
}

.hero-meta {
  position: absolute; z-index: 3;
  top: 96px; right: var(--gutter);
  text-align: right;
  color: var(--paper);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  line-height: 1.8;
  opacity: 0.88;
}
.hero-meta .big {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  letter-spacing: -0.01em;
  display: block;
  margin-bottom: 6px;
  opacity: 1;
}

/* Hero variant: editorial */
.hero.variant-editorial {
  min-height: auto;
  margin-top: 0;
  padding-top: 0;
  color: var(--ink);
  background: var(--paper);
  display: block;
}
.hero.variant-editorial .row {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 64px var(--gutter) 96px;
}
.hero.variant-editorial .copy h1 {
  color: var(--ink);
  margin-top: 16px;
}
.hero.variant-editorial .copy h1 em { color: var(--fry-amber-deep); }
.hero.variant-editorial .photo {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero.variant-editorial .photo .caption {
  position: absolute;
  left: 16px; bottom: 16px;
  background: var(--ink); color: var(--paper);
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em;
  padding: 6px 10px;
  text-transform: uppercase;
}
@media (max-width: 880px) {
  .hero.variant-editorial .row { grid-template-columns: 1fr; }
}

/* Hero variant: stacked story */
.hero.variant-stack {
  min-height: auto;
  margin-top: 0;
  padding-top: 0;
  color: var(--ink);
  background: var(--paper);
  display: block;
}
.hero.variant-stack .top {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 64px var(--gutter) 48px;
  text-align: center;
}
.hero.variant-stack .top h1 {
  color: var(--ink);
  margin: 16px auto 24px;
  max-width: 16ch;
}
.hero.variant-stack .top h1 em { color: var(--fry-amber-deep); }
.hero.variant-stack .top .ctas { justify-content: center; }
.hero.variant-stack .top .hero-pills { justify-content: center; }
.hero.variant-stack .strip {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr;
  gap: 4px;
  padding: 0 4px 4px;
}
.hero.variant-stack .strip > div {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
}
@media (max-width: 760px) {
  .hero.variant-stack .strip { grid-template-columns: 1fr; }
}

/* Cards & components */
.card {
  background: var(--paper);
  border: 1px solid color-mix(in oklab, var(--concrete) 50%, transparent);
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) {
  .steps-row { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .steps-row { grid-template-columns: 1fr; }
}
.step-card {
  padding: var(--d-pad-card);
  border-top: 1.5px solid var(--ink);
  background: transparent;
}
.step-card .n {
  font-family: var(--serif);
  font-style: italic;
  font-size: 36px;
  color: var(--fry-amber-deep);
  line-height: 1;
  margin-bottom: 24px;
}
.step-card h4 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.1;
  margin: 0 0 8px;
}
.step-card p { margin: 0; font-size: 14px; color: var(--ink-soft); }

/* Species grid */
.species-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  background: var(--ink);
  border: 1px solid var(--ink);
}
@media (max-width: 880px) { .species-grid { grid-template-columns: repeat(2, 1fr); } }
.species {
  position: relative;
  background: var(--paper);
  padding: 28px 20px 24px;
  cursor: default;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  transition: background .15s;
}
.species:hover { background: var(--paper-deep); }
.species .img {
  height: 100px;
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.species .img img { max-height: 100px; width: auto; object-fit: contain; mix-blend-mode: multiply; }
.species .name {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.species .ar {
  font-family: var(--arabic-serif);
  font-size: 16px;
  color: var(--ink-soft);
  margin-top: 2px;
}
.species .price {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  margin-top: 8px;
}
.species .availability {
  position: absolute; top: 14px; right: 14px;
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--storefront-green);
}
.species .availability.out { color: var(--concrete); }

/* Pull quote */
.pull-quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.015em;
}
.pull-quote .open { color: var(--fry-amber-deep); margin-right: 4px; }
.pull-quote .src {
  display: block;
  margin-top: 24px;
  font-family: var(--mono);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* Press */
.press-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid color-mix(in oklab, var(--ink) 22%, transparent);
  border-bottom: 1px solid color-mix(in oklab, var(--ink) 22%, transparent);
}
@media (max-width: 760px) { .press-strip { grid-template-columns: repeat(2, 1fr); } }
.press-strip .item {
  padding: 28px 20px;
  display: grid; place-items: center;
  border-right: 1px solid color-mix(in oklab, var(--ink) 14%, transparent);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 20px;
  color: var(--ink-soft);
  letter-spacing: -0.01em;
  text-align: center;
}
.press-strip .item:last-child { border-right: 0; }
.press-strip .item small {
  display: block;
  font-family: var(--mono);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--concrete);
  margin-top: 4px;
}

/* Menu */
.menu-section {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  padding: 64px 0;
  border-top: 1px solid color-mix(in oklab, var(--ink) 18%, transparent);
}
@media (max-width: 760px) { .menu-section { grid-template-columns: 1fr; gap: 16px; } }
.menu-section .label .eyebrow { color: var(--harbour-blue); }
.menu-section .label h3 { margin: 8px 0 14px; }
.menu-section .label p { font-size: 14px; color: var(--ink-soft); max-width: 28ch; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 560px) { .menu-grid { grid-template-columns: 1fr; } }
.menu-item {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 16px;
  padding: 14px;
  align-items: center;
  background: var(--paper-deep);
}
.menu-item .thumb {
  height: 76px; width: 76px;
  display: grid; place-items: center;
  background: var(--paper);
}
.menu-item .thumb img { max-height: 64px; width: auto; mix-blend-mode: multiply; }
.menu-item .meta {
  display: flex; flex-direction: column; gap: 2px;
}
.menu-item .row1 {
  display: flex; justify-content: space-between; align-items: baseline; gap: 8px;
}
.menu-item .name {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: 19px;
  line-height: 1.1;
}
.menu-item .price {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--harbour-blue);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.menu-item .desc {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.45;
}

.menu-list { /* simpler list for drinks/sides */
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px 32px;
}
@media (max-width: 560px) { .menu-list { grid-template-columns: 1fr; } }
.menu-list .row {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 12px 0;
  border-bottom: 1px dotted color-mix(in oklab, var(--ink) 22%, transparent);
  font-size: 15px;
}
.menu-list .row .n { font-weight: 500; }
.menu-list .row .p { font-family: var(--mono); font-size: 12px; color: var(--ink-soft); }

/* Visit */
.visit-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  border: 1px solid var(--ink);
}
@media (max-width: 880px) { .visit-grid { grid-template-columns: 1fr; } }
.visit-grid .map {
  position: relative;
  min-height: 480px;
  background: #DCE3E0;
  overflow: hidden;
}
.visit-grid .visit-info { padding: 40px; background: var(--paper); }
.visit-grid .visit-info h3 { margin: 0 0 8px; }
.visit-grid .visit-info .addr {
  font-size: 16px; line-height: 1.55; color: var(--ink); margin: 12px 0 24px;
}
.visit-grid .visit-info .cta-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }

.hours-table { width: 100%; border-collapse: collapse; margin-top: 12px; }
.hours-table td {
  padding: 10px 0;
  font-size: 14px;
  border-bottom: 1px dotted color-mix(in oklab, var(--ink) 22%, transparent);
}
.hours-table td:last-child { text-align: right; font-family: var(--mono); font-size: 12px; }
.hours-table tr.today td { font-weight: 700; color: var(--harbour-blue); }

/* FAQ */
.faq details {
  border-bottom: 1px solid color-mix(in oklab, var(--ink) 22%, transparent);
  padding: 20px 0;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1;
  color: var(--fry-amber-deep);
  transition: transform .2s;
  font-style: normal;
}
.faq details[open] summary::after { content: "−"; }
.faq details p { margin: 12px 0 0; max-width: 65ch; font-size: 16px; color: var(--ink-soft); }

/* Footer */
footer.foot {
  background: var(--ink);
  color: var(--paper);
  padding: 80px var(--gutter) 36px;
}
footer.foot .foot-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
@media (max-width: 880px) { footer.foot .foot-inner { grid-template-columns: 1fr 1fr; } }
footer.foot h5 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--concrete-soft);
  margin: 0 0 16px;
  font-weight: 500;
}
footer.foot .brand-block .display { font-size: 32px; line-height: 1; margin: 0 0 16px; }
footer.foot a { color: var(--paper); border-bottom: 1px solid transparent; }
footer.foot a:hover { border-bottom-color: var(--fry-amber); text-decoration: none; }
footer.foot ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
footer.foot .baseline {
  margin-top: 64px; padding-top: 24px;
  border-top: 1px solid color-mix(in oklab, var(--paper) 16%, transparent);
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em;
  color: var(--concrete);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}

/* Floating call FAB */
.fab {
  position: fixed; right: 24px; bottom: 24px;
  z-index: 40;
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px 14px 14px;
  background: var(--storefront-green);
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.22);
  font-size: 14px; font-weight: 600;
  cursor: pointer;
  transition: transform .15s ease;
}
.fab:hover { transform: translateY(-1px); }
.fab .icon { width: 36px; height: 36px; border-radius: 50%; background: #fff; color: var(--storefront-green); display: grid; place-items: center; font-size: 18px; }
.fab .label { display: flex; flex-direction: column; line-height: 1.1; }
.fab .label small { font-weight: 400; opacity: 0.8; font-size: 11px; }

/* RTL */
[dir="rtl"] .nav .nav-inner { direction: rtl; }
[dir="rtl"] .hero-meta { right: auto; left: var(--gutter); text-align: left; }
[dir="rtl"] .fab { right: auto; left: 24px; }
[dir="rtl"] footer.foot .baseline { direction: rtl; }

/* Today's catch board */
.catch-board {
  background: var(--ink);
  color: var(--paper);
  padding: 32px var(--gutter);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  display: grid; grid-template-columns: auto 1fr auto; gap: 24px; align-items: center;
}
.catch-board .ticker {
  white-space: nowrap; overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.catch-board .ticker-inner {
  display: inline-flex; gap: 32px;
  animation: ticker 38s linear infinite;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.catch-board .badge {
  border: 1px solid var(--paper); padding: 6px 10px;
  font-size: 10px;
}
.catch-board .live {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--fry-amber);
}
.catch-board .live::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--fry-amber);
  animation: pulse 1.6s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1);} 50% { opacity: 0.4; transform: scale(0.85);} }

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 140px;
  gap: 4px;
}
.gallery div {
  background-size: cover; background-position: center;
}
.gallery .a { grid-column: span 2; grid-row: span 2; }
.gallery .b { grid-column: span 2; }
.gallery .c { grid-column: span 2; grid-row: span 2; }
.gallery .d { grid-column: span 2; }
.gallery .e { grid-column: span 3; }
.gallery .f { grid-column: span 3; }
@media (max-width: 760px) { .gallery { grid-template-columns: repeat(2, 1fr); } }

/* Specifics: how-it-works full page */
.steps-large {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px 80px;
}
@media (max-width: 760px) { .steps-large { grid-template-columns: 1fr; gap: 32px; } }
.steps-large .step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
}
.steps-large .step .nbig {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: 88px;
  line-height: 0.85;
  color: var(--fry-amber-deep);
}
.steps-large .step h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: 28px;
}
.steps-large .step p { margin: 0; color: var(--ink-soft); }
.steps-large .step .meta {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--harbour-blue);
  margin-top: 12px;
}

/* Story block */
.story {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 760px) { .story { grid-template-columns: 1fr; } }
.story .photo {
  aspect-ratio: 4/5;
  background-size: cover; background-position: center;
}
.story p { font-size: 17px; line-height: 1.65; max-width: 52ch; }
.story p + p { margin-top: 14px; }
.story .sig {
  font-family: var(--serif); font-style: italic; font-size: 20px;
  margin-top: 24px;
  color: var(--harbour-blue);
}

/* Page header (for sub-pages) */
.page-head {
  padding: 56px var(--gutter) 32px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.page-head h1 { margin: 16px 0 0; max-width: 16ch; }
.page-head .lead { margin-top: 20px; }
.page-head .crumb {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-soft);
}

/* Press page */
.press-articles {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px;
}
@media (max-width: 760px) { .press-articles { grid-template-columns: 1fr; } }
.press-card {
  padding: 24px;
  background: var(--paper-deep);
  display: flex; flex-direction: column; gap: 12px;
}
.press-card .src {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--harbour-blue);
}
.press-card h4 {
  font-family: var(--serif); font-style: italic; font-weight: 600;
  font-size: 22px; line-height: 1.2; margin: 0;
}
.press-card .meta {
  margin-top: auto;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em;
  color: var(--ink-soft);
}

/* Instagram strip */
.ig-strip {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 4px;
}
@media (max-width: 760px) { .ig-strip { grid-template-columns: repeat(3, 1fr); } }
.ig-strip div { aspect-ratio: 1; background-size: cover; background-position: center; }

/* Misc */
.kicker-label {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-top: 1px solid var(--ink);
  padding-top: 8px;
  min-width: 200px;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .catch-board .ticker-inner { animation: none; }
  .catch-board .live::before { animation: none; }
}
