/* =========================================================
   Limos Kahvaltı — Editorial redesign
   Warm ivory · deep espresso · olive · muted lemon
   Vanilla CSS, mobile-first
   ========================================================= */

:root {
  /* Palet */
  --paper:      #F3EFE6;   /* ana açık zemin */
  --paper-2:    #ECE6D8;   /* hafif kontrast zemin */
  --espresso:   #211C18;   /* koyu metin / koyu bölümler */
  --ink:        #2A2521;   /* gövde metni */
  --olive:      #F5C014;   /* kontrollü accent (sarı) */
  --olive-deep: #565C46;
  --lemon:      #C9B457;   /* "Limos" kimliğine ince referans */
  --accent:     #F6C314;   /* parlak sarı — buton hover / vurgu */
  --stone:      #8C7F6C;   /* ikincil metin */
  --stone-line: #D6CBB8;   /* ince çizgiler */
  --stone-line-dk: #C6B9A2;

  /* Tipografi */
  --serif: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  --sans:  "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Ölçü */
  --container: 1280px;
  --gutter: 24px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 76px;

  --pad-section: 72px;
}

@media (min-width: 720px) { :root { --pad-section: 104px; --gutter: 40px; } }
@media (min-width: 1080px) { :root { --pad-section: 150px; --gutter: 56px; } }

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.08; color: var(--espresso); }
em { font-style: italic; }

ul { list-style: none; }

::selection { background: var(--lemon); color: var(--espresso); }

:focus-visible {
  outline: 2px solid var(--espresso);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--espresso);
  color: var(--paper);
  padding: 12px 18px;
  z-index: 1000;
  font-size: .85rem;
}
.skip-link:focus { left: 12px; top: 12px; }

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

.section { padding-block: var(--pad-section); }

.section-paper-dark {
  background: var(--espresso);
  color: #CFC7B8;
}

/* ---------- Editorial primitives ---------- */
.sec-index {
  font-family: var(--sans);
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--stone);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}
.sec-index::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--lemon);
}
.sec-index--light { color: #A79C88; }
.sec-index--light::before { background: var(--lemon); }

.display {
  font-size: clamp(2.1rem, 6vw, 4rem);
  letter-spacing: -0.01em;
  color: var(--espresso);
  max-width: 16ch;
}
.display em { color: var(--olive); }
.display--light { color: var(--paper); }
.display--light em { color: var(--lemon); }

.sec-head { max-width: 640px; margin-bottom: clamp(40px, 6vw, 72px); }
.sec-sub { margin-top: 20px; color: var(--stone); font-size: 1rem; max-width: 46ch; }
.sec-sub strong { color: var(--ink); font-weight: 500; }
.sec-sub--light { color: #A79C88; }
.sec-sub--light strong { color: var(--paper); }

.lede {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.75;
  color: var(--ink);
  max-width: 46ch;
}
.section-paper-dark .lede { color: #CFC7B8; }

/* ---------- Buttons & links ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 16px 26px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
  white-space: nowrap;
}
.btn .arw { transition: transform .4s var(--ease); }
.btn:hover .arw { transform: translateX(5px); }

.btn-solid { background: var(--espresso); color: var(--paper); border-color: var(--espresso); }
.btn-solid:hover { background: var(--accent); color: var(--espresso); border-color: var(--accent); }
.section-paper-dark .btn-solid { background: var(--paper); color: var(--espresso); border-color: var(--paper); }
.section-paper-dark .btn-solid:hover { background: var(--accent); color: var(--espresso); border-color: var(--accent); }

.btn-line { background: transparent; color: var(--espresso); border-color: var(--stone-line-dk); }
.btn-line:hover { border-color: var(--espresso); background: var(--espresso); color: var(--paper); }
.btn-line--light { color: var(--paper); border-color: rgba(243, 239, 230, .5); }
.btn-line--light:hover { background: var(--paper); color: var(--espresso); border-color: var(--paper); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--espresso);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--stone-line-dk);
  transition: border-color .35s var(--ease);
}
.section-paper-dark .link-arrow { color: var(--paper); border-color: rgba(243,239,230,.4); }
.link-arrow .arw { transition: transform .4s var(--ease); }
.link-arrow:hover { border-color: currentColor; }
.link-arrow:hover .arw { transform: translateX(5px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background-color .45s var(--ease), border-color .45s var(--ease);
  border-bottom: 1px solid transparent;
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: var(--header-h);
  gap: 20px;
}

.header-logo { display: block; justify-self: start; line-height: 0; }
.header-logo img {
  width: clamp(42px, 5vw, 52px);
  height: auto;
  border-radius: 4px;
  display: block;
}

.brand { display: none; }
.brand-word {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .01em;
  color: var(--paper);
  transition: color .45s var(--ease);
}
.brand-sub {
  font-size: .6rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(243, 239, 230, .7);
  transition: color .45s var(--ease);
}

.main-nav { display: flex; align-items: center; gap: 30px; justify-self: start; margin-left: clamp(24px, 4vw, 56px); }
.nav-link {
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(243, 239, 230, .82);
  position: relative;
  padding: 4px 0;
  transition: color .3s var(--ease);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width .35s var(--ease);
}
.nav-link:hover, .nav-link.is-current { color: var(--paper); }
.nav-link:hover::after, .nav-link.is-current::after { width: 100%; }
.nav-link--cta { display: none; }

.header-actions { display: flex; align-items: center; gap: 18px; justify-self: end; }
.header-phone {
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  transition: color .3s var(--ease);
}
.header-phone:hover { color: var(--accent); }
.header-cta {
  padding: 12px 20px;
  color: var(--paper);
  border-color: rgba(243, 239, 230, .45);
}
.header-cta:hover { background: var(--accent); color: var(--espresso); border-color: var(--accent); }

/* Dil değiştirici */
.lang-switch { display: flex; align-items: center; gap: 2px; border: 1px solid rgba(243, 239, 230, .35); border-radius: 999px; padding: 3px; }
.lang-btn {
  appearance: none; border: 0; background: transparent; cursor: pointer;
  font-family: inherit; font-size: .68rem; font-weight: 600; letter-spacing: .06em;
  padding: 5px 9px; border-radius: 999px; color: rgba(243, 239, 230, .75);
  transition: background .25s var(--ease), color .25s var(--ease);
}
.lang-btn:hover { color: var(--paper); }
.lang-btn.is-active { background: var(--accent); color: var(--espresso); }
.site-header.is-scrolled .lang-switch { border-color: var(--stone-line-dk); }
.site-header.is-scrolled .lang-btn { color: var(--stone); }
.site-header.is-scrolled .lang-btn:hover { color: var(--ink); }
.site-header.is-scrolled .lang-btn.is-active { background: var(--accent); color: var(--espresso); }
.lang-switch--topbar { display: none; }

/* İlk ziyaret dil seçim penceresi — menüyü kaplamaz, hızlıca kapanır */
.lang-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(33, 28, 24, .6);
  backdrop-filter: blur(6px) saturate(140%);
  -webkit-backdrop-filter: blur(6px) saturate(140%);
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.lang-modal-overlay.is-open { opacity: 1; }
.lang-modal-card {
  width: 100%;
  max-width: 340px;
  background: var(--paper);
  border-radius: 14px;
  padding: 1.9rem 1.6rem;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .4);
  transform: translateY(14px) scale(.97);
  transition: transform .35s var(--ease);
}
.lang-modal-overlay.is-open .lang-modal-card { transform: translateY(0) scale(1); }
.lang-modal-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--espresso);
  margin: 0 0 1.2rem;
}
.lang-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
  margin-bottom: 1rem;
}
.lang-modal-btn {
  appearance: none;
  cursor: pointer;
  padding: .7rem .5rem;
  border: 1px solid var(--stone-line);
  border-radius: 8px;
  background: transparent;
  font-family: inherit;
  font-size: .85rem;
  font-weight: 500;
  color: var(--espresso);
  transition: background .18s var(--ease), border-color .18s var(--ease);
}
.lang-modal-btn:hover, .lang-modal-btn:focus-visible { background: var(--accent); border-color: var(--accent); }
.lang-modal-skip {
  appearance: none;
  border: 0;
  background: none;
  cursor: pointer;
  font-family: inherit;
  font-size: .8rem;
  color: var(--stone);
  text-decoration: underline;
}
@media (prefers-reduced-motion: reduce) {
  .lang-modal-overlay, .lang-modal-card { transition: none; }
}
@media (prefers-reduced-transparency: reduce) {
  .lang-modal-overlay { background: rgba(33, 28, 24, .92); backdrop-filter: none; -webkit-backdrop-filter: none; }
}

/* Scrolled state → ivory */
.site-header.is-scrolled {
  background: rgba(243, 239, 230, .92);
  backdrop-filter: saturate(150%) blur(10px);
  -webkit-backdrop-filter: saturate(150%) blur(10px);
  border-bottom-color: var(--stone-line);
}
.site-header.is-scrolled .brand-word { color: var(--espresso); }
.site-header.is-scrolled .brand-sub { color: var(--stone); }
.site-header.is-scrolled .nav-link { color: var(--ink); }
.site-header.is-scrolled .header-phone { color: var(--accent); }
.site-header.is-scrolled .nav-link:hover,
.site-header.is-scrolled .nav-link.is-current { color: var(--espresso); }
.site-header.is-scrolled .header-phone:hover { color: var(--accent); }
.site-header.is-scrolled .header-cta { color: var(--espresso); border-color: var(--stone-line-dk); }
.site-header.is-scrolled .header-cta:hover { background: var(--accent); color: var(--espresso); border-color: var(--accent); }

/* Ana sayfa: "Yol Tarifi" simsiyah (menü sayfalarında sarı kalır) */
body:not(.menu-page) .header-phone,
body:not(.menu-page) .header-phone:hover,
body:not(.menu-page) .site-header.is-scrolled .header-phone,
body:not(.menu-page) .site-header.is-scrolled .header-phone:hover { color: #000; }
.site-header.is-scrolled .nav-toggle span { background: var(--espresso); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 0;
  cursor: pointer;
  justify-self: end;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--paper);
  transition: transform .3s var(--ease), opacity .3s var(--ease), background-color .45s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(3.75px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.75px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: var(--paper);
}
.hero-media {
  position: absolute;
  inset: 0;
  background: var(--espresso) url("../images/hero.webp") center 62% / cover no-repeat;
  transform: scale(1.06);
  animation: hero-settle 1.6s var(--ease) forwards;
}
@keyframes hero-settle { to { transform: scale(1); } }
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(94deg, rgba(18, 14, 11, .68) 0%, rgba(18, 14, 11, .32) 42%, rgba(18, 14, 11, .04) 72%),
    linear-gradient(180deg, rgba(18, 14, 11, .5) 0%, rgba(18, 14, 11, .18) 30%, rgba(18, 14, 11, .3) 60%, rgba(18, 14, 11, .78) 100%);
}
.hero-inner {
  position: relative;
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: 40px;
  width: 100%;
}
.hero-eyebrow, .hero-title, .hero-lead, .hero-actions {
  animation: hero-rise .95s var(--ease) both;
}
.hero-title { animation-delay: .08s; }
.hero-lead { animation-delay: .16s; }
.hero-actions { animation-delay: .24s; }
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: none; }
}

.hero-eyebrow {
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(243, 239, 230, .86);
  margin-bottom: 22px;
}
.hero-title {
  font-size: clamp(3.2rem, 12vw, 8.5rem);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.015em;
  color: var(--paper);
}
.hero-title em { color: var(--paper); font-weight: 400; }
.hero-lead {
  margin-top: 28px;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  line-height: 1.7;
  max-width: 44ch;
  color: rgba(243, 239, 230, .92);
}
.hero-actions { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 16px; }

.hero-foot {
  position: relative;
  border-top: 1px solid rgba(243, 239, 230, .22);
}
.hero-foot-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 40px;
  padding-block: 22px;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(243, 239, 230, .8);
}
.hero-foot-inner span { position: relative; }
.hero-foot-inner span + span::before {
  content: "";
  position: absolute;
  left: -20px; top: 50%;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--lemon);
  transform: translateY(-50%);
}

/* ---------- 01 Intro ---------- */
.intro {
  --gingham: clamp(20px, 3.4vw, 30px);
  padding-block: clamp(32px, 4.5vw, 64px);
  background-color: var(--paper);
  background-image:
    repeating-linear-gradient(90deg, rgba(246, 192, 20, .17) 0 var(--gingham), transparent var(--gingham) calc(var(--gingham) * 2)),
    repeating-linear-gradient(0deg,  rgba(246, 192, 20, .17) 0 var(--gingham), transparent var(--gingham) calc(var(--gingham) * 2));
}
.intro-grid { display: grid; gap: 40px; align-items: start; }
.intro-body { max-width: 760px; }
.intro .lede { margin-top: 28px; max-width: 58ch; }
.intro-facts {
  display: grid;
  gap: 0;
  margin-top: 52px;
  border-top: 1px solid var(--stone-line);
}
.intro-facts li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 22px 0;
  border-bottom: 1px solid var(--stone-line);
}
.intro-facts strong {
  font-family: var(--sans);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: .01em;
  color: var(--espresso);
}
.intro-facts span { font-size: .82rem; letter-spacing: .04em; color: var(--stone); }

/* "Menemeni Hazırla" basılı-tut animasyonu */
.intro-cook {
  margin: clamp(28px, 6vw, 48px) auto 0;
  width: min(94vw, 560px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  -webkit-tap-highlight-color: transparent;
}
.cook-pan {
  position: relative;
  width: 100%;
  aspect-ratio: 715 / 534;
  filter: drop-shadow(0 18px 24px rgba(60, 30, 8, .16));
}
.cook-spin {
  position: absolute;
  inset: 0;
  transform-origin: 50% 50%;
  will-change: transform, filter;
}
.cook-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
}
.cook-img--done { opacity: 0; }

.cook-btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  padding: 15px 26px;
  border: 1px solid var(--stone-line-dk);
  background: var(--paper);
  color: var(--espresso);
  font-family: var(--sans);
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
  touch-action: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  transition: border-color .3s var(--ease), background-color .3s var(--ease), color .3s var(--ease);
}
.cook-btn:hover { border-color: var(--espresso); }
.cook-btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.cook-btn-label { position: relative; z-index: 1; }
.cook-btn-fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: calc(var(--p, 0) * 100%);
  background: rgba(246, 192, 20, .28);
  z-index: 0;
}
.intro-cook.is-cooking .cook-btn { border-color: var(--accent); }
.intro-cook.is-done .cook-btn {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--espresso);
}
.intro-cook.is-done .cook-btn-fill { display: none; }

.cook-hint {
  font-family: var(--sans);
  font-size: .66rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--stone);
}

@media (prefers-reduced-motion: reduce) {
  .cook-spin { transition: none; }
}

@media (max-width: 899px) {
  .intro-cook { order: 1; }
  .intro-body { order: 2; }
}

@media (min-width: 900px) {
  .intro-grid { grid-template-columns: 200px 1fr; gap: 0; }
  .intro-body { grid-column: 1 / -1; margin-top: clamp(16px, 3vw, 32px); }
  .intro-facts { grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--stone-line); border-bottom: 1px solid var(--stone-line); }
  .intro-facts li { background: var(--paper); border-bottom: 0; padding: 28px 28px 28px 0; }
  .intro-facts li:first-child { padding-left: 0; }
  .intro-facts li:not(:first-child) { padding-left: 28px; }
}

@media (min-width: 1120px) {
  .intro-grid { grid-template-columns: 180px minmax(0, 1fr) clamp(400px, 40vw, 580px); }
  .intro-body { grid-column: 1 / 3; }
  .intro-cook {
    grid-column: 3;
    grid-row: 2;
    align-self: center;
    width: 100%;
    margin: 0;
  }
}

/* ---------- 02 Breakfast ---------- */
.breakfast-head { margin-bottom: clamp(40px, 6vw, 80px); }
.breakfast-head .display { max-width: none; }

.breakfast-grid { display: grid; gap: clamp(32px, 5vw, 60px); }
.breakfast-feature { overflow: hidden; background: #1A1613; }
.breakfast-feature img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 4 / 3; }
.breakfast-feature figcaption {
  margin-top: 12px;
  font-family: var(--sans);
  font-size: .74rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #8F8676;
}

.breakfast-intro p { color: #CFC7B8; max-width: 46ch; }
.breakfast-intro .link-arrow { margin-top: 22px; }
.plate-list { margin: 0; border-top: 1px solid rgba(243, 239, 230, .16); }
.plate-list li { padding: 24px 0; border-bottom: 1px solid rgba(243, 239, 230, .16); }
.plate-line { display: flex; justify-content: space-between; align-items: baseline; gap: 20px; margin-bottom: 8px; }
.plate-line h3 { font-size: 1.65rem; font-weight: 500; color: var(--paper); }
.plate-price { font-family: var(--sans); font-size: 1rem; font-weight: 500; letter-spacing: .04em; color: var(--lemon); white-space: nowrap; }
.plate-list p { font-size: .92rem; line-height: 1.7; color: #B5AC9B; max-width: 60ch; }
.plate-list em { color: #CFC7B8; font-style: italic; }

@media (min-width: 860px) {
  .breakfast-feature img { aspect-ratio: 16 / 9; }
  .breakfast-body {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    column-gap: clamp(48px, 6vw, 88px);
    align-items: start;
  }
  .breakfast-intro { align-self: center; }
}

/* ---------- 03 Signature ---------- */
.sig-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px 32px;
}
.sig-media { overflow: hidden; background: var(--paper-2); margin-bottom: 18px; }
.sig-media img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform .9s var(--ease);
}
.sig-item:hover .sig-media img { transform: scale(1.04); }
.sig-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--stone-line);
}
.sig-line h3 { font-size: 1.5rem; font-weight: 500; }
.sig-line span { font-family: var(--sans); font-size: .92rem; font-weight: 500; letter-spacing: .04em; color: var(--olive); }
.sig-item p { margin-top: 10px; font-size: .88rem; color: var(--stone); }

@media (min-width: 560px) { .sig-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .sig-grid { grid-template-columns: repeat(4, 1fr); gap: 0 32px; } }

/* ---------- Editorial statement ---------- */
.statement {
  position: relative;
  overflow: hidden;
  padding-block: clamp(96px, 18vw, 220px);
  background: var(--espresso);
}
.statement-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transform: scaleX(-1);
}
.statement::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(18,14,11,.78) 0%, rgba(18,14,11,.55) 45%, rgba(18,14,11,.28) 100%),
    linear-gradient(0deg, rgba(18,14,11,.45), rgba(18,14,11,.2));
}
.statement .container { position: relative; z-index: 2; }
.statement-body { max-width: 34rem; }
.statement-body .sec-index { margin-bottom: 22px; }
.statement-text {
  font-family: var(--serif);
  font-size: clamp(2rem, 5.6vw, 4rem);
  font-weight: 400;
  line-height: 1.14;
  color: var(--paper);
  letter-spacing: -0.01em;
  text-shadow: 0 1px 30px rgba(0,0,0,.4);
}
.statement-text em { color: var(--lemon); }
.statement-note {
  margin-top: 26px;
  max-width: 32ch;
  font-size: 1rem;
  line-height: 1.7;
  color: #C9BEA8;
}

/* ---------- 04 Menu ---------- */
.menu-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 8px;
  margin-bottom: 48px;
  padding-bottom: 4px;
}
.filter-btn {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 10px 16px;
  border: 1px solid var(--stone-line);
  background: transparent;
  color: var(--stone);
  cursor: pointer;
  transition: color .3s var(--ease), border-color .3s var(--ease), background-color .3s var(--ease);
}
.filter-btn:hover { color: var(--espresso); border-color: var(--stone-line-dk); }
.filter-btn.is-active {
  background: var(--espresso);
  border-color: var(--espresso);
  color: var(--paper);
}

.menu-grid { display: grid; gap: 48px 64px; }
.menu-cat { break-inside: avoid; }
.menu-cat.is-hidden { display: none; }
.menu-subcols { display: grid; gap: 28px; }
.menu-subcol + .menu-subcol { padding-top: 4px; }

.menu-cat-title {
  font-size: 1.7rem;
  font-weight: 500;
  padding-bottom: 14px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--espresso);
}
.menu-cat-title small { color: var(--stone); font-family: var(--sans); font-weight: 400; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.menu-subtitle {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--stone-line);
}

.menu-list li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid var(--stone-line);
  font-size: .96rem;
}
.menu-list li:last-child { border-bottom: 0; }
.menu-list .dots { flex: 1; border-bottom: 1px dotted var(--stone-line-dk); transform: translateY(-4px); }
.menu-list .p { font-family: var(--sans); font-size: .92rem; font-weight: 500; letter-spacing: .02em; color: var(--espresso); white-space: nowrap; }
.menu-cat-note { margin-top: 12px; font-size: .82rem; font-style: italic; color: var(--stone); }

.menu-pay {
  margin-top: 72px;
  padding-top: 28px;
  border-top: 1px solid var(--stone-line);
  display: grid;
  gap: 8px;
}
.menu-pay-label {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--stone);
}
.menu-pay-list { font-size: .9rem; color: var(--ink); line-height: 1.9; }

@media (min-width: 760px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-cat--drinks { grid-column: 1 / -1; }
  .menu-cat--drinks .menu-subcols { grid-template-columns: repeat(2, 1fr); gap: 40px 64px; }
}
@media (min-width: 1080px) {
  .menu-grid { grid-template-columns: repeat(3, 1fr); }
  .menu-cat--drinks { grid-column: span 2; }
}

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.g-item { overflow: hidden; background: var(--paper-2); }
.g-item img, .g-item video { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
@media (hover: hover) { .g-item:hover img, .g-item:hover video { transform: scale(1.04); } }
.g-item img, .g-item video { aspect-ratio: 1/1; }

@media (min-width: 720px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 250px);
    grid-template-areas:
      "hero  hero  brk"
      "meze  suc   brk"
      "meze  yum   men";
  }
  .g-item img, .g-item video { aspect-ratio: auto; height: 100%; }
  .gallery .g-item:nth-child(1) { grid-area: brk; }
  .gallery .g-item:nth-child(2) { grid-area: hero; }
  .gallery .g-item:nth-child(3) { grid-area: suc; }
  .gallery .g-item:nth-child(4) { grid-area: yum; }
  .gallery .g-item:nth-child(5) { grid-area: meze; }
  .gallery .g-item:nth-child(6) { grid-area: men; }
}
@media (min-width: 1080px) { .gallery { grid-template-rows: repeat(3, 300px); } }

/* ---------- Reviews ---------- */
.reviews .sec-head { margin-bottom: 56px; }
.reviews .sec-index--light,
.reviews .sec-sub--light,
.reviews .sec-sub--light strong { color: #F6C314; }
.reviews-marquee {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.reviews-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: reviews-scroll 140s linear infinite;
}
.reviews-marquee:hover .reviews-track,
.reviews-track:focus-within { animation-play-state: paused; }
@keyframes reviews-scroll {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
.review-card {
  flex: 0 0 min(78vw, 380px);
  width: min(78vw, 380px);
  padding: 8px 40px 8px 0;
  margin-right: 40px;
  border-right: 1px solid rgba(246, 195, 20, .24);
}
.review-card p {
  font-family: var(--serif);
  font-size: 1.24rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  color: #E4DECF;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-card cite {
  display: block;
  margin-top: 16px;
  font-family: var(--sans);
  font-style: normal;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #F6C314;
}
.review-card cite::before { content: "— "; }
.reviews-note {
  text-align: center;
  margin-top: 40px;
  font-size: .78rem;
  color: #8b8170;
  padding-inline: var(--gutter);
}

/* ---------- Visit ---------- */
.visit-grid { display: grid; gap: 48px; }
.info-list { border-top: 1px solid var(--stone-line); }
.info-list li {
  display: grid;
  gap: 6px;
  padding: 22px 0;
  border-bottom: 1px solid var(--stone-line);
}
.info-label {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--stone);
}
.info-list li > span:not(.info-label) { font-size: 1.02rem; color: var(--ink); }
.info-list a { border-bottom: 1px solid transparent; transition: border-color .3s var(--ease); }
.info-list a:hover { border-bottom-color: var(--espresso); }
.visit-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

.visit-map { overflow: hidden; border: 1px solid var(--stone-line); min-height: 340px; background: var(--paper-2); }
.visit-map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; filter: grayscale(0.3) contrast(0.95); }

@media (min-width: 920px) {
  .visit-grid { grid-template-columns: 1fr 1.1fr; gap: 72px; align-items: stretch; }
  .visit-map { min-height: 480px; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--espresso);
  color: #A79C88;
  padding-block: clamp(64px, 9vw, 120px);
}
.footer-cta {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 8vw, 5.5rem);
  font-weight: 400;
  line-height: 1;
  color: var(--paper);
  letter-spacing: -0.015em;
  padding-bottom: clamp(48px, 8vw, 96px);
  border-bottom: 1px solid rgba(243, 239, 230, .16);
}
.footer-inner {
  display: grid;
  gap: 44px;
  padding-top: clamp(48px, 7vw, 80px);
}
.footer-logo {
  width: clamp(112px, 16vw, 168px);
  height: auto;
  display: block;
  border-radius: 10px;
  margin-bottom: 22px;
}
.footer-brand p { font-size: .9rem; max-width: 34ch; line-height: 1.75; }
.footer-col h4 {
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 18px;
}
.footer-col a, .footer-col p { display: block; font-size: .9rem; margin-bottom: 10px; color: #A79C88; line-height: 1.7; }
.footer-col a { transition: color .3s var(--ease); }
.footer-col a:hover { color: var(--paper); }

.footer-bottom {
  margin-top: clamp(48px, 7vw, 80px);
  padding-top: 28px;
  border-top: 1px solid rgba(243, 239, 230, .16);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-bottom p { font-size: .76rem; color: #7c7263; }
.footer-bottom a:hover { color: var(--paper); }

@media (min-width: 760px) {
  .footer-inner { grid-template-columns: 1.6fr 1fr 1.4fr; gap: 56px; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: var(--espresso);
  color: var(--paper);
  border: 1px solid var(--espresso);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s var(--ease), background-color .3s var(--ease), color .3s var(--ease);
  z-index: 90;
}
.back-to-top svg { width: 18px; height: 18px; }
.back-to-top:hover { background: transparent; color: var(--espresso); }
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }

/* ---------- Mobile bottom bar ---------- */
.mobile-bar { display: none; }

/* ---------- Scroll reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

/* =========================================================
   Mobile navigation + bottom bar
   ========================================================= */
@media (max-width: 900px) {
  .header-inner { grid-template-columns: auto 1fr auto; }
  .header-actions { display: none; }
  .nav-toggle { display: flex; justify-self: end; }
  .lang-switch--topbar { display: flex; justify-self: end; }

  .main-nav {
    position: fixed;
    top: var(--header-h);
    right: 0;
    bottom: 0;
    left: auto;
    width: min(320px, 82vw);
    z-index: 90;
    margin-left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-left: 1px solid var(--stone-line);
    padding: 8px var(--gutter) 24px;
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
    box-shadow: -16px 0 48px rgba(0, 0, 0, .22);
    /* sağdan çekmece gibi açılır/kapanır */
    transform: translateX(100%);
    visibility: hidden;
    transition: transform .4s var(--ease), visibility .4s var(--ease);
  }
  .main-nav.is-open { transform: translateX(0); visibility: visible; }
  html.nav-open {
    overflow: hidden;
  }
  html.nav-open::after {
    content: "";
    position: fixed;
    inset: var(--header-h) 0 0 0;
    z-index: 85;
    background: rgba(20, 14, 10, .5);
    animation: mi-fade .3s var(--ease);
  }
  .nav-link {
    color: var(--ink);
    padding: 18px 0;
    border-bottom: 1px solid var(--stone-line);
    font-size: .82rem;
  }
  .nav-link::after { display: none; }
  .nav-link--cta { display: block; color: var(--espresso); }

  .mobile-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: fixed;
    inset: auto 0 0 0;
    z-index: 95;
    background: var(--espresso);
    border-top: 1px solid rgba(243, 239, 230, .14);
    padding-bottom: env(safe-area-inset-bottom);
  }
  .mobile-bar-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    min-height: 58px;
    padding: 8px 6px;
    font-size: .64rem;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(243, 239, 230, .82);
  }
  .mobile-bar-btn + .mobile-bar-btn { border-left: 1px solid rgba(243, 239, 230, .14); }
  .mobile-bar-btn svg { width: 19px; height: 19px; }
  .mobile-bar-btn:active { background: rgba(243, 239, 230, .06); }

  body { padding-bottom: calc(58px + env(safe-area-inset-bottom)); }
  .back-to-top { bottom: calc(72px + env(safe-area-inset-bottom)); }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(2.6rem, 13.5vw, 4rem); }
  .hero-lead { font-size: 1rem; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1 1 100%; justify-content: center; }
  .visit-actions .btn { flex: 1 1 100%; justify-content: center; }
  .breakfast-feature img { aspect-ratio: 4 / 3; }
}

/* =========================================================
   Reduced motion
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .hero-media { transform: none; animation: none; }
  .hero-eyebrow, .hero-title, .hero-lead, .hero-actions { animation: none; opacity: 1; transform: none; }
  [data-reveal] { opacity: 1; transform: none; }
  .reviews-track { transform: none !important; animation: none !important; }
  .reviews-marquee {
    overflow-x: auto;
    -webkit-mask-image: none;
            mask-image: none;
    scroll-snap-type: x proximity;
  }
  .review-card { scroll-snap-align: start; }
}

/* =========================================================
   Menü — kategori kartları + kategori sayfaları
   ========================================================= */
.menu-hero {
  background: var(--espresso);
  color: var(--paper);
  padding-top: calc(var(--header-h) + clamp(30px, 9vw, 76px));
  padding-bottom: clamp(36px, 9vw, 80px);
}
.menu-hero .display--light { max-width: 20ch; margin-bottom: 18px; }
.menu-hero .sec-sub--light { max-width: 52ch; }

.menu-acc-sec { padding-block: clamp(40px, 8vw, 88px); }

/* --- menu.html: kategori kart ızgarası (link) --- */
.cat-list { display: grid; grid-template-columns: 1fr; gap: 14px; }
.cat-card {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--accent);
  border-radius: 4px;
  overflow: hidden;
  background: var(--paper);
  min-height: 116px;
  transition: box-shadow .3s var(--ease);
}
.cat-card:hover { box-shadow: 0 16px 34px rgba(60, 30, 8, .13); }
.cat-card:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.cat-thumb {
  flex: 0 0 auto;
  align-self: flex-start;
  width: clamp(96px, 34%, 172px);
  aspect-ratio: 1 / 1;
  height: auto;
  background: var(--accent);
  overflow: hidden;
}
.cat-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cat-name {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 20px 12px 20px 24px;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 4.6vw, 1.8rem);
  font-weight: 500;
  line-height: 1.14;
  color: var(--espresso);
}
.cat-name small {
  font-family: var(--sans);
  font-weight: 400;
  font-size: .66rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--stone);
  margin-left: 8px;
}
.cat-arrow {
  flex: 0 0 auto;
  align-self: center;
  width: 22px;
  height: 22px;
  margin-right: 20px;
  color: var(--stone);
  transition: transform .3s var(--ease), color .3s var(--ease);
}
.cat-card:hover .cat-arrow { transform: translateX(5px); color: var(--espresso); }

@media (min-width: 760px) {
  .cat-list { grid-template-columns: repeat(2, 1fr); }
  .cat-card { min-height: 140px; }
}

/* --- menu-*.html: tek kategori sayfası --- */
.cat-hero { padding-bottom: clamp(26px, 6vw, 54px); }
.cat-hero .sec-index--light { margin-bottom: 12px; }
.cat-hero .display--light { max-width: 24ch; margin-bottom: 0; }
.cat-hero .display--light small {
  font-family: var(--sans); font-weight: 400; font-size: .46em;
  letter-spacing: .08em; text-transform: uppercase; color: #A79C88; margin-left: 10px;
  vertical-align: middle;
}
.cat-back {
  display: inline-block;
  font-family: var(--sans); font-size: .72rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase; color: var(--accent);
  margin-bottom: clamp(20px, 4vw, 34px);
  padding-bottom: 3px; border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease);
}
.cat-back:hover { border-bottom-color: var(--accent); }

.cat-sec { padding-block: clamp(40px, 7vw, 84px); }
.cat-layout { display: grid; gap: 40px; }

.cat-side { display: none; }
.cat-side-label {
  font-family: var(--sans); font-size: .68rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase; color: var(--stone);
  margin-bottom: 14px;
}
.cat-side a {
  display: block; padding: 9px 0;
  font-size: .94rem; color: var(--stone);
  border-bottom: 1px solid var(--stone-line);
  transition: color .25s var(--ease);
}
.cat-side a:last-child { border-bottom: 0; }
.cat-side a:hover { color: var(--espresso); }
.cat-side a.is-current { color: var(--espresso); font-weight: 500; }

.cat-main { max-width: 680px; }
.cat-main .menu-list li { font-size: 1.02rem; padding: 13px 0; }
.cat-main .menu-subcols { display: grid; gap: 28px 56px; }
@media (min-width: 620px) { .cat-main .menu-subcols { grid-template-columns: 1fr 1fr; } }

.cat-prevnext {
  display: flex; justify-content: space-between; gap: 20px;
  margin-top: clamp(40px, 7vw, 72px);
  padding-top: 26px;
  border-top: 1px solid var(--stone-line);
}
.cat-prevnext a { display: grid; gap: 4px; max-width: 47%; }
.cat-prevnext .cat-next { text-align: right; }
.cat-prevnext span {
  font-family: var(--sans); font-size: .64rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase; color: var(--stone);
}
.cat-prevnext b {
  font-family: var(--serif); font-size: 1.12rem; font-weight: 500;
  color: var(--espresso); line-height: 1.2;
  transition: color .25s var(--ease);
}
.cat-prevnext a:hover b { color: var(--accent); }

@media (min-width: 900px) {
  .cat-layout { grid-template-columns: 210px 1fr; gap: 64px; align-items: start; }
  .cat-side { display: block; position: sticky; top: calc(var(--header-h) + 24px); }
  .cat-main { max-width: none; }
}

.cat-blurb { color: #A79C88; margin-top: 14px; }

/* --- menu.html kart açıklaması --- */
.cat-name { flex-direction: column; align-items: flex-start; justify-content: center; gap: 6px; }
.cat-desc {
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--stone);
  max-width: 30ch;
}

/* --- alt sayfa: fotoğraflı, tıklanır ürün satırı --- */
.mi-list li { padding: 0; }
.mi {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 12px 4px 12px 0;
  border: 0;
  background: none;
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
}
.mi-thumb {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 6px;
  background: var(--paper-2);
}
.mi-name { flex: 1 1 auto; font-size: 1.02rem; }
.mi .p { flex: 0 0 auto; color: var(--olive-deep); font-variant-numeric: tabular-nums; letter-spacing: .01em; }
.mi:hover .mi-name { color: var(--accent-ink); }
.mi:hover .mi-thumb { outline: 2px solid var(--accent); outline-offset: 2px; }
.mi:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* --- ürün pop-up --- */
.mi-dlg {
  position: fixed; inset: 0; z-index: 200;
  display: grid; place-items: center;
  padding: clamp(16px, 4vw, 40px);
}
.mi-dlg[hidden] { display: none; }
.mi-dlg-backdrop {
  position: absolute; inset: 0;
  background: rgba(20, 14, 10, .62);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  animation: mi-fade .2s var(--ease);
}
.mi-dlg-box {
  position: relative; z-index: 1;
  width: min(560px, 100%);
  max-height: min(88vh, 760px);
  overflow: auto;
  background: var(--paper);
  border-radius: 6px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .4);
  animation: mi-rise .28s var(--ease);
}
.mi-dlg-x {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 0; border-radius: 50%;
  background: rgba(20, 14, 10, .5);
  color: #fff; cursor: pointer;
}
.mi-dlg-x svg { width: 18px; height: 18px; }
.mi-dlg-media { aspect-ratio: 16 / 11; background: var(--paper-2); }
.mi-dlg-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mi-dlg-body { padding: clamp(22px, 4vw, 34px); }
.mi-dlg-cat {
  font-family: var(--sans); font-size: .68rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase; color: var(--stone);
  margin-bottom: 10px;
}
.mi-dlg-title {
  font-family: var(--serif); font-size: clamp(1.7rem, 5vw, 2.4rem);
  font-weight: 500; line-height: 1.08; color: var(--espresso);
}
.mi-dlg-price {
  font-family: var(--sans); font-size: 1rem; font-weight: 500;
  letter-spacing: .03em; color: var(--olive-deep); margin-top: 8px;
}
.mi-dlg-desc {
  margin-top: 16px; font-size: .98rem; line-height: 1.75; color: var(--ink);
  max-width: 46ch;
}
@keyframes mi-fade { from { opacity: 0; } }
@keyframes mi-rise { from { opacity: 0; transform: translateY(16px); } }

.mi-dlg-open { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  .cat-card, .cat-arrow { transition: none; }
  .mi-dlg-backdrop, .mi-dlg-box { animation: none; }
}

/* =========================================================
   Giriş animasyonu — dönen limon
   ========================================================= */
.intro-lock { overflow: hidden; }
.intro-splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: clamp(18px, 3vw, 30px);
  background: var(--espresso);
  transition: opacity .7s var(--ease), visibility .7s var(--ease);
  /* Saf marka animasyonu — altındaki header/nav'a giden ilk tıklamaları
     yutmasın diye baştan itibaren tıklama geçirgen (bkz. "Menü'ye ilk
     tıklamada sayfa açılmıyor" hatası). */
  pointer-events: none;
}
.intro-splash.is-hiding {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.intro-splash__lemon {
  width: clamp(200px, 48vw, 340px);
  aspect-ratio: 1;
  filter: drop-shadow(0 24px 60px rgba(0, 0, 0, .45));
}
.intro-splash__lemon img {
  width: 100%;
  height: 100%;
  display: block;
  transform: scale(1.12);
  -webkit-mask: radial-gradient(circle 40% at 50% 50%, #000 91%, transparent 100%);
          mask: radial-gradient(circle 40% at 50% 50%, #000 91%, transparent 100%);
}
.intro-splash__word {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 3.4vw, 1.7rem);
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--paper);
  opacity: .88;
}
@media (prefers-reduced-motion: reduce) {
  .intro-splash { display: none; }
}

/* =========================================================
   Print
   ========================================================= */
@media print {
  .site-header, .nav-toggle, .back-to-top, .visit-map, .mobile-bar,
  .hero-actions, .hero-media, .hero-scrim, .gallery-sec, .statement, .reviews { display: none !important; }
  body { padding-bottom: 0 !important; background: #fff; color: #000; font-size: 12px; }
  .section { padding-block: 20px; }
  .hero { min-height: auto; color: #000; }
}

/* =========================================================
   RTL (Arapça)
   ========================================================= */
[dir="rtl"] { text-align: right; }
[dir="rtl"] .cat-side { border-color: var(--stone-line); }
[dir="rtl"] .cat-arrow { transform: scaleX(-1); }
[dir="rtl"] .cat-back { direction: ltr; unicode-bidi: isolate; }
[dir="rtl"] .cat-prevnext a > span { direction: ltr; unicode-bidi: isolate; }
[dir="rtl"] .arw { display: inline-block; transform: scaleX(-1); }
[dir="rtl"] .mi-name, [dir="rtl"] .p { direction: rtl; }
[dir="rtl"] .skip-link { left: auto; right: -9999px; }
[dir="rtl"] .skip-link:focus { right: 12px; }
