/* ==========================================================================
   Cevizz — İçli Köfte & Leziz Tatlar
   Light theme: white ground, walnut/light-brown surfaces, leaf-green accents
   (palette lifted from the logo: white badge, walnut shell, green leaf)
   ========================================================================== */

:root {
  /* Palette */
  --bg: #FFFFFF;
  --bg-soft: #FAF7F2;       /* warm off-white */
  --tan: #F3EADC;           /* light brown surface */
  --tan-2: #E9DCC8;         /* deeper tan (footer) */
  --tan-3: #D9C7AA;         /* tan border */
  --sage: #EEF5E7;          /* light leaf tint */
  --sage-2: #DCEACF;
  --ink: #171412;
  --text: #2B2622;
  --muted: #6E655C;
  --line: rgba(23, 20, 18, 0.10);
  --walnut: #7F5730;        /* light brown, safe for text on tan surfaces */
  --walnut-l: #B98B57;      /* latte */
  --brass: #CBA262;         /* gold-tan (stars, dots) */
  --leaf: #5FA136;          /* bright leaf */
  --leaf-d: #3F7A21;        /* text / buttons */
  --leaf-dd: #2F5F18;       /* hover */
  --closed: #B5484F;
  --wa: #25D366;

  /* Type */
  --font-display: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  --font-body: 'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --h1: clamp(2.6rem, 6vw, 4.9rem);
  --h2: clamp(2rem, 4.2vw, 3.3rem);
  --h3: clamp(1.35rem, 2.2vw, 1.75rem);
  --lead: clamp(1.05rem, 1.3vw, 1.2rem);

  /* Spacing */
  --s-1: 4px; --s-2: 8px; --s-3: 16px; --s-4: 24px; --s-5: 32px;
  --s-6: 48px; --s-7: 72px; --s-8: 96px; --s-9: 128px;
  --section: clamp(72px, 10vw, 128px);

  /* Shape & depth */
  --r-sm: 10px; --r: 18px; --r-lg: 28px;
  --shadow-sm: 0 6px 18px rgba(92, 64, 30, 0.08);
  --shadow: 0 18px 48px rgba(92, 64, 30, 0.14);
  --shadow-lg: 0 30px 80px rgba(92, 64, 30, 0.22);

  --maxw: 1240px;
  --gutter: clamp(18px, 4vw, 40px);
  --ease: cubic-bezier(.2, .7, .2, 1);
  --header-h: 84px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
@supports (overflow-x: clip) {
  html, body { overflow-x: clip; }
}
body.nav-locked { overflow: hidden; }

img, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
h1 em, h2 em, h3 em { font-style: italic; font-weight: 300; color: var(--leaf-d); }

p { margin: 0; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--leaf-d);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--sage-2); color: var(--ink); }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.ico { width: 1.1em; height: 1.1em; flex: 0 0 auto; }

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  background: var(--ink); color: #fff;
  padding: 10px 16px; border-radius: 999px; font-weight: 600;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 16px; }

/* --------------------------------------------------------------------------
   Typography helpers
   -------------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--walnut);
  margin-bottom: var(--s-4);
}
.eyebrow-line { display: inline-block; width: 34px; height: 1px; background: currentColor; opacity: .8; }
.eyebrow-center { justify-content: center; }

.section-title { font-size: var(--h2); }
.section-lead {
  font-size: var(--lead); color: var(--muted); max-width: 56ch;
  margin-top: var(--s-4);
}

.section-head { max-width: 760px; margin-bottom: clamp(40px, 6vw, 64px); }
.section-head-center { margin-inline: auto; text-align: center; }
.section-head-center .section-lead { margin-inline: auto; }
.section-head-row {
  max-width: none;
  display: flex; align-items: flex-end; justify-content: space-between; gap: var(--s-4); flex-wrap: wrap;
}

.prose p + p { margin-top: 1.1em; }
.prose { font-size: 1.04rem; color: var(--text); }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: var(--line);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1px solid var(--btn-bd);
  font-weight: 600; font-size: 0.95rem; letter-spacing: 0.01em; line-height: 1;
  white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-sm { padding: 11px 18px; font-size: 0.88rem; }
.btn-lg { padding: 17px 30px; font-size: 1rem; }

.btn-primary {
  --btn-bg: var(--leaf-d); --btn-fg: #fff; --btn-bd: var(--leaf-d);
  box-shadow: 0 10px 24px rgba(63, 122, 33, 0.26);
}
.btn-primary:hover { --btn-bg: var(--leaf-dd); --btn-bd: var(--leaf-dd); box-shadow: 0 14px 30px rgba(63, 122, 33, 0.34); }

.btn-ghost { --btn-bd: rgba(23, 20, 18, 0.22); }
.btn-ghost:hover { --btn-bg: var(--ink); --btn-fg: #fff; --btn-bd: var(--ink); }

.tag {
  display: inline-block; align-self: flex-start; padding: 6px 12px; border-radius: 999px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
}
.tag-tan { background: var(--tan); color: var(--walnut); border: 1px solid var(--tan-3); }
.tag-green { background: var(--sage); color: var(--leaf-d); border: 1px solid var(--sage-2); }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  color: var(--ink);
  transition: background .35s var(--ease), box-shadow .35s var(--ease), height .35s var(--ease);
}
.site-header::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0));
  opacity: 1; transition: opacity .35s var(--ease);
}
.site-header.is-scrolled {
  --header-h: 70px;
  background: rgba(255, 255, 255, 0.84);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  backdrop-filter: blur(14px) saturate(1.1);
  box-shadow: 0 1px 0 var(--line), 0 10px 30px rgba(92, 64, 30, 0.06);
}
.site-header.is-scrolled::before { opacity: 0; }

.header-inner {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-4);
}

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-badge {
  width: 52px; height: 52px; border-radius: 50%;
  box-shadow: 0 4px 14px rgba(92, 64, 30, 0.18), 0 0 0 1px var(--line);
  transition: transform .35s var(--ease);
}
.brand:hover .brand-badge { transform: rotate(-8deg) scale(1.04); }
.brand-wordmark { height: 30px; width: auto; aspect-ratio: 422 / 137; }

.site-nav ul { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 36px); }
.site-nav ul a {
  position: relative; font-weight: 600; font-size: 0.93rem; letter-spacing: 0.01em;
  padding: 8px 0; opacity: .88; transition: opacity .2s, color .2s;
}
.site-nav ul a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 1.5px;
  background: var(--leaf-d); transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.site-nav ul a:hover::after, .site-nav ul a.is-active::after { transform: scaleX(1); }
.site-nav ul a:hover, .site-nav ul a.is-active { opacity: 1; color: var(--leaf-d); }
.nav-mobile-extra { display: none; }

.header-actions { display: flex; align-items: center; gap: var(--s-3); }

.nav-toggle {
  display: none; position: relative; width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(23, 20, 18, 0.25); background: rgba(255, 255, 255, 0.7);
}
.nav-toggle-bar {
  position: absolute; left: 12px; right: 12px; height: 1.6px; background: currentColor;
  transition: transform .3s var(--ease), top .3s var(--ease);
}
.nav-toggle-bar:nth-child(1) { top: 17px; }
.nav-toggle-bar:nth-child(2) { top: 25px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { top: 21px; transform: rotate(-45deg); }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--bg); color: var(--text);
  padding-top: calc(var(--header-h) + clamp(24px, 6vh, 56px));
  padding-bottom: clamp(48px, 8vh, 96px);
  min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-bg::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 70% at 85% 30%, rgba(203, 162, 98, 0.30), transparent 62%),
    radial-gradient(50% 50% at 8% 92%, rgba(95, 161, 54, 0.16), transparent 60%),
    linear-gradient(180deg, #FFFFFF 0%, #FBF8F3 100%);
}

.hero-grid {
  position: relative;
  display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center;
  gap: clamp(32px, 6vw, 80px);
}

.hero-title {
  font-size: var(--h1); color: var(--ink);
  font-weight: 300; line-height: 1.02;
  margin-bottom: var(--s-5);
}
.hero-title em { color: var(--leaf-d); font-weight: 300; }

.hero-lead {
  font-size: var(--lead); color: var(--muted); max-width: 54ch; line-height: 1.7;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-top: var(--s-6); }

.hero-meta {
  display: flex; flex-wrap: wrap; gap: 14px 28px;
  margin-top: var(--s-6); padding-top: var(--s-4);
  border-top: 1px solid var(--line);
  font-size: 0.9rem; color: var(--muted);
}
.hero-meta li { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta a:hover { color: var(--ink); }
.status-dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--brass);
  box-shadow: 0 0 0 4px rgba(203, 162, 98, 0.2);
}
.status-dot.is-open { background: var(--leaf); box-shadow: 0 0 0 4px rgba(95, 161, 54, 0.2); }
.rating { display: inline-flex; align-items: center; gap: 8px; }
.rating-stars { color: var(--walnut); letter-spacing: 0.08em; font-size: 0.8rem; }
.status-dot.is-closed { background: var(--closed); box-shadow: 0 0 0 4px rgba(181, 72, 79, 0.18); }

.hero-visual { position: relative; }
.hero-arch {
  margin: 0; position: relative;
  aspect-ratio: 4 / 5; max-height: 78vh;
  border-radius: 999px 999px var(--r-lg) var(--r-lg);
  overflow: hidden; isolation: isolate;
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--line);
}
.hero-arch::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(23, 20, 18, 0) 70%, rgba(23, 20, 18, 0.22) 100%);
}
.hero-arch img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); }

/* Rotating stamp */
.stamp {
  position: absolute; top: 6%; left: -34px; width: 150px; height: 150px;
  display: grid; place-items: center;
  filter: drop-shadow(0 12px 24px rgba(92, 64, 30, 0.22));
}
.stamp-ring {
  position: absolute; inset: 0; width: 100%; height: 100%;
  animation: spin 26s linear infinite;
}
.stamp-ring text {
  font-family: var(--font-body); font-weight: 700; font-size: 15px; letter-spacing: 0.22em;
  fill: var(--walnut);
  stroke: #fff; stroke-width: 3px; paint-order: stroke fill; stroke-linejoin: round;
}
.stamp-logo { width: 88px; height: 88px; border-radius: 50%; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Floating card */
.hero-card {
  position: absolute; left: -8%; bottom: 8%;
  display: flex; align-items: center; gap: 14px;
  padding: 12px 16px 12px 12px; max-width: 360px;
  background: rgba(255, 255, 255, 0.96); color: var(--ink);
  border-radius: var(--r); box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.hero-card:hover { transform: translateY(-3px); }
.hero-card img { width: 64px; height: 64px; border-radius: 12px; object-fit: cover; }
.hero-card span { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.hero-card strong { font-family: var(--font-display); font-weight: 500; font-size: 1.05rem; line-height: 1.2; }
.hero-card small { color: var(--muted); font-size: 0.78rem; letter-spacing: 0.02em; }
.hero-card .ico { color: var(--leaf-d); margin-left: 4px; }

/* --------------------------------------------------------------------------
   Ticker
   -------------------------------------------------------------------------- */
.ticker {
  background: var(--leaf-d); color: #fff;
  overflow: hidden; padding: 14px 0;
}
.ticker-track {
  display: flex; align-items: center; gap: 28px; width: max-content;
  animation: ticker 40s linear infinite;
  font-family: var(--font-display); font-size: 1.05rem; font-style: italic; letter-spacing: 0.02em;
}
.ticker-track i { font-style: normal; color: #fff; font-size: 0.75rem; opacity: .9; }
.ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */
.section { padding-block: var(--section); overflow-x: clip; }
@supports not (overflow-x: clip) { .section { overflow-x: hidden; } }

/* Story */
.story-grid {
  display: grid; grid-template-columns: 0.95fr 1.05fr; align-items: center;
  gap: clamp(40px, 7vw, 110px);
}
.story-visual { position: relative; padding: 0 12% 14% 0; }
.story-frame {
  position: absolute; inset: 8% 2% 6% 8%;
  border: 1px solid rgba(185, 139, 87, 0.5); border-radius: var(--r-lg);
  transform: rotate(-2deg);
}
.story-main {
  position: relative; width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: var(--r-lg); box-shadow: var(--shadow);
}
.story-secondary {
  position: absolute; right: 0; bottom: 0; width: 46%; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: var(--r); box-shadow: var(--shadow-lg);
  border: 6px solid #fff;
}
.story-chip {
  position: absolute; left: -6%; bottom: 26%;
  display: flex; flex-direction: column; gap: 2px;
  padding: 14px 18px; background: var(--leaf-d); color: #fff;
  border-radius: var(--r-sm); box-shadow: var(--shadow);
  transform: rotate(-3deg);
}
.story-chip strong { font-family: var(--font-display); font-style: italic; font-weight: 400; font-size: 1.15rem; color: #fff; }
.story-chip span { font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; }

.story-copy .section-title { margin-bottom: var(--s-5); }
.pullquote {
  margin: var(--s-6) 0 0; padding: var(--s-4) 0 0 var(--s-4);
  border-left: 2px solid var(--leaf);
}
.pullquote p {
  font-family: var(--font-display); font-style: italic; font-weight: 300;
  font-size: clamp(1.25rem, 1.9vw, 1.55rem); line-height: 1.35; color: var(--ink);
}
.pullquote footer { margin-top: var(--s-3); opacity: .85; }
.pullquote footer img { height: 30px; width: auto; aspect-ratio: 422 / 137; }

/* Values */
.values { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.values-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-4);
}
.value-card {
  position: relative; padding: var(--s-5);
  background: #fff; border: 1px solid var(--tan-3); border-radius: var(--r-lg);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--sage-2); }
.value-icon {
  display: grid; place-items: center; width: 56px; height: 56px; margin-bottom: var(--s-4);
  border-radius: 16px; background: var(--sage); color: var(--leaf-d);
}
.value-icon svg { width: 30px; height: 30px; }
.value-card h3 { font-size: 1.3rem; margin-bottom: var(--s-2); }
.value-card p { color: var(--muted); font-size: 0.95rem; }

/* Specials */
.specials { background: var(--sage); position: relative; overflow: hidden; }
.specials::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(50% 40% at 20% 0%, rgba(203, 162, 98, 0.22), transparent 70%);
}
.specials .container { position: relative; }
.specials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-5); }
.special-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--sage-2); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.special-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.special-media { margin: 0; aspect-ratio: 4 / 3; overflow: hidden; }
.special-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
}
.special-card:hover .special-media img { transform: scale(1.05); }
.special-body { padding: var(--s-5); display: flex; flex-direction: column; gap: var(--s-3); }
.special-body h3 { font-size: var(--h3); }
.special-body p { color: var(--muted); }
.pill-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: var(--s-1); }
.pill-list li {
  padding: 6px 12px; border-radius: 999px; font-size: 0.8rem; font-weight: 600;
  background: var(--tan); color: var(--walnut); border: 1px solid var(--tan-3);
}

.opening-menu {
  margin-top: var(--s-6);
  display: grid; grid-template-columns: 1fr 1.4fr auto; align-items: center; gap: var(--s-6);
  padding: clamp(24px, 3.5vw, 44px);
  border: 1px solid var(--tan-3); border-radius: var(--r-lg);
  background: #fff; box-shadow: var(--shadow-sm);
}
.opening-menu-head .eyebrow { margin-bottom: var(--s-2); }
.opening-menu-note { font-family: var(--font-display); font-style: italic; color: var(--muted); font-size: 1.1rem; }
.opening-menu-list { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-3) var(--s-5); }
.opening-menu-list li { display: flex; gap: 14px; align-items: flex-start; }
.opening-menu-list .num { font-family: var(--font-display); font-style: italic; color: var(--leaf-d); font-size: 1.1rem; line-height: 1.2; }
.opening-menu-list strong { display: block; font-weight: 600; line-height: 1.25; color: var(--ink); }
.opening-menu-list small { display: block; color: var(--muted); font-size: 0.8rem; margin-top: 3px; }

/* Menu */
.menu { background: var(--bg); position: relative; }
.tabs {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 8px;
  padding: 6px; margin: 0 auto var(--s-6); width: fit-content; max-width: 100%;
  background: var(--tan); border-radius: 999px; border: 1px solid var(--tan-3);
}
.tab {
  padding: 12px 22px; border-radius: 999px; font-weight: 600; font-size: 0.92rem;
  color: var(--walnut); transition: background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease);
}
.tab:hover { color: var(--ink); }
.tab.is-active { background: var(--leaf-d); color: #fff; box-shadow: 0 8px 20px rgba(63, 122, 33, 0.22); }

.tab-panel[hidden] { display: none; }
.menu-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-5) var(--s-4);
}
.menu-item { display: flex; flex-direction: column; gap: 10px; }
.menu-thumb {
  position: relative; width: 100%; aspect-ratio: 1; overflow: hidden;
  border-radius: var(--r); background: var(--tan);
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.menu-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.menu-thumb:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.menu-thumb:hover img { transform: scale(1.06); }
.menu-thumb .star {
  position: absolute; top: 10px; left: 10px; width: 30px; height: 30px;
  display: grid; place-items: center; border-radius: 50%;
  background: var(--brass); color: var(--ink); font-size: 0.85rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.menu-item h3 { font-size: 1.15rem; font-weight: 500; margin-top: 4px; }
.menu-item p { font-size: 0.86rem; color: var(--muted); }
.menu-footnote {
  margin-top: var(--s-6); text-align: center; color: var(--muted); font-size: 0.92rem;
}
.menu-footnote a { color: var(--leaf-d); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.star-inline { color: var(--brass); }

/* Gallery */
.gallery { background: var(--tan); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; grid-auto-flow: dense;
  gap: var(--s-3);
}
.gallery-item {
  position: relative; overflow: hidden; border-radius: var(--r);
  background: #fff; box-shadow: var(--shadow-sm);
}
.gallery-item.g-tall { grid-row: span 2; }
.gallery-item.g-wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.gallery-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(23, 20, 18, 0.3));
  opacity: 0; transition: opacity .4s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover::after { opacity: 1; }

/* Visit */
.visit { background: var(--bg); }
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
.visit-list { display: grid; gap: var(--s-4); margin: var(--s-6) 0 0; }
.visit-list > div { padding-top: var(--s-4); border-top: 1px solid var(--line); }
.visit-list dt {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--walnut);
  margin-bottom: 8px;
}
.visit-list dd { margin: 0; color: var(--ink); font-size: 1.02rem; line-height: 1.6; }
.visit-list dd a:hover { color: var(--leaf-d); }
.hours-row { display: flex; justify-content: space-between; gap: var(--s-4); max-width: 340px; }
.hours-row .closed { color: var(--closed); }
.hours-status { display: block; margin-top: 8px; font-size: 0.86rem; color: var(--muted); }
.visit-actions { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-top: var(--s-6); }

.social-row { display: flex; gap: 10px; margin-top: var(--s-5); }
.social-row a {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(23, 20, 18, 0.2); color: var(--ink); background: #fff;
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease), border-color .3s var(--ease);
}
.social-row a:hover { background: var(--leaf-d); border-color: var(--leaf-d); color: #fff; transform: translateY(-2px); }
.social-row svg { width: 20px; height: 20px; }

.visit-map {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 4 / 5; max-height: 640px;
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--line);
  background: var(--tan);
}
.visit-map iframe { width: 100%; height: 100%; border: 0; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer { --muted: #5B5148; background: var(--tan-2); color: var(--ink); padding-top: var(--s-8); border-top: 1px solid var(--tan-3); }
.footer-grid {
  display: grid; grid-template-columns: 1.3fr 0.6fr 1fr 1.3fr; gap: var(--s-6);
  padding-bottom: var(--s-7); border-bottom: 1px solid rgba(23, 20, 18, 0.12);
}
.footer-brand img:first-child { width: 72px; height: 72px; border-radius: 50%; box-shadow: 0 6px 16px rgba(92, 64, 30, 0.18); }
.footer-wordmark { height: 32px; width: auto; aspect-ratio: 422 / 137; margin-top: var(--s-4); }
.footer-brand p { margin-top: var(--s-3); color: var(--muted); max-width: 34ch; font-size: 0.95rem; }
.site-footer h3 {
  font-family: var(--font-body); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--walnut); margin-bottom: var(--s-3);
}
.site-footer ul li { color: var(--text); font-size: 0.95rem; line-height: 1.6; }
.site-footer ul li + li { margin-top: 8px; }
.site-footer ul a:hover { color: var(--leaf-d); }
.footer-hours li { display: flex; justify-content: space-between; gap: var(--s-3); }
.footer-hours .social-row li { display: block; margin: 0; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: var(--s-3); flex-wrap: wrap;
  padding-block: var(--s-4); padding-right: calc(var(--gutter) + 140px);
  font-size: 0.85rem; color: var(--muted);
}
.to-top { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; }
.to-top:hover { color: var(--leaf-d); }

/* --------------------------------------------------------------------------
   Floating WhatsApp
   -------------------------------------------------------------------------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 18px 12px 14px; border-radius: 999px;
  background: var(--wa); color: #08301A; font-weight: 700; font-size: 0.9rem;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.wa-float svg { width: 22px; height: 22px; }
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(37, 211, 102, 0.45); }

/* --------------------------------------------------------------------------
   Lightbox
   -------------------------------------------------------------------------- */
.lightbox {
  border: 0; padding: 0; margin: auto;
  width: 100vw; height: 100vh; max-width: 100vw; max-height: 100vh;
  background: transparent; color: #fff;
}
.lightbox::backdrop { background: rgba(23, 20, 18, 0.9); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.lightbox[open] { display: grid; place-items: center; }
.lightbox-figure { margin: 0; display: flex; flex-direction: column; align-items: center; gap: 14px; padding: 24px; max-width: min(1100px, 92vw); }
.lightbox-figure img {
  max-width: 100%; max-height: 78vh; object-fit: contain;
  border-radius: var(--r); box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  animation: lb-in .35s var(--ease);
}
.lightbox-figure figcaption { font-family: var(--font-display); font-style: italic; font-size: 1.1rem; color: rgba(255, 255, 255, 0.75); text-align: center; }
.lightbox-close, .lightbox-nav {
  position: fixed; display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.1); color: #fff; border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background .25s var(--ease);
}
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(255, 255, 255, 0.24); }
.lightbox-close { top: 20px; right: 20px; }
.lightbox-nav { top: 50%; transform: translateY(-50%); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-close svg, .lightbox-nav svg { width: 22px; height: 22px; }
@keyframes lb-in { from { opacity: 0; transform: scale(.96); } to { opacity: 1; transform: none; } }

.hero-in { animation: hero-in .9s var(--ease) both; animation-delay: var(--d, 0s); }
@keyframes hero-in { from { transform: translateY(18px); } to { transform: none; } }

/* --------------------------------------------------------------------------
   Reveal on scroll
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.is-visible { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1100px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-grid { grid-template-columns: repeat(3, 1fr); }
  .opening-menu { grid-template-columns: 1fr; gap: var(--s-4); }
  .opening-menu .btn { justify-self: start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 960px) {
  :root { --header-h: 74px; }
  .hero { min-height: 0; padding-top: calc(var(--header-h) + 32px); }
  .hero-grid { grid-template-columns: 1fr; gap: var(--s-7); }
  .hero-copy { max-width: 640px; }
  .hero-visual { max-width: 520px; margin-inline: auto; width: 100%; }
  .hero-arch { max-height: none; }
  .hero-card { left: 0; bottom: -18px; max-width: 320px; }
  .stamp { left: -10px; top: 4%; width: 124px; height: 124px; }
  .stamp-logo { width: 72px; height: 72px; }

  .story-grid { grid-template-columns: 1fr; gap: var(--s-7); }
  .story-visual { max-width: 560px; margin-inline: auto; width: 100%; }
  .specials-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 180px; }
  .visit-grid { grid-template-columns: 1fr; }
  .visit-map { aspect-ratio: 4 / 3; max-height: none; }

  /* Nav → drawer */
  .nav-toggle { display: inline-block; }
  .header-cta { display: none; }
  .site-nav {
    position: fixed; inset: 0; z-index: -1;
    display: flex; flex-direction: column; justify-content: center;
    padding: calc(var(--header-h) + 24px) var(--gutter) var(--s-6);
    background: var(--bg-soft); color: var(--ink);
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity .35s var(--ease), transform .35s var(--ease), visibility 0s .35s;
  }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: none; transition-delay: 0s; }
  .site-nav ul { flex-direction: column; align-items: flex-start; gap: 6px; }
  .site-nav ul a { font-family: var(--font-display); font-weight: 400; font-size: clamp(2rem, 8vw, 2.8rem); padding: 6px 0; }
  .site-nav ul a::after { bottom: 6px; height: 2px; }
  .nav-mobile-extra { display: block; margin-top: var(--s-6); padding-top: var(--s-5); border-top: 1px solid var(--line); }
  .nav-mobile-info { margin-top: var(--s-4); color: var(--muted); font-size: 0.9rem; line-height: 1.7; }
  .site-header.nav-open { background: transparent; box-shadow: none; -webkit-backdrop-filter: none; backdrop-filter: none; }
  .site-header.nav-open::before { opacity: 0; }
}

@media (max-width: 620px) {
  :root { --section: 64px; }
  .hero-actions .btn { width: 100%; }
  .hero-meta { gap: 10px 20px; }
  .hero-card { position: relative; left: auto; bottom: auto; margin-top: var(--s-4); max-width: none; }
  .values-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-4) var(--s-3); }
  .menu-item h3 { font-size: 1.02rem; }
  .tabs { border-radius: var(--r); width: 100%; }
  .tab { flex: 1 1 auto; text-align: center; padding: 11px 14px; font-size: 0.86rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .opening-menu-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--s-5); }
  .footer-bottom { justify-content: center; text-align: center; padding-right: var(--gutter); padding-bottom: 88px; }
  .wa-float span { display: none; }
  .wa-float { padding: 14px; }
  .story-secondary { border-width: 4px; }
  .story-chip { left: 0; padding: 10px 14px; }
  .story-frame { inset: 8% 4% 6% 6%; }
  .lightbox-nav { width: 42px; height: 42px; top: auto; bottom: 20px; transform: none; }
  .lightbox-prev { left: 20px; }
  .lightbox-next { right: 20px; }
}

@media (max-width: 400px) {
  .brand-wordmark { display: none; }
  .hero-meta li { width: 100%; }
}

/* --------------------------------------------------------------------------
   Motion preferences
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001s !important; animation-iteration-count: 1 !important; transition-duration: 0.001s !important; }
  .reveal { opacity: 1; transform: none; }
  .ticker-track { animation: none; }
  .stamp-ring { animation: none; }
  .hero-in { animation: none; }
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.faq { background: var(--bg-soft); border-top: 1px solid var(--line); }
.faq-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(40px, 6vw, 96px); align-items: start; }
.faq-head { position: sticky; top: 100px; }
.faq-head .btn { margin-top: var(--s-5); }
.faq-list { display: grid; gap: 12px; }
.faq-item {
  background: #fff; border: 1px solid var(--tan-3); border-radius: var(--r);
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.faq-item[open] { box-shadow: var(--shadow-sm); border-color: var(--sage-2); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-3);
  padding: 18px 22px; cursor: pointer; list-style: none;
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .ico { color: var(--leaf-d); transition: transform .3s var(--ease); }
.faq-item[open] summary .ico { transform: rotate(180deg); }
.faq-item summary:hover { color: var(--leaf-d); }
.faq-item p { padding: 0 22px 20px; color: var(--muted); line-height: 1.7; }

@media (max-width: 960px) {
  .faq-grid { grid-template-columns: 1fr; }
  .faq-head { position: static; }
}

/* --------------------------------------------------------------------------
   Homepage: catering / toplu sipariş
   -------------------------------------------------------------------------- */
.catering { background: var(--bg); border-top: 1px solid var(--line); }
.catering-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
.catering-points { display: grid; gap: 14px; margin-top: var(--s-5); }
.catering-points li {
  display: grid; gap: 2px; padding: 14px 16px 14px 44px; position: relative;
  background: var(--bg-soft); border: 1px solid var(--tan-3); border-radius: var(--r-sm);
}
.catering-points li::before {
  content: ""; position: absolute; left: 16px; top: 19px; width: 16px; height: 16px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><circle cx='8' cy='8' r='8' fill='%233F7A21'/><path d='M4.5 8.3l2.3 2.3 4.7-4.9' fill='none' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
}
.catering-points strong { font-weight: 600; color: var(--ink); }
.catering-points span { font-size: 0.92rem; color: var(--muted); }
.catering-visual { margin: 0; }
.catering-visual img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--shadow); }
.catering-visual figcaption { margin-top: 12px; font-size: 0.86rem; color: var(--muted); font-style: italic; font-family: var(--font-display); }

/* --------------------------------------------------------------------------
   Landing pages (subpage)
   -------------------------------------------------------------------------- */
.page-hero {
  padding-top: calc(var(--header-h) + clamp(24px, 5vh, 48px)); padding-bottom: clamp(40px, 6vw, 72px);
  background: linear-gradient(180deg, #FFFFFF 0%, #FBF8F3 100%); overflow-x: clip;
}
.page-hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.breadcrumbs { display: flex; gap: 10px; font-size: 0.82rem; color: var(--muted); margin-bottom: var(--s-4); }
.breadcrumbs a:hover { color: var(--leaf-d); }
.page-title { font-size: clamp(2.1rem, 4.6vw, 3.6rem); font-weight: 300; line-height: 1.06; margin-bottom: var(--s-4); }
.page-hero .hero-lead { color: var(--muted); }
.page-hero .hero-actions { margin-top: var(--s-5); }
.page-hero-media { margin: 0; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg), 0 0 0 1px var(--line); aspect-ratio: 4 / 3; }
.page-hero-media.is-portrait { aspect-ratio: 4 / 5; max-width: 420px; justify-self: end; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }

.article { padding-block: clamp(48px, 7vw, 88px); }
.article-grid { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: clamp(32px, 6vw, 80px); align-items: start; }
.article-body { max-width: 68ch; }
.article-block + .article-block { margin-top: clamp(32px, 5vw, 48px); }
.article-block h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: var(--s-3); }
.article-block p { font-size: 1.04rem; line-height: 1.75; color: var(--text); }
.article-block p + p { margin-top: 1em; }
.article-block a:not(.btn) { color: var(--leaf-d); text-decoration: underline; text-underline-offset: 3px; }
.check-list { display: grid; gap: 10px; margin-top: var(--s-3); }
.check-list li { position: relative; padding-left: 28px; line-height: 1.6; }
.check-list li::before { content: ""; position: absolute; left: 0; top: 7px; width: 14px; height: 14px; border-radius: 50%; background: var(--sage-2); box-shadow: inset 0 0 0 4px var(--leaf-d); }
.steps { display: grid; gap: 14px; margin-top: var(--s-3); }
.steps li { display: flex; gap: 14px; padding: 16px 18px; background: var(--bg-soft); border: 1px solid var(--tan-3); border-radius: var(--r-sm); }
.steps .num { font-family: var(--font-display); font-style: italic; color: var(--leaf-d); font-size: 1.15rem; line-height: 1.3; }
.steps strong { display: block; color: var(--ink); margin-bottom: 4px; }
.steps p { font-size: 0.95rem; color: var(--muted); }
.article-aside { position: sticky; top: 96px; display: grid; gap: var(--s-3); }
.aside-card { padding: var(--s-4); background: #fff; border: 1px solid var(--tan-3); border-radius: var(--r); box-shadow: var(--shadow-sm); }
.aside-card h2 { font-family: var(--font-body); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--walnut); margin-bottom: var(--s-3); }
.aside-card dl { display: grid; gap: 12px; margin: 0; }
.aside-card dt { font-size: 0.78rem; font-weight: 700; color: var(--muted); margin-bottom: 2px; }
.aside-card dd { margin: 0; font-size: 0.95rem; line-height: 1.55; color: var(--ink); }
.aside-card dd a { color: var(--leaf-d); }
.aside-links li + li { margin-top: 8px; }
.aside-links a { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: var(--ink); }
.aside-links a:hover { color: var(--leaf-d); }
.cta-band { background: var(--leaf-d); color: #fff; padding-block: clamp(40px, 6vw, 64px); }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--s-4); flex-wrap: wrap; }
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: 6px; }
.cta-band p { color: rgba(255, 255, 255, 0.82); }
.cta-band .btn-primary { --btn-bg: #fff; --btn-fg: var(--leaf-d); --btn-bd: #fff; box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18); }
.cta-band .btn-primary:hover { --btn-bg: var(--bg-soft); --btn-bd: var(--bg-soft); }

@media (max-width: 960px) {
  .catering-grid, .page-hero-grid, .article-grid { grid-template-columns: 1fr; }
  .page-hero-media.is-portrait { justify-self: start; max-width: 100%; aspect-ratio: 4 / 3; }
  .article-aside { position: static; }
}
