/* ============================================================
   GRAND GURME KEBAP — Premium Restaurant Demo
   Table of contents:
   1. Variables & Reset
   2. Typography & Layout Utilities
   3. Buttons
   4. Preloader
   5. Header & Navigation
   6. Hero
   7. Features
   8. About
   9. Signature Dishes
   10. QR Menu
   11. Online Order CTA
   12. Gallery + Lightbox
   13. Reviews
   14. Reservation CTA
   15. Contact
   16. Footer
   17. Floating Buttons
   18. Scroll Reveal / Animations
   19. Responsive
   ============================================================ */

/* ============ 1. VARIABLES & RESET ============ */
:root {
  --primary: #4A2C18;
  --dark-brown: #2A1B13;
  --gold: #C9A46A;
  --gold-light: #E4CD9E;
  --cream: #F8F5EF;
  --white: #FFFFFF;
  --light-bg: #FAF8F4;
  --text: #2F2F2F;
  --accent: #9A6B3C;

  --font-serif: 'Fraunces', 'Cormorant Garamond', 'Playfair Display', serif;
  --font-sans: 'Jost', 'Manrope', 'Inter', sans-serif;

  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;

  --shadow-sm: 0 4px 18px rgba(42, 27, 19, 0.06);
  --shadow-md: 0 12px 40px rgba(42, 27, 19, 0.10);
  --shadow-lg: 0 24px 70px rgba(42, 27, 19, 0.18);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--light-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 600; margin: 0; color: var(--dark-brown); }
p { margin: 0; }
iframe { border: 0; }

::selection { background: var(--gold); color: var(--white); }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 10px; }

/* ============ 2. LAYOUT UTILITIES ============ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

section { position: relative; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
  padding: 9px 20px 9px 16px;
  border: 1px solid rgba(201, 164, 106, 0.4);
  border-radius: 100px;
  background: linear-gradient(180deg, rgba(201, 164, 106, 0.1), rgba(201, 164, 106, 0.03));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.section-eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  flex-shrink: 0;
  border-radius: 1.5px;
  background: linear-gradient(135deg, var(--gold), var(--accent));
  transform: rotate(45deg);
  box-shadow: 0 0 0 3px rgba(201, 164, 106, 0.15);
}
.section-eyebrow--gold {
  color: var(--gold-light);
  border-color: rgba(201, 164, 106, 0.45);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.15;
  font-weight: 600;
  margin-bottom: 20px;
}
.section-title span { color: var(--accent); font-style: italic; }

.section-desc {
  font-size: 17px;
  color: #6b6459;
  max-width: 560px;
  line-height: 1.8;
}

.section-head { margin-bottom: 60px; }
.section-head--center { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }
.section-head--center .section-desc { margin-left: auto; margin-right: auto; }

/* ============ 3. BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 34px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn i { font-size: 14px; }

.btn--gold {
  background: linear-gradient(135deg, var(--gold), var(--accent));
  color: var(--white);
  box-shadow: 0 10px 30px rgba(201, 164, 106, 0.35);
}
.btn--gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  opacity: 0;
  z-index: -1;
  transition: opacity 0.5s var(--ease);
}
.btn--gold:hover::before { opacity: 1; }
.btn--gold:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(201, 164, 106, 0.45); }

.btn--outline-cream {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(248, 245, 239, 0.5);
  backdrop-filter: blur(6px);
}
.btn--outline-cream:hover {
  background: rgba(248, 245, 239, 0.12);
  border-color: var(--cream);
  transform: translateY(-4px);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream);
  border: 1px solid transparent;
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.16); transform: translateY(-4px); }

.btn--outline-dark {
  background: transparent;
  color: var(--dark-brown);
  border: 1.5px solid rgba(74, 44, 24, 0.25);
}
.btn--outline-dark:hover { background: var(--dark-brown); color: var(--cream); border-color: var(--dark-brown); transform: translateY(-3px); }

.btn--ghost-dark {
  background: var(--cream);
  color: var(--dark-brown);
}
.btn--ghost-dark:hover { background: var(--gold-light); transform: translateY(-3px); }

.btn--sm { padding: 11px 22px; font-size: 13px; }
.btn--lg { padding: 20px 44px; font-size: 16px; }

/* ============ 4. PRELOADER ============ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--dark-brown);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease), visibility 0.8s var(--ease);
}
.preloader.is-hidden { opacity: 0; visibility: hidden; }
.preloader__mark {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--gold);
  letter-spacing: 0.3em;
  display: flex;
}
.preloader__mark span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: preloaderLetter 1.2s var(--ease) infinite;
}
.preloader__mark span:nth-child(2) { animation-delay: 0.15s; }
.preloader__mark span:nth-child(3) { animation-delay: 0.3s; }
@keyframes preloaderLetter {
  0%, 100% { opacity: 0; transform: translateY(16px); }
  50% { opacity: 1; transform: translateY(0); }
}

/* ============ 5. HEADER & NAVIGATION ============ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 0;
  transition: padding 0.5s var(--ease), background 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.site-header.is-scrolled {
  padding: 10px 0;
  background: rgba(250, 248, 244, 0.85);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow: 0 4px 30px rgba(42, 27, 19, 0.08);
  border-bottom: 1px solid rgba(74, 44, 24, 0.06);
}

.site-header__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}
/* Logo images — white on transparent/dark header, colored on scrolled/cream header */
.brand__logo { height: 46px; width: auto; display: block; transition: height 0.5s var(--ease); }
.site-header.is-scrolled .brand__logo { height: 40px; }
.brand__logo--dark { display: none; }
.site-header.is-scrolled .brand__logo--light { display: none; }
.site-header.is-scrolled .brand__logo--dark { display: block; }
.brand__logo--footer { height: 54px; }
.preloader__logo { height: 62px; width: auto; animation: preloaderPulse 1.4s ease-in-out infinite; }
@keyframes preloaderPulse {
  0%, 100% { opacity: 0.45; transform: scale(0.96); }
  50% { opacity: 1; transform: scale(1); }
}
.brand__mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--accent));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(201, 164, 106, 0.4), inset 0 0 0 1.5px rgba(255,255,255,0.35);
}
.brand__name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.1;
  transition: color 0.4s var(--ease);
}
.site-header.is-scrolled .brand__name { color: var(--dark-brown); }
.brand__name em {
  display: block;
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-top: 1px;
}

.main-nav ul { display: flex; align-items: center; gap: 1px; }
.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 9px 12px;
  border-radius: 100px;
  white-space: nowrap;
  transition: color 0.4s var(--ease), background 0.4s var(--ease);
}
.nav-link i {
  font-size: 11px;
  color: var(--gold);
  transition: color 0.4s var(--ease), transform 0.4s var(--ease);
}
.site-header.is-scrolled .nav-link { color: var(--text); }
.site-header.is-scrolled .nav-link i { color: var(--accent); }
.nav-link:hover, .nav-link.is-active {
  color: var(--gold);
  background: rgba(201, 164, 106, 0.16);
}
.nav-link:hover i { transform: translateY(-1px) scale(1.1); }
.site-header.is-scrolled .nav-link:hover,
.site-header.is-scrolled .nav-link.is-active {
  color: var(--accent);
  background: rgba(154, 107, 60, 0.1);
}

.header-actions { display: flex; align-items: center; gap: 10px; }
.icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  border: 1.5px solid rgba(248, 245, 239, 0.4);
  transition: all 0.4s var(--ease);
  font-size: 15px;
}
.site-header.is-scrolled .icon-btn { color: var(--primary); border-color: rgba(74, 44, 24, 0.22); }
.icon-btn:hover { background: var(--gold); color: var(--white); border-color: var(--gold); transform: translateY(-3px); }
.icon-btn--whatsapp:hover { background: #25D366; border-color: #25D366; }

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1.5px solid rgba(248, 245, 239, 0.35);
}
.site-header.is-scrolled .menu-toggle { border-color: rgba(74, 44, 24, 0.25); }
.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all 0.4s var(--ease);
}
.site-header.is-scrolled .menu-toggle span { background: var(--primary); }
.menu-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.menu-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: var(--dark-brown);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.6s var(--ease), opacity 0.5s var(--ease);
  visibility: hidden;
}
.mobile-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
.mobile-nav ul { display: flex; flex-direction: column; align-items: center; gap: 26px; }
.mobile-link {
  font-family: var(--font-serif);
  font-size: 30px;
  color: var(--cream);
  transition: color 0.3s var(--ease);
}
.mobile-link:hover { color: var(--gold); }
.mobile-nav__footer { display: flex; gap: 16px; }

/* ============ 6. HERO ============ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 660px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark-brown);
}
.hero__media { position: absolute; inset: 0; }
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  animation: heroZoom 24s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 13, 9, 0.62) 0%, rgba(20, 13, 9, 0.58) 45%, rgba(20, 13, 9, 0.88) 100%);
}
.hero__grain {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: 0.25;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--cream);
  padding: 0 24px;
  max-width: 920px;
}
.hero__eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 22px;
  font-weight: 600;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 8.5vw, 6.2rem);
  line-height: 1.02;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 24px;
  text-shadow: 0 6px 30px rgba(0,0,0,0.35);
}
.reveal-line { display: block; overflow: hidden; }
.reveal-line span { display: inline-block; }
.hero__title--script { font-style: italic; color: var(--gold); }
.hero__subtitle {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 300;
  color: rgba(248, 245, 239, 0.92);
  margin-bottom: 40px;
  letter-spacing: 0.01em;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.hero__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 38px;
}

.hero__strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 13px;
  letter-spacing: 0.03em;
  color: rgba(248, 245, 239, 0.8);
  font-weight: 600;
}
.hero__strip i { color: var(--gold); margin-right: 6px; }
.hero__strip-dot { color: var(--gold); opacity: 0.6; }

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(248, 245, 239, 0.7);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 44px;
  background: rgba(248, 245, 239, 0.25);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line i {
  position: absolute;
  top: -44px; left: 0;
  width: 100%; height: 100%;
  background: var(--gold);
  animation: scrollLine 2.2s var(--ease) infinite;
}
@keyframes scrollLine { to { top: 44px; } }

/* ============ 7. FEATURES ============ */
.features {
  background: var(--light-bg);
  padding: 110px 0 90px;
  margin-top: -70px;
  position: relative;
  z-index: 3;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.feature-card {
  background: linear-gradient(165deg, var(--white) 0%, var(--cream) 100%);
  border-radius: var(--radius-lg);
  padding: 40px 28px 34px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease), border-color 0.6s var(--ease);
  border: 1px solid rgba(74, 44, 24, 0.07);
  position: relative;
  overflow: hidden;
}
/* top gold accent bar, revealed on hover */
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease);
}
.feature-card:hover::before { transform: scaleX(1); }
/* soft gold inset border on hover */
.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1.5px transparent;
  transition: box-shadow 0.6s var(--ease);
  pointer-events: none;
}
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 55px rgba(42, 27, 19, 0.14);
}
.feature-card:hover::after { box-shadow: inset 0 0 0 1.5px rgba(201, 164, 106, 0.55); }
.feature-card__icon {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 17px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  color: var(--white);
  margin-bottom: 22px;
  transition: transform 0.5s var(--ease);
  box-shadow: 0 10px 24px rgba(201, 164, 106, 0.4);
}
/* glowing ring around the icon on hover */
.feature-card__icon::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 22px;
  border: 1px solid rgba(201, 164, 106, 0.4);
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.feature-card:hover .feature-card__icon { transform: rotate(-4deg) scale(1.12); }
.feature-card:hover .feature-card__icon::after { opacity: 1; transform: scale(1); }
.feature-card h3 {
  font-size: 20px;
  margin-bottom: 14px;
  position: relative;
  padding-bottom: 13px;
}
.feature-card h3::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transition: width 0.5s var(--ease);
}
.feature-card:hover h3::after { width: 48px; }
.feature-card p { font-size: 14.5px; font-weight: 500; color: #5c5449; line-height: 1.75; letter-spacing: 0.005em; }

/* ============ 8. ABOUT ============ */
.about { padding: 130px 0; background: var(--white); }
.about__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: center;
}
.about__media { position: relative; }
.about__media-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}
.about__media-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.about__media:hover .about__media-frame img { transform: scale(1.06); }
.about__badge {
  position: absolute;
  bottom: -28px;
  right: -24px;
  background: var(--dark-brown);
  color: var(--cream);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid rgba(201,164,106,0.3);
}
.about__badge-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  font-weight: 700;
}
.about__badge-text { font-size: 12px; letter-spacing: 0.05em; margin-top: 6px; line-height: 1.4; }

.about__content .about__text {
  font-size: 16.5px;
  color: #5c5449;
  line-height: 1.9;
  margin: 26px 0 34px;
  max-width: 540px;
}
.about__values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}
.about__values li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--dark-brown);
  padding: 15px 18px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  transition: background 0.4s var(--ease), transform 0.4s var(--ease);
}
.about__values li:hover { background: var(--gold-light); transform: translateX(4px); }
.about__values i { color: var(--accent); font-size: 16px; }

.about__stats {
  display: flex;
  gap: 34px;
  padding-top: 30px;
  border-top: 1px solid rgba(74,44,24,0.1);
}
.about__stat { display: flex; flex-direction: column; }
.about__stat strong { font-family: var(--font-serif); font-size: 2rem; color: var(--accent); font-weight: 700; line-height: 1; }
.about__stat span { font-size: 12.5px; color: #8a8375; margin-top: 6px; letter-spacing: 0.03em; }

/* ============ 9. SIGNATURE DISHES ============ */
.signature { padding: 130px 0; background: var(--light-bg); }
.signature__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.dish-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
  display: flex;
  flex-direction: column;
}
.dish-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.dish-card__img { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.dish-card__img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(42,27,19,0.55) 100%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.dish-card:hover .dish-card__img::after { opacity: 1; }
.dish-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease);
}
.dish-card:hover .dish-card__img img { transform: scale(1.1); }
.dish-card__body { padding: 26px 28px 30px; }
.dish-card__body h3 { font-size: 23px; margin-bottom: 10px; }
.dish-card__body p { font-size: 14.5px; font-weight: 500; color: #5c5449; line-height: 1.75; letter-spacing: 0.005em; margin-bottom: 18px; min-height: 48px; }
.dish-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--accent);
  border-bottom: 1.5px solid transparent;
  transition: border-color 0.4s var(--ease), gap 0.4s var(--ease), color 0.4s var(--ease);
}
.dish-card__link i { transition: transform 0.4s var(--ease); font-size: 11px; }
.dish-card__link:hover { border-color: var(--accent); color: var(--gold); gap: 12px; }
.dish-card__link:hover i { transform: translateX(3px); }

/* ============ 10. QR MENU ============ */
.qr-menu { padding: 130px 0; background: var(--white); overflow: hidden; }
.qr-menu__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  align-items: center;
}
.qr-menu__phone { position: relative; display: flex; justify-content: center; }
.phone-mockup {
  position: relative;
  width: 272px;
  height: 560px;
  background: var(--dark-brown);
  border-radius: 44px;
  padding: 14px;
  box-shadow: var(--shadow-lg);
  animation: phoneFloat 5s ease-in-out infinite;
}
@keyframes phoneFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
.phone-mockup__notch {
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 22px;
  background: var(--dark-brown);
  border-radius: 0 0 16px 16px;
  z-index: 2;
}
.phone-mockup__screen {
  width: 100%; height: 100%;
  background: var(--cream);
  border-radius: 32px;
  padding: 32px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}
.phone-mockup__header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--dark-brown);
}
.phone-mockup__logo {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--accent));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 700;
  flex-shrink: 0;
}
.phone-mockup__tabs {
  display: flex;
  gap: 8px;
  margin-top: 2px;
}
.phone-mockup__tabs span {
  font-size: 10.5px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 100px;
  background: var(--white);
  color: #9a9385;
}
.phone-mockup__tabs span.is-active {
  background: linear-gradient(135deg, var(--gold), var(--accent));
  color: var(--white);
}
.phone-mockup__item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border-radius: 14px;
  padding: 8px;
  box-shadow: var(--shadow-sm);
}
.phone-mockup__thumb {
  width: 46px; height: 46px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.phone-mockup__item-text { display: flex; flex-direction: column; gap: 3px; overflow: hidden; }
.phone-mockup__item-text em { font-style: normal; font-size: 12px; font-weight: 700; color: var(--dark-brown); }
.phone-mockup__item-text small { font-size: 10px; color: #9a9385; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.phone-mockup__qr-row {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--dark-brown);
  color: var(--cream);
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 10.5px;
  font-weight: 600;
}
.phone-mockup__qr-row i { color: var(--gold); font-size: 18px; }
.phone-mockup__glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, rgba(201,164,106,0.35), transparent 65%);
  z-index: -1;
  filter: blur(10px);
}
.qr-menu__float {
  position: absolute;
  color: var(--gold);
  opacity: 0.5;
}
.qr-menu__float--1 { font-size: 38px; top: 8%; left: 2%; animation: floatSlow 6s ease-in-out infinite; }
.qr-menu__float--2 { font-size: 28px; bottom: 6%; right: 2%; animation: floatSlow 7s ease-in-out infinite reverse; }
@keyframes floatSlow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(8deg); }
}
.qr-menu__perks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 34px;
}
.qr-menu__perks li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--dark-brown);
  background: var(--cream);
  padding: 12px 18px;
  border-radius: 100px;
}
.qr-menu__perks i { color: var(--accent); }

/* ============ 11. ONLINE ORDER CTA ============ */
.order-cta {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
  background: var(--dark-brown);
}
.order-cta__media { position: absolute; inset: 0; }
.order-cta__media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.order-cta__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(20,13,9,0.96) 30%, rgba(20,13,9,0.6) 100%),
    radial-gradient(circle at 85% 80%, rgba(201,164,106,0.2), transparent 55%);
}
.order-cta__inner { position: relative; max-width: 660px; }
.order-cta__title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--cream);
  margin-bottom: 20px;
  line-height: 1.1;
}
.order-cta__title span { color: var(--gold); font-style: italic; }
.order-cta__desc {
  color: rgba(248,245,239,0.78);
  font-size: 17px;
  margin-bottom: 38px;
  max-width: 520px;
}
.order-cta__actions { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.order-cta__phone-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--cream);
  border-bottom: 1.5px solid rgba(248,245,239,0.35);
  padding-bottom: 3px;
  transition: border-color 0.4s var(--ease), color 0.4s var(--ease);
}
.order-cta__phone-link:hover { color: var(--gold); border-color: var(--gold); }

/* ============ 12. GALLERY + LIGHTBOX ============ */
.gallery { padding: 130px 0; background: var(--light-bg); }
.gallery-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 46px;
}
.gallery-filter__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent);
  padding: 11px 22px;
  border-radius: 100px;
  border: 1px solid rgba(154, 107, 60, 0.28);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: color 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
}
.gallery-filter__btn i { font-size: 12px; color: var(--gold); transition: color 0.35s var(--ease); }
.gallery-filter__btn:hover { border-color: var(--gold); color: var(--dark-brown); transform: translateY(-2px); }
.gallery-filter__btn.is-active {
  background: linear-gradient(135deg, var(--gold), var(--accent));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(201, 164, 106, 0.35);
}
.gallery-filter__btn.is-active i { color: var(--white); }
.gallery__item.is-hidden { display: none; }
.gallery__grid {
  columns: 4 240px;
  column-gap: 20px;
}
.gallery__item {
  margin: 0 0 20px;
  break-inside: avoid;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  aspect-ratio: var(--ar, 4/3);
}
.gallery__item::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(42,27,19,0.78) 100%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  z-index: 1;
}
.gallery__item:hover::before { opacity: 1; }
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 1s var(--ease);
}
.gallery__item:hover img { transform: scale(1.1); }
.gallery__item figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
  font-weight: 600;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.gallery__item:hover figcaption { opacity: 1; transform: translateY(0); }

.lightbox {
  position: fixed; inset: 0;
  z-index: 2000;
  background: rgba(20,13,9,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 85vw;
  max-height: 82vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}
.lightbox__close, .lightbox__nav {
  position: absolute;
  color: var(--cream);
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  transition: all 0.3s var(--ease);
  font-size: 17px;
}
.lightbox__close:hover, .lightbox__nav:hover { background: var(--gold); color: var(--white); }
.lightbox__close { top: 26px; right: 26px; }
.lightbox__nav--prev { left: 26px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 26px; top: 50%; transform: translateY(-50%); }

/* ============ 13. REVIEWS ============ */
.reviews { padding: 130px 0; background: var(--white); }
.reviews__google {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 14px;
  color: var(--dark-brown);
  background: var(--cream);
  padding: 10px 20px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.reviews__google i { color: #4285F4; font-size: 16px; }
.reviews__stars { color: var(--gold); font-size: 20px; letter-spacing: 4px; margin-bottom: 16px; }

.reviews__stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 56px;
  margin: 50px 0 60px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat__num, .stat__plus {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--accent);
}
.stat__label { display: block; font-size: 12.5px; letter-spacing: 0.08em; text-transform: uppercase; color: #8a8375; margin-top: 6px; white-space: nowrap; }

.reviews__slider-wrap {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
}
.reviews__viewport { flex: 1; overflow: hidden; }
.reviews__slider {
  display: flex;
  transition: transform 0.6s var(--ease);
}
.review-card {
  flex: 0 0 calc(100% / var(--per-view, 3));
  padding: 0 12px;
  box-sizing: border-box;
}
.review-card__inner {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.review-card__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.review-card__top .fa-google { color: #4285F4; font-size: 18px; }
.review-card__stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; }
.review-card p { font-size: 15.5px; font-style: italic; color: var(--dark-brown); line-height: 1.75; margin-bottom: 22px; font-family: var(--font-serif); }
.review-card__author { margin-top: auto; }
.review-card__author span { display: block; font-weight: 700; font-size: 14.5px; }
.review-card__author small { color: #9a9385; font-size: 12px; }

.reviews__arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--dark-brown);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.35s var(--ease);
  font-size: 14px;
}
.reviews__arrow:hover { background: var(--gold); color: var(--white); transform: scale(1.06); }

.reviews__dots { display: flex; justify-content: center; gap: 10px; margin-top: 30px; }
.reviews__dots button {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(74,44,24,0.2);
  transition: all 0.4s var(--ease);
}
.reviews__dots button.is-active { background: var(--gold); width: 26px; border-radius: 6px; }

/* ============ 14. RESERVATION CTA ============ */
.reserve-cta {
  position: relative;
  padding: 160px 0;
  text-align: center;
  overflow: hidden;
}
.reserve-cta__media { position: absolute; inset: 0; }
.reserve-cta__media img { width: 100%; height: 100%; object-fit: cover; }
.reserve-cta__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(42,27,19,0.88), rgba(42,27,19,0.84));
}
.reserve-cta__inner { position: relative; max-width: 640px; margin: 0 auto; }
.reserve-cta__icon { font-size: 38px; color: var(--gold); margin-bottom: 24px; display: block; }
.reserve-cta__title {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  color: var(--cream);
  margin-bottom: 20px;
}
.reserve-cta__title span { color: var(--gold); font-style: italic; }
.reserve-cta__inner p { color: rgba(248,245,239,0.78); font-size: 17px; margin-bottom: 38px; }

/* ============ 15. CONTACT ============ */
.contact { padding: 130px 0; background: var(--light-bg); }
.contact__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: stretch;
}
/* Homepage variant: info on the left, map on the right */
.contact__grid--info-left { grid-template-columns: 0.9fr 1.1fr; }
.contact__grid--info-left .contact__info { justify-content: center; }
.contact__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 460px;
  filter: sepia(10%) saturate(85%);
}
.contact__map iframe { width: 100%; height: 100%; min-height: 460px; }

.contact__info { display: flex; flex-direction: column; }
.contact__list { display: flex; flex-direction: column; gap: 16px; }
.contact__list li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--white);
  padding: 18px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease);
}
.contact__list li:hover { transform: translateX(6px); }
.contact__list i {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--cream);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}
.contact__list strong { display: block; font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.08em; color: #9a9385; margin-bottom: 4px; }
.contact__list span, .contact__list a { font-size: 15px; font-weight: 600; color: var(--dark-brown); }
.contact__list a:hover { color: var(--accent); }

.contact__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }

/* ============ 16. FOOTER ============ */
.site-footer {
  position: relative;
  color: rgba(248,245,239,0.7);
  padding-top: 1px;
  background:
    radial-gradient(120% 90% at 12% 0%, rgba(201,164,106,0.14), transparent 46%),
    radial-gradient(100% 80% at 92% 8%, rgba(154,107,60,0.16), transparent 50%),
    linear-gradient(180deg, var(--primary) 0%, var(--dark-brown) 42%, #20130d 100%);
}
.site-footer__separator {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold) 35%, var(--gold-light) 50%, var(--gold) 65%, transparent);
  opacity: 0.65;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 0.8fr 1fr;
  gap: 50px;
  padding: 80px 0 60px;
  border-bottom: 1px solid rgba(248,245,239,0.08);
}
.site-footer__brand { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.brand__mark--footer { width: 46px; height: 46px; font-size: 16px; }
.brand__name--footer { color: var(--cream); font-size: 21px; }
.site-footer__brand p { font-size: 14px; line-height: 1.8; max-width: 320px; }
.site-footer__social { display: flex; gap: 12px; margin-top: 4px; }
.site-footer__social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(248,245,239,0.18);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.4s var(--ease);
  font-size: 14px;
}
.site-footer__social a:hover { background: var(--gold); border-color: var(--gold); color: var(--white); transform: translateY(-4px); }

.site-footer__col h4 { color: var(--cream); font-family: var(--font-sans); font-size: 14px; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 22px; }
.site-footer__col ul { display: flex; flex-direction: column; gap: 13px; }
.site-footer__col a { font-size: 14px; transition: color 0.3s var(--ease); }
.site-footer__col a:hover { color: var(--gold); }
.site-footer__col li { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.site-footer__col i { color: var(--gold); width: 14px; }

.site-footer__bottom { padding: 22px 0; }
.site-footer__bottom-inner { display: flex; justify-content: space-between; align-items: center; font-size: 12.5px; flex-wrap: wrap; gap: 10px; }
.site-footer__credit { font-style: italic; color: rgba(248,245,239,0.55); }
.site-footer__credit span { opacity: 0.5; margin: 0 4px; }
.site-footer__credit a { color: var(--gold); font-weight: 600; font-style: normal; }

/* ============ 17. FLOATING BUTTONS ============ */
.floating-buttons {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fab {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  color: var(--white);
  box-shadow: var(--shadow-md);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), opacity 0.4s var(--ease);
}
.fab:hover { transform: translateY(-4px) scale(1.05); }
.fab--whatsapp { background: #25D366; }
.fab--phone { background: var(--accent); }
.fab--top {
  background: var(--dark-brown);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}
.fab--top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

/* ============ 18. SCROLL REVEAL ============ */
[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

.feature-card[data-reveal],
.dish-card[data-reveal],
.gallery__item[data-reveal] { transition-delay: calc(var(--i, 0) * 90ms); }

/* ============ 18b. SUBPAGES (page hero, menu list, teasers, timeline, chef, reviews grid) ============ */
.page-hero {
  position: relative;
  padding: 180px 0 90px;
  overflow: hidden;
  background: var(--dark-brown);
  text-align: center;
}
.page-hero__media { position: absolute; inset: 0; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.page-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,13,9,0.75) 0%, rgba(20,13,9,0.55) 45%, rgba(20,13,9,0.92) 100%);
}
.page-hero__inner { position: relative; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(248,245,239,0.6);
  margin-bottom: 22px;
}
.breadcrumb a { color: rgba(248,245,239,0.85); transition: color 0.3s var(--ease); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb i { font-size: 9px; opacity: 0.6; }
.page-hero__title {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 18px;
}
.page-hero__title span { color: var(--gold); font-style: italic; }
.page-hero__desc { color: rgba(248,245,239,0.78); font-size: 17px; max-width: 560px; margin: 0 auto; }

/* Teaser "view all" link */
.section-more { display: flex; justify-content: center; margin-top: 56px; }
.more-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent);
  border-bottom: 1.5px solid rgba(154,107,60,0.3);
  padding-bottom: 4px;
  transition: color 0.4s var(--ease), border-color 0.4s var(--ease), gap 0.4s var(--ease);
}
.more-link i { font-size: 12px; transition: transform 0.4s var(--ease); }
.more-link:hover { color: var(--gold); border-color: var(--gold); gap: 14px; }
.more-link:hover i { transform: translateX(3px); }
.more-link--light { color: var(--gold-light); border-color: rgba(228,205,158,0.35); }
.more-link--light:hover { color: var(--white); border-color: var(--white); }

/* Menu page: QR strip */
.menu-qr-strip {
  background: linear-gradient(135deg, var(--dark-brown), var(--primary));
  border-radius: var(--radius-lg);
  padding: 36px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 90px;
}
.menu-qr-strip__text { display: flex; align-items: center; gap: 18px; }
.menu-qr-strip__text i { font-size: 34px; color: var(--gold); }
.menu-qr-strip__text h3 { color: var(--cream); font-size: 22px; margin-bottom: 4px; }
.menu-qr-strip__text p { color: rgba(248,245,239,0.7); font-size: 14px; }

/* Menu categories */
.menu-category { margin-bottom: 70px; }
.menu-category:last-child { margin-bottom: 0; }
.menu-category__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 34px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(74,44,24,0.12);
}
.menu-category__icon {
  width: 46px; height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.menu-category__head h3 { font-size: 26px; }
.menu-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 50px;
}
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px dashed rgba(74,44,24,0.14);
}
.menu-item__name { font-family: var(--font-serif); font-size: 19px; font-weight: 600; color: var(--dark-brown); }
.menu-item__desc { display: block; font-family: var(--font-sans); font-size: 13.5px; font-weight: 400; color: #8a8375; margin-top: 5px; letter-spacing: 0.005em; }

/* Timeline (about page) */
.timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }
.timeline__step {
  text-align: center;
  padding: 30px 22px;
  background: var(--cream);
  border-radius: var(--radius-md);
  position: relative;
}
.timeline__year { font-family: var(--font-serif); font-size: 1.8rem; color: var(--accent); font-weight: 700; margin-bottom: 10px; }
.timeline__step h4 { font-size: 17px; margin-bottom: 8px; }
.timeline__step p { font-size: 13.5px; color: #8a8375; line-height: 1.6; }

/* Chef / kitchen section */
.chef-section { padding: 130px 0; background: var(--white); }
.chef-section__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 80px; align-items: center; }
.chef-section__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 3/4; }
.chef-section__media img { width: 100%; height: 100%; object-fit: cover; }
.chef-section__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  color: var(--dark-brown);
  line-height: 1.6;
  margin: 24px 0;
}
.chef-section__quote span { color: var(--accent); }

/* Reviews full grid (yorumlar.html) */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.reviews-grid .review-card__inner { height: 100%; }

/* Generic intro paragraph under page-head */
.page-intro { text-align: center; max-width: 640px; margin: 0 auto 60px; color: #6b6459; font-size: 16.5px; line-height: 1.85; }

/* Legal / KVKK prose */
.legal { max-width: 820px; margin: 0 auto; }
.legal h2 { font-size: 26px; margin: 40px 0 14px; }
.legal h2:first-child { margin-top: 0; }
.legal p, .legal li { font-size: 15.5px; line-height: 1.85; color: #5c5449; }
.legal p { margin-bottom: 16px; }
.legal ul { margin: 0 0 18px; padding-left: 22px; list-style: disc; }
.legal li { margin-bottom: 8px; }
.legal a { color: var(--accent); font-weight: 600; }
.legal strong { color: var(--dark-brown); }
.legal__meta { color: #9a9385; font-size: 13.5px; margin-bottom: 34px; }

/* Cookie consent banner */
.cookie-bar {
  position: fixed;
  left: 20px; right: 20px; bottom: 20px;
  z-index: 950;
  max-width: 760px;
  margin: 0 auto;
  background: rgba(42, 27, 19, 0.97);
  color: var(--cream);
  border: 1px solid rgba(201, 164, 106, 0.35);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  transform: translateY(24px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), visibility 0.5s var(--ease);
}
.cookie-bar.is-visible { opacity: 1; transform: translateY(0); visibility: visible; }
.cookie-bar__text { flex: 1; min-width: 240px; font-size: 13.5px; line-height: 1.7; color: rgba(248,245,239,0.85); }
.cookie-bar__text a { color: var(--gold); font-weight: 600; }
.cookie-bar__actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-bar__actions .btn { padding: 12px 22px; font-size: 13px; }
.site-footer__legal { color: rgba(248,245,239,0.55); }
.site-footer__legal a { color: rgba(248,245,239,0.7); }
.site-footer__legal a:hover { color: var(--gold); }
@media (max-width: 560px) {
  .cookie-bar { flex-direction: column; align-items: stretch; text-align: center; padding: 18px; }
  .cookie-bar__actions { justify-content: center; }
}

/* ============ 19. RESPONSIVE ============ */
@media (max-width: 1100px) {
  .about__grid, .qr-menu__grid { grid-template-columns: 1fr; gap: 56px; }
  .about__media-frame { max-width: 460px; margin: 0 auto; }
  .qr-menu__phone { order: 2; }
  .contact__grid { grid-template-columns: 1fr; }
  .contact__map { min-height: 360px; }
  .contact__map iframe { min-height: 360px; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .reviews__slider-wrap { max-width: 720px; }
  .review-card { --per-view: 2; }
  .chef-section__grid { grid-template-columns: 1fr; gap: 50px; }
  .chef-section__media { max-width: 420px; margin: 0 auto; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Collapse the (now icon-rich) nav to a hamburger before it can overflow.
   Full nav shows from 1280px up (standard laptop widths); below that, hamburger. */
@media (max-width: 1279px) {
  .main-nav, .header-actions .btn--gold, .header-actions .icon-btn { display: none; }
  .menu-toggle { display: flex; }
}

@media (max-width: 900px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .signature__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { columns: 3 200px; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 40px; }
  .reviews__stats { gap: 40px; }
  .about__stats { gap: 26px; }
  .menu-list { grid-template-columns: 1fr; gap: 0; }
  .timeline { grid-template-columns: 1fr; gap: 18px; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .site-header__inner { padding: 0 20px; }
  .hero__cta { flex-direction: column; width: 100%; }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .hero__strip { gap: 8px 10px; font-size: 11.5px; }
  .hero__strip-dot { display: none; }
  .features { padding: 80px 0 60px; margin-top: -40px; }
  .features__grid { grid-template-columns: 1fr; }
  .signature__grid { grid-template-columns: 1fr; }
  .about, .signature, .qr-menu, .order-cta, .gallery, .reviews, .contact { padding: 80px 0; }
  .reserve-cta { padding: 100px 0; }
  .about__values { grid-template-columns: 1fr; }
  .about__stats { flex-wrap: wrap; }
  .gallery__grid { columns: 2 150px; column-gap: 12px; }
  .gallery__item { margin-bottom: 12px; }
  .contact__map, .contact__map iframe { min-height: 300px; }
  .contact__actions { flex-direction: column; align-items: stretch; }
  .contact__actions .btn { justify-content: center; }
  .reviews__slider-wrap { gap: 8px; }
  .review-card { --per-view: 1; padding: 0 4px; }
  .review-card__inner { padding: 26px 22px; }
  .reviews__arrow { width: 36px; height: 36px; font-size: 12px; }
  .reviews__stats { gap: 24px; }
  .stat__num, .stat__plus { font-size: 2rem; }
  .site-footer__bottom-inner { flex-direction: column; text-align: center; }
  .floating-buttons { bottom: 16px; right: 16px; gap: 10px; }
  .fab { width: 42px; height: 42px; font-size: 16px; }
  .order-cta__actions { flex-direction: column; align-items: flex-start; gap: 16px; }
  .page-hero { padding: 140px 0 70px; }
  .menu-qr-strip { padding: 28px 26px; flex-direction: column; align-items: flex-start; }
  .chef-section { padding: 80px 0; }
  .reviews-grid { grid-template-columns: 1fr; }
}
