/* ============================================================
   Ajo y Perejil — estilos
   Estética industrial-botánica · paleta del spec
   ============================================================ */

:root {
  /* Superficies */
  --c-dark: #1C1C1C;
  --c-dark-2: #232323;
  --c-light: #F5F2EE;
  --c-surface: #FFFFFF;

  /* Marca */
  --c-terracotta: #D4614A;          /* acento principal (sobre oscuro / botones) */
  --c-terracotta-ink: #B14430;      /* terracota legible sobre claro (AA 4.5:1) */
  --c-terracotta-hover: #C1543E;
  --c-gold: #C8922A;
  --c-green: #4A6741;

  /* Texto */
  --c-ink: #1A1A1A;
  --c-bone: #F0EDE8;
  --c-muted: #5f5a53;               /* AA sobre claro */
  --c-muted-dark: #c4beb4;          /* secundario sobre oscuro */
  --c-line: #e3ddd4;
  --c-line-dark: rgba(255,255,255,.12);

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-script: "Dancing Script", cursive;

  --maxw: 1160px;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 16px 48px rgba(0,0,0,.14);
  --shadow-sm: 0 6px 20px rgba(0,0,0,.07);

  --t-fast: 160ms;
  --t-base: 240ms;
  --ease: cubic-bezier(.22,.61,.36,1);

  /* z-index scale */
  --z-header: 50;
  --z-lightbox: 100;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--c-ink);
  background: var(--c-light);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.14; font-weight: 700; letter-spacing: -.01em; }
a { color: inherit; }
ul { list-style: none; }

.price { font-variant-numeric: tabular-nums; }

/* ---- Utilidades ---- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }
.center { text-align: center; }
.muted { color: var(--c-muted); }
.small { font-size: .9rem; }
.mt-2 { margin-top: 2rem; }

.link { color: var(--c-terracotta-ink); text-decoration: none; font-weight: 600; border-bottom: 1px solid transparent; transition: border-color var(--t-fast); }
.link:hover { border-color: currentColor; }

.eyebrow { text-transform: uppercase; letter-spacing: .2em; font-size: .76rem; font-weight: 700; color: var(--c-terracotta-ink); margin-bottom: .7rem; }
.eyebrow-light { color: var(--c-gold); }

.script { font-family: var(--font-script); color: var(--c-terracotta); font-weight: 700; }

/* ---- Accesibilidad: foco visible + skip link ---- */
:focus-visible { outline: 3px solid var(--c-gold); outline-offset: 2px; border-radius: 4px; }
.skip-link {
  position: absolute; left: 50%; top: -60px; transform: translateX(-50%);
  background: var(--c-terracotta); color: #fff; padding: .6rem 1.2rem;
  border-radius: 0 0 8px 8px; z-index: 200; transition: top var(--t-base);
}
.skip-link:focus { top: 0; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: var(--z-header);
  background: rgba(28,28,28,.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--c-line-dark);
}
.header-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem;
  height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 800;
  color: var(--c-bone); text-decoration: none;
}
.brand-mark { color: var(--c-green); display: inline-flex; }
.brand-mark svg { filter: drop-shadow(0 0 6px rgba(74,103,65,.5)); }
.brand-accent { color: var(--c-terracotta); }

.main-nav { display: flex; align-items: center; gap: 1rem; }
.tablist { display: flex; align-items: center; gap: .15rem; }
.nav-link {
  position: relative; background: none; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: .96rem; font-weight: 500;
  color: var(--c-bone); padding: .55rem .9rem; border-radius: 8px;
  transition: color var(--t-fast), background var(--t-fast);
}
.nav-link:hover { background: rgba(255,255,255,.08); }
.nav-link.is-active { color: var(--c-gold); }
.nav-link.is-active::after {
  content: ""; position: absolute; left: .9rem; right: .9rem; bottom: 2px;
  height: 2px; background: var(--c-gold); border-radius: 2px;
}
.nav-cta {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--c-terracotta); color: #fff;
  padding: .55rem 1.15rem; border-radius: 999px; text-decoration: none;
  font-weight: 600; font-size: .94rem; transition: background var(--t-fast), transform var(--t-fast);
}
.nav-cta:hover { background: var(--c-terracotta-hover); transform: translateY(-1px); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--c-bone); border-radius: 2px; transition: transform var(--t-base), opacity var(--t-fast); }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   VIEWS (pestañas)
   ============================================================ */
.view { display: none; }
.view.is-active { display: block; animation: fade var(--t-base) var(--ease); }
@keyframes fade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 88vh; min-height: 88dvh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(18,18,18,.5) 0%, rgba(18,18,18,.62) 45%, rgba(18,18,18,.82) 100%); }
.hero-content { position: relative; z-index: 2; color: var(--c-bone); padding: 2rem 1.5rem; max-width: 780px; }
.hero-kicker { text-transform: uppercase; letter-spacing: .28em; font-size: .8rem; color: var(--c-gold); font-weight: 600; margin-bottom: 1.1rem; }
.hero-title { font-size: clamp(3rem, 9vw, 5.6rem); font-weight: 800; margin-bottom: 1.1rem; text-shadow: 0 2px 30px rgba(0,0,0,.3); }
.hero-title .script { font-size: 1.12em; line-height: .9; }
.hero-sub { font-size: clamp(1.05rem, 2.3vw, 1.32rem); color: #ece8e1; margin: 0 auto 2.2rem; max-width: 560px; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-hours { display: inline-flex; align-items: center; gap: .55rem; font-size: .92rem; color: var(--c-bone); border: 1px solid rgba(255,255,255,.28); padding: .5rem 1.15rem; border-radius: 999px; backdrop-filter: blur(4px); }
.dot-live { width: 9px; height: 9px; border-radius: 50%; background: #5fbf6a; box-shadow: 0 0 0 0 rgba(95,191,106,.6); animation: pulse 2.2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(95,191,106,.5); } 70% { box-shadow: 0 0 0 8px rgba(95,191,106,0); } 100% { box-shadow: 0 0 0 0 rgba(95,191,106,0); } }
.hero-hours.is-closed .dot-live { background: #e06a5f; animation: none; box-shadow: none; }
.hero-scroll { position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.7); animation: bob 2s infinite; }
@keyframes bob { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,8px); } }
.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; }
.hero-logo-svg { width: min(240px, 68vw); margin: 0 auto 2rem; display: block; }
.hlsvg-ajo { font-family: 'Dancing Script', cursive; font-size: 26px; font-weight: 700; }
.hlsvg-name { font-family: 'Playfair Display', Georgia, serif; font-size: 18px; font-weight: 600; letter-spacing: .04em; }
.hlsvg-tag { font-size: 8px; letter-spacing: 1.8px; font-family: 'Inter', system-ui, sans-serif; font-weight: 600; }

/* ============================================================
   BOTONES
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  cursor: pointer; font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  padding: .82rem 1.7rem; border-radius: 999px; text-decoration: none;
  border: 2px solid transparent; transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast), border-color var(--t-fast);
}
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--c-terracotta); color: #fff; border-color: var(--c-terracotta); }
.btn-primary:hover { background: var(--c-terracotta-hover); border-color: var(--c-terracotta-hover); transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,.06); color: var(--c-bone); border-color: rgba(255,255,255,.55); }
.btn-ghost:hover { background: rgba(255,255,255,.16); }
.btn-outline { background: transparent; color: var(--c-terracotta-ink); border-color: var(--c-terracotta-ink); }
.btn-outline:hover { background: var(--c-terracotta-ink); color: #fff; }
.btn-block { width: 100%; }

/* ============================================================
   RATING STRIP
   ============================================================ */
.rating-strip { background: var(--c-green); color: var(--c-bone); display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: .9rem; padding: 1.05rem 1.5rem; font-size: .98rem; }
.rating-strip strong { color: #fff; }
.rating-item { display: inline-flex; align-items: center; gap: .5rem; }
.stars { display: inline-flex; gap: 1px; color: var(--c-gold); }
.rating-sep { opacity: .45; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section-light { background: var(--c-light); color: var(--c-ink); }
.section-dark { background: var(--c-dark); color: var(--c-bone); }
.section-dark h2, .section-dark h3 { color: var(--c-bone); }
.section h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); margin-bottom: 1rem; }
.section h2.center { margin-bottom: 2.6rem; }

.two-col { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
.col-text h2 { color: var(--c-ink); margin-bottom: 1.2rem; }
.col-text p { margin-bottom: 1rem; color: #4a463f; max-width: 60ch; }
.col-img { margin: 0; }
.col-img img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.facts { display: flex; gap: 2rem; margin-top: 1.9rem; flex-wrap: wrap; }
.fact { display: flex; flex-direction: column; gap: .15rem; }
.fact-num { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--c-terracotta-ink); }
.fact-label { font-size: .8rem; color: var(--c-muted); text-transform: uppercase; letter-spacing: .08em; }

/* ---- Dish cards ---- */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.dish-card { background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 1.7rem 1.4rem; transition: transform var(--t-base) var(--ease), border-color var(--t-base); }
.dish-card:hover { transform: translateY(-5px); border-color: var(--c-terracotta); }
.dish-card h3 { font-size: 1.22rem; margin-bottom: .55rem; }
.dish-card p { color: var(--c-muted-dark); font-size: .92rem; margin-bottom: 1.1rem; }
.dish-card .price { color: var(--c-gold); font-weight: 700; font-size: 1.12rem; }

/* ---- Reviews ---- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 2rem; }
.review { background: var(--c-surface); border-radius: var(--radius); padding: 1.9rem; box-shadow: var(--shadow-sm); border-top: 3px solid var(--c-gold); margin: 0; }
.review-stars { color: var(--c-gold); margin-bottom: .85rem; letter-spacing: .12em; }
.review blockquote { font-style: italic; color: var(--c-ink); margin-bottom: 1.1rem; }
.review figcaption { color: var(--c-muted); font-weight: 600; font-size: .9rem; }

/* ---- Carrusel de galería ---- */
.carousel { max-width: 920px; margin: 0 auto; border-radius: var(--radius); }
.carousel:focus-visible { outline: 3px solid var(--c-gold); outline-offset: 6px; }
.carousel-stage { position: relative; height: min(66vh, 540px); border-radius: var(--radius); overflow: hidden; background: #0d0d0d; box-shadow: var(--shadow); }
.carousel-track { display: flex; height: 100%; transition: transform var(--t-base) var(--ease); }
.carousel-slide { position: relative; flex: 0 0 100%; min-width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.slide-bg { position: absolute; inset: -8%; background-size: cover; background-position: center; filter: blur(32px) brightness(.45); transform: scale(1.15); }
.slide-img { position: relative; max-width: 90%; max-height: 90%; object-fit: contain; border-radius: 8px; box-shadow: 0 16px 50px rgba(0,0,0,.6); }

.carousel-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 5; width: 54px; height: 54px; border-radius: 50%; background: rgba(20,20,20,.5); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,.25); color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background var(--t-fast), transform var(--t-fast); }
.carousel-arrow:hover { background: var(--c-terracotta); transform: translateY(-50%) scale(1.08); }
.carousel-arrow:active { transform: translateY(-50%) scale(.96); }
.carousel-prev { left: 16px; }
.carousel-next { right: 16px; }

.carousel-counter { position: absolute; top: 14px; right: 16px; z-index: 4; background: rgba(20,20,20,.55); color: #fff; padding: .25rem .7rem; border-radius: 999px; font-size: .82rem; font-variant-numeric: tabular-nums; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.carousel-caption { position: absolute; left: 0; right: 0; bottom: 0; z-index: 4; margin: 0; padding: 2.6rem 1.2rem 1.1rem; background: linear-gradient(transparent, rgba(0,0,0,.82)); color: #fff; font-family: var(--font-display); font-size: 1.3rem; text-align: center; pointer-events: none; }

.carousel-dots { display: flex; justify-content: center; flex-wrap: wrap; gap: .55rem; margin-top: 1.3rem; }
.carousel-dot { width: 9px; height: 9px; padding: 0; border: none; border-radius: 50%; background: rgba(255,255,255,.28); cursor: pointer; transition: background var(--t-fast), transform var(--t-fast); }
.carousel-dot:hover { background: rgba(255,255,255,.55); }
.carousel-dot.is-active { background: var(--c-gold); transform: scale(1.3); }

/* ---- Locales teaser ---- */
.locales-teaser { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.locale-mini { position: relative; background: var(--c-surface); border-radius: var(--radius); padding: 2.2rem 2rem; box-shadow: var(--shadow-sm); text-align: center; border: 1px solid var(--c-line); transition: transform var(--t-base) var(--ease), box-shadow var(--t-base); }
.locale-mini:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.locale-badge { display: inline-block; background: var(--c-terracotta-ink); color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .25rem .7rem; border-radius: 999px; margin-bottom: .9rem; }
.locale-badge-2 { background: var(--c-green); }
.locale-mini h3 { color: var(--c-ink); margin-bottom: .6rem; font-size: 1.35rem; }
.locale-mini p { margin-bottom: .35rem; }
.locale-tags { font-size: .92rem; color: var(--c-muted); }
.locale-mini .btn { margin-top: 1.2rem; }

/* ============================================================
   PAGE HEAD (carta / locales)
   ============================================================ */
.page-head { background: var(--c-dark); color: var(--c-bone); padding: clamp(3rem, 7vw, 4.5rem) 0 clamp(2.5rem, 5vw, 3.5rem); text-align: center; border-bottom: 1px solid var(--c-line-dark); }
.local-head { background: linear-gradient(135deg, var(--c-dark-2), var(--c-dark)); }
.local-head-2 { background: linear-gradient(135deg, #2a3327, var(--c-dark)); }
.page-title { font-size: clamp(2.3rem, 6vw, 4rem); margin-bottom: .8rem; }
.page-lead { color: var(--c-muted-dark); font-size: 1.1rem; max-width: 60ch; margin: 0 auto; }

/* ============================================================
   CARTA
   ============================================================ */
.menu-wrap { max-width: 820px; }
.menu-group { margin-bottom: 3rem; }
.menu-group:last-of-type { margin-bottom: 1.5rem; }
.menu-cat { font-size: clamp(1.5rem, 3vw, 1.9rem); color: var(--c-green); border-bottom: 2px solid var(--c-line); padding-bottom: .55rem; margin-bottom: 1.2rem; }
.cat-note { font-family: var(--font-body); font-size: .92rem; font-weight: 500; color: var(--c-muted); }
.menu-subcat { font-family: var(--font-body); font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--c-terracotta-ink); margin: 1.6rem 0 .9rem; }
.menu-subcat:first-of-type { margin-top: .5rem; }
.menu-list li { margin-bottom: 1.1rem; }
.mi-head { display: flex; align-items: baseline; gap: .5rem; }
.mi-head .dish { font-weight: 600; font-size: 1.06rem; color: var(--c-ink); }
.mi-head .dots { flex: 1; border-bottom: 1px dotted #bdb6a8; transform: translateY(-4px); min-width: 1.5rem; }
.mi-head .price { font-weight: 700; color: var(--c-terracotta-ink); white-space: nowrap; }
.menu-list .desc { display: block; color: var(--c-muted); font-size: .92rem; margin-top: .15rem; max-width: 60ch; }

.menu-note { background: var(--c-surface); border-left: 4px solid var(--c-gold); border-radius: var(--radius-sm); padding: 1.4rem 1.6rem; box-shadow: var(--shadow-sm); }
.menu-note p { margin-bottom: .4rem; }
.menu-note p:last-child { margin-bottom: 0; }

/* ============================================================
   LOCAL DETAIL
   ============================================================ */
.local-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 3rem); align-items: start; }
.local-info h2 { color: var(--c-ink); margin-bottom: 1.4rem; }
.info-list { margin-bottom: 1.8rem; }
.info-list li { display: flex; gap: .85rem; padding: .7rem 0; border-bottom: 1px solid var(--c-line); align-items: flex-start; }
.info-list .ico { flex-shrink: 0; width: 22px; height: 22px; color: var(--c-terracotta-ink); margin-top: .15rem; }
.info-list .ico svg { width: 22px; height: 22px; }
/* Etiqueta Abierto / Cerrado (tiempo real) */
.status-pill { display: inline-flex; align-items: center; gap: .45rem; font-size: .92rem; font-weight: 600; padding: .15rem .2rem; border-radius: 8px; color: var(--c-muted); }
.status-pill::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: currentColor; flex-shrink: 0; }
.status-pill.is-open { color: #2e7d33; }
.status-pill.is-closed { color: #c0392b; }

/* Tabla de horario semanal */
.hours { margin: 1.8rem 0; }
.hours-title { color: var(--c-ink); font-size: 1.3rem; margin-bottom: .9rem; }
.hours-list { border-top: 1px solid var(--c-line); }
.hours-list li { display: flex; justify-content: space-between; gap: 1rem; padding: .55rem .2rem; border-bottom: 1px solid var(--c-line); font-size: .96rem; }
.hours-list li span:first-child { color: var(--c-muted); }
.hours-list li span:last-child { font-variant-numeric: tabular-nums; color: var(--c-ink); }
.hours-list li.is-today { background: rgba(200,146,42,.1); border-radius: 6px; font-weight: 700; }
.hours-list li.is-today span:first-child { color: var(--c-ink); }
.hours-list li.is-today span:last-child { color: var(--c-terracotta-ink); }

.local-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.rating-inline { margin-top: 1.3rem; color: var(--c-muted); font-size: .95rem; }
.stars-sm { color: var(--c-gold); letter-spacing: .08em; }
.local-map iframe { width: 100%; height: 430px; border: 0; border-radius: var(--radius); box-shadow: var(--shadow); }

/* ============================================================
   CONTACTO — bloque de llamada por teléfono
   ============================================================ */
.contact-cta { max-width: 640px; text-align: center; }
.contact-cta .eyebrow { display: inline-block; }
.contact-cta h2 { color: var(--c-bone); margin-bottom: .8rem; }
.contact-cta > .muted { color: var(--c-muted-dark); margin: 0 auto 2rem; max-width: 48ch; }

.phone-btn {
  display: inline-flex; align-items: center; gap: 1rem;
  background: var(--c-terracotta); color: #fff; text-decoration: none;
  padding: 1.05rem 2rem; border-radius: 999px;
  box-shadow: 0 14px 36px rgba(212,97,74,.35);
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}
.phone-btn:hover { background: var(--c-terracotta-hover); transform: translateY(-2px); box-shadow: 0 18px 44px rgba(212,97,74,.45); }
.phone-btn:active { transform: scale(.98); }
.phone-btn-ico { display: inline-flex; width: 30px; height: 30px; }
.phone-btn-ico svg { width: 30px; height: 30px; }
.phone-btn-text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.15; }
.phone-btn-label { font-size: .82rem; font-weight: 500; opacity: .9; text-transform: uppercase; letter-spacing: .08em; }
.phone-btn-num { font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; font-variant-numeric: tabular-nums; }
.contact-cta .small { margin-top: 1.3rem; color: var(--c-muted-dark); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #161616; color: var(--c-bone); padding: 3.5rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; }
.footer-brand .brand { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; display: inline-block; margin-bottom: .6rem; color: var(--c-bone); }
.footer-col h4 { color: var(--c-gold); font-size: .92rem; margin-bottom: .7rem; font-family: var(--font-body); text-transform: uppercase; letter-spacing: .08em; }
.footer-col p, .footer-brand p { color: var(--c-muted-dark); }
.footer-bottom { text-align: center; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--c-line-dark); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: absolute; top: 70px; left: 0; right: 0;
    background: rgba(28,28,28,.99); flex-direction: column; align-items: stretch;
    padding: 1rem; gap: .3rem; border-bottom: 1px solid var(--c-line-dark);
    transform: translateY(-130%); transition: transform var(--t-base) var(--ease);
    box-shadow: var(--shadow);
  }
  .main-nav.is-open { transform: translateY(0); }
  .tablist { flex-direction: column; align-items: stretch; gap: .2rem; }
  .nav-link { text-align: left; padding: .85rem 1rem; }
  .nav-link.is-active::after { left: 1rem; right: auto; width: 20px; bottom: .55rem; }
  .nav-cta { margin-top: .5rem; justify-content: center; }

  .two-col, .local-grid { grid-template-columns: 1fr; }
  .reviews, .locales-teaser { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .col-img { order: -1; }
  .carousel-stage { height: min(56vh, 440px); }
  .carousel-arrow { width: 46px; height: 46px; }
  .carousel-prev { left: 8px; }
  .carousel-next { right: 8px; }
  .carousel-caption { font-size: 1.1rem; padding: 2rem 1rem 1rem; }
}
@media (max-width: 480px) {
  .cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: 80vh; min-height: 80dvh; }
  .rating-strip { font-size: .9rem; }
  .local-actions .btn, .hero-actions .btn { flex: 1; }
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .view.is-active { animation: none; }
}
