/* ==========================================================================
   SOLE LUNA - DESIGN SYSTEM & STYLES (VANILLA CSS)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. ROOT VARIABLES & THEMES
   -------------------------------------------------------------------------- */
:root {
  /* Colors (HSL) - Light Mode */
  --background: 240 9% 96%;           /* #f4f4f6 */
  --foreground: 252 63% 22%;           /* #1c1547 */
  --card: 0 0% 100%;                  /* #ffffff */
  --card-foreground: 252 63% 22%;
  --popover: 0 0% 100%;
  --popover-foreground: 252 63% 22%;
  --primary: 252 63% 36%;             /* #332296 */
  --primary-foreground: 0 0% 100%;    /* #ffffff */
  --secondary: 252 30% 92%;           /* #e8e6f5 */
  --secondary-foreground: 252 63% 22%;
  --muted: 240 10% 92%;
  --muted-foreground: 252 20% 40%;
  --accent: 43 100% 50%;              /* #ffb700 */
  --accent-foreground: 255 62% 10%;   /* #0d0824 */
  --destructive: 0 84% 60%;
  --destructive-foreground: 0 0% 98%;
  --border: 252 25% 88%;
  --input: 252 25% 88%;
  --ring: 43 100% 50%;
  --matte: 252 40% 94%;
  --celestial-glow: 43 100% 50%;

  --radius: 0.75rem;

  /* Typography */
  --font-heading: "Cormorant Garamond", ui-serif, Georgia, serif;
  --font-body: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.dark {
  /* Colors (HSL) - Dark Mode */
  --background: 255 62% 10%;          /* #0f0a28 */
  --foreground: 240 9% 96%;           /* #f4f4f6 */
  --card: 252 50% 14%;                /* #181235 */
  --card-foreground: 240 9% 96%;
  --popover: 252 50% 14%;
  --popover-foreground: 240 9% 96%;
  --primary: 252 55% 52%;             /* #5f41dc */
  --primary-foreground: 0 0% 100%;
  --secondary: 252 35% 20%;           /* #1f173f */
  --secondary-foreground: 240 9% 96%;
  --muted: 252 35% 18%;
  --muted-foreground: 240 8% 70%;
  --accent: 43 100% 55%;              /* #ffbd1a */
  --accent-foreground: 255 62% 10%;
  --destructive: 0 70% 50%;
  --destructive-foreground: 0 0% 98%;
  --border: 252 35% 24%;
  --input: 252 35% 24%;
  --ring: 43 100% 55%;
  --matte: 252 40% 16%;
  --celestial-glow: 43 100% 55%;
}

/* --------------------------------------------------------------------------
   2. RESET & BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  color-scheme: light dark;
}

body {
  min-height: 100vh;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

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

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

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

ul, ol {
  list-style: none;
}

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY
   -------------------------------------------------------------------------- */
.font-display, .font-heading, h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
}

.text-balance {
  text-wrap: balance;
}

/* --------------------------------------------------------------------------
   4. LAYOUT & CONTAINERS
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 80rem; /* 1280px */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.section {
  padding-top: 6rem;
  padding-bottom: 6rem;
  position: relative;
}

@media (min-width: 640px) {
  .section {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

.bg-secondary-alt {
  background-color: hsl(var(--secondary) / 0.4);
}

/* --------------------------------------------------------------------------
   5. UTILITIES & EFFECTS
   -------------------------------------------------------------------------- */
.glass {
  background-color: hsl(var(--card) / 0.7);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.orbit-ring {
  border: 1px solid hsl(var(--accent) / 0.35);
  border-radius: 9999px;
}

.focus-gold:focus-visible {
  outline: 2px solid hsl(var(--accent));
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Section Header Shared */
.section-header {
  text-align: center;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3.5rem;
}

.section-kicker {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: hsl(var(--accent));
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-subtitle {
  margin-top: 1rem;
  color: hsl(var(--foreground) / 0.7);
  font-size: 1.125rem;
}

/* --------------------------------------------------------------------------
   6. KEYFRAME ANIMATIONS
   -------------------------------------------------------------------------- */
@keyframes glow-pulse {
  0%, 100% {
    opacity: 0.4;
    transform: scale(0.98);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.02);
  }
}

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

@keyframes spin-slow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

.animate-glow-pulse {
  animation: glow-pulse 5s ease-in-out infinite;
}

.animate-float-slow {
  animation: float-slow 7s ease-in-out infinite;
}

.animate-spin-slow {
  animation: spin-slow 60s linear infinite;
}

.animate-bounce {
  animation: bounce 1.5s infinite;
}

/* --------------------------------------------------------------------------
   7. HEADER & NAVBAR
   -------------------------------------------------------------------------- */
header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.4s ease;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  background-color: transparent;
}

header.site-header.scrolled {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  background-color: hsl(var(--card) / 0.75);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid hsl(var(--border) / 0.6);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand-logo-wrap {
  position: relative;
  display: inline-flex;
  height: 2.5rem;
  width: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background-color: hsl(var(--background) / 0.8);
  overflow: hidden;
}

.brand-logo-img {
  height: 2.25rem;
  width: 2.25rem;
  object-fit: contain;
  border-radius: 9999px;
}

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

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

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--foreground) / 0.7);
  transition: color 0.2s ease;
  border-radius: 0.125rem;
}

.nav-link:hover {
  color: hsl(var(--foreground));
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Control Buttons */
.btn-lang {
  border-radius: 9999px;
  border: 1px solid hsl(var(--border));
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  transition: all 0.2s ease;
}

.btn-lang:hover {
  border-color: hsl(var(--accent));
  color: hsl(var(--accent));
}

.btn-theme {
  border-radius: 9999px;
  border: 1px solid hsl(var(--border));
  height: 2.25rem;
  width: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.btn-theme:hover {
  border-color: hsl(var(--accent));
  color: hsl(var(--accent));
}

.btn-call-header {
  display: none;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background-color: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.btn-call-header:hover {
  opacity: 0.9;
}

@media (min-width: 640px) {
  .btn-call-header {
    display: inline-flex;
  }
}

.btn-burger {
  display: inline-flex;
  border-radius: 9999px;
  border: 1px solid hsl(var(--border));
  height: 2.25rem;
  width: 2.25rem;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .btn-burger {
    display: none;
  }
}

/* Mobile Dropdown */
.mobile-menu-drawer {
  display: none;
  background-color: hsl(var(--card) / 0.95);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-top: 1px solid hsl(var(--border) / 0.6);
  margin-top: 0.75rem;
}

.mobile-menu-drawer.open {
  display: block;
}

.mobile-menu-content {
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav-link {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  font-size: 1rem;
  font-weight: 500;
  color: hsl(var(--foreground) / 0.8);
  transition: color 0.2s ease;
}

.mobile-nav-link:hover {
  color: hsl(var(--accent));
}

.mobile-btn-call {
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background-color: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   8. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  padding-top: 6rem;
  padding-bottom: 4rem;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -10;
  overflow: hidden;
}

.hero-gradient-base {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, hsl(var(--primary) / 0.15), hsl(var(--background)), hsl(var(--background)));
}

.hero-glow-gold {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  height: 60vh;
  width: 60vh;
  border-radius: 9999px;
  background-color: hsl(var(--accent) / 0.2);
  filter: blur(120px);
}

.hero-glow-purple {
  position: absolute;
  bottom: 10%;
  right: 8%;
  height: 28vh;
  width: 28vh;
  border-radius: 9999px;
  background-color: hsl(var(--primary) / 0.3);
  filter: blur(100px);
}

.hero-dot-grid {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: radial-gradient(circle, hsl(var(--foreground)) 1px, transparent 1px);
  background-size: 38px 38px;
}

.dark .hero-dot-grid {
  opacity: 0.06;
}

.hero-orbit-center {
  pointer-events: none;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: -10;
}

.hero-orbit-1 {
  height: 78vmin;
  width: 78vmin;
  opacity: 0.5;
}

.hero-orbit-2 {
  position: absolute;
  height: 52vmin;
  width: 52vmin;
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-kicker {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: hsl(var(--accent));
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .hero-kicker {
    font-size: 0.875rem;
  }
}

.hero-logo-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.hero-logo-glow {
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background-color: hsl(var(--accent) / 0.3);
  filter: blur(2rem);
}

.hero-logo-img {
  position: relative;
  height: 7rem;
  width: 7rem;
  object-fit: contain;
  border-radius: 9999px;
}

@media (min-width: 640px) {
  .hero-logo-img {
    height: 9rem;
    width: 9rem;
  }
}

.hero-title {
  font-size: 3.75rem;
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 6rem;
  }
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.5rem; /* text-2xl */
  line-height: 2rem;
  color: hsl(var(--foreground) / 0.7); /* text-foreground/70 */
  margin-top: 0.75rem; /* mt-3 */
}

@media (min-width: 640px) {
  .hero-subtitle {
    font-size: 1.875rem; /* sm:text-3xl */
    line-height: 2.25rem;
  }
}

.hero-lead {
  margin-top: 1.75rem;
  font-size: 1rem;
  color: hsl(var(--foreground) / 0.7);
  line-height: 1.65;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  .hero-lead {
    font-size: 1.125rem;
  }
}

.hero-cta-group {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .hero-cta-group {
    flex-direction: row;
  }
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  border-radius: 9999px;
  background-color: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  padding: 0.875rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 25px -5px hsl(var(--accent) / 0.25);
  transition: transform 0.2s ease;
}

.btn-hero-primary:hover {
  transform: scale(1.03);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  border-radius: 9999px;
  border: 1px solid hsl(var(--primary) / 0.4);
  background-color: hsl(var(--card) / 0.6);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  padding: 0.875rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
}

.btn-hero-secondary:hover {
  border-color: hsl(var(--accent));
  color: hsl(var(--accent));
}

.hero-scroll-link {
  margin-top: 3rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  color: hsl(var(--foreground) / 0.5);
  transition: color 0.2s ease;
}

.hero-scroll-link:hover {
  color: hsl(var(--accent));
}

.hero-scroll-text {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.hero-bottom-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, hsl(var(--accent) / 0.4), transparent);
}

/* --------------------------------------------------------------------------
   9. IDENTITY / STORY SECTION
   -------------------------------------------------------------------------- */
.identity-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .identity-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.identity-text-col {
  order: 2;
}

@media (min-width: 1024px) {
  .identity-text-col {
    order: 1;
  }
}

.identity-paragraphs {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  color: hsl(var(--foreground) / 0.75);
  font-size: 1.125rem;
  line-height: 1.7;
}

.stats-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.stat-card {
  border-radius: 1rem;
  border: 1px solid hsl(var(--border) / 0.7);
  background-color: hsl(var(--card) / 0.5);
  padding: 1.25rem 0.75rem;
  text-align: center;
}

.stat-icon {
  height: 1.5rem;
  width: 1.5rem;
  margin-left: auto;
  margin-right: auto;
  color: hsl(var(--accent));
  margin-bottom: 0.5rem;
}

.stat-label {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
}

.stat-sub {
  font-size: 0.75rem;
  color: hsl(var(--foreground) / 0.6);
  margin-top: 0.125rem;
}

/* Mosaics */
.mosaic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  order: 1;
}

@media (min-width: 1024px) {
  .mosaic-grid {
    order: 2;
  }
}

.mosaic-img-box {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  border: 1px solid hsl(var(--border) / 0.7);
  background-color: hsl(var(--card) / 0.4);
}

.mosaic-img-box.tall {
  grid-column: span 1;
  grid-row: span 2;
  aspect-ratio: 3 / 4;
}

.mosaic-img-box.square {
  aspect-ratio: 1 / 1;
}

.mosaic-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.mosaic-img-box:hover img {
  transform: scale(1.05);
}

/* --------------------------------------------------------------------------
   10. MENU / SIGNATURE SECTION
   -------------------------------------------------------------------------- */
.pizza-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

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

.pizza-card {
  border-radius: 1.5rem;
  border: 1px solid hsl(var(--border) / 0.7);
  background-color: hsl(var(--card) / 0.6);
  overflow: hidden;
  transition: all 0.3s ease;
}

.pizza-card:hover {
  border-color: hsl(var(--accent) / 0.6);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px -10px hsl(var(--foreground) / 0.08);
}

.pizza-card-img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: hsl(var(--muted));
}

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

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

.pizza-card-body {
  padding: 1.25rem;
}

.pizza-name {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
}

.pizza-desc {
  margin-top: 0.375rem;
  font-size: 0.875rem;
  color: hsl(var(--foreground) / 0.65);
  line-height: 1.5;
}

.menu-note {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: hsl(var(--foreground) / 0.5);
  font-style: italic;
}

/* --------------------------------------------------------------------------
   11. SPECIALTIES SECTION (FRITTI & DOLCI)
   -------------------------------------------------------------------------- */
.specialties-header-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .specialties-header-row {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.specialties-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

/* --------------------------------------------------------------------------
   12. ATMOSPHERE / DIETRO IL FORNO
   -------------------------------------------------------------------------- */
.atmosphere-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .atmosphere-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

/* --------------------------------------------------------------------------
   13. GALLERY SECTION
   -------------------------------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

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

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

.gallery-item {
  aspect-ratio: 1 / 1;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid hsl(var(--border) / 0.7);
  background-color: hsl(var(--card) / 0.4);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

/* --------------------------------------------------------------------------
   14. REVIEWS SECTION
   -------------------------------------------------------------------------- */
.reviews-section {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  position: relative;
  overflow: hidden;
  text-align: center;
}

.reviews-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 40vh;
  width: 40vh;
  border-radius: 9999px;
  background-color: hsl(var(--accent) / 0.2);
  filter: blur(120px);
}

.reviews-container {
  position: relative;
  z-index: 10;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

.reviews-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  margin-bottom: 1.5rem;
}

.star-icon {
  height: 2rem;
  width: 2rem;
  fill: hsl(var(--accent));
  color: hsl(var(--accent));
}

.reviews-subtitle {
  margin-top: 1rem;
  color: hsl(var(--primary-foreground) / 0.75);
  font-size: 1.125rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.btn-reviews {
  margin-top: 2.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  border-radius: 9999px;
  background-color: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  padding: 0.875rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease;
}

.btn-reviews:hover {
  transform: scale(1.03);
}

/* --------------------------------------------------------------------------
   15. LOCATION & HOURS SECTION
   -------------------------------------------------------------------------- */
.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

@media (min-width: 1024px) {
  .location-grid {
    grid-template-columns: 3fr 2fr;
    gap: 2rem;
  }
}

.map-card {
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid hsl(var(--border) / 0.7);
  background-color: hsl(var(--card) / 0.4);
  min-height: 340px;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
  display: block;
}

.location-info-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-card {
  border-radius: 1rem;
  border: 1px solid hsl(var(--border) / 0.7);
  background-color: hsl(var(--card) / 0.5);
  padding: 1.5rem;
}

.info-card-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: hsl(var(--accent));
  margin-bottom: 0.5rem;
}

.info-card-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.info-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
}

.info-card-text {
  font-size: 0.875rem;
  color: hsl(var(--foreground) / 0.7);
  line-height: 1.6;
}

.btn-directions {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background-color: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.btn-directions:hover {
  opacity: 0.9;
}

.phone-big-link {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.phone-big-link:hover {
  color: hsl(var(--accent));
}

.email-link {
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsl(var(--foreground) / 0.7);
  word-break: break-all;
  transition: color 0.2s ease;
}

.email-link:hover {
  color: hsl(var(--accent));
}

/* --------------------------------------------------------------------------
   16. FOOTER
   -------------------------------------------------------------------------- */
footer.site-footer {
  background-color: hsl(var(--secondary) / 0.6);
  border-top: 1px solid hsl(var(--border) / 0.7);
}

.footer-content {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

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

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

.footer-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.125rem;
  color: hsl(var(--foreground) / 0.7);
  line-height: 1.4;
}

.footer-col-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: hsl(var(--accent));
  margin-bottom: 1rem;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: hsl(var(--foreground) / 0.75);
}

.footer-link-item {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  transition: color 0.2s ease;
  word-break: break-all;
}

.footer-link-item:hover {
  color: hsl(var(--accent));
}

.footer-social-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-btn {
  display: inline-flex;
  height: 2.75rem;
  width: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid hsl(var(--border));
  transition: all 0.2s ease;
}

.social-btn:hover {
  border-color: hsl(var(--accent));
  color: hsl(var(--accent));
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid hsl(var(--border) / 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: hsl(var(--foreground) / 0.5);
  text-align: center;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    text-align: left;
  }
}

.footer-made-with {
  font-family: var(--font-heading);
  font-style: italic;
}
