/* ============================================
   TUK TUK THAI STREET FOOD
   Red-dominant. Bold slab-serif. Brand-loud.
   ============================================ */

:root {
  --font-scale:    1; /* set by accessibility toolbar */
  --cream:        #F4E6C8;
  --cream-soft:   #EDDAA8;
  --cream-deep:   #E2C98A;
  --red:          #B8252A;
  --red-deep:     #8E1A1E;
  --red-soft:     #C84149;
  --red-dark:     #4A0D0F;
  --red-darker:   #2A0709;
  --gold:         #C99745;
  --gold-light:   #E5C77F;
  --gold-bright:  #F2D078;
  --gold-deep:    #A07A2E;
  --ink:          #1A0808;
  --black:        #0E0606;

  --display:   "Alfa Slab One", Georgia, serif;
  --condensed: "Oswald", Impact, sans-serif;
  --sans:      "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;

  --max-w:    1280px;
  --gutter:   clamp(20px, 4vw, 56px);
  --radius:   18px;
  --radius-lg: 28px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--red);
  color: var(--cream);
  font-size: calc(16px * var(--font-scale));
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ============================================
   SHARED
   ============================================ */
.section-label {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--condensed);
  font-size: 14px; letter-spacing: 0.32em; text-transform: uppercase;
  font-weight: 600; color: var(--gold);
  margin-bottom: 24px;
}
.section-label::before {
  content: ""; width: 32px; height: 3px;
  background: var(--gold); display: inline-block;
}
.section-label--on-cream { color: var(--red); }
.section-label--on-cream::before { background: var(--red); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 30px; border-radius: 4px;
  font-family: var(--condensed);
  font-weight: 700; font-size: 16px;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: transform 0.2s, box-shadow 0.25s, background 0.2s, color 0.2s;
  border: 2px solid transparent; white-space: nowrap;
}
.btn--primary {
  background: var(--gold); color: var(--red-dark);
  box-shadow: 0 6px 0 var(--gold-deep), 0 12px 28px -8px rgba(0,0,0,0.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  background: var(--gold-bright);
  box-shadow: 0 8px 0 var(--gold-deep), 0 18px 36px -10px rgba(0,0,0,0.4);
}
.btn--primary:active { transform: translateY(2px); box-shadow: 0 2px 0 var(--gold-deep); }
.btn--ghost {
  background: transparent; color: var(--cream);
  border-color: var(--cream);
}
.btn--ghost:hover { background: var(--cream); color: var(--red-dark); }
.btn--ghost-dark {
  background: transparent; color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost-dark:hover { background: var(--ink); color: var(--cream); }
.btn--small { padding: 10px 18px; font-size: 12px; }
.btn--large { padding: 22px 38px; font-size: 18px; }

/* ============================================
   NAV — sticky on red
   ============================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--red-darker);
  border-bottom: 3px solid var(--gold);
}
.nav__inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex; align-items: center; gap: 32px;
}
.nav__brand { display: flex; align-items: center; margin-right: auto; }
.nav__logo {
  height: 52px; width: auto; display: block;
  filter: brightness(1.1);
  transition: transform 0.2s;
}
.nav__brand:hover .nav__logo { transform: scale(1.04); }
.nav__links {
  display: flex; gap: 36px;
  font-family: var(--condensed);
  font-weight: 600; font-size: 15px;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.nav__links a { position: relative; padding: 6px 0; color: var(--cream); transition: color 0.2s; }
.nav__links a:hover { color: var(--gold); }
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 2px; background: var(--gold); transition: right 0.25s;
}
.nav__links a:hover::after { right: 0; }
.nav__cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--red-dark);
  padding: 12px 22px; border-radius: 4px;
  font-family: var(--condensed);
  font-weight: 700; font-size: 14px;
  letter-spacing: 0.12em; text-transform: uppercase;
  transition: background 0.2s, transform 0.2s;
}
.nav__cta:hover { background: var(--gold-bright); transform: translateY(-1px); }
.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__burger span { width: 24px; height: 2px; background: var(--cream); border-radius: 2px; }

/* ============================================
   HERO — Red dominant
   ============================================ */
.hero {
  position: relative;
  background: var(--red);
  padding: clamp(60px, 7vw, 100px) var(--gutter) 0;
  overflow: hidden;
  color: var(--cream);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 85% 15%, rgba(201,151,69,0.18), transparent 50%),
    radial-gradient(circle at 15% 85%, rgba(74,13,15,0.4), transparent 50%);
  pointer-events: none;
}
.hero::after {
  /* Subtle "TUK TUK" watermark behind */
  content: "TUK TUK";
  position: absolute;
  bottom: 90px; left: -3%;
  font-family: var(--display);
  font-size: clamp(140px, 22vw, 360px);
  color: var(--red-deep);
  opacity: 0.35;
  letter-spacing: -0.04em;
  line-height: 0.85;
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
}
.hero__grid {
  position: relative; z-index: 1;
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 80px); align-items: center;
  min-height: 70vh; padding-bottom: 80px;
}
.hero__copy { display: flex; flex-direction: column; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  align-self: flex-start;
  background: rgba(244, 230, 200, 0.12);
  border: 1px solid rgba(244, 230, 200, 0.25);
  padding: 10px 18px; border-radius: 999px;
  font-family: var(--condensed);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 28px;
  backdrop-filter: blur(6px);
}
.hero__eyebrow .dot {
  width: 8px; height: 8px; background: var(--gold);
  border-radius: 50%; animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.3); } }

.hero__title {
  font-family: var(--display);
  font-weight: 400; /* Alfa Slab One only has 400 */
  font-size: clamp(54px, 8.5vw, 124px);
  line-height: 0.9;
  letter-spacing: -0.015em;
  color: var(--cream);
  margin-bottom: 28px;
  text-transform: uppercase;
}
.hero__title-line { display: block; }
.hero__title-line--accent {
  color: var(--gold);
  position: relative;
  display: inline-block;
}
.hero__title-line--accent::after {
  content: ""; position: absolute; left: 0; right: 0;
  bottom: -0.05em; height: 0.12em;
  background: var(--gold);
  border-radius: 4px;
}
.hero__lede {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.65; max-width: 480px;
  color: rgba(244, 230, 200, 0.88);
  margin-bottom: 36px;
  font-weight: 500;
}
.hero__cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
.hero__stats {
  display: flex; align-items: center; gap: 24px;
  padding-top: 28px;
  border-top: 1px solid rgba(244, 230, 200, 0.2);
}
.hero__stat { display: flex; flex-direction: column; gap: 4px; }
.hero__stat-num {
  font-family: var(--display); font-weight: 400;
  font-size: 38px; color: var(--gold-light);
  line-height: 1;
}
.hero__stat-label {
  font-family: var(--condensed);
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.22em; font-weight: 600;
  color: rgba(244, 230, 200, 0.7);
}
.hero__stat-divider { width: 1px; height: 42px; background: rgba(244, 230, 200, 0.2); }

.hero__visual { position: relative; height: 100%; min-height: 540px; }
.hero__photo {
  position: absolute; overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px -15px rgba(0,0,0,0.5);
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.hero__photo:hover img { transform: scale(1.04); }
.hero__photo--main {
  top: 0; right: 0; width: 80%; height: 78%;
  border: 6px solid var(--cream); z-index: 2;
  transform: rotate(2deg);
  animation: floatA 6s ease-in-out infinite;
}
.hero__photo--small {
  bottom: 0; left: 0; width: 50%; height: 42%;
  border: 6px solid var(--gold); z-index: 3;
  transform: rotate(-3deg);
  animation: floatB 7s ease-in-out infinite;
}
@keyframes floatA { 0%,100% { transform: rotate(2deg) translateY(0); } 50% { transform: rotate(2deg) translateY(-10px); } }
@keyframes floatB { 0%,100% { transform: rotate(-3deg) translateY(0); } 50% { transform: rotate(-3deg) translateY(8px); } }

.hero__photo-tag {
  position: absolute; top: 18px; left: 18px;
  background: var(--cream); padding: 8px 14px; border-radius: 999px;
  display: flex; align-items: center; gap: 10px;
  font-family: var(--condensed);
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
}
.hero__photo-tag-no { color: var(--red); }
.hero__photo-tag-name { color: var(--ink); }

.hero__sticker {
  position: absolute; bottom: 8%; right: 6%;
  width: 160px; height: 160px;
  color: var(--gold); z-index: 4;
  animation: spin 20s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero__marquee {
  position: relative;
  margin: 0 calc(-1 * var(--gutter));
  padding: 24px 0;
  background: var(--red-darker);
  color: var(--gold-light);
  overflow: hidden;
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}
.hero__marquee-track {
  display: flex; align-items: center; gap: 38px;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
  width: max-content;
}
.hero__marquee-track span {
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.hero__marquee-track span:nth-child(even) {
  font-size: 22px; color: var(--gold);
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================
   STORY — the one cream breather
   ============================================ */
.story {
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  background: var(--cream);
  color: var(--ink);
  position: relative;
}
.story__inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px); align-items: center;
}
.story__text { max-width: 540px; }
.story__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(38px, 5.5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: var(--red-dark);
  margin-bottom: 32px;
}
.story__title-accent { color: var(--red); }
.story__text p { font-size: 17px; line-height: 1.75; color: rgba(26, 8, 8, 0.78); margin-bottom: 20px; }
.story__signature {
  margin-top: 32px;
  font-family: var(--condensed);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--red);
}

.story__visual {
  position: relative;
  aspect-ratio: 1 / 1.05;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 1.1fr 0.7fr 1fr;
  gap: 12px;
}
.story__photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 40px -15px rgba(74, 13, 15, 0.35);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.story__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.story__photo:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -15px rgba(74, 13, 15, 0.5);
}
.story__photo:hover img {
  transform: scale(1.04);
}

/* The featured Bangkok street scene takes the largest cell */
.story__photo--hero {
  grid-column: 1;
  grid-row: 1 / span 2;
  border: 6px solid var(--cream);
  box-shadow:
    0 0 0 1px rgba(201, 151, 69, 0.2),
    0 24px 60px -15px rgba(74, 13, 15, 0.45);
}

/* Wok hei sits top-right — energy of cooking */
.story__photo--wok {
  grid-column: 2;
  grid-row: 1;
}

/* Floating market — tradition */
.story__photo--market {
  grid-column: 2;
  grid-row: 2 / span 2;
  margin-top: -20px;
}

/* Condiments at the bottom — the flavor foundation */
.story__photo--condiments {
  grid-column: 1;
  grid-row: 3;
  margin-top: -10px;
}

/* Caption overlay on featured photos */
.story__photo-caption {
  position: absolute;
  bottom: 10px; left: 10px;
  background: rgba(26, 8, 8, 0.85);
  color: var(--gold-light);
  font-family: var(--condensed);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 4px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* ============================================
   PRESS — magazine pull-quote between sections
   ============================================ */
.press {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(70px, 9vw, 120px) var(--gutter);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.press::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 25% 50%, rgba(201, 151, 69, 0.10), transparent 50%),
    radial-gradient(circle at 75% 50%, rgba(184, 37, 42, 0.20), transparent 50%);
  pointer-events: none;
}
.press::after {
  /* Decorative giant quotation mark in the background */
  content: """;
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--display);
  font-size: 360px;
  line-height: 1;
  color: var(--red-dark);
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}
.press__inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}
.press__stars {
  color: var(--gold);
  font-size: 22px;
  letter-spacing: 0.4em;
  margin-bottom: 28px;
  font-weight: 700;
}
.press__quote {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(44px, 6.5vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--cream);
  text-transform: uppercase;
  margin-bottom: 32px;
  position: relative;
}
.press__quote::before,
.press__quote::after {
  color: var(--gold);
  font-family: var(--display);
}
.press__source {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--condensed);
  font-style: normal;
  font-size: 14px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 36px;
}
.press__pub { color: var(--gold); }
.press__sep { color: var(--red-soft); opacity: 0.7; }
.press__date { color: rgba(244, 230, 200, 0.7); }
.press__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--condensed);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 6px;
  transition: gap 0.25s ease, color 0.25s;
}
.press__link:hover { gap: 16px; color: var(--gold-light); }

@media (max-width: 720px) {
  .press::after { font-size: 220px; top: -30px; }
  .press__stars { font-size: 18px; letter-spacing: 0.3em; }
}


.dishes {
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  background: var(--red-darker);
  color: var(--cream);
  position: relative; overflow: hidden;
}
.dishes::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 90% 0%, rgba(201,151,69,0.15), transparent 40%),
    radial-gradient(circle at 0% 100%, rgba(184,37,42,0.25), transparent 40%);
  pointer-events: none;
}
.dishes__header {
  position: relative;
  max-width: var(--max-w); margin: 0 auto clamp(50px, 6vw, 80px);
  display: grid; grid-template-columns: 1fr auto;
  align-items: end; gap: 32px;
}
.dishes__title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(38px, 5.5vw, 72px);
  line-height: 0.95; letter-spacing: -0.015em;
  text-transform: uppercase;
  color: var(--cream);
}
.dishes__title-accent { color: var(--gold); }
.dishes__link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--condensed); font-weight: 700;
  color: var(--gold); font-size: 14px;
  letter-spacing: 0.16em; text-transform: uppercase;
  border-bottom: 2px solid var(--gold); padding-bottom: 4px;
  transition: gap 0.2s, color 0.2s;
}
.dishes__link:hover { gap: 14px; color: var(--gold-light); }

.dishes__grid {
  position: relative;
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.dish {
  background: rgba(244, 230, 200, 0.06);
  border: 1px solid rgba(201, 151, 69, 0.25);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
}
.dish:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  background: rgba(244, 230, 200, 0.1);
}
.dish__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.dish__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.dish:hover .dish__media img { transform: scale(1.08); }
.dish__num {
  position: absolute; top: 16px; left: 16px;
  background: var(--gold); color: var(--red-dark);
  padding: 6px 14px; border-radius: 4px;
  font-family: var(--display); font-size: 14px;
}
.dish__badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--cream); color: var(--red);
  padding: 6px 12px; border-radius: 4px;
  font-family: var(--condensed);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  box-shadow: 0 4px 12px -2px rgba(0,0,0,0.3);
}
.dish__body { padding: 26px 26px 28px; }
.dish__head {
  display: flex; align-items: baseline;
  justify-content: space-between; gap: 12px;
  margin-bottom: 10px;
}
.dish__name {
  font-family: var(--display); font-weight: 400;
  font-size: 28px; letter-spacing: 0;
  text-transform: uppercase;
  color: var(--gold-light);
  line-height: 1.05;
}
.dish__price {
  font-family: var(--display); font-weight: 400;
  font-size: 17px; color: var(--gold);
  white-space: nowrap;
  padding: 4px 10px;
  border: 1.5px solid var(--gold);
  border-radius: 4px;
  line-height: 1;
}
.dish__desc {
  font-size: 14.5px; line-height: 1.6;
  color: rgba(244, 230, 200, 0.75);
  margin-bottom: 18px;
}
.dish__meta {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--condensed);
  font-size: 12px; text-transform: uppercase;
  letter-spacing: 0.18em; font-weight: 700;
  color: var(--gold);
}
.dish__meta .chili { letter-spacing: 0; }

/* ============================================
   LOCATIONS — RED background, cream cards
   ============================================ */
.locations {
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  background: var(--red);
  position: relative;
  overflow: hidden;
}
.locations::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 50% 0%, rgba(201,151,69,0.15), transparent 50%);
  pointer-events: none;
}
.locations__header {
  position: relative;
  max-width: var(--max-w); margin: 0 auto clamp(50px, 6vw, 80px);
  text-align: center;
}
.locations__title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(38px, 5.5vw, 72px);
  line-height: 0.95; letter-spacing: -0.015em;
  text-transform: uppercase;
  color: var(--cream);
}
.locations__title-accent { color: var(--gold); }
.locations__grid {
  position: relative;
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}

/* Coming Soon variant */
.loc--soon {
  background: linear-gradient(155deg, var(--cream) 0%, var(--cream-soft) 100%);
  border: 1.5px dashed rgba(184, 37, 42, 0.35);
  position: relative;
}
.loc--soon::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      135deg,
      transparent 0px,
      transparent 20px,
      rgba(201, 151, 69, 0.04) 20px,
      rgba(201, 151, 69, 0.04) 22px
    );
  border-radius: var(--radius-lg);
  pointer-events: none;
}
.loc--soon > * { position: relative; z-index: 1; }
.loc__soon-badge {
  position: absolute;
  top: 18px; right: 18px;
  background: var(--red);
  color: var(--gold-light);
  padding: 6px 12px;
  border-radius: 4px;
  font-family: var(--condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 4px 12px -2px rgba(184, 37, 42, 0.4);
}
.loc__addr--soon {
  color: rgba(74, 13, 15, 0.75);
  font-style: italic;
  font-family: var(--display);
  font-size: 15px;
  line-height: 1.5;
  font-style: normal;
}
.loc__hours--soon {
  border-top: 1px dashed rgba(184, 37, 42, 0.3);
}
.loc__hours--soon > div span:last-child {
  font-size: 18px;
}
.loc {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 14px;
  border: 1px solid rgba(184, 37, 42, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative; overflow: hidden;
}
.loc:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -10px rgba(0,0,0,0.3); }
.loc::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}
.loc:hover::before { transform: scaleX(1); }
.loc__num {
  font-family: var(--display); font-size: 14px;
  color: var(--gold-deep); letter-spacing: 0.04em;
}
.loc__city {
  font-family: var(--display); font-weight: 400;
  font-size: 32px; letter-spacing: -0.01em;
  color: var(--red-dark); line-height: 1;
  text-transform: uppercase;
}
.loc__venue {
  font-family: var(--condensed);
  font-size: 12px; color: var(--red);
  font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.18em; margin-top: -8px;
}
.loc__addr {
  font-style: normal; font-size: 14.5px;
  line-height: 1.55; color: rgba(26, 8, 8, 0.78);
}
.loc__phone {
  font-family: var(--condensed); font-weight: 700;
  font-size: 16px; color: var(--red);
  letter-spacing: 0.04em;
  border-bottom: 2px solid rgba(184, 37, 42, 0.3);
  padding-bottom: 2px; align-self: flex-start;
  transition: color 0.2s, border-color 0.2s;
}
.loc__phone:hover { color: var(--gold-deep); border-color: var(--gold-deep); }
.loc__hours {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 13.5px; padding-top: 14px;
  border-top: 1px dashed rgba(184, 37, 42, 0.3);
}
.loc__hours > div { display: flex; justify-content: space-between; gap: 10px; }
.loc__hours span:first-child {
  font-family: var(--condensed);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
}
.loc__hours span:last-child { color: rgba(26, 8, 8, 0.7); }
.loc__actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
  padding-top: 8px;
  flex-wrap: wrap;
}
.loc__actions .btn--primary {
  background: var(--red); color: var(--cream);
  box-shadow: 0 4px 0 var(--red-deep);
}
.loc__actions .btn--primary:hover {
  background: var(--red-deep); transform: translateY(-1px);
  box-shadow: 0 5px 0 var(--red-darker);
}
/* Plain Order button on the red location cards — make it solid gold so it's the clear primary action */
.loc__actions .btn:not(.btn--ghost-dark):not(.btn--yelp) {
  background: var(--gold); color: var(--red-dark);
  border-color: var(--gold);
  box-shadow: 0 4px 0 var(--gold-deep);
}
.loc__actions .btn:not(.btn--ghost-dark):not(.btn--yelp):hover {
  background: var(--gold-bright); transform: translateY(-1px);
  box-shadow: 0 5px 0 var(--gold-deep);
}
.loc__actions .btn--ghost-dark {
  background: transparent; color: var(--ink); border-color: var(--ink);
}
.loc__actions .btn--ghost-dark:hover { background: var(--ink); color: var(--cream); }

/* Yelp-styled button (small, red star icon) */
.btn--yelp {
  background: transparent;
  color: #d32323;
  border: 2px solid #d32323;
  padding: 8px 14px;
  gap: 6px;
}
.btn--yelp:hover {
  background: #d32323;
  color: #fff;
  transform: translateY(-1px);
}
.btn--yelp svg { flex-shrink: 0; }

/* ============================================
   GALLERY — deep red
   ============================================ */
.gallery {
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  background: var(--red-dark); color: var(--cream);
  position: relative; overflow: hidden;
}
.gallery::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 90% 0%, rgba(201,151,69,0.15), transparent 40%);
  pointer-events: none;
}
.gallery__header { position: relative; max-width: var(--max-w); margin: 0 auto clamp(50px, 6vw, 80px); }
.gallery__title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(38px, 5.5vw, 72px);
  line-height: 0.95; letter-spacing: -0.015em;
  text-transform: uppercase;
}
.gallery__title-accent { color: var(--gold); }
.gallery__grid {
  position: relative;
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px; gap: 16px;
}
.gallery__item {
  overflow: hidden; border-radius: var(--radius); position: relative;
  cursor: zoom-in; border: 2px solid transparent;
  transition: border-color 0.3s;
}
.gallery__item:hover { border-color: var(--gold); }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s, filter 0.3s; }
.gallery__item:hover img { transform: scale(1.08); filter: brightness(1.05); }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

/* ============================================
   APP — iOS download showcase
   ============================================ */
.app {
  background: linear-gradient(155deg, var(--cream-soft) 0%, var(--cream-deep) 100%);
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  position: relative;
  overflow: hidden;
}
.app::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 90% 50%, rgba(184, 37, 42, 0.10), transparent 50%),
    radial-gradient(circle at 0% 0%, rgba(201, 151, 69, 0.15), transparent 50%);
  pointer-events: none;
}
.app__inner {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.app__copy { max-width: 520px; }
.app__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: var(--red-dark);
  margin-bottom: 24px;
}
.app__title-accent { color: var(--red); }
.app__lede {
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.65;
  color: rgba(26, 8, 8, 0.78);
  margin-bottom: 28px;
  font-weight: 500;
}
.app__features {
  list-style: none;
  margin-bottom: 36px;
}
.app__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--condensed);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  padding: 8px 0;
  border-bottom: 1px dashed rgba(184, 37, 42, 0.18);
}
.app__features li:last-child { border-bottom: none; }
.app__features li strong {
  font-weight: 800;
  color: var(--red-dark);
  letter-spacing: 0.02em;
}
.app__feature-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  background: var(--red);
  color: var(--cream);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
/* Gold star for the rewards-related features */
.app__features li:nth-child(1) .app__feature-check,
.app__features li:nth-child(2) .app__feature-check,
.app__features li:nth-child(3) .app__feature-check {
  background: var(--gold);
  color: var(--red-dark);
  font-size: 13px;
  box-shadow: 0 0 0 2px rgba(201, 151, 69, 0.25);
}

/* Small print below the App Store button */
.app__small-print {
  margin-top: 14px;
  font-family: var(--condensed);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  opacity: 0.65;
}

/* App Store button - Apple-style */
.app-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--ink);
  color: var(--cream);
  padding: 14px 26px;
  border-radius: 10px;
  border: 2px solid var(--ink);
  transition: transform 0.2s, box-shadow 0.25s, background 0.2s;
  box-shadow: 0 6px 0 var(--black), 0 12px 28px -8px rgba(0,0,0,0.4);
}
.app-store-btn:hover {
  transform: translateY(-2px);
  background: #000;
  box-shadow: 0 8px 0 var(--black), 0 18px 36px -10px rgba(0,0,0,0.5);
}
.app-store-btn:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 var(--black);
}
.app-store-btn__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-align: left;
}
.app-store-btn__top {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.04em;
  opacity: 0.9;
  margin-bottom: 2px;
}
.app-store-btn__bottom {
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* App icon stage — iOS-style rounded square */
.app__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* ============================================
   PHONE MOCKUP — iPhone with Tuk Tuk app icon
   on the home screen
   ============================================ */
.phone-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.phone {
  position: relative;
  width: 280px;
  height: 580px;
  transform: rotate(-3deg);
  transition: transform 0.5s ease;
}
.phone:hover { transform: rotate(-1deg) translateY(-8px); }
.phone__bezel {
  width: 100%;
  height: 100%;
  background: linear-gradient(165deg, #2A2A2A 0%, #0E0606 100%);
  border-radius: 44px;
  padding: 10px;
  position: relative;
  box-shadow:
    0 0 0 2px #3A3A3A inset,
    0 0 0 4px #1A1A1A,
    0 30px 70px -15px rgba(0, 0, 0, 0.5),
    0 60px 120px -30px rgba(184, 37, 42, 0.35);
}
.phone__notch {
  position: absolute;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  width: 96px; height: 22px;
  background: #000;
  border-radius: 14px;
  z-index: 4;
}
.phone__screen {
  width: 100%;
  height: 100%;
  border-radius: 34px;
  overflow: hidden;
  position: relative;
  background: #000;
}

/* iOS status bar */
.phone__status {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 44px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 26px 8px;
  font-family: -apple-system, "SF Pro", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #1A0808;
  z-index: 10;
}
.phone__time { letter-spacing: -0.5px; }
.phone__status-icons {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* ===== In-app screen ===== */
.phone-app {
  position: absolute;
  inset: 0;
  padding: 50px 16px 0;
  background: linear-gradient(180deg, #FBF1DC 0%, #F4E6C8 100%);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Brand header */
.phone-app__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 4px 14px;
  border-bottom: 1px solid rgba(184, 37, 42, 0.15);
}
.phone-app__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.phone-app__brand-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.3) inset,
    0 2px 6px -1px rgba(184, 37, 42, 0.35);
  flex-shrink: 0;
}
.phone-app__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.phone-app__brand-name {
  font-family: var(--display);
  font-size: 16px;
  color: var(--red);
  letter-spacing: 0.02em;
  line-height: 1;
}
.phone-app__brand-tag {
  font-family: var(--condensed);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 3px;
}
.phone-app__bag {
  position: relative;
  width: 34px;
  height: 34px;
  background: var(--red);
  color: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px -1px rgba(184, 37, 42, 0.4);
}
.phone-app__bag-count {
  position: absolute;
  top: -3px; right: -3px;
  background: var(--gold);
  color: var(--red-dark);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 800;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--cream);
}

/* Location pill */
.phone-app__location {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(184, 37, 42, 0.08);
  border: 1px solid rgba(184, 37, 42, 0.15);
  padding: 8px 12px;
  border-radius: 10px;
  margin-top: 12px;
}
.phone-app__location-icon { font-size: 14px; }
.phone-app__location-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  flex: 1;
}
.phone-app__location-label {
  font-family: var(--condensed);
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  opacity: 0.7;
}
.phone-app__location-name {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
  margin-top: 2px;
}

/* Section heading */
.phone-app__heading {
  font-family: var(--display);
  font-size: 18px;
  color: var(--red-dark);
  letter-spacing: 0;
  margin: 16px 4px 10px;
  text-transform: uppercase;
}

/* Menu items list */
.phone-app__items {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  overflow: hidden;
}
.phone-app__item {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(184, 37, 42, 0.12);
  border-radius: 12px;
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s;
}
.phone-app__item--featured {
  background: rgba(184, 37, 42, 0.06);
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(201, 151, 69, 0.3);
  animation: phoneItemPulse 3s ease-in-out infinite;
}
@keyframes phoneItemPulse {
  0%, 100% { box-shadow: 0 0 0 1px rgba(201, 151, 69, 0.3), 0 0 0 0 rgba(201, 151, 69, 0); }
  50%      { box-shadow: 0 0 0 1px rgba(201, 151, 69, 0.5), 0 0 0 6px rgba(201, 151, 69, 0); }
}

.phone-app__item-img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(184, 37, 42, 0.1);
}

/* Stylized "dish" backgrounds — subtle gradients that read as food without being garish */
.phone-app__item-img--padthai {
  background:
    radial-gradient(circle at 30% 30%, #E89B5E 0%, transparent 40%),
    radial-gradient(circle at 70% 70%, #D17C3A 0%, transparent 50%),
    linear-gradient(135deg, #C47038 0%, #8B4513 100%);
}
.phone-app__item-img--padseeew {
  background:
    radial-gradient(circle at 30% 30%, #8B5A2B 0%, transparent 45%),
    radial-gradient(circle at 70% 60%, #5C3416 0%, transparent 50%),
    linear-gradient(135deg, #6B3422 0%, #3D1F0E 100%);
}
.phone-app__item-img--crispy {
  background:
    radial-gradient(circle at 35% 30%, #D4A574 0%, transparent 40%),
    radial-gradient(circle at 70% 70%, #8B5A2B 0%, transparent 50%),
    linear-gradient(135deg, #A67841 0%, #6B4423 100%);
}

.phone-app__item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.phone-app__item-name {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
}
.phone-app__item-meta {
  font-family: var(--condensed);
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  opacity: 0.75;
}
.phone-app__item-price {
  font-family: var(--display);
  font-size: 14px;
  color: var(--red);
  letter-spacing: 0;
  flex-shrink: 0;
  padding-right: 4px;
}

/* Sticky checkout bar */
.phone-app__checkout {
  margin: 12px -16px 0;
  padding: 14px 18px calc(14px + env(safe-area-inset-bottom));
  background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.phone-app__checkout-label {
  font-family: var(--condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.phone-app__checkout-total {
  font-family: var(--display);
  font-size: 18px;
  color: var(--cream);
  letter-spacing: 0;
}

/* iOS home indicator bar — needs to sit ABOVE the checkout bar */
.phone__home-bar {
  position: absolute;
  bottom: 6px; left: 50%;
  transform: translateX(-50%);
  width: 110px; height: 4px;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 100px;
  z-index: 20;
}

/* Caption below phone */
.phone-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.phone-caption__top {
  font-family: var(--condensed);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  opacity: 0.7;
}
.phone-caption__bottom {
  font-family: var(--display);
  font-size: 32px;
  color: var(--red-dark);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
}

@media (max-width: 1024px) {
  .app__inner { grid-template-columns: 1fr; }
  .app__copy { max-width: 100%; text-align: center; margin: 0 auto; }
  .app__features { max-width: 380px; margin-left: auto; margin-right: auto; margin-bottom: 36px; }
  .app__visual { order: -1; }
}
@media (max-width: 720px) {
  .phone { width: 230px; height: 480px; }
  .phone__bezel { border-radius: 36px; padding: 8px; }
  .phone__screen { border-radius: 28px; }
  .phone__notch { width: 78px; height: 18px; top: 14px; }
  .phone__status { height: 36px; padding: 0 20px 6px; font-size: 11px; }
  .phone-app { padding-top: 42px; padding-left: 12px; padding-right: 12px; }
  .phone-app__brand-icon { width: 30px; height: 30px; }
  .phone-app__brand-name { font-size: 14px; }
  .phone-app__heading { font-size: 16px; }
  .phone-app__item-img { width: 38px; height: 38px; }
  .phone-app__item-name { font-size: 11px; }
  .phone-app__item-price { font-size: 13px; }
  .phone-app__checkout { padding: 12px 14px; margin: 10px -12px 0; }
  .phone-app__checkout-total { font-size: 16px; }
  .phone__home-bar { width: 90px; height: 3px; bottom: 5px; }
  .phone-caption__bottom { font-size: 26px; }
  .app-store-btn__bottom { font-size: 20px; }
}

/* ============================================
   CTA BANNER — Gold pop between reds
   ============================================ */
.cta-banner {
  background: var(--gold);
  color: var(--red-dark);
  padding: clamp(60px, 8vw, 100px) var(--gutter);
  position: relative; overflow: hidden;
}
.cta-banner::before, .cta-banner::after {
  content: ""; position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.4; pointer-events: none;
}
.cta-banner::before { background: var(--red); width: 400px; height: 400px; top: -200px; left: -100px; }
.cta-banner::after { background: var(--red-dark); width: 500px; height: 500px; bottom: -250px; right: -150px; }
.cta-banner__inner {
  position: relative;
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.cta-banner__title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(44px, 6.5vw, 92px);
  line-height: 0.9; letter-spacing: -0.015em;
  margin-bottom: 16px; color: var(--red-dark);
  text-transform: uppercase;
}
.cta-banner__copy p {
  font-size: 17px; max-width: 400px;
  color: rgba(74, 13, 15, 0.85);
  font-weight: 500;
}
.cta-banner .btn--primary {
  background: var(--red); color: var(--cream);
  box-shadow: 0 6px 0 var(--red-deep), 0 12px 28px -8px rgba(74,13,15,0.4);
}
.cta-banner .btn--primary:hover {
  background: var(--red-dark); color: var(--gold-bright);
  box-shadow: 0 6px 0 var(--red-darker), 0 18px 36px -10px rgba(0,0,0,0.4);
}

/* ============================================
   CONTACT — Cream section above footer
   ============================================ */
.contact {
  background:
    radial-gradient(circle at 90% 10%, rgba(184, 37, 42, 0.06), transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(201, 151, 69, 0.10), transparent 50%),
    var(--cream-soft);
  padding: clamp(80px, 9vw, 130px) var(--gutter);
  position: relative;
}
.contact__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.contact__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(40px, 5vw, 60px);
}
.contact__header .section-label--light {
  color: var(--red);
  border-color: rgba(184, 37, 42, 0.3);
}
.contact__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: var(--red-dark);
  margin: 18px 0 18px;
}
.contact__lede {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.65;
  color: rgba(26, 8, 8, 0.75);
  font-weight: 500;
}

.contact__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.contact__card {
  background: var(--cream);
  border: 1px solid rgba(184, 37, 42, 0.15);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  box-shadow: 0 2px 0 rgba(184, 37, 42, 0.06);
}
.contact__card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 8px 24px -8px rgba(184, 37, 42, 0.2);
}
.contact__icon {
  width: 56px;
  height: 56px;
  background: var(--red);
  color: var(--gold-light);
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 4px 0 var(--red-deep);
}
.contact__card-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--red-dark);
  margin-bottom: 8px;
}
.contact__card-desc {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(26, 8, 8, 0.65);
  margin-bottom: 16px;
  flex: 1;
}
.contact__link {
  font-family: var(--condensed);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--red);
  text-decoration: underline;
  text-decoration-color: rgba(184, 37, 42, 0.3);
  text-underline-offset: 3px;
  word-break: break-word;
  transition: color 0.2s;
}
.contact__link:hover {
  color: var(--red-deep);
  text-decoration-color: var(--red);
}
.contact__phone-list,
.contact__social-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact__phone-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: rgba(184, 37, 42, 0.06);
  border-radius: 8px;
  font-family: var(--condensed);
  font-size: 14px;
  color: var(--ink);
  transition: background 0.2s, transform 0.15s;
}
.contact__phone-item:hover {
  background: rgba(184, 37, 42, 0.12);
  transform: translateX(2px);
}
.contact__phone-item strong {
  font-weight: 700;
  color: var(--red-dark);
}
.contact__phone-item span {
  color: var(--ink);
  font-weight: 600;
}
.contact__social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(184, 37, 42, 0.06);
  border-radius: 8px;
  font-family: var(--condensed);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  transition: background 0.2s, transform 0.15s, color 0.2s;
}
.contact__social-link:hover {
  background: var(--red);
  color: var(--cream);
  transform: translateX(2px);
}
.contact__social-link svg { flex-shrink: 0; }

.contact__tustin {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--cream);
  border: 2px dashed var(--gold);
  border-radius: var(--radius-lg);
  padding: 20px 26px;
  flex-wrap: wrap;
}
.contact__tustin-badge {
  background: var(--red);
  color: var(--cream);
  font-family: var(--condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 6px;
  flex-shrink: 0;
}
.contact__tustin p {
  margin: 0;
  font-size: 15px;
  color: var(--ink);
  flex: 1;
}
.contact__tustin a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}
.contact__tustin a:hover { color: var(--red-deep); }

/* Mobile contact responsive */
@media (max-width: 1024px) {
  .contact__grid { grid-template-columns: 1fr 1fr; }
  .contact__card:nth-child(3) { grid-column: 1 / -1; max-width: 500px; margin: 0 auto; width: 100%; }
}
@media (max-width: 720px) {
  .contact__grid { grid-template-columns: 1fr; gap: 16px; }
  .contact__card:nth-child(3) { grid-column: auto; max-width: none; }
  .contact__card { padding: 24px 20px; }
  .contact__tustin { padding: 16px 20px; }
}

/* ============================================
   FOOTER — Black
   ============================================ */
.footer {
  background: var(--black); color: var(--cream);
  padding: 80px var(--gutter) 28px;
  position: relative;
}
.footer__inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 50px;
  border-bottom: 1px solid rgba(244, 230, 200, 0.12);
}
.footer__brand { display: flex; flex-direction: column; gap: 16px; }
.footer__logo {
  width: 240px; height: auto; display: block;
  filter: brightness(1.08);
}
.footer__tagline {
  font-size: 14px; line-height: 1.6;
  color: rgba(244, 230, 200, 0.6);
  max-width: 280px;
}
.footer__col h4 {
  font-family: var(--condensed);
  font-size: 13px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 18px;
  font-weight: 700;
}
.footer__col ul { list-style: none; }
.footer__col li { margin-bottom: 10px; }
.footer__col a {
  font-size: 14.5px; color: rgba(244, 230, 200, 0.8);
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--gold); }
.footer__bottom {
  max-width: var(--max-w); margin: 0 auto;
  padding-top: 24px;
  display: flex; justify-content: space-between;
  font-size: 12.5px; color: rgba(244, 230, 200, 0.5);
  flex-wrap: wrap; gap: 10px;
}
.footer__bottom-links {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.footer__bottom-links a {
  color: rgba(244, 230, 200, 0.7);
  text-decoration: underline;
  text-decoration-color: rgba(201, 151, 69, 0.4);
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.footer__bottom-links a:hover {
  color: var(--gold);
}

/* ============================================
   ACCESSIBILITY — Screen reader only utility
   Visually hidden, but read by assistive tech
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================
   ACCESSIBILITY — Skip Link
   ============================================ */
.skip-link {
  position: absolute;
  top: -100px; left: 12px;
  z-index: 9999;
  background: var(--gold);
  color: var(--red-dark);
  padding: 12px 20px;
  border-radius: 4px;
  font-family: var(--condensed);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: top 0.2s ease;
  text-decoration: none;
}
.skip-link:focus {
  top: 12px;
  outline: 3px solid var(--red);
  outline-offset: 2px;
}

/* ============================================
   ACCESSIBILITY — Universal focus styles
   Visible focus indicator for keyboard users
   ============================================ */
*:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
a:focus-visible,
button:focus-visible {
  outline-color: var(--gold);
}
.btn:focus-visible {
  outline-offset: 5px;
}
.nav__cta:focus-visible,
.nav__links a:focus-visible {
  outline-color: var(--gold-bright);
}

/* Body scroll lock for open mobile nav */
body.no-scroll { overflow: hidden; }

/* ============================================
   ACCESSIBILITY WIDGET — Floating ADA toolbar
   ============================================ */
.a11y {
  position: fixed;
  bottom: 20px; left: 20px;
  z-index: 200;
}
.a11y__trigger {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--red);
  color: var(--gold-light);
  border: 3px solid var(--gold);
  box-shadow: 0 6px 20px -4px rgba(0,0,0,0.4), 0 0 0 0 var(--gold);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s, box-shadow 0.25s;
}
.a11y__trigger:hover {
  transform: scale(1.06);
  background: var(--red-deep);
  box-shadow: 0 8px 24px -4px rgba(0,0,0,0.5), 0 0 0 3px rgba(201, 151, 69, 0.3);
}
.a11y__trigger:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.a11y__panel {
  position: absolute;
  bottom: 72px; left: 0;
  width: 300px;
  max-width: calc(100vw - 40px);
  background: var(--cream);
  border-radius: 16px;
  border: 1px solid rgba(184, 37, 42, 0.2);
  box-shadow: 0 20px 50px -10px rgba(0,0,0,0.35);
  padding: 22px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s, transform 0.25s, visibility 0.25s;
  color: var(--ink);
}
.a11y--open .a11y__panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.a11y__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 2px solid var(--red);
}
.a11y__header h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--red-dark);
}
.a11y__close {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.a11y__close:hover { background: rgba(184, 37, 42, 0.1); }

.a11y__group {
  margin-bottom: 18px;
}
.a11y__group-label {
  font-family: var(--condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.a11y__row {
  display: flex;
  gap: 8px;
}
.a11y__btn {
  flex: 1;
  background: var(--cream-soft);
  border: 2px solid transparent;
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 700;
  padding: 10px 8px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.a11y__btn:nth-child(1) { font-size: 14px; }
.a11y__btn:nth-child(2) { font-size: 17px; }
.a11y__btn:nth-child(3) { font-size: 20px; }
.a11y__btn:hover { background: var(--cream-deep); }
.a11y__btn.is-active {
  background: var(--red);
  color: var(--cream);
  border-color: var(--red-deep);
}

.a11y__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: var(--cream-soft);
  border: none;
  padding: 12px 14px;
  border-radius: 8px;
  margin-bottom: 6px;
  cursor: pointer;
  transition: background 0.15s;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
}
.a11y__toggle:hover { background: var(--cream-deep); }
.a11y__toggle.is-on {
  background: rgba(184, 37, 42, 0.1);
  color: var(--red-dark);
}
.a11y__toggle-switch {
  width: 36px; height: 20px;
  background: #C9C0AC;
  border-radius: 10px;
  position: relative;
  transition: background 0.2s;
  flex-shrink: 0;
}
.a11y__toggle-switch::after {
  content: "";
  position: absolute;
  width: 14px; height: 14px;
  background: var(--cream);
  border-radius: 50%;
  top: 3px; left: 3px;
  transition: transform 0.2s;
  box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.a11y__toggle.is-on .a11y__toggle-switch { background: var(--red); }
.a11y__toggle.is-on .a11y__toggle-switch::after { transform: translateX(16px); }

.a11y__reset {
  width: 100%;
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
  padding: 10px;
  border-radius: 8px;
  font-family: var(--condensed);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  margin-top: 6px;
}
.a11y__reset:hover { background: var(--red); color: var(--cream); }

/* ===== Read Aloud controls ===== */
.a11y__read-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  background: var(--cream-soft);
  border: none;
  padding: 12px 14px;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s;
  font-family: var(--sans);
  color: var(--ink);
}
.a11y__read-toggle:hover { background: var(--cream-deep); }
.a11y__read-toggle.is-reading {
  background: var(--red);
  color: var(--cream);
}
.a11y__read-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  background: var(--red);
  color: var(--cream);
  border-radius: 50%;
  flex-shrink: 0;
  transition: background 0.2s;
}
.a11y__read-toggle.is-reading .a11y__read-icon {
  background: var(--gold);
  color: var(--red-dark);
  animation: readPulse 1.4s ease-in-out infinite;
}
@keyframes readPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 151, 69, 0.6); }
  50%      { box-shadow: 0 0 0 6px rgba(201, 151, 69, 0); }
}
.a11y__read-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  flex: 1;
  min-width: 0;
}
.a11y__read-title {
  font-size: 14px;
  font-weight: 700;
}
.a11y__read-hint {
  font-size: 11px;
  font-weight: 500;
  opacity: 0.65;
  margin-top: 2px;
}
.a11y__read-toggle.is-reading .a11y__read-hint { opacity: 0.85; }

.a11y__read-controls {
  display: flex;
  gap: 6px;
  margin-top: 8px;
}
.a11y__read-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--cream-soft);
  border: none;
  padding: 9px 8px;
  border-radius: 8px;
  font-family: var(--condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.a11y__read-btn:hover { background: var(--cream-deep); }
.a11y__read-btn--stop {
  color: var(--red);
}
.a11y__read-btn--stop:hover {
  background: var(--red);
  color: var(--cream);
}
.a11y__read-btn svg { flex-shrink: 0; }

/* When click-to-read is active, change cursor + visual hint */
body.a11y-click-to-read p,
body.a11y-click-to-read h1,
body.a11y-click-to-read h2,
body.a11y-click-to-read h3,
body.a11y-click-to-read h4,
body.a11y-click-to-read li,
body.a11y-click-to-read .dish__desc,
body.a11y-click-to-read .dish__name {
  cursor: pointer;
  position: relative;
}
body.a11y-click-to-read p:hover,
body.a11y-click-to-read h2:hover,
body.a11y-click-to-read h3:hover,
body.a11y-click-to-read .dish__desc:hover,
body.a11y-click-to-read .dish__name:hover {
  background: linear-gradient(transparent 60%, rgba(201, 151, 69, 0.3) 60%);
}

/* Highlight whatever's currently being read aloud */
.a11y-read-highlight {
  background: linear-gradient(transparent 55%, rgba(201, 151, 69, 0.45) 55%) !important;
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 2px;
  scroll-margin-top: 80px;
}

.a11y__footer-note {
  margin-top: 14px;
  font-size: 11px;
  line-height: 1.5;
  color: rgba(26, 8, 8, 0.6);
  padding-top: 12px;
  border-top: 1px dashed rgba(184, 37, 42, 0.2);
}
.a11y__footer-note a { color: var(--red); text-decoration: underline; }

/* ============================================
   ACCESSIBILITY MODES (toggled via JS)
   ============================================ */

/* High contrast: maximum contrast for text */
.a11y-high-contrast {
  --cream: #FFFFFF;
  --cream-soft: #F5F5F5;
  --cream-deep: #E8E8E8;
  --red: #B00000;
  --red-deep: #800000;
  --red-soft: #D90000;
  --red-dark: #4A0000;
  --red-darker: #2A0000;
  --gold: #FFD700;
  --gold-light: #FFEB80;
  --gold-bright: #FFE63A;
  --gold-deep: #B8860B;
  --ink: #000000;
  --black: #000000;
}
.a11y-high-contrast body { background: #FFFFFF; color: #000000; }
.a11y-high-contrast img { filter: contrast(1.15); }
.a11y-high-contrast .hero::after,
.a11y-high-contrast .press::after { opacity: 0.6; }

/* Readable font: switches display font to system sans (much higher legibility) */
.a11y-readable-font {
  --display: "Manrope", -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  --condensed: "Manrope", -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}
.a11y-readable-font * {
  letter-spacing: normal !important;
  font-weight: 600;
}
.a11y-readable-font h1, .a11y-readable-font h2, .a11y-readable-font h3 {
  font-weight: 800;
  text-transform: none;
}
.a11y-readable-font p { font-weight: 500; line-height: 1.75; }

/* Underline links: makes every link visually distinct */
.a11y-underline-links a:not(.btn):not(.nav__brand):not(.nav__cta):not(.app-store-btn):not(.nav__links a) {
  text-decoration: underline !important;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
}

/* Reduce motion: stops all animations and transitions */
.a11y-reduce-motion *,
.a11y-reduce-motion *::before,
.a11y-reduce-motion *::after {
  animation-duration: 0.001ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.001ms !important;
  transition-delay: 0ms !important;
  scroll-behavior: auto !important;
}
.a11y-reduce-motion .hero__photo--main,
.a11y-reduce-motion .hero__photo--small,
.a11y-reduce-motion .hero__sticker,
.a11y-reduce-motion .hero__marquee-track {
  animation: none !important;
}

/* Grayscale: removes all color from the page (helps users with migraines,
   sensory sensitivities, or certain visual processing conditions) */
.a11y-grayscale {
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
}

/* ============================================
   RESPONSIVE — Tablet
   ============================================ */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { min-height: 440px; max-width: 600px; margin: 0 auto; }
  .hero::after { font-size: 180px; bottom: 60px; }
  .story__inner { grid-template-columns: 1fr; }
  .story__visual { max-width: 500px; margin: 0 auto; width: 100%; }
  .dishes__grid { grid-template-columns: repeat(2, 1fr); }
  .locations__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   RESPONSIVE — Mobile
   Larger tap targets (44px min for ADA),
   off-canvas nav, optimized typography.
   ============================================ */
@media (max-width: 720px) {
  /* Smaller nav, larger logo for brand presence */
  .nav__inner { padding: 12px var(--gutter); gap: 12px; }
  .nav__logo { height: 36px; }

  /* Hide desktop links, show burger */
  .nav__links {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0; bottom: 0;
    background: var(--red-darker);
    flex-direction: column;
    gap: 0;
    padding: 40px var(--gutter);
    z-index: 100;
    overflow-y: auto;
  }
  .nav__links.nav__links--open { display: flex; }
  .nav__links a {
    font-size: 22px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(244, 230, 200, 0.15);
    width: 100%;
    /* Ensure 44px minimum tap target */
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .nav__cta {
    padding: 12px 16px;
    font-size: 13px;
    min-height: 44px;
  }
  .nav__burger {
    display: flex;
    width: 44px; height: 44px;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-direction: column;
  }

  /* Hero adjustments */
  .hero { padding-top: 50px; }
  .hero__title { font-size: clamp(40px, 11vw, 64px); margin-bottom: 22px; }
  .hero__lede { font-size: 16px; margin-bottom: 28px; }
  .hero__eyebrow { font-size: 11px; padding: 8px 14px; }
  .hero__cta-row { gap: 10px; margin-bottom: 40px; }
  .hero__cta-row .btn { width: 100%; justify-content: center; padding: 16px 24px; }
  .hero__stats { flex-wrap: wrap; gap: 14px; padding-top: 20px; }
  .hero__stat-divider { display: none; }
  .hero__stat-num { font-size: 26px; }
  .hero__visual { min-height: 380px; }
  .hero__sticker { width: 90px; height: 90px; bottom: 4%; right: 4%; }
  .hero__sticker svg { width: 90px; height: 90px; }
  .hero::after { font-size: 100px; bottom: 30px; }
  .hero__marquee-track span { font-size: 22px; }
  .hero__marquee-track span:nth-child(even) { font-size: 18px; }

  /* Story */
  .story__title { font-size: clamp(30px, 8vw, 44px); }
  .story__text p { font-size: 16px; line-height: 1.7; }
  .story__badge { width: 100px; height: 100px; top: -5px; right: -5px; }
  .story__badge-num { font-size: 30px; }

  /* Press */
  .press::after { font-size: 200px; top: -20px; }
  .press__stars { font-size: 16px; letter-spacing: 0.3em; }
  .press__quote { font-size: clamp(32px, 9vw, 48px); }
  .press__source { font-size: 12px; flex-wrap: wrap; justify-content: center; }

  /* Dishes — single column, larger tap targets */
  .dishes__header { grid-template-columns: 1fr; gap: 16px; }
  .dishes__title { font-size: clamp(30px, 8vw, 44px); }
  .dishes__grid { grid-template-columns: 1fr; gap: 20px; }
  .dish__body { padding: 20px 20px 24px; }
  .dish__name { font-size: 24px; }
  .dish__head { gap: 10px; }
  .dish__price { font-size: 15px; padding: 3px 8px; }

  /* Locations — single column */
  .locations__title { font-size: clamp(30px, 8vw, 44px); }
  .locations__grid { grid-template-columns: 1fr; gap: 16px; }
  .loc { padding: 24px 20px; }
  .loc__city { font-size: 26px; }
  .loc__actions .btn--small { flex: 1; min-width: 100px; justify-content: center; min-height: 44px; }

  /* Gallery */
  .gallery__title { font-size: clamp(30px, 8vw, 44px); }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; gap: 10px; }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--tall { grid-row: span 1; }

  /* App section */
  .app__title { font-size: clamp(34px, 9vw, 52px); }
  .app__features li { font-size: 14px; }
  .app-store-btn { width: 100%; justify-content: center; }

  /* CTA */
  .cta-banner__inner { flex-direction: column; align-items: flex-start; }
  .cta-banner__title { font-size: clamp(34px, 10vw, 52px); }
  .cta-banner .btn--large { width: 100%; justify-content: center; padding: 18px 30px; font-size: 16px; }

  /* Footer */
  .footer { padding: 60px var(--gutter) 24px; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; padding-bottom: 36px; }
  .footer__logo { width: 200px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 8px; padding-top: 20px; }

  /* Accessibility widget on mobile - move slightly */
  .a11y { bottom: 16px; left: 16px; }
  .a11y__trigger { width: 52px; height: 52px; }
}

/* ============================================
   RESPONSIVE — Small phones (iPhone SE etc.)
   ============================================ */
@media (max-width: 380px) {
  :root { --gutter: 16px; }
  .hero__title { font-size: 38px; }
  .hero__stats { font-size: 10px; }
  .nav__logo { height: 32px; }
  .nav__cta { padding: 10px 12px; font-size: 11px; }
  .phone { width: 200px; height: 420px; }
  .phone__bezel { border-radius: 32px; padding: 6px; }
  .phone__screen { border-radius: 26px; }
  .phone__notch { width: 68px; height: 16px; top: 12px; }
  .phone__status { height: 32px; padding: 0 16px 4px; font-size: 10px; }
  .phone-app { padding-top: 36px; padding-left: 10px; padding-right: 10px; }
  .phone-app__brand-icon { width: 26px; height: 26px; }
  .phone-app__brand-name { font-size: 13px; }
  .phone-app__item-img { width: 34px; height: 34px; }
  .phone-app__heading { font-size: 14px; margin-top: 12px; }
}

/* ============================================
   Honor OS-level reduced motion preference
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================
   PRINT — Restaurants get printed for sharing
   ============================================ */
@media print {
  .nav, .a11y, .hero__marquee, .cta-banner, .footer {
    display: none !important;
  }
  body { background: white; color: black; font-size: 12pt; }
  .hero, .story, .dishes, .locations, .press, .app, .gallery {
    page-break-inside: avoid;
    padding: 20px !important;
    background: white !important;
    color: black !important;
  }
  a { color: black !important; text-decoration: underline; }
  a[href]::after { content: " (" attr(href) ")"; font-size: 9pt; color: #555; }
}
