/* ========================================
   NAJI SPECIALTY COFFEE — IG Modern Dark
   ======================================== */

:root {
  --bg: #1A1210;
  --bg-card: #221A15;
  --bg-card-hover: #2A201A;
  --orange: #E8762D;
  --orange-glow: rgba(232,118,45,0.12);
  --white: #FFFFFF;
  --black: #1A1210;
  --text: #F0E6DA;
  --text-dim: #8A7E72;
  --border: rgba(232,118,45,0.08);

  --font: 'Inter', -apple-system, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-naji: 'Josefin Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --max-w: 1100px;
  --r: 16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { overflow-x: hidden; }


body {
  font-family: var(--font); background: var(--bg); color: var(--text);
  line-height: 1.6; -webkit-font-smoothing: antialiased;
  opacity: 0; transition: opacity 0.15s;
}
body.fonts-ready { opacity: 1; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: auto; }
ul { list-style: none; }

/* --- Banner (fixed at very top) --- */
.concept-banner {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: #8B2020; color: #fff; text-align: center;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  height: 28px; line-height: 28px; white-space: nowrap;
}
/* --- Spacer to offset fixed banner --- */
.banner-spacer { height: 28px; }
/* --- Nav (sticky below banner) --- */
.nav-wrap {
  position: sticky; top: 28px; z-index: 900;
}
.concept-banner .sep { margin: 0 8px; opacity: 0.4; }
.concept-banner .soft { opacity: 0.6; }

/* --- Nav (centered stacked) --- */
.nav {
  display: flex; flex-direction: column; align-items: center;
  padding: 36px 32px 0;
  background: var(--bg);
}
.nav-logo img { height: 30px; width: auto; }
.nav-bottom {
  display: flex; align-items: center; gap: 32px;
  margin-top: 20px; padding-bottom: 28px;
  border-bottom: 1px solid var(--border); width: 100%; justify-content: center;
}
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-family: var(--font-naji); font-size: 12px; font-weight: 300;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: #E8A96A; transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-divider { width: 1px; height: 14px; background: var(--border); }
.lang-toggle { display: flex; align-items: center; gap: 6px; }
.lang-toggle button {
  background: none; border: none; color: #E8A96A;
  font-family: var(--font-mono); font-size: 10px; cursor: pointer; padding: 0;
  letter-spacing: 0.1em;
}
.lang-toggle button.active { color: var(--orange); }
.lang-toggle .sep { color: #333; font-size: 10px; }

/* --- Hero --- */
.hero {
  position: relative; height: 100vh; min-height: 600px; max-height: 900px;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(26,18,16,0.4) 0%, rgba(26,18,16,0.15) 40%, rgba(26,18,16,0.6) 75%, var(--bg) 100%);
}
.hero-inner {
  position: relative; z-index: 2; height: 100%;
  display: flex; align-items: flex-end;
  padding: 80px 48px; max-width: var(--max-w); margin: 0 auto;
}
.hero-caption { max-width: 560px; }
/* Hero side label (vertical) */
.hero-side-label {
  position: absolute; right: 48px; bottom: 80px; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: var(--font-naji); font-size: 11px; font-weight: 300;
  letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.5);
  writing-mode: vertical-rl;
}
.hero-side-line { display: block; width: 1px; height: 40px; background: rgba(232,118,45,0.4); }
.hero-caption .title {
  font-family: var(--font); font-size: clamp(42px, 6vw, 68px);
  font-weight: 800; line-height: 1.02; color: var(--white);
  letter-spacing: -0.03em; margin-bottom: 20px;
}
.hero-caption .subtitle {
  font-size: 16px; font-weight: 400; color: rgba(255,255,255,0.6);
  line-height: 1.7; max-width: 420px;
}

/* --- Press Strip --- */
.press-strip {
  padding: 40px 32px; text-align: center;
  background: var(--orange); color: var(--bg);
}
.press-strip .label {
  font-family: var(--font-naji); font-size: 12px; font-weight: 300;
  text-transform: uppercase; letter-spacing: 0.25em;
  color: var(--bg); margin-bottom: 4px; opacity: 0.7; font-weight: 600;
}
.press-strip .headline {
  font-family: var(--font-display); font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700; font-style: italic; color: var(--bg);
}
.press-logos {
  display: flex; justify-content: center; gap: 40px; margin-top: 16px;
  font-family: var(--font-mono); font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.15em; color: var(--bg); opacity: 0.7; font-weight: 500;
}

/* --- Intro --- */
.intro { padding: 96px 32px; }
.intro-inner { max-width: var(--max-w); margin: 0 auto; }
.intro-label {
  font-family: var(--font-mono); font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--orange); margin-bottom: 16px;
}
.intro-address {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font); font-size: 13px; font-weight: 400;
  color: var(--text-dim); margin-bottom: 20px;
  padding-bottom: 12px; border-bottom: 1px solid var(--border);
}
.intro-address svg { color: var(--orange); flex-shrink: 0; }
.intro-statement {
  font-size: clamp(28px, 3.5vw, 44px); font-weight: 700;
  line-height: 1.25; max-width: 640px; letter-spacing: -0.02em;
}
.intro-statement em {
  font-style: italic; font-family: var(--font-display);
  font-weight: 400; color: var(--orange);
}

/* --- Section divider lines --- */
.section-lines {
  padding: 24px 0;
  display: flex; flex-direction: column; gap: 8px;
}
.section-lines span {
  display: block; height: 2px; width: 100%;
  background: linear-gradient(to right, transparent, rgba(232,118,45,0.35) 20%, rgba(232,118,45,0.35) 80%, transparent);
}

/* --- Section helpers --- */
.section-label {
  font-family: var(--font-naji); font-size: 12px; font-weight: 300;
  text-transform: uppercase; letter-spacing: 0.25em;
  color: var(--orange); display: block; margin-bottom: 10px;
}
.display-m {
  font-size: clamp(24px, 3vw, 34px); font-weight: 700;
  line-height: 1.2; letter-spacing: -0.02em;
}

/* --- Signature Drinks --- */
.signature { padding: 96px 32px; }
.signature-inner { max-width: var(--max-w); margin: 0 auto; }
.signature-header { margin-bottom: 48px; }
.signature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.sig-card {
  background: var(--bg-card); border: 1px solid rgba(232,118,45,0.1);
  border-radius: var(--r); overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.sig-card:hover { border-color: var(--orange); transform: translateY(-4px); }
.sig-card .media { aspect-ratio: 1; overflow: hidden; }
.sig-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.sig-card:hover .media img { transform: scale(1.05); }
.sig-card .body { padding: 20px; }
.sig-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.sig-card .desc { font-size: 13px; color: var(--text-dim); line-height: 1.5; }
.sig-card .price {
  display: inline-block; margin-top: 12px;
  font-family: var(--font-mono); font-size: 12px; color: var(--orange);
}

/* --- Story --- */
.story { padding: 96px 32px; }
.story-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.story-media { border-radius: var(--r); overflow: hidden; aspect-ratio: 3/4; }
.story-media img { width: 100%; height: 100%; object-fit: cover; }
.story-copy h2 {
  font-size: clamp(26px, 3vw, 36px); font-weight: 700;
  line-height: 1.15; margin-bottom: 20px; letter-spacing: -0.02em;
}
.story-copy p { font-size: 15px; color: var(--text-dim); line-height: 1.7; margin-bottom: 16px; }
.story-copy .link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--orange); font-size: 14px; font-weight: 600;
  transition: gap 0.2s;
}
.story-copy .link:hover { gap: 10px; }

/* --- Menu Highlights --- */
.menu-highlights {
  padding: 96px 32px;
  background: var(--bg-card);
}
.menu-hl-inner { max-width: var(--max-w); margin: 0 auto; text-align: center; }
.menu-hl-sub { color: var(--text-dim); font-size: 15px; margin-top: 6px; margin-bottom: 48px; }
.menu-hl-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; text-align: left; }
.menu-hl-card {
  background: var(--bg); border: 1px solid rgba(232,118,45,0.08);
  border-radius: 12px; padding: 20px;
  transition: border-color 0.2s, background 0.2s;
  cursor: default; min-height: 110px; display: flex; flex-direction: column;
}
.menu-hl-card:hover { border-color: var(--orange); background: var(--bg-card-hover); }
.menu-hl-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.menu-hl-desc {
  font-size: 12px; color: var(--text-dim); line-height: 1.4;
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height 0.3s, opacity 0.25s, margin 0.3s;
}
.menu-hl-card:hover .menu-hl-desc { max-height: 50px; opacity: 1; margin-bottom: 8px; }
.menu-hl-price { font-family: var(--font-mono); font-size: 16px; font-weight: 700; color: var(--orange); margin-top: auto; }
.menu-hl-btn {
  display: inline-block; background: var(--orange); color: #fff;
  font-size: 14px; font-weight: 600; padding: 14px 40px;
  border-radius: 100px; transition: background 0.2s, transform 0.2s;
}
.menu-hl-btn:hover { background: #D06220; transform: scale(1.03); }

/* --- Awards --- */
.awards-strip { padding: 48px 32px; background: var(--orange); color: #fff; }
.awards-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; justify-content: center; align-items: center;
  gap: 56px; text-align: center;
}
.award { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.award .number { font-size: 40px; font-weight: 800; letter-spacing: -0.02em; color: #fff; }
.award .unit { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(255,255,255,0.6); }
.award-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.2); }

/* --- Reviews --- */
.reviews { padding: 96px 32px; }
.reviews-inner { max-width: var(--max-w); margin: 0 auto; }
.reviews-title { font-size: clamp(24px, 3vw, 34px); font-weight: 800; text-align: center; margin-bottom: 48px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: start; }
.review-card {
  background: #fff; border: none; color: var(--black);
  border-radius: var(--r); padding: 20px;
}
.review-summary-card { text-align: center; }
.review-biz-name { font-weight: 700; font-size: 16px; margin-bottom: 4px; color: var(--black); }
.review-rating-row { display: flex; align-items: center; justify-content: center; gap: 6px; margin-bottom: 4px; }
.review-score { font-size: 15px; font-weight: 700; }
.review-stars-gold { color: #FBBC04; font-size: 16px; letter-spacing: 1px; }
.review-read-all {
  display: inline-block; font-size: 13px; color: #1a73e8;
  margin-bottom: 16px; padding-bottom: 16px;
  border-bottom: 1px solid #eee; width: 100%;
}
.review-card-inner { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; text-align: left; }
.review-avatar {
  width: 36px; height: 36px; border-radius: 50%; background: var(--orange);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; flex-shrink: 0;
}
.review-avatar.av-blue { background: #4285F4; }
.review-avatar.av-red { background: #EA4335; }
.review-avatar.av-green { background: #34A853; }
.review-avatar.av-purple { background: #8E44AD; }
.review-avatar.av-teal { background: #00897B; }
.review-avatar.av-orange { background: var(--orange); }
.review-meta { display: flex; flex-direction: column; }
.review-author { font-size: 13px; font-weight: 600; color: var(--black); }
.review-date { font-size: 11px; color: var(--text-dim); }
.review-stars-sm { color: #FBBC04; font-size: 12px; }
.review-text { font-size: 13px; line-height: 1.6; color: var(--text-dim); margin-bottom: 12px; }
.review-google-link { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-dim); }
.review-google-link:hover { color: var(--orange); }
.g-icon { flex-shrink: 0; }

/* --- Footer --- */
.footer {
  background: var(--bg-card); color: var(--text);
  padding: 80px 32px 32px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  max-width: var(--max-w); margin: 0 auto 40px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
}
.footer .wordmark { font-family: var(--font-naji); font-size: 28px; font-weight: 300; letter-spacing: 0.2em; margin-bottom: 6px; text-transform: uppercase; }
.footer .tagline-footer { color: var(--text-dim); font-size: 14px; max-width: 280px; }
.footer h4 {
  font-family: var(--font-mono); font-size: 10px; text-transform: uppercase;
  letter-spacing: 0.2em; color: var(--text-dim); margin-bottom: 16px; font-weight: 400;
}
.footer li { margin-bottom: 6px; font-size: 14px; color: var(--text); }
.hours-table { display: flex; flex-direction: column; gap: 8px; }
.hours-row { display: flex; align-items: baseline; gap: 12px; font-size: 14px; }
.hours-days { color: var(--text-dim); min-width: 72px; }
.hours-time { font-family: var(--font-mono); font-size: 13px; }
.follow-heading { display: flex; align-items: center; gap: 6px; }
.ig-icon { width: 14px; height: 14px; color: var(--orange); flex-shrink: 0; }
.ig-handle { text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--orange); }
.ig-handle:hover { text-decoration-color: var(--white); }
.email-link { color: var(--text-dim); font-size: 13px; }
.email-link:hover { color: var(--white); }
.footer-bottom {
  max-width: var(--max-w); margin: 0 auto; padding-top: 16px;
  border-top: 1px solid rgba(232,118,45,0.1); display: flex; justify-content: space-between;
  font-family: var(--font-mono); font-size: 10px; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--text-dim);
}

/* --- Bilingual --- */
[data-en] { display: none; }
html.lang-en [data-en] { display: revert; }
html.lang-en [data-es] { display: none; }

/* --- Image fallback --- */
img[src*="img/"] { background: var(--bg-card); min-height: 180px; }
.img-placeholder {
  position: relative; background: var(--bg-card); min-height: 280px;
  display: flex; align-items: center; justify-content: center;
  border: 2px dashed rgba(232,118,45,0.25); border-radius: var(--r);
}
.img-placeholder img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: var(--r); }
.img-placeholder .ph-label {
  position: relative; z-index: 2; text-align: center; padding: 20px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--orange); line-height: 1.8;
}
.img-placeholder .ph-label strong { display: block; font-size: 13px; color: var(--text); margin-bottom: 4px; letter-spacing: 0.05em; text-transform: none; }
.img-placeholder .ph-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 50%; background: var(--orange);
  color: #fff; font-size: 12px; font-weight: 700; margin-bottom: 8px;
}
.img-placeholder .ph-label .ph-res,
.hero-ph .ph-res {
  display: inline-block; margin-top: 6px; font-size: 10px;
  color: var(--text-dim); letter-spacing: 0.15em;
}
/* Hide placeholder label when image loads */
.img-placeholder.loaded .ph-label { display: none; }
.img-placeholder.loaded { border: none; }

/* --- Subpages --- */
.page-header { padding: 64px 32px 48px; text-align: center; }
.page-header h1 { font-family: var(--font-naji); font-size: clamp(32px, 4vw, 48px); font-weight: 300; margin-bottom: 10px; letter-spacing: 0.1em; text-transform: uppercase; }
.page-header .subtitle { font-size: 16px; color: var(--text-dim); max-width: 480px; margin: 0 auto; }
.menu-full {
  max-width: var(--max-w); margin: 0 auto; padding: 0 32px 96px;
  position: relative;
}
/* --- Carta side decorations --- */
.menu-full::before,
.menu-full::after {
  content: ''; position: fixed; top: 10%; width: 2px; height: 80vh;
  background: linear-gradient(to bottom, transparent, var(--orange) 15%, var(--orange) 85%, transparent);
  opacity: 0.2; pointer-events: none; z-index: 1;
}
.menu-full::before { left: clamp(10px, 2.5vw, 32px); }
.menu-full::after { right: clamp(10px, 2.5vw, 32px); }
/* Diamond markers along the side lines */
.menu-section { position: relative; }
.menu-section::before {
  content: '◇'; position: absolute; top: 6px;
  left: calc(-1 * clamp(22px, 3.5vw, 48px));
  font-size: 10px; color: var(--orange); opacity: 0.35;
}
.menu-section:nth-child(even)::before {
  left: auto;
  right: calc(-1 * clamp(22px, 3.5vw, 48px));
}
/* Dot separators between sections */
.menu-section + .menu-section::after {
  content: '—  ◇  —'; position: absolute; top: -32px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono); font-size: 12px;
  color: var(--orange); opacity: 0.25; letter-spacing: 0.4em;
}
.menu-section { margin-bottom: 64px; }
.menu-section h2 {
  font-size: 26px; font-weight: 700; margin-bottom: 12px; padding-bottom: 12px;
  border-bottom: 1px solid var(--border); position: relative; padding-left: 20px;
}
.menu-section h2::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 3px; height: 20px; background: var(--orange); border-radius: 2px;
}
.menu-section .menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 40px; }
.menu-item { display: flex; justify-content: space-between; align-items: baseline; padding: 10px 0; border-bottom: 1px solid var(--border); }
.menu-item:last-child { border-bottom: none; }
.menu-item .name { font-size: 14px; }
.menu-item .name .tag {
  display: inline-block; margin-left: 8px; font-family: var(--font-mono);
  font-size: 9px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--orange); background: var(--orange-glow); padding: 2px 6px; border-radius: 4px;
}
.menu-item .price-tag { font-family: var(--font-mono); font-size: 13px; color: var(--text-dim); }
.menu-note { margin-top: var(--space-3, 12px); font-size: 13px; color: var(--text-dim); line-height: 1.5; }
.menu-section-sub { font-size: 16px; font-weight: 400; color: var(--text-dim); }

/* --- Menu Cards (with images) --- */
.menu-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.menu-card {
  background: var(--bg-card); border: 1px solid rgba(232,118,45,0.08);
  border-radius: var(--r); overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.menu-card:hover { border-color: var(--orange); transform: translateY(-3px); }
.menu-card-img { aspect-ratio: 1; overflow: hidden; }
.menu-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.5s; }
.menu-card:hover .menu-card-img img { transform: scale(1.05); }
.menu-card-body { padding: 16px; }
.menu-card-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 6px; }
.menu-card-top h3 { font-size: 15px; font-weight: 700; }
.menu-card-top .price-tag { font-family: var(--font-mono); font-size: 14px; color: var(--orange); font-weight: 700; flex-shrink: 0; }
.menu-card-desc { font-size: 12px; color: var(--text-dim); line-height: 1.5; }

.visit-grid {
  max-width: var(--max-w); margin: 0 auto; padding: 0 32px 96px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
}
.visit-info h3 { font-size: 22px; font-weight: 700; margin-bottom: 16px; }
.visit-info p { font-size: 15px; color: var(--text-dim); line-height: 1.7; margin-bottom: 10px; }
.visit-map { border-radius: var(--r); overflow: hidden; aspect-ratio: 1; background: var(--bg-card); }

/* --- Hamburger & Mobile Menu --- */
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  width: 44px; height: 44px; position: relative; padding: 10px 8px;
  z-index: 1100; -webkit-tap-highlight-color: transparent;
}
.hamburger span {
  display: block; position: absolute; left: 8px; right: 8px; height: 2px;
  background: #E8A96A; transition: transform 0.3s, opacity 0.3s;
}
.hamburger span:nth-child(1) { top: 12px; }
.hamburger span:nth-child(2) { top: 21px; }
.hamburger span:nth-child(3) { top: 30px; }
.hamburger.active span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { top: 21px; transform: rotate(-45deg); }
.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(26,18,16,0.97); z-index: 1050;
  flex-direction: column; align-items: center; justify-content: center; gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Josefin Sans', sans-serif; font-size: 16px; font-weight: 300;
  letter-spacing: 0.25em; text-transform: uppercase; color: #E8A96A;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  /* Nav */
  .nav { padding: 12px 20px 0; }
  .nav-links { display: none; }
  .nav-divider { display: none; }
  .nav-bottom {
    margin-top: 8px; padding-bottom: 10px;
    justify-content: center; gap: 16px;
  }
  .hamburger { display: flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; z-index: 1100; }
  .hamburger span { left: 8px; width: 28px; }
  .mobile-menu { z-index: 1050; }

  /* Hero */
  .hero { min-height: 85vh; max-height: none; }
  .hero-inner { padding: 40px 24px; }
  .hero-caption .title { font-size: 36px; }
  .hero-caption .subtitle { font-size: 14px; }
  .hero-side-label { display: none; }

  /* Sections */
  .intro { padding: 64px 20px; }
  .intro-statement { font-size: 26px; }
  .signature { padding: 48px 12px; }
  .signature-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .sig-card .body { padding: 10px; }
  .sig-card h3 { font-size: 13px; }
  .sig-card .desc { font-size: 10px; }
  .sig-card .price { font-size: 10px; }
  .display-m { font-size: 20px; }
  .story { padding: 64px 20px; }
  .story-grid { grid-template-columns: 1fr; gap: 32px; }
  .story-media { aspect-ratio: 16/9; }
  .awards-inner { flex-wrap: wrap; gap: 24px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer { padding: 48px 20px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .press-logos { flex-wrap: wrap; gap: 16px; }

  /* Carta — keep 3-col like desktop, just smaller */
  .menu-full { padding: 0 12px 48px; }
  .menu-full::before, .menu-full::after { display: none; }
  .menu-section::before { display: none; }
  .menu-section h2 { font-size: 18px; padding-left: 14px; }
  .menu-section h2::before { height: 14px; top: 5px; }
  .menu-section .menu-grid { grid-template-columns: repeat(3, 1fr); gap: 0 16px; }
  .menu-item .name { font-size: 11px; }
  .menu-item .price-tag { font-size: 10px; }
  .menu-cards-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .menu-card-body { padding: 8px; }
  .menu-card-top h3 { font-size: 11px; }
  .menu-card-top .price-tag { font-size: 10px; }
  .menu-card-desc { font-size: 9px; }
  .menu-note { font-size: 10px; }
  .page-header h1 { font-size: 24px; }
  .page-header .subtitle { font-size: 12px; }
  .visit-grid { grid-template-columns: 1fr; }

  /* Section lines */
  .section-lines { padding: 16px 0; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-caption .title { font-size: 30px; }
}
