/* ============================================
   THE AIRPORT INN — GREENE, NY
   Stylesheet
   Built by Williamson Automation
   ============================================ */

/* --- RESET & BASE --- */

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

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

body {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.1vw, 1.125rem);
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

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

ul, ol {
  list-style: none;
}

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


/* --- CUSTOM PROPERTIES --- */

:root {
  /* --- CREAM PALETTE --- */
  --color-bg: #F5EDE3;
  --color-bg-alt: #EDE4D8;
  --color-bg-warm: #E8DDD0;
  --color-bg-card: #FDFAF6;
  --color-accent: #C8702A;
  --color-accent-hover: #A85A1E;
  --color-accent-rgb: 200, 112, 42;
  --color-accent-light: rgba(200, 112, 42, 0.08);
  --color-text: #2C1810;
  --color-text-muted: #7A6B5E;
  --color-surface: #FFFFFF;
  --color-border: rgba(44, 24, 16, 0.1);
  --color-star: #D4890A;
  --color-secondary: #8B5E3C;
  --color-secondary-light: #A87350;

  /* --- SHADOWS (warm, not cold black) --- */
  --shadow-card: 0 2px 8px rgba(44, 24, 16, 0.06), 0 8px 24px rgba(44, 24, 16, 0.04);
  --shadow-card-hover: 0 4px 16px rgba(44, 24, 16, 0.1), 0 16px 40px rgba(44, 24, 16, 0.06);
  --shadow-glow: 0 4px 20px rgba(200, 112, 42, 0.25);

  /* --- NAV (glass effect on cream) --- */
  --nav-bg: rgba(245, 237, 227, 0.85);
  --nav-bg-scrolled: rgba(245, 237, 227, 0.95);

  /* --- HERO OVERLAY (warm, not black) --- */
  --hero-overlay: linear-gradient(to bottom, rgba(44, 24, 16, 0.15) 0%, rgba(44, 24, 16, 0.4) 50%, rgba(44, 24, 16, 0.75) 100%);

  /* Typography */
  --font-heading: 'Oswald', 'Impact', 'Arial Narrow', sans-serif;
  --font-body: 'DM Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-accent: 'Georgia', 'Times New Roman', serif;

  /* Spacing */
  --section-padding: 5rem 1.5rem;
  --content-max-width: 1200px;
  --gap: 2rem;
  --card-gap: 1.5rem;

  /* Animation */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.6s ease;

  /* Nav */
  --nav-height: 80px;
  --nav-height-scrolled: 64px;
  --nav-blur: 20px;

  /* Card */
  --card-radius: 8px;
}


/* --- TYPOGRAPHY --- */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.15;
  color: var(--color-text);
}

h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
}

h4 {
  font-size: 1.125rem;
  font-weight: 600;
}

p {
  max-width: 65ch;
  margin-bottom: 1em;
}

p:last-child {
  margin-bottom: 0;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
  display: block;
}

.text-accent {
  font-family: var(--font-accent);
}

.price {
  color: var(--color-accent);
  font-weight: 700;
}


/* --- LAYOUT --- */

.container {
  width: 100%;
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: var(--section-padding);
}

@media (min-width: 1024px) {
  .section {
    padding: 7rem 4rem;
  }
}


/* --- BUTTONS --- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--transition-base);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
  border: 2px solid var(--color-accent);
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  box-shadow: var(--shadow-glow);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--color-text);
  border: 2px solid rgba(44, 24, 16, 0.2);
}

.btn-secondary--light {
  color: #FAF5F0;
  border-color: rgba(250, 245, 240, 0.3);
}

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

.btn-secondary:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-1px);
}

.btn-text {
  padding: 0;
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  background: none;
}

.btn-text:hover {
  color: var(--color-star);
}

.btn-text svg {
  transition: transform var(--transition-base);
}

.btn-text:hover svg {
  transform: translateX(4px);
}


/* --- NAVIGATION --- */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(var(--nav-blur));
  -webkit-backdrop-filter: blur(var(--nav-blur));
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  transition: height 0.3s ease, background 0.3s ease;
}

.site-nav.scrolled {
  height: var(--nav-height-scrolled);
  background: var(--nav-bg-scrolled);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.1;
  z-index: 1001;
}

.nav-logo__name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text);
}

.nav-logo__sub {
  font-size: 0.6875rem;
  color: var(--color-accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Desktop nav links */
.nav-links {
  display: none;
  gap: 0.25rem;
  align-items: center;
}

.nav-link {
  padding: 0.5rem 0.875rem;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color var(--transition-base);
  text-decoration: none;
}

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

.nav-cta {
  padding: 0.5rem 1.25rem;
  background: var(--color-accent);
  color: #fff;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background var(--transition-base);
  text-decoration: none;
}

.nav-cta:hover {
  background: var(--color-accent-hover);
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
  .nav-hamburger {
    display: none;
  }
}


/* --- HAMBURGER --- */

.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 0;
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.nav-hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 1024px) {
  .nav-hamburger {
    display: none;
  }
}


/* --- MOBILE MENU --- */

.nav-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background: rgba(250, 245, 240, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.nav-mobile-menu a {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text);
  padding: 0.75rem 2rem;
  transition: color var(--transition-base);
  text-decoration: none;
}

.nav-mobile-menu a:hover,
.nav-mobile-menu a.active {
  color: var(--color-accent);
}

.nav-mobile-menu .mobile-menu-phone {
  margin-top: 2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-accent);
  letter-spacing: 0.02em;
}

@media (min-width: 1024px) {
  .nav-mobile-menu {
    display: none;
  }
}


/* --- HERO --- */

.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(44, 24, 16, 0.08) 0%,
    rgba(44, 24, 16, 0.20) 30%,
    rgba(44, 24, 16, 0.40) 55%,
    rgba(200, 170, 135, 0.50) 75%,
    rgba(229, 217, 203, 0.85) 90%,
    rgba(229, 217, 203, 1.0) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 1.5rem;
  padding-top: var(--nav-height);
}

.hero__label {
  font-family: var(--font-accent);
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  font-style: italic;
  color: rgba(250, 245, 240, 0.9);
  margin-bottom: 1rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.hero__rule {
  width: 40px;
  height: 2px;
  background: var(--color-accent);
  margin: 0 auto 1.5rem;
}

.hero__heading {
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  color: #FAF5F0;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.hero__phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  border: 1px solid rgba(250, 245, 240, 0.4);
  border-radius: 100px;
  color: rgba(250, 245, 240, 0.9);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: all var(--transition-base);
  backdrop-filter: blur(8px);
  background: rgba(250, 245, 240, 0.08);
  text-decoration: none;
}

.hero__phone-btn:hover {
  background: rgba(250, 245, 240, 0.15);
  border-color: rgba(250, 245, 240, 0.6);
  color: #fff;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(250, 245, 240, 0.5);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-indicator svg {
  width: 20px;
  height: 20px;
}


/* --- PAGE HEADER (Inner pages) --- */

.page-header {
  position: relative;
  width: 100%;
  height: 50vh;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-header__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.page-header__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(44, 24, 16, 0.15) 0%,
    rgba(44, 24, 16, 0.35) 50%,
    rgba(245, 237, 227, 0.60) 85%,
    rgba(245, 237, 227, 1.0) 100%
  );
  z-index: 1;
}

.page-header__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: var(--nav-height);
}

.page-header__content h1 {
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.page-header__content h1,
.page-header__content h2 {
  color: #FAF5F0;
}

.page-header__breadcrumb {
  font-size: 0.8125rem;
  color: rgba(250, 245, 240, 0.7);
  margin-top: 0.75rem;
  letter-spacing: 0.05em;
}

.page-header__breadcrumb a {
  color: var(--color-accent);
  text-decoration: none;
}

.page-header__breadcrumb a:hover {
  text-decoration: underline;
}


/* --- TRUST STRIP --- */

.trust-strip {
  position: relative;
  overflow: hidden;
  background: #E5D9CB;
  border-top: 1px solid rgba(44, 24, 16, 0.08);
  border-bottom: 1px solid rgba(44, 24, 16, 0.08);
  padding: 3rem 1.5rem;
}

.trust-strip__grid {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
  justify-items: center;
}

.trust-strip__stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.trust-strip__stat-label {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
}

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


/* --- SPLIT SECTION (text + photos) --- */

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  max-width: var(--content-max-width);
  margin: 0 auto;
}

.split--reverse .split__text {
  order: 1;
}

.split--reverse .split__media {
  order: 2;
}

@media (min-width: 768px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  .split--reverse .split__text {
    order: 2;
  }
  .split--reverse .split__media {
    order: 1;
  }
}

.split__text h2 {
  margin-bottom: 1.25rem;
}

.split__text p {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.split__text .btn-text {
  margin-top: 0.5rem;
}

/* 2x2 photo grid */
.photo-grid-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  border-radius: var(--card-radius);
  overflow: hidden;
}

.photo-grid-2x2 img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--card-radius);
  transition: transform 0.4s ease;
}

.photo-grid-2x2 img:hover {
  transform: scale(1.03);
}


/* --- DAILY SPECIALS --- */

.specials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: var(--content-max-width);
  margin: 0 auto;
}

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

@media (min-width: 1024px) {
  .specials-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .specials-grid .special-card:nth-child(5) {
    grid-column: 2;
  }
}

.special-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--card-radius);
  padding: 1.5rem;
  transition: border-color var(--transition-base), transform var(--transition-base);
}

.special-card:hover {
  border-color: rgba(200, 112, 42, 0.25);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover), 0 0 20px rgba(200, 112, 42, 0.06);
}

.special-card__day {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.special-card__name {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.special-card__desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.specials-note {
  text-align: center;
  margin-top: 2rem;
  max-width: var(--content-max-width);
  margin-left: auto;
  margin-right: auto;
  font-size: 0.875rem;
  color: var(--color-accent);
  font-weight: 600;
  letter-spacing: 0.05em;
}


/* --- EVENTS TEASER --- */

.events-teaser__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: var(--content-max-width);
  margin: 0 auto;
}

@media (min-width: 768px) {
  .events-teaser__grid {
    grid-template-columns: repeat(2, 1fr);
    margin: 0 auto;
  }
}

.event-teaser-card {
  position: relative;
  border-radius: var(--card-radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}

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

.event-teaser-card:hover img {
  transform: scale(1.05);
}

.event-teaser-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,10,8,0.85) 0%, rgba(15,10,8,0.45) 40%, transparent 70%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.event-teaser-card__overlay span {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #FAF5F0;
}

a.event-teaser-card {
  text-decoration: none;
  display: block;
  cursor: pointer;
}


/* --- REVIEWS --- */

.reviews-section {
  overflow: hidden;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: var(--content-max-width);
  margin: 0 auto 3rem;
}

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

.review-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--card-radius);
  padding: 2rem;
}

.review-card--featured {
  transform: translateY(-12px) scale(1.04) rotate(-1deg);
  border: 2px solid rgba(200, 112, 42, 0.3);
  box-shadow:
    0 8px 30px rgba(44, 24, 16, 0.1),
    0 20px 50px rgba(200, 112, 42, 0.08);
  z-index: 2;
  position: relative;
  animation: gentle-float 6s ease-in-out infinite;
}

@keyframes gentle-float {
  0%, 100% { transform: translateY(-12px) scale(1.04) rotate(-1deg); }
  50% { transform: translateY(-16px) scale(1.04) rotate(-0.5deg); }
}

.review-card__stars {
  color: var(--color-star);
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.review-card__text {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}

.review-card__author {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.review-card__source {
  font-size: 0.6875rem;
  color: var(--color-text-muted);
  opacity: 0.7;
}

/* Review ticker */
.review-ticker {
  overflow: hidden;
  position: relative;
  padding: 1rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg-alt);
}

.review-ticker__track {
  display: flex;
  gap: 3rem;
  animation: ticker-scroll 40s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.review-ticker__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.review-ticker__stars {
  color: var(--color-star);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.review-ticker__text {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  max-width: 400px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.review-ticker__author {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  font-weight: 600;
  white-space: nowrap;
}

.review-ticker__divider {
  color: var(--color-accent);
  opacity: 0.4;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* --- CTA BANNER --- */

.cta-banner {
  position: relative;
  padding: 6rem 1.5rem;
  text-align: center;
  overflow: hidden;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(44, 24, 16, 0.65) 0%,
    rgba(44, 24, 16, 0.80) 50%,
    rgba(44, 24, 16, 0.85) 100%
  );
  z-index: 1;
}

.cta-banner__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.cta-banner__content h2 {
  margin-bottom: 1rem;
  color: #FAF5F0;
}

.cta-banner__content p {
  color: rgba(250, 245, 240, 0.8);
  margin-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}


/* --- FOOTER --- */

.site-footer {
  background: #2C1810;
  border-top: 1px solid rgba(200, 112, 42, 0.2);
  padding: 4rem 1.5rem 2rem;
}

.footer-grid {
  max-width: var(--content-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

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

.footer-brand__name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #FAF5F0;
  margin-bottom: 0.25rem;
}

.footer-brand__location {
  font-size: 0.875rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-brand__desc {
  font-size: 0.875rem;
  color: rgba(250, 245, 240, 0.6);
  line-height: 1.6;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #FAF5F0;
  margin-bottom: 1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col a {
  font-size: 0.875rem;
  color: rgba(250, 245, 240, 0.6);
  transition: color var(--transition-base);
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--color-accent);
}

.footer-col p {
  font-size: 0.875rem;
  color: rgba(250, 245, 240, 0.6);
  line-height: 1.6;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(250, 245, 240, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250, 245, 240, 0.6);
  transition: all var(--transition-base);
}

.footer-social a:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: rgba(200, 112, 42, 0.1);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  max-width: var(--content-max-width);
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(250, 245, 240, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom p,
.footer-bottom a {
  font-size: 0.8125rem;
  color: rgba(250, 245, 240, 0.5);
}

.footer-bottom a:hover {
  color: var(--color-accent);
}


/* --- MOBILE CTA BAR --- */

.mobile-cta {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 998;
  background: var(--color-accent);
  padding: 0.75rem 1.5rem;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: transform 0.3s ease;
}

.mobile-cta a {
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mobile-cta svg {
  width: 18px;
  height: 18px;
}

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

/* Body padding for mobile CTA */
body {
  padding-bottom: 56px;
}

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


/* --- MENU PAGE --- */

.menu-nav {
  position: sticky;
  top: var(--nav-height-scrolled);
  z-index: 100;
  background: rgba(250, 245, 240, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  padding: 0.75rem 1.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.menu-nav::-webkit-scrollbar {
  display: none;
}

.menu-nav__list {
  display: flex;
  gap: 0.25rem;
  justify-content: center;
  min-width: max-content;
  max-width: var(--content-max-width);
  margin: 0 auto;
}

.menu-nav__link {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding: 0.5rem 0.875rem;
  border-radius: 4px;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
}

.menu-nav__link:hover,
.menu-nav__link.active {
  color: var(--color-accent);
  background: rgba(200, 112, 42, 0.08);
}

.menu-section {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 4rem 0;
  border-bottom: 1px solid var(--color-border);
}

.menu-section:last-child {
  border-bottom: none;
}

.menu-section__header {
  margin-bottom: 2rem;
}

.menu-section__header h2 {
  margin-bottom: 0.5rem;
}

.menu-section__header p {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

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

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--color-border);
  gap: 1rem;
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item__name {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text);
}

.menu-item__desc {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-top: 0.125rem;
}

.menu-item__price {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-accent);
  white-space: nowrap;
}

.menu-sauce-list {
  margin-top: 1rem;
  padding: 1.25rem;
  background: #FFFFFF;
  border-radius: var(--card-radius);
  border: 1px solid var(--color-border);
}

.menu-sauce-list p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.menu-sauce-list strong {
  color: var(--color-text);
}

.menu-photo-feature {
  margin: 2rem 0;
  border-radius: var(--card-radius);
  overflow: hidden;
  max-height: 350px;
}

.menu-photo-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* --- GALLERY PAGE --- */

.gallery-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}

.gallery-filter {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-base);
  background: none;
}

.gallery-filter:hover,
.gallery-filter.active {
  color: var(--color-accent);
  border-color: var(--color-accent);
  background: rgba(200, 112, 42, 0.08);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  max-width: var(--content-max-width);
  margin: 0 auto;
}

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

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

.gallery-item {
  position: relative;
  border-radius: var(--card-radius);
  overflow: hidden;
  aspect-ratio: 1/1;
  cursor: pointer;
}

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

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

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 24, 16, 0.35);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}

.gallery-item__overlay svg {
  width: 32px;
  height: 32px;
  color: #fff;
}

/* Make some gallery items span 2 cols/rows on larger screens */
@media (min-width: 768px) {
  .gallery-item--wide {
    grid-column: span 2;
    aspect-ratio: 2/1;
  }
  .gallery-item--tall {
    grid-row: span 2;
    aspect-ratio: auto;
  }
}


/* --- LIGHTBOX --- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(44, 24, 16, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--card-radius);
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background var(--transition-base);
  font-size: 1.5rem;
}

.lightbox__close:hover {
  background: rgba(255,255,255,0.2);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background var(--transition-base);
  font-size: 1.25rem;
}

.lightbox__nav:hover {
  background: rgba(255,255,255,0.2);
}

.lightbox__prev {
  left: 1.5rem;
}

.lightbox__next {
  right: 1.5rem;
}


/* --- ABOUT PAGE --- */

.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding-left: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0.75rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-border);
}

.timeline-item {
  position: relative;
  padding-bottom: 3rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item__dot {
  position: absolute;
  left: -2.5rem;
  top: 0.25rem;
  width: 12px;
  height: 12px;
  background: var(--color-accent);
  border-radius: 50%;
  border: 2px solid var(--color-bg);
}

.timeline-item__year {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.timeline-item h3 {
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.timeline-item p {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.timeline-item blockquote {
  margin-top: 1rem;
  padding-left: 1.25rem;
  border-left: 3px solid var(--color-accent);
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}


/* --- CONTACT PAGE --- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: var(--content-max-width);
  margin: 0 auto;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.contact-info-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--card-radius);
  padding: 2.5rem;
}

.contact-info-card h3 {
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
}

.contact-detail:last-child {
  border-bottom: none;
}

.contact-detail__icon {
  width: 24px;
  height: 24px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.contact-detail__text {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.contact-detail__text a {
  color: var(--color-text);
  transition: color var(--transition-base);
}

.contact-detail__text a:hover {
  color: var(--color-accent);
}

.contact-detail__text strong {
  color: var(--color-text);
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hours table */
.hours-table {
  width: 100%;
  margin-top: 1rem;
}

.hours-table tr {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-border);
}

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

.hours-table td {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.hours-table td:first-child {
  font-weight: 600;
  color: var(--color-text);
}

.hours-highlight {
  color: var(--color-accent) !important;
  font-weight: 600 !important;
}

/* Map */
.map-container {
  border-radius: var(--card-radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  aspect-ratio: 16/9;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 0.875rem 1rem;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  transition: border-color var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23A8A29E' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-submit {
  margin-top: 0.5rem;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  background: rgba(200, 112, 42, 0.1);
  border: 1px solid rgba(200, 112, 42, 0.3);
  border-radius: var(--card-radius);
}

.form-success.show {
  display: block;
}

.form-success h3 {
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}


/* --- EVENTS PAGE --- */

.event-section-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: var(--content-max-width);
  margin: 0 auto;
}

@media (min-width: 768px) {
  .event-section-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.event-photo-card {
  border-radius: var(--card-radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.event-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* --- ARTIST SPOTLIGHT --- */

.artist-spotlight {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(44, 24, 16, 0.15);
  background: var(--color-bg-card);
  transform: rotate(3deg);
}

.artist-spotlight img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}

.artist-card {
  padding: 1rem 1.25rem;
  background: var(--color-bg-card);
  border-top: 1px solid rgba(44, 24, 16, 0.08);
}

.artist-card__name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.artist-card__icon {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
  flex-shrink: 0;
}

.artist-card__sub {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-top: 0.15rem;
  padding-left: 1.625rem;
}

.artist-booking-cta {
  text-align: center;
  font-size: 0.875rem;
  font-style: italic;
  color: var(--color-text-muted);
  margin-top: 1.5rem;
}

.artist-booking-cta a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.artist-booking-cta a:hover {
  color: var(--color-accent-hover);
}

@media (max-width: 767px) {
  .artist-spotlight {
    max-width: 400px;
    margin: 0 auto;
  }
}


/* --- ANIMATION STARTING STATES --- */

.fade-up {
  opacity: 0;
  transform: translateY(30px);
}

.fade-in {
  opacity: 0;
}

.slide-from-left {
  opacity: 0;
  transform: translateX(-40px);
}

.slide-from-right {
  opacity: 0;
  transform: translateX(40px);
}

.scale-up {
  opacity: 0;
  transform: scale(0.95);
}

.stagger-in > * {
  opacity: 0;
  transform: translateY(20px);
}


/* --- SECTION CENTER --- */

.section-center {
  text-align: center;
  margin-bottom: 3rem;
}

.section-center h2 {
  margin-bottom: 1rem;
}

.section-center p {
  color: var(--color-text-muted);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}


/* --- BACK TO TOP --- */

.back-to-top {
  position: fixed;
  bottom: 5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition-base);
  z-index: 100;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}

.back-to-top:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}


/* --- COMMUNITY GRID --- */

.community-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: var(--content-max-width);
  margin: 0 auto;
}

@media (max-width: 768px) {
  .community-grid {
    grid-template-columns: 1fr;
  }
}

.community-photo {
  border-radius: var(--card-radius);
  overflow: hidden;
  aspect-ratio: 16/9;
}

.community-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* --- UTILITY --- */

.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; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }


/* --- SECTION ALTERNATING BACKGROUNDS --- */

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


/* --- AMBIENT GLOW BACKGROUNDS --- */

.trust-strip::before,
#specials::before,
.reviews-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

.trust-strip::before {
  background:
    radial-gradient(ellipse 600px 400px at 15% 50%, rgba(200,112,42,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 500px 300px at 85% 30%, rgba(212,137,10,0.05) 0%, transparent 70%);
}

#specials {
  position: relative;
  overflow: hidden;
}

#specials::before {
  background:
    radial-gradient(ellipse 700px 500px at 80% 60%, rgba(200,112,42,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 400px 400px at 10% 20%, rgba(139,94,60,0.04) 0%, transparent 70%);
}

.reviews-section {
  position: relative;
  overflow: hidden;
}

.reviews-section::before {
  background:
    radial-gradient(ellipse 600px 400px at 50% 20%, rgba(200,112,42,0.06) 0%, transparent 65%),
    radial-gradient(ellipse 500px 350px at 20% 80%, rgba(212,137,10,0.04) 0%, transparent 70%);
}

@keyframes ambient-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(15px, -10px) scale(1.02); }
  66% { transform: translate(-10px, 8px) scale(0.98); }
}

.trust-strip::before,
#specials::before,
.reviews-section::before {
  animation: ambient-drift 25s ease-in-out infinite;
}


/* --- SECTION DIVIDER LINES --- */

.section + .section {
  border-top: 1px solid transparent;
  border-image: linear-gradient(90deg, transparent 5%, rgba(200,112,42,0.15) 30%, rgba(200,112,42,0.15) 70%, transparent 95%) 1;
}


/* --- GALLERY FEATURED --- */

.gallery-featured {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: var(--content-max-width);
  margin: 0 auto 2rem;
}
.gallery-featured__item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-card);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.gallery-featured__item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}
.gallery-featured__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-featured__item:hover img {
  transform: scale(1.03);
}
@media (max-width: 768px) {
  .gallery-featured {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* --- SECTION DEPTH GRADIENTS --- */

#specials {
  background: linear-gradient(
    180deg,
    var(--color-bg) 0%,
    var(--color-bg-alt) 15%,
    var(--color-bg-alt) 85%,
    var(--color-bg) 100%
  );
}

#reviews {
  background: linear-gradient(
    180deg,
    var(--color-bg) 0%,
    var(--color-bg-alt) 10%,
    var(--color-bg-alt) 90%,
    var(--color-bg) 100%
  );
}

.trust-strip {
  background: #E5D9CB;
}

/* Gallery items start visible — filter handles transitions */
.gallery-grid .gallery-item {
  opacity: 1;
  transform: none;
}

/* --- BRUNCH BANNER (menu page) --- */

.brunch-banner {
  max-width: var(--content-max-width);
  margin: 2rem auto 0;
  padding: 0 1.5rem;
  position: relative;
  overflow: hidden;
}
.brunch-banner__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  max-width: 480px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-bg-warm) 100%);
  border: 1px solid rgba(200, 112, 42, 0.2);
  border-radius: 12px;
  animation: brunch-glow 4s ease-in-out infinite;
}
@keyframes brunch-glow {
  0%, 100% {
    box-shadow: 0 0 15px rgba(200, 112, 42, 0.06), 0 0 30px rgba(200, 112, 42, 0.03);
  }
  50% {
    box-shadow: 0 0 20px rgba(200, 112, 42, 0.12), 0 0 40px rgba(200, 112, 42, 0.06);
  }
}
.brunch-banner__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.125rem;
}
.brunch-banner__label {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
}
.brunch-banner__text strong {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  text-transform: uppercase;
  color: var(--color-text);
}
.brunch-banner__hours {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}
.brunch-banner .btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.8125rem;
}

/* --- BRUNCH SLIDE-OUT PANEL --- */

.brunch-panel {
  position: fixed;
  inset: 0;
  z-index: 1500;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.brunch-panel.active {
  opacity: 1;
  pointer-events: all;
}
.brunch-panel__overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 24, 16, 0.4);
  backdrop-filter: blur(4px);
}
.brunch-panel__content {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 520px;
  height: 100%;
  background: var(--color-bg);
  overflow-y: auto;
  padding: 3rem 2rem 4rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -8px 0 30px rgba(44, 24, 16, 0.1);
}
.brunch-panel.active .brunch-panel__content {
  transform: translateX(0);
}
.brunch-panel__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-text-muted);
  background: none;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition-base);
}
.brunch-panel__close:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
}
.brunch-panel__header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}
.brunch-panel__header h2 {
  margin-bottom: 0.5rem;
}
.brunch-panel__header p {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}
.brunch-panel__section {
  margin-bottom: 2rem;
}
.brunch-panel__section h3 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-border);
}
.brunch-item {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border);
}
.brunch-item:last-child {
  border-bottom: none;
}
.brunch-item__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}
.brunch-item__name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--color-text);
}
.brunch-item__price {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-accent);
  white-space: nowrap;
}
.brunch-item__desc {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
  line-height: 1.5;
}
.brunch-note {
  font-size: 0.8125rem;
  color: var(--color-accent);
  font-style: italic;
  margin-top: 1rem;
}
.brunch-flight-price {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 1rem;
}
.brunch-flight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}
.brunch-flight-grid span {
  font-size: 0.875rem;
  color: var(--color-text);
  padding: 0.5rem 0.75rem;
  background: var(--color-accent-light);
  border-radius: 4px;
  text-align: center;
}

@media (max-width: 600px) {
  .brunch-panel__content {
    max-width: 100%;
    padding: 2rem 1.25rem 3rem;
  }
}


/* --- STORY PAGES --- */
.story-article {
  max-width: 100%;
}
.story-article__content {
  max-width: 720px;
  margin: 0 auto;
}
.story-article__content h2 {
  margin-bottom: 1.5rem;
}
.story-article__content p {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  max-width: none; /* override the global 65ch max-width for long-form reading */
}
.story-article__content p:first-of-type {
  font-size: 1.125rem;
  color: var(--color-text);
}
.story-article__content blockquote {
  margin: 2rem 0;
  padding: 1.5rem 1.5rem 1.5rem 2rem;
  border-left: 4px solid var(--color-accent);
  background: var(--color-bg-alt);
  border-radius: 0 var(--card-radius) var(--card-radius) 0;
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--color-text);
}
.story-article__content em {
  color: var(--color-text);
  font-style: italic;
}

.story-break {
  text-align: center;
  margin: 2.5rem 0;
  color: var(--color-accent);
  font-size: 1.5rem;
  letter-spacing: 0.5em;
  opacity: 0.4;
}

/* --- STORY CARDS (About page) --- */
.story-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: var(--content-max-width);
  margin: 0 auto;
}
@media (min-width: 768px) {
  .story-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
.story-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 2rem 2rem 1.75rem;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--card-radius);
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.story-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.story-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--color-accent-light, rgba(200, 112, 42, 0.08));
  color: var(--color-accent);
}
.story-card h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  text-transform: uppercase;
  color: var(--color-text);
  margin: 0;
}
.story-card p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}
.story-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: auto;
  padding-top: 0.75rem;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-accent);
  transition: color 0.2s ease;
}
.story-card:hover .story-card__cta {
  color: var(--color-accent-hover);
}
.story-card__cta svg {
  transition: transform 0.2s ease;
}
.story-card:hover .story-card__cta svg {
  transform: translateX(4px);
}


/* --- STORY DECK (playing cards) --- */

.story-deck {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 420px;
  max-width: 700px;
  margin: 0 auto;
  perspective: 1200px;
}

.story-deck__card {
  position: absolute;
  width: 280px;
  height: 380px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(44, 24, 16, 0.12), 0 2px 8px rgba(44, 24, 16, 0.06);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.story-deck__card--left {
  transform: rotate(-8deg) translateX(-120px) translateY(10px);
  z-index: 1;
}

.story-deck__card--center {
  transform: rotate(0deg) translateY(-10px);
  z-index: 3;
}

.story-deck__card--right {
  transform: rotate(8deg) translateX(120px) translateY(10px);
  z-index: 2;
}

.story-deck__card:hover {
  transform: rotate(0deg) translateY(-30px) scale(1.05) !important;
  z-index: 10 !important;
  box-shadow: 0 16px 50px rgba(44, 24, 16, 0.2), 0 4px 12px rgba(200, 112, 42, 0.1);
  border-color: rgba(200, 112, 42, 0.3);
}

.story-deck__image {
  height: 220px;
  overflow: hidden;
}

.story-deck__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.story-deck__card:hover .story-deck__image img {
  transform: scale(1.05);
}

.story-deck__info {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.375rem;
}

.story-deck__info h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--color-text);
  margin: 0;
}

.story-deck__info p {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin: 0;
}

.story-deck__read {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-top: auto;
  padding-top: 0.5rem;
  transition: letter-spacing 0.2s ease;
}

.story-deck__card:hover .story-deck__read {
  letter-spacing: 0.2em;
}

@media (max-width: 768px) {
  .story-deck {
    flex-direction: column;
    height: auto;
    gap: 1rem;
    position: relative;
  }

  .story-deck__card {
    position: relative;
    width: 100%;
    max-width: 340px;
    height: auto;
    transform: none !important;
  }

  .story-deck__card--left,
  .story-deck__card--center,
  .story-deck__card--right {
    transform: none;
    z-index: 1;
  }

  .story-deck__card:hover {
    transform: translateY(-8px) scale(1.02) !important;
  }

  .story-deck__image {
    height: 180px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .story-deck__card {
    width: 240px;
    height: 340px;
  }
  .story-deck__card--left {
    transform: rotate(-6deg) translateX(-90px) translateY(8px);
  }
  .story-deck__card--right {
    transform: rotate(6deg) translateX(90px) translateY(8px);
  }
  .story-deck__image {
    height: 180px;
  }
}


/* --- BRUNCH SHOWCASE (events page) --- */

.brunch-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 700px;
  margin: 0 auto;
  perspective: 800px;
}

@media (min-width: 768px) {
  .brunch-showcase {
    grid-template-columns: repeat(4, 1fr);
    max-width: 900px;
  }
}

.brunch-showcase__card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
  transform-style: preserve-3d;
}

.brunch-showcase__card:nth-child(1) {
  transform: rotateY(4deg) rotateX(2deg) rotateZ(-2deg);
}
.brunch-showcase__card:nth-child(2) {
  transform: rotateY(-2deg) rotateX(3deg) rotateZ(1deg);
}
.brunch-showcase__card:nth-child(3) {
  transform: rotateY(3deg) rotateX(-2deg) rotateZ(2deg);
}
.brunch-showcase__card:nth-child(4) {
  transform: rotateY(-4deg) rotateX(2deg) rotateZ(-1deg);
}

.brunch-showcase__card:hover {
  transform: rotateY(0) rotateX(0) rotateZ(0) translateY(-8px) scale(1.04);
  box-shadow: 0 12px 35px rgba(44, 24, 16, 0.12), 0 4px 10px rgba(200, 112, 42, 0.08);
  border-color: rgba(200, 112, 42, 0.25);
}

.brunch-showcase__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(200, 112, 42, 0.08) 0%, rgba(200, 112, 42, 0.15) 100%);
  color: var(--color-accent);
  transition: transform 0.3s ease, background 0.3s ease;
}

.brunch-showcase__card:hover .brunch-showcase__icon {
  background: linear-gradient(135deg, rgba(200, 112, 42, 0.12) 0%, rgba(200, 112, 42, 0.22) 100%);
  transform: scale(1.1);
}

.brunch-showcase__card h4 {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text);
  margin: 0;
}

.brunch-showcase__card p {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 767px) {
  .brunch-showcase__card:nth-child(1),
  .brunch-showcase__card:nth-child(2),
  .brunch-showcase__card:nth-child(3),
  .brunch-showcase__card:nth-child(4) {
    transform: rotateY(0) rotateX(0) rotateZ(0);
  }
  .brunch-showcase__card:hover {
    transform: translateY(-4px) scale(1.02);
  }
}


/* --- FAQ PAGE --- */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-category {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-border);
}

.faq-category:first-child {
  margin-top: 0;
}

.faq-item {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--card-radius);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(200, 112, 42, 0.15);
}

.faq-item.active {
  border-color: rgba(200, 112, 42, 0.2);
  box-shadow: var(--shadow-card);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--color-accent);
}

.faq-icon {
  flex-shrink: 0;
  color: var(--color-accent);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  max-height: 600px;
  padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-answer a:hover {
  color: var(--color-accent-hover);
}


/* --- DARK MODE --- */

[data-theme="dark"] {
  --color-bg: #1E1714;
  --color-bg-alt: #261E18;
  --color-bg-warm: #2E241C;
  --color-bg-card: #2A211A;
  --color-text: #F5EDE3;
  --color-text-muted: #B0A295;
  --color-surface: #2A211A;
  --color-border: rgba(245, 237, 227, 0.08);
  --color-accent: #D4892A;
  --color-accent-hover: #E09A35;
  --color-accent-rgb: 212, 137, 42;
  --color-accent-light: rgba(212, 137, 42, 0.1);
  --color-secondary: #C4906A;
  --color-secondary-light: #D4A07A;

  --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.2), 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-card-hover: 0 4px 12px rgba(0, 0, 0, 0.3), 0 12px 32px rgba(0, 0, 0, 0.15);
  --shadow-glow: 0 4px 20px rgba(212, 137, 42, 0.25);

  --nav-bg: rgba(30, 23, 20, 0.88);
  --nav-bg-scrolled: rgba(30, 23, 20, 0.95);
}

/* Hero overlay: blend to dark bg */
[data-theme="dark"] .hero__overlay {
  background: linear-gradient(
    to bottom,
    rgba(30, 23, 20, 0.08) 0%,
    rgba(30, 23, 20, 0.25) 30%,
    rgba(30, 23, 20, 0.50) 55%,
    rgba(30, 23, 20, 0.80) 85%,
    rgba(30, 23, 20, 1.0) 100%
  );
}

/* Page header overlay: blend to dark bg */
[data-theme="dark"] .page-header__overlay {
  background: linear-gradient(
    to bottom,
    rgba(30, 23, 20, 0.15) 0%,
    rgba(30, 23, 20, 0.40) 50%,
    rgba(30, 23, 20, 0.80) 85%,
    rgba(30, 23, 20, 1.0) 100%
  );
}

/* Mobile menu */
[data-theme="dark"] .nav-mobile-menu {
  background: rgba(30, 23, 20, 0.98);
}

/* Trust strip */
[data-theme="dark"] .trust-strip {
  background: #261E18;
  border-top-color: var(--color-border);
  border-bottom-color: var(--color-border);
}

/* btn-secondary border */
[data-theme="dark"] .btn-secondary {
  border-color: rgba(245, 237, 227, 0.15);
}

/* Menu nav sticky bar */
[data-theme="dark"] .menu-nav {
  background: rgba(30, 23, 20, 0.95);
}

/* Menu sauce list */
[data-theme="dark"] .menu-sauce-list {
  background: var(--color-bg-card);
}

/* Specials section */
[data-theme="dark"] #specials {
  background: linear-gradient(180deg, var(--color-bg) 0%, #261E18 15%, #261E18 85%, var(--color-bg) 100%);
}

/* Reviews section */
[data-theme="dark"] #reviews {
  background: linear-gradient(180deg, var(--color-bg) 0%, #221A14 15%, #221A14 85%, var(--color-bg) 100%);
}

/* Footer: slightly darker */
[data-theme="dark"] .site-footer {
  background: #130E0B;
  border-top: 1px solid rgba(212, 137, 42, 0.15);
}

/* Artist spotlight shadow */
[data-theme="dark"] .artist-spotlight {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .artist-card {
  border-top-color: var(--color-border);
}

/* Story deck card shadows */
[data-theme="dark"] .story-deck__card {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15);
}

[data-theme="dark"] .story-deck__card:hover {
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.4), 0 4px 12px rgba(212, 137, 42, 0.15);
}

/* Review card featured */
[data-theme="dark"] .review-card--featured {
  border-color: rgba(212, 137, 42, 0.3);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25), 0 20px 50px rgba(212, 137, 42, 0.08);
}

/* Brunch showcase card hover */
[data-theme="dark"] .brunch-showcase__card:hover {
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3), 0 4px 10px rgba(212, 137, 42, 0.08);
}

/* Brunch panel overlay */
[data-theme="dark"] .brunch-panel__overlay {
  background: rgba(15, 10, 8, 0.6);
}

[data-theme="dark"] .brunch-panel__content {
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.3);
}

/* Form select dropdown arrow — lighter for dark bg */
[data-theme="dark"] .form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23B0A295' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
}

/* Special card hover glow */
[data-theme="dark"] .special-card:hover {
  box-shadow: var(--shadow-card-hover), 0 0 20px rgba(212, 137, 42, 0.08);
}

/* Gallery item overlay */
[data-theme="dark"] .gallery-item__overlay {
  background: rgba(15, 10, 8, 0.45);
}

/* Lightbox — already dark, fine */

/* Section divider lines */
[data-theme="dark"] .section + .section {
  border-image: linear-gradient(90deg, transparent 5%, rgba(212,137,42,0.12) 30%, rgba(212,137,42,0.12) 70%, transparent 95%) 1;
}


/* --- THEME TOGGLE --- */

.theme-toggle {
  position: fixed;
  bottom: 6.5rem;
  right: 1.5rem;
  left: auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
}

.theme-toggle:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
  transform: scale(1.1);
}

@media (max-width: 1023px) {
  .theme-toggle {
    bottom: 8rem;
    right: 1rem;
  }
  .back-to-top {
    bottom: 5rem;
    right: 1rem;
  }
}

@media (min-width: 1024px) {
  .theme-toggle {
    bottom: 3.5rem;
  }
  .back-to-top {
    bottom: 2rem;
  }
}


/* --- THEME TRANSITION --- */

body,
.site-nav,
.nav-mobile-menu,
.site-footer,
.trust-strip,
.special-card,
.review-card,
.contact-info-card,
.faq-item,
.story-deck__card,
.brunch-showcase__card,
.gallery-filter,
.brunch-panel__content,
.theme-toggle,
.back-to-top,
.menu-nav,
.btn-secondary,
.story-card,
.menu-sauce-list,
.form-group input,
.form-group select,
.form-group textarea {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}


/* --- REDUCED MOTION --- */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .review-card--featured {
    animation: none;
    transform: translateY(-12px) scale(1.04) rotate(-1deg);
  }
  .trust-strip::before,
  #specials::before,
  .reviews-section::before {
    animation: none;
  }
}
