/* ==========================================================================
   MUTTO'S PIZZA — BISTRO & PIZZERÍA (EST. 1992)
   Design System & Editorial Stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* --- Root & Theme Variables --- */
:root {
  /* Brand Core */
  --brand-red: #B92B27;
  --brand-red-hover: #9E1F1C;
  --brand-red-glow: rgba(185, 43, 39, 0.28);
  --brand-gold: #C69255;
  --brand-gold-light: #E8BF87;
  --brand-gold-glow: rgba(198, 146, 85, 0.25);
  --brand-green: #2D6A4F;
  --brand-green-light: #E8F5EE;
  --brand-charcoal: #121214;

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.2s var(--ease-out);
  --transition-normal: 0.35s var(--ease-out);
  --transition-slow: 0.6s var(--ease-out);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 9999px;

  /* LIGHT THEME (Default) */
  --bg-body: #FAF8F5;
  --bg-surface: #FFFFFF;
  --bg-subtle: #F3EFEA;
  --bg-card: #FFFFFF;
  --bg-card-hover: #FDFBF8;
  --bg-glass: rgba(250, 248, 245, 0.88);
  --bg-glass-card: rgba(255, 255, 255, 0.85);

  --text-primary: #1A1A1E;
  --text-secondary: #52525B;
  --text-muted: #71717A;
  --text-inverse: #FFFFFF;

  --border-light: rgba(0, 0, 0, 0.08);
  --border-medium: rgba(0, 0, 0, 0.14);
  --border-focus: var(--brand-red);

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(26, 26, 30, 0.08);
  --shadow-lg: 0 16px 40px rgba(26, 26, 30, 0.12);
  --shadow-glow: 0 10px 30px var(--brand-red-glow);

  --logo-filter: none;
  --card-border-glow: rgba(185, 43, 39, 0.12);
}

/* DARK THEME */
[data-theme="dark"] {
  --bg-body: #0E0E10;
  --bg-surface: #151518;
  --bg-subtle: #1C1C21;
  --bg-card: #18181D;
  --bg-card-hover: #222228;
  --bg-glass: rgba(14, 14, 16, 0.88);
  --bg-glass-card: rgba(24, 24, 29, 0.85);

  --text-primary: #F4F4F5;
  --text-secondary: #A1A1AA;
  --text-muted: #71717A;
  --text-inverse: #0E0E10;

  --border-light: rgba(255, 255, 255, 0.08);
  --border-medium: rgba(255, 255, 255, 0.16);
  --border-focus: var(--brand-gold-light);

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.8);
  --shadow-glow: 0 10px 35px rgba(229, 90, 80, 0.25);

  --logo-filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
  --card-border-glow: rgba(198, 146, 85, 0.2);
}

/* --- Global Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-body);
  color: var(--text-primary);
  line-height: 1.65;
  transition: background-color var(--transition-normal), color var(--transition-normal);
  overflow-x: hidden;
  position: relative;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  outline: none;
  border: none;
}

/* --- Container & Layout Helpers --- */
.container {
  width: 90%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.section-spacing {
  padding-top: clamp(4.5rem, 8vw, 8rem);
  padding-bottom: clamp(4.5rem, 8vw, 8rem);
}

.grid {
  display: grid;
  gap: 2rem;
}

/* --- Typography & Badges --- */
h1, h2, h3, h4, .font-serif {
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--brand-red);
  margin-bottom: 0.85rem;
}

[data-theme="dark"] .eyebrow {
  color: var(--brand-gold-light);
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 2px;
  background: currentColor;
}

.section-title {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.section-subtitle {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 680px;
  margin-bottom: 3rem;
  font-weight: 400;
}

.text-center {
  text-align: center;
}
.text-center .eyebrow::before {
  display: none;
}
.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* --- Top Announcement Bar --- */
.top-announcement {
  background: var(--brand-charcoal);
  color: #EDE8E3;
  font-size: 0.8125rem;
  padding: 0.55rem 1rem;
  text-align: center;
  position: relative;
  z-index: 60;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-announcement a {
  color: var(--brand-gold-light);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-left: 0.5rem;
}

/* --- Header & Navigation --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background-color: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  transition: height var(--transition-fast);
}

.site-header.scrolled .header-inner {
  height: 68px;
}

.brand-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo-img {
  height: 52px;
  width: auto;
  filter: var(--logo-filter);
  transition: transform var(--transition-fast), filter var(--transition-fast);
}

.brand-logo-wrap:hover .brand-logo-img {
  transform: scale(1.03);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 0.35rem 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--brand-red);
  transition: width var(--transition-normal);
}

[data-theme="dark"] .nav-link::after {
  background-color: var(--brand-gold);
}

.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

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

/* Theme Switcher Toggle */
.theme-toggle-btn {
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-primary);
  transition: background-color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.theme-toggle-btn:hover {
  transform: rotate(15deg);
  background-color: var(--bg-card-hover);
  border-color: var(--border-medium);
}

.theme-icon-sun {
  display: none;
}
.theme-icon-moon {
  display: block;
}

[data-theme="dark"] .theme-icon-sun {
  display: block;
}
[data-theme="dark"] .theme-icon-moon {
  display: none;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: var(--text-primary);
  align-items: center;
  justify-content: center;
}

/* Mobile Navigation Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 360px;
  height: 100vh;
  background: var(--bg-surface);
  box-shadow: var(--shadow-lg);
  z-index: 100;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right var(--transition-normal);
}

.mobile-nav-drawer.open {
  right: 0;
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 99;
  display: none;
}

.mobile-nav-overlay.open {
  display: block;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.mobile-nav-links .nav-link {
  font-size: 1.15rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.65rem;
  border-radius: var(--radius-pill);
  font-size: 0.925rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--brand-red);
  color: #FFFFFF !important;
  box-shadow: 0 4px 16px var(--brand-red-glow);
}

.btn-primary:hover {
  background-color: var(--brand-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--brand-red-glow);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-medium);
}

.btn-outline:hover {
  background-color: var(--bg-subtle);
  border-color: var(--text-primary);
  transform: translateY(-2px);
}

.btn-gold {
  background-color: var(--brand-gold);
  color: #121214 !important;
  box-shadow: 0 4px 16px var(--brand-gold-glow);
}

.btn-gold:hover {
  background-color: var(--brand-gold-light);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1.15rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 0.95rem 2.25rem;
  font-size: 1.05rem;
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  padding: clamp(3rem, 6vw, 6rem) 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0.95rem;
  border-radius: var(--radius-pill);
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.hero-tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 10px #10B981;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
}

.hero-title {
  font-size: clamp(2.5rem, 4.5vw + 0.5rem, 4.75rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.hero-title em {
  font-style: italic;
  color: var(--brand-red);
  position: relative;
}

[data-theme="dark"] .hero-title em {
  color: var(--brand-gold-light);
}

.hero-description {
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 580px;
  margin-bottom: 2.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  border-top: 1px solid var(--border-light);
  padding-top: 1.75rem;
}

.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.hero-badge-icon {
  width: 20px;
  height: 20px;
  color: var(--brand-red);
}

[data-theme="dark"] .hero-badge-icon {
  color: var(--brand-gold);
}

/* Hero Media Display */
.hero-visual-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-glow-backdrop {
  position: absolute;
  width: 100%;
  height: 100%;
  max-width: 480px;
  max-height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--brand-red-glow) 0%, transparent 70%);
  filter: blur(45px);
  z-index: 1;
  pointer-events: none;
}

.hero-pizza-main {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 480px;
  filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.25));
  animation: float-gentle 6s ease-in-out infinite;
  transform-origin: center center;
}

@keyframes float-gentle {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(1.5deg); }
}

.hero-card-floating {
  position: absolute;
  z-index: 3;
  background: var(--bg-glass-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.15rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: float-subtle 5s ease-in-out infinite alternate;
}

.hero-card-floating.card-temperature {
  bottom: 8%;
  left: -5%;
}

.hero-card-floating.card-origin {
  top: 10%;
  right: -5%;
}

@keyframes float-subtle {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-8px); }
}

.floating-icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(185, 43, 39, 0.12);
  color: var(--brand-red);
  display: flex;
  align-items: center;
  justify-content: center;
}

[data-theme="dark"] .floating-icon-wrap {
  background: rgba(198, 146, 85, 0.18);
  color: var(--brand-gold-light);
}

.floating-text-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.floating-text-val {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* --- Video Placeholder Banner --- */
.video-feature-banner {
  margin-top: 3.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}

.video-placeholder-container {
  position: relative;
  height: 290px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  color: #FFFFFF;
}

.video-placeholder-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.8) 100%);
  z-index: 1;
}

.video-placeholder-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 650px;
}

.video-play-indicator {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 255, 255, 0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: #FFFFFF;
  transition: transform var(--transition-fast), background-color var(--transition-fast);
}

.video-placeholder-container:hover .video-play-indicator {
  transform: scale(1.1);
  background: var(--brand-red);
  border-color: var(--brand-red);
}

.video-tag-reserved {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: #F3EFEA;
  margin-bottom: 0.65rem;
}

/* --- Legacy Stats Section --- */
.stats-section {
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 3.5rem 0;
}

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

.stat-item {
  text-align: center;
  padding: 1rem 0.5rem;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 20%;
  right: 0;
  height: 60%;
  width: 1px;
  background-color: var(--border-light);
}

.stat-number-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.15rem;
  margin-bottom: 0.4rem;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 3.8vw, 3.75rem);
  font-weight: 700;
  color: var(--brand-red);
  line-height: 1;
}

[data-theme="dark"] .stat-number {
  color: var(--brand-gold);
}

.stat-suffix {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--brand-red);
}

[data-theme="dark"] .stat-suffix {
  color: var(--brand-gold);
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
}

/* --- Story & Tradition Section --- */
.story-section {
  position: relative;
  overflow: hidden;
}

.story-bg-watermark {
  position: absolute;
  top: 0;
  right: 0;
  width: 48%;
  height: 100%;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  opacity: 0.055;
  pointer-events: none;
  mask-image: linear-gradient(to left, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 80%);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 80%);
  z-index: 0;
}

[data-theme="dark"] .story-bg-watermark {
  opacity: 0.04;
  filter: grayscale(100%);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  position: relative;
  z-index: 1;
}

.story-media-wrap {
  position: relative;
}

.story-image-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
}

.story-image-main {
  width: 100%;
  aspect-ratio: 4 / 3.8;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.story-image-container:hover .story-image-main {
  transform: scale(1.03);
}

.story-image-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(18, 18, 18, 0.78);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  padding: 0.4rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.story-image-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-gold);
}

.story-inset-oven {
  position: absolute;
  bottom: -25px;
  left: -20px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-card);
  padding: 0.65rem 0.9rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-subtle);
  z-index: 2;
  transition: transform 0.3s ease;
}

.story-inset-oven:hover {
  transform: translateY(-3px);
}

.story-inset-oven img {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}

.story-inset-label {
  display: flex;
  flex-direction: column;
}

.story-inset-label strong {
  color: var(--text-primary);
  font-size: 0.825rem;
  font-weight: 600;
  line-height: 1.2;
}

.story-inset-label span {
  color: var(--brand-gold);
  font-weight: 500;
  font-size: 0.725rem;
  margin-top: 0.15rem;
}

.story-badge-stamp {
  position: absolute;
  bottom: -20px;
  right: -10px;
  background: var(--brand-charcoal);
  color: #FFFFFF;
  padding: 1.2rem 1.4rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-lg);
  max-width: 200px;
  z-index: 2;
}

.stamp-year {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--brand-gold-light);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stamp-caption {
  font-size: 0.75rem;
  color: #A1A1AA;
  line-height: 1.35;
}

.story-text-lead {
  font-size: 1.15rem;
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.story-text-body {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.story-quote-box {
  border-left: 3px solid var(--brand-red);
  padding: 1.1rem 1.25rem;
  background: var(--bg-subtle);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 2rem;
}

[data-theme="dark"] .story-quote-box {
  border-left-color: var(--brand-gold);
}

.story-quote-flex {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.story-quote-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  flex-shrink: 0;
  border: 2px solid var(--brand-gold);
  box-shadow: var(--shadow-sm);
}

.story-quote-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-primary);
  line-height: 1.6;
}

.story-quote-author {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

/* --- Oven Feature Showcase --- */
.oven-section {
  background-color: var(--bg-subtle);
  position: relative;
  overflow: hidden;
}

.oven-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.oven-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
  position: relative;
}

.oven-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--card-border-glow);
}

.oven-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--bg-subtle);
  color: var(--brand-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform var(--transition-fast);
}

[data-theme="dark"] .oven-card-icon {
  color: var(--brand-gold);
}

.oven-card:hover .oven-card-icon {
  transform: scale(1.08);
}

.oven-card-title {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.oven-card-desc {
  font-size: 0.925rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* --- Oven Visual Showcase --- */
.oven-visual-showcase {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.oven-showcase-main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  min-height: 420px;
  background: var(--brand-charcoal);
}

.oven-showcase-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.oven-showcase-main:hover img {
  transform: scale(1.04);
}

.oven-showcase-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(18, 18, 20, 0.88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.25rem;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: var(--shadow-lg);
}

.badge-fire-icon {
  font-size: 1.6rem;
}

.oven-showcase-badge strong {
  display: block;
  font-size: 0.95rem;
  color: #FFFFFF;
}

.oven-showcase-badge span {
  font-size: 0.8rem;
  color: var(--brand-gold-light);
}

.oven-showcase-side {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: space-between;
}

.oven-showcase-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 200px;
  box-shadow: var(--shadow-md);
  background: var(--brand-charcoal);
}

.oven-showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.oven-showcase-card:hover img {
  transform: scale(1.05);
}

.oven-side-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  color: #FFFFFF;
}

.oven-side-tag {
  font-size: 0.725rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-gold-light);
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.oven-side-overlay h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
}

.oven-showcase-info {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}

.oven-showcase-info h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.oven-showcase-info p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.oven-specs-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  border-top: 1px solid var(--border-light);
  padding-top: 1.25rem;
}

.oven-spec-item strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--brand-red);
  line-height: 1;
}

[data-theme="dark"] .oven-spec-item strong {
  color: var(--brand-gold-light);
}

.oven-spec-item span {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- Interactive Menu & Bistro Showcase --- */
.menu-section {
  background-color: var(--bg-body);
}

.menu-tabs-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 3.5rem;
}

.menu-tab-btn {
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-pill);
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.menu-tab-btn:hover {
  background: var(--bg-subtle);
  color: var(--text-primary);
  border-color: var(--border-medium);
}

.menu-tab-btn.active {
  background: var(--brand-red);
  color: #FFFFFF;
  border-color: var(--brand-red);
  box-shadow: 0 4px 14px var(--brand-red-glow);
}

[data-theme="dark"] .menu-tab-btn.active {
  background: var(--brand-gold);
  color: #121214;
  border-color: var(--brand-gold);
  box-shadow: 0 4px 14px var(--brand-gold-glow);
}

/* Menu Items Grid */
.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.menu-item-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.menu-item-card:hover {
  border-color: var(--border-medium);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.menu-item-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.menu-item-badge {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-pill);
  background: var(--bg-subtle);
  color: var(--brand-red);
  border: 1px solid var(--border-light);
  white-space: nowrap;
}

[data-theme="dark"] .menu-item-badge {
  color: var(--brand-gold-light);
}

.menu-item-badge.badge-oven {
  background: rgba(185, 43, 39, 0.1);
  color: var(--brand-red);
}

[data-theme="dark"] .menu-item-badge.badge-oven {
  background: rgba(232, 191, 135, 0.15);
  color: var(--brand-gold-light);
}

.menu-item-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.menu-item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px dashed var(--border-light);
  padding-top: 1rem;
}

.menu-item-price {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-red);
}

[data-theme="dark"] .menu-item-price {
  color: var(--brand-gold-light);
}

.menu-item-order-btn {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.menu-item-order-btn:hover {
  color: var(--brand-red);
}

[data-theme="dark"] .menu-item-order-btn:hover {
  color: var(--brand-gold-light);
}

/* Menu Item Card with Photo */
.menu-item-card.has-photo {
  padding: 0;
  overflow: hidden;
}

.menu-card-thumb-wrap {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--brand-charcoal);
}

.menu-card-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.menu-item-card:hover .menu-card-thumb-wrap img {
  transform: scale(1.06);
}

.menu-card-thumb-tag {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: rgba(18, 18, 20, 0.88);
  backdrop-filter: blur(8px);
  color: var(--brand-gold-light);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-pill);
  font-size: 0.725rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.75rem;
  box-shadow: var(--shadow-sm);
}

.menu-card-inner-body {
  padding: 1.5rem 1.75rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.menu-footer-cta {
  text-align: center;
  margin-top: 3.5rem;
  padding: 2rem 2.5rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.menu-footer-cta-text h4 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.menu-footer-cta-text p {
  color: var(--text-secondary);
  font-size: 0.925rem;
}

/* --- Gallery & Curated Experiences --- */
.gallery-section {
  background-color: var(--bg-subtle);
}

.gallery-filter-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.gallery-tab-btn {
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-pill);
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.gallery-tab-btn.active, .gallery-tab-btn:hover {
  background: var(--text-primary);
  color: var(--text-inverse);
  border-color: var(--text-primary);
}

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

.gallery-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  aspect-ratio: 4 / 3;
  background: var(--bg-card);
}

.gallery-card.featured {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-card:hover img {
  transform: scale(1.06);
}

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.gallery-card:hover .gallery-card-overlay {
  opacity: 1;
}

.gallery-card-caption {
  color: #FFFFFF;
}

.gallery-card-tag {
  font-size: 0.725rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-gold-light);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.gallery-card-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(16px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox-modal.active {
  display: flex;
  animation: fadeIn 0.25s var(--ease-out);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lightbox-content {
  max-width: 1080px;
  max-height: 85vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 75vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  object-fit: contain;
}

.lightbox-caption-text {
  color: #F4F4F5;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin-top: 1.25rem;
  text-align: center;
}

.lightbox-close-btn {
  position: absolute;
  top: -45px;
  right: 0;
  background: transparent;
  color: #FFFFFF;
  font-size: 2.25rem;
  cursor: pointer;
  line-height: 1;
}

/* --- Private Room & Reservations Section --- */
.reservation-section {
  background-color: var(--bg-body);
  position: relative;
}

.reservation-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}

.reservation-info-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: var(--shadow-md);
}

.private-room-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(198, 146, 85, 0.15);
  color: var(--brand-gold);
  border: 1px solid rgba(198, 146, 85, 0.3);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

[data-theme="dark"] .private-room-badge {
  color: var(--brand-gold-light);
}

.reservation-perks-list {
  list-style: none;
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.reservation-perk-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.reservation-perk-icon {
  width: 22px;
  height: 22px;
  color: var(--brand-red);
  flex-shrink: 0;
  margin-top: 2px;
}

[data-theme="dark"] .reservation-perk-icon {
  color: var(--brand-gold);
}

/* Reservation Venue Gallery */
.reservation-room-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.75rem 0;
}

.room-photo-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 140px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  background: var(--brand-charcoal);
}

.room-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.room-photo-item:hover img {
  transform: scale(1.06);
}

.room-photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.4rem 0.65rem;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(4px);
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.25;
}

/* Reservation Form */
.reservation-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: var(--shadow-lg);
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.825rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  color: var(--text-primary);
  transition: border-color var(--transition-fast), background-color var(--transition-fast);
}

.form-control:focus {
  border-color: var(--border-focus);
  background: var(--bg-surface);
}

textarea.form-control {
  min-height: 95px;
  resize: vertical;
}

/* --- Delivery & Take Away Banner --- */
.delivery-section {
  background: var(--bg-subtle);
  position: relative;
}

.delivery-card-banner {
  background: linear-gradient(135deg, #1C1917 0%, #0C0A09 100%);
  color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 5vw, 4rem);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.delivery-banner-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.delivery-card-banner h2 {
  color: #FFFFFF;
}

.delivery-card-banner p {
  color: #D6D3D1;
}

.delivery-contact-pill-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.delivery-visual-preview {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-lg);
  background: var(--brand-charcoal);
  margin-bottom: 0.5rem;
}

.delivery-visual-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.delivery-visual-preview:hover img {
  transform: scale(1.05);
}

.delivery-visual-badge {
  position: absolute;
  bottom: 0.85rem;
  left: 0.85rem;
  right: 0.85rem;
  background: rgba(18, 18, 20, 0.88);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.85rem;
  color: #FFFFFF;
  font-size: 0.775rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.delivery-visual-badge strong {
  color: var(--brand-gold-light);
}

.delivery-contact-pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition-fast);
  color: #FFFFFF;
}

.delivery-contact-pill:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--brand-gold);
  transform: translateX(4px);
}

.pill-info-label {
  font-size: 0.75rem;
  color: #A8A29E;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.pill-info-value {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
}

/* --- Location, Hours & Map Section --- */
.location-section {
  background-color: var(--bg-body);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}

.location-info-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.info-block {
  margin-bottom: 2rem;
}

.info-block-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}

.info-block-icon {
  width: 22px;
  height: 22px;
  color: var(--brand-red);
}

[data-theme="dark"] .info-block-icon {
  color: var(--brand-gold);
}

.info-block-title {
  font-size: 1.15rem;
  font-weight: 700;
}

.info-block-content {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table tr {
  border-bottom: 1px solid var(--border-light);
}

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

.hours-table td {
  padding: 0.6rem 0;
  font-size: 0.9rem;
}

.hours-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--text-primary);
}

.status-badge-open {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--brand-green-light);
  color: var(--brand-green);
}

.location-map-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  position: relative;
  min-height: 420px;
}

.map-frame {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

/* --- Footer --- */
.site-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-light);
  padding: 5rem 0 2rem;
  position: relative;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 1.25rem;
  max-width: 320px;
}

.footer-col-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--text-primary);
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links-list a {
  font-size: 0.885rem;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.footer-links-list a:hover {
  color: var(--brand-red);
}

[data-theme="dark"] .footer-links-list a:hover {
  color: var(--brand-gold);
}

.footer-social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  transition: all var(--transition-fast);
}

.footer-social-icon:hover {
  background: var(--brand-red);
  color: #FFFFFF;
  border-color: var(--brand-red);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 1rem;
}

/* Floating WhatsApp Button */
.whatsapp-float-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  background: #25D366;
  color: #FFFFFF;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.whatsapp-float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55);
}

.whatsapp-ping {
  position: absolute;
  top: 0;
  right: 0;
  width: 16px;
  height: 16px;
  background: #EF4444;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
}

/* --- Scroll Animation Trigger Classes --- */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-badges-row {
    justify-content: center;
  }
  .hero-card-floating.card-temperature {
    left: 2%;
    bottom: -5%;
  }
  .hero-card-floating.card-origin {
    right: 2%;
    top: -5%;
  }
  .story-grid, .reservation-grid, .location-grid, .delivery-banner-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item:nth-child(2)::after {
    display: none;
  }
  .oven-features-grid, .oven-visual-showcase {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-card.featured {
    grid-column: span 2;
  }
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-desktop, .header-cta-desktop {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .menu-items-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-card.featured {
    grid-column: span 1;
  }
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .stat-item::after {
    display: none !important;
  }
  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .menu-footer-cta {
    flex-direction: column;
    text-align: center;
  }
}
