/* ============================================================
   Doña Mary Mexican Grill — Design System
   Hybrid hi-fi: Classic structure + Editorial photo & type
   ============================================================ */

:root {
  /* Brand palette — straight from the brief */
  --red:       #c41e3a;
  --red-dark:  #9b1530;
  --red-deep:  #6f0e22;
  --ink:       #1a1a1a;
  --ink-2:     #2b2b2b;
  --ink-3:     #4a4a4a;
  --green:     #2d5016;
  --green-2:   #3d6b1e;
  --green-deep:#1d3309;
  --gold:      #d4af37;
  --gold-2:    #b88a2a;
  --cream:     #f5e6d3;
  --cream-2:   #ebd9bf;
  --paper:     #fffaf2;
  --white:     #ffffff;
  --gray:      #666666;
  --gray-2:    #8a8a8a;
  --rule:      rgba(26, 26, 26, 0.1);

  /* Typography (Tweakable via data-display) */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-heading: 'Oswald', 'Helvetica Neue', system-ui, sans-serif;
  --font-body:    'Open Sans', system-ui, sans-serif;

  --tracking-tight:  -0.02em;
  --tracking-normal: 0;
  --tracking-wide:   0.08em;
  --tracking-wider:  0.16em;

  /* Spacing scale */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 120px;

  --radius-sm: 4px;
  --radius:    6px;
  --radius-lg: 12px;

  --shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.06), 0 12px 32px rgba(0, 0, 0, 0.08);
  --shadow-lift: 0 8px 24px rgba(0, 0, 0, 0.12), 0 24px 56px rgba(0, 0, 0, 0.14);

  --container: 1240px;
}

/* Theme variants driven by tweaks --------------------------------- */
:root[data-display="oswald"] {
  --font-display: 'Oswald', 'Helvetica Neue', sans-serif;
}
:root[data-display="bebas"] {
  --font-display: 'Bebas Neue', 'Oswald', sans-serif;
}
:root[data-display="dmserif"] {
  --font-display: 'DM Serif Display', 'Playfair Display', serif;
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.section { padding: var(--space-9) 0; }

/* ---------- Typography primitives ---------- */
.kicker {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: var(--space-3);
}

.display {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(56px, 6.2vw, 84px);
  line-height: 0.96;
  letter-spacing: var(--tracking-tight);
  margin: 0 0 var(--space-5);
  color: var(--ink);
}
.display em { font-style: italic; color: var(--red); font-weight: 700; }
.display em.em-green { color: var(--green); }

.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(36px, 3.6vw, 52px);
  letter-spacing: var(--tracking-tight);
  line-height: 1;
  margin: 0;
  color: var(--ink);
}

.section-header { margin-bottom: var(--space-7); }
.section-header-center { text-align: center; }
.section-header-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: var(--space-5);
}
.section-header-center .rule { margin: var(--space-4) auto 0; }
.section-header .rule { margin-top: var(--space-4); }
.rule {
  display: block;
  width: 56px;
  height: 3px;
  background: var(--green);
  position: relative;
}
.rule::before, .rule::after {
  content: "";
  position: absolute;
  top: 0;
  width: 3px;
  height: 9px;
  background: var(--green);
}
.rule::before { left: -7px; top: -3px; }
.rule::after  { right: -7px; top: -3px; }
.rule-red { background: var(--red); }
.rule-red::before, .rule-red::after { background: var(--red); }

.see-all {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 4px;
  transition: color 0.15s, border-color 0.15s;
}
.see-all:hover { color: var(--red); border-color: var(--red); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.05s;
  background: transparent;
  color: var(--ink);
  white-space: nowrap;
}
.btn-primary { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn-primary:active { transform: translateY(1px); }
.btn-ghost { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-ghost:hover { background: var(--ink); color: var(--white); }
.btn-lg { padding: 16px 30px; font-size: 14px; }
.btn-sm { padding: 8px 14px; font-size: 11px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: var(--ink);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav-row {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
}
.brand {
  display: flex; align-items: center; gap: 8px;
  color: var(--white);
}
.brand-mark {
  color: var(--red);
  display: flex;
  font-size: 20px;
  margin-right: 4px;
}
.brand-text { display: flex; flex-direction: column; line-height: 1; gap: 4px; align-items: center; }
.brand-line-1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-style: normal;
  font-size: 32px;
  letter-spacing: var(--tracking-wider);
  white-space: nowrap;
  text-transform: uppercase;
  color: var(--green-2);
  line-height: 0.9;
}
.brand-line-2 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: var(--tracking-wide);
  color: var(--white);
  text-transform: uppercase;
  background: var(--red);
  padding: 6px 16px;
  border-radius: 20px;
  display: inline-block;
  white-space: nowrap;
  margin-top: 2px;
  margin-left: auto;
  margin-right: auto;
}
.brand-dark { color: var(--white); }

.brand-footer .brand-line-1 {
  font-size: 20px;
}
.brand-footer .brand-line-2 {
  font-size: 11px;
  padding: 4px 12px;
}

.nav-links {
  display: flex; align-items: center; gap: var(--space-7);
}
.nav-links a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.nav-links a:hover { color: var(--white); border-bottom-color: var(--red); }

.nav-cta {
  display: flex; align-items: center; gap: var(--space-4);
}
.open-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #5fc66e;
  box-shadow: 0 0 0 3px rgba(95, 198, 110, 0.18);
  display: inline-block;
}
.open-label {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  display: grid;
  grid-template-columns: 46fr 54fr;
  min-height: 620px;
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
}
.hero-left {
  padding: var(--space-9) var(--space-8) var(--space-9) var(--space-9);
  display: flex; flex-direction: column; justify-content: center;
  max-width: 720px;
}
.hero-left .kicker { color: var(--green); }
.lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--gray);
  max-width: 460px;
  margin: 0 0 var(--space-6);
}
.hero-actions { display: flex; gap: var(--space-3); margin-bottom: var(--space-6); }
.hero-meta {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: var(--space-6);
  font-size: 13px;
  color: var(--ink-3);
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}
.hero-meta li { display: flex; align-items: center; gap: 8px; }
.meta-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.meta-green { background: var(--green); }
.meta-gold  { background: var(--gold); }

.hero-right {
  position: relative;
  border-left: 1px solid var(--rule);
  overflow: hidden;
}
.photo-hero {
  width: 100%; height: 100%;
  border-radius: 0;
  border: 0;
}
.press-tag {
  position: absolute;
  left: -28px;
  bottom: 70px;
  background: var(--ink);
  color: var(--paper);
  padding: 14px 22px;
  display: flex; flex-direction: column; gap: 2px;
  transform: rotate(-1.5deg);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.18);
}
.press-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 19px;
  line-height: 1.15;
}
.press-source {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================================
   PHOTO PLACEHOLDERS (replace src in production)
   warm cream/peach toned w/ subtle stripes + monospace caption
   ============================================================ */
.photo {
  position: relative;
  background-color: var(--cream);
  background-image:
    repeating-linear-gradient(135deg,
      rgba(196, 30, 58, 0.05) 0,
      rgba(196, 30, 58, 0.05) 6px,
      rgba(45, 80, 22, 0.04) 6px,
      rgba(45, 80, 22, 0.04) 12px);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 220px;
}
.photo::before {
  content: "";
  position: absolute; inset: 16px;
  border: 1px dashed rgba(26, 26, 26, 0.25);
  border-radius: var(--radius-sm);
  pointer-events: none;
}
.photo-label {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  font-family: 'SFMono-Regular', ui-monospace, Menlo, Consolas, monospace;
  font-size: 11px;
  color: var(--ink-3);
  background: var(--paper);
  padding: 4px 10px;
  border-radius: 99px;
  border: 1px solid var(--rule);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.photo-tall    { aspect-ratio: 4 / 5; min-height: 0; }
.photo-wide    { aspect-ratio: 5 / 3; min-height: 0; }
.photo-portrait{ aspect-ratio: 4 / 5; min-height: 0; }

/* ============================================================
   SPECIALTIES
   ============================================================ */
.specialties { background: var(--paper); }
.specials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.special {
  display: flex; flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--rule);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.special:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.special .photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 0;
  border-radius: 0;
  border-bottom: 1px solid var(--rule);
}
.special .photo::before { display: none; }
.special-body {
  padding: var(--space-5) var(--space-5) var(--space-5);
  display: flex; flex-direction: column;
  gap: var(--space-2);
  flex: 1;
}
.numeral {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 14px;
  color: var(--gold-2);
  letter-spacing: var(--tracking-wide);
}
.dish-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: var(--tracking-tight);
  line-height: 1.05;
  text-wrap: balance;
  margin: 0;
  color: var(--ink);
}
.dish-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.55;
  margin: 0;
}
.dish-foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: auto;
  padding-top: var(--space-3);
}
.price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  color: var(--red);
  letter-spacing: var(--tracking-tight);
}
.badge-signature {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 99px;
  z-index: 1;
}

/* ============================================================
   GRECA DIVIDER  ·  subtle Aztec stepped line
   ============================================================ */
.greca {
  height: 28px;
  background: var(--paper);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 28'><path d='M0 14 h12 v-6 h6 v6 h12 v-12 h6 v12 h12 v-6 h6 v6 h12 v0' fill='none' stroke='%232d5016' stroke-width='1.5'/></svg>");
  background-repeat: repeat-x;
  background-size: 80px 28px;
  background-position: center;
  opacity: 0.55;
}
.greca-red {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 28'><path d='M0 14 h12 v-6 h6 v6 h12 v-12 h6 v12 h12 v-6 h6 v6 h12 v0' fill='none' stroke='%23c41e3a' stroke-width='1.5'/></svg>");
}

/* ============================================================
   MENU
   ============================================================ */
.menu { background: var(--paper); }

.menu-tabs {
  display: flex; gap: var(--space-2); flex-wrap: wrap;
  justify-content: center;
  margin-bottom: var(--space-7);
}
.tab {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  padding: 12px 22px;
  border: 1.5px solid var(--ink);
  background: transparent;
  color: var(--ink);
  border-radius: 99px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.tab:hover { background: var(--ink); color: var(--white); }
.tab.is-active { background: var(--red); color: var(--white); border-color: var(--red); }

.menu-layout {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: var(--space-8);
  align-items: start;
}
.menu-list {
  list-style: none; margin: 0; padding: 0;
  border-top: 1px solid var(--rule);
}
.menu-subhead {
  list-style: none;
  padding: var(--space-6) 0 var(--space-3);
  border-bottom: 1px solid var(--rule);
  display: flex; align-items: baseline; gap: var(--space-3);
  flex-wrap: wrap;
}
.menu-subhead:first-child { padding-top: var(--space-4); }
.menu-subhead-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--green);
}
.menu-subhead-note {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 14px;
  color: var(--gray);
}
.menu-subhead.is-compact { padding-top: var(--space-5); }
.menu-row {
  padding: var(--space-5) 0;
  border-bottom: 1px solid var(--rule);
}
.menu-row.is-signature { background: linear-gradient(90deg, rgba(212, 175, 55, 0.06), transparent 60%); padding-left: var(--space-3); margin-left: calc(-1 * var(--space-3)); border-left: 3px solid var(--gold); }

/* Compact rows: smaller, denser, for add-ons / small items */
.menu-row.is-compact { padding: var(--space-3) 0; }
.menu-row.is-compact .menu-name { font-size: 16px; }
.menu-row.is-compact .menu-price { font-size: 16px; color: var(--ink-3); }
.menu-row.is-compact .menu-desc { font-size: 13px; margin-top: 2px; }
.menu-row-head {
  display: flex; align-items: baseline; gap: var(--space-3);
}
.menu-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: var(--tracking-tight);
  margin: 0;
  color: var(--ink);
  flex: 0 0 auto;
}
.menu-name .star { color: var(--gold); font-size: 16px; vertical-align: middle; margin-left: 4px; }
.dots {
  flex: 1 1 auto;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--ink-3) 0 2px, transparent 2px 6px);
  transform: translateY(-3px);
  opacity: 0.4;
}
.menu-price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--red);
  flex: 0 0 auto;
  white-space: nowrap;
}
.menu-desc {
  font-size: 14px;
  color: var(--gray);
  margin: 6px 0 0;
  line-height: 1.5;
  max-width: 540px;
}

.menu-feature { display: flex; flex-direction: column; gap: var(--space-5); }
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--rule);
  overflow: hidden;
}
.feature-card .photo { border-radius: 0; }
.feature-card .photo::before { display: none; }
.feature-body { padding: var(--space-4) var(--space-5) var(--space-5); }
.feature-kicker {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 6px;
}
.feature-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
  margin: 0;
}

/* ============================================================
   GALLERY  ·  irregular masonry
   ============================================================ */
.gallery { background: var(--cream); }
.gallery .kicker { color: var(--green); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 140px;
  gap: var(--space-3);
}
.gallery-grid .photo { min-height: 0; border-radius: var(--radius); overflow: hidden; }
.gallery-grid .photo::before { inset: 10px; }
.g-1 { grid-column: span 3; grid-row: span 2; }
.g-2 { grid-column: span 2; grid-row: span 1; }
.g-3 { grid-column: span 1; grid-row: span 1; }
.g-4 { grid-column: span 2; grid-row: span 2; }
.g-5 { grid-column: span 1; grid-row: span 1; }
.g-6 { grid-column: span 3; grid-row: span 1; }
.g-7 { grid-column: span 2; grid-row: span 2; }
.g-8 { grid-column: span 4; grid-row: span 1; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--paper); }
.about-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: var(--space-9);
  align-items: center;
}
.about-photo .photo {
  width: 100%;
  border-radius: var(--radius-lg);
}
.photo-caption {
  margin-top: var(--space-3);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--gray-2);
}
.pull-quote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: var(--tracking-tight);
  margin: 0 0 var(--space-5);
  color: var(--ink);
  position: relative;
}
.pull-quote em { color: var(--green); font-style: italic; }
.pull-quote .open-quote, .pull-quote .close-quote {
  color: var(--red);
  font-size: 1.4em;
  line-height: 0;
  vertical-align: -0.05em;
}
.about-text {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-3);
  margin: 0 0 var(--space-6);
  max-width: 580px;
}
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
.value {
  padding: var(--space-4) var(--space-4);
  background: var(--cream);
  border-radius: var(--radius);
  border-left: 3px solid var(--green);
}
.value-icon { color: var(--green); display: inline-flex; margin-bottom: 8px; }
.value-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  margin: 0 0 4px;
  color: var(--ink);
}
.value-desc { font-size: 13px; color: var(--gray); margin: 0; line-height: 1.45; }

/* ============================================================
   VISIT
   ============================================================ */
.visit { background: var(--cream); }
.visit-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-bottom: var(--space-7);
}
.visit-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  border: 1px solid var(--rule);
  border-top: 4px solid var(--red);
}
.visit-card:nth-child(2) { border-top-color: var(--green); }
.visit-card:nth-child(3) { border-top-color: var(--gold); }
.visit-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  margin: 0 0 var(--space-3);
  color: var(--ink);
}
.visit-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.visit-list li {
  display: flex; justify-content: space-between;
  font-size: 14px;
  color: var(--ink-3);
  border-bottom: 1px dashed var(--rule);
  padding-bottom: 6px;
}
.visit-list li:last-child { border-bottom: 0; }
.visit-line { font-size: 14px; color: var(--ink-3); margin: 0 0 var(--space-2); line-height: 1.5; }
.visit-line.muted { color: var(--gray-2); }
.visit-line a { color: var(--red); border-bottom: 1px solid transparent; transition: border-color 0.15s; }
.visit-line a:hover { border-color: var(--red); }
.visit-link {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--red);
  margin-top: var(--space-3);
  border-bottom: 1.5px solid var(--red);
  padding-bottom: 3px;
}
.visit-note {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--green);
  margin: var(--space-3) 0 0;
  display: flex; align-items: center; gap: 8px;
}
.visit-note .open-dot { background: var(--green); box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.15); }

.map {
  position: relative;
  height: 380px;
  background: var(--cream-2);
  background-image:
    linear-gradient(45deg, rgba(45, 80, 22, 0.08) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(45, 80, 22, 0.08) 25%, transparent 25%);
  background-size: 24px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--rule);
  overflow: hidden;
}
.map .photo-label { background: var(--white); }
.map-pin {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, calc(-50% - 40px));
  color: var(--red);
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}
.map-pin span {
  background: var(--white);
  padding: 4px 10px;
  border-radius: 99px;
  border: 1px solid var(--rule);
  color: var(--ink);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-9) 0 var(--space-5);
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-7);
  padding-bottom: var(--space-7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-col .footer-tag {
  margin-top: var(--space-4);
  font-size: 14px;
  line-height: 1.5;
  max-width: 320px;
  color: rgba(255, 255, 255, 0.6);
}
.footer-head {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 var(--space-4);
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.15s;
}
.footer-col ul a:hover { color: var(--white); }
.footer-bar {
  display: flex; justify-content: space-between;
  padding-top: var(--space-4);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--font-heading);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

/* ============================================================
   Tweaks: gallery layout variants
   ============================================================ */
[data-gallery="grid"] .gallery-grid { grid-auto-rows: 200px; }
[data-gallery="grid"] .gallery-grid .photo { grid-column: span 2 !important; grid-row: span 1 !important; }
[data-gallery="grid"] .g-1, [data-gallery="grid"] .g-7 { grid-column: span 2 !important; grid-row: span 1 !important; }

[data-decoration="off"] .greca { display: none; }
[data-decoration="off"] .rule::before,
[data-decoration="off"] .rule::after { display: none; }

[data-emphasis="green"] .display em { color: var(--green); }
[data-emphasis="green"] .display em.em-green { color: var(--red); }
[data-emphasis="red"] .display em.em-green { color: var(--red); }

/* ============================================================
   RESPONSIVE DESIGN - MOBILE & TABLET
   ============================================================ */

/* TABLET: 768px - 1024px */
@media (max-width: 1024px) {
  .container { padding: 0 var(--space-5); }

  .nav-row { height: 70px; }
  .brand-line-1 { font-size: 24px; }
  .brand-line-2 { font-size: 11px; }

  .nav-links { gap: var(--space-5); }
  .nav-links a { font-size: 12px; }

  .hero { flex-direction: column; }
  .hero-left { width: 100%; }
  .hero-right { width: 100%; margin-top: var(--space-7); }

  .display { font-size: clamp(40px, 5vw, 60px); }

  .specials-grid { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-5); }
  .footer-col:first-child { grid-column: 1 / -1; }
}

/* MOBILE: up to 768px */
@media (max-width: 768px) {
  :root {
    --container: 100%;
  }

  * { box-sizing: border-box; }
  html, body { font-size: 15px; }

  /* HEADER */
  .site-header { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .nav-row {
    flex-direction: column;
    height: auto;
    padding: var(--space-4) var(--space-4);
    gap: var(--space-3);
    justify-content: flex-start;
  }

  .brand {
    gap: 6px;
    margin-bottom: var(--space-2);
  }
  .brand-text { gap: 2px; }
  .brand-line-1 {
    font-size: 18px;
    letter-spacing: var(--tracking-normal);
  }
  .brand-line-2 {
    font-size: 9px;
    padding: 3px 10px;
  }
  .brand-footer .brand-line-1 { font-size: 14px; }
  .brand-footer .brand-line-2 { font-size: 8px; padding: 2px 8px; }

  .nav-links {
    width: 100%;
    gap: var(--space-3);
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .nav-links a {
    font-size: 12px;
    letter-spacing: var(--tracking-normal);
    padding: var(--space-2) var(--space-3);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-sm);
  }

  .nav-cta {
    width: 100%;
    justify-content: flex-start;
    gap: var(--space-2);
    flex-wrap: wrap;
  }
  .open-label { display: inline; font-size: 12px; }

  /* HERO */
  .hero {
    padding: var(--space-6) 0;
    flex-direction: column;
  }
  .hero-left { width: 100%; }
  .hero-right { width: 100%; margin-top: var(--space-6); }

  .kicker {
    font-size: 10px;
    margin-bottom: var(--space-2);
  }

  .display {
    font-size: clamp(32px, 8vw, 48px);
    line-height: 0.95;
    margin-bottom: var(--space-4);
  }

  .lede {
    font-size: 14px;
    line-height: 1.5;
  }

  .hero-actions {
    flex-wrap: wrap;
    gap: var(--space-3);
  }

  .hero-meta {
    flex-direction: column;
    gap: var(--space-2);
  }
  .hero-meta li { font-size: 12px; }

  .photo { min-height: 220px; }
  .photo-label {
    font-size: 11px;
    padding: var(--space-2);
  }

  .press-tag {
    flex-direction: column;
    gap: var(--space-2);
  }
  .press-quote { font-size: 14px; }
  .press-source { font-size: 12px; }

  /* SECTION */
  .section { padding: var(--space-6) 0; }

  .section-title {
    font-size: clamp(28px, 6vw, 40px);
  }

  .section-header-row {
    flex-direction: column;
    align-items: flex-start;
  }

  /* SPECIALTIES */
  .specials-grid {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }

  .special { flex-direction: column; }
  .special .photo { min-height: 240px; }
  .special-body { padding: var(--space-4) 0 0 0; }

  .numeral { font-size: 28px; }
  .dish-name { font-size: 18px; }
  .dish-desc { font-size: 13px; }
  .price { font-size: 14px; }

  /* MENU */
  .menu-tabs {
    flex-wrap: wrap;
    gap: var(--space-3);
    justify-content: center;
  }
  .tab {
    font-size: 11px;
    padding: var(--space-3) var(--space-4);
  }

  .menu-layout {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .menu-list { column-count: 1; }

  /* GALLERY */
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  [data-gallery="grid"] .gallery-grid { grid-auto-rows: 200px; }
  [data-gallery="grid"] .gallery-grid .photo {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }

  /* FOOTER */
  .site-footer { padding: var(--space-6) 0 var(--space-4); }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-5);
    padding-bottom: var(--space-5);
  }

  .footer-col { width: 100%; }
  .footer-col .footer-tag { font-size: 13px; }

  .footer-head { font-size: 11px; margin-bottom: var(--space-3); }
  .footer-col ul a { font-size: 13px; }

  .footer-bar {
    flex-direction: column;
    gap: var(--space-3);
    font-size: 11px;
    text-align: center;
  }

  /* BUTTONS */
  .btn {
    font-size: 12px;
    padding: var(--space-3) var(--space-4);
    display: inline-block;
    white-space: nowrap;
  }

  .btn-lg {
    font-size: 13px;
    padding: var(--space-3) var(--space-4);
  }

  .btn-sm {
    font-size: 11px;
    padding: var(--space-2) var(--space-3);
  }

  .btn-primary {
    padding: var(--space-3) var(--space-4);
  }

  /* ABOUT SECTION */
  .about-layout {
    grid-template-columns: 1fr;
    gap: var(--space-5);
    align-items: flex-start;
  }

  .pull-quote {
    font-size: clamp(24px, 6vw, 36px);
    margin-bottom: var(--space-4);
  }

  .about-text {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: var(--space-4);
  }

  .values {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }

  .value {
    padding: var(--space-3) var(--space-4);
    font-size: 13px;
  }

  /* UTILITY */
  .rule { width: 40px; }
  .container { max-width: 100%; padding: 0 var(--space-4); }
}

/* SMALL MOBILE: up to 480px */
@media (max-width: 480px) {
  html, body { font-size: 14px; }

  .brand-line-1 { font-size: 16px; }
  .brand-line-2 { font-size: 8px; padding: 2px 8px; }

  .display { font-size: clamp(24px, 7vw, 36px); }
  .lede { font-size: 13px; }

  .btn-primary, .btn-ghost {
    width: 100%;
    padding: var(--space-4) var(--space-5);
  }

  .section-title { font-size: clamp(24px, 5vw, 32px); }

  .numeral { font-size: 24px; }
  .dish-name { font-size: 16px; }
  .dish-desc { font-size: 12px; line-height: 1.4; }

  .menu-tabs { gap: var(--space-2); }
  .tab {
    font-size: 10px;
    padding: var(--space-2) var(--space-3);
  }

  .footer-bar { font-size: 10px; }
}
