/* =========================================
   THE WELL COFFEE & GRILL — 2025 REDESIGN
   Magazine × Neo-Brutalist × BBQ Energy
   ========================================= */

/* 1. TOKENS */
:root {
  --fire: #e01010;
  --fire-deep: #9b0a0a;
  --ember: #ff6500;
  --sun: #f5c500;
  --sun-pale: #fff4b0;
  --ink: #100803;
  --char: #1e0f05;
  --cream: #fff9e6;
  --paper: #fffef4;
  --smoke: #f5ece0;
  --muted: #7a5c3e;

  --grad-fire: linear-gradient(135deg, var(--sun), var(--ember), var(--fire));
  --grad-dark: linear-gradient(180deg, var(--char), var(--ink));

  --shadow-sm: 4px 4px 0 var(--ink);
  --shadow-md: 6px 6px 0 var(--ink);
  --shadow-lg: 10px 10px 0 var(--ink);
  --shadow-fire: 6px 6px 0 var(--fire);
  --shadow-sun: 6px 6px 0 var(--sun);

  --border: 3px solid var(--ink);
  --radius: 6px;
  --radius-lg: 14px;
}

/* 2. RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, p { margin: 0; }
figure { margin: 0; }

/* 3. BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border: var(--border);
  border-radius: var(--radius);
  font-family: "DM Sans", sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
  white-space: nowrap;
}

.btn:hover { transform: translate(-2px, -2px); }

.btn-fire {
  background: var(--fire);
  color: white;
  box-shadow: var(--shadow-md);
}
.btn-fire:hover { box-shadow: 8px 8px 0 var(--ink); }

.btn-outline {
  background: transparent;
  color: white;
  border-color: white;
  box-shadow: 4px 4px 0 rgba(255,255,255,0.35);
}
.btn-outline:hover {
  background: white;
  color: var(--ink);
  box-shadow: 6px 6px 0 rgba(255,255,255,0.5);
}

.btn-gold {
  background: var(--sun);
  color: var(--ink);
  box-shadow: var(--shadow-md);
}
.btn-gold:hover { box-shadow: 8px 8px 0 var(--ink); }

.btn-outline-dark {
  background: transparent;
  color: var(--cream);
  border-color: rgba(255,255,255,0.3);
  box-shadow: 4px 4px 0 rgba(255,255,255,0.15);
}
.btn-outline-dark:hover {
  background: white;
  color: var(--ink);
  border-color: white;
  box-shadow: 6px 6px 0 var(--fire);
}

/* =========================================
   4. HEADER
   ========================================= */
.hdr {
  position: fixed;
  top: 12px;
  left: 50%;
  z-index: 100;
  width: min(1220px, calc(100% - 24px));
  transform: translateX(-50%);
}

.hdr-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 64px;
  padding: 0 10px 0 8px;
  border: var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 249, 230, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow-md);
  transition: background 200ms ease, box-shadow 200ms ease;
  position: relative;
}

.hdr-scrolled .hdr-inner {
  background: rgba(255, 254, 244, 0.97);
  box-shadow: var(--shadow-sm);
}

.hdr-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.hdr-brand img {
  width: 44px;
  height: 44px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  object-fit: cover;
}

.hdr-brand-text { line-height: 1.15; }

.hdr-name {
  display: block;
  font-family: "Anton", Impact, sans-serif;
  font-size: 1.05rem;
  text-transform: uppercase;
}

.hdr-sub {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hdr-nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 28px);
  margin-left: auto;
}

.hdr-nav a {
  font-weight: 700;
  font-size: 0.9rem;
  padding: 4px 0;
  position: relative;
}

.hdr-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--fire);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.hdr-nav a:hover::after { transform: scaleX(1); }

.hdr-cta {
  flex-shrink: 0;
  padding: 10px 20px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--fire);
  color: white;
  font-weight: 800;
  font-size: 0.88rem;
  box-shadow: var(--shadow-sm);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.hdr-cta:hover { transform: translate(-2px, -2px); box-shadow: var(--shadow-md); }

.hdr-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--sun);
  cursor: pointer;
  flex-shrink: 0;
}

.hdr-burger span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 200ms ease, opacity 200ms ease;
}

/* =========================================
   5. HERO
   ========================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--ink);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 115%;
  object-fit: cover;
  object-position: center 30%;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg,
      rgba(245, 197, 0, 0.92) 0%,
      rgba(255, 101, 0, 0.80) 38%,
      rgba(224, 16, 16, 0.70) 65%,
      rgba(16, 8, 3, 0.72) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
  width: min(1220px, 100%);
  margin: 0 auto;
  padding: clamp(96px, 14vh, 140px) clamp(20px, 4vw, 60px) clamp(40px, 7vh, 80px);
  flex: 1;
}

.hero-left { display: flex; flex-direction: column; align-items: flex-start; }

.kicker {
  display: inline-block;
  margin-bottom: 18px;
  padding: 7px 16px;
  border: 2px solid var(--ink);
  border-radius: 4px;
  background: var(--sun);
  color: var(--ink);
  font-weight: 900;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: 3px 3px 0 var(--ink);
}

.hero-h1 {
  margin-bottom: 18px;
  font-family: "Anton", Impact, sans-serif;
  text-transform: uppercase;
  line-height: 0.88;
}

.hero-h1-line1 {
  display: block;
  font-size: clamp(4.5rem, 11vw, 10rem);
  color: white;
  -webkit-text-stroke: 3px var(--ink);
  text-shadow: 5px 5px 0 var(--ink);
}

.hero-h1-line2 {
  display: block;
  font-size: clamp(7rem, 19vw, 16.5rem);
  color: var(--sun);
  -webkit-text-stroke: 4px var(--ink);
  text-shadow: 8px 8px 0 var(--ink);
  line-height: 0.82;
}

.hero-h1-line3 {
  display: block;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  color: white;
  -webkit-text-stroke: 2px var(--ink);
  text-shadow: 4px 4px 0 var(--ink);
}

.hero-tagline {
  margin-bottom: 22px;
  font-family: "Permanent Marker", cursive;
  font-size: clamp(1.1rem, 2.4vw, 1.8rem);
  color: var(--sun);
  text-shadow: 2px 2px 0 var(--ink);
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.hero-pills span {
  padding: 7px 15px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 100px;
  background: rgba(16, 8, 3, 0.3);
  backdrop-filter: blur(8px);
  color: white;
  font-weight: 700;
  font-size: 0.82rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Hero Right — Card Stack */
.hero-right { position: relative; }

.hero-card-stack {
  position: relative;
  height: 520px;
}

.hcard {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: var(--radius-lg);
  transition: transform 300ms ease;
}

.hcard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hcard figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 14px;
  background: var(--sun);
  border-top: 2px solid var(--ink);
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hcard-a {
  right: 10px;
  bottom: 20px;
  width: 76%;
  height: 450px;
  transform: rotate(3deg);
  box-shadow: 10px 10px 0 var(--ink);
}

.hcard-a:hover { transform: rotate(1deg) scale(1.02); }

.hcard-b {
  top: 0;
  left: 0;
  width: 60%;
  height: 300px;
  transform: rotate(-5.5deg);
  box-shadow: 8px 8px 0 var(--fire);
  z-index: 2;
}

.hcard-b:hover { transform: rotate(-3deg) scale(1.02); }

.hcard-badge {
  position: absolute;
  bottom: 100px;
  left: 10px;
  z-index: 4;
  width: 92px;
  height: 92px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--fire);
  box-shadow: 5px 5px 0 var(--ink);
  animation: badge-float 3s ease-in-out infinite;
}

.badge-num {
  font-family: "Anton", sans-serif;
  font-size: 1.55rem;
  color: white;
  line-height: 1;
}

.badge-label {
  font-size: 0.58rem;
  font-weight: 800;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
}

/* =========================================
   6. TICKER
   ========================================= */
.ticker {
  position: relative;
  z-index: 3;
  overflow: hidden;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  background: var(--fire);
  color: white;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 26s linear infinite;
}

.ticker-track:hover { animation-play-state: paused; }

.ticker span {
  padding: 14px 32px;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(1rem, 2vw, 1.45rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.ticker .dot {
  color: var(--sun);
  padding: 14px 8px;
}

/* =========================================
   7. MAGAZINE INTRO
   ========================================= */
.mag-intro {
  background: var(--cream);
  border-bottom: 3px solid var(--ink);
  position: relative;
  overflow: hidden;
}

/* Background grid texture */
.mag-intro::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(224, 16, 16, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(224, 16, 16, 0.05) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
}

.mag-intro-inner {
  position: relative;
  width: min(1220px, 100%);
  margin: 0 auto;
  padding: clamp(60px, 8vw, 110px) clamp(20px, 4vw, 60px);
}

.mag-intro-label {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 48px;
  padding-bottom: 18px;
  border-bottom: 3px solid var(--ink);
  font-weight: 800;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.mag-intro-label::before {
  content: '';
  display: block;
  width: 36px;
  height: 4px;
  background: var(--fire);
  flex-shrink: 0;
}

.mag-intro-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: start;
}

.mag-h2 {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(3.2rem, 7vw, 7.2rem);
  line-height: 0.9;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.mag-h2 mark {
  background: var(--sun);
  color: var(--ink);
  padding: 2px 10px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.mag-lead {
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 32px;
  line-height: 1.75;
}

.mag-stats {
  display: flex;
  gap: 0;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.mag-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 14px;
  border-right: 2px solid var(--ink);
  background: white;
  text-align: center;
}

.mag-stat:last-child { border-right: none; }
.mag-stat:first-child { background: var(--sun); }

.mag-stat-num {
  font-family: "Anton", sans-serif;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 5px;
}

.mag-stat-label {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
}

/* Pull quote — right side */
.mag-pullquote {
  margin: 0;
  padding: 28px 28px 24px;
  border: 3px solid var(--ink);
  border-radius: var(--radius-lg);
  background: var(--ink);
  box-shadow: var(--shadow-lg);
  transform: rotate(1.5deg);
  transition: transform 300ms ease;
}

.mag-pullquote:hover { transform: rotate(0deg) scale(1.01); }

.mag-pullquote blockquote {
  font-family: "Anton", sans-serif;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--sun);
  margin-bottom: 22px;
}

.mag-pullquote blockquote strong { color: var(--fire); }

.mag-pullquote-img {
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 16/9;
  border: 2px solid rgba(255,255,255,0.15);
}

.mag-pullquote-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.mag-pullquote:hover .mag-pullquote-img img { transform: scale(1.04); }

/* =========================================
   8. MENU SPREAD
   ========================================= */
.menu-spread {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(60px, 8vw, 110px) clamp(20px, 4vw, 60px);
  position: relative;
  overflow: hidden;
}

/* Noise / grain texture overlay */
.menu-spread::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.15;
  pointer-events: none;
}

.menu-spread-header {
  position: relative;
  width: min(1220px, 100%);
  margin: 0 auto 40px;
  display: flex;
  align-items: flex-end;
  gap: 28px;
  flex-wrap: wrap;
}

.menu-spread-label {
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sun);
  padding: 7px 16px;
  border: 2px solid var(--sun);
  border-radius: 100px;
  align-self: flex-start;
  margin-top: 14px;
}

.menu-spread-h2 {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(3.5rem, 9vw, 9rem);
  line-height: 0.88;
  text-transform: uppercase;
  position: relative;
}

.menu-spread-h2 span { color: var(--fire); }

/* Menu Bento Grid */
.menu-grid {
  display: grid;
  position: relative;
  width: min(1220px, 100%);
  margin: 0 auto;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
}

.mcrd {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.04);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  cursor: default;
}

.mcrd:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,0.25);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}

.mcrd-img {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  min-height: 220px;
}

.mcrd-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.mcrd:hover .mcrd-img img { transform: scale(1.07); }

.mcrd-body {
  padding: 18px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.mcrd-cat {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 11px;
  border-radius: 100px;
  background: rgba(255,255,255,0.1);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.75);
  width: fit-content;
}

.mcrd-title {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 8px;
  flex: 1;
}

.mcrd-desc {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
  line-height: 1.5;
}

.mcrd-price {
  font-weight: 700;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin-top: auto;
}

.mcrd-price strong {
  font-family: "Anton", sans-serif;
  font-size: 1.45rem;
  color: var(--sun);
  margin-left: 4px;
}

/* Card Variants */
.mcrd-hero {
  grid-row: span 2;
  background: linear-gradient(180deg, #2c1200, #0f0803);
}

.mcrd-hero .mcrd-img { min-height: 420px; }

.mcrd-yellow {
  background: var(--sun);
  border-color: var(--ink);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.mcrd-yellow:hover { box-shadow: var(--shadow-md); }
.mcrd-yellow .mcrd-cat { background: var(--ink); color: var(--sun); }
.mcrd-yellow .mcrd-title { color: var(--ink); }
.mcrd-yellow .mcrd-price { color: var(--ink); }
.mcrd-yellow .mcrd-price strong { color: var(--fire); }

.mcrd-dark {
  background: #1e0a03;
  border-color: var(--fire);
}
.mcrd-dark:hover { box-shadow: 0 0 30px rgba(224, 16, 16, 0.25), 0 20px 50px rgba(0,0,0,0.4); }

.mcrd-wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  flex-direction: unset;
  background: linear-gradient(135deg, #6b0000, #c40000);
}
.mcrd-wide .mcrd-img { min-height: 240px; }

.mcrd-coffee {
  background: #0a0300;
  border-color: var(--sun);
}

.menu-cta-row {
  position: relative;
  width: min(1220px, 100%);
  margin: 36px auto 0;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.menu-cta-note {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.4);
}

/* =========================================
   9. VIBE
   ========================================= */
.vibe-section {
  background: var(--sun);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  overflow: hidden;
  position: relative;
}

/* Diagonal stripe pattern */
.vibe-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 18px,
    rgba(255, 255, 255, 0.18) 18px,
    rgba(255, 255, 255, 0.18) 19px
  );
  pointer-events: none;
}

.vibe-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  width: min(1220px, 100%);
  margin: 0 auto;
  padding: clamp(60px, 8vw, 110px) clamp(20px, 4vw, 60px);
  align-items: center;
}

.vibe-left { padding-right: clamp(20px, 4vw, 60px); }

.vibe-label {
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 7px 16px;
  border: 2px solid var(--ink);
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 20px;
  background: white;
}

.vibe-h2 {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(3.5rem, 7vw, 8rem);
  line-height: 0.88;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 24px;
}

.vibe-body {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--ink);
  opacity: 0.78;
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 1.75;
  font-weight: 500;
}

.vibe-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.vibe-feat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: white;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.vibe-feat:hover { transform: translate(-2px, -2px); box-shadow: var(--shadow-md); }

.vibe-feat-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 1px; }

.vibe-feat strong {
  display: block;
  font-weight: 800;
  margin-bottom: 3px;
  font-size: 0.95rem;
}

.vibe-feat p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Vibe Collage */
.vibe-collage {
  position: relative;
  height: 560px;
}

.vcol {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: var(--radius-lg);
  transition: transform 300ms ease;
}

.vcol img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vcol-1 {
  top: 0;
  right: 0;
  width: 64%;
  height: 360px;
  transform: rotate(2.5deg);
  box-shadow: var(--shadow-lg);
}
.vcol-1:hover { transform: rotate(0.5deg) scale(1.02); }

.vcol-2 {
  bottom: 10px;
  left: 0;
  width: 54%;
  height: 280px;
  transform: rotate(-3.5deg);
  box-shadow: 8px 8px 0 var(--fire);
}
.vcol-2:hover { transform: rotate(-1.5deg) scale(1.02); }

.vcol-3 {
  top: 170px;
  left: 34px;
  width: 44%;
  height: 200px;
  transform: rotate(4deg);
  z-index: 2;
  box-shadow: var(--shadow-md);
}
.vcol-3:hover { transform: rotate(2deg) scale(1.02); }

.vibe-badge {
  position: absolute;
  bottom: 20px;
  right: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 104px;
  height: 104px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--fire);
  box-shadow: var(--shadow-md);
  animation: badge-float 4s ease-in-out infinite;
}

.vibe-badge span {
  display: block;
  font-family: "Anton", sans-serif;
  font-size: 0.82rem;
  color: white;
  line-height: 1.3;
  text-align: center;
  letter-spacing: 0.05em;
}

/* =========================================
   10. PROMO BAND
   ========================================= */
.promo-band {
  position: relative;
  min-height: 58vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}

.promo-band-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.promo-band-img img {
  width: 100%;
  height: 115%;
  object-fit: cover;
  will-change: transform;
}

.promo-band-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg,
      rgba(224, 16, 16, 0.9) 0%,
      rgba(16, 8, 3, 0.88) 100%
    );
}

.promo-band-text {
  position: relative;
  z-index: 2;
  width: min(1220px, 100%);
  margin: 0 auto;
  padding: clamp(60px, 9vw, 100px) clamp(20px, 4vw, 60px);
}

.promo-eyebrow {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--sun);
  margin-bottom: 16px;
}

.promo-headline {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(4rem, 12vw, 13rem);
  line-height: 0.88;
  text-transform: uppercase;
  color: white;
  text-shadow: 6px 6px 0 rgba(0,0,0,0.3);
  margin-bottom: 36px;
}

.promo-headline em {
  font-style: normal;
  color: var(--sun);
  -webkit-text-stroke: 2px rgba(255,255,255,0.2);
}

/* =========================================
   11. GALLERY
   ========================================= */
.gallery-section {
  background: var(--paper);
  border-bottom: 3px solid var(--ink);
  padding: clamp(60px, 8vw, 110px) clamp(20px, 4vw, 60px);
}

.gallery-header {
  width: min(1220px, 100%);
  margin: 0 auto 36px;
  display: flex;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}

.gallery-label {
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 7px 16px;
  border: 2px solid var(--ink);
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 8px;
}

.gallery-h2 {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(2.5rem, 6vw, 6rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.gallery-h2 span { color: var(--fire); }

/* Mosaic grid */
.gallery-mosaic {
  display: grid;
  width: min(1220px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
}

.gmo {
  margin: 0;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.gmo:hover { transform: translate(-3px, -3px); box-shadow: var(--shadow-lg); }
.gmo:nth-child(3n+1):hover { box-shadow: 10px 10px 0 var(--fire); }
.gmo:nth-child(3n+2):hover { box-shadow: 10px 10px 0 var(--sun); }

.gmo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.gmo:hover img { transform: scale(1.07); }

.gmo-tall { grid-row: span 2; }
.gmo-wide { grid-column: span 2; }

/* =========================================
   12. FIND US / CTA
   ========================================= */
.findus {
  background: var(--ink);
  color: var(--cream);
  border-top: 4px solid var(--fire);
  position: relative;
  overflow: hidden;
}

/* Faint diagonal lines in dark bg */
.findus::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 28px,
    rgba(255,255,255,0.025) 28px,
    rgba(255,255,255,0.025) 29px
  );
  pointer-events: none;
}

.findus-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  width: min(1220px, 100%);
  margin: 0 auto;
  padding: clamp(60px, 8vw, 110px) clamp(20px, 4vw, 60px);
}

.findus-label {
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sun);
  border: 2px solid var(--sun);
  border-radius: 100px;
  padding: 7px 16px;
  display: inline-block;
  margin-bottom: 20px;
}

.findus-h2 {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(3rem, 7vw, 7.5rem);
  line-height: 0.88;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--sun);
}

.findus-body {
  color: rgba(255, 249, 230, 0.72);
  margin-bottom: 32px;
  line-height: 1.75;
  font-size: 1.05rem;
  max-width: 480px;
}

.findus-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.findus-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
  transition: background 160ms ease, border-color 160ms ease;
}

.findus-info-item:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.2);
}

.info-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }

.findus-info-item strong {
  display: block;
  font-weight: 800;
  margin-bottom: 3px;
  color: var(--sun);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.findus-info-item p { color: rgba(255,249,230,0.72); font-size: 0.95rem; }

.findus-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Find Us Right Stack */
.findus-img-stack {
  position: relative;
  height: 500px;
}

.findus-img-a {
  position: absolute;
  top: 0;
  right: 0;
  width: 82%;
  height: 390px;
  margin: 0;
  overflow: hidden;
  border: 3px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  transform: rotate(2.5deg);
  box-shadow: 10px 10px 0 var(--fire);
  transition: transform 300ms ease;
}

.findus-img-a:hover { transform: rotate(0.5deg) scale(1.01); }

.findus-img-a img, .findus-img-b img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.findus-img-b {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 110px;
  height: 110px;
  margin: 0;
  overflow: hidden;
  border: 3px solid var(--sun);
  border-radius: 50%;
  z-index: 2;
  box-shadow: var(--shadow-sm);
}

.findus-sticker {
  position: absolute;
  top: 50px;
  left: 8px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--sun);
  box-shadow: 4px 4px 0 var(--fire);
  animation: badge-float 3.5s ease-in-out infinite;
}

.findus-sticker span {
  display: block;
  font-family: "Anton", sans-serif;
  font-size: 0.76rem;
  color: var(--ink);
  line-height: 1.3;
  text-align: center;
}

.findus-footer {
  position: relative;
  width: min(1220px, 100%);
  margin: 0 auto;
  padding: 22px clamp(20px, 4vw, 60px);
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8rem;
  color: rgba(255,249,230,0.35);
}

/* =========================================
   13. SCROLL REVEAL ANIMATIONS
   ========================================= */
.reveal-up {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 650ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0s);
}

.reveal-right {
  opacity: 0;
  transform: translateX(36px);
  transition:
    opacity 650ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0s);
}

.reveal-up.is-visible,
.reveal-right.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* =========================================
   14. KEYFRAME ANIMATIONS
   ========================================= */
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes badge-float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%       { transform: translateY(-10px) rotate(-2deg); }
}

@keyframes fire-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(224, 16, 16, 0); }
  50%       { box-shadow: 0 0 28px 8px rgba(224, 16, 16, 0.3); }
}

.btn-fire { animation: fire-pulse 3s ease-in-out infinite; }
.btn-fire:hover { animation: none; }

/* =========================================
   15. RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .menu-grid {
    grid-template-columns: 1fr 1fr;
  }
  .mcrd-hero { grid-row: span 1; }
  .mcrd-wide {
    grid-column: span 2;
    grid-template-columns: 1fr;
    flex-direction: column;
  }
  .mcrd-wide .mcrd-img { min-height: 260px; }
}

@media (max-width: 900px) {
  .hdr-nav { display: none; }
  .hdr-nav.nav-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: rgba(255,254,244,0.97);
    backdrop-filter: blur(18px);
    border: 3px solid var(--ink);
    border-radius: var(--radius-lg);
    padding: 16px;
    gap: 4px;
    box-shadow: var(--shadow-md);
    z-index: 50;
  }
  .hdr-nav.nav-open a {
    padding: 10px 14px;
    border-radius: var(--radius);
    font-weight: 800;
  }
  .hdr-nav.nav-open a:hover { background: var(--sun); }
  .hdr-burger { display: flex; }

  .hero-content { grid-template-columns: 1fr; }
  .hero-card-stack { height: 360px; }
  .hcard-a { height: 310px; width: 72%; }
  .hcard-b { height: 220px; width: 56%; }

  .mag-intro-body { grid-template-columns: 1fr; }
  .mag-pullquote { transform: none; }

  .vibe-inner { grid-template-columns: 1fr; }
  .vibe-left { padding-right: 0; }
  .vibe-collage { height: 420px; }

  .findus-inner { grid-template-columns: 1fr; }
  .findus-img-stack { height: 380px; }

  .gallery-mosaic { grid-template-columns: repeat(3, 1fr); }

  .menu-spread-header { flex-direction: column; align-items: flex-start; }
  .gallery-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .hdr-cta { display: none; }

  .hero-h1-line1 { font-size: clamp(3.2rem, 18vw, 6rem); -webkit-text-stroke: 2px var(--ink); }
  .hero-h1-line2 { font-size: clamp(5.5rem, 28vw, 10rem); -webkit-text-stroke: 3px var(--ink); }
  .hero-h1-line3 { font-size: clamp(1.6rem, 7vw, 3rem); }

  .menu-grid { grid-template-columns: 1fr; }
  .mcrd-hero { grid-row: span 1; }
  .mcrd-wide {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  .gallery-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
  }
  .gmo-wide { grid-column: span 2; }

  .vcol-3 { display: none; }
  .vcol-1 { width: 72%; height: 280px; }
  .vcol-2 { height: 240px; }

  .promo-headline { font-size: clamp(3rem, 18vw, 6rem); }
  .mag-h2 { font-size: clamp(2.5rem, 13vw, 4.5rem); }
  .vibe-h2 { font-size: clamp(3rem, 15vw, 5.5rem); }
  .findus-h2 { font-size: clamp(2.5rem, 14vw, 5rem); }
  .menu-spread-h2 { font-size: clamp(2.8rem, 16vw, 5rem); }

  .mcrd-wide .mcrd-img { min-height: 220px; }
}
