/* ============================================================
   MAIN BEACH BAKERY — B&W Streetwear Landing Page
   ============================================================ */

* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #ffffff;
  --fg: #000000;
  --accent: #F5F1E8;
  --muted: #8a8a8a;
  --cta-blue: #0061FF;
  --rule: 4px;
  --pad-x: clamp(20px, 4vw, 72px);
}

html, body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 100px;
}

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

/* Skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--fg);
  color: var(--bg);
  padding: 10px 16px;
  z-index: 100;
  font-family: 'Archivo Black', sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.skip-link:focus {
  left: 0;
}

/* Visible focus rings everywhere */
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--cta-blue);
  outline-offset: 2px;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.display {
  font-family: 'Anton', 'Bebas Neue', 'Oswald', Impact, sans-serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 0.85;
  text-transform: uppercase;
}

.mono-label {
  font-family: 'JetBrains Mono', 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}

.eyebrow {
  font-family: 'Archivo Black', 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 900;
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker {
  background: var(--fg);
  color: var(--bg);
  border-bottom: var(--rule) solid var(--fg);
  overflow: hidden;
  position: relative;
  z-index: 60;
}
.ticker-track {
  display: flex;
  gap: 40px;
  padding: 10px 0;
  white-space: nowrap;
  animation: scroll-left 40s linear infinite;
  width: max-content;
}
.ticker-item {
  font-family: 'Archivo Black', sans-serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 40px;
}
.ticker-item::after {
  content: "\2726";
  font-size: 10px;
}

@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Big rolling divider */
.marquee-huge {
  border-top: var(--rule) solid var(--fg);
  border-bottom: var(--rule) solid var(--fg);
  overflow: hidden;
  background: var(--bg);
  color: var(--fg);
}
.marquee-huge.inverted {
  background: var(--fg);
  color: var(--bg);
}
.marquee-huge-track {
  display: flex;
  gap: 60px;
  padding: 18px 0;
  white-space: nowrap;
  animation: scroll-left 24s linear infinite;
  width: max-content;
  font-family: 'Anton', sans-serif;
  font-size: clamp(48px, 8vw, 120px);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1;
}
.marquee-huge-track span {
  display: inline-flex;
  align-items: center;
  gap: 60px;
}
.marquee-huge-track .star {
  font-size: 0.6em;
  transform: translateY(-0.08em);
}
.marquee-small .marquee-huge-track {
  font-size: clamp(20px, 3vw, 32px);
  padding: 14px 0;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: var(--rule) solid var(--fg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px var(--pad-x);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img {
  height: 56px;
  width: auto;
}
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-family: 'Archivo Black', sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
  padding: 8px 4px;
  display: inline-block;
  cursor: pointer;
}
.nav-links a > * { pointer-events: none; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 4px; right: calc(100% - 4px);
  bottom: 4px;
  height: 2px;
  background: currentColor;
  transition: right .3s ease;
}
.nav-links a:hover::after, .nav-links a:focus-visible::after { right: 4px; }

.nav-cta {
  border: 2px solid var(--fg);
  background: var(--fg);
  color: var(--bg);
  padding: 10px 18px;
  font-family: 'Archivo Black', sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .2s ease;
}
.nav-cta:hover {
  background: var(--bg);
  color: var(--fg);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100vh - 100px);
  background: var(--fg);
  color: var(--bg);
  overflow: hidden;
  padding: 60px var(--pad-x) 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-bg img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.1) brightness(0.85);
  will-change: transform;
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(0,0,0,0.05), rgba(0,0,0,0.45) 85%),
    linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.4));
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  gap: 20px;
}
.hero-tag {
  display: flex;
  gap: 10px;
  align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero-tag::before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
}

.hero-headline {
  font-size: clamp(72px, 16vw, 260px);
  line-height: 0.82;
}
.hero-headline .word {
  display: block;
  overflow: hidden;
}
.hero-headline .word-inner {
  display: inline-block;
  transform: translateY(110%);
  animation: rise 0.9s cubic-bezier(.2,.8,.2,1) forwards;
}
.hero-headline .word:nth-child(1) .word-inner { animation-delay: .15s; }
.hero-headline .word:nth-child(2) .word-inner { animation-delay: .30s; }
.hero-headline .word:nth-child(3) .word-inner { animation-delay: .45s; }
@keyframes rise {
  to { transform: translateY(0); }
}

.hero-strike {
  position: relative;
  display: inline-block;
}
.hero-strike::after {
  content: "";
  position: absolute;
  left: -0.05em; right: -0.05em;
  top: 45%;
  height: 0.08em;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  animation: strike 0.6s ease .9s forwards;
}
@keyframes strike { to { transform: scaleX(1); } }

.hero-sub {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-top: 44px;
  flex-wrap: wrap;
}
.hero-desc {
  max-width: 380px;
  font-size: 15px;
  line-height: 1.5;
  opacity: .85;
}
.hero-desc strong { font-family: 'Archivo Black', sans-serif; }

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  border: 2px solid var(--bg);
  background: transparent;
  color: var(--bg);
  padding: 18px 28px;
  font-family: 'Archivo Black', sans-serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all .2s ease;
  position: relative;
  overflow: hidden;
}
.btn-fill {
  background: var(--bg);
  color: var(--fg);
}
.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--accent);
}
.btn .arrow {
  transition: transform .3s ease;
  display: inline-block;
}
.btn:hover .arrow { transform: translateX(4px); }

/* Sticker badges */
.sticker {
  position: absolute;
  z-index: 5;
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
  will-change: transform;
}
.sticker:hover { transform: scale(1.08) rotate(var(--rot, 0deg)) !important; }

.sticker-tape {
  background: var(--cta-blue);
  color: #fff;
  padding: 8px 16px;
  font-family: 'Archivo Black', sans-serif;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transform: rotate(3deg);
  --rot: 3deg;
  border: 2px solid var(--fg);
  box-shadow: 4px 4px 0 var(--fg);
}
.hero .st-2 { bottom: 28%; left: 5%; }

/* Hero rating pill */
.hero-rating {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1.5px solid var(--bg);
  border-radius: 999px;
  color: var(--bg);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 28px;
  transition: background .2s ease, color .2s ease;
}
.hero-rating:hover {
  background: var(--bg);
  color: var(--fg);
}
.hero-rating-stars {
  color: #FFD34E;
  letter-spacing: 0.02em;
  font-size: 12px;
}
.hero-rating:hover .hero-rating-stars {
  color: #E5B830;
}
.hero-rating-value {
  font-family: 'Archivo Black', sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
}
.hero-rating-sep { opacity: 0.6; }
.hero-rating-count { opacity: 0.9; }

/* Hero local SEO subhead */
.hero-local-sub {
  margin-top: 24px;
  max-width: 720px;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(13px, 1.4vw, 16px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.35;
}
.hero-local-sub strong {
  color: var(--bg);
}
.hero-local-sub span {
  opacity: 0.75;
  font-weight: 400;
  letter-spacing: 0.04em;
}

/* ============================================================
   SECTION HEAD
   ============================================================ */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 60px var(--pad-x) 30px;
  gap: 40px;
  flex-wrap: wrap;
  border-bottom: 2px solid var(--fg);
}
.section-head h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(52px, 9vw, 140px);
  line-height: 0.85;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  flex: 1;
  min-width: 300px;
}
.section-head .meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-end;
  text-align: right;
  min-width: 180px;
}

/* ============================================================
   MENU GRID
   ============================================================ */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-bottom: var(--rule) solid var(--fg);
}
.menu-card {
  position: relative;
  aspect-ratio: 1 / 1.1;
  overflow: hidden;
  border-right: 2px solid var(--fg);
  border-bottom: 2px solid var(--fg);
  cursor: pointer;
  background: var(--fg);
  display: block;
}
.menu-card:nth-child(3n) { border-right: none; }
.menu-card:nth-last-child(-n+3) { border-bottom: none; }

.menu-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.1) brightness(0.9);
  transition: filter .5s ease, transform .8s cubic-bezier(.2,.8,.2,1);
}
.menu-card:hover img, .menu-card:focus-visible img {
  filter: grayscale(0) contrast(1.05) brightness(1);
  transform: scale(1.06);
}
.menu-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.7));
  z-index: 2;
  transition: opacity .4s ease;
}
.menu-card:hover::before { opacity: 0.5; }

.menu-card-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
}
.menu-card-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  opacity: .8;
}
.menu-card-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(28px, 3.6vw, 56px);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.menu-card-title .sub {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400;
  margin-top: 6px;
  opacity: .8;
}
.menu-card-price {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--accent);
  color: var(--fg);
  padding: 8px 12px;
  font-family: 'Archivo Black', sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  border: 2px solid var(--fg);
  transform: rotate(6deg);
  z-index: 4;
  transition: transform .3s ease;
}
.menu-card:hover .menu-card-price {
  transform: rotate(-3deg) scale(1.1);
}
.menu-card-arrow {
  position: absolute;
  bottom: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 3;
  transition: transform .3s ease;
}
.menu-card:hover .menu-card-arrow {
  transform: rotate(-45deg) scale(1.15);
}

/* ============================================================
   STORY SPLIT
   ============================================================ */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: var(--rule) solid var(--fg);
  position: relative;
}
.story-img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-right: 2px solid var(--fg);
}
.story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.15) brightness(0.9);
  transition: transform 1s cubic-bezier(.2,.8,.2,1);
}
.story:hover .story-img img { transform: scale(1.03); }

.story-img .frame-tag {
  position: absolute;
  top: 20px; left: 20px;
  color: #fff;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  display: flex;
  gap: 8px;
  align-items: center;
}
.story-img .frame-tag::before {
  content: ""; width: 8px; height: 8px; background: #fff; display: block;
}
.story-img .frame-count {
  position: absolute;
  bottom: 20px; right: 20px;
  color: #fff;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
}

.story-content {
  padding: 60px var(--pad-x);
  background: var(--fg);
  color: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}
.story-headline {
  font-family: 'Anton', sans-serif;
  font-size: clamp(48px, 6vw, 110px);
  line-height: 0.85;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.story-headline .accent-line {
  color: var(--accent);
}
.story-body {
  font-size: 15px;
  line-height: 1.6;
  max-width: 480px;
  opacity: 0.85;
}
.story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
  padding-top: 30px;
  border-top: 2px solid var(--bg);
}
.stat-num {
  font-family: 'Anton', sans-serif;
  font-size: 56px;
  line-height: 1;
}
.stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 6px;
  opacity: 0.7;
}

/* ============================================================
   PRESS
   ============================================================ */
.press {
  padding: 80px var(--pad-x);
  background: var(--bg);
  color: var(--fg);
  border-bottom: var(--rule) solid var(--fg);
}
.press-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}
.press-head h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(40px, 6vw, 90px);
  line-height: 0.85;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.press-card {
  border: 3px solid var(--fg);
  padding: 30px;
  background: var(--bg);
  position: relative;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease;
}
.press-card:nth-child(1) { transform: rotate(-1deg); }
.press-card:nth-child(2) { transform: rotate(0.5deg); }
.press-card:nth-child(3) { transform: rotate(-0.3deg); }
.press-card:hover {
  transform: translate(-4px, -4px) rotate(0);
  box-shadow: 8px 8px 0 var(--fg);
}
.press-quote-mark {
  font-family: 'Anton', sans-serif;
  font-size: 80px;
  line-height: 0.8;
  margin-bottom: -10px;
}
.press-quote {
  font-family: 'Archivo Black', sans-serif;
  font-size: 20px;
  line-height: 1.25;
  margin: 0 0 24px 0;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.press-src {
  border-top: 2px solid var(--fg);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.press-stamp {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--fg);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Archivo Black', sans-serif;
  font-size: 9px;
  text-align: center;
  transform: rotate(12deg);
  letter-spacing: 0.08em;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--fg);
  color: var(--bg);
  padding: 80px var(--pad-x) 30px;
}
.footer-headline-block {
  position: relative;
  overflow: hidden;
  margin: -80px calc(-1 * var(--pad-x)) 60px;
  padding: 80px var(--pad-x) 40px;
}
.footer-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--fg);
}
.footer-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
  filter: grayscale(1) contrast(1.0) brightness(1.05);
}
.footer-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, #000 0%, #000 50%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.15) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.1), rgba(0,0,0,0.25));
}
.footer-headline-block .footer-huge {
  position: relative;
  z-index: 2;
  margin-bottom: 0;
}
.footer-huge {
  font-family: 'Anton', sans-serif;
  font-size: clamp(80px, 18vw, 320px);
  line-height: 0.82;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 60px;
  border-bottom: 2px solid var(--bg);
  padding-bottom: 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 2px solid var(--bg);
}
.footer-col h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.25);
}
.footer-col p, .footer-col li {
  font-size: 14px;
  line-height: 1.6;
  list-style: none;
  margin-bottom: 6px;
}
.footer-col a { transition: opacity .2s; }
.footer-col a:hover { opacity: 0.6; }

.footer-address {
  font-family: 'Archivo Black', sans-serif;
  font-size: 20px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.footer-hours {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-hours .row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-bottom: 6px;
  border-bottom: 1px dashed rgba(255,255,255,0.2);
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 2px solid var(--bg);
  padding: 12px 14px;
  font-family: 'Archivo Black', sans-serif;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all .2s;
}
.footer-social a:hover {
  background: var(--bg);
  color: var(--fg);
  opacity: 1;
}
.footer-social a .arr { font-size: 16px; }

.footer-bottom {
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.7;
}
.footer-brand-link {
  display: inline-block;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.25);
  font-family: 'Archivo Black', sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: opacity .2s;
}
.footer-brand-link:hover { opacity: 0.6; }

.footer-brand-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.footer-brand-text {
  display: flex;
  flex-direction: column;
}

.footer-map {
  display: block;
  border: 2px solid var(--bg);
  overflow: hidden;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
  width: 100%;
  max-width: 340px;
}
.footer-map:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 rgba(255,255,255,0.2);
}
.footer-map iframe {
  display: block;
  filter: grayscale(1) contrast(1.05) brightness(0.95);
}
.footer-map-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: var(--bg);
  color: var(--fg);
  font-family: 'Archivo Black', sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-top: 2px solid var(--bg);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-card { aspect-ratio: 1 / 1.1; }
  .menu-card:nth-child(3n) { border-right: 2px solid var(--fg); }
  .menu-card:nth-child(2n) { border-right: none; }
  .menu-card:nth-last-child(-n+3) { border-bottom: 2px solid var(--fg); }
  .menu-card:nth-last-child(-n+2) { border-bottom: none; }
  .story { grid-template-columns: 1fr; }
  .story-img { aspect-ratio: 16 / 10; border-right: none; border-bottom: 2px solid var(--fg); }
  .press-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-col.footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 700px) {
  .footer-brand-inner { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: clamp(60px, 20vw, 100px); }
  .nav-logo img { height: 40px; }
}

/* Reduced motion */
body.no-motion .ticker-track,
body.no-motion .marquee-huge-track {
  animation: none;
}
body.no-motion .hero-headline .word-inner {
  transform: none;
  animation: none;
}
body.no-motion .hero-strike::after {
  transform: scaleX(1);
  animation: none;
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track, .marquee-huge-track { animation: none; }
  .hero-headline .word-inner { transform: none; animation: none; }
  .hero-strike::after { transform: scaleX(1); animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   ANIMATED IN
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
