/* ============================================================
   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: 1360px;
  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: 5px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 9px 10px;
  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;
  /* Vişne çürüğü zemin, beyaz yazılar */
  background: linear-gradient(165deg, #5C1A2B 0%, #4A1523 100%);
  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: #ffffff;
  transition: color 0.3s var(--ease);
}
.mobile-link:hover { color: var(--gold); }
.mobile-nav__reserve-item { margin-top: -6px; }
.mobile-reserve-btn {
  min-width: 178px;
  justify-content: center;
  font-family: var(--font-sans);
}
.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;
  /* Ken Burns: sürekli, çok yavaş zoom — bkz. @keyframes kenburns */
  transform-origin: 55% 45%;
  animation: kenburns 26s ease-in-out infinite alternate;
  will-change: transform;
}
/* Hero slider: arka plan görselleri üst üste, yumuşak geçişle */
.hero__slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.4s var(--ease), visibility 0s linear 1.4s;
}
.hero__slide.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  transition: opacity 1.4s var(--ease);
}
.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 başlığı: "Grand Gurme" alt alta değil yan yana */
.hero__title .reveal-line {
  display: inline-block;
  vertical-align: baseline;
  overflow: visible;
}
.hero__title .reveal-line + .reveal-line { margin-left: 0; }
.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;
}
/* hover gradyanı kapalı — yemek ismi gösterilmiyor */
.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 { display: none; }

.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 1 auto; min-width: 0; 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: 28px 0; }
.site-footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: rgba(248,245,239,0.78);
  flex-wrap: wrap;
  gap: 12px;
}
.site-footer__credit { font-size: 15px; font-style: italic; color: rgba(248,245,239,0.74); }
.site-footer__credit span { opacity: 0.5; margin: 0 4px; }
.site-footer__credit a { color: var(--gold-light); font-weight: 800; 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; }

/* ============ 18c. TESİS OLANAKLARI ============ */
.amenities { padding: 120px 0; background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%); }
.amenities__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.amenity-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(74, 44, 24, 0.07);
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
}
.amenity-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.amenity-card__icon {
  width: 72px; height: 72px;
  margin: 0 auto 24px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  box-shadow: 0 10px 26px rgba(201, 164, 106, 0.4);
  transition: transform 0.5s var(--ease);
}
.amenity-card:hover .amenity-card__icon { transform: scale(1.1) rotate(-4deg); }
.amenity-card h3 { font-size: 21px; margin-bottom: 12px; }
.amenity-card p { font-size: 14.5px; font-weight: 500; color: #5c5449; line-height: 1.75; }

/* ============ 18d. BLOG — Bolu'yu Keşfet ============ */
.blog { padding: 120px 0; background: var(--light-bg); }
.post-featured {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 56px;
}
.post-featured__img { display: block; position: relative; min-height: 400px; overflow: hidden; }
.post-featured__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.post-featured:hover .post-featured__img img { transform: scale(1.05); }
.post-featured__body { padding: 48px 52px; display: flex; flex-direction: column; justify-content: center; }
.post-featured__body h2 { font-size: clamp(1.7rem, 2.6vw, 2.3rem); line-height: 1.2; margin-bottom: 16px; }

.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.post-card {
  display: flex; flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
}
.post-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.post-card__img { display: block; aspect-ratio: 16/10; overflow: hidden; }
.post-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.post-card:hover .post-card__img img { transform: scale(1.08); }
.post-card__body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.post-card__title { font-size: 21px; line-height: 1.32; margin-bottom: 10px; }
.post-card__excerpt { font-size: 14.5px; font-weight: 500; color: #5c5449; line-height: 1.75; margin-bottom: 20px; flex: 1; }
.post-cat {
  display: inline-flex; align-items: center; gap: 7px; align-self: flex-start;
  background: var(--cream); color: var(--accent);
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 100px; margin-bottom: 14px;
}
.post-cat i { color: var(--gold); font-size: 10px; }
.post-meta { display: flex; flex-wrap: wrap; gap: 16px; font-size: 12.5px; color: #9a9385; margin-bottom: 14px; }
.post-meta i { color: var(--gold); margin-right: 6px; }

/* Article page */
.post-meta--hero { justify-content: center; color: rgba(248,245,239,0.75); margin: 18px 0 0; }
.post-tip {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 22px 26px;
  margin: 30px 0;
}
.post-tip strong { display: block; margin-bottom: 6px; color: var(--dark-brown); }
.post-tip p { margin: 0; font-size: 14.5px; }
.post-cta {
  margin-top: 52px;
  padding: 36px 40px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--dark-brown), var(--primary));
  color: var(--cream);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.post-cta h3 { color: var(--cream); font-size: 23px; margin-bottom: 6px; }
.post-cta p { color: rgba(248,245,239,0.72); font-size: 14.5px; margin: 0; }


/* ============ 18e. INSTAGRAM ============ */
.insta { padding: 110px 0; background: var(--white); }
.insta__handle { display: inline-flex; align-items: center; gap: 8px; margin-top: 8px; font-weight: 700; font-size: 15px; color: var(--accent); }
.insta__handle i { color: var(--gold); font-size: 17px; }
.insta__handle:hover { color: var(--gold); }
.insta__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; margin-top: 46px; }
.insta__item { position: relative; display: block; aspect-ratio: 1/1; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.insta__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.insta__item:hover img { transform: scale(1.12); }
.insta__item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(201,164,106,0.85), rgba(154,107,60,0.85)); opacity: 0; transition: opacity 0.4s var(--ease); }
.insta__item i { position: absolute; inset: 0; z-index: 2; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 26px; opacity: 0; transform: scale(0.6); transition: opacity 0.4s var(--ease), transform 0.4s var(--ease); }
.insta__item:hover::after { opacity: 1; }
.insta__item:hover i { opacity: 1; transform: scale(1); }
.insta__more { display: flex; justify-content: center; margin-top: 42px; }
@media (max-width: 900px) { .insta__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .insta { padding: 80px 0; } .insta__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }

/* 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; }
.cookie-bar__actions [data-cookie="reject"] {
  background: #5C1A2B;
  color: var(--cream);
  border-color: rgba(201, 164, 106, 0.38);
  box-shadow: 0 10px 26px rgba(92, 26, 43, 0.34);
}
.cookie-bar__actions [data-cookie="reject"]:hover {
  background: #741F36;
  color: var(--white);
  border-color: rgba(201, 164, 106, 0.62);
}
.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) {
  .post-grid { grid-template-columns: repeat(2, 1fr); }
  .post-featured { grid-template-columns: 1fr; }
  .post-featured__img { min-height: 300px; }
  .post-featured__body { padding: 36px 32px; }
  .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; }
  /* --per-view JS tarafından yönetilir (initReviewsSlider); CSS ezmesin */
  .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: 1319px) {
  .main-nav, .header-actions .btn--gold, .header-actions .icon-btn { display: none; }
  .menu-toggle { display: flex; }
}

@media (max-width: 900px) {
  .amenities__grid { grid-template-columns: 1fr; }
  .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) {
  .post-grid { grid-template-columns: 1fr; }
  .amenities, .blog { padding: 80px 0; }
  .post-cta { flex-direction: column; align-items: flex-start; padding: 28px 26px; }
  .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 {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr) 36px;
    align-items: center;
    gap: 8px;
    width: 100%;
  }
  .reviews__viewport { min-width: 0; width: 100%; }
  .reviews__slider { width: 100%; }
  .review-card { flex-basis: 100%; min-width: 100%; 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; }
}

/* ============================================================
   20. TESİS OLANAKLARI — FULL-WIDTH PARALLAX BANT
   ============================================================ */
.facility-strip { display: grid; grid-template-columns: repeat(3, 1fr); width: 100%; }
.facility-panel {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}
.facility-panel__media { position: absolute; inset: -14% 0; z-index: 0; }
.facility-panel__media img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  will-change: transform;
}
.facility-panel::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(42,27,19,0.05) 0%, rgba(42,27,19,0.40) 55%, rgba(42,27,19,0.80) 100%);
  transition: background 0.5s var(--ease);
}
.facility-panel:hover::after {
  background: linear-gradient(180deg, rgba(42,27,19,0.02) 0%, rgba(42,27,19,0.30) 55%, rgba(42,27,19,0.72) 100%);
}
.facility-panel + .facility-panel { box-shadow: inset 1px 0 0 rgba(248,245,239,0.16); }
.facility-panel__body { position: relative; z-index: 2; padding: 30px 32px 32px; color: var(--white); }
.facility-panel__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; margin-bottom: 14px;
  border-radius: 50%;
  background: rgba(201,164,106,0.22);
  border: 1px solid rgba(201,164,106,0.55);
  color: var(--gold-light); font-size: 19px;
}
.facility-panel__body h3 {
  font-family: var(--font-serif); font-size: 24px; font-weight: 600;
  color: var(--white); margin-bottom: 6px;
}
.facility-panel__body p { font-size: 14.5px; font-weight: 300; color: rgba(248,245,239,0.82); }

/* ============================================================
   21. SAYFA GÜNCELLENİYOR (Lezzetlerimiz)
   ============================================================ */
.soon { padding: 110px 0 120px; background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%); }
.soon__card {
  max-width: 780px; margin: 0 auto; text-align: center;
  background: var(--white); border: 1px solid rgba(74,44,24,0.08);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  padding: 60px 46px 52px; position: relative; overflow: hidden;
}
.soon__card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}
.soon__icon {
  width: 78px; height: 78px; margin: 0 auto 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; color: var(--gold);
  background: rgba(201,164,106,0.12); border: 1px solid rgba(201,164,106,0.35);
}
.soon__badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--accent); background: rgba(201,164,106,0.14);
  border: 1px solid rgba(201,164,106,0.32);
  padding: 8px 16px; border-radius: 100px; margin-bottom: 20px;
}
.soon__title {
  font-family: var(--font-serif); font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  font-weight: 600; color: var(--primary); line-height: 1.18; margin-bottom: 18px;
}
.soon__title span { color: var(--gold); font-style: italic; }
.soon__desc { font-size: 16px; font-weight: 300; line-height: 1.75; color: var(--text); max-width: 56ch; margin: 0 auto 14px; }
.soon__desc--muted { color: rgba(47,47,47,0.72); font-size: 15px; }
.soon__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 30px; }
.soon__meta {
  display: flex; flex-wrap: wrap; gap: 10px 26px; justify-content: center;
  margin-top: 30px; padding-top: 24px; border-top: 1px solid rgba(74,44,24,0.10);
}
.soon__meta a {
  font-size: 14.5px; font-weight: 500; color: var(--accent);
  display: inline-flex; align-items: center; gap: 8px; transition: color 0.3s var(--ease);
}
.soon__meta a:hover { color: var(--primary); }

/* ============================================================
   22. FRANCHISING
   ============================================================ */
.fr-intro { padding: 110px 0 60px; background: var(--white); }

.fr-steps-section { padding: 110px 0; background: var(--white); }
.fr-steps { list-style: none; display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; }
.fr-step {
  position: relative; background: var(--light-bg);
  border: 1px solid rgba(74,44,24,0.08); border-radius: var(--radius-md);
  padding: 34px 22px 26px;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
}
.fr-step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(201,164,106,0.45); }
.fr-step__num { font-family: var(--font-serif); font-size: 34px; font-weight: 700; color: var(--gold); display: block; line-height: 1; margin-bottom: 14px; }
.fr-step h3 { font-family: var(--font-serif); font-size: 19px; font-weight: 600; color: var(--primary); margin-bottom: 8px; }
.fr-step p { font-size: 14.5px; font-weight: 300; line-height: 1.7; color: var(--text); }

.fr-criteria-section { padding: 110px 0; background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%); }
.fr-criteria-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.fr-criteria-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.fr-criteria-media img { width: 100%; display: block; aspect-ratio: 4/3; object-fit: cover; }
.fr-criteria { list-style: none; margin-top: 26px; display: grid; gap: 14px; }
.fr-criteria li { display: flex; gap: 13px; align-items: flex-start; font-size: 15.5px; font-weight: 300; line-height: 1.65; color: var(--text); }
.fr-criteria i {
  flex: none; width: 24px; height: 24px; margin-top: 2px; border-radius: 50%;
  background: rgba(201,164,106,0.16); color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center; font-size: 11px;
}

.fr-contact-section { padding: 110px 0 120px; background: var(--white); }
.fr-contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-bottom: 50px; }
.fr-contact-card {
  display: block; text-align: center; background: var(--light-bg);
  border: 1px solid rgba(74,44,24,0.08); border-radius: var(--radius-md);
  padding: 34px 20px 28px;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
}
.fr-contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(201,164,106,0.5); }
.fr-contact-card__icon {
  width: 58px; height: 58px; margin: 0 auto 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--gold);
  background: rgba(201,164,106,0.13); border: 1px solid rgba(201,164,106,0.32);
  transition: background 0.4s var(--ease), color 0.4s var(--ease);
}
.fr-contact-card:hover .fr-contact-card__icon { background: var(--gold); color: var(--white); }
.fr-contact-card h3 { font-family: var(--font-serif); font-size: 19px; font-weight: 600; color: var(--primary); margin-bottom: 7px; }
.fr-contact-card p { font-size: 14.5px; font-weight: 300; color: var(--text); line-height: 1.6; margin-bottom: 14px; }
.fr-contact-card__cta {
  font-size: 13px; font-weight: 600; letter-spacing: 0.6px; text-transform: uppercase;
  color: var(--accent); display: inline-flex; align-items: center; gap: 7px;
}
.fr-contact-card__cta i { transition: transform 0.35s var(--ease); }
.fr-contact-card:hover .fr-contact-card__cta i { transform: translateX(5px); }
.fr-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); line-height: 0; }

/* ---- Responsive ---- */
@media (max-width: 1100px) {
  .fr-steps { grid-template-columns: repeat(3, 1fr); }
  .fr-contact-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .facility-strip { grid-template-columns: 1fr; }
  .facility-panel { min-height: 250px; }
  .facility-panel__body { padding: 24px 24px 26px; }
  .fr-criteria-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 720px) {
  .fr-steps { grid-template-columns: 1fr; }
  .fr-contact-grid { grid-template-columns: 1fr; }
  .soon__card { padding: 44px 24px 38px; }
  .soon { padding: 70px 0 80px; }
  .fr-intro { padding: 70px 0 40px; }
  .fr-steps-section, .fr-criteria-section, .fr-contact-section { padding: 70px 0; }
}
@media (prefers-reduced-motion: reduce) {
  .facility-panel__media img { transform: none !important; }
}

/* ============================================================
   23. İMZA LEZZETLER — 2 sütun / yatay kart
   ============================================================ */
/* Dikey kart korunur: üstte büyük foto, altında isim + açıklama.
   Satırda 3 yerine 2 kart. */
.signature__grid--two {
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  /* 2 × 500px + boşluk: kartlar 500px'i aşmaz, böylece ürün fotoğrafları
     kendi çözünürlüğünden büyütülmez (büyütülünce piksel bozuluyordu) */
  max-width: 1032px;
  margin-inline: auto;
}
/* ürün fotoğrafları kare çekilmiş — kırpmadan, tam kadraj göster */
.signature__grid--two .dish-card__img { aspect-ratio: 1 / 1; }
.signature__grid--two .dish-card__body { padding: 26px 28px 30px; }
.signature__grid--two .dish-card__body h3 { font-size: 23px; margin-bottom: 10px; }
.signature__grid--two .dish-card__body p { min-height: 0; font-size: 15px; margin-bottom: 18px; }

@media (max-width: 860px) {
  .signature__grid--two { grid-template-columns: 1fr; gap: 26px; max-width: 500px; }
  .signature__grid--two .dish-card__body { padding: 24px 24px 28px; }
}

/* ============================================================
   24. HERO — KEN BURNS (yavaş zoom)
   ============================================================ */
@keyframes kenburns {
  0%   { transform: scale(1)    translate3d(0, 0, 0); }
  100% { transform: scale(1.12) translate3d(0, -1.2%, 0); }
}

/* ============================================================
   25. SCROLL İLERLEME ÇUBUĞU
   ============================================================ */
.scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 9999;
  height: 3px; width: 0;
  background: linear-gradient(90deg, var(--accent), var(--gold), var(--gold-light));
  box-shadow: 0 0 12px rgba(201,164,106,0.55);
  transition: width 0.08s linear;
  pointer-events: none;
}

/* ============================================================
   26. MARKA FİLİGRANI (logodaki çiçek amblemi)
   ============================================================ */
/* Gerçek <img> ile filigran — mask/clip gibi CSS özelliklerine bağlı değil,
   her tarayıcıda kesin görünür. Bölüm konumlandırma için relative. */
.has-watermark { position: relative; overflow: clip; }
.has-watermark > .container { position: relative; z-index: 1; }
.watermark-img {
  position: absolute;
  z-index: 0;
  top: 24px; right: 30px;
  width: 340px; height: auto;
  opacity: 0.14;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
}
.has-watermark--left .watermark-img { right: auto; left: 30px; }

@media (max-width: 900px) {
  .watermark-img { width: 210px; top: 18px; right: 16px; }
  .has-watermark--left .watermark-img { left: 16px; }
}

/* ============================================================
   27. BÖLÜM AYIRICI (ince altın çizgi + amblem)
   ============================================================ */
.divider {
  display: flex; align-items: center; justify-content: center;
  gap: 20px;
  max-width: 520px; margin: 0 auto;
  padding: 4px 0;
}
.divider::before, .divider::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,164,106,0.55));
}
.divider::after { background: linear-gradient(90deg, rgba(201,164,106,0.55), transparent); }
.divider__mark {
  flex: none; width: 26px; height: 26px;
  background-color: var(--gold);
  -webkit-mask-image: url('../assets/web/amblem-mask.png');
          mask-image: url('../assets/web/amblem-mask.png');
  -webkit-mask-size: contain; mask-size: contain;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center; mask-position: center;
  opacity: 0.9;
}
.section-head .divider { margin-top: 18px; }

/* ============================================================
   28. BUTON PARLAMASI + KART EĞİLMESİ
   ============================================================ */
.btn { position: relative; overflow: hidden; }
.btn::after {
  content: '';
  position: absolute; top: 0; left: -80%;
  width: 45%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.42), transparent);
  transform: skewX(-22deg);
  transition: left 0.75s var(--ease);
  pointer-events: none;
}
.btn:hover::after { left: 130%; }
.btn--outline-dark::after,
.btn--ghost-dark::after { background: linear-gradient(100deg, transparent, rgba(201,164,106,0.30), transparent); }

.tilt { transform-style: preserve-3d; will-change: transform; }
.tilt__inner { transform: translateZ(0); }

/* ============================================================
   29. HARİTA — MARKA TONU
   ============================================================ */
.map-frame, .contact__map, .fr-map { position: relative; }
.map-frame iframe, .contact__map iframe, .fr-map iframe {
  filter: sepia(0.28) saturate(1.18) hue-rotate(-12deg) contrast(1.04) brightness(1.02);
  transition: filter 0.5s var(--ease);
}
.map-frame:hover iframe, .contact__map:hover iframe, .fr-map:hover iframe {
  filter: sepia(0.08) saturate(1.05) contrast(1.01);
}

/* ============================================================
   30. "ŞU AN AÇIK" CANLI DURUM ROZETİ
   ============================================================ */
.open-status {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13.5px; font-weight: 600; letter-spacing: 0.2px;
  padding: 7px 14px; border-radius: 100px;
  border: 1px solid transparent;
  vertical-align: middle;
}
.open-status__dot {
  width: 9px; height: 9px; border-radius: 50%; flex: none; position: relative;
}
.open-status__dot::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  animation: statusPulse 2.2s var(--ease) infinite;
}
@keyframes statusPulse {
  0%   { box-shadow: 0 0 0 0 currentColor; opacity: 0.75; }
  70%  { box-shadow: 0 0 0 9px transparent; opacity: 0; }
  100% { box-shadow: 0 0 0 0 transparent; opacity: 0; }
}
.open-status--open {
  color: #1E7A45; background: rgba(34,160,90,0.12); border-color: rgba(34,160,90,0.32);
}
.open-status--open .open-status__dot { background: #22A05A; color: #22A05A; }
.open-status--closed {
  color: #A8322F; background: rgba(190,60,55,0.11); border-color: rgba(190,60,55,0.30);
}
.open-status--closed .open-status__dot { background: #C0413C; color: #C0413C; }
.open-status__time { font-weight: 400; opacity: 0.85; }
/* çalışma saati satırının altında, kendi satırında ve daha küçük dursun */
.contact__status { display: block; margin-top: 11px; }
.contact__status .open-status,
.site-footer__status .open-status {
  font-size: 12px; padding: 5px 11px; gap: 7px; letter-spacing: 0.1px;
}
.contact__status .open-status__dot,
.site-footer__status .open-status__dot { width: 7px; height: 7px; }
.site-footer__status { margin-top: 8px; }
/* koyu zeminde (footer) */
.site-footer .open-status--open   { color: #7FE0A8; background: rgba(34,160,90,0.16); border-color: rgba(127,224,168,0.30); }
.site-footer .open-status--closed { color: #F0A9A6; background: rgba(200,70,65,0.16); border-color: rgba(240,169,166,0.28); }

/* ============================================================
   31. REZERVASYON FORMU (WhatsApp'a gider)
   ============================================================ */
.reservation { padding: 110px 0; background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%); }
.res-card {
  max-width: 860px; margin: 0 auto;
  background: var(--white);
  border: 1px solid rgba(74,44,24,0.09);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 48px 46px 44px;
  position: relative; overflow: hidden;
}
.res-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}
.res-form__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px 22px; }
.res-field { display: flex; flex-direction: column; gap: 8px; }
.res-field--full { grid-column: 1 / -1; }
.res-field label {
  font-size: 13px; font-weight: 600; letter-spacing: 0.7px; text-transform: uppercase;
  color: var(--accent);
}
.res-field label span { color: #C0413C; }
.res-field input, .res-field select, .res-field textarea {
  font-family: var(--font-sans); font-size: 15.5px; font-weight: 400; color: var(--text);
  background: var(--light-bg);
  border: 1px solid rgba(74,44,24,0.14);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  width: 100%;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.res-field textarea { resize: vertical; min-height: 96px; }
.res-field input:focus, .res-field select:focus, .res-field textarea:focus {
  outline: none; background: var(--white);
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,164,106,0.16);
}
.res-field input.is-invalid, .res-field select.is-invalid {
  border-color: #C0413C; box-shadow: 0 0 0 4px rgba(192,65,60,0.12);
}
.res-field__error { font-size: 12.5px; font-weight: 500; color: #C0413C; min-height: 0; }
.res-form__actions {
  display: flex; flex-wrap: wrap; align-items: center; gap: 16px;
  margin-top: 28px; padding-top: 24px;
  border-top: 1px solid rgba(74,44,24,0.10);
}
.res-form__note { font-size: 13.5px; font-weight: 300; color: rgba(47,47,47,0.7); flex: 1; min-width: 220px; }
.res-preview {
  margin-top: 22px;
  background: #ECE5DB;
  border-radius: var(--radius-md);
  padding: 18px 20px;
}
.res-preview__label {
  font-size: 11.5px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 10px; display: flex; align-items: center; gap: 8px;
}
.res-preview__bubble {
  background: #DCF8C6;
  border-radius: 14px 14px 14px 4px;
  padding: 14px 16px;
  font-size: 14px; line-height: 1.65; color: #22331F;
  white-space: pre-wrap;
  box-shadow: 0 2px 6px rgba(42,27,19,0.08);
}

@media (max-width: 700px) {
  .reservation { padding: 70px 0; }
  .res-card { padding: 34px 22px 30px; }
  .res-form__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   32. SSS AKORDİYON
   ============================================================ */
.faq { padding: 110px 0; background: var(--white); }
.faq__list { max-width: 860px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
  background: var(--light-bg);
  border: 1px solid rgba(74,44,24,0.09);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.faq-item.is-open { border-color: rgba(201,164,106,0.5); box-shadow: var(--shadow-sm); }
.faq-item__q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font-family: var(--font-serif); font-size: 18.5px; font-weight: 600; color: var(--primary);
  padding: 22px 58px 22px 26px;
  position: relative;
  transition: color 0.3s var(--ease);
}
.faq-item__q:hover { color: var(--accent); }
.faq-item__q::after {
  content: '\f078'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; right: 24px; top: 50%; transform: translateY(-50%);
  font-size: 13px; color: var(--gold);
  transition: transform 0.4s var(--ease);
}
.faq-item.is-open .faq-item__q::after { transform: translateY(-50%) rotate(180deg); }
.faq-item__a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.45s var(--ease);
}
.faq-item__a-inner {
  padding: 0 26px 24px;
  font-size: 15.5px; font-weight: 300; line-height: 1.8; color: var(--text);
}
@media (max-width: 700px) {
  .faq { padding: 70px 0; }
  .faq-item__q { font-size: 16.5px; padding: 18px 50px 18px 20px; }
  .faq-item__a-inner { padding: 0 20px 20px; font-size: 15px; }
}

/* ---- Hareket azaltma tercihi ---- */
@media (prefers-reduced-motion: reduce) {
  .hero__img { animation: none; }
  .open-status__dot::after { animation: none; }
  .btn::after { transition: none; }
  .tilt { transform: none !important; }
}

/* ============================================================
   33. MENÜ FLIPBOOK
   ============================================================ */
.menu-flip { padding: 100px 0 110px; background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%); }
.menu-flip .container { max-width: 1840px; }
.pdf-viewer { width: 100%; max-width: 1758px; margin: 30px auto 0; position: relative; }
.flip-loading { text-align: center; color: #8a8172; padding: 60px 0; font-size: 15px; }
.flip-loading i { color: var(--gold); margin-right: 8px; }
.pdf-stage {
  text-align: center;
  position: relative;
  perspective: 1600px;
  cursor: pointer;
}
.pdf-stage::before {
  content: '';
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -18px;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(42, 27, 19, 0.22), rgba(42, 27, 19, 0) 70%);
  z-index: -1;
  pointer-events: none;
}
#pdfCanvas {
  max-width: 100%; height: auto; display: inline-block;
  border-radius: 12px;
  box-shadow: 0 24px 70px rgba(42, 27, 19, 0.18);
  background: #fff;
  transform-origin: center center;
  will-change: transform, filter;
}
.pdf-stage::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: min(32%, 380px);
  opacity: 0;
  border-radius: 12px;
  pointer-events: none;
  z-index: 2;
}
.pdf-stage.is-turning-next #pdfCanvas { animation: pdfTurnNext 0.5s var(--ease); }
.pdf-stage.is-turning-prev #pdfCanvas { animation: pdfTurnPrev 0.5s var(--ease); }
.pdf-stage.is-turning-next::after {
  right: 0;
  background:
    linear-gradient(105deg, transparent 0%, rgba(255,255,255,0.68) 36%, rgba(42,27,19,0.24) 62%, rgba(42,27,19,0.08) 100%);
  animation: pdfCurlNext 0.5s var(--ease);
}
.pdf-stage.is-turning-prev::after {
  left: 0;
  background:
    linear-gradient(75deg, rgba(42,27,19,0.08) 0%, rgba(42,27,19,0.24) 38%, rgba(255,255,255,0.68) 64%, transparent 100%);
  animation: pdfCurlPrev 0.5s var(--ease);
}
#pdfCanvas.turn { animation: pdfTurn 0.45s var(--ease); }
@keyframes pdfTurn { from { opacity: 0.35; transform: translateX(14px); } to { opacity: 1; transform: none; } }
@keyframes pdfTurnNext {
  0% { transform: rotateY(0deg) translateX(0) scale(1); filter: brightness(1); }
  46% { transform: rotateY(-12deg) translateX(-10px) scale(0.992); filter: brightness(0.94); }
  100% { transform: rotateY(0deg) translateX(0) scale(1); filter: brightness(1); }
}
@keyframes pdfTurnPrev {
  0% { transform: rotateY(0deg) translateX(0) scale(1); filter: brightness(1); }
  46% { transform: rotateY(12deg) translateX(10px) scale(0.992); filter: brightness(0.94); }
  100% { transform: rotateY(0deg) translateX(0) scale(1); filter: brightness(1); }
}
@keyframes pdfCurlNext {
  0% { opacity: 0; transform: translateX(18px) skewX(-8deg); }
  45% { opacity: 1; transform: translateX(0) skewX(-4deg); }
  100% { opacity: 0; transform: translateX(-28px) skewX(0); }
}
@keyframes pdfCurlPrev {
  0% { opacity: 0; transform: translateX(-18px) skewX(8deg); }
  45% { opacity: 1; transform: translateX(0) skewX(4deg); }
  100% { opacity: 0; transform: translateX(28px) skewX(0); }
}
.flip-controls { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 24px; }
.flip-page { font-size: 15px; color: var(--brown, #4A2C18); font-weight: 600; min-width: 84px; text-align: center; }
.flip-fallback { text-align: center; padding: 30px 0; }
.flip-fallback p { margin-bottom: 16px; color: var(--text); }
.menu-flip__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 40px; }
@media (max-width: 640px) {
  .menu-flip { padding: 70px 0 80px; }
  .pdf-viewer { margin-top: 18px; }
}

/* Rezervasyon sayfası — üstteki "Ara" butonu */
.res-call-bar { max-width: 860px; margin: 0 auto 26px; }
.res-call-bar .btn { width: 100%; justify-content: center; }
