/* ========================================================================
   RUSTIC GRILL — Design System & Styles
   Traditional Premium • 2026 Standard
   ======================================================================== */

/* ---- Google Font ---- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ====================== CUSTOM PROPERTIES ====================== */
:root {
  /* Brand palette — extracted from logo */
  --clr-brand:        #8B1A1A;
  --clr-brand-dark:   #5E1010;
  --clr-brand-light:  #B93333;
  --clr-accent:       #D4A843;
  --clr-accent-dark:  #B08B2E;
  --clr-accent-light: #E8C96E;

  /* Neutrals */
  --clr-bg:           #FDFAF5;
  --clr-bg-alt:       #F5EFDF;
  --clr-bg-dark:      #1A1410;
  --clr-bg-card:      #FFFFFF;
  --clr-text:         #2C2218;
  --clr-text-muted:   #6B5E4F;
  --clr-text-light:   #9B8E7E;
  --clr-text-on-dark: #F5EFDF;
  --clr-border:       #E5DDD0;

  /* Surfaces */
  --glass-bg:         rgba(253, 250, 245, 0.85);
  --glass-blur:       16px;
  --glass-border:     rgba(212, 168, 67, 0.2);

  /* Shadows */
  --shadow-sm:   0 1px 3px rgba(44, 34, 24, 0.06), 0 1px 2px rgba(44, 34, 24, 0.04);
  --shadow-md:   0 4px 12px rgba(44, 34, 24, 0.08), 0 2px 4px rgba(44, 34, 24, 0.04);
  --shadow-lg:   0 12px 40px rgba(44, 34, 24, 0.12), 0 4px 12px rgba(44, 34, 24, 0.06);
  --shadow-xl:   0 24px 64px rgba(44, 34, 24, 0.16), 0 8px 24px rgba(44, 34, 24, 0.08);
  --shadow-glow: 0 0 32px rgba(212, 168, 67, 0.2);

  /* Radii */
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   32px;
  --radius-full: 9999px;

  /* Typography */
  --ff-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --ff-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --fs-xs:   0.75rem;
  --fs-sm:   0.875rem;
  --fs-base: 1rem;
  --fs-md:   1.125rem;
  --fs-lg:   1.25rem;
  --fs-xl:   1.5rem;
  --fs-2xl:  2rem;
  --fs-3xl:  2.5rem;
  --fs-4xl:  3.25rem;
  --fs-5xl:  4rem;

  /* Spacing */
  --sp-xs:  0.25rem;
  --sp-sm:  0.5rem;
  --sp-md:  1rem;
  --sp-lg:  1.5rem;
  --sp-xl:  2rem;
  --sp-2xl: 3rem;
  --sp-3xl: 4rem;
  --sp-4xl: 6rem;

  /* Transitions */
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:  cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast:     150ms;
  --dur-normal:   300ms;
  --dur-slow:     500ms;

  /* Layout */
  --container-max:  1200px;
  --header-height:  80px;
  --header-compact: 64px;
}

/* ====================== RESET & BASE ====================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-compact);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--clr-text);
  background-color: var(--clr-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--clr-brand);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-in-out);
}

a:hover,
a:focus-visible { color: var(--clr-brand-light); }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--sp-xl);
}

/* ====================== SCROLL PROGRESS BAR ====================== */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-brand), var(--clr-accent));
  z-index: 10001;
  transition: none;
}

/* ====================== HEADER ====================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 10000;
  transition: all var(--dur-normal) var(--ease-out);
  background: transparent;
}

.site-header.scrolled {
  height: var(--header-compact);
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--sp-xl);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
}

.header-logo img {
  height: 48px;
  width: auto;
  transition: height var(--dur-normal) var(--ease-out);
}

.site-header.scrolled .header-logo img { height: 40px; }

.header-logo span {
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--clr-bg);
  transition: color var(--dur-normal) var(--ease-out);
}

.site-header.scrolled .header-logo span { color: var(--clr-brand); }

/* Desktop Nav */
.header-nav { display: flex; gap: var(--sp-lg); align-items: center; }

.header-nav a {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  padding: var(--sp-xs) 0;
  transition: color var(--dur-fast) var(--ease-in-out);
}

.site-header.scrolled .header-nav a { color: var(--clr-text-muted); }
.site-header.scrolled .header-nav a:hover { color: var(--clr-brand); }

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--clr-accent);
  transition: width var(--dur-normal) var(--ease-out);
}

.header-nav a:hover::after,
.header-nav a:focus-visible::after { width: 100%; }

.header-nav a:hover { color: #fff; }

/* Header CTA Buttons */
.header-cta {
  display: flex;
  gap: var(--sp-sm);
  align-items: center;
}

.btn-call-header {
  display: flex;
  align-items: center;
  gap: var(--sp-xs);
  padding: var(--sp-sm) var(--sp-lg);
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: var(--fs-sm);
  font-weight: 600;
  transition: all var(--dur-fast) var(--ease-in-out);
  backdrop-filter: blur(8px);
}

.btn-call-header:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-1px);
}

.site-header.scrolled .btn-call-header {
  background: var(--clr-brand);
  border-color: var(--clr-brand);
  color: #fff;
}

.site-header.scrolled .btn-call-header:hover {
  background: var(--clr-brand-dark);
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-sm);
  cursor: pointer;
  z-index: 10002;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--dur-normal) var(--ease-out);
}

.site-header.scrolled .mobile-toggle span { background: var(--clr-text); }

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ====================== BUTTONS ====================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-sm);
  padding: var(--sp-md) var(--sp-2xl);
  border-radius: var(--radius-full);
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--dur-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--dur-fast);
}

.btn:hover::before { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--clr-brand) 0%, var(--clr-brand-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(139, 26, 26, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(139, 26, 26, 0.4);
  color: #fff;
}

.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.35);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-2px);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--clr-brand);
  border-color: var(--clr-brand);
}

.btn-outline:hover {
  background: var(--clr-brand);
  color: #fff;
  transform: translateY(-2px);
}

.btn-accent {
  background: linear-gradient(135deg, var(--clr-accent) 0%, var(--clr-accent-dark) 100%);
  color: var(--clr-bg-dark);
  font-weight: 700;
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-sm {
  padding: var(--sp-sm) var(--sp-lg);
  font-size: var(--fs-sm);
}

.btn-icon { font-size: 1.2em; }

/* ====================== HERO ====================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--clr-bg-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(26, 20, 16, 0.55) 0%,
    rgba(26, 20, 16, 0.4) 40%,
    rgba(26, 20, 16, 0.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: var(--sp-4xl) var(--sp-xl);
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-sm);
  padding: var(--sp-sm) var(--sp-lg);
  background: rgba(212, 168, 67, 0.15);
  border: 1px solid rgba(212, 168, 67, 0.3);
  border-radius: var(--radius-full);
  color: var(--clr-accent-light);
  font-size: var(--fs-sm);
  font-weight: 500;
  margin-bottom: var(--sp-xl);
  backdrop-filter: blur(8px);
}

.hero h1 {
  font-family: var(--ff-heading);
  font-size: var(--fs-5xl);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: var(--sp-lg);
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero h1 span {
  display: block;
  color: var(--clr-accent-light);
  font-style: italic;
  font-size: 0.6em;
  font-weight: 400;
  margin-top: var(--sp-sm);
}

.hero-subtitle {
  font-size: var(--fs-lg);
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin-bottom: var(--sp-2xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: var(--sp-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--sp-2xl);
}

.hero-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-xl);
  flex-wrap: wrap;
}

.social-proof-item {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  padding: var(--sp-sm) var(--sp-lg);
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
}

.stars {
  color: var(--clr-accent);
  font-size: var(--fs-sm);
  letter-spacing: 1px;
}

.social-proof-item .rating {
  font-weight: 700;
  color: #fff;
  font-size: var(--fs-md);
}

.social-proof-item .label {
  color: rgba(255,255,255,0.65);
  font-size: var(--fs-xs);
}

/* ====================== SECTION BASE ====================== */
.section {
  padding: var(--sp-4xl) 0;
}

.section-dark {
  background: var(--clr-bg-dark);
  color: var(--clr-text-on-dark);
}

.section-alt { background: var(--clr-bg-alt); }

.section-header {
  text-align: center;
  margin-bottom: var(--sp-3xl);
}

.section-header .label {
  display: inline-block;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--sp-sm);
}

.section-dark .section-header .label { color: var(--clr-accent-light); }

.section-header h2 {
  font-family: var(--ff-heading);
  font-size: var(--fs-3xl);
  font-weight: 700;
  color: var(--clr-text);
  line-height: 1.2;
  margin-bottom: var(--sp-md);
}

.section-dark .section-header h2 { color: #fff; }

.section-header p {
  font-size: var(--fs-md);
  color: var(--clr-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.section-dark .section-header p { color: rgba(245,239,223,0.7); }

/* Decorative line */
.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-brand), var(--clr-accent));
  margin: var(--sp-md) auto 0;
  border-radius: 2px;
}

/* ====================== BADGE STRIP ====================== */
.badge-strip {
  padding: var(--sp-2xl) 0;
  background: linear-gradient(135deg, var(--clr-brand) 0%, var(--clr-brand-dark) 100%);
}

.badge-strip-inner {
  display: flex;
  justify-content: center;
  gap: var(--sp-3xl);
  flex-wrap: wrap;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  color: #fff;
}

.badge-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.badge-text {
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  font-weight: 600;
  line-height: 1.3;
}

.badge-text small {
  display: block;
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 400;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ====================== STORY / TRADITION ====================== */
.story-section {
  position: relative;
  overflow: hidden;
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3xl);
  align-items: center;
}

.story-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.story-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.story-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid rgba(212,168,67,0.2);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.story-text h2 {
  font-family: var(--ff-heading);
  font-size: var(--fs-3xl);
  color: var(--clr-text);
  margin-bottom: var(--sp-lg);
  line-height: 1.2;
}

.story-text h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-brand), var(--clr-accent));
  margin-top: var(--sp-md);
  border-radius: 2px;
}

.story-text p {
  font-size: var(--fs-md);
  color: var(--clr-text-muted);
  line-height: 1.8;
  margin-bottom: var(--sp-lg);
}

.story-text blockquote {
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  font-style: italic;
  color: var(--clr-brand);
  padding-left: var(--sp-xl);
  border-left: 3px solid var(--clr-accent);
  margin-top: var(--sp-xl);
}

/* ====================== DE CE RUSTIC GRILL (BENEFITS) ====================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--sp-xl);
}

.benefit-card {
  text-align: center;
  padding: var(--sp-2xl) var(--sp-xl);
  border-radius: var(--radius-lg);
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  transition: all var(--dur-normal) var(--ease-out);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--clr-accent);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(139,26,26,0.08), rgba(212,168,67,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-lg);
  font-size: 1.8rem;
}

.benefit-card h3 {
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  font-weight: 600;
  margin-bottom: var(--sp-sm);
  color: var(--clr-text);
}

.benefit-card p {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: 1.6;
}

/* ====================== POPULAR DISHES ====================== */
.dishes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--sp-xl);
}

.dish-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  transition: all var(--dur-normal) var(--ease-out);
  cursor: default;
}

.dish-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.dish-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.dish-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}

.dish-card:hover .dish-card-img img {
  transform: scale(1.06);
}

.dish-card-body {
  padding: var(--sp-lg);
  text-align: center;
}

.dish-card-body h3 {
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--clr-text);
}

/* ====================== GALLERY ====================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--sp-md);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  transition: transform var(--dur-normal) var(--ease-out);
}

.gallery-item:hover { transform: scale(1.02); }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 60%,
    rgba(26, 20, 16, 0.6) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: var(--sp-lg);
  opacity: 0;
  transition: opacity var(--dur-normal) var(--ease-in-out);
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-overlay span {
  color: #fff;
  font-size: var(--fs-sm);
  font-weight: 500;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 20000;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-normal) var(--ease-in-out);
  backdrop-filter: blur(8px);
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
}

.lightbox-close {
  position: absolute;
  top: var(--sp-xl);
  right: var(--sp-xl);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: var(--fs-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--dur-fast);
  border: none;
  cursor: pointer;
}

.lightbox-close:hover { background: rgba(255,255,255,0.25); transform: scale(1.1); }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: var(--fs-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--dur-fast);
  border: none;
  cursor: pointer;
}

.lightbox-nav:hover { background: rgba(255,255,255,0.25); }
.lightbox-prev { left: var(--sp-xl); }
.lightbox-next { right: var(--sp-xl); }

/* ====================== REVIEWS ====================== */
.reviews-track-wrapper {
  overflow: hidden;
  position: relative;
}

.reviews-track {
  display: flex;
  gap: var(--sp-xl);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: var(--sp-md) var(--sp-sm);
}

.reviews-track::-webkit-scrollbar { display: none; }

.review-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
  padding: var(--sp-2xl);
  border-radius: var(--radius-lg);
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  transition: all var(--dur-normal) var(--ease-out);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.review-stars {
  color: var(--clr-accent);
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-md);
  letter-spacing: 2px;
}

.review-text {
  font-size: var(--fs-base);
  color: var(--clr-text);
  line-height: 1.7;
  margin-bottom: var(--sp-lg);
  font-style: italic;
}

.review-text::before { content: '„'; color: var(--clr-accent); font-size: var(--fs-2xl); font-family: var(--ff-heading); }
.review-text::after { content: '"'; color: var(--clr-accent); font-size: var(--fs-2xl); font-family: var(--ff-heading); }

.review-author {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-brand), var(--clr-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: var(--fs-sm);
}

.review-author-info .name {
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--clr-text);
}

.review-author-info .source {
  font-size: var(--fs-xs);
  color: var(--clr-text-light);
}

.reviews-nav {
  display: flex;
  justify-content: center;
  gap: var(--sp-md);
  margin-top: var(--sp-xl);
}

.reviews-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-lg);
  color: var(--clr-text-muted);
  cursor: pointer;
  transition: all var(--dur-fast);
}

.reviews-nav button:hover {
  background: var(--clr-brand);
  color: #fff;
  border-color: var(--clr-brand);
}

/* ====================== CONTACT / SCHEDULE ====================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3xl);
}

.contact-info h3 {
  font-family: var(--ff-heading);
  font-size: var(--fs-2xl);
  color: #fff;
  margin-bottom: var(--sp-xl);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-md);
  margin-bottom: var(--sp-xl);
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(212,168,67,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: var(--clr-accent-light);
}

.contact-item-text .label {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(245,239,223,0.5);
  margin-bottom: var(--sp-xs);
}

.contact-item-text a,
.contact-item-text span {
  font-size: var(--fs-md);
  color: var(--clr-text-on-dark);
  font-weight: 500;
}

.contact-item-text a:hover { color: var(--clr-accent-light); }

.contact-social {
  display: flex;
  gap: var(--sp-md);
  margin-top: var(--sp-xl);
}

.social-link {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text-on-dark);
  font-size: 1.3rem;
  transition: all var(--dur-fast);
  border: 1px solid rgba(255,255,255,0.1);
}

.social-link:hover {
  background: var(--clr-accent);
  color: var(--clr-bg-dark);
  transform: translateY(-2px);
}

/* Schedule */
.schedule-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: var(--sp-2xl);
}

.schedule-card h3 {
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  color: #fff;
  margin-bottom: var(--sp-xl);
  text-align: center;
}

.schedule-row {
  display: flex;
  justify-content: space-between;
  padding: var(--sp-sm) 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: var(--fs-sm);
}

.schedule-row:last-child { border-bottom: none; }

.schedule-day { color: rgba(245,239,223,0.7); }
.schedule-hours { color: var(--clr-accent-light); font-weight: 600; }
.schedule-row.closed .schedule-hours { color: rgba(245, 239, 223, 0.4); }

.contact-cta-group {
  display: flex;
  gap: var(--sp-md);
  margin-top: var(--sp-2xl);
  flex-wrap: wrap;
}

/* ====================== FAQ ====================== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  margin-bottom: var(--sp-md);
  overflow: hidden;
  background: var(--clr-bg-card);
  transition: box-shadow var(--dur-normal) var(--ease-out);
}

.faq-item:hover { box-shadow: var(--shadow-md); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-lg) var(--sp-xl);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--ff-body);
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--clr-text);
  gap: var(--sp-md);
  transition: color var(--dur-fast);
}

.faq-question:hover { color: var(--clr-brand); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--clr-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: var(--fs-sm);
  transition: transform var(--dur-normal) var(--ease-out), background var(--dur-fast);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--clr-brand);
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-normal) var(--ease-out);
}

.faq-answer-inner {
  padding: 0 var(--sp-xl) var(--sp-lg);
  font-size: var(--fs-base);
  color: var(--clr-text-muted);
  line-height: 1.7;
}

/* ====================== FOOTER ====================== */
.site-footer {
  background: var(--clr-bg-dark);
  color: var(--clr-text-on-dark);
  border-top: 1px solid rgba(212,168,67,0.15);
}

.footer-main {
  padding: var(--sp-3xl) 0;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--sp-3xl);
}

.footer-brand img {
  height: 56px;
  margin-bottom: var(--sp-lg);
}

.footer-brand p {
  font-size: var(--fs-sm);
  color: rgba(245,239,223,0.6);
  line-height: 1.7;
  max-width: 320px;
}

.footer-column h4 {
  font-family: var(--ff-heading);
  font-size: var(--fs-md);
  color: var(--clr-accent-light);
  margin-bottom: var(--sp-lg);
}

.footer-column a {
  display: block;
  font-size: var(--fs-sm);
  color: rgba(245,239,223,0.6);
  padding: var(--sp-xs) 0;
  transition: color var(--dur-fast), transform var(--dur-fast);
}

.footer-column a:hover {
  color: var(--clr-accent-light);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: var(--sp-lg) 0;
  text-align: center;
  font-size: var(--fs-xs);
  color: rgba(245,239,223,0.4);
}

/* ====================== ORDER MODAL ====================== */
.order-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 30000;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-normal) var(--ease-in-out);
  backdrop-filter: blur(4px);
}

.order-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.order-modal {
  background: var(--clr-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--sp-2xl) var(--sp-2xl) var(--sp-xl);
  max-width: 440px;
  width: 90%;
  box-shadow: var(--shadow-xl);
  text-align: center;
  transform: translateY(20px) scale(0.96);
  transition: transform var(--dur-normal) var(--ease-spring);
}

.order-modal-overlay.active .order-modal {
  transform: translateY(0) scale(1);
}

.order-modal h3 {
  font-family: var(--ff-heading);
  font-size: var(--fs-2xl);
  color: var(--clr-text);
  margin-bottom: var(--sp-sm);
}

.order-modal > p {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  margin-bottom: var(--sp-xl);
}

.order-modal-options {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.order-option {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  padding: var(--sp-lg);
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border);
  text-align: left;
  cursor: pointer;
  transition: all var(--dur-fast);
  text-decoration: none;
  color: var(--clr-text);
}

.order-option:hover {
  border-color: var(--clr-brand);
  background: rgba(139,26,26,0.04);
  transform: translateX(4px);
  color: var(--clr-text);
}

.order-option-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(139,26,26,0.08), rgba(212,168,67,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.order-option-text .title {
  font-weight: 600;
  font-size: var(--fs-base);
  display: block;
}

.order-option-text .desc {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
}

.order-modal-close {
  margin-top: var(--sp-lg);
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  cursor: pointer;
  background: none;
  border: none;
  padding: var(--sp-sm);
  transition: color var(--dur-fast);
}

.order-modal-close:hover { color: var(--clr-text); }

/* ====================== SCROLL REVEAL ====================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger { transition-delay: var(--stagger-delay, 0s); }

/* ====================== RESPONSIVE ====================== */
@media (max-width: 1024px) {
  .hero h1 { font-size: var(--fs-4xl); }
  .story-content { grid-template-columns: 1fr; }
  .story-image { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: var(--sp-2xl); }
}

@media (max-width: 768px) {
  :root {
    --sp-xl: 1.25rem;
    --sp-4xl: 4rem;
  }

  .header-nav { display: none; }

  .mobile-toggle { display: flex; }

  /* Mobile nav overlay */
  .header-nav.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--clr-bg-dark);
    align-items: center;
    justify-content: center;
    gap: var(--sp-2xl);
    z-index: 10001;
  }

  .header-nav.mobile-open a {
    font-size: var(--fs-xl);
    color: var(--clr-text-on-dark);
  }

  .hero h1 { font-size: var(--fs-3xl); }
  .hero-subtitle { font-size: var(--fs-base); }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-social-proof {
    flex-direction: column;
    gap: var(--sp-md);
  }

  .badge-strip-inner {
    flex-direction: column;
    align-items: center;
    gap: var(--sp-xl);
  }

  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }

  .dishes-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .review-card { flex: 0 0 280px; }

  .section-header h2 { font-size: var(--fs-2xl); }

  .footer-main { grid-template-columns: 1fr; gap: var(--sp-xl); }

  .btn { padding: var(--sp-md) var(--sp-xl); }
}

@media (max-width: 480px) {
  .hero h1 { font-size: var(--fs-2xl); }

  .benefits-grid { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: 1fr; }

  .review-card { flex: 0 0 260px; }

  .btn { width: 100%; }

  .hero-cta .btn { width: 100%; }
}

/* ====================== PREFERS REDUCED MOTION ====================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-bg img { transform: none !important; }
}

/* ====================== FOCUS VISIBLE ====================== */
:focus-visible {
  outline: 2px solid var(--clr-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ====================== SELECTION ====================== */
::selection {
  background: var(--clr-brand);
  color: #fff;
}
