/* =========================================================
   Il Palazzo del Gusto — Ristorante e Pizzeria, Nichelino
   ========================================================= */

@font-face {
  font-family: 'Inter';
  src: url('fonts/inter-variable.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('fonts/playfair-variable.woff2') format('woff2');
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('fonts/playfair-italic-variable.woff2') format('woff2');
  font-weight: 400 900;
  font-style: italic;
  font-display: swap;
}

:root {
  /* Palette — nero caldo, oro, verde acqua (identità mare) */
  --ink: #1a1613;
  --ink-soft: #2b2420;
  --cream: #faf6ee;
  --cream-deep: #f1e9d8;
  --white: #ffffff;
  --gold: #ad8a3f;
  --gold-deep: #8a6c2c;
  --gold-light: #d9bd7c;
  --teal: #0f3b3a;
  --teal-light: #e3ede9;
  --text: #241f1b;
  --text-muted: #675e54;
  --text-on-dark: #f4ede0;
  --text-on-dark-muted: #c9bda9;
  --border: #e5d9c1;
  --border-dark: #3c332a;

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1180px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;

  --shadow-sm: 0 2px 10px rgba(26, 22, 19, 0.08);
  --shadow-md: 0 12px 32px rgba(26, 22, 19, 0.14);
  --shadow-lg: 0 24px 60px rgba(26, 22, 19, 0.22);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast: 200ms;
  --dur-med: 400ms;
  --dur-slow: 650ms;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select { font: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .container { padding: 0 40px; }
}

section { position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: var(--gold);
}

.section-head {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 16px;
}
.section-head p {
  color: var(--text-muted);
  font-size: 17px;
}
.section-head.align-left { margin-left: 0; text-align: left; }

.section-pad { padding: 96px 0; }
@media (max-width: 640px) {
  .section-pad { padding: 64px 0; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--gold-deep); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost {
  background: transparent;
  color: var(--text-on-dark);
  border: 1.5px solid rgba(244, 237, 224, 0.45);
}
.btn-ghost:hover { background: rgba(244, 237, 224, 0.12); border-color: var(--text-on-dark); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--cream); transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn-sm { padding: 11px 20px; font-size: 14px; }

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 22px 0;
  transition: background var(--dur-med) var(--ease), padding var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease), backdrop-filter var(--dur-med) var(--ease);
}
.header .container { display: flex; align-items: center; justify-content: space-between; }
.header.is-scrolled {
  background: rgba(26, 22, 19, 0.92);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-family: var(--font-display);
  color: var(--text-on-dark);
}
.logo .l1 { font-size: 21px; font-weight: 700; letter-spacing: 0.01em; }
.logo .l2 {
  font-size: 12px;
  font-weight: 500;
  font-style: italic;
  color: var(--gold-light);
  letter-spacing: 0.04em;
  margin-top: 3px;
}

.nav-desktop { display: none; }
@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 34px;
  }
  .nav-desktop a {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--text-on-dark-muted);
    position: relative;
    padding: 4px 0;
    transition: color var(--dur-fast) var(--ease);
  }
  .nav-desktop a::after {
    content: '';
    position: absolute;
    left: 0; bottom: -2px;
    width: 0%;
    height: 1.5px;
    background: var(--gold);
    transition: width var(--dur-med) var(--ease);
  }
  .nav-desktop a:hover { color: var(--text-on-dark); }
  .nav-desktop a:hover::after { width: 100%; }
}

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-call {
  display: none;
  align-items: center;
  gap: 8px;
  color: var(--text-on-dark);
  font-size: 14.5px;
  font-weight: 600;
}
.header-call svg { width: 17px; height: 17px; color: var(--gold-light); }
@media (min-width: 1024px) { .header-call { display: flex; } }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text-on-dark);
  border-radius: 2px;
  transition: transform var(--dur-fast) var(--ease), opacity var(--dur-fast) var(--ease);
}
.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); }

.nav-mobile {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 850;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity var(--dur-med) var(--ease), transform var(--dur-med) var(--ease), visibility var(--dur-med);
}
.nav-mobile.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-mobile a {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--text-on-dark);
}
.nav-mobile .btn { margin-top: 12px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}
.hero-media { position: absolute; inset: 0; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06);
  animation: heroZoom 16s var(--ease) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,12,10,0.55) 0%, rgba(15,12,10,0.35) 40%, rgba(15,12,10,0.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 140px 0 90px;
  text-align: center;
}
.hero-content .eyebrow { color: var(--gold-light); justify-content: center; }
.hero-content .eyebrow::before { display: none; }
.hero-content h1 {
  color: var(--white);
  font-size: clamp(38px, 7vw, 76px);
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-content p.lead {
  color: var(--text-on-dark-muted);
  font-size: clamp(16px, 2vw, 19px);
  max-width: 560px;
  margin: 0 auto 40px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.hero-meta {
  margin-top: 56px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-meta div { text-align: center; }
.hero-meta .num {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--gold-light);
  font-weight: 700;
}
.hero-meta .lbl {
  font-size: 12.5px;
  color: var(--text-on-dark-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px;
  height: 42px;
  border: 1.5px solid rgba(244,237,224,0.55);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.scroll-cue span {
  width: 4px; height: 4px;
  background: var(--gold-light);
  border-radius: 50%;
  animation: scrollCue 1.8s ease-in-out infinite;
}
@keyframes scrollCue {
  0% { opacity: 0; transform: translateY(0); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translateY(14px); }
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
}
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 80ms; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 160ms; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 240ms; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 320ms; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 400ms; }

/* ---------- Chi siamo ---------- */
.about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 0.9fr 1.1fr; gap: 64px; }
}
.about-media { position: relative; }
.about-media .frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.about-media .frame img { width: 100%; height: 100%; object-fit: cover; }
.about-media .badge {
  position: absolute;
  bottom: -26px; right: -18px;
  background: var(--ink);
  color: var(--text-on-dark);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
  border: 1px solid var(--border-dark);
}
.about-media .badge .num { font-family: var(--font-display); font-size: 26px; color: var(--gold-light); font-weight: 700; }
.about-media .badge .lbl { font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.07em; color: var(--text-on-dark-muted); margin-top: 2px; }

.about-body h2 { font-size: clamp(28px, 3.6vw, 40px); margin-bottom: 20px; }
.about-body p { color: var(--text-muted); margin-bottom: 18px; font-size: 16.5px; }
.about-list { margin-top: 28px; display: grid; gap: 14px; }
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
}
.about-list svg { width: 20px; height: 20px; color: var(--gold-deep); flex-shrink: 0; margin-top: 2px; }

/* ---------- Servizi ---------- */
.services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  transition: transform var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease), border-color var(--dur-med) var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
}
.service-card .icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: var(--ink);
  color: var(--gold-light);
  border-radius: 50%;
  margin-bottom: 22px;
}
.service-card .icon svg { width: 24px; height: 24px; }
.service-card h3 { font-size: 20px; margin-bottom: 10px; }
.service-card p { color: var(--text-muted); font-size: 15px; }

/* ---------- Menu ---------- */
.menu-section { background: var(--ink); color: var(--text-on-dark); }
.menu-section .section-head h2 { color: var(--text-on-dark); }
.menu-section .section-head p { color: var(--text-on-dark-muted); }
.menu-section .eyebrow { color: var(--gold-light); }

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 48px;
}
.menu-tab {
  padding: 11px 22px;
  border-radius: 999px;
  border: 1px solid rgba(244,237,224,0.25);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-on-dark-muted);
  transition: all var(--dur-fast) var(--ease);
}
.menu-tab:hover { border-color: var(--gold-light); color: var(--text-on-dark); }
.menu-tab.is-active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.menu-panel { display: none; }
.menu-panel.is-active { display: block; animation: fadeIn var(--dur-med) var(--ease); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.menu-group { margin-bottom: 40px; }
.menu-group:last-child { margin-bottom: 0; }
.menu-group-title {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-light);
  font-size: 19px;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(244,237,224,0.16);
}
.menu-items { display: grid; grid-template-columns: 1fr; gap: 20px 40px; }
@media (min-width: 760px) { .menu-items { grid-template-columns: 1fr 1fr; } }

.menu-item { display: flex; flex-direction: column; }
.menu-item-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.menu-item-row .dots {
  flex: 1;
  border-bottom: 1px dotted rgba(244,237,224,0.28);
  margin-bottom: 5px;
  min-width: 12px;
}
.menu-item-name { font-size: 16px; font-weight: 600; color: var(--text-on-dark); }
.menu-item-price { font-family: var(--font-display); font-weight: 700; color: var(--gold-light); font-size: 16px; white-space: nowrap; }
.menu-item-desc { font-size: 13.5px; color: var(--text-on-dark-muted); margin-top: 4px; font-style: italic; }

.menu-note {
  margin-top: 48px;
  text-align: center;
  font-size: 13px;
  color: var(--text-on-dark-muted);
}
.menu-cta { text-align: center; margin-top: 44px; }

/* ---------- Galleria ---------- */
.gallery { background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  aspect-ratio: 1/1;
}
.gallery-item:nth-child(3n+1) { aspect-ratio: 1/1; }
@media (min-width: 640px) {
  .gallery-item.tall { grid-row: span 2; aspect-ratio: 1/2.05; }
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(15,12,10,0.6) 100%);
  opacity: 0;
  transition: opacity var(--dur-med) var(--ease);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item .zoom-ic {
  position: absolute;
  right: 14px; bottom: 14px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(250,246,238,0.92);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: all var(--dur-med) var(--ease);
}
.gallery-item:hover .zoom-ic { opacity: 1; transform: scale(1); }
.gallery-item .zoom-ic svg { width: 16px; height: 16px; }

.lightbox {
  position: fixed; inset: 0;
  z-index: 1000;
  background: rgba(15,12,10,0.94);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; visibility: hidden;
  transition: opacity var(--dur-med) var(--ease), visibility var(--dur-med);
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(90vw, 1000px); max-height: 84vh; border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  color: var(--text-on-dark);
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(244,237,224,0.1);
  transition: background var(--dur-fast) var(--ease);
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(244,237,224,0.22); }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-close svg, .lightbox-prev svg, .lightbox-next svg { width: 20px; height: 20px; }
.lightbox-caption {
  position: absolute;
  bottom: 24px; left: 0; right: 0;
  text-align: center;
  color: var(--text-on-dark-muted);
  font-size: 14px;
}

/* ---------- Recensioni ---------- */
.reviews { background: var(--white); }
.rating-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
  background: var(--teal-light);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  margin-bottom: 52px;
}
.rating-summary .score {
  text-align: center;
}
.rating-summary .score .big { font-family: var(--font-display); font-size: 52px; font-weight: 700; color: var(--teal); line-height: 1; }
.rating-summary .score .stars { color: var(--gold); margin: 8px 0 6px; }
.rating-summary .score .stars svg { width: 18px; height: 18px; display: inline-block; }
.rating-summary .score .cnt { font-size: 13.5px; color: var(--text-muted); }
.rating-summary .divider { width: 1px; height: 60px; background: rgba(15,59,58,0.18); }
.rating-summary .breakdown { display: flex; gap: 32px; flex-wrap: wrap; }
.rating-summary .breakdown div { text-align: center; }
.rating-summary .breakdown .num { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--teal); }
.rating-summary .breakdown .lbl { font-size: 12.5px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; }
.rating-summary .source { font-size: 13px; color: var(--text-muted); }
.rating-summary .source a { color: var(--teal); font-weight: 600; border-bottom: 1px solid currentColor; }

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 700px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }

.review-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.review-card .stars { color: var(--gold); margin-bottom: 14px; display: flex; gap: 3px; }
.review-card .stars svg { width: 15px; height: 15px; }
.review-card p.quote { font-size: 15px; color: var(--text); flex: 1; margin-bottom: 18px; }
.review-card .who { display: flex; align-items: center; justify-content: space-between; }
.review-card .who .name { font-weight: 700; font-size: 14.5px; }
.review-card .who .via { font-size: 12px; color: var(--text-muted); }

.reviews-cta { text-align: center; margin-top: 48px; }

/* ---------- Dove siamo ---------- */
.location { background: var(--teal); color: var(--text-on-dark); }
.location .eyebrow { color: var(--gold-light); }
.location .section-head h2 { color: var(--text-on-dark); }
.location .section-head p { color: var(--text-on-dark-muted); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 900px) { .location-grid { grid-template-columns: 0.85fr 1.15fr; } }

.location-card {
  background: rgba(250,246,238,0.06);
  border: 1px solid rgba(250,246,238,0.14);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.location-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(250,246,238,0.12);
}
.location-row:first-child { padding-top: 0; }
.location-row:last-of-type { border-bottom: none; }
.location-row .ic {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(173,138,63,0.18);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.location-row .ic svg { width: 19px; height: 19px; }
.location-row h4 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-on-dark-muted); margin-bottom: 6px; font-family: var(--font-body); font-weight: 600; }
.location-row p, .location-row a { font-size: 15.5px; color: var(--text-on-dark); }
.location-row a:hover { color: var(--gold-light); }
.hours-table { width: 100%; font-size: 15px; }
.hours-table td { padding: 3px 0; color: var(--text-on-dark); }
.hours-table td:last-child { text-align: right; color: var(--text-on-dark-muted); }

.location-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.social-row { display: flex; gap: 12px; margin-top: 24px; }
.social-row a {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(250,246,238,0.25);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--dur-fast) var(--ease);
}
.social-row a:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.social-row svg { width: 18px; height: 18px; }

.map-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
  background: var(--ink-soft);
  border: 1px solid rgba(250,246,238,0.14);
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 420px; border: 0; position: absolute; inset: 0; }
.map-gate {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 32px;
  gap: 14px;
  background: linear-gradient(160deg, rgba(15,59,58,0.9), rgba(26,22,19,0.94));
}
.map-gate svg { width: 34px; height: 34px; color: var(--gold-light); }
.map-gate p { max-width: 340px; font-size: 14px; color: var(--text-on-dark-muted); }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  left: 20px; right: 20px; bottom: 20px;
  max-width: 560px;
  margin: 0 auto;
  background: var(--ink);
  color: var(--text-on-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  z-index: 1100;
  transform: translateY(140%);
  transition: transform var(--dur-slow) var(--ease);
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner p { font-size: 13.5px; color: var(--text-on-dark-muted); margin-bottom: 16px; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer { background: var(--ink-soft); color: var(--text-on-dark-muted); padding: 64px 0 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(250,246,238,0.1);
}
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; } }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 14.5px; max-width: 320px; }
.footer h5 { font-family: var(--font-body); font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-on-dark); margin-bottom: 18px; }
.footer ul { display: grid; gap: 11px; }
.footer a, .footer li { font-size: 14.5px; }
.footer a:hover { color: var(--gold-light); }
.footer-bottom {
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 13px;
}

/* ---------- Floating call button (mobile) ---------- */
.fab-call {
  position: fixed;
  right: 18px; bottom: 18px;
  z-index: 800;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  transition: transform var(--dur-fast) var(--ease);
}
.fab-call svg { width: 24px; height: 24px; }
.fab-call:hover { transform: scale(1.08); }
@media (min-width: 1024px) { .fab-call { display: none; } }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .hero-media img { animation: none; transform: scale(1); }
}

/* ---------- Focus visibility ---------- */
a:focus-visible, button:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
