/* =========================================================
   Pizzeria del Corso — styles.css
   ========================================================= */

:root {
  --red: #b72d24;
  --red-dark: #7f1d19;
  --tomato: #d74a32;
  --cream: #f5eddf;
  --cream-light: #fffaf2;
  --charcoal: #171716;
  --charcoal-soft: #292825;
  --olive: #63704b;
  --gold: #d4a44f;
  --white: #ffffff;
  --text-dark: #22211f;
  --text-muted: #706c66;
  --shadow: 0 12px 40px rgba(23, 23, 22, 0.12);
  --shadow-soft: 0 6px 20px rgba(23, 23, 22, 0.08);
  --radius: 18px;
  --radius-sm: 12px;
  --header-h: 72px;
  --mobile-bar-h: 86px;
  --transition: 0.28s ease;
  --font-display: "Bebas Neue", "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Manrope", Inter, system-ui, -apple-system, sans-serif;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream-light);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: calc(var(--mobile-bar-h) + env(safe-area-inset-bottom));
}

@media (min-width: 769px) {
  body {
    padding-bottom: 0;
  }
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: var(--cream);
}

.section-dark {
  background: var(--charcoal);
  color: var(--cream-light);
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.section-dark .section-label {
  color: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--charcoal);
}

.section-dark .section-title {
  color: var(--cream-light);
}

.section-text {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 52ch;
}

.section-dark .section-text {
  color: rgba(245, 237, 223, 0.78);
}

.section-head {
  margin-bottom: 2.5rem;
  max-width: 40rem;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 10000;
  background: var(--red);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-weight: 700;
}

.skip-link:focus {
  top: 1rem;
}

/* Focus */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 52px;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform var(--transition), background var(--transition),
    color var(--transition), box-shadow var(--transition), border-color var(--transition);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(183, 45, 36, 0.28);
}

.btn-primary:hover {
  background: var(--red-dark);
}

.btn-secondary {
  background: var(--cream-light);
  color: var(--charcoal);
  border: 1px solid rgba(23, 23, 22, 0.1);
}

.btn-secondary:hover {
  background: var(--white);
  border-color: var(--gold);
}

.btn-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  color: var(--white);
  background: rgba(23, 23, 22, 0.18);
  backdrop-filter: blur(6px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

.btn-gold {
  background: var(--gold);
  color: var(--charcoal);
}

.btn-gold:hover {
  filter: brightness(1.05);
}

.btn-icon svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition),
    backdrop-filter var(--transition);
}

.site-header.scrolled {
  background: rgba(23, 23, 22, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}

.header-inner {
  width: min(100% - 1.25rem, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  z-index: 1002;
}

.logo-link img {
  height: 46px;
  width: auto;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.15rem;
}

.nav-desktop a {
  padding: 0.55rem 0.7rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 250, 242, 0.9);
  border-radius: 999px;
  transition: color var(--transition), background var(--transition);
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 0.2rem;
  gap: 0.1rem;
}

.lang-btn {
  min-width: 40px;
  min-height: 36px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: rgba(255, 250, 242, 0.75);
  transition: background var(--transition), color var(--transition);
}

.lang-btn.active {
  background: var(--red);
  color: var(--white);
}

.header-call {
  display: none;
  min-height: 44px;
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
}

.menu-toggle {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
  z-index: 1002;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  position: relative;
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

.menu-toggle[aria-expanded="true"] span {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

@media (min-width: 980px) {
  .nav-desktop {
    display: flex;
  }

  .header-call {
    display: inline-flex;
  }

  .menu-toggle {
    display: none;
  }
}

/* Mobile nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 1001;
  pointer-events: none;
}

.mobile-nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(23, 23, 22, 0.55);
  opacity: 0;
  transition: opacity var(--transition);
}

.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(88vw, 360px);
  height: 100%;
  background: var(--charcoal);
  color: var(--cream-light);
  padding: 5.5rem 1.5rem 2rem;
  transform: translateX(105%);
  transition: transform var(--transition);
  box-shadow: -20px 0 50px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  overflow-y: auto;
}

.mobile-nav.open {
  pointer-events: auto;
}

.mobile-nav.open .mobile-nav-backdrop {
  opacity: 1;
}

.mobile-nav.open .mobile-nav-panel {
  transform: translateX(0);
}

.mobile-nav a {
  display: block;
  padding: 0.95rem 0.85rem;
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 700;
  color: rgba(255, 250, 242, 0.92);
}

.mobile-nav a:hover,
.mobile-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.mobile-nav-cta {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
  background: var(--charcoal);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(23, 23, 22, 0.55) 0%, rgba(23, 23, 22, 0.25) 35%, rgba(23, 23, 22, 0.82) 100%),
    linear-gradient(90deg, rgba(23, 23, 22, 0.55) 0%, rgba(23, 23, 22, 0.15) 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: calc(var(--header-h) + 2.5rem) 0 3.5rem;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero-kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: 0.02em;
  max-width: 12ch;
  margin-bottom: 1rem;
  text-wrap: balance;
}

.hero-text {
  font-size: clamp(1rem, 2.4vw, 1.15rem);
  max-width: 36ch;
  color: rgba(255, 250, 242, 0.88);
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Quick actions */
.quick-actions {
  margin-top: -2rem;
  position: relative;
  z-index: 5;
  padding-bottom: 1rem;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  background: var(--white);
  border-radius: calc(var(--radius) + 4px);
  padding: 0.9rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(23, 23, 22, 0.05);
}

.quick-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: var(--cream-light);
  border: 1px solid rgba(23, 23, 22, 0.05);
  min-height: 104px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.quick-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(183, 45, 36, 0.18);
}

.quick-card .icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(183, 45, 36, 0.1);
  color: var(--red);
}

.quick-card strong {
  font-size: 0.98rem;
  color: var(--charcoal);
}

.quick-card span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .quick-grid {
    grid-template-columns: repeat(4, 1fr);
    padding: 1rem;
  }
}

/* About */
.about-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.about-visual {
  position: relative;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  min-height: 280px;
  background:
    radial-gradient(circle at 20% 20%, rgba(212, 164, 79, 0.25), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(183, 45, 36, 0.3), transparent 45%),
    linear-gradient(145deg, #292825, #171716);
  box-shadow: var(--shadow);
}

.about-visual img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(255, 250, 242, 0.95);
  color: var(--charcoal);
  padding: 0.75rem 1rem;
  border-radius: 14px;
  font-weight: 800;
  font-size: 0.88rem;
  box-shadow: var(--shadow-soft);
}

.about-points {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.6rem;
}

.about-points li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 700;
  color: var(--charcoal-soft);
}

.about-points li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--olive);
  box-shadow: 0 0 0 5px rgba(99, 112, 75, 0.15);
  flex-shrink: 0;
}

@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
  }
}

/* Specialities */
.cards-grid {
  display: grid;
  gap: 1.1rem;
}

.specialty-card {
  background: var(--white);
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  border: 1px solid rgba(23, 23, 22, 0.06);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.specialty-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.specialty-card .card-media {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--charcoal-soft);
}

.specialty-card .card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.specialty-card:hover .card-media img {
  transform: scale(1.04);
}

.specialty-card .card-body {
  padding: 1.2rem 1.25rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}

.specialty-card h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.03em;
  color: var(--charcoal);
}

.specialty-card p {
  color: var(--text-muted);
  font-size: 0.96rem;
}

@media (min-width: 700px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .cards-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Al taglio */
.taglio-layout {
  display: grid;
  gap: 1.25rem;
}

.taglio-main {
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  min-height: 280px;
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.taglio-main img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.taglio-side {
  display: grid;
  gap: 1.25rem;
}

.taglio-side .photo {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 180px;
  background: var(--charcoal-soft);
  box-shadow: var(--shadow-soft);
}

.taglio-side .photo img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
}

@media (min-width: 900px) {
  .taglio-layout {
    grid-template-columns: 1.4fr 1fr;
    align-items: stretch;
  }

  .taglio-side {
    grid-template-rows: 1fr 1fr;
  }
}

/* Menu */
.menu-note {
  background: rgba(183, 45, 36, 0.08);
  border: 1px solid rgba(183, 45, 36, 0.14);
  color: var(--charcoal-soft);
  border-radius: var(--radius-sm);
  padding: 1rem 1.1rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.menu-grid {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1.75rem;
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border: 1px solid rgba(23, 23, 22, 0.06);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
  box-shadow: var(--shadow-soft);
}

.menu-item .num {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--cream);
  color: var(--red);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.menu-item h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--charcoal);
}

@media (min-width: 700px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .menu-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Gallery */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.4rem;
}

.filter-btn {
  min-height: 44px;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(23, 23, 22, 0.1);
  background: var(--white);
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.88rem;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--charcoal);
  color: var(--cream-light);
  border-color: var(--charcoal);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #24221f;
  cursor: zoom-in;
  border: none;
  padding: 0;
  width: 100%;
}

.gallery-item-media {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  width: 100%;
}

.gallery-item-media img,
.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 450ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.04);
}

.gallery-item.hidden {
  display: none;
}

.gallery-note {
  margin-top: 1.2rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  font-style: italic;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .gallery-item.featured {
    grid-column: span 2;
  }

  .gallery-item.featured .gallery-item-media {
    aspect-ratio: 16 / 10;
    height: 100%;
  }
}

@media (min-width: 1100px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Pizza feature */
.pizza-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: stretch;
  gap: 0;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 30px;
  background: #fff8ed;
  box-shadow: 0 24px 70px rgba(25, 22, 18, 0.14);
}

.pizza-feature-media {
  min-height: 560px;
  overflow: hidden;
  background: #211f1b;
}

.pizza-feature-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 700ms ease;
}

.pizza-feature:hover .pizza-feature-media img {
  transform: scale(1.035);
}

.pizza-feature-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 90px);
}

.pizza-feature-content .section-title {
  margin-bottom: 0.9rem;
}

.pizza-feature-content .section-text {
  margin-bottom: 0.4rem;
}

.pizza-feature-content .btn {
  align-self: flex-start;
}

@media (max-width: 800px) {
  .pizza-feature {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .pizza-feature-media {
    min-height: 380px;
  }

  .pizza-feature-content {
    padding: 34px 24px 42px;
  }

  .pizza-feature-content .btn {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .pizza-feature-media {
    min-height: 300px;
  }

  .pizza-feature-content {
    padding: 30px 20px 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pizza-feature:hover .pizza-feature-media img,
  .gallery-item:hover img {
    transform: none;
  }
}

/* Hours */
.hours-layout {
  display: grid;
  gap: 1.25rem;
}

.hours-status {
  background: var(--charcoal);
  color: var(--cream-light);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.6rem;
  box-shadow: var(--shadow);
  position: relative;
}

.hours-status .status-label {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.hours-status .status-label::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px rgba(212, 164, 79, 0.18);
  flex-shrink: 0;
}

.hours-status .status-value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 0.03em;
  margin-bottom: 0.4rem;
}

.hours-status .status-extra {
  color: rgba(245, 237, 223, 0.75);
  margin-bottom: 1rem;
}

.status-card.is-open .status-value {
  color: #78a85a;
}

.status-card.is-open .status-label {
  color: #78a85a;
}

.status-card.is-open .status-label::before {
  background: #78a85a;
  box-shadow: 0 0 0 4px rgba(120, 168, 90, 0.22);
}

.status-card.is-closed .status-value {
  color: #d13a31;
}

.status-card.is-closed .status-label {
  color: #d13a31;
}

.status-card.is-closed .status-label::before {
  background: #d13a31;
  box-shadow: 0 0 0 4px rgba(209, 58, 49, 0.2);
}

.hours-list {
  background: var(--white);
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(23, 23, 22, 0.06);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1.2rem;
  border-bottom: 1px solid rgba(23, 23, 22, 0.06);
  font-weight: 600;
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row.today {
  background: rgba(183, 45, 36, 0.08);
  color: var(--red-dark);
}

.hours-row .day {
  font-weight: 800;
}

.hours-row .time {
  text-align: right;
  color: var(--text-muted);
}

.hours-row.today .time {
  color: var(--red-dark);
}

.hours-disclaimer {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
}

@media (min-width: 860px) {
  .hours-layout {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: stretch;
  }
}

/* Location / Contact */
.location-card,
.contact-card {
  background: var(--white);
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(23, 23, 22, 0.06);
  box-shadow: var(--shadow-soft);
  padding: 1.6rem;
}

.info-list {
  display: grid;
  gap: 1rem;
  margin: 1.4rem 0 1.6rem;
}

.info-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.info-item .icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--cream);
  color: var(--red);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.info-item strong {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.15rem;
}

.info-item p,
.info-item a {
  font-weight: 700;
  color: var(--charcoal);
}

.info-item a:hover {
  color: var(--red);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.split-2 {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .split-2 {
    grid-template-columns: 1fr 1fr;
  }
}

/* Footer */
.site-footer {
  background: var(--charcoal);
  color: rgba(245, 237, 223, 0.78);
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand img {
  height: 48px;
  width: auto;
  margin-bottom: 0.9rem;
}

.footer-brand p {
  max-width: 32ch;
  font-size: 0.95rem;
}

.footer-links h3,
.footer-contact h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: var(--cream-light);
  margin-bottom: 0.8rem;
}

.footer-links a,
.footer-contact a {
  display: block;
  padding: 0.35rem 0;
  transition: color var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(245, 237, 223, 0.1);
  padding-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  font-size: 0.88rem;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.footer-note {
  font-size: 0.82rem;
  color: rgba(245, 237, 223, 0.55);
  font-style: italic;
}

@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* Mobile bottom bar */
.mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 900;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.35rem;
  padding: 0.65rem 0.75rem calc(0.65rem + env(safe-area-inset-bottom));
  background: rgba(23, 23, 22, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.2);
}

.mobile-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  min-height: 56px;
  border-radius: 14px;
  color: rgba(255, 250, 242, 0.88);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.mobile-bar a svg {
  width: 20px;
  height: 20px;
}

.mobile-bar a.primary {
  background: var(--red);
  color: var(--white);
}

@media (min-width: 769px) {
  .mobile-bar {
    display: none;
  }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10, 10, 9, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lightbox.open {
  display: flex;
}

.lightbox-inner {
  position: relative;
  width: min(100%, 1000px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.lightbox-image-wrap {
  width: 100%;
  max-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  overflow: hidden;
  background: #111;
}

.lightbox-image-wrap img {
  max-width: 100%;
  max-height: 78vh;
  width: auto;
  height: auto;
  object-fit: contain;
}

.lightbox-caption {
  color: rgba(255, 250, 242, 0.85);
  text-align: center;
  font-size: 0.95rem;
  max-width: 50ch;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--white);
  display: grid;
  place-items: center;
  transition: background var(--transition);
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-close {
  top: 0.5rem;
  right: 0.5rem;
  z-index: 3;
}

.lightbox-prev {
  left: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 700px) {
  .lightbox-prev,
  .lightbox-next {
    top: auto;
    bottom: 0.2rem;
    transform: none;
  }

  .lightbox-prev {
    left: calc(50% - 60px);
  }

  .lightbox-next {
    right: calc(50% - 60px);
  }

  .lightbox-caption {
    margin-bottom: 3.5rem;
  }
}

/* Privacy page */
.privacy-page {
  background: var(--cream-light);
}

.privacy-header {
  background: var(--charcoal);
  color: var(--cream-light);
  padding: 1.2rem 0;
}

.privacy-header .header-inner {
  width: min(100% - 2rem, 820px);
}

.privacy-main {
  width: min(100% - 2rem, 820px);
  margin: 0 auto;
  padding: 3rem 0 5rem;
}

.privacy-main h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
}

.privacy-main .updated {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.privacy-main h2 {
  font-size: 1.2rem;
  margin: 1.8rem 0 0.6rem;
  color: var(--charcoal);
}

.privacy-main p,
.privacy-main li {
  color: var(--text-muted);
  margin-bottom: 0.7rem;
}

.privacy-main ul {
  padding-left: 1.2rem;
  list-style: disc;
  margin-bottom: 1rem;
}

/* Utilities */
.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;
}

.text-center {
  text-align: center;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

/* Small screens refinements */
@media (max-width: 380px) {
  .hero-title {
    font-size: 2.35rem;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }
}
