/* =========================================================
   PATRONUS PIZZA — Tasarım Sistemi
   ========================================================= */

:root {
  /* Marka renkleri (logodan) */
  --maroon-900: #4a0b0b;
  --maroon-800: #630f0f;
  --maroon-700: #7a1212;
  --maroon-600: #911616;
  --orange-600: #c94f0c;
  --orange-500: #e2650c;
  --orange-400: #f2790f;
  --gold-400: #f0b429;
  --cream-50: #fffaf3;
  --cream-100: #fff3e2;
  --paper-0: #ffffff;
  --ink-900: #241512;
  --ink-700: #4a3733;
  --ink-500: #7a6864;
  --ink-300: #c9bcb8;
  --line-200: #efe2d7;

  --shadow-sm: 0 2px 8px rgba(74, 11, 11, 0.08);
  --shadow-md: 0 10px 30px rgba(74, 11, 11, 0.12);
  --shadow-lg: 0 20px 50px rgba(74, 11, 11, 0.18);
  --shadow-orange: 0 12px 26px rgba(226, 101, 12, 0.35);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --font-display: "Fredoka", "Poppins", sans-serif;
  --font-body: "Mulish", sans-serif;

  --container: 1200px;
}

.skip-link {
  position: absolute; left: -999px; top: -999px;
  background: var(--maroon-800); color: #fff; padding: 12px 20px;
  border-radius: 0 0 10px 0; z-index: 1000; font-weight: 700;
}
.skip-link:focus { left: 0; top: 0; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--cream-50);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  margin: 0 0 .5em;
  color: var(--maroon-800);
}
p { line-height: 1.7; margin: 0 0 1em; color: var(--ink-700); }
button { font-family: inherit; cursor: pointer; }

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

section { position: relative; }

/* Eyebrow / bölüm etiketi */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--orange-600);
  background: var(--cream-100);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.eyebrow::before { content: "🍕"; font-size: 14px; }

.section-head {
  max-width: 640px;
  margin-bottom: 44px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); }

/* =========================================================
   BUTONLAR
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  border: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }

.btn-order {
  background: linear-gradient(135deg, var(--orange-400), var(--orange-600));
  color: #fff;
  box-shadow: var(--shadow-orange);
}
.btn-order:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(226,101,12,.42); }

.btn-outline {
  background: transparent;
  color: var(--maroon-800);
  border: 2px solid var(--maroon-800);
}
.btn-outline:hover { background: var(--maroon-800); color: #fff; }

.btn-ghost-light {
  background: rgba(255,255,255,.14);
  color: #fff;
  border: 2px solid rgba(255,255,255,.5);
  backdrop-filter: blur(4px);
}
.btn-ghost-light:hover { background: #fff; color: var(--maroon-800); }

.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-block { width: 100%; }
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 14px 0;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; }
.site-header.is-scrolled,
.site-header.solid {
  background: rgba(255, 250, 243, .92);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 8px 0;
}

.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); }
.brand img { height: 48px; width: 48px; transition: height .3s ease; }
.site-header.is-scrolled .brand img, .site-header.solid .brand img { height: 40px; width: 40px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-size: 19px; color: var(--maroon-800); }
.brand-text span { font-size: 11px; letter-spacing: .04em; color: var(--orange-600); font-weight: 600; }

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  font-weight: 600;
  font-size: 15px;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  color: var(--ink-700);
  transition: background .2s, color .2s;
}
.main-nav a:hover, .main-nav a.active { background: var(--cream-100); color: var(--maroon-800); }

.header-actions { display: flex; align-items: center; gap: 10px; }
.header-phone {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  color: var(--maroon-800);
}
.header-phone svg { width: 18px; height: 18px; color: var(--orange-600); }

.nav-toggle {
  display: none;
  flex-direction: column;
  width: 44px; height: 44px;
  border: none; background: var(--cream-100);
  border-radius: var(--radius-sm);
  align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--maroon-800);
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle span { margin: 5px 0; }
.nav-toggle.is-open span { opacity: 0; }
.nav-toggle.is-open::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open::after { transform: translateY(-7px) rotate(-45deg); }
.nav-toggle::before, .nav-toggle::after { margin: 0; }

.mobile-nav, .nav-scrim { display: none; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding: 160px 0 120px;
  background: radial-gradient(circle at 15% 20%, var(--cream-100) 0%, var(--cream-50) 45%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(var(--maroon-700) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  opacity: .06;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 40px;
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(38px, 5.2vw, 62px);
  letter-spacing: -.01em;
}
.hero-copy h1 .accent { color: var(--orange-600); position: relative; white-space: nowrap; }
.hero-copy .lede {
  font-size: 18px;
  max-width: 480px;
  color: var(--ink-700);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0; }

.hero-badges { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 36px; }
.hero-badge { display: flex; align-items: center; gap: 10px; }
.hero-badge .num { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--maroon-800); }
.hero-badge .label { font-size: 13px; color: var(--ink-500); max-width: 110px; line-height: 1.3; }

.hero-visual { position: relative; }
.hero-visual .blob {
  position: absolute; inset: -6%;
  background: linear-gradient(140deg, var(--orange-400), var(--maroon-700));
  border-radius: 42% 58% 63% 37% / 45% 40% 60% 55%;
  z-index: 0;
  opacity: .95;
}
.hero-visual .photo-wrap {
  position: relative; z-index: 1;
  border-radius: 42% 58% 63% 37% / 45% 40% 60% 55%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3 / 2;
}
.hero-visual .photo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-floating-card {
  position: absolute;
  bottom: -18px; left: -30px;
  z-index: 2;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-floating-card .icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--cream-100);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.hero-floating-card strong { display: block; font-family: var(--font-display); font-size: 15px; color: var(--maroon-800); }
.hero-floating-card span { font-size: 12px; color: var(--ink-500); }
.hero-floating-tag {
  position: absolute; top: 6%; right: -4%;
  background: var(--orange-500);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 18px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-orange);
  transform: rotate(6deg);
  z-index: 2;
}

.wave-divider { display: block; width: 100%; line-height: 0; }
.wave-divider svg { width: 100%; height: auto; display: block; }

/* Hero'da süzülen dekoratif emoji ikonları */
.hero-deco { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.hero-deco .deco {
  position: absolute;
  font-size: 34px;
  opacity: .5;
  filter: drop-shadow(0 6px 10px rgba(74,11,11,.15));
  animation: decoFloat 7s ease-in-out infinite;
}
.deco.d1 { top: 14%; left: 6%;  font-size: 30px; animation-duration: 6.5s; }
.deco.d2 { top: 68%; left: 10%; font-size: 26px; animation-duration: 8s;  animation-delay: .6s; }
.deco.d3 { top: 30%; left: 44%; font-size: 22px; animation-duration: 7.2s; animation-delay: 1.4s; }
.deco.d4 { top: 78%; left: 46%; font-size: 28px; animation-duration: 9s;  animation-delay: .3s; }
.deco.d5 { top: 10%; right: 8%; font-size: 30px; animation-duration: 7.6s; animation-delay: 1s; }
.deco.d6 { top: 60%; right: 4%; font-size: 24px; animation-duration: 6.8s; animation-delay: 2s; }
@keyframes decoFloat {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50%      { transform: translateY(-22px) rotate(8deg); }
}
@media (max-width: 860px) {
  .hero-deco .deco { opacity: .32; }
  .deco.d3, .deco.d4 { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-deco .deco, .btn-glow, .ticker-track, .hero-visual .blob { animation: none !important; }
}

/* Blob'un organik şekil değiştirme animasyonu */
.hero-visual .blob {
  animation: blobMorph 10s ease-in-out infinite;
}
@keyframes blobMorph {
  0%, 100% { border-radius: 42% 58% 63% 37% / 45% 40% 60% 55%; }
  50%      { border-radius: 58% 42% 40% 60% / 55% 60% 40% 45%; }
}

/* Sipariş butonunda dikkat çekici nabız efekti */
.btn-glow { animation: btnPulse 2.6s ease-in-out infinite; }
@keyframes btnPulse {
  0%, 100% { box-shadow: var(--shadow-orange); }
  50%      { box-shadow: 0 12px 30px rgba(226,101,12,.6), 0 0 0 8px rgba(226,101,12,.12); }
}

/* Sıcak servis kartındaki buhar animasyonu */
.steam-wrap { position: relative; }
.steam-wrap .steam {
  position: absolute; top: -6px; left: 50%;
  width: 3px; height: 14px;
  background: linear-gradient(rgba(255,255,255,0), rgba(226,101,12,.5));
  border-radius: 2px;
  transform: translateX(-50%);
  animation: steamRise 1.8s ease-in-out infinite;
}
@keyframes steamRise {
  0%   { opacity: 0; transform: translate(-50%, 4px) scaleY(.6); }
  40%  { opacity: .8; }
  100% { opacity: 0; transform: translate(-50%, -14px) scaleY(1.2); }
}

/* Kayan bant (ticker) */
.ticker { background: var(--maroon-800); overflow: hidden; padding: 13px 0; position: relative; z-index: 1; }
.ticker-track { display: flex; width: max-content; animation: tickerScroll 26s linear infinite; }
.ticker-set { display: flex; flex-shrink: 0; }
.ticker-set span {
  display: inline-flex; align-items: center;
  color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 14.5px;
  padding: 0 28px; white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,.18);
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Sayaç animasyonu ile artan sayılar için taban stil (JS ile dolar) */
.hero-badge .num[data-countup] { min-width: 2.2ch; display: inline-block; }

/* =========================================================
   ÖZELLİKLER / NEDEN BİZ
   ========================================================= */
.features { padding: 90px 0; background: var(--paper-0); }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-card {
  padding: 30px 24px;
  border-radius: var(--radius-md);
  background: var(--cream-50);
  border: 1px solid var(--line-200);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); background: #fff; }
.feature-card .icon-circle {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--orange-400), var(--maroon-700));
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
}
.feature-card h3 { font-size: 18px; margin-bottom: 8px; }
.feature-card p { font-size: 14.5px; margin: 0; }

/* =========================================================
   MENÜ KARTLARI (öne çıkan + tam menü ortak)
   ========================================================= */
.menu-showcase { padding: 90px 0 100px; background: var(--cream-50); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.menu-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}
.menu-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.menu-card-media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.menu-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.menu-card:hover .menu-card-media img { transform: scale(1.06); }
.menu-card-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--maroon-800);
  color: #fff;
  font-family: var(--font-display);
  font-size: 12px; font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  z-index: 2;
}
.menu-card-price {
  position: absolute; bottom: -2px; right: 16px;
  background: var(--orange-500);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  padding: 10px 18px 8px;
  border-radius: 14px 14px 0 0;
  box-shadow: 0 -4px 14px rgba(0,0,0,.12);
  z-index: 2;
}
.menu-card-price sup { font-size: 12px; margin-left: 2px; }
.menu-card-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.menu-card-body h3 { font-size: 19px; margin-bottom: 8px; }
.menu-card-body p { font-size: 14px; margin-bottom: 16px; flex: 1; }
.menu-card-items { margin: 0 0 18px; font-size: 13px; color: var(--ink-500); }
.menu-card-items li { position: relative; padding-left: 16px; margin-bottom: 4px; }
.menu-card-items li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--orange-500);
}

.category-tabs { display: flex; justify-content: center; gap: 10px; margin-bottom: 40px; flex-wrap: wrap; }
.category-tabs button {
  background: #fff; border: 2px solid var(--line-200);
  padding: 10px 24px; border-radius: var(--radius-pill);
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
  color: var(--ink-700);
  transition: all .2s ease;
}
.category-tabs button.active, .category-tabs button:hover {
  background: var(--maroon-800); border-color: var(--maroon-800); color: #fff;
}

.section-cta-row { text-align: center; margin-top: 46px; }

/* =========================================================
   HAKKIMIZDA TEASER
   ========================================================= */
.about-teaser { padding: 90px 0; background: var(--paper-0); }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: center; }
.about-photo { position: relative; }
.about-photo img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; height: auto; aspect-ratio: 3/2; object-fit: cover; }
.about-photo .since-badge {
  position: absolute; bottom: -22px; right: -22px;
  width: 120px; height: 120px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-400), var(--maroon-700));
  color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--font-display); box-shadow: var(--shadow-orange);
  text-align: center;
}
.about-photo .since-badge strong { font-size: 26px; display: block; }
.about-photo .since-badge span { font-size: 11px; text-transform: uppercase; letter-spacing: .05em; }

.about-copy .value-list { display: grid; gap: 16px; margin: 26px 0 32px; }
.value-item { display: flex; gap: 14px; align-items: flex-start; }
.value-item .tick {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
  background: var(--cream-100); color: var(--orange-600);
  display: flex; align-items: center; justify-content: center; font-weight: 700;
}
.value-item strong { display: block; color: var(--maroon-800); font-family: var(--font-display); font-size: 15.5px; }
.value-item p { margin: 2px 0 0; font-size: 14px; }

/* =========================================================
   GALERİ
   ========================================================= */
.gallery { padding: 90px 0; background: var(--cream-50); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.gallery-grid a { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 3/2; box-shadow: var(--shadow-sm); }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-grid a:hover img { transform: scale(1.08); }

/* =========================================================
   BLOG
   ========================================================= */
.blog-section { padding: 90px 0; background: var(--paper-0); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
  background: var(--cream-50);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-200);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.blog-card-media { aspect-ratio: 16/10; overflow: hidden; }
.blog-card-media img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.blog-date { font-size: 12.5px; color: var(--orange-600); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 8px; }
.blog-card-body h3 { font-size: 18px; margin-bottom: 10px; }
.blog-card-body p { font-size: 14px; flex: 1; }
.blog-readmore { font-family: var(--font-display); font-weight: 600; font-size: 14px; color: var(--maroon-800); display: inline-flex; align-items: center; gap: 6px; margin-top: 10px; }
.blog-readmore svg { width: 16px; height: 16px; transition: transform .2s ease; }
.blog-card:hover .blog-readmore svg { transform: translateX(4px); }

/* Blog detay */
.post-hero { padding: 150px 0 50px; background: var(--cream-100); }
.post-hero .container { max-width: 780px; }
.post-hero .blog-date { margin-bottom: 14px; }
.post-hero h1 { font-size: clamp(28px, 4.4vw, 42px); }
.post-body { padding: 50px 0 100px; }
.post-body .container { max-width: 780px; }
.post-body img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); margin-bottom: 36px; }
.post-body p { font-size: 17px; color: var(--ink-700); }
.post-cta {
  margin-top: 40px;
  padding: 34px;
  background: var(--maroon-800);
  border-radius: var(--radius-lg);
  text-align: center;
}
.post-cta h3 { color: #fff; margin-bottom: 14px; }
.back-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--maroon-800); margin-bottom: 20px; font-family: var(--font-display); font-size: 14px; }

/* =========================================================
   CTA / KONUM BANDI
   ========================================================= */
.cta-band {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--maroon-900), var(--maroon-700));
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(#fff 1.5px, transparent 1.5px);
  background-size: 30px 30px;
  opacity: .06;
}
.cta-band-grid { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: center; }
.cta-band h2 { color: #fff; font-size: clamp(26px, 3.6vw, 36px); }
.cta-band p { color: rgba(255,255,255,.82); font-size: 16px; max-width: 460px; }
.cta-band-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.cta-hours { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius-md); padding: 26px 28px; }
.cta-hours h4 { color: #fff; font-family: var(--font-display); font-size: 15px; margin-bottom: 14px; text-transform: uppercase; letter-spacing: .04em;}

/* Çalışma saatleri satırları: hem koyu (cta-hours) hem açık (contact-info-row) zeminde kullanılır */
[data-hours-list] .row { display: flex; justify-content: space-between; gap: 16px; font-size: 14.5px; padding: 8px 0; border-bottom: 1px dashed var(--line-200); color: var(--ink-700); }
[data-hours-list] .row:last-child { border-bottom: none; }
[data-hours-list] .row span:last-child { font-weight: 700; color: var(--orange-600); }
.cta-hours .row { border-bottom-color: rgba(255,255,255,.18); color: rgba(255,255,255,.9); }
.cta-hours .row span:last-child { color: var(--gold-400); }

/* =========================================================
   İLETİŞİM SAYFASI
   ========================================================= */
.contact-hero { padding: 150px 0 60px; text-align: center; background: var(--cream-100); }
.contact-hero h1 { font-size: clamp(32px, 5vw, 48px); }
.contact-section { padding: 80px 0 100px; }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 46px; }
.contact-card { background: #fff; border: 1px solid var(--line-200); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-sm); }
.contact-info-row { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line-200); }
.contact-info-row:last-child { border-bottom: none; }
.contact-info-row .icon-circle {
  width: 46px; height: 46px; flex-shrink: 0; border-radius: 14px;
  background: var(--cream-100); color: var(--orange-600);
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.contact-info-row strong { display: block; font-family: var(--font-display); color: var(--maroon-800); font-size: 15px; margin-bottom: 3px;}
.contact-info-row p, .contact-info-row a { font-size: 14.5px; margin: 0; }
.contact-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line-200); min-height: 420px; }
.contact-map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }

/* =========================================================
   HAKKIMIZDA SAYFASI
   ========================================================= */
.page-hero { padding: 150px 0 70px; background: var(--cream-100); text-align: center; }
.page-hero h1 { font-size: clamp(32px, 5vw, 48px); }
.page-hero p { max-width: 620px; margin: 0 auto; font-size: 17px; }
.story-section { padding: 90px 0; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 90px; }
.story-grid.reverse .story-copy { order: 2; }
.story-grid img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; height: auto; aspect-ratio: 3/2; object-fit: cover; }
.stats-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; padding: 50px 0; border-top: 1px solid var(--line-200); border-bottom: 1px solid var(--line-200); margin-bottom: 90px; }
.stat-item { text-align: center; }
.stat-item strong { display: block; font-family: var(--font-display); font-size: 36px; color: var(--orange-600); }
.stat-item span { font-size: 13.5px; color: var(--ink-500); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--ink-900); color: rgba(255,255,255,.72); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand img { height: 42px; width: 42px; }
.footer-brand strong { font-family: var(--font-display); color: #fff; font-size: 19px; }
.site-footer p { color: rgba(255,255,255,.6); font-size: 14px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease;
}
.footer-social a:hover { background: var(--orange-500); }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h4 { color: #fff; font-family: var(--font-display); font-size: 15px; margin-bottom: 18px; text-transform: uppercase; letter-spacing: .04em; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col a { font-size: 14.5px; color: rgba(255,255,255,.65); transition: color .2s; }
.footer-col a:hover { color: var(--orange-400); }
.footer-col .contact-line { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; margin-bottom: 14px; }
.footer-col .contact-line svg { width: 17px; height: 17px; flex-shrink: 0; margin-top: 2px; color: var(--orange-400); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; font-size: 13px; color: rgba(255,255,255,.45); flex-wrap: wrap; gap: 10px; }
.footer-bottom a { color: rgba(255,255,255,.6); }

/* Sabit WhatsApp butonu */
.wa-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 600;
  width: 62px; height: 62px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(37,211,102,.5);
  animation: pulse-wa 2.4s infinite;
}
.wa-float svg { width: 30px; height: 30px; color: #fff; }
@keyframes pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.55), 0 10px 26px rgba(37,211,102,.5); }
  70% { box-shadow: 0 0 0 14px rgba(37,211,102,0), 0 10px 26px rgba(37,211,102,.5); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0), 0 10px 26px rgba(37,211,102,.5); }
}

/* Scroll-reveal (JS destekliyse çalışır; JS yoksa veya devreye girmeden önce içerik daima görünür kalır) */
.reveal-ready[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal-ready[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1080px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .cta-band-grid, .contact-grid, .story-grid { grid-template-columns: 1fr; }
  .story-grid.reverse .story-copy { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-strip { grid-template-columns: repeat(2,1fr); row-gap: 30px; }
}

@media (max-width: 860px) {
  .main-nav, .header-phone { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 82vw); height: 100vh;
    background: #fff; z-index: 550; padding: 100px 30px 30px;
    transform: translateX(100%); transition: transform .3s ease;
    box-shadow: var(--shadow-lg);
    display: flex; flex-direction: column; gap: 6px;
  }
  .mobile-nav.is-open { transform: translateX(0); }
  .mobile-nav a { padding: 14px 6px; font-family: var(--font-display); font-weight: 600; font-size: 17px; color: var(--maroon-800); border-bottom: 1px solid var(--line-200); }
  .mobile-nav .btn { margin-top: 20px; }
  .nav-scrim { position: fixed; inset: 0; background: rgba(36,21,18,.5); z-index: 540; opacity: 0; pointer-events: none; transition: opacity .3s ease; }
  .nav-scrim.is-open { opacity: 1; pointer-events: auto; }

  .hero { padding: 130px 0 90px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 380px; margin: 40px auto 0; }
  .hero-copy .lede { max-width: 100%; }
}

@media (max-width: 640px) {
  .feature-grid, .menu-grid, .blog-grid, .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: repeat(2,1fr); }
  .cta-band-actions .btn, .hero-cta .btn { width: 100%; }
  .cta-band-actions, .hero-cta { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-floating-card { left: 0; bottom: -14px; padding: 12px 16px; }
  .hero-floating-tag { right: 0; }

  .category-tabs {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-left: -24px; margin-right: -24px;
    padding: 0 24px 6px;
  }
  .category-tabs::-webkit-scrollbar { display: none; }
  .category-tabs button { flex: 0 0 auto; }
}
