/* ==========================================================================
   Dönerci Hamit Efendi — Ana Stil Dosyası
   ========================================================================== */

:root {
  --dark: #17110c;
  --charcoal: #241a12;
  --charcoal-2: #2e2117;
  --ember: #700014;
  --ember-light: #f20002;
  --ember-dark: #d00406;
  --gold: #d8a441;
  --cream: #faf5ee;
  --cream-dim: #efe6d8;
  --muted: #a8988650;
  --text-soft: #cabca9;
  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 20px 50px -20px rgba(23, 17, 12, 0.45);
  --container: 1180px;
  --ff-head: 'Fraunces', serif;
  --ff-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff-body);
  background: var(--cream);
  color: var(--dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--ff-head);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
}
p { margin: 0 0 1em; }
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 96px 0; }
@media (max-width: 780px) { section { padding: 64px 0; } }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--ember);
  display: inline-block;
}
.section-head { max-width: 620px; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
.section-head p { color: #5c4f42; font-size: 1.05rem; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn .icon { width: 18px; height: 18px; }
.btn--primary {background: var(--ember);color: #fff;box-shadow: 0 4px 24px -8px #450102;}
.btn--primary:hover { background: var(--ember-light); transform: translateY(-2px); }
.btn--dark { background: var(--dark); color: var(--cream); }
.btn--dark:hover { background: var(--charcoal-2); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--dark); border-color: rgba(23,17,12,.18); }
.btn--ghost:hover { border-color: var(--ember); color: var(--ember); }
.btn--ghost-light { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.35); }
.btn--ghost-light:hover { background: rgba(255,255,255,.16); }
.btn--sm { padding: 10px 18px; font-size: .85rem; }
.btn--block { width: 100%; }

/* ---- Marquee ---- */
.marquee {
  background: var(--dark);
  color: var(--cream);
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  animation: marquee 20s linear infinite;
}
.marquee .dot { color: var(--ember); margin: 0 6px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-100% / 6)); } /* icerik 6 kez tekrarlaniyor, tam olarak bir tekrar kadar kayar */
}

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
  background: transparent;
}
.site-header.is-solid {
  background: rgba(23, 17, 12, .92);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px -18px rgba(0,0,0,.6);
}
.page-header .site-header { background: rgba(23,17,12,.96); }
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  /* Not: .container sınıfı sadece yatay padding veriyor (0 24px); dikey boşluğu
     burada tanımlıyoruz. Logo yüksekliği değişirse header'ın toplam yüksekliği
     de değişir — aşağıdaki .hero / .page-hero negatif margin'i bununla senkron
     tutulmalı (bkz. o kurallardaki not). */
  padding: 14px 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand__logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.brand--footer .brand__logo { width: 88px; height: 88px; }

.main-nav ul { display: flex; gap: 30px; }
.nav-link {
  color: #efe4d6;
  font-size: .92rem;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #bb0526;
  transition: width .25s ease;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--ember-light); }

.site-header__actions { display: flex; align-items: center; gap: 12px; }
.header-call { color: #fff; border-color: rgba(255,255,255,.3); }
.header-call:hover { color: var(--ember-light); border-color: var(--ember-light); }
.header-call span { display: inline; }
.nav-toggle {
  display: none;
  position: relative;
  z-index: 95; /* .main-nav (z-index:90) statik konumlu bir öğenin her zaman üzerinde
                  render edildiği için, açılan menünün üstünde kalması için buna da
                  bir konum bağlamı (position) ve z-index vermek gerekiyor. */
  background: none; border: none; color: #fff;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  cursor: pointer;
}
.nav-toggle .icon { width: 24px; height: 24px; }
.nav-toggle__close { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__open { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__close { display: block; }

/* ---- Sipariş Ver açılır menüsü ---- */
.order-dropdown { position: relative; }
.order-toggle { cursor: pointer; }
.order-toggle__chevron { width: 14px; height: 14px; transition: transform .2s ease; }
.order-dropdown.is-open .order-toggle__chevron { transform: rotate(180deg); }
.order-panel {
  position: absolute; top: calc(100% + 10px); right: 0;
  background: #fff; border-radius: var(--radius-sm); box-shadow: var(--shadow);
  padding: 8px; min-width: 210px;
  display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  z-index: 200;
}
.order-dropdown.is-open .order-panel { opacity: 1; visibility: visible; transform: translateY(0); }
.order-panel a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 8px; font-size: .88rem; font-weight: 600; color: var(--dark);
}
.order-panel a:hover { background: rgba(232,89,12,.08); color: var(--ember); }
.order-panel .icon { width: 16px; height: 16px; color: var(--ember); flex-shrink: 0; }

.mobile-nav-extra .order-dropdown { width: 100%; }
.mobile-nav-extra .order-panel {
  position: static; box-shadow: none; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  margin-top: 10px; opacity: 1; visibility: visible; transform: none;
  max-height: 0; padding: 0; overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
}
.mobile-nav-extra .order-dropdown.is-open .order-panel { max-height: 260px; padding: 8px; }
.mobile-nav-extra .order-panel a { color: #fff; }
.mobile-nav-extra .order-panel a:hover { background: rgba(255,255,255,.1); color: var(--ember-light); }

@media (max-width: 960px) {
  .header-call span { display: none; }
}
.mobile-nav-extra { display: none; }
@media (max-width: 860px) {
  .main-nav {
    position: fixed;
    inset: 0 0 0 30%;
    background: var(--dark);
    padding: 100px 32px 32px;
    transform: translateX(100%);
    transition: transform .35s ease;
    z-index: 90;
    overflow-y: auto;
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; gap: 22px; }
  .nav-link { color: #fff; font-size: 1.1rem; }
  .nav-toggle { display: flex; }
  .site-header__actions .btn--primary,
  .site-header__actions .header-call { display: none; }
  .mobile-nav-extra {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,.15);
  }
  .mobile-nav-extra .btn { width: 100%; }
}
@media (max-width: 500px) {
  .main-nav { inset: 0; }
}

/* ---- Hero / Video Slider ---- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(232,89,12,.35), transparent 45%),
    linear-gradient(160deg, #1c130c, #241a12 45%, #17110c);
  /* Header saydam/sticky olduğu için hero, header'ın altına kayıyor: bu değer
     .site-header__inner'ın toplam yüksekliğiyle (logo + dikey padding) eşit
     olmalı, aksi halde üstte body arkaplanı (cream) görünür bir boşluk bırakır. */
  margin-top: -128px;
}
.hero__media { position: absolute; inset: 0; overflow: hidden; }
.hero__media video, .hero__media .hero__poster {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__poster {
  background: url('../img/hero-video-poster.jpg') center/cover no-repeat,
    linear-gradient(160deg, #2a1c11, #1a1108 60%, #120c07);
}
.hero__embers span {
  position: absolute;
  bottom: -10%;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ember-light);
  filter: blur(1px);
  opacity: 0;
  animation: rise 7s ease-in infinite;
  box-shadow: 0 0 8px 2px rgba(255,122,31,.8);
}
@keyframes rise {
  0% { opacity: 0; transform: translateY(0) translateX(0); }
  10% { opacity: .9; }
  90% { opacity: .5; }
  100% { opacity: 0; transform: translateY(-100vh) translateX(20px); }
}
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(15,10,6,.92) 0%, rgba(15,10,6,.55) 45%, rgba(15,10,6,.35) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  /* Not: sağ/sol padding'i buradan ezmiyoruz — .container sınıfından gelen
     24px yan boşluk korunuyor, aksi halde mobilde içerik kenara yapışıyordu. */
  padding-top: 90px;
  padding-bottom: 90px;
  width: 100%;
}
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.25);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(6px);
}
.hero__tag .icon { width: 15px; height: 15px; color: var(--ember-light); }
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  max-width: 820px;
  margin-bottom: 20px;
}
.hero h1 em { font-style: italic; color: var(--ember-light); }
.hero p.lead {
  max-width: 560px;
  font-size: 1.1rem;
  color: var(--text-soft);
  margin-bottom: 36px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 56px; }
.hero__stats {
  display: grid;
  grid-template-columns: repeat(5, auto);
  gap: 32px;
  border-top: 1px solid rgba(255,255,255,.18);
  padding-top: 28px;
  max-width: 780px;
}
.hero__stats div strong, .hero__stats a strong { display: block; font-family: var(--ff-head); font-size: 1.7rem; color: var(--gold); }
.hero__stats div span, .hero__stats a span { font-size: .8rem; color: var(--text-soft); }
.hero__stats a { text-decoration: none; transition: opacity .2s ease; }
.hero__stats a:hover { opacity: .8; }
@media (max-width: 700px) {
  .hero__stats { grid-template-columns: repeat(2, auto); }
}
.hero__scroll {
  position: absolute;
  right: 32px; bottom: 28px;
  display: flex; align-items: center; gap: 10px;
  color: var(--text-soft);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  z-index: 2;
}
.hero__scroll .icon { width: 16px; height: 16px; animation: bob 1.6s ease-in-out infinite; }
@keyframes bob { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(6px);} }
@media (max-width: 700px) { .hero__scroll { display: none; } }

/* ---- Page (inner) hero banner ---- */
.page-hero {
  position: relative;
  color: #fff;
  padding: 240px 0 90px;
  /* Not: .hero'daki gibi, bu değer header'ın toplam yüksekliğiyle eşit olmalı. */
  margin-top: -128px;
  background: linear-gradient(160deg, #241a12, #17110c),
    radial-gradient(circle at 80% 0%, rgba(232,89,12,.3), transparent 50%);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: url('../img/page-hero-texture.jpg') center/cover no-repeat;
  opacity: .5;
  mix-blend-mode: overlay;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--gold); }
.page-hero .eyebrow::before { background: var(--gold); }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); max-width: 720px; }
.page-hero p { color: var(--text-soft); max-width: 560px; font-size: 1.05rem; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: .85rem; color: var(--text-soft); margin-top: 20px; }
.breadcrumb a { color: var(--gold); }
.breadcrumb span { opacity: .6; }

/* ---- Photo placeholder blocks (replace by dropping matching files in assets/img) ---- */
.ph {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(150deg, var(--charcoal-2), var(--dark));
  background-size: cover;
  background-position: center;
  min-height: 220px;
}
.ph::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(232,89,12,.35), rgba(23,17,12,.15));
  mix-blend-mode: multiply;
  opacity: .55;
}
.ph--warm { background-image: linear-gradient(150deg, #7a3b12, #2c1a0d); }
.ph--gold { background-image: linear-gradient(150deg, #a9781f, #241a12); }
.ph--ember { background-image: linear-gradient(150deg, var(--ember), #401c07); }

/* ---- About teaser (home) ---- */
.about-teaser { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: center; }
.about-teaser__media { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-teaser__media .ph:first-child { grid-column: 1 / 3; min-height: 200px; background-image: url('../img/about-teaser-1.jpg'), linear-gradient(150deg, #7a3b12, #2c1a0d); }
.about-teaser__media .ph:nth-child(2) { min-height: 160px; background-image: url('../img/about-teaser-2.jpg'), linear-gradient(150deg, #a9781f, #241a12); }
.about-teaser__media .ph:nth-child(3) { min-height: 160px; background-image: url('../img/about-teaser-3.jpg'), linear-gradient(150deg, var(--ember), #401c07); }
.about-teaser__badge {
  position: absolute; bottom: -22px; left: -22px;
  background: var(--ember);
  color: #fff;
  border-radius: 50%;
  width: 108px; height: 108px;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  text-align: center;
  font-family: var(--ff-head);
  box-shadow: var(--shadow);
}
.about-teaser__badge strong { font-size: 1.5rem; line-height: 1; }
.about-teaser__badge span { font-size: .58rem; text-transform: uppercase; letter-spacing: .06em; }
.about-teaser__inner { position: relative; }
.about-teaser p { color: #5c4f42; font-size: 1.05rem; }
.about-teaser__list { display: grid; gap: 14px; margin: 28px 0 34px; }
.about-teaser__list li { display: flex; gap: 12px; align-items: flex-start; font-weight: 500; }
.about-teaser__list .icon { width: 20px; height: 20px; color: var(--ember); flex-shrink: 0; margin-top: 2px; }
@media (max-width: 900px) {
  .about-teaser { grid-template-columns: 1fr; gap: 40px; }
  .about-teaser__badge { position: static; width: auto; height: auto; border-radius: var(--radius-sm); flex-direction: row; gap: 10px; padding: 14px; margin-top: 16px; }
}

/* ---- Dönerimiz Neden Özel ---- */
.doner-special { background: var(--cream-dim); }
.doner-special__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
.doner-special p { color: #5c4f42; font-size: 1.05rem; }
.doner-special__quote {
  font-family: var(--ff-head); font-style: italic; font-size: 1.2rem; color: var(--dark);
  border-left: 3px solid var(--ember); padding-left: 18px; margin: 18px 0 0;
}
.doner-special__list { display: grid; gap: 22px; margin-top: 30px; }
.doner-special__list li { display: flex; gap: 16px; align-items: flex-start; }
.doner-special__list .icon-wrap {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(145deg, var(--ember), var(--ember-dark));
  display: flex; align-items: center; justify-content: center;
}
.doner-special__list .icon-wrap .icon { width: 22px; height: 22px; color: #fff; }
.doner-special__list h3 { font-size: 1rem; margin: 0 0 4px; }
.doner-special__list p { font-size: .9rem; color: #6b5d4f; margin: 0; }
.doner-special__media { position: relative; }
.doner-special__media .ph { min-height: 380px; background-image: url('../img/doner-special-1.jpg'), linear-gradient(150deg, #7a3b12, #2c1a0d); }
.doner-special__media .ph--float {
  position: absolute; bottom: -28px; left: -28px;
  width: 55%; min-height: 190px;
  border: 6px solid var(--cream-dim);
  background-image: url('../img/doner-special-2.jpg'), linear-gradient(150deg, var(--ember), #401c07);
}
@media (max-width: 900px) {
  .doner-special__inner { grid-template-columns: 1fr; gap: 40px; }
  .doner-special__media { order: -1; }
  .doner-special__media .ph--float { position: static; width: 100%; margin-top: 16px; border-width: 0; }
}

/* ---- Menu highlight cards ---- */
.menu-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 980px) { .menu-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .menu-grid { grid-template-columns: 1fr; } }
.menu-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 14px 30px -18px rgba(23,17,12,.25);
  transition: transform .3s ease, box-shadow .3s ease;
}
.menu-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.menu-card .ph { min-height: 170px; border-radius: 0; }
.menu-card__body { padding: 22px; }
.menu-card__body h3 { font-size: 1.05rem; margin: 0 0 8px; }
.menu-card__body p { font-size: .88rem; color: #6b5d4f; margin: 0; }
.section-foot { text-align: center; margin-top: 44px; }

/* ---- Why us / feature grid ---- */
.section--dark { background: var(--dark); color: var(--cream); }
.section--dark .section-head p { color: var(--text-soft); }
.section--dark .eyebrow { color: var(--gold); }
.section--dark .eyebrow::before { background: var(--gold); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .feature-grid { grid-template-columns: 1fr; } }
.feature-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: border-color .3s ease, transform .3s ease, background .3s ease;
}
.feature-card:hover { border-color: var(--ember); transform: translateY(-4px); background: rgba(255,255,255,.06); }
.feature-card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--ember), var(--ember-dark));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feature-card__icon .icon { width: 26px; height: 26px; color: #fff; }
.feature-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.feature-card p { color: var(--text-soft); font-size: .92rem; margin: 0; }

/* ---- Testimonials (Swiper) ---- */
.testimonials-wrap { position: relative; }
.testimonials-swiper { overflow: hidden; margin: 0 -24px; padding: 4px 24px 14px; }
.testimonials-nav { display: flex; justify-content: flex-end; gap: 10px; margin-top: 18px; }
.testimonials-nav .btn { width: 40px; height: 40px; padding: 0; }
.testimonials-nav .btn .icon { width: 18px; height: 18px; }
.testimonials-prev .icon { transform: rotate(180deg); }
.testimonials-nav .swiper-button-disabled { opacity: .35; cursor: default; }
.t-card {
  height: 100%;
  background: #fff;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 14px 30px -18px rgba(23,17,12,.2);
}
.t-card .icon { width: 26px; height: 26px; color: var(--ember); margin-bottom: 14px; }
.t-card__stars { display: flex; gap: 3px; margin-bottom: 12px; }
.t-card__stars .icon { width: 15px; height: 15px; color: var(--gold); fill: var(--gold); margin: 0; }
.t-card p.quote { font-size: .98rem; color: #45392d; }
.t-card__who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.t-card__avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(145deg, var(--gold), var(--ember));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: var(--ff-head); font-weight: 700;
}
.t-card__who strong { display: block; font-size: .92rem; }
.t-card__who span { font-size: .78rem; color: #8a7b6b; }

/* ---- Gallery ---- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 140px; gap: 16px; }
.gallery-grid .ph:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-grid .ph:nth-child(4) { grid-column: span 2; }
@media (max-width: 780px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid .ph:nth-child(1) { grid-column: span 2; }
  .gallery-grid .ph:nth-child(4) { grid-column: span 1; }
}
.gallery-grid .ph { min-height: 0; display: flex; align-items: flex-end; padding: 14px; }
.gallery-grid .ph span { position: relative; z-index: 1; color: #fff; font-size: .78rem; font-weight: 600; }

/* ---- CTA / location strip (home) ---- */
.location-strip {
  background: var(--cream-dim);
  border-radius: var(--radius);
  padding: 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 860px) { .location-strip { grid-template-columns: 1fr; padding: 28px; } }
.location-strip__info h2 { font-size: 1.8rem; }
.location-strip__list { display: grid; gap: 16px; margin: 24px 0 30px; }
.location-strip__list li { display: flex; gap: 14px; align-items: flex-start; }
.location-strip__list .icon { width: 22px; height: 22px; color: var(--ember); flex-shrink: 0; }
.location-strip__list strong { display: block; font-size: .95rem; }
.location-strip__list span { font-size: .88rem; color: #6b5d4f; }
.location-strip__map { border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow); }
.location-strip__map iframe { width: 100%; height: 320px; border: 0; display: block; }

/* ==========================================================================
   Menü sayfası
   ========================================================================== */
.menu-highlight {
  display: flex; align-items: center; gap: 14px;
  background: rgba(232,89,12,.08); border: 1px solid rgba(232,89,12,.25);
  border-radius: var(--radius-sm); padding: 16px 20px; margin-bottom: 36px;
}
.menu-highlight .icon { width: 24px; height: 24px; color: var(--ember); flex-shrink: 0; }
.menu-highlight p { margin: 0; font-size: .92rem; color: #4a3d30; }
.menu-tabs {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 44px;
}
.menu-tab {
  padding: 11px 22px;
  border-radius: 999px;
  border: 1px solid rgba(23,17,12,.15);
  background: #fff;
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  transition: all .25s ease;
}
.menu-tab:hover { border-color: var(--ember); color: var(--ember); }
.menu-tab.is-active { background: var(--dark); color: #fff; border-color: var(--dark); }

.menu-panel { display: none; }
.menu-panel.is-active { display: block; animation: fadein .4s ease; }
@keyframes fadein { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.menu-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px 40px; }
@media (max-width: 760px) { .menu-list { grid-template-columns: 1fr; } }
.menu-item {
  padding: 18px 0;
  border-bottom: 1px dashed rgba(23,17,12,.15);
}
.menu-item__name { font-family: var(--ff-head); font-size: 1.08rem; font-weight: 600; margin-bottom: 4px; }
.menu-item__desc { font-size: .86rem; color: #6b5d4f; max-width: 320px; }
.menu-item__badge {
  display: inline-block; font-size: .65rem; font-weight: 700; letter-spacing: .06em;
  color: var(--ember); background: rgba(232,89,12,.1); padding: 2px 8px; border-radius: 999px; margin-left: 8px; vertical-align: middle;
}

.menu-note {
  margin: 60px 0;
  background: var(--dark); color: var(--cream);
  border-radius: var(--radius);
  padding: 34px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.menu-note p { margin: 0; color: var(--text-soft); max-width: 480px; }
.menu-note h3 { margin-bottom: 6px; }

/* ==========================================================================
   Hakkımızda sayfası
   ========================================================================== */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 900px) { .about-story { grid-template-columns: 1fr; gap: 36px; } }
.about-story__media { position: relative; }
.about-story__media .ph { min-height: 420px; background-image: url('../img/about-story.jpg'), linear-gradient(150deg, #7a3b12, #2c1a0d); }
.about-story__media .ph--float {
  position: absolute; bottom: -30px; right: -30px;
  width: 55%; min-height: 200px;
  border: 6px solid var(--cream);
  background-image: url('../img/about-story-2.jpg'), linear-gradient(150deg, var(--ember), #401c07);
}
@media (max-width: 560px) { .about-story__media .ph--float { position: static; width: 100%; margin-top: 16px; border-width: 0; } }
.about-story__body p { color: #5c4f42; font-size: 1.05rem; }
.meat-stats {
  display: flex; gap: 32px; flex-wrap: wrap;
  margin: 24px 0; padding: 22px 0;
  border-top: 1px solid rgba(23,17,12,.12); border-bottom: 1px solid rgba(23,17,12,.12);
}
.meat-stats strong { display: block; font-family: var(--ff-head); font-size: 1.7rem; color: var(--ember); }
.meat-stats span { font-size: .8rem; color: #6b5d4f; }

.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 900px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .values-grid { grid-template-columns: 1fr; } }
.value-card { text-align: center; padding: 34px 20px; }
.value-card__icon {
  width: 60px; height: 60px; margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--ember), var(--ember-dark));
  display: flex; align-items: center; justify-content: center;
}
.value-card__icon .icon { width: 28px; height: 28px; color: #fff; }
.value-card h3 { font-size: 1.02rem; }
.value-card p { font-size: .87rem; color: #6b5d4f; }

.timeline { position: relative; max-width: 720px; margin: 0 auto; }
.timeline::before { content: ""; position: absolute; left: 20px; top: 6px; bottom: 6px; width: 2px; background: rgba(23,17,12,.15); }
.timeline-item { position: relative; padding-left: 60px; margin-bottom: 40px; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item::before {
  content: ""; position: absolute; left: 12px; top: 4px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--ember); border: 4px solid var(--cream);
  box-shadow: 0 0 0 2px var(--ember);
}
.timeline-item strong { display: block; color: var(--ember); font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 4px; }
.timeline-item h3 { font-size: 1.1rem; margin-bottom: 6px; }
.timeline-item p { color: #6b5d4f; margin: 0; font-size: .92rem; }

/* ==========================================================================
   İletişim sayfası
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-bottom: 64px; }
@media (max-width: 560px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: #fff; border-radius: var(--radius); padding: 28px;
  box-shadow: 0 14px 30px -20px rgba(23,17,12,.2);
}
.contact-card__icon {
  width: 48px; height: 48px; border-radius: 12px; margin-bottom: 16px;
  background: rgba(232,89,12,.1); display: flex; align-items: center; justify-content: center;
}
.contact-card__icon .icon { width: 24px; height: 24px; color: var(--ember); }
.contact-card h3 { font-size: .98rem; margin-bottom: 6px; }
.contact-card p { font-size: .88rem; color: #6b5d4f; margin: 0; }
.contact-card a { color: var(--ember); font-weight: 600; }

.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: flex-start; }
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; gap: 40px; } }
.contact-form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } }
.field label { display: block; font-size: .82rem; font-weight: 600; margin-bottom: 6px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 16px; border-radius: var(--radius-sm);
  border: 1px solid rgba(23,17,12,.18); font-family: inherit; font-size: .95rem;
  background: #fff; transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--ember); box-shadow: 0 0 0 3px rgba(232,89,12,.15);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-alert {
  padding: 14px 18px; border-radius: var(--radius-sm); font-size: .9rem; font-weight: 500; margin-bottom: 8px;
}
.form-alert--ok { background: #e4f4e8; color: #1c6b34; border: 1px solid #b6e3c2; }
.form-alert--err { background: #fbe9e6; color: #a5301b; border: 1px solid #f3c3ba; }

.map-frame { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); margin-top: 60px; }
.map-frame iframe { width: 100%; height: 420px; border: 0; display: block; }
.map-frame__directions { position: absolute; right: 20px; bottom: 20px; }

/* ==========================================================================
   Blog
   ========================================================================== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
@media (max-width: 980px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: 0 14px 30px -20px rgba(23,17,12,.2); transition: transform .3s ease; }
.blog-card:hover { transform: translateY(-6px); }
.blog-card .ph { min-height: 190px; border-radius: 0; }
.blog-card__body { padding: 24px; }
.blog-card__meta { display: flex; gap: 10px; align-items: center; font-size: .74rem; color: #8a7b6b; margin-bottom: 10px; text-transform: uppercase; letter-spacing: .04em; }
.blog-card__meta .tag { color: var(--ember); font-weight: 700; }
.blog-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.blog-card p { font-size: .9rem; color: #6b5d4f; }
.blog-card__link { display: inline-flex; align-items: center; gap: 6px; font-size: .85rem; font-weight: 700; color: var(--dark); margin-top: 8px; }
.blog-card__link .icon { width: 15px; height: 15px; transition: transform .2s ease; }
.blog-card:hover .blog-card__link .icon { transform: translateX(4px); }

.blog-detail { max-width: 760px; margin: 0 auto; }
.blog-detail__meta { display: flex; gap: 14px; align-items: center; font-size: .8rem; color: #8a7b6b; margin-bottom: 20px; text-transform: uppercase; letter-spacing: .04em; }
.blog-detail__meta .tag { color: var(--ember); font-weight: 700; }
.blog-detail .ph { min-height: 320px; margin-bottom: 40px; }
.blog-detail__body p { font-size: 1.05rem; color: #3d3226; margin-bottom: 1.3em; }
.blog-detail__cta {
  margin-top: 50px; padding: 34px; border-radius: var(--radius); background: var(--cream-dim);
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.blog-back { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; margin-bottom: 30px; color: var(--ember); }
.blog-back .icon { width: 16px; height: 16px; transform: rotate(180deg); }

.related-posts { margin-top: 80px; }

/* ==========================================================================
   Footer'a Geçiş (Karşılama Metni) — scroll pozisyonuna bağlı, sabitlenmiş bölüm
   ========================================================================== */
.footer-intro {
  position: relative;
  height: 220vh; /* fazladan yükseklik: metin, bu mesafe boyunca ekrana sabitlenir */
  background: #000000;
}
@media (max-width: 780px) {
  /* Mobilde sabitlenmiş (sticky) kaydırma efekti fazladan boşluk gibi hissettiriyor;
     bunun yerine normal akışta, tek ekranlık bir bölüm olarak gösteriyoruz. */
  .footer-intro { height: auto; }
  .footer-intro__sticky { position: relative; top: auto; height: auto; min-height: 72vh; padding: 90px 0; }
}
.footer-intro__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.footer-intro__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 55%, rgba(232, 89, 12, .16), transparent 55%);
  pointer-events: none;
}
.footer-intro__embers { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.footer-intro__embers span {
  position: absolute;
  bottom: -6%;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--ember-light);
  filter: blur(1px);
  opacity: 0;
  box-shadow: 0 0 8px 2px rgba(255, 122, 31, .7);
  animation: rise 7s ease-in infinite;
}
.footer-intro__inner { position: relative; z-index: 1; max-width: 660px; padding: 0 24px; }
.footer-intro__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .85;
}
.footer-intro__eyebrow::before,
.footer-intro__eyebrow::after {
  content: "";
  width: 22px; height: 1px;
  background: var(--gold);
  opacity: .5;
}
.footer-intro__line {
  font-family: var(--ff-head);
  color: var(--cream);
  opacity: 0;
  filter: blur(6px);
  transform: translateY(18px);
  transition: opacity .9s ease, filter .9s ease, transform .9s ease;
}
/* Not: Sürekli scroll-pozisyonu matematiğine dayalı JS geri getirme, bazı
   mobil tarayıcılarda (özellikle hızlı/momentum kaydırmalarda) hiç
   tetiklenmeyebiliyordu ve yazı görünmez kalıyordu. Bunun yerine, sitenin
   diğer yerlerinde ([data-reveal]) de kullanılan, çok daha güvenilir
   IntersectionObserver tetiklemesine geçildi — sticky sabitleme aynen
   kalıyor, yalnızca görünürlük tetikleyicisi değişti.
*/
.footer-intro__sticky.in-view .footer-intro__line--1 {
  opacity: 1; filter: blur(0); transform: translateY(0);
}
.footer-intro__sticky.in-view .footer-intro__line--2 {
  opacity: 1; filter: blur(0); transform: translateY(0);
  transition-delay: .5s;
}
.footer-intro__line em {
  font-style: italic;
  font-weight: 600;
  color: var(--gold);
}
.footer-intro__line--1 { font-size: clamp(1.7rem, 4.4vw, 2.75rem); font-weight: 500; margin: 0 0 26px; }
.footer-intro__line--2 { font-size: clamp(1.05rem, 2.4vw, 1.4rem); color: var(--text-soft); margin: 0; line-height: 1.6; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--dark); color: var(--text-soft); }
.footer-cta { background: linear-gradient(120deg, var(--ember-dark), var(--ember)); }
.footer-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding: 46px 24px; color: #fff; }
.footer-cta__inner h3 { margin-bottom: 6px; font-size: 1.5rem; }
.footer-cta__inner p { margin: 0; color: rgba(255,255,255,.85); }
.footer-cta__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.footer-cta__actions .btn--primary {background: var(--gold);}
.footer-cta__actions .btn--primary:hover { background: var(--charcoal-2); }
.footer-cta__online {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  padding: 0 24px 30px; color: rgba(255,255,255,.9); font-size: .88rem;
}
.footer-cta__online a {
  font-weight: 700; text-decoration: underline; text-underline-offset: 3px; color: #fff;
}
.footer-cta__online a:hover { color: var(--dark); }

.footer-main { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 40px; padding: 64px 24px 40px; }
@media (max-width: 1080px) { .footer-main { grid-template-columns: 1fr 1fr 1fr; } }
@media (max-width: 860px) { .footer-main { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-main { grid-template-columns: 1fr; } }
.footer-col--brand p { font-size: .9rem; color: var(--text-soft); margin: 16px 0 20px; max-width: 320px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center;
  transition: background .25s ease;
}
.footer-social a:hover { background: var(--ember); }
.footer-social .icon { width: 18px; height: 18px; }
.footer-col h4 { color: #fff; font-size: .88rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 12px; font-size: .9rem; }
.footer-col ul a:hover { color: var(--ember-light); }
.footer-contact li, .footer-badges li { display: flex; align-items: flex-start; gap: 10px; }
.footer-contact .icon, .footer-badges .icon { width: 17px; height: 17px; color: var(--ember-light); flex-shrink: 0; margin-top: 2px; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); }
.footer-bottom__inner { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; padding: 22px 24px; font-size: .8rem; color: #8a7c6c; }

/* ---- Floating actions ---- */
.float-whatsapp {
  position: fixed; right: 24px; bottom: 24px; z-index: 80;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px -8px rgba(37,211,102,.7);
  transition: transform .25s ease;
}
.float-whatsapp:hover { transform: scale(1.08); }
.float-whatsapp .icon { width: 28px; height: 28px; color: #fff; }
.back-to-top {
  position: fixed; right: 24px; bottom: 90px; z-index: 80;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--dark); color: #fff; border: none; cursor: pointer;
  display: none; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
}
.back-to-top.is-visible { display: flex; }
.back-to-top__icon { transform: rotate(180deg); width: 18px; height: 18px; }
@media (max-width: 640px) {
  .float-whatsapp { width: 48px; height: 48px; right: 16px; bottom: 16px; }
  .back-to-top { width: 40px; height: 40px; right: 18px; bottom: 74px; }
}

/* ---- Reveal on scroll ---- */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].in-view { opacity: 1; transform: translateY(0); }

/* ---- 404 / empty state ---- */
.empty-state { text-align: center; padding-top: 60px; padding-bottom: 60px; }
.empty-state h2 { font-size: 2rem; }
.empty-state p { color: #6b5d4f; margin-bottom: 24px; }

/* ==========================================================================
   Karşılama Ekranı (Preloader) — döner pişirme animasyonu
   ========================================================================== */
/* Not: Scroll kilidi burada overflow:hidden ile değil, JS tarafında
   body'yi position:fixed yapıp negatif top ile aynı noktada tutan
   teknikle uygulanıyor (bkz. header.php). overflow:hidden kullanılsaydı
   scrollY sıfırlanır ve sayfa yenilendiğinde tarayıcının geri getirdiği
   scroll konumu kaybolurdu. */
.no-preloader .preloader { display: none !important; }

.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #050302;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 1;
  /* Not: Önceden clip-path ile tüm içerik tek bir noktaya küçülüyordu; dar
     (mobil) ekranlarda döner/yazılar çirkin bir şekilde sıkışıyordu. Bunun
     yerine önce iç içerik söner, ardından arka plan eriyerek siteyi açar —
     her ekran boyutunda düzgün görünür. */
  transition: opacity .9s ease .25s;
}
.preloader.is-done { opacity: 0; pointer-events: none; }
.preloader__embers,
.preloader__stage,
.preloader__percent,
.preloader__label,
.preloader__bar {
  transition: opacity .45s ease, transform .45s ease;
}
.preloader.is-done .preloader__embers,
.preloader.is-done .preloader__stage,
.preloader.is-done .preloader__percent,
.preloader.is-done .preloader__label,
.preloader.is-done .preloader__bar {
  opacity: 0;
  transform: scale(.94) translateY(-6px);
}

.preloader__embers { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.preloader__embers span {
  position: absolute;
  bottom: -6%;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--ember-light);
  filter: blur(1px);
  opacity: 0;
  box-shadow: 0 0 8px 2px rgba(255, 122, 31, .75);
  animation: rise 6s ease-in infinite;
}

.preloader__stage { perspective: 1000px; margin-bottom: 30px; }
.preloader__skewer {
  position: relative;
  width: 130px;
  height: 230px;
  transform-style: preserve-3d;
  animation: donerSpin 5.5s linear infinite;
}
@keyframes donerSpin {
  from { transform: rotateY(0deg); }
  to { transform: rotateY(360deg); }
}
.preloader__rod {
  position: absolute;
  left: 50%; top: -28px; bottom: -28px; width: 4px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, var(--gold), #7a5a1e);
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(216, 164, 65, .6);
}
.preloader__meat {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 106px;
  height: 218px;
  border-radius: 53px 53px 24px 24px;
  background-image: repeating-linear-gradient(0deg, rgba(0, 0, 0, .16) 0 2px, transparent 2px 11px);
  box-shadow: inset -14px 0 24px rgba(0, 0, 0, .28), inset 10px 0 18px rgba(255, 255, 255, .08);
  opacity: 0;
  transition: opacity .7s ease;
}
.preloader__meat.is-active { opacity: 1; }
.preloader__meat--1 { background-color: #e3a596; }
.preloader__meat--2 { background-color: #cf7f45; }
.preloader__meat--3 { background-color: #a4531f; }
.preloader__meat--4 {
  background-color: #7a3512;
  background-image:
    repeating-linear-gradient(0deg, rgba(0, 0, 0, .16) 0 2px, transparent 2px 11px),
    linear-gradient(120deg, rgba(255, 214, 150, .22), transparent 45%);
}
.preloader__percent {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  font-family: var(--ff-head);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(2.6rem, 8vw, 4rem);
  color: #fff;
  line-height: 1;
}
.preloader__percent small { margin-top: 10px; font-size: .4em; font-style: normal; color: var(--gold); }
.preloader__label {
  margin-top: 8px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}
.preloader__bar {
  width: 200px;
  height: 2px;
  margin-top: 24px;
  border-radius: 2px;
  background: rgba(255, 255, 255, .12);
  overflow: hidden;
}
.preloader__bar span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--ember), var(--gold));
}

@media (max-width: 480px) {
  .preloader__skewer { width: 100px; height: 190px; }
  .preloader__meat { width: 82px; height: 178px; }
}
@media (prefers-reduced-motion: reduce) {
  .preloader__skewer { animation: none; }
  .preloader__embers span { animation: none; opacity: 0; }
}
