/* ============================================================
   EDDY AND WILLS — Premium Cafe Website
   Warm artisan aesthetic: exposed brick, timber, cream/terracotta
   ============================================================ */

/* ---------- Google Fonts Import ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&family=Dancing+Script:wght@500;600;700&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  --color-dark: #1a0f08;
  --color-dark-warm: #2d1a0e;
  --color-brown: #4a2c17;
  --color-terracotta: #c87941;
  --color-terracotta-light: #d4915e;
  --color-gold: #d4a574;
  --color-cream: #f5e6d0;
  --color-cream-light: #faf4eb;
  --color-cream-white: #fdf9f3;
  --color-white: #ffffff;
  --color-text-dark: #2c1810;
  --color-text-body: #5a4030;
  --color-text-light: #8a7060;
  --color-text-on-dark: #e8d5c0;
  --color-accent-green: #6b8a5e;
  --color-accent-red: #c45c4a;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-script: 'Dancing Script', cursive;

  --shadow-sm: 0 2px 8px rgba(26, 15, 8, 0.08);
  --shadow-md: 0 4px 20px rgba(26, 15, 8, 0.12);
  --shadow-lg: 0 8px 40px rgba(26, 15, 8, 0.16);
  --shadow-xl: 0 16px 60px rgba(26, 15, 8, 0.2);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --transition-fast: 0.2s ease;
  --transition-medium: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --container-max: 1200px;
  --container-narrow: 800px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

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

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

ul, ol {
  list-style: none;
}

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

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

/* ---------- Utility Classes ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

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

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

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-text-dark);
  line-height: 1.2;
  font-weight: 600;
}

.section-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-terracotta);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--color-text-light);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

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

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

.dark-section .section-subtitle {
  color: var(--color-text-on-dark);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--color-terracotta);
  color: var(--color-white);
}

.btn--primary:hover {
  background: #b56830;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 121, 65, 0.35);
}

.btn--secondary {
  background: transparent;
  color: var(--color-cream);
  border: 2px solid rgba(245, 230, 208, 0.4);
}

.btn--secondary:hover {
  border-color: var(--color-cream);
  background: rgba(245, 230, 208, 0.1);
  transform: translateY(-2px);
}

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

.btn--outline:hover {
  background: var(--color-terracotta);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 121, 65, 0.3);
}

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

.btn--dark:hover {
  background: var(--color-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ---------- NAVIGATION ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition-medium);
}

.navbar.scrolled {
  background: rgba(26, 15, 8, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.nav-logo {
  font-family: var(--font-script);
  font-size: 28px;
  color: var(--color-cream);
  font-weight: 600;
  letter-spacing: 1px;
  transition: color var(--transition-fast);
}

.nav-logo:hover {
  color: var(--color-terracotta-light);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(245, 230, 208, 0.8);
  position: relative;
  padding: 4px 0;
}

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

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-cream);
}

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

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 121, 65, 0.2);
  border: 1px solid rgba(200, 121, 65, 0.3);
  padding: 10px 20px;
  border-radius: 50px;
  color: var(--color-terracotta-light);
  font-weight: 600;
  font-size: 14px;
  transition: all var(--transition-medium);
}

.nav-phone:hover {
  background: var(--color-terracotta);
  color: var(--color-white);
  border-color: var(--color-terracotta);
}

.nav-phone svg {
  width: 16px;
  height: 16px;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--color-cream);
  transition: all var(--transition-medium);
  border-radius: 2px;
}

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

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

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

/* Mobile Navigation Overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 15, 8, 0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  transition: opacity var(--transition-medium);
}

.mobile-nav.active {
  display: flex;
  opacity: 1;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--color-cream);
  opacity: 0.8;
  transition: all var(--transition-fast);
}

.mobile-nav a:hover {
  opacity: 1;
  color: var(--color-terracotta-light);
}

.mobile-nav .nav-phone {
  margin-top: 20px;
  font-size: 16px;
  padding: 14px 28px;
}

/* ---------- HERO SECTION ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    #0d0704 0%,
    #1a0f08 20%,
    #2d1a0e 40%,
    #3d2415 60%,
    #2a1509 80%,
    #0d0704 100%
  );
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(200, 121, 65, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(212, 165, 116, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(139, 90, 43, 0.08) 0%, transparent 40%);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c87941' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 24px;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 121, 65, 0.15);
  border: 1px solid rgba(200, 121, 65, 0.3);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 32px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-terracotta-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 80px);
  color: var(--color-cream);
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 700;
}

.hero-title em {
  font-family: var(--font-script);
  color: var(--color-terracotta-light);
  font-style: normal;
  font-weight: 600;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(245, 230, 208, 0.7);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.8;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-info {
  margin-top: 60px;
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-info-item {
  text-align: center;
}

.hero-info-item .icon {
  font-size: 20px;
  margin-bottom: 6px;
}

.hero-info-item .label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(245, 230, 208, 0.4);
  margin-bottom: 4px;
}

.hero-info-item .value {
  font-size: 14px;
  color: var(--color-cream);
  font-weight: 500;
}

/* Steam / Particle Effects */
.steam-container {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  width: 200px;
  height: 300px;
  pointer-events: none;
}

.steam-particle {
  position: absolute;
  bottom: 0;
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  animation: steamRise linear infinite;
  filter: blur(2px);
}

.steam-particle:nth-child(1) { left: 30%; animation-duration: 4s; animation-delay: 0s; }
.steam-particle:nth-child(2) { left: 50%; animation-duration: 3.5s; animation-delay: 0.5s; width: 8px; height: 8px; }
.steam-particle:nth-child(3) { left: 70%; animation-duration: 4.5s; animation-delay: 1s; }
.steam-particle:nth-child(4) { left: 40%; animation-duration: 3.8s; animation-delay: 1.5s; width: 5px; height: 5px; }
.steam-particle:nth-child(5) { left: 60%; animation-duration: 4.2s; animation-delay: 2s; }
.steam-particle:nth-child(6) { left: 35%; animation-duration: 3.6s; animation-delay: 2.5s; width: 7px; height: 7px; }
.steam-particle:nth-child(7) { left: 55%; animation-duration: 4.8s; animation-delay: 0.8s; }
.steam-particle:nth-child(8) { left: 45%; animation-duration: 3.2s; animation-delay: 1.2s; width: 4px; height: 4px; }
.steam-particle:nth-child(9) { left: 65%; animation-duration: 5s; animation-delay: 1.8s; }
.steam-particle:nth-child(10) { left: 50%; animation-duration: 4.4s; animation-delay: 0.3s; width: 9px; height: 9px; }

@keyframes steamRise {
  0% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-280px) translateX(20px) scale(2.5);
    opacity: 0;
  }
}

/* Floating Food Icons */
.floating-icons {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}

.floating-icon {
  position: absolute;
  font-size: 32px;
  opacity: 0.12;
  animation: floatDrift linear infinite;
}

.floating-icon:nth-child(1) { top: 15%; left: 8%; animation-duration: 18s; animation-delay: 0s; font-size: 28px; }
.floating-icon:nth-child(2) { top: 25%; right: 12%; animation-duration: 22s; animation-delay: 2s; font-size: 36px; }
.floating-icon:nth-child(3) { top: 60%; left: 5%; animation-duration: 20s; animation-delay: 4s; font-size: 24px; }
.floating-icon:nth-child(4) { top: 70%; right: 8%; animation-duration: 16s; animation-delay: 1s; font-size: 30px; }
.floating-icon:nth-child(5) { top: 40%; left: 15%; animation-duration: 24s; animation-delay: 3s; font-size: 26px; }
.floating-icon:nth-child(6) { top: 80%; left: 20%; animation-duration: 19s; animation-delay: 5s; font-size: 22px; }
.floating-icon:nth-child(7) { top: 10%; right: 25%; animation-duration: 21s; animation-delay: 1.5s; font-size: 34px; }
.floating-icon:nth-child(8) { top: 50%; right: 18%; animation-duration: 17s; animation-delay: 3.5s; font-size: 28px; }

@keyframes floatDrift {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg);
  }
  25% {
    transform: translateY(-30px) translateX(15px) rotate(10deg);
  }
  50% {
    transform: translateY(-10px) translateX(-10px) rotate(-5deg);
  }
  75% {
    transform: translateY(-40px) translateX(20px) rotate(15deg);
  }
  100% {
    transform: translateY(0) translateX(0) rotate(0deg);
  }
}

/* Coffee Cup SVG in Hero */
.hero-coffee-cup {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  opacity: 0.08;
}

.hero-coffee-cup svg {
  width: 120px;
  height: auto;
}

/* ---------- SPECIALS / HIGHLIGHTS STRIP ---------- */
.highlights-strip {
  background: var(--color-terracotta);
  padding: 20px 0;
  overflow: hidden;
}

.highlights-track {
  display: flex;
  gap: 60px;
  animation: scrollStrip 30s linear infinite;
  white-space: nowrap;
}

.highlights-track span {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-white);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.highlights-track span::before {
  content: '';
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

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

/* ---------- SECTION: Featured Menu Cards ---------- */
.menu-preview {
  background: var(--color-cream-white);
}

.menu-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.menu-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-medium);
  cursor: pointer;
}

.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.menu-card-image {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.menu-card-image .gradient-placeholder {
  width: 100%;
  height: 100%;
  transition: transform var(--transition-slow);
}

.menu-card:hover .gradient-placeholder {
  transform: scale(1.08);
}

.gradient-placeholder--breakfast {
  background: linear-gradient(135deg, #f5c882 0%, #d4915e 30%, #a0652e 60%, #6b4020 100%);
}

.gradient-placeholder--lunch {
  background: linear-gradient(135deg, #8fa87a 0%, #6b8a5e 30%, #4a6b3a 60%, #2d4a22 100%);
}

.gradient-placeholder--coffee {
  background: linear-gradient(135deg, #d4a574 0%, #a07040 30%, #6b4520 60%, #3d2810 100%);
}

.gradient-placeholder--brunch {
  background: linear-gradient(135deg, #f0d4a0 0%, #d4a574 30%, #b08050 60%, #8a6040 100%);
}

.gradient-placeholder--sweets {
  background: linear-gradient(135deg, #e8c0a0 0%, #d4a080 30%, #c08060 60%, #a06848 100%);
}

.gradient-placeholder--sides {
  background: linear-gradient(135deg, #c8d8a0 0%, #a0b870 30%, #809848 60%, #607830 100%);
}

.menu-card-image .card-emoji {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 56px;
  opacity: 0.4;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.menu-card-body {
  padding: 28px;
}

.menu-card-body h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.menu-card-body p {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

.menu-card-body .card-price {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--color-terracotta);
  font-weight: 600;
}

.menu-card-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--color-terracotta);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---------- ABOUT TEASER ---------- */
.about-teaser {
  background: var(--color-dark);
  position: relative;
  overflow: hidden;
}

.about-teaser::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 121, 65, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.about-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

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

.about-teaser-content h2 {
  color: var(--color-cream);
  font-size: clamp(32px, 4vw, 44px);
  margin-bottom: 24px;
}

.about-teaser-content p {
  color: var(--color-text-on-dark);
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 16px;
}

.about-teaser-content .btn {
  margin-top: 16px;
}

.about-teaser-visual {
  position: relative;
  height: 450px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #2d1a0e 0%, #4a2c17 50%, #6b4020 100%);
}

.about-teaser-visual::before {
  content: '"';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 200px;
  color: rgba(200, 121, 65, 0.15);
  line-height: 1;
}

.about-stat {
  position: absolute;
  background: rgba(200, 121, 65, 0.9);
  color: var(--color-white);
  padding: 20px 28px;
  border-radius: var(--radius-md);
  bottom: 24px;
  right: 24px;
  text-align: center;
}

.about-stat .number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  display: block;
}

.about-stat .text {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.9;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  background: var(--color-cream-light);
  position: relative;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 121, 65, 0.2), transparent);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.testimonial-card {
  background: var(--color-white);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all var(--transition-medium);
}

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

.testimonial-stars {
  color: #f0b840;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text-body);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: var(--color-white);
}

.testimonial-avatar--1 { background: var(--color-terracotta); }
.testimonial-avatar--2 { background: var(--color-accent-green); }
.testimonial-avatar--3 { background: var(--color-brown); }

.testimonial-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--color-text-dark);
}

.testimonial-source {
  font-size: 12px;
  color: var(--color-text-light);
}

/* ---------- GALLERY MOSAIC ---------- */
.gallery {
  background: var(--color-dark-warm);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 16px;
  margin-top: 56px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all var(--transition-medium);
}

.gallery-item:hover {
  transform: scale(1.02);
  z-index: 2;
}

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

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

.gallery-item .gradient-bg {
  width: 100%;
  height: 100%;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 15, 8, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-medium);
}

.gallery-overlay span {
  color: var(--color-cream);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
}

.gallery-bg-1 { background: linear-gradient(135deg, #d4a574, #8b5a2b); }
.gallery-bg-2 { background: linear-gradient(135deg, #6b8a5e, #3d5a2e); }
.gallery-bg-3 { background: linear-gradient(135deg, #c87941, #7a4520); }
.gallery-bg-4 { background: linear-gradient(135deg, #a0652e, #5a3518); }
.gallery-bg-5 { background: linear-gradient(135deg, #e8c0a0, #b08050); }
.gallery-bg-6 { background: linear-gradient(135deg, #8fa87a, #5a7040); }

/* ---------- CTA BANNER ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--color-terracotta) 0%, #a0582e 50%, #7a3f1e 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M20 20c0-5.5-4.5-10-10-10S0 14.5 0 20s4.5 10 10 10 10-4.5 10-10zm20 0c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10z'/%3E%3C/g%3E%3C/svg%3E");
}

.cta-banner h2 {
  color: var(--color-white);
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  margin-bottom: 36px;
  position: relative;
  z-index: 2;
}

.cta-banner .btn {
  position: relative;
  z-index: 2;
}

.cta-banner .btn--white {
  background: var(--color-white);
  color: var(--color-terracotta);
  font-weight: 700;
}

.cta-banner .btn--white:hover {
  background: var(--color-cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--color-dark);
  color: var(--color-text-on-dark);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(200, 121, 65, 0.15);
}

.footer-brand .nav-logo {
  font-size: 32px;
  display: inline-block;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(232, 213, 192, 0.7);
  max-width: 300px;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(200, 121, 65, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-medium);
  color: var(--color-terracotta-light);
}

.footer-social a:hover {
  background: var(--color-terracotta);
  color: var(--color-white);
  transform: translateY(-3px);
}

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

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-cream);
  margin-bottom: 24px;
}

.footer-col a,
.footer-col p {
  display: block;
  font-size: 14px;
  color: rgba(232, 213, 192, 0.65);
  margin-bottom: 12px;
  transition: color var(--transition-fast);
  line-height: 1.6;
}

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

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(232, 213, 192, 0.4);
}

.google-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.google-rating .stars {
  color: #f0b840;
}

/* ---------- MENU PAGE ---------- */
.page-hero {
  background: linear-gradient(135deg, #0d0704 0%, #2d1a0e 50%, #1a0f08 100%);
  padding: 160px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(200, 121, 65, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(212, 165, 116, 0.08) 0%, transparent 50%);
}

.page-hero h1 {
  color: var(--color-cream);
  font-size: clamp(38px, 6vw, 64px);
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.page-hero p {
  color: rgba(245, 230, 208, 0.7);
  font-size: 18px;
  position: relative;
  z-index: 2;
  max-width: 500px;
  margin: 0 auto;
}

.page-hero .decorative-line {
  width: 60px;
  height: 3px;
  background: var(--color-terracotta);
  margin: 24px auto 0;
  border-radius: 2px;
  position: relative;
  z-index: 2;
}

/* Menu Section */
.menu-section {
  padding: 80px 0;
}

.menu-section:nth-child(even) {
  background: var(--color-cream-light);
}

.menu-section-header {
  text-align: center;
  margin-bottom: 56px;
}

.menu-section-header h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 12px;
}

.menu-section-header p {
  color: var(--color-text-light);
  font-size: 16px;
}

.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.menu-item {
  display: flex;
  gap: 20px;
  background: var(--color-white);
  padding: 24px;
  border-radius: var(--radius-md);
  transition: all var(--transition-medium);
  box-shadow: var(--shadow-sm);
}

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

.menu-item-image {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.menu-item-content {
  flex: 1;
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 6px;
}

.menu-item-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-dark);
}

.menu-item-price {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-terracotta);
  white-space: nowrap;
  margin-left: 12px;
}

.menu-item-desc {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.6;
}

.menu-item-tags {
  display: flex;
  gap: 6px;
  margin-top: 8px;
}

.menu-item-tag {
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tag-vegan {
  background: rgba(107, 138, 94, 0.15);
  color: var(--color-accent-green);
}

.tag-gf {
  background: rgba(200, 121, 65, 0.15);
  color: var(--color-terracotta);
}

.tag-popular {
  background: rgba(196, 92, 74, 0.12);
  color: var(--color-accent-red);
}

.tag-df {
  background: rgba(74, 44, 23, 0.1);
  color: var(--color-brown);
}

/* ---------- ABOUT PAGE ---------- */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-story-content h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 24px;
}

.about-story-content p {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 16px;
  color: var(--color-text-body);
}

.about-image-placeholder {
  height: 500px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #2d1a0e, #4a2c17, #6b4020);
  position: relative;
  overflow: hidden;
}

.about-image-placeholder::after {
  content: '☕';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 80px;
  opacity: 0.15;
}

/* Values */
.values-section {
  background: var(--color-cream-light);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.value-card {
  text-align: center;
  padding: 48px 32px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-medium);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.value-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.value-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* Team */
.team-section {
  background: var(--color-dark);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

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

.team-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  background: linear-gradient(135deg, var(--color-terracotta), var(--color-brown));
}

.team-card h3 {
  color: var(--color-cream);
  font-size: 20px;
  margin-bottom: 6px;
}

.team-card .role {
  color: var(--color-terracotta-light);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 12px;
  display: block;
}

.team-card p {
  color: rgba(232, 213, 192, 0.65);
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
  margin: 0 auto;
}

/* ---------- CONTACT PAGE ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-form-wrapper h2 {
  font-size: 32px;
  margin-bottom: 8px;
}

.contact-form-wrapper > p {
  color: var(--color-text-light);
  margin-bottom: 32px;
  font-size: 16px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-dark);
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 14px 16px;
  border: 2px solid rgba(74, 44, 23, 0.12);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  color: var(--color-text-dark);
  font-size: 15px;
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-terracotta);
  box-shadow: 0 0 0 4px rgba(200, 121, 65, 0.1);
}

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

.contact-info-panel {
  background: var(--color-dark);
  border-radius: var(--radius-lg);
  padding: 48px;
  color: var(--color-text-on-dark);
}

.contact-info-panel h3 {
  color: var(--color-cream);
  font-size: 24px;
  margin-bottom: 32px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(200, 121, 65, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}

.contact-info-text h4 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-cream);
  margin-bottom: 4px;
}

.contact-info-text p,
.contact-info-text a {
  font-size: 14px;
  color: rgba(232, 213, 192, 0.7);
  line-height: 1.6;
}

.contact-info-text a:hover {
  color: var(--color-terracotta-light);
}

.contact-map-placeholder {
  margin-top: 32px;
  height: 200px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #1a0f08, #2d1a0e);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200, 121, 65, 0.15);
}

.contact-map-placeholder span {
  color: rgba(232, 213, 192, 0.4);
  font-size: 14px;
}

/* ---------- SCROLL ANIMATIONS ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .menu-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-teaser-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-teaser-visual {
    height: 350px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

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

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

  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-image-placeholder {
    height: 350px;
  }

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

  .values-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-phone-desktop {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .section-padding {
    padding: 60px 0;
  }

  .hero {
    min-height: 90vh;
  }

  .hero-info {
    gap: 24px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

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

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

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

  .menu-items-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-brand p {
    margin: 0 auto 24px;
  }

  .footer-social {
    justify-content: center;
  }

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

  .values-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 140px 0 80px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 36px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 140px);
  }

  .hero-info {
    flex-direction: column;
    gap: 16px;
  }

  .container {
    padding: 0 16px;
  }
}
