/* ============================================
   SILENT BREW — Premium Coffee Shop
   Design System v1.0
   ============================================ */

/* --------------------------------------------
   CSS Variables
   -------------------------------------------- */
:root {
  /* Primary */
  --color-deep-brown: #2C1810;
  --color-matte-black: #1A1A1A;
  --color-espresso: #3E2723;
  --color-dark-walnut: #4A3228;

  /* Secondary */
  --color-warm-cream: #FFF8F0;
  --color-soft-beige: #F5EDE3;
  --color-off-white: #FAF7F2;
  --color-warm-white: #FDFBF7;

  /* Accent */
  --color-gold: #C8A96E;
  --color-copper: #B87333;
  --color-burnt-orange: #D4764A;
  --color-warm-caramel: #A67C52;
  --color-light-gold: #D4B96E;
  --color-dark-gold: #B8943E;

  /* Neutrals */
  --color-charcoal: #2D2D2D;
  --color-stone: #6B6B6B;
  --color-warm-gray: #8B7D72;
  --color-light-gray: #E8E3DD;
  --color-border-light: rgba(200, 169, 110, 0.15);
  --color-border-medium: rgba(200, 169, 110, 0.3);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-accent: 'Inter', sans-serif;

  /* Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --text-7xl: 4.5rem;
  --text-8xl: 6rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Layout */
  --max-width: 1280px;
  --max-width-narrow: 960px;
  --content-padding: 2rem;
  --section-spacing: 8rem;

  /* Effects */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);
  --shadow-gold: 0 4px 24px rgba(200, 169, 110, 0.2);
  --shadow-warm: 0 8px 32px rgba(44, 24, 16, 0.15);

  /* Glassmorphism */
  --glass-bg: rgba(255, 248, 240, 0.08);
  --glass-border: rgba(255, 248, 240, 0.12);
  --glass-blur: blur(20px);

  /* Transitions */
  --transition-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 400ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 600ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
}

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

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

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-deep-brown);
  background-color: var(--color-warm-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

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

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* --------------------------------------------
   Typography
   -------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-deep-brown);
}

h1 { font-size: var(--text-6xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }

.heading-xl {
  font-size: var(--text-7xl);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.heading-lg {
  font-size: var(--text-5xl);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.heading-md {
  font-size: var(--text-3xl);
  line-height: 1.2;
}

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

.text-body {
  font-size: var(--text-base);
  color: var(--color-stone);
  line-height: 1.8;
  max-width: 65ch;
}

.text-body-lg {
  font-size: var(--text-lg);
  line-height: 1.8;
  color: var(--color-stone);
}

/* --------------------------------------------
   Container
   -------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: var(--content-padding);
  padding-right: var(--content-padding);
}

.container-narrow {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  padding-left: var(--content-padding);
  padding-right: var(--content-padding);
}

/* --------------------------------------------
   Section Spacing
   -------------------------------------------- */
.section {
  padding: var(--section-spacing) 0;
}

.section-dark {
  background-color: var(--color-matte-black);
  color: var(--color-warm-cream);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--color-warm-cream);
}

.section-dark .text-body,
.section-dark .text-body-lg {
  color: var(--color-warm-gray);
}

.section-beige {
  background-color: var(--color-soft-beige);
}

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

/* --------------------------------------------
   Grid System
   -------------------------------------------- */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
}

.grid-bento {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto;
  gap: var(--space-6);
}

/* --------------------------------------------
   Navigation
   -------------------------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: var(--space-6) 0;
  transition: all var(--transition-base);
}

.nav.scrolled {
  background: rgba(26, 26, 26, 0.92);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  padding: var(--space-4) 0;
  box-shadow: 0 1px 0 rgba(255, 248, 240, 0.06);
}

.nav.scrolled-light {
  background: rgba(255, 248, 240, 0.92);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  padding: var(--space-4) 0;
  box-shadow: 0 1px 0 rgba(44, 24, 16, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-warm-cream);
  letter-spacing: -0.02em;
  transition: color var(--transition-fast);
}

.nav.scrolled-light .nav-logo {
  color: var(--color-deep-brown);
}

.nav-logo span {
  color: var(--color-gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav-links a {
  font-family: var(--font-accent);
  font-size: var(--text-sm);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 248, 240, 0.8);
  position: relative;
  padding: var(--space-1) 0;
  transition: color var(--transition-fast);
}

.nav.scrolled-light .nav-links a {
  color: rgba(44, 24, 16, 0.7);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-gold);
  transition: width var(--transition-base);
}

.nav-links a:hover {
  color: var(--color-gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--color-gold);
}

.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-5);
  background: var(--color-gold);
  color: var(--color-matte-black) !important;
  border-radius: var(--radius-full);
  font-weight: 600 !important;
  text-transform: none !important;
  letter-spacing: 0.02em !important;
  transition: all var(--transition-base);
}

.nav-cta:hover {
  background: var(--color-light-gold);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

.nav-cta::after {
  display: none !important;
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-warm-cream);
  border-radius: 2px;
  transition: all var(--transition-base);
  transform-origin: center;
}

.nav.scrolled-light .nav-toggle span {
  background: var(--color-deep-brown);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --------------------------------------------
   Button System
   -------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-8);
  font-family: var(--font-accent);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.6s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-matte-black);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: var(--color-light-gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200, 169, 110, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--color-warm-cream);
  border: 1.5px solid rgba(255, 248, 240, 0.25);
}

.btn-secondary:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateY(-2px);
  background: rgba(200, 169, 110, 0.08);
}

.btn-dark {
  background: transparent;
  color: var(--color-deep-brown);
  border: 1.5px solid var(--color-deep-brown);
}

.btn-dark:hover {
  background: var(--color-deep-brown);
  color: var(--color-warm-cream);
  transform: translateY(-2px);
}

.btn-gold-outline {
  background: transparent;
  color: var(--color-gold);
  border: 1.5px solid var(--color-gold);
}

.btn-gold-outline:hover {
  background: var(--color-gold);
  color: var(--color-matte-black);
  transform: translateY(-2px);
}

.btn-lg {
  padding: var(--space-5) var(--space-10);
  font-size: var(--text-base);
}

.btn-sm {
  padding: var(--space-2) var(--space-5);
  font-size: var(--text-xs);
}

/* --------------------------------------------
   Hero Section
   -------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-matte-black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(200, 169, 110, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 70% 80%, rgba(44, 24, 16, 0.4) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 20%, rgba(200, 169, 110, 0.04) 0%, transparent 60%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, var(--color-matte-black) 100%);
  opacity: 0.4;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(200, 169, 110, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(200, 169, 110, 0.02) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: var(--space-32) 0 var(--space-16);
}

.hero-label {
  font-family: var(--font-accent);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  margin-bottom: var(--space-6);
  display: inline-block;
  padding: var(--space-2) var(--space-5);
  border: 1px solid rgba(200, 169, 110, 0.2);
  border-radius: var(--radius-full);
  backdrop-filter: blur(10px);
  background: rgba(200, 169, 110, 0.06);
}

.hero-title {
  font-size: clamp(3rem, 8vw, var(--text-8xl));
  font-weight: 700;
  color: var(--color-warm-cream);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-6);
}

.hero-title span {
  color: var(--color-gold);
}

.hero-subtitle {
  font-size: var(--text-xl);
  color: rgba(255, 248, 240, 0.7);
  line-height: 1.8;
  max-width: 540px;
  margin-bottom: var(--space-10);
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: var(--space-10);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  color: rgba(255, 248, 240, 0.4);
  font-size: var(--text-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  animation: float 3s ease-in-out infinite;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, rgba(255, 248, 240, 0.4), transparent);
}

/* Hero for inner pages */
.hero-inner {
  min-height: 50vh;
  padding-top: var(--space-20);
  display: flex;
  align-items: center;
  text-align: center;
}

.hero-inner .hero-content {
  margin: 0 auto;
  padding: var(--space-16) 0;
}

.hero-inner .hero-title {
  font-size: clamp(2.5rem, 5vw, var(--text-6xl));
}

.hero-inner .hero-subtitle {
  margin: 0 auto var(--space-8);
}

/* --------------------------------------------
   About Preview / Section
   -------------------------------------------- */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--color-espresso), var(--color-dark-walnut));
}

.about-image::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(200, 169, 110, 0.15);
  border-radius: 50%;
  top: -40px;
  right: -40px;
}

.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--color-gold);
  border-radius: var(--radius-lg);
  opacity: 0.1;
  z-index: 0;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

/* --------------------------------------------
   Featured Menu / Menu Grid
   -------------------------------------------- */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.menu-card {
  position: relative;
  background: var(--color-warm-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  border: 1px solid var(--color-border-light);
  cursor: pointer;
}

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

.menu-card-image {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--color-espresso), var(--color-dark-walnut));
  position: relative;
  overflow: hidden;
}

.menu-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(44, 24, 16, 0.3));
}

.menu-card-badge {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  z-index: 2;
  padding: var(--space-1) var(--space-3);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: var(--radius-full);
}

.badge-popular {
  background: var(--color-gold);
  color: var(--color-matte-black);
}

.badge-new {
  background: var(--color-burnt-orange);
  color: var(--color-warm-cream);
}

.badge-limited {
  background: var(--color-deep-brown);
  color: var(--color-gold);
}

.menu-card-body {
  padding: var(--space-6);
}

.menu-card-title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.menu-card-desc {
  font-size: var(--text-sm);
  color: var(--color-warm-gray);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-light-gray);
}

.menu-card-price {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-gold);
}

.menu-card-rating {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--text-xs);
  color: var(--color-warm-gray);
}

/* --------------------------------------------
   Atmosphere Section
   -------------------------------------------- */
.atmosphere-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 300px 300px;
  gap: var(--space-4);
}

.atmosphere-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--color-espresso), var(--color-dark-walnut));
  cursor: pointer;
}

.atmosphere-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26, 26, 26, 0.7));
  transition: opacity var(--transition-base);
  opacity: 0.7;
}

.atmosphere-item:hover::after {
  opacity: 0.9;
}

.atmosphere-item:first-child {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.atmosphere-item:nth-child(2) {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.atmosphere-item:nth-child(3) {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
}

.atmosphere-item:nth-child(4) {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

.atmosphere-item:nth-child(5) {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
}

.atmosphere-label {
  position: absolute;
  bottom: var(--space-6);
  left: var(--space-6);
  z-index: 2;
  color: var(--color-warm-cream);
}

.atmosphere-label h4 {
  color: var(--color-warm-cream);
  font-size: var(--text-lg);
  margin-bottom: var(--space-1);
}

.atmosphere-label p {
  font-size: var(--text-sm);
  color: rgba(255, 248, 240, 0.6);
}

/* --------------------------------------------
   Why Choose Us
   -------------------------------------------- */
.choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
}

.choose-card {
  text-align: center;
  padding: var(--space-10) var(--space-6);
  border-radius: var(--radius-lg);
  background: var(--color-warm-white);
  border: 1px solid var(--color-border-light);
  transition: all var(--transition-base);
}

.choose-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-warm);
  border-color: var(--color-border-medium);
}

.choose-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-5);
  background: linear-gradient(135deg, rgba(200, 169, 110, 0.1), rgba(200, 169, 110, 0.05));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-2xl);
}

.choose-card h4 {
  margin-bottom: var(--space-3);
}

.choose-card p {
  font-size: var(--text-sm);
  color: var(--color-warm-gray);
  line-height: 1.7;
}

/* --------------------------------------------
   Testimonials
   -------------------------------------------- */
.testimonials {
  overflow: hidden;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.testimonial-card {
  padding: var(--space-10);
  background: var(--color-warm-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 1;
  color: var(--color-gold);
  opacity: 0.15;
  position: absolute;
  top: var(--space-6);
  right: var(--space-8);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-5);
  color: var(--color-gold);
  font-size: var(--text-sm);
}

.testimonial-text {
  font-size: var(--text-base);
  color: var(--color-stone);
  line-height: 1.8;
  margin-bottom: var(--space-6);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold), var(--color-copper));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--color-warm-cream);
}

.testimonial-name {
  font-weight: 600;
  font-size: var(--text-sm);
}

.testimonial-role {
  font-size: var(--text-xs);
  color: var(--color-warm-gray);
}

/* --------------------------------------------
   Gallery
   -------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 280px;
  gap: var(--space-4);
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--color-espresso), var(--color-dark-walnut));
  cursor: pointer;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(26, 26, 26, 0.2));
  opacity: 0;
  transition: opacity var(--transition-base);
}

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

.gallery-item:first-child {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
}

.gallery-item:nth-child(2) {
  grid-column: 3 / 5;
  grid-row: 1 / 2;
}

.gallery-item:nth-child(3) {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}

.gallery-item:nth-child(4) {
  grid-column: 2 / 4;
  grid-row: 2 / 3;
}

.gallery-item:nth-child(5) {
  grid-column: 4 / 5;
  grid-row: 2 / 3;
}

.gallery-item:nth-child(6) {
  grid-column: 1 / 4;
  grid-row: 1 / 2;
}

.gallery-item:nth-child(7) {
  grid-column: 4 / 5;
  grid-row: 1 / 3;
}

/* --------------------------------------------
   CTA Section
   -------------------------------------------- */
.cta-section {
  position: relative;
  overflow: hidden;
  background: var(--color-matte-black);
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 169, 110, 0.06), transparent 70%);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-content h2 {
  color: var(--color-warm-cream);
  margin-bottom: var(--space-6);
}

.cta-content p {
  color: rgba(255, 248, 240, 0.6);
  font-size: var(--text-lg);
  margin-bottom: var(--space-10);
  line-height: 1.8;
}

.cta-actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* --------------------------------------------
   Footer
   -------------------------------------------- */
.footer {
  background: var(--color-matte-black);
  border-top: 1px solid rgba(255, 248, 240, 0.06);
  padding: var(--space-20) 0 var(--space-10);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-12);
  margin-bottom: var(--space-16);
}

.footer-brand h3 {
  color: var(--color-warm-cream);
  margin-bottom: var(--space-4);
}

.footer-brand h3 span {
  color: var(--color-gold);
}

.footer-brand p {
  font-size: var(--text-sm);
  color: var(--color-warm-gray);
  line-height: 1.8;
  max-width: 320px;
}

.footer-heading {
  font-family: var(--font-accent);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-gold);
  margin-bottom: var(--space-6);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-links a {
  font-size: var(--text-sm);
  color: rgba(255, 248, 240, 0.5);
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-gold);
  transform: translateX(4px);
}

.footer-newsletter p {
  font-size: var(--text-sm);
  color: rgba(255, 248, 240, 0.5);
  margin-bottom: var(--space-4);
  line-height: 1.7;
}

.newsletter-form {
  display: flex;
  gap: var(--space-2);
}

.newsletter-form input {
  flex: 1;
  padding: var(--space-3) var(--space-4);
  background: rgba(255, 248, 240, 0.06);
  border: 1px solid rgba(255, 248, 240, 0.1);
  border-radius: var(--radius-full);
  color: var(--color-warm-cream);
  font-size: var(--text-sm);
  outline: none;
  transition: border-color var(--transition-fast);
}

.newsletter-form input::placeholder {
  color: rgba(255, 248, 240, 0.3);
}

.newsletter-form input:focus {
  border-color: var(--color-gold);
}

.newsletter-form button {
  padding: var(--space-3) var(--space-5);
  background: var(--color-gold);
  color: var(--color-matte-black);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: var(--text-sm);
  transition: all var(--transition-fast);
}

.newsletter-form button:hover {
  background: var(--color-light-gold);
}

.footer-bottom {
  padding-top: var(--space-10);
  border-top: 1px solid rgba(255, 248, 240, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer-bottom p {
  font-size: var(--text-sm);
  color: rgba(255, 248, 240, 0.3);
}

.footer-social {
  display: flex;
  gap: var(--space-4);
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 248, 240, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 248, 240, 0.4);
  font-size: var(--text-sm);
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateY(-2px);
}

/* --------------------------------------------
   Menu Page - Category Tabs
   -------------------------------------------- */
.menu-tabs {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-12);
}

.menu-tab {
  padding: var(--space-3) var(--space-6);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-stone);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  background: transparent;
}

.menu-tab:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.menu-tab.active {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-matte-black);
  font-weight: 600;
}

.menu-section-title {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  text-align: center;
  margin-bottom: var(--space-3);
}

.menu-section-desc {
  text-align: center;
  color: var(--color-warm-gray);
  margin-bottom: var(--space-10);
}

/* Menu List (detailed view) */
.menu-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.menu-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) var(--space-6);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.menu-list-item:hover {
  background: rgba(200, 169, 110, 0.04);
}

.menu-list-item-info h4 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-1);
}

.menu-list-item-info p {
  font-size: var(--text-sm);
  color: var(--color-warm-gray);
}

.menu-list-item-price {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-gold);
  white-space: nowrap;
}

.menu-list-item-badge {
  font-size: var(--text-xs);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-left: var(--space-3);
}

/* --------------------------------------------
   Experience / Space Page
   -------------------------------------------- */
.space-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}

.space-showcase-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--color-espresso), var(--color-dark-walnut));
}

.space-showcase-item:first-child {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.space-showcase-item:nth-child(2) {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  aspect-ratio: auto;
}

.space-showcase-item:nth-child(3) {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.feature-item {
  display: flex;
  gap: var(--space-5);
  padding: var(--space-6);
  background: var(--color-warm-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-light);
  transition: all var(--transition-base);
}

.feature-item:hover {
  border-color: var(--color-border-medium);
  transform: translateX(4px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, rgba(200, 169, 110, 0.1), rgba(200, 169, 110, 0.05));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
}

.feature-text h4 {
  margin-bottom: var(--space-2);
}

.feature-text p {
  font-size: var(--text-sm);
  color: var(--color-warm-gray);
  line-height: 1.7;
}

/* --------------------------------------------
   Contact / Order Page
   -------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.contact-info-item {
  display: flex;
  gap: var(--space-5);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, rgba(200, 169, 110, 0.1), rgba(200, 169, 110, 0.05));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-lg);
  color: var(--color-gold);
}

.contact-info-text h4 {
  margin-bottom: var(--space-1);
  font-size: var(--text-lg);
}

.contact-info-text p {
  font-size: var(--text-sm);
  color: var(--color-warm-gray);
  line-height: 1.7;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-group label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-deep-brown);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: var(--space-4) var(--space-5);
  background: var(--color-warm-white);
  border: 1.5px solid var(--color-light-gray);
  border-radius: var(--radius-md);
  color: var(--color-deep-brown);
  font-size: var(--text-base);
  outline: none;
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(200, 169, 110, 0.1);
}

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

/* Order Cards */
.order-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.order-card {
  padding: var(--space-8);
  background: var(--color-warm-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
  text-align: center;
  transition: all var(--transition-base);
  cursor: pointer;
}

.order-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-warm);
  border-color: var(--color-border-medium);
}

.order-card-icon {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-4);
}

.order-card h4 {
  margin-bottom: var(--space-2);
}

.order-card p {
  font-size: var(--text-sm);
  color: var(--color-warm-gray);
  margin-bottom: var(--space-5);
  line-height: 1.7;
}

/* Map placeholder */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-espresso), var(--color-dark-walnut));
  aspect-ratio: 16/9;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-container p {
  color: rgba(255, 248, 240, 0.5);
  font-size: var(--text-sm);
}

/* Business Hours */
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}

.hours-item {
  display: flex;
  justify-content: space-between;
  padding: var(--space-3) 0;
  font-size: var(--text-sm);
  border-bottom: 1px solid var(--color-border-light);
}

.hours-item .day {
  font-weight: 500;
  color: var(--color-deep-brown);
}

.hours-item .time {
  color: var(--color-gold);
  font-weight: 500;
}

/* --------------------------------------------
   Chatbot
   -------------------------------------------- */
.chatbot-toggle {
  position: fixed;
  bottom: var(--space-8);
  right: var(--space-8);
  width: 56px;
  height: 56px;
  background: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-2xl);
  box-shadow: var(--shadow-gold);
  z-index: 999;
  transition: all var(--transition-spring);
  cursor: pointer;
}

.chatbot-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 40px rgba(200, 169, 110, 0.4);
}

.chatbot-window {
  position: fixed;
  bottom: calc(var(--space-8) + 68px);
  right: var(--space-8);
  width: 360px;
  max-height: 520px;
  background: var(--color-warm-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  z-index: 999;
  overflow: hidden;
  display: none;
  flex-direction: column;
  border: 1px solid var(--color-border-light);
}

.chatbot-window.open {
  display: flex;
  animation: slideUp 0.3s ease;
}

.chatbot-header {
  padding: var(--space-5) var(--space-6);
  background: var(--color-deep-brown);
  color: var(--color-warm-cream);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chatbot-header h4 {
  color: var(--color-warm-cream);
  font-size: var(--text-base);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.chatbot-header h4 span {
  width: 8px;
  height: 8px;
  background: #4CAF50;
  border-radius: 50%;
  display: inline-block;
}

.chatbot-close {
  color: rgba(255, 248, 240, 0.5);
  cursor: pointer;
  font-size: var(--text-lg);
  transition: color var(--transition-fast);
}

.chatbot-close:hover {
  color: var(--color-warm-cream);
}

.chatbot-messages {
  flex: 1;
  padding: var(--space-5);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  max-height: 320px;
}

.chatbot-msg {
  max-width: 85%;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  line-height: 1.6;
  animation: fadeIn 0.3s ease;
}

.chatbot-msg.bot {
  background: var(--color-soft-beige);
  color: var(--color-deep-brown);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.chatbot-msg.user {
  background: var(--color-deep-brown);
  color: var(--color-warm-cream);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chatbot-input {
  display: flex;
  padding: var(--space-3) var(--space-5);
  border-top: 1px solid var(--color-light-gray);
  gap: var(--space-2);
}

.chatbot-input input {
  flex: 1;
  border: none;
  outline: none;
  padding: var(--space-2) 0;
  font-size: var(--text-sm);
  color: var(--color-deep-brown);
  background: transparent;
}

.chatbot-input input::placeholder {
  color: var(--color-warm-gray);
}

.chatbot-input button {
  width: 36px;
  height: 36px;
  background: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-matte-black);
  font-size: var(--text-sm);
  transition: all var(--transition-fast);
}

.chatbot-input button:hover {
  background: var(--color-light-gold);
  transform: scale(1.05);
}

/* --------------------------------------------
   Animations
   -------------------------------------------- */
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes goldPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200, 169, 110, 0.4); }
  50% { box-shadow: 0 0 0 12px rgba(200, 169, 110, 0); }
}

@keyframes typing {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger-children.visible > * {
  opacity: 1;
  transform: translateY(0);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.4s; }

/* --------------------------------------------
   Loading Screen
   -------------------------------------------- */
.loading-screen {
  position: fixed;
  inset: 0;
  background: var(--color-matte-black);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--space-6);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-logo {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  color: var(--color-gold);
  letter-spacing: -0.02em;
}

.loading-bar {
  width: 120px;
  height: 2px;
  background: rgba(200, 169, 110, 0.15);
  border-radius: 2px;
  overflow: hidden;
}

.loading-bar-fill {
  height: 100%;
  background: var(--color-gold);
  width: 0%;
  animation: loadingFill 1.8s ease forwards;
}

@keyframes loadingFill {
  to { width: 100%; }
}

/* --------------------------------------------
   Image Placeholders (SVG patterns for demo)
   -------------------------------------------- */
.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 248, 240, 0.3);
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* --------------------------------------------
   Responsive - Tablet
   -------------------------------------------- */
@media (max-width: 1024px) {
  :root {
    --section-spacing: 5rem;
    --content-padding: 1.5rem;
  }

  .heading-xl { font-size: var(--text-5xl); }
  .heading-lg { font-size: var(--text-4xl); }

  .grid-2 { gap: var(--space-10); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .choose-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
  .contact-grid { gap: var(--space-10); }
  .order-cards { grid-template-columns: repeat(2, 1fr); }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .gallery-item:first-child,
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4/3;
  }
}

/* --------------------------------------------
   Responsive - Mobile
   -------------------------------------------- */
@media (max-width: 768px) {
  :root {
    --section-spacing: 4rem;
    --content-padding: 1.25rem;
    --text-6xl: 2.5rem;
    --text-5xl: 2.25rem;
    --text-4xl: 1.875rem;
    --text-3xl: 1.5rem;
  }

  .heading-xl { font-size: var(--text-5xl); }
  .heading-lg { font-size: var(--text-4xl); }

  /* Navigation */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--color-matte-black);
    flex-direction: column;
    padding: var(--space-20) var(--space-8);
    gap: var(--space-6);
    transition: right var(--transition-base);
    z-index: 1000;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: var(--text-base);
  }

  .nav.scrolled-light ~ .nav-links {
    background: var(--color-warm-cream);
  }

  .nav-toggle {
    display: flex;
  }

  .nav-cta {
    margin-top: var(--space-4);
    width: 100%;
    justify-content: center;
  }

  /* Grids */
  .grid-2,
  .about-preview {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-4,
  .choose-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .atmosphere-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .atmosphere-item:first-child {
    grid-column: 1 / 3;
    grid-row: auto;
    aspect-ratio: 4/3;
  }

  .atmosphere-item:nth-child(2),
  .atmosphere-item:nth-child(3),
  .atmosphere-item:nth-child(4),
  .atmosphere-item:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4/3;
  }

  .space-showcase {
    grid-template-columns: 1fr;
  }

  .space-showcase-item:nth-child(2) {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4/3;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .order-cards {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery-item {
    aspect-ratio: 4/3;
  }

  .gallery-item:first-child,
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .hours-grid {
    grid-template-columns: 1fr;
  }

  /* Hero */
  .hero-title {
    font-size: clamp(2.5rem, 12vw, 3.5rem);
  }

  .hero-subtitle {
    font-size: var(--text-base);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Chatbot */
  .chatbot-window {
    width: calc(100% - var(--space-8) * 2);
    right: var(--space-4);
    bottom: calc(var(--space-8) + 60px);
    max-height: 460px;
  }

  .chatbot-toggle {
    width: 48px;
    height: 48px;
    font-size: var(--text-xl);
    bottom: var(--space-4);
    right: var(--space-4);
  }

  /* CTA */
  .cta-actions {
    flex-direction: column;
  }

  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Menu tabs */
  .menu-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: var(--space-2);
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
  }

  .menu-tab {
    white-space: nowrap;
    flex-shrink: 0;
  }
}

/* --------------------------------------------
   Accessibility
   -------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

@media (prefers-color-scheme: dark) {
  /* Dark mode adjustments if needed */
}

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

/* Selection */
::selection {
  background: rgba(200, 169, 110, 0.25);
  color: var(--color-deep-brown);
}
