/* ============================================================
   VANILYA PASTA CAFE — Design System
   Brand: RAL 5024 (pastel teal-blue) + RAL 3012 (beige-red / coral)
   Type: Yellowtail (script wordmark) · Cormorant Garamond (display)
         · Manrope (UI/body)
   ============================================================ */

:root {
  /* --- Vanilla / cream neutrals (warm, low chroma) --- */
  --vanilla-50:  #FCF8F1;
  --vanilla-100: #F8F1E5;
  --vanilla-200: #F0E5D2;
  --vanilla-300: #E6D6BC;
  --cream:       #FAF4EA;
  --marble:      #FAFBFB;
  --paper:       #FFFFFF;

  /* --- Brand teal (RAL 5024 family, pulled toward the logo cyan) --- */
  --teal-800: #0E4F60;
  --teal-700: #135F73;
  --teal-600: #1A7E97;
  --teal-500: #2AA0BB;   /* primary */
  --teal-400: #54BBD2;
  --teal-300: #8FD7E4;
  --teal-200: #C2EAF1;
  --teal-100: #E2F4F8;

  /* --- Coral / terracotta (RAL 3012 family) --- */
  --coral-700: #A9543C;
  --coral-600: #C2674E;
  --coral-500: #D9805F;   /* secondary accent */
  --coral-400: #E89C7E;
  --coral-300: #F2BFA8;
  --coral-100: #F9E6DC;

  /* --- Neon (reserved for wordmark glow moments) --- */
  --neon-cyan:  #38E1F0;
  --neon-coral: #FF4D6D;

  /* --- Accents --- */
  --gold-500: #C9A24B;
  --gold-300: #E4CC92;

  /* --- Ink --- */
  --ink:       #15333B;
  --ink-soft:  #37545C;
  --muted:     #4E6870;
  --line:      rgba(21, 51, 59, 0.10);
  --line-soft: rgba(21, 51, 59, 0.06);

  /* --- WhatsApp --- */
  --wa: #25D366;
  --wa-dark: #128C7E;

  /* --- Typography --- */
  --font-script:  'Yellowtail', cursive;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* --- Radii --- */
  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 30px;
  --r-xl: 44px;
  --r-pill: 999px;

  /* --- Soft, layered depth shadows (teal-tinted) --- */
  --sh-xs: 0 1px 2px rgba(15,60,72,0.06);
  --sh-sm: 0 2px 8px rgba(15,60,72,0.07), 0 1px 2px rgba(15,60,72,0.05);
  --sh-md: 0 10px 24px -10px rgba(15,60,72,0.18), 0 4px 10px -6px rgba(15,60,72,0.12);
  --sh-lg: 0 30px 60px -24px rgba(15,60,72,0.30), 0 12px 26px -16px rgba(15,60,72,0.18);
  --sh-xl: 0 50px 90px -36px rgba(15,60,72,0.42), 0 18px 40px -24px rgba(15,60,72,0.22);
  --sh-coral: 0 24px 50px -22px rgba(193,103,78,0.45);
  --sh-teal:  0 24px 50px -22px rgba(26,126,151,0.42);

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 90px;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--vanilla-50);
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0.005em;
  overflow-x: hidden;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

/* ---------- Custom scrollbar (brand-tuned, per page theme) ---------- */
/* Light pages (cream surfaces): teal thumb on a soft track */
html { scrollbar-width: thin; scrollbar-color: var(--teal-500) rgba(19,95,115,0.10); }
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: rgba(19,95,115,0.08); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--teal-500), var(--teal-700));
  border-radius: 999px;
  border: 3px solid transparent;
  background-clip: padding-box;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--neon-cyan), var(--teal-500));
  background-clip: padding-box;
}
::-webkit-scrollbar-corner { background: transparent; }

/* Dark AI studio page: glowing cyan thumb on a deep track */
body.ai-page { scrollbar-color: var(--neon-cyan) rgba(255,255,255,0.06); }
body.ai-page ::-webkit-scrollbar-track { background: rgba(0,0,0,0.28); }
body.ai-page ::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--neon-cyan), #1AA6C2 70%, var(--teal-700));
  border: 3px solid transparent; background-clip: padding-box;
  box-shadow: 0 0 10px rgba(56,225,240,0.35);
}
body.ai-page ::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #8af3ff, var(--neon-cyan) 70%, #1AA6C2);
  background-clip: padding-box;
}
::selection { background: var(--teal-300); color: var(--teal-800); }

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.script {
  font-family: var(--font-script);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.01em;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-wrap: balance;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-body);
  font-size: clamp(0.7rem, 1.4vw, 0.78rem);
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--teal-600);
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: linear-gradient(90deg, var(--coral-500), var(--teal-500));
  border-radius: 2px;
}
.eyebrow.center::after {
  content: "";
  width: 26px; height: 2px;
  background: linear-gradient(90deg, var(--teal-500), var(--coral-500));
  border-radius: 2px;
}

.section-title {
  font-size: clamp(2.1rem, 5.2vw, 3.8rem);
  margin-top: 0.35em;
}
.section-title em {
  font-style: italic;
  color: var(--teal-600);
}
.lead {
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  color: var(--ink-soft);
  line-height: 1.66;
  max-width: 56ch;
  font-weight: 400;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
section { position: relative; }
.section-pad { padding-block: clamp(72px, 11vw, 150px); }
.center { text-align: center; }
.center .lead { margin-inline: auto; }
.center .eyebrow { justify-content: center; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  --bg: var(--teal-600);
  --fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  font-weight: 700;
  font-size: 0.97rem;
  letter-spacing: 0.005em;
  padding: 0.95em 1.6em;
  border-radius: var(--r-pill);
  background: var(--bg);
  color: var(--fg);
  box-shadow: var(--sh-md);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s;
  position: relative;
  will-change: transform;
}
.btn svg { width: 1.15em; height: 1.15em; flex: none; }
.btn:hover { transform: translateY(-3px); box-shadow: var(--sh-lg); }
.btn:active { transform: translateY(-1px); }

.btn-primary { --bg: linear-gradient(135deg, var(--teal-500), var(--teal-700)); box-shadow: var(--sh-teal); }
.btn-coral   { --bg: linear-gradient(135deg, var(--coral-400), var(--coral-600)); box-shadow: var(--sh-coral); }
.btn-wa      { --bg: linear-gradient(135deg, #2BD974, var(--wa-dark)); box-shadow: 0 24px 50px -22px rgba(18,140,126,0.55); }
.btn-ghost {
  --bg: rgba(255,255,255,0.55);
  --fg: var(--teal-800);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.8), var(--sh-sm);
}
.btn-ghost:hover { background: rgba(255,255,255,0.78); }
.btn-lg { padding: 1.08em 2em; font-size: 1.02rem; }
.btn-block { width: 100%; }

.text-link {
  display: inline-flex; align-items: center; gap: 0.45em;
  font-weight: 700; color: var(--teal-600);
  border-bottom: 2px solid transparent;
  transition: gap .3s var(--ease), border-color .3s;
}
.text-link svg { width: 1.05em; height: 1.05em; transition: transform .3s var(--ease); }
.text-link:hover { gap: 0.7em; border-color: var(--coral-400); }
.text-link:hover svg { transform: translateX(3px); }

/* ============================================================
   FLOATING NAV (no top/bottom bar — a glass pill + menu orb)
   ============================================================ */
.brand-mark {
  position: fixed;
  top: clamp(14px, 2.2vw, 24px);
  left: var(--gutter);
  z-index: 70;
  display: flex; align-items: center;
  height: clamp(40px, 5vw, 54px);
  transition: transform .4s var(--ease);
}
.brand-mark img {
  height: 100%; width: auto; display: block;
  filter: drop-shadow(0 3px 14px rgba(8,40,50,0.45));
}
/* iki logo üst üste — renk, logonun mavi/koyu alanla örtüşme oranına (--brand-dark
   0..1) göre kaydırdıkça yavaş yavaş beyaz ↔ teal geçer (JS doldurur) */
.brand-mark .logo-over { position: relative; opacity: var(--brand-dark, 1); }            /* beyaz */
.brand-mark .logo-solid { position: absolute; top: 0; left: 0; height: 100%; opacity: calc(1 - var(--brand-dark, 1)); } /* teal */
.brand-mark:hover { transform: translateY(-1px); }

.dock {
  position: fixed;
  z-index: 70;
  top: clamp(14px, 2.4vw, 24px);
  right: var(--gutter);
  display: flex; align-items: center; gap: 10px;
}
.lang-toggle {
  position: relative;
  display: flex; align-items: center;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-radius: var(--r-pill);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.6), var(--sh-sm);
  padding: 4px;
  font-weight: 700; font-size: 0.8rem;
  isolation: isolate;
  overflow: hidden;
}
.lang-toggle::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 4px; bottom: 4px; left: 4px;
  width: calc(50% - 4px);
  border-radius: var(--r-pill);
  background: linear-gradient(135deg, var(--teal-600), var(--teal-500));
  box-shadow: var(--sh-sm);
  transform: translateX(0);
  transition: transform .38s var(--ease), background .38s var(--ease), box-shadow .38s var(--ease);
}
.lang-toggle[data-active-lang="en"]::before {
  transform: translateX(100%);
}
.lang-toggle button {
  position: relative;
  z-index: 1;
  display: inline-flex; align-items: center; justify-content: center; min-height: 44px;
  padding: 0.4em 0.95em; border-radius: var(--r-pill);
  color: var(--teal-800); opacity: 0.68; transition: color .3s var(--ease), opacity .3s var(--ease), transform .3s var(--ease);
}
.lang-toggle button.active {
  color: #fff; opacity: 1;
}
.lang-toggle button:disabled {
  cursor: default;
}
.lang-toggle button:not(.active):hover {
  opacity: 0.95;
  transform: translateY(-1px);
}
.menu-orb {
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.6), var(--sh-md);
  transition: .35s var(--ease);
}
.menu-orb:hover { transform: translateY(-2px); }
.menu-orb .bars { display: grid; gap: 5px; }
.menu-orb .bars span {
  width: 20px; height: 2.3px; border-radius: 2px;
  background: var(--teal-800); transition: .35s var(--ease);
}
body.menu-open .menu-orb .bars span:nth-child(1) { transform: translateY(7.3px) rotate(45deg); }
body.menu-open .menu-orb .bars span:nth-child(2) { opacity: 0; }
body.menu-open .menu-orb .bars span:nth-child(3) { transform: translateY(-7.3px) rotate(-45deg); }

/* ============================================================
   MENU — minimal glass dropdown (matches the floating chrome)
   ============================================================ */
.nav-overlay {
  position: fixed; inset: 0; z-index: 65;
  background: rgba(21,51,59,0.12);
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
  opacity: 0; visibility: hidden; transition: .35s var(--ease);
}
body.menu-open .nav-overlay { opacity: 1; visibility: visible; }

.nav-panel {
  position: fixed; z-index: 66;
  top: clamp(72px, 9vw, 88px); right: var(--gutter);
  width: min(330px, calc(100vw - 2 * var(--gutter)));
  max-height: calc(100dvh - clamp(86px, 11vw, 104px));
  background: rgba(252,248,241,0.82);
  -webkit-backdrop-filter: blur(22px) saturate(150%); backdrop-filter: blur(22px) saturate(150%);
  border: 1px solid rgba(255,255,255,0.65);
  box-shadow: var(--sh-xl);
  border-radius: var(--r-lg);
  padding: 8px;
  display: flex; flex-direction: column;
  transform-origin: top right;
  opacity: 0; visibility: hidden; transform: translateY(-8px) scale(0.97);
  transition: opacity .28s var(--ease), transform .32s var(--ease), visibility .32s;
  overflow-y: auto;
}
body.menu-open .nav-panel { opacity: 1; visibility: visible; transform: none; }
.nav-panel > img { display: none; }

.nav-grid { display: flex; flex-direction: column; gap: 1px; }
.nav-tile {
  position: relative; display: flex; align-items: center; gap: 14px;
  padding: 12px 12px; border-radius: var(--r-sm); color: var(--ink); background: transparent;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.nav-tile img, .nav-tile::after { display: none; }
.nav-grid .nav-tile + .nav-tile { box-shadow: 0 -1px 0 var(--line-soft); }
.nav-tile:hover { background: rgba(42,160,187,0.10); transform: translateX(3px); box-shadow: none; }

.nt-idx {
  position: static; flex: none; width: 1.7em;
  font-family: var(--font-body); font-weight: 800; font-size: 0.7rem; letter-spacing: 0.1em;
  color: var(--coral-500);
}
.nt-body { display: flex; flex-direction: column; gap: 1px; flex: 1; min-width: 0; }
.nt-title { font-family: var(--font-display); font-weight: 600; font-size: 1.18rem; line-height: 1.15; color: var(--ink); transition: color .25s; }
.nav-tile:hover .nt-title { color: var(--teal-700); }
.nt-sub { font-size: 0.75rem; color: var(--muted); font-weight: 500; }
.nt-arrow {
  position: static; flex: none; width: 24px; height: 24px; padding: 4px;
  border-radius: 50%; background: transparent; border: none; color: var(--teal-500);
  opacity: 0; transform: translateX(-5px);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.nav-tile:hover .nt-arrow { opacity: 1; transform: none; }
/* "Yakında" rozetleri (AI özelliği lansmana kadar) */
.nt-soon {
  align-self: flex-start; margin: 4px 0 2px;
  display: inline-flex; align-items: center;
  font-size: 0.58rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 2px 9px; border-radius: var(--r-pill);
  background: var(--coral-700); color: #fff;
}
.soon-tag {
  display: inline-flex; align-items: center; margin-left: 8px;
  font-size: 0.6rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 2px 8px; border-radius: var(--r-pill); white-space: nowrap;
  background: var(--coral-700); color: #fff; vertical-align: middle;
}

.nav-panel .panel-foot {
  display: flex; flex-direction: column; gap: 3px;
  margin: 6px 6px 4px; padding: 13px 6px 6px;
  border-top: 1px solid var(--line-soft);
  font-size: 0.8rem; color: var(--muted); line-height: 1.65;
}
.nav-panel .panel-foot strong { color: var(--ink); font-weight: 700; }
.nav-panel .panel-foot a { color: var(--teal-600); font-weight: 700; }

@media (prefers-reduced-motion: reduce) {
  .nav-panel { transition: opacity .2s; transform: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img, .hero-media video {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 70% 10%, rgba(12,50,62,0.10), transparent 60%),
    linear-gradient(180deg, rgba(10,40,50,0.42) 0%, rgba(10,40,50,0.12) 36%, rgba(8,34,42,0.55) 78%, rgba(7,30,38,0.82) 100%);
}
.hero-grain {
  position: absolute; inset: 0; z-index: -1; opacity: 0.5; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,0.5) 0.5px, transparent 0.6px);
  background-size: 4px 4px; mix-blend-mode: overlay;
}
.hero-inner {
  width: 100%; max-width: var(--maxw);
  margin-inline: auto; padding-inline: var(--gutter);
  padding-bottom: clamp(48px, 8vh, 110px);
  padding-top: 140px;
  color: #fff;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.7em;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--teal-200);
  background: rgba(8,40,50,0.28);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  padding: 0.55em 1.1em; border-radius: var(--r-pill);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.16);
}
.hero-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--neon-coral); box-shadow: 0 0 10px var(--neon-coral); }
.hero h1 {
  color: #fff;
  overflow-wrap: break-word;
  font-size: clamp(2.4rem, 7.4vw, 6.2rem);
  line-height: 0.98;
  margin: 0.4em 0 0;
  text-shadow: 0 6px 40px rgba(6,28,36,0.5);
  max-width: 17ch;
}
.hero h1 .script {
  display: block;
  font-family: var(--font-script);
  font-size: 1.18em;
  color: var(--neon-cyan);
  font-weight: 400;
  text-shadow: 0 0 18px rgba(56,225,240,0.55), 0 0 2px rgba(255,255,255,0.6), 0 6px 30px rgba(6,28,36,0.5);
  margin-bottom: 0.04em;
}
.hero p.hero-sub {
  margin-top: 1.1em;
  font-size: clamp(1.05rem, 1.9vw, 1.32rem);
  color: rgba(255,255,255,0.92);
  max-width: 46ch;
  font-weight: 400;
  text-shadow: 0 2px 18px rgba(6,28,36,0.45);
}
.hero-cta {
  margin-top: 2em;
  display: flex; flex-wrap: wrap; gap: 14px;
}
/* marquee strip under hero */
.marquee {
  background: var(--teal-700);
  color: var(--teal-100);
  overflow: hidden; white-space: nowrap;
  padding: 14px 0;
  font-family: var(--font-display); font-size: 1.3rem; font-style: italic;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.marquee .track { display: inline-flex; gap: 2.4rem; animation: marq 28s linear infinite; }
.marquee .track span { display: inline-flex; align-items: center; gap: 2.4rem; }
.marquee .track span::after { content: "✦"; color: var(--coral-400); font-style: normal; }
@keyframes marq { to { transform: translateX(-50%); } }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
[data-reveal] {
  opacity: 0; transform: translateY(34px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  will-change: opacity, transform;
}
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal-d="1"] { transition-delay: .08s; }
[data-reveal-d="2"] { transition-delay: .16s; }
[data-reveal-d="3"] { transition-delay: .24s; }
[data-reveal-d="4"] { transition-delay: .32s; }

/* ============================================================
   INTRO / STORY
   ============================================================ */
.intro {
  background:
    radial-gradient(72% 60% at 84% -12%, rgba(42,160,187,0.12), transparent 56%),
    radial-gradient(54% 52% at -5% 108%, rgba(217,128,95,0.10), transparent 60%),
    var(--vanilla-50);
}
/* kahvaltı — serin teal tonu, beyazı kırar */
#kahvalti {
  background: linear-gradient(180deg, var(--vanilla-50) 0%, #EAF1F1 52%, var(--vanilla-100) 100%);
}
/* galeri — atölye (koyu) ile ziyaret (koyu) arasında yumuşak sıcak ada */
.gallery-sec {
  background:
    radial-gradient(60% 50% at 14% 0%, rgba(42,160,187,0.10), transparent 55%),
    radial-gradient(60% 50% at 90% 100%, rgba(217,128,95,0.10), transparent 58%),
    linear-gradient(180deg, var(--vanilla-100), var(--vanilla-50));
  overflow-x: clip; /* iOS/Android'de marquee'nin geniş izini viewport'a kırp */
}
.intro-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 6vw, 88px);
  align-items: center;
}
.stat-row { display: flex; gap: clamp(20px,4vw,46px); margin-top: 38px; flex-wrap: wrap; }
.stat .n { font-family: var(--font-display); font-size: clamp(2.2rem,4vw,3rem); font-weight: 600; color: var(--teal-600); line-height: 1; }
.stat .l { font-size: 0.86rem; color: var(--muted); margin-top: 6px; font-weight: 600; }
.intro-visual { position: relative; }
.intro-visual .ph {
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg);
  aspect-ratio: 4/5;
}
.intro-visual .ph img { width:100%; height:100%; object-fit: cover; }
.intro-visual .float-card {
  position: absolute; bottom: -26px; left: -26px;
  background: var(--paper); border-radius: var(--r-md);
  box-shadow: var(--sh-lg); padding: 18px 22px;
  display: flex; align-items: center; gap: 14px; max-width: 250px;
}
.intro-visual .float-card .ic {
  width: 46px; height: 46px; border-radius: 14px; flex: none;
  background: var(--coral-100); color: var(--coral-600);
  display: grid; place-items: center;
}
.intro-visual .float-card .ic svg { width: 24px; height: 24px; }
.intro-visual .float-card b { display: block; font-size: 0.95rem; }
.intro-visual .float-card span { font-size: 0.8rem; color: var(--muted); }
/* Mobilde negatif offset taşmalarını önle — kartı ve dekoratif blob'u görselin içine al */
@media (max-width: 720px) {
  .intro-visual { overflow-x: clip; }
  .intro-visual .float-card { left: 10px; right: auto; bottom: -14px; max-width: calc(100% - 20px); }
  .intro-visual .blob { right: 0; width: 52%; }
}
.intro-visual .blob {
  position: absolute; inset: -8% -10% auto auto; width: 60%; aspect-ratio: 1;
  background: radial-gradient(circle, var(--teal-200), transparent 68%);
  z-index: -1; filter: blur(8px);
}

/* ============================================================
   FEATURE SPLIT (breakfast, dishes)
   ============================================================ */
.split {
  display: grid; grid-template-columns: 1fr 1fr; align-items: center;
  gap: clamp(30px, 6vw, 84px);
}
.split.rev .split-text { order: 2; }
.split-media { position: relative; }
.split-media .frame {
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg);
  aspect-ratio: 5/4;
}
.split-media .frame img { width: 100%; height: 100%; object-fit: cover; }
.split-media .badge {
  position: absolute; top: 18px; left: 18px;
  background: rgba(255,255,255,0.85); backdrop-filter: blur(8px);
  color: var(--teal-700); font-weight: 800; font-size: 0.8rem;
  padding: 0.5em 1em; border-radius: var(--r-pill); box-shadow: var(--sh-sm);
  letter-spacing: 0.04em;
}
.feature-list { display: grid; gap: 14px; margin: 26px 0 30px; }
.feature-list li { display: flex; gap: 13px; align-items: flex-start; font-size: 1.02rem; color: var(--ink-soft); }
.feature-list .tick {
  width: 26px; height: 26px; border-radius: 9px; flex: none; margin-top: 1px;
  background: var(--teal-100); color: var(--teal-600);
  display: grid; place-items: center;
}
.feature-list .tick svg { width: 15px; height: 15px; }

/* dishes mini gallery */
.dish-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 8px;
}
.dish-card {
  position: relative; border-radius: var(--r-md); overflow: hidden;
  aspect-ratio: 3/4; box-shadow: var(--sh-md);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.dish-card img { width:100%; height:100%; object-fit: cover; transition: transform .9s var(--ease); }
.dish-card figcaption {
  position: absolute; inset: auto 0 0 0; padding: 30px 16px 14px;
  color: #fff; font-weight: 700; font-size: 1.02rem;
  background: linear-gradient(transparent, rgba(8,34,42,0.72));
}
.dish-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.dish-card:hover img { transform: scale(1.07); }

/* ============================================================
   DESSERT SHOWCASE GRID
   ============================================================ */
.dessert { background: linear-gradient(180deg, var(--vanilla-100), var(--vanilla-50)); }
.dessert-grid {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: clamp(14px, 1.6vw, 22px); margin-top: 14px;
}
.tilt { perspective: 1000px; }
.cake-card {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  background: var(--paper); box-shadow: var(--sh-md);
  transition: box-shadow .5s var(--ease), transform .4s var(--ease);
  transform-style: preserve-3d; height: 100%;
}
.cake-card .img { overflow: hidden; }
.cake-card .img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.cake-card:hover { box-shadow: var(--sh-xl); }
.cake-card:hover .img img { transform: scale(1.06); }
.cake-card .meta { padding: 18px 20px 22px; }
.cake-card .meta .k { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--coral-500); }
.cake-card .meta h3 { font-size: 1.5rem; margin-top: 4px; }
.cake-card .meta p { font-size: 0.92rem; color: var(--muted); margin-top: 6px; }
.cake-card .tag {
  position: absolute; top: 14px; right: 14px;
  background: rgba(255,255,255,0.9); color: var(--teal-700);
  font-size: 0.72rem; font-weight: 800; padding: 0.4em 0.85em; border-radius: var(--r-pill);
  box-shadow: var(--sh-sm); transform: translateZ(40px);
}
/* spans */
.col-6 { grid-column: span 6; } .col-4 { grid-column: span 4; }
.col-3 { grid-column: span 3; } .col-8 { grid-column: span 8; }
.card-tall .img { aspect-ratio: 3/4.2; height: auto; }
.card-wide { display: grid; grid-template-columns: 1.1fr 1fr; align-items: stretch; }
.card-wide .img { aspect-ratio: auto; }
.card-std .img { aspect-ratio: 4/3; }

/* ============================================================
   SIGNATURE — SCROLL CAKE BUILDER
   ============================================================ */
/* ============================================================
   ÖZEL PASTA — premium real-photo presentation
   ============================================================ */
.custom-cake {
  background:
    radial-gradient(80% 60% at 50% 0%, var(--teal-100), transparent 60%),
    linear-gradient(180deg, var(--vanilla-50), var(--vanilla-100));
  position: relative; overflow: hidden;
}
.cc-grid {
  display: grid; grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(34px, 5vw, 76px); align-items: center;
}
.cc-copy { max-width: 36rem; }
.cc-copy .step-no {
  font-family: var(--font-display); font-style: italic; font-size: 1.15rem;
  color: var(--coral-500); font-weight: 600;
}
.cc-copy h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); margin: 0.16em 0 0.45em; }
.cc-copy .lead { color: var(--ink-soft); font-size: 1.08rem; line-height: 1.7; max-width: 44ch; }

.cc-steps { list-style: none; display: grid; gap: 0; margin: 26px 0 32px; }
.cc-steps li {
  display: flex; align-items: center; gap: 15px;
  padding: 11px 0; color: var(--ink); font-weight: 600; font-size: 1.04rem;
}
.cc-steps li + li { border-top: 1px solid var(--line-soft); }
.cc-steps li .n {
  width: 33px; height: 33px; border-radius: 50%; flex: none;
  display: grid; place-items: center; font-size: 0.85rem; font-weight: 800;
  background: var(--paper); color: var(--teal-700);
  box-shadow: var(--sh-sm); border: 1px solid var(--line-soft);
}

.cc-visual { position: relative; padding: clamp(10px, 2.4vw, 30px) clamp(10px, 2vw, 24px); }
.cc-spark {
  position: absolute; top: -6%; right: -4%; z-index: 0;
  width: clamp(140px, 22vw, 230px); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(56,225,240,0.22), transparent 70%);
  filter: blur(8px); pointer-events: none;
}
.cc-frame { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-xl); }
.cc-frame img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.cc-frame:hover img { transform: scale(1.045); }
.cc-frame--hero { aspect-ratio: 4 / 5; z-index: 1; }
.cc-frame--sm {
  position: absolute; right: -5%; bottom: -7%; width: 46%; aspect-ratio: 1; z-index: 2;
  border: 7px solid var(--vanilla-50); border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
}
.cc-badge {
  position: absolute; top: 16px; left: 16px; z-index: 3;
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(252,248,241,0.9); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  padding: 7px 16px 9px; border-radius: var(--r-pill);
  box-shadow: var(--sh-md); border: 1px solid rgba(255,255,255,0.7);
}
.cc-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--coral-500); box-shadow: 0 0 0 3px rgba(217,128,95,0.18); }
.cc-badge .script { font-family: var(--font-script); color: var(--teal-600); font-size: 1.45rem; line-height: 1; }

/* occasions band */
.cc-occasions {
  text-align: center;
  margin-top: clamp(40px, 6vw, 76px);
  padding-top: clamp(26px, 4vw, 42px);
  border-top: 1px solid var(--line-soft);
}
.cc-occ-label {
  display: block; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--coral-500); margin-bottom: 18px;
}
.cc-occ-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.cc-occ-row .occ {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 18px; border-radius: var(--r-pill);
  background: rgba(255,255,255,0.6); border: 1px solid var(--line);
  color: var(--ink); font-weight: 600; font-size: 0.95rem;
  box-shadow: var(--sh-xs);
  transition: transform .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
}
.cc-occ-row .occ svg { width: 17px; height: 17px; color: var(--coral-500); transition: color .25s var(--ease); }
.cc-occ-row .occ:hover { transform: translateY(-3px); border-color: var(--teal-400); color: var(--teal-700); box-shadow: var(--sh-sm); }
.cc-occ-row .occ:hover svg { color: var(--teal-500); }

@media (max-width: 1000px) {
  .cc-grid { grid-template-columns: 1fr; }
  .cc-visual { max-width: 460px; }
}

/* ============================================================
   ÖZEL PASTA — kompakt özel sipariş + AI stüdyo (açık, iletişim teması)
   ============================================================ */
.atelier {
  position: relative; overflow: hidden; isolation: isolate; color: #fff;
  background: linear-gradient(135deg, rgba(26,126,151,0.92), rgba(14,79,96,0.94)), url('../img/neon-greenery.jpg') center/cover fixed;
}
.atelier-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(30px, 5vw, 70px); align-items: center;
}
.atelier .eyebrow { color: var(--teal-100); }
.atelier .eyebrow::before { background: linear-gradient(90deg, var(--coral-400), var(--teal-200)); }
.atelier-copy { max-width: 40rem; }
.atelier-copy .section-title, .atelier-copy h2 { color: #fff; }
.atelier-copy .section-title { font-size: clamp(1.9rem, 4.2vw, 3.1rem); margin: 0.18em 0 0.5em; }
.atelier-copy .section-title em { color: var(--coral-300); font-style: italic; }
.atelier-copy .lead { color: rgba(255,255,255,0.88); font-size: 1.06rem; line-height: 1.7; max-width: 46ch; }

/* özel gün etiketleri (satır içi, kompakt) */
.atelier-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0 28px; }
.atelier-tags span {
  font-size: 0.86rem; font-weight: 600; color: #fff;
  background: rgba(255,255,255,0.13); border: 1px solid rgba(255,255,255,0.26);
  padding: 6px 14px; border-radius: var(--r-pill);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.atelier-cta { display: flex; flex-wrap: wrap; gap: 12px; }
.atelier-cta .btn-ghost { background: rgba(255,255,255,0.1); border: 1.5px solid rgba(255,255,255,0.4); color: #fff; -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.atelier-cta .btn-ghost:hover { background: rgba(255,255,255,0.2); border-color: #fff; }
.atelier-cta .btn-ghost svg { color: var(--teal-100); }

/* kompakt foto kolajı (hero + 2) */
.atelier-photos { position: relative; z-index: 1; display: grid; grid-template-columns: 1.3fr 1fr; gap: 14px; }
.atelier-photos .ap {
  position: relative; margin: 0; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-xl); border: 1px solid rgba(255,255,255,0.22);
}
.atelier-photos .ap img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.atelier-photos .ap:hover img { transform: scale(1.05); }
.atelier-photos .ap-hero { grid-column: 1; grid-row: 1 / span 2; }
.atelier-photos .ap-a { grid-column: 2; grid-row: 1; aspect-ratio: 5 / 4; }
.atelier-photos .ap-b { grid-column: 2; grid-row: 2; aspect-ratio: 5 / 4; }
.atelier-photos .cc-badge { top: 14px; left: 14px; }

@media (max-width: 1000px) {
  .atelier-grid { grid-template-columns: 1fr; }
  .atelier-copy { max-width: none; }
  .atelier-photos { max-width: 540px; }
}
@media (max-width: 560px) {
  .atelier-photos { grid-template-columns: 1fr 1fr; }
  .atelier-photos .ap-hero { grid-column: 1 / -1; grid-row: auto; aspect-ratio: 4 / 3; }
  .atelier-photos .ap-a { grid-column: 1; }
  .atelier-photos .ap-b { grid-column: 2; }
}

/* ============================================================
   CUSTOM ORDER CTA (whatsapp)
   ============================================================ */
/* sade davet bölümü */
.order-cta {
  margin-top: -2px; color: #fff;
  background: linear-gradient(135deg, var(--teal-600), var(--teal-800));
}
.order-cta .container { text-align: center; max-width: 640px; }
.order-cta .eyebrow { color: rgba(255,255,255,0.72); }
.order-cta .eyebrow::before, .order-cta .eyebrow::after { background: rgba(255,255,255,0.4); }
.order-cta h2 { color: #fff; font-size: clamp(1.9rem, 4.4vw, 3rem); }
.order-cta p { color: rgba(255,255,255,0.85); max-width: 46ch; margin: 14px auto 30px; font-size: 1.05rem; line-height: 1.6; }
.oc-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.order-cta .oc-cta .btn-ghost { background: rgba(255,255,255,0.1); border: 1.5px solid rgba(255,255,255,0.4); color: #fff; -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.order-cta .oc-cta .btn-ghost:hover { background: rgba(255,255,255,0.2); border-color: #fff; }

/* ============================================================
   AI CAKE GENERATOR
   ============================================================ */
.ai { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.ai::before {
  content:""; position:absolute; inset:0; z-index:0; opacity:0.5;
  background:
    radial-gradient(50% 50% at 12% 8%, rgba(56,225,240,0.22), transparent 60%),
    radial-gradient(46% 46% at 90% 88%, rgba(255,77,109,0.18), transparent 60%);
}
.ai .container { position: relative; z-index: 1; }
.ai .eyebrow { color: var(--teal-300); }
.ai .eyebrow::before { background: linear-gradient(90deg, var(--neon-coral), var(--neon-cyan)); }
.ai h2 { color: #fff; }
.ai h2 .script { font-family: var(--font-script); color: var(--neon-cyan); font-size: 1.1em; display:inline-block; text-shadow: 0 0 22px rgba(56,225,240,0.5); }
.ai .lead { color: rgba(255,255,255,0.78); }
.ai-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(26px, 4vw, 56px); align-items: start; margin-top: 40px; }
.ai-panel {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg); padding: clamp(22px, 3vw, 34px);
  backdrop-filter: blur(10px);
}
.ai-field { margin-bottom: 20px; }
.ai-field > label { display:block; font-weight: 700; font-size: 0.9rem; margin-bottom: 10px; color: rgba(255,255,255,0.92); }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 0.5em 0.95em; border-radius: var(--r-pill);
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.85); font-weight: 600; font-size: 0.86rem;
  transition: .25s var(--ease);
}
.chip:hover { border-color: var(--neon-cyan); color: #fff; }
.chip.sel { background: var(--teal-500); border-color: var(--teal-400); color: #fff; box-shadow: 0 8px 20px -8px rgba(42,160,187,0.7); }
.ai-input, .ai-textarea {
  width: 100%; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16); border-radius: var(--r-sm);
  color: #fff; padding: 0.85em 1em; font-family: inherit; font-size: 0.95rem;
  transition: .25s;
}
.ai-input::placeholder, .ai-textarea::placeholder { color: rgba(255,255,255,0.4); }
.ai-input:focus, .ai-textarea:focus { outline: none; border-color: var(--neon-cyan); background: rgba(255,255,255,0.09); }
.ai-textarea { resize: vertical; min-height: 84px; }
.ai-meter { display:flex; align-items:center; gap:10px; font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-top: 8px; }
.ai-meter .bar { flex:1; height:6px; border-radius:4px; background: rgba(255,255,255,0.12); overflow:hidden; }
.ai-meter .bar i { display:block; height:100%; background: linear-gradient(90deg, var(--neon-cyan), var(--neon-coral)); width: 100%; transition: width .4s var(--ease); }
.ai-actions { display:flex; align-items:center; justify-content: center; gap:14px; flex-wrap: wrap; margin-top: 6px; }
.ai-card-form .ai-actions .btn-primary { min-width: 240px; padding: 1.05em 2.2em; }
.ai-note { font-size: 0.78rem; color: rgba(255,255,255,0.5); display:flex; gap:8px; align-items:flex-start; margin-top: 16px; line-height: 1.5; }
.ai-note[hidden] { display: none; }
.ai-note svg { width: 16px; height: 16px; flex: none; margin-top: 2px; color: var(--teal-300); }

/* preview canvas */
.ai-preview {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 1; border: 1px solid rgba(255,255,255,0.12);
  background:
    radial-gradient(60% 60% at 50% 38%, rgba(56,225,240,0.10), transparent 70%),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.03) 0 14px, rgba(255,255,255,0.06) 14px 28px);
  display: grid; place-items: center; text-align: center;
}
.ai-preview .ph-inner { color: rgba(255,255,255,0.6); padding: 24px; max-width: 30ch; }
.ai-preview .ph-inner .ring {
  width: 78px; height: 78px; border-radius: 50%; margin: 0 auto 18px;
  border: 2px dashed rgba(255,255,255,0.3); display: grid; place-items: center;
}
.ai-preview .ph-inner .ring svg { width: 34px; height: 34px; color: var(--neon-cyan); }
.ai-preview.loading .ph-inner .ring { animation: spin 1.1s linear infinite; border-top-color: var(--neon-cyan); }
@keyframes spin { to { transform: rotate(360deg); } }
.ai-preview .mono { font-family: ui-monospace, 'SF Mono', Menlo, monospace; font-size: 0.78rem; letter-spacing: 0.02em; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px; gap: 16px; margin-top: 16px;
  grid-auto-flow: dense;
}
.g-item { cursor: pointer; }
.g-item { position: relative; overflow: hidden; border-radius: var(--r-md); box-shadow: var(--sh-md); }
.g-item img { width:100%; height:100%; object-fit: cover; transition: transform 1s var(--ease); }
.g-item:hover img { transform: scale(1.07); }
.g-item::after { content:""; position:absolute; inset:0; background: linear-gradient(transparent 55%, rgba(8,34,42,0.35)); opacity:0; transition:.4s; }
.g-item:hover::after { opacity: 1; }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

/* ---------- Gallery marquee (tam genişlik, iki sıra, değişken boyut, sola akış) ---------- */
.gallery-marquee {
  position: relative; margin-top: clamp(28px, 4vw, 48px); overflow: hidden; overflow-x: clip;
  display: flex; flex-direction: column; gap: clamp(12px, 1.4vw, 18px);
}
/* kenar yumuşatma — mask yerine gradient katman (animasyonun GPU'da kompozit edilmesini engellemez) */
.gallery-marquee::before, .gallery-marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: clamp(40px, 7vw, 110px); z-index: 2; pointer-events: none;
}
.gallery-marquee::before { left: 0; background: linear-gradient(90deg, var(--vanilla-50), rgba(250,244,234,0)); }
.gallery-marquee::after { right: 0; background: linear-gradient(270deg, var(--vanilla-50), rgba(250,244,234,0)); }
.gm-track { display: flex; width: max-content; will-change: transform; animation: gmScroll 80s linear infinite; }
.gallery-marquee:hover .gm-track { animation-play-state: paused; }
.gm-track .g-item {
  position: relative; flex: 0 0 auto; margin-right: clamp(12px, 1.4vw, 18px);
  border-radius: var(--r-md); overflow: hidden; box-shadow: var(--sh-md); cursor: pointer;
}
/* satıra göre yükseklik (sıralar arası boyut farkı) */
.gm-row1 .g-item { height: clamp(190px, 26vh, 290px); }
.gm-row2 .g-item { height: clamp(150px, 20vh, 225px); }
/* fotodan fotoya değişen en-boy oranları (genişlik çeşitliliği) */
.g-item.gm-w-s { aspect-ratio: 3 / 4; }
.g-item.gm-w-m { aspect-ratio: 1 / 1; }
.g-item.gm-w-l { aspect-ratio: 4 / 3; }
.g-item.gm-w-xl { aspect-ratio: 16 / 10; }
.gm-track .g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.gm-track .g-item:hover img { transform: scale(1.06); }
.gm-track .g-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 52%, rgba(8,34,42,0.4)); opacity: 0; transition: .4s; }
.gm-track .g-item:hover::after { opacity: 1; }
@keyframes gmScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (max-width: 600px) {
  .gm-row1 .g-item { height: clamp(150px, 34vw, 220px); }
  .gm-row2 .g-item { height: clamp(120px, 28vw, 180px); }
}
@media (prefers-reduced-motion: reduce) {
  .gm-track { animation: none; overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

/* ---------- Gallery lightbox (site içi, bulanık arka plan) ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  display: grid; place-items: center; padding: clamp(16px, 4vw, 64px);
  background: rgba(8, 26, 32, 0.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.1); backdrop-filter: blur(20px) saturate(1.1);
  opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s var(--ease);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lb-stage { position: relative; margin: 0; display: flex; flex-direction: column; align-items: center; max-width: min(1040px, 92vw); }
.lb-img {
  max-width: 100%; max-height: 80vh; display: block; object-fit: contain;
  border-radius: var(--r-lg); box-shadow: 0 40px 110px -30px rgba(0,0,0,0.75);
  background: rgba(255,255,255,0.05);
  transition: opacity .32s var(--ease), transform .4s var(--ease);
}
.lightbox.swapping .lb-img { opacity: 0; transform: scale(0.97); }
.lb-cap { margin-top: 14px; color: rgba(255,255,255,0.9); font-size: 0.96rem; text-align: center; max-width: 60ch; }
.lb-count { margin-top: 4px; color: rgba(255,255,255,0.55); font-size: 0.8rem; letter-spacing: 0.08em; font-variant-numeric: tabular-nums; }
.lb-btn, .lb-close {
  position: absolute; z-index: 3; display: grid; place-items: center; cursor: pointer; color: #fff;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.3); border-radius: 50%;
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  transition: background .25s var(--ease), transform .25s var(--ease), border-color .25s var(--ease);
}
.lb-btn { top: 50%; transform: translateY(-50%); width: 54px; height: 54px; }
.lb-btn:hover { background: rgba(255,255,255,0.24); border-color: rgba(255,255,255,0.55); }
.lb-btn:active { transform: translateY(-50%) scale(0.92); }
.lb-prev { left: clamp(10px, 2.5vw, 34px); }
.lb-next { right: clamp(10px, 2.5vw, 34px); }
.lb-close { top: clamp(14px, 3vw, 30px); right: clamp(14px, 3vw, 30px); width: 46px; height: 46px; }
.lb-close:hover { background: rgba(255,255,255,0.24); border-color: rgba(255,255,255,0.55); }
.lb-btn svg { width: 24px; height: 24px; }
.lb-close svg { width: 22px; height: 22px; }
@media (max-width: 600px) {
  .lb-btn { width: 44px; height: 44px; }
  .lb-img { max-height: 72vh; }
}
@media (prefers-reduced-motion: reduce) {
  .lightbox, .lb-img { transition: opacity .2s linear; }
  .lightbox.swapping .lb-img { transform: none; }
}

/* ============================================================
   CONTACT / LOCATION
   ============================================================ */
.contact { background: linear-gradient(180deg, var(--vanilla-100), var(--teal-100)); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 60px); align-items: stretch; }
.contact-card {
  background: var(--paper); border-radius: var(--r-lg); box-shadow: var(--sh-lg);
  padding: clamp(26px, 3.4vw, 42px);
}
.info-row { display:flex; gap:16px; padding: 16px 0; border-bottom: 1px solid var(--line-soft); align-items:flex-start; }
.info-row:last-of-type { border-bottom: none; }
.info-row .ic { width: 46px; height: 46px; border-radius: 14px; flex:none; display:grid; place-items:center; background: var(--teal-100); color: var(--teal-600); }
.info-row .ic svg { width: 22px; height: 22px; }
.info-row .t span { font-size: 0.78rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.info-row .t b { display:block; font-size: 1.08rem; color: var(--ink); margin-top: 2px; font-weight: 700; }
.info-row .t a { color: var(--ink); }
.info-row .t p { font-size: 0.96rem; color: var(--ink-soft); }
.contact-actions { display:grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 24px; }
.contact-actions .btn { width: 100%; }
.map-card { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg); min-height: 380px; display:flex; flex-direction:column; border: 1px solid var(--line); }
.map-card iframe { width: 100%; flex: 1; border: 0; min-height: 380px; filter: saturate(1.04); }
.map-open {
  position: absolute; right: 14px; bottom: 14px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--teal-700); font-weight: 700; font-size: .9rem;
  padding: 10px 16px; border-radius: var(--r-pill);
  box-shadow: 0 8px 22px -8px rgba(21,51,59,0.4); border: 1px solid var(--line);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.map-open:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -8px rgba(21,51,59,0.5); }
.map-open svg { width: 16px; height: 16px; }

/* ============================================================
   CONTACT — single-screen split (no scroll) + styled map
   ============================================================ */
body.contact-screen { overflow: hidden; }
.contact-stage {
  height: 100dvh; min-height: 560px; overflow: hidden;
  display: grid; place-items: center;
  padding: clamp(80px, 11vh, 120px) var(--gutter) clamp(22px, 4vh, 42px);
  background:
    radial-gradient(80% 60% at 82% -8%, var(--teal-100), transparent 55%),
    radial-gradient(60% 50% at 8% 108%, var(--coral-100), transparent 55%),
    linear-gradient(180deg, var(--vanilla-50), var(--vanilla-100));
}
.cs-grid {
  width: 100%; max-width: 1060px; height: 100%; max-height: 540px;
  display: grid; grid-template-columns: 1fr 0.92fr; gap: clamp(24px, 3.5vw, 56px);
  align-items: stretch;
}
.cs-info { display: flex; flex-direction: column; justify-content: center; min-width: 0; }
.cs-info .cs-eyebrow { font-size: .76rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--coral-500); }
.cs-info .cs-title { font-family: var(--font-script); color: var(--teal-600); font-size: clamp(2.4rem, 5vw, 3.5rem); line-height: 1; margin: 6px 0 10px; text-shadow: 0 6px 18px rgba(15,60,72,.14); }
.cs-info .cs-lead { color: var(--ink-soft); max-width: 42ch; line-height: 1.6; font-size: 1rem; }
.cs-rows { list-style: none; display: grid; gap: clamp(10px, 1.7vh, 18px); margin: clamp(18px, 3vh, 30px) 0 clamp(20px, 3vh, 30px); }
.cs-rows li { display: flex; gap: 14px; align-items: center; }
.cs-rows .cs-ic { width: 44px; height: 44px; border-radius: 13px; flex: none; display: grid; place-items: center; background: var(--teal-100); color: var(--teal-600); }
.cs-rows .cs-ic svg { width: 20px; height: 20px; }
.cs-rows .cs-k { font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.cs-rows b { display: block; font-size: 1.04rem; color: var(--ink); font-weight: 700; margin-top: 1px; }
.cs-rows b a { color: inherit; transition: color .25s var(--ease); }
.cs-rows b a:hover { color: var(--teal-600); }
.cs-rows .cs-sub { font-size: .88rem; color: var(--ink-soft); }
.cs-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cs-actions .btn { flex: 1; min-width: 116px; justify-content: center; }
.cs-actions .cs-dir { background: #fff; border: 1.5px solid var(--line); color: var(--teal-800); }
.cs-actions .cs-dir:hover { border-color: var(--teal-400); color: var(--teal-700); }

.cs-map {
  position: relative; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-xl);
  border: 1px solid rgba(255,255,255,.6); height: 100%; min-height: 300px;
  background: var(--vanilla-100);
}
.cs-map-embed {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  filter: saturate(1.02) contrast(1.02);
}
.cs-map::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.45), inset 0 -120px 110px -70px rgba(11,42,51,.34);
}
.cs-map-card {
  position: absolute; left: clamp(14px, 2vw, 22px); bottom: clamp(14px, 2vw, 22px); z-index: 2;
  width: min(330px, calc(100% - 28px));
  background: rgba(252,248,241,0.92); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.7); border-radius: var(--r-md);
  box-shadow: var(--sh-lg); padding: 15px 18px;
}
.cs-map-card-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 5px; }
.cs-map-card-top strong { font-family: var(--font-display); font-size: 1.22rem; color: var(--ink); }
.cs-map-card p { font-size: .85rem; color: var(--ink-soft); line-height: 1.4; }
.cs-map-dir { display: inline-flex; align-items: center; gap: 7px; margin-top: 10px; font-weight: 700; color: var(--teal-600); font-size: .92rem; }
.cs-map-dir svg { width: 17px; height: 17px; transition: transform .25s var(--ease); }
.cs-map-dir:hover svg { transform: translateX(3px); }

@media (max-width: 920px) {
  body.contact-screen { overflow: auto; }
  .contact-stage { height: auto; min-height: 100dvh; }
  .cs-grid { grid-template-columns: 1fr; max-height: none; gap: 22px; }
  .cs-map { min-height: 0; aspect-ratio: 4 / 3; height: auto; }
}

.info-row .t { flex: 1; min-width: 0; }
.info-row .t .ic-link { display: inline-flex; align-items: center; gap: 6px; }
.info-row .t .ic-link svg { width: 15px; height: 15px; flex: none; opacity: .6; }
.hours-list { display:grid; gap: 6px; margin-top: 8px; }
.hours-list li { display:flex; justify-content: space-between; align-items: baseline; gap: 16px; font-size: 0.95rem; color: var(--ink-soft); }
.hours-list li span { text-transform: none; letter-spacing: 0; font-weight: 600; font-size: 0.95rem; color: var(--ink-soft); }
.hours-list li b { color: var(--teal-600); font-weight: 700; white-space: nowrap; }
.open-pill { display:inline-flex; align-items:center; gap:8px; font-weight:800; font-size:0.82rem; color: var(--wa-dark); background: #E6F8EE; padding: 0.4em 0.9em; border-radius: var(--r-pill); }
.open-pill .pulse { width:8px;height:8px;border-radius:50%;background:var(--wa);box-shadow:0 0 0 0 rgba(37,211,102,0.5); animation: pulse 2s infinite; }
@keyframes pulse { 70%{ box-shadow:0 0 0 8px rgba(37,211,102,0);} 100%{box-shadow:0 0 0 0 rgba(37,211,102,0);} }

/* ============================================================
   FOOTER (info block, not a nav bar)
   ============================================================ */
.foot { background: var(--ink); color: rgba(255,255,255,0.7); padding: clamp(32px,4.5vw,52px) 0 20px; }
.foot-top { display:grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 30px; }
.foot .script { font-family: var(--font-script); font-size: 2.6rem; color: var(--neon-cyan); text-shadow: 0 0 22px rgba(56,225,240,0.4); }
.foot p { margin-top: 10px; max-width: 38ch; line-height: 1.6; font-size: 0.88rem; }
.foot h4 { font-family: var(--font-body); color: #fff; font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 12px; }
.foot ul li { margin-bottom: 8px; font-size: 0.9rem; }
.foot ul a, .foot .ln { color: rgba(255,255,255,0.7); transition: color .3s, padding-left .3s; }
.foot ul a:hover { color: var(--neon-cyan); padding-left: 4px; }
.foot-bottom { margin-top: 28px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.1); display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap; font-size: 0.82rem; }

/* ---------- Minimal footer ---------- */
.foot-min { padding: 26px 0 18px; }
.foot-min-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px 34px; flex-wrap: wrap; }
.foot-min .foot-logo { height: 30px; margin: 0; }
.foot-links { display: flex; gap: 22px; flex-wrap: wrap; }
.foot-links a { color: rgba(255,255,255,0.78); font-size: 0.9rem; font-weight: 600; transition: color .25s; }
.foot-links a:hover { color: var(--neon-cyan); }
.foot-meta { display: flex; gap: 18px; flex-wrap: wrap; font-size: 0.85rem; }
.foot-meta a { color: rgba(255,255,255,0.6); transition: color .25s; }
.foot-meta a:hover { color: var(--neon-cyan); }
.foot-min-bottom { margin-top: 16px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 0.78rem; color: rgba(255,255,255,0.5); }
@media (max-width: 640px) {
  .foot-min-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
}

/* whatsapp floating */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg, #2BD974, var(--wa-dark));
  display: grid; place-items: center; color: #fff;
  box-shadow: 0 16px 34px -10px rgba(18,140,126,0.6);
  transition: transform .35s var(--ease);
}
.wa-float svg { width: 30px; height: 30px; }
.wa-float:hover { transform: scale(1.08) translateY(-2px); }
.wa-float::after {
  content:""; position:absolute; inset:0; border-radius:50%; z-index:-1;
  background: rgba(37,211,102,0.45);
  animation: waPulse 2.4s var(--ease) infinite;
}
/* GPU'da çalışan nabız efekti (transform/opacity — box-shadow yerine).
   Ölçek 1.5 ile sınırlı: 58px butonun her yöne ~14.5px büyümesi, sağ/alt 18px
   boşluğun içinde kalır → fixed öğe viewport dışına taşmaz (mobil beyaz çizgi yok). */
@keyframes waPulse {
  0%   { transform: scale(1);   opacity: 0.5; }
  70%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ============================================================
   FOOTER LOGO
   ============================================================ */
.foot-logo { height: 38px; width: auto; margin-bottom: 6px; }

/* ============================================================
   SUB-PAGE HERO (menu / contact / ai)
   ============================================================ */
.page-hero {
  position: relative; isolation: isolate;
  padding-top: clamp(120px, 16vh, 180px);
  padding-bottom: clamp(40px, 7vh, 76px);
  overflow: hidden;
}
.page-hero.on-image { color: #fff; min-height: 56vh; display: flex; align-items: flex-end; }
.page-hero .ph-bg { position: absolute; inset: 0; z-index: -2; }
.page-hero .ph-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero.on-image .ph-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,40,50,0.45) 0%, rgba(10,40,50,0.2) 40%, rgba(8,34,42,0.72) 100%);
}
.page-hero .crumb {
  display: inline-flex; gap: 0.5em; align-items: center;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.04em;
  color: var(--muted);
}
.page-hero.on-image .crumb { color: rgba(255,255,255,0.85); }
.page-hero .crumb a { color: inherit; opacity: 0.8; }
.page-hero .crumb a:hover { opacity: 1; color: var(--teal-500); }
.page-hero h1 {
  font-size: clamp(2.6rem, 7vw, 5.4rem); margin-top: 0.18em; line-height: 0.98;
}
.page-hero.on-image h1 { color: #fff; text-shadow: 0 6px 36px rgba(6,28,36,0.5); }
.page-hero h1 .script { display: block; font-family: var(--font-script); color: var(--teal-500); font-size: 0.62em; font-weight: 400; margin-bottom: 0.05em; }
.page-hero.on-image h1 .script { color: var(--neon-cyan); text-shadow: 0 0 20px rgba(56,225,240,0.5); }
.page-hero p.ph-sub { margin-top: 1em; font-size: clamp(1.02rem, 1.7vw, 1.24rem); max-width: 54ch; }
.page-hero.on-image p.ph-sub { color: rgba(255,255,255,0.92); }
.page-hero:not(.on-image) p.ph-sub { color: var(--ink-soft); }

/* AI sayfası — "Çok Yakında" durumu */
.ai-soon { padding-bottom: clamp(60px, 12vh, 120px); }
.ai-soon-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 18px; border-radius: var(--r-pill);
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  color: var(--neon-cyan); font-weight: 800; font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase;
}
.ai-soon-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--neon-cyan); box-shadow: 0 0 12px var(--neon-cyan); animation: aiSoonPulse 1.8s var(--ease-soft) infinite; }
@keyframes aiSoonPulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.7); } }
.ai-soon .ai-soon-sub { color: rgba(255,255,255,0.6); font-size: 1rem; margin-top: 0.5em; }
.ai-soon-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }
.ai-soon-cta .btn-ghost { background: rgba(255,255,255,0.1); border: 1.5px solid rgba(255,255,255,0.35); color: #fff; -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.ai-soon-cta .btn-ghost:hover { background: rgba(255,255,255,0.18); border-color: #fff; }
@media (prefers-reduced-motion: reduce) { .ai-soon-badge .dot { animation: none; } }

/* ============================================================
   MENU PAGE
   ============================================================ */
.menu-wrap { background: var(--vanilla-50); }
.menu-tabs {
  position: sticky; top: 0; z-index: 40;
  display: flex; gap: 8px; flex-wrap: wrap; justify-content: center;
  padding: clamp(18px, 2.4vw, 26px) var(--gutter);
  background: rgba(250,249,247,0.95);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-soft);
}
.menu-tab {
  white-space: nowrap;
  display: inline-flex; align-items: center; min-height: 44px;
  padding: 0.5em 1.25em; border-radius: var(--r-pill);
  font-weight: 700; font-size: 0.9rem; color: var(--muted);
  background: transparent; transition: .3s var(--ease);
  border: 1px solid var(--line-soft);
}
.menu-tab:hover { color: var(--teal-600); background: var(--teal-100); border-color: var(--teal-200); }
.menu-tab.active { background: var(--teal-600); color: #fff; box-shadow: var(--sh-teal); border-color: transparent; }

/* group dividers (minimal) */
.menu-group { padding: clamp(32px, 5vw, 60px) 0 8px; text-align: center; scroll-margin-top: 104px; background: var(--vanilla-50); }
.menu-group .mg-eyebrow { display: block; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; color: var(--coral-500); margin-bottom: 8px; }
.menu-group .mg-title { font-family: var(--font-display); font-size: clamp(1.8rem, 3.8vw, 2.7rem); color: var(--teal-800); display: inline-block; }
.menu-group .mg-title::after { content: ""; display: block; width: 52px; height: 2px; border-radius: 2px; background: linear-gradient(90deg, var(--teal-500), var(--coral-500)); margin: 12px auto 0; }

/* her kategori kendi yumuşak arka planıyla — kaydırdıkça zemin değişir */
.menu-cat { padding-block: clamp(30px, 4.2vw, 58px); scroll-margin-top: 104px; position: relative; overflow-x: clip; }
.menu-cat:nth-of-type(3n+1) {
  background: linear-gradient(180deg, var(--vanilla-50), var(--vanilla-100));
}
.menu-cat:nth-of-type(3n+2) {
  background:
    radial-gradient(80% 110% at 12% 0%, rgba(217,128,95,0.10), transparent 58%),
    linear-gradient(180deg, #FBF1E8, #F6E7D9);
}
.menu-cat:nth-of-type(3n) {
  background:
    radial-gradient(80% 110% at 90% 0%, rgba(42,160,187,0.14), transparent 58%),
    linear-gradient(180deg, #E9F3F5, #DCEDF0);
}
.menu-cat-head { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 22px; flex-wrap: wrap; }
.menu-cat-head .mh-l { max-width: 60ch; }
.menu-cat-head h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); font-weight: 600; color: var(--teal-800); line-height: 1.08; }
.menu-cat-head h2 .num {
  font-family: var(--font-body); font-size: 0.74rem; font-weight: 800; color: var(--coral-500);
  letter-spacing: 0.16em; display: block; margin-bottom: 6px;
}
.menu-cat-head h2::after {
  content: ""; display: block; width: 48px; height: 3px; border-radius: 3px;
  background: linear-gradient(90deg, var(--coral-400), var(--teal-500)); margin-top: 12px;
}
.menu-cat-head p { color: var(--ink-soft); margin-top: 8px; }
.menu-cat-head .mc-thumb {
  width: clamp(92px, 11vw, 132px); aspect-ratio: 1 / 1; border-radius: 50%; overflow: hidden;
  box-shadow: var(--sh-lg); border: 4px solid rgba(255,255,255,0.92); flex: none;
}
.menu-cat-head .mc-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.menu-cat-head .mc-thumb:hover img { transform: scale(1.07); }

/* güncel fiyatlar — QR (desktop) / link (mobile) */
.price-band { background: linear-gradient(125deg, var(--teal-700), var(--teal-800)); color: #fff; }
.price-band-inner { display: flex; align-items: center; justify-content: space-between; gap: clamp(18px, 3vw, 44px); flex-wrap: wrap; padding-block: clamp(22px, 3vw, 34px); }
.pb-copy { flex: 1; min-width: 0; }
.pb-copy .pb-eyebrow { display: block; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: var(--neon-cyan); margin-bottom: 7px; }
.pb-copy .pb-title { font-family: var(--font-display); color: #fff; font-size: clamp(1.4rem, 2.6vw, 2rem); margin-bottom: 6px; }
.price-band p { color: rgba(255,255,255,0.82); font-size: 0.95rem; max-width: 48ch; line-height: 1.6; }
.pb-qr { flex: none; display: grid; place-items: center; width: 118px; height: 118px; border-radius: var(--r-md); background: #fff; box-shadow: var(--sh-lg); overflow: hidden; transition: transform .3s var(--ease); }
.pb-qr:hover { transform: translateY(-3px); }
.pb-qr img { width: 100%; height: 100%; object-fit: contain; padding: 7px; }
.pb-qr-ph { display: grid; place-items: center; gap: 5px; color: var(--teal-700); }
.pb-qr-ph svg { width: 52px; height: 52px; }
.pb-qr-ph .pb-qr-label { font-size: 0.68rem; font-weight: 800; letter-spacing: 0.1em; color: var(--muted); text-transform: uppercase; }
.pb-link { display: none; }
@media (max-width: 760px) {
  .pb-qr { display: none; }
  .pb-link { display: inline-flex; }
}

/* öğeler okunaklı, ferah bir kart üzerinde */
.menu-list {
  column-count: 3; column-gap: clamp(26px, 3.4vw, 48px);
  background: rgba(255,255,255,0.7);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: var(--r-lg); box-shadow: var(--sh-md);
  padding: clamp(18px, 2.3vw, 30px) clamp(20px, 2.8vw, 38px);
}
.menu-item {
  display: block; break-inside: avoid; -webkit-column-break-inside: avoid;
  padding: 10px 0; border-bottom: 1px solid rgba(15,60,72,0.1);
  transition: padding .3s var(--ease);
}
.menu-item:hover { padding-left: 7px; }
.menu-item .mi-name { font-family: var(--font-display); font-weight: 600; font-size: 1.28rem; line-height: 1.2; color: var(--ink); display: flex; align-items: center; gap: 10px; min-width: 0; overflow-wrap: anywhere; transition: color .25s var(--ease); }
.menu-item:hover .mi-name { color: var(--teal-700); }
.menu-item .mi-name .flag {
  font-size: 0.62rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.25em 0.6em; border-radius: var(--r-pill); white-space: nowrap;
}
.flag-new { background: var(--coral-100); color: var(--coral-700); }
.flag-pop { background: var(--teal-100); color: var(--teal-700); }
.flag-veg { background: #E6F4E6; color: #3C7A3C; }
.menu-item .mi-desc { font-size: 0.88rem; color: var(--ink-soft); opacity: 0.92; margin-top: 4px; line-height: 1.5; overflow-wrap: anywhere; }
.menu-item .mi-dots { flex: 1; }
.menu-item .mi-price { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; color: var(--teal-600); white-space: nowrap; }
.menu-item .mi-price .cur { font-size: 0.7em; opacity: 0.7; }

/* feature dish card within menu */
.menu-feature {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(20px,3vw,44px); align-items: center;
  background: var(--paper); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-lg); margin-bottom: 40px;
}
.menu-feature .mf-img { aspect-ratio: 4/3; }
.menu-feature .mf-img img { width: 100%; height: 100%; object-fit: cover; }
.menu-feature .mf-body { padding: clamp(22px,3vw,40px) clamp(22px,3vw,40px) clamp(22px,3vw,40px) 0; }
.menu-feature .mf-body .k { color: var(--coral-500); font-weight: 800; font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; }
.menu-feature .mf-body h3 { font-size: clamp(1.6rem,3vw,2.4rem); margin: 6px 0 10px; }
.menu-feature .mf-body p { color: var(--ink-soft); }
.menu-feature .mf-price { font-family: var(--font-display); font-size: 1.8rem; color: var(--teal-600); font-weight: 600; margin-top: 14px; }

.menu-note {
  text-align: center; padding: 30px; color: var(--muted); font-size: 0.92rem;
  max-width: 60ch; margin: 0 auto;
}

/* ============================================================
   AI PAGE — floating cake backdrop
   ============================================================ */
.ai-page { min-height: 100vh; background: radial-gradient(120% 90% at 50% -10%, #123642, var(--ink) 60%); color: #fff; position: relative; overflow-x: hidden; }
.ai-bg { position: fixed; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.ai-bg .floaty {
  position: absolute; border-radius: 50%; overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.55), inset 0 0 0 1px rgba(255,255,255,0.1);
  opacity: 0.9; will-change: transform;
  animation: floatY var(--dur, 14s) var(--ease-soft) infinite alternate;
}
.ai-bg .floaty img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.05); }
.ai-bg .floaty::after { content:""; position:absolute; inset:0; background: radial-gradient(60% 60% at 35% 30%, rgba(255,255,255,0.18), transparent 70%); }
@keyframes floatY { from { transform: translateY(0) rotate(var(--rot, 0deg)); } to { transform: translateY(-38px) rotate(calc(var(--rot, 0deg) + 6deg)); } }
.ai-bg .glow { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.5; }

.ai-page-inner { position: relative; z-index: 2; }
.ai-hero { text-align: center; padding-top: clamp(120px, 16vh, 170px); padding-bottom: 30px; }
.ai-hero .badge-ai {
  display: inline-flex; align-items: center; gap: 0.6em;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18);
  padding: 0.5em 1.1em; border-radius: var(--r-pill);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--teal-200); backdrop-filter: blur(8px);
}
.ai-hero .badge-ai .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--neon-cyan); box-shadow: 0 0 10px var(--neon-cyan); }
.ai-hero h1 { color: #fff; font-size: clamp(2.6rem, 7vw, 5rem); margin: 0.3em 0 0; }
.ai-hero h1 .script { font-family: var(--font-script); color: var(--neon-cyan); font-weight: 400; text-shadow: 0 0 26px rgba(56,225,240,0.5); }
.ai-hero p { color: rgba(255,255,255,0.8); max-width: 56ch; margin: 1em auto 0; font-size: clamp(1.02rem,1.7vw,1.22rem); }

.ai-card {
  max-width: 1060px; margin: 30px auto clamp(60px,9vw,110px);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--r-xl);
  box-shadow: 0 50px 90px -40px rgba(0,0,0,0.7);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
}
.ai-card-grid { display: grid; grid-template-columns: 1fr 1fr; }
.ai-card-form { padding: clamp(26px, 3.4vw, 46px); }
.ai-card-preview { padding: clamp(26px, 3.4vw, 46px); background: rgba(0,0,0,0.18); border-left: 1px solid rgba(255,255,255,0.1); display: flex; flex-direction: column; }
.ai-step-label { font-size: 0.74rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--neon-cyan); margin-bottom: 22px; }

/* ============================================================
   AI — single-column form + animated result
   ============================================================ */
.ai-card--solo { display: block; }
.ai-card--solo .ai-card-form { max-width: 760px; margin: 0 auto; }

.ai-result {
  border-top: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.20);
  padding: clamp(24px, 3.4vw, 46px);
  animation: aiReveal .55s var(--ease) both;
}
@keyframes aiReveal { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.ai-result-head { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 7px; }
.ai-result-head .ai-step-label { margin-bottom: 18px; }
.ai-design-id {
  display: inline-flex; align-items: center; margin: -10px 0 14px;
  font-family: ui-monospace, 'SF Mono', Menlo, monospace; font-size: 0.7rem;
  letter-spacing: 0.04em; color: rgba(255,255,255,0.62);
  background: rgba(0,0,0,0.24); border: 1px solid rgba(255,255,255,0.12);
  padding: 4px 11px; border-radius: var(--r-pill);
}

.ai-stage {
  position: relative; width: 100%; max-width: 440px; aspect-ratio: 1 / 1; margin: 0 auto;
  border-radius: var(--r-lg); overflow: hidden; border: 1px solid rgba(255,255,255,0.14);
  background:
    radial-gradient(60% 60% at 50% 38%, rgba(56,225,240,0.10), transparent 70%),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.03) 0 14px, rgba(255,255,255,0.06) 14px 28px);
  display: grid; place-items: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04), 0 34px 64px -34px rgba(0,0,0,0.75);
}

/* generating */
.ai-gen { text-align: center; color: rgba(255,255,255,0.72); padding: 26px; max-width: 30ch; }
.ai-gen .ai-gen-orb { position: relative; width: 96px; height: 96px; margin: 0 auto 22px; }
.ai-gen .whisk {
  position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(from 90deg, rgba(56,225,240,0), var(--neon-cyan), rgba(56,225,240,0));
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 6px), #000 calc(100% - 6px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 6px), #000 calc(100% - 6px));
  animation: spin 1.05s linear infinite;
}
.ai-gen .whisk-ic { position: absolute; inset: 0; display: grid; place-items: center; }
.ai-gen .whisk-ic svg { width: 34px; height: 34px; color: #fff; animation: aiPulse 1.4s var(--ease) infinite; }
.ai-gen .ai-gen-lock { width: 78px; height: 78px; border-radius: 50%; margin: 0 auto 18px; display: grid; place-items: center; border: 2px dashed rgba(255,77,109,.5); }
.ai-gen .ai-gen-lock svg { width: 34px; height: 34px; color: var(--neon-coral); }
.ai-gen-title {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace; font-size: .86rem; letter-spacing: .04em;
  background: linear-gradient(90deg, rgba(255,255,255,.35), #fff, rgba(255,255,255,.35));
  background-size: 200% 100%; -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: aiShimmer 1.8s linear infinite;
}
.ai-gen-steps { display: flex; gap: 8px; justify-content: center; margin-top: 16px; }
.ai-gen-steps span {
  font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.4);
  padding: 5px 11px; border: 1px solid rgba(255,255,255,0.14); border-radius: 999px;
}
.ai-gen-steps span:nth-child(1) { animation: aiStep 1.8s var(--ease) infinite; }
.ai-gen-steps span:nth-child(2) { animation: aiStep 1.8s var(--ease) .6s infinite; }
.ai-gen-steps span:nth-child(3) { animation: aiStep 1.8s var(--ease) 1.2s infinite; }
@keyframes aiStep { 0%, 100% { color: rgba(255,255,255,.4); border-color: rgba(255,255,255,0.14); background: transparent; } 30%, 60% { color: #0E1F26; border-color: var(--neon-cyan); background: var(--neon-cyan); } }
@keyframes aiPulse { 0%, 100% { transform: scale(1); opacity: .85; } 50% { transform: scale(1.12); opacity: 1; } }
@keyframes aiShimmer { to { background-position: -200% 0; } }

/* result image */
.ai-shot { position: absolute; inset: 0; animation: aiReveal .6s var(--ease) both; }
.ai-shot img { width: 100%; height: 100%; object-fit: cover; animation: aiZoom 8s var(--ease-soft) both; }
.ai-shot-badge {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  background: rgba(252,248,241,0.92); color: var(--teal-700); font-weight: 800;
  font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 11px; border-radius: var(--r-pill); box-shadow: var(--sh-sm);
}
/* prompt preview (the auto-translated English prompt) */
.ai-prompt-preview { margin: 14px auto 0; max-width: 440px; text-align: left; }
.ai-prompt-preview .app-label { display: block; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--neon-cyan); margin-bottom: 6px; }
.ai-prompt-preview code { display: block; font-family: ui-monospace, 'SF Mono', Menlo, monospace; font-size: 0.8rem; line-height: 1.5; color: rgba(255,255,255,0.78); background: rgba(0,0,0,0.22); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--r-sm); padding: 12px 14px; white-space: pre-wrap; word-break: break-word; }
/* limit panel that replaces the form when credits run out */
.ai-limit-panel { margin: clamp(10px, 3vh, 30px) auto; }
.ai-shot::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,20,24,.72), transparent 44%); }
@keyframes aiZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
/* fresh designs "develop" in — un-blurring from the top down */
.ai-shot--develop img { animation: aiDevelop 1.5s var(--ease-soft) both; }
@keyframes aiDevelop {
  0%   { filter: blur(28px) saturate(.6) brightness(1.12); clip-path: inset(0 0 100% 0); opacity: .35; transform: scale(1.05); }
  28%  { opacity: 1; }
  100% { filter: blur(0) saturate(1) brightness(1); clip-path: inset(0 0 0 0); opacity: 1; transform: scale(1); }
}
.ai-shot-text {
  position: absolute; top: 11%; left: 0; right: 0; text-align: center; padding: 0 20px; z-index: 2;
  font-family: var(--font-script); color: #fff; font-size: clamp(1.6rem, 5.4vw, 2.5rem); line-height: 1.05;
  text-shadow: 0 2px 10px rgba(0,0,0,.55), 0 0 24px rgba(56,225,240,.4); pointer-events: none;
}
.ai-shot-cap {
  position: absolute; left: 14px; right: 14px; bottom: 14px; z-index: 2; color: #fff;
  font-size: .85rem; font-weight: 600; letter-spacing: .01em; display: flex; gap: 6px; align-items: center; flex-wrap: wrap;
  background: rgba(0,0,0,.32); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.16); padding: 9px 13px; border-radius: 12px;
}
.ai-shot-cap strong { color: var(--neon-cyan); font-weight: 700; }

/* actions */
.ai-result-actions { display: flex; gap: 12px; margin: 22px auto 0; max-width: 460px; flex-wrap: wrap; }
.ai-result-actions[hidden] { display: none; }
.ai-result-actions .btn { justify-content: center; }
/* primary CTA — full width, prominent, with a slow sheen sweep */
.ai-result-actions #aiOrderBtn {
  flex: 1 1 100%; padding: 1.16em 1.6em; font-size: 1.06rem; letter-spacing: 0.01em;
  --bg: linear-gradient(135deg, #29E27E 0%, #14B8A0 55%, var(--wa-dark) 100%);
  box-shadow: 0 18px 40px -16px rgba(20,184,160,0.6), inset 0 1px 0 rgba(255,255,255,0.35);
  overflow: hidden;
}
.ai-result-actions #aiOrderBtn svg { width: 1.3em; height: 1.3em; }
.ai-result-actions #aiOrderBtn::after {
  content: ""; position: absolute; top: 0; bottom: 0; left: -60%; width: 45%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.5), transparent);
  transform: skewX(-18deg); animation: waSheen 4.2s var(--ease-soft) 1.4s infinite;
}
.ai-result-actions #aiOrderBtn:hover { box-shadow: 0 24px 52px -16px rgba(20,184,160,0.7), inset 0 1px 0 rgba(255,255,255,0.4); }
@keyframes waSheen { 0% { left: -60%; } 22%, 100% { left: 130%; } }
/* secondary actions — share the row below */
.ai-result-actions .btn-ghost { flex: 1 1 0; min-width: 150px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.22); color: #fff; }
.ai-result-actions .btn-ghost:hover { background: rgba(255,255,255,0.12); }
.btn:disabled, .btn[disabled] { opacity: 0.45; cursor: not-allowed; pointer-events: none; box-shadow: none; transform: none; }

/* AI — limit reached (polished state) */
.ai-limit { text-align: center; max-width: 32ch; padding: 30px 22px; animation: aiReveal .5s var(--ease) both; }
.ai-limit-orb {
  width: 92px; height: 92px; margin: 0 auto 22px; border-radius: 50%; display: grid; place-items: center; position: relative;
  background: radial-gradient(circle at 50% 35%, rgba(56,225,240,.22), rgba(56,225,240,.05) 70%);
  box-shadow: inset 0 0 0 1px rgba(56,225,240,.35), 0 0 42px -6px rgba(56,225,240,.45);
}
.ai-limit-orb::after { content: ""; position: absolute; inset: -7px; border-radius: 50%; border: 1px dashed rgba(56,225,240,.35); animation: spin 14s linear infinite; }
.ai-limit-orb svg { width: 40px; height: 40px; color: var(--neon-cyan); }
.ai-limit h3 { color: #fff; font-family: var(--font-display); font-weight: 600; font-size: clamp(1.5rem, 3.4vw, 2.05rem); margin: 0 0 10px; }
.ai-limit p { color: rgba(255,255,255,.74); font-size: .96rem; line-height: 1.6; margin: 0 auto; max-width: 30ch; }
.ai-limit p.muted { color: rgba(255,255,255,.5); font-size: .9rem; margin-top: 14px; }
.ai-limit .renew { display: inline-flex; align-items: center; gap: 7px; margin-top: 16px; font-size: .76rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--neon-cyan); }
.ai-limit .renew svg { width: 15px; height: 15px; }
.ai-limit .btn { margin-top: 22px; }

@media (prefers-reduced-motion: reduce) {
  .ai-result, .ai-shot, .ai-gen .whisk, .ai-gen .whisk-ic svg, .ai-gen-steps span, .ai-gen-title, .ai-shot img, .ai-shot--develop img, .ai-limit-orb::after, .ai-result-actions #aiOrderBtn::after { animation: none !important; }
  .ai-result-actions #aiOrderBtn::after { display: none; }
  .ai-shot--develop img { clip-path: none; filter: none; }
}

/* ============================================================
   VISIT TEASER (homepage → contact) & AI TEASER (homepage → ai)
   ============================================================ */
.teaser { position: relative; overflow: hidden; isolation: isolate; }
.teaser-visit {
  background: linear-gradient(135deg, rgba(26,126,151,0.92), rgba(14,79,96,0.94)), url('../img/neon-greenery.jpg') center/cover fixed;
  color: #fff;
}
.teaser-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(30px,5vw,70px); align-items: center; }
.teaser h2 { color: #fff; font-size: clamp(2rem,4.6vw,3.4rem); }
.teaser p { color: rgba(255,255,255,0.88); margin-top: 14px; max-width: 46ch; font-size: 1.08rem; }
.teaser .mini-info { display: grid; gap: 12px; margin-top: 26px; }
.teaser .mini-info div { display: flex; gap: 12px; align-items: center; font-weight: 600; }
.teaser .mini-info svg { width: 20px; height: 20px; flex: none; color: var(--teal-200); }
.teaser-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.teaser-card-stack { position: relative; aspect-ratio: 4/5; }
.teaser-card-stack img { position: absolute; border-radius: var(--r-lg); box-shadow: var(--sh-xl); object-fit: cover; }
.teaser-card-stack img:nth-child(1) { width: 72%; height: 72%; top: 0; right: 0; }
.teaser-card-stack img:nth-child(2) { width: 60%; height: 56%; bottom: 0; left: 0; border: 5px solid var(--ink); }

/* ============================================================
   i18n visibility
   ============================================================ */
[data-en] .lang-en { display: none; }
html[lang="en"] .lang-tr { display: none; }
html[lang="en"] .lang-en { display: initial; }
body.lang-switching [data-tr] {
  transition: opacity .16s ease, filter .16s ease, transform .18s var(--ease);
  will-change: opacity, filter, transform;
}
body.lang-switch-out [data-tr] {
  opacity: 0.18;
  filter: blur(3px);
  transform: translateY(5px);
}
body.lang-switch-in [data-tr] {
  animation: langTextIn .42s var(--ease) both;
}
body.lang-switching .lang-toggle {
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.75), 0 16px 38px -22px rgba(15,60,72,0.7);
}
body.lang-switching::after {
  content: "";
  position: fixed;
  z-index: 220;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0%, transparent 36%, rgba(255,255,255,0.32) 48%, transparent 60%, transparent 100%);
  transform: translateX(-115%);
  animation: langSweep .58s var(--ease) both;
}
@keyframes langTextIn {
  from { opacity: 0; filter: blur(4px); transform: translateY(-4px); }
  to { opacity: 1; filter: blur(0); transform: translateY(0); }
}
@keyframes langSweep {
  to { transform: translateX(115%); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .intro-grid, .split, .ai-wrap, .contact-grid { grid-template-columns: 1fr; }
  .split.rev .split-text { order: 0; }
  .builder-stage { grid-template-columns: 1fr; }
  .builder-copy { display: none; }
  .dessert-grid > * { grid-column: span 6 !important; }
  .card-wide { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr 1fr; }
  .menu-list { column-count: 2; }
  .menu-feature { grid-template-columns: 1fr; }
  .menu-feature .mf-body { padding: 0 clamp(20px,4vw,30px) clamp(24px,4vw,34px); }
  .ai-card-grid { grid-template-columns: 1fr; }
  .ai-card-preview { border-left: none; border-top: 1px solid rgba(255,255,255,0.1); }
  .teaser-grid { grid-template-columns: 1fr; }
  .teaser-card-stack { max-width: 360px; }
}
@media (max-width: 720px) {
  :root {
    --mobile-chrome-top: max(14px, calc(env(safe-area-inset-top, 0px) + 12px));
    --mobile-chrome-size: 52px;
    --mobile-tabs-top: calc(var(--mobile-chrome-top) + var(--mobile-chrome-size) + 8px);
  }
  .brand-mark {
    top: var(--mobile-chrome-top);
    left: max(18px, var(--gutter));
    z-index: 120;
    width: min(142px, calc(100vw - 188px));
    height: 42px;
    overflow: visible;
  }
  .brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
  }
  .brand-mark .logo-solid {
    width: 100%;
    height: 100%;
  }
  .dock {
    top: var(--mobile-chrome-top);
    right: max(18px, var(--gutter));
    z-index: 120;
    gap: 8px;
  }
  .dock .lang-toggle {
    display: flex;
    padding: 3px;
    font-size: 0.72rem;
    background: rgba(255,255,255,0.76);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.74), 0 12px 30px -20px rgba(15,60,72,0.72);
  }
  .dock .lang-toggle::before {
    top: 3px; bottom: 3px; left: 3px;
    width: calc(50% - 3px);
  }
  .dock .lang-toggle button {
    min-width: 30px;
    padding: 0.34em 0.56em;
  }
  .menu-orb {
    width: var(--mobile-chrome-size);
    height: var(--mobile-chrome-size);
    background: rgba(255,255,255,0.72);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.72), 0 12px 26px -18px rgba(8,34,42,0.62);
  }
  .ai-page .ai-soon {
    position: relative;
    isolation: isolate;
    max-width: 360px;
    margin-inline: auto;
    margin-top: calc(var(--mobile-chrome-top) + var(--mobile-chrome-size) + 22px);
    padding: 30px 18px 32px;
  }
  .ai-page .ai-soon::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: 28px;
    background:
      linear-gradient(180deg, rgba(9,31,38,0.58), rgba(9,31,38,0.42)),
      rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.18);
    -webkit-backdrop-filter: blur(18px) saturate(145%);
    backdrop-filter: blur(18px) saturate(145%);
    box-shadow: 0 30px 70px -36px rgba(0,0,0,0.7), inset 0 1px 0 rgba(255,255,255,0.18);
  }
  .ai-page .ai-soon > * {
    position: relative;
    z-index: 1;
  }
  .ai-page .ai-hero h1 {
    text-shadow: 0 4px 24px rgba(0,0,0,0.62), 0 1px 2px rgba(0,0,0,0.45);
  }
  .ai-page .ai-hero p {
    color: rgba(255,255,255,0.92);
    text-shadow: 0 2px 14px rgba(0,0,0,0.48);
  }
  .ai-page .ai-soon .ai-soon-sub { color: rgba(255,255,255,0.78); }
  .atelier {
    background-attachment: scroll;
  }
  .atelier.section-pad {
    padding-block: 58px 66px;
  }
  .atelier-grid {
    gap: 24px;
  }
  .atelier-copy {
    text-align: center;
    padding: 24px 18px;
    border-radius: 28px;
    background: rgba(8,40,50,0.26);
    border: 1px solid rgba(255,255,255,0.16);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    box-shadow: 0 28px 58px -38px rgba(0,0,0,0.7);
  }
  .atelier-copy .eyebrow {
    justify-content: center;
    letter-spacing: 0.18em;
  }
  .atelier-copy .eyebrow::after {
    content: "";
    width: 26px; height: 2px;
    background: linear-gradient(90deg, var(--teal-200), var(--coral-400));
    border-radius: 2px;
  }
  .atelier-copy .section-title {
    font-size: clamp(2rem, 10vw, 2.7rem);
    max-width: 11ch;
    margin-inline: auto;
  }
  .atelier-copy .lead {
    margin-inline: auto;
    font-size: 0.98rem;
    line-height: 1.62;
  }
  .atelier-tags {
    justify-content: center;
    margin: 18px 0 22px;
  }
  .atelier-tags span {
    font-size: 0.78rem;
    padding: 5px 11px;
  }
  .atelier-cta {
    justify-content: center;
  }
  .atelier-cta .btn {
    width: min(100%, 292px);
    min-height: 54px;
  }
  .atelier-photos {
    width: min(100%, 360px);
    max-width: none;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "hero hero"
      "a b";
    gap: 12px;
    padding: 10px;
    border-radius: 30px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.18);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 34px 70px -42px rgba(0,0,0,0.78);
  }
  .atelier-photos .ap {
    border-radius: 22px;
    box-shadow: 0 18px 32px -22px rgba(0,0,0,0.72);
  }
  .atelier-photos .ap-hero {
    grid-area: hero;
    aspect-ratio: 16 / 11;
  }
  .atelier-photos .ap-a,
  .atelier-photos .ap-b {
    aspect-ratio: 1 / 0.86;
  }
  .atelier-photos .ap-a { grid-area: a; }
  .atelier-photos .ap-b { grid-area: b; }
  .atelier-photos .cc-badge {
    top: 12px;
    left: 12px;
    padding: 6px 13px 8px;
  }
  .atelier-photos .cc-badge .script { font-size: 1.28rem; }
  .menu-list { column-count: 1; }
  body.menu-page::before {
    content: "";
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--mobile-tabs-top);
    z-index: 64;
    pointer-events: none;
    background: rgba(252,248,241,0.9);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
    backdrop-filter: blur(18px) saturate(150%);
    border-bottom: 1px solid rgba(21,51,59,0.08);
    box-shadow: 0 18px 34px -28px rgba(15,60,72,0.55);
    transform: translateY(0);
    opacity: 0;
    transition: transform .36s var(--ease), opacity .28s var(--ease);
  }
  body.menu-page.menu-chrome-solid::before { opacity: 1; }
  body.menu-page .brand-mark,
  body.menu-page .dock { transition: transform .36s var(--ease), opacity .26s var(--ease); }
  body.menu-page.menu-chrome-hidden::before { transform: translateY(-105%); opacity: 0; }
  body.menu-page.menu-chrome-hidden .brand-mark,
  body.menu-page.menu-chrome-hidden .dock { transform: translateY(-116px); opacity: 0; pointer-events: none; }
  body.menu-page.menu-open::before { transform: translateY(0); opacity: 1; }
  body.menu-page.menu-open .brand-mark,
  body.menu-page.menu-open .dock { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .menu-tabs {
    top: var(--mobile-tabs-top);
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 10px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    padding: 10px max(18px, var(--gutter)) 11px;
    background:
      linear-gradient(90deg, rgba(252,248,241,1), rgba(252,248,241,0) 26px, rgba(252,248,241,0) calc(100% - 26px), rgba(252,248,241,1)),
      rgba(250,249,247,0.94);
    border-top: 1px solid rgba(255,255,255,0.82);
    border-bottom: 1px solid rgba(21,51,59,0.08);
    box-shadow: 0 16px 28px -24px rgba(15,60,72,0.5);
    scrollbar-width: none;
  }
  body.menu-page.menu-chrome-hidden .menu-tabs { top: 0; }
  .menu-tabs::-webkit-scrollbar { display: none; }
  .menu-tabs::after {
    content: "";
    flex: 0 0 16px;
  }
  .menu-tab {
    flex: 0 0 auto;
    scroll-snap-align: start;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.66em 1.12em;
    font-size: 0.82rem;
    line-height: 1.1;
    color: var(--teal-800);
    background: rgba(255,255,255,0.74);
    border-color: rgba(21,51,59,0.09);
    box-shadow: 0 8px 20px -18px rgba(15,60,72,0.45);
  }
  .menu-tab.active {
    background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 14px 28px -16px rgba(26,126,151,0.72);
  }
  .menu-wrap > .menu-group:first-child { display: none; }
  .menu-wrap > .menu-cat:first-of-type { padding-top: 22px; }
  .menu-cat-head {
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
  }
  .menu-cat-head .mh-l { flex: 1 1 0; min-width: 0; }
  .menu-cat-head h2 { font-size: 1.52rem; }
  .menu-cat-head h2 .num { margin-bottom: 4px; }
  .menu-cat-head h2::after { width: 46px; height: 2px; margin-top: 10px; }
  .menu-cat-head .mc-thumb {
    width: clamp(74px, 22vw, 92px);
    border-width: 3px;
  }
  .menu-group, .menu-cat { scroll-margin-top: 138px; }
  .dish-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .g-wide { grid-column: span 2; }
  .dessert-grid > * { grid-column: span 12 !important; }
  .contact-actions { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr; }
  .stat-row { gap: 22px; }
  .hero-cta .btn { flex: 1 1 auto; }
}
@media (max-width: 420px) {
  .dish-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
/* ============================================================
   TWEAKS — mood / type / depth levers
   ============================================================ */
:root { --depth: 0.55; }

/* Atmosphere themes */
body.mood-warm  { --vanilla-50:#FBF2E6; --vanilla-100:#F5E7D5; --vanilla-200:#EAD8BE; --cream:#F8EFE0; }
body.mood-warm  .section-title em { color: var(--coral-600); }
body.mood-warm  .eyebrow { color: var(--coral-600); }

body.mood-luxe  { --vanilla-50:#F3EEE4; --vanilla-100:#EBE2D2; --vanilla-200:#DDD0B8; }
body.mood-luxe  .eyebrow { color: var(--gold-500); }
body.mood-luxe  .section-title em { color: var(--gold-500); }
body.mood-luxe  .eyebrow::before { background: linear-gradient(90deg, var(--gold-500), var(--teal-500)); }

/* Heading character */
body.type-modern h1, body.type-modern h2, body.type-modern h3 {
  font-family: var(--font-body); font-weight: 800; letter-spacing: -0.025em;
}
body.type-butik h1, body.type-butik h2, body.type-butik h3 { font-style: italic; }
body.type-butik .section-title em { font-style: italic; }

/* Depth — scales soft drop-shadow on key surfaces */
.cake-card, .dish-card, .menu-feature, .contact-card, .map-card,
.intro-visual .ph, .split-media .frame, .ai-card, .teaser-card-stack img, .g-item {
  filter: drop-shadow(0 calc(22px * var(--depth)) calc(40px * var(--depth)) rgba(15,60,72, calc(0.22 * var(--depth))));
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .layer { opacity: 1 !important; transform: translate(-50%, 0) !important; }
  .topper { opacity: 1 !important; transform: translate(-50%, -40px) scale(1) !important; }
}

/* ============================================================
   SSS / FAQ
   ============================================================ */
.faq { background: linear-gradient(180deg, var(--vanilla-50), var(--vanilla-100)); }
.faq-list { max-width: 780px; margin: clamp(30px, 4vw, 48px) auto 0; display: grid; gap: 12px; }
.faq-item {
  background: var(--paper); border: 1px solid var(--line-soft);
  border-radius: var(--r-md); box-shadow: var(--sh-xs); overflow: hidden;
  transition: box-shadow .3s var(--ease);
}
.faq-item[open] { box-shadow: var(--sh-sm); }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 16px 20px;
  font-family: var(--font-display); font-weight: 600; font-size: clamp(1rem, 2.2vw, 1.14rem);
  color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 14px;
  overflow-wrap: anywhere;
  transition: color .25s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; flex: none; font-size: 1.45rem; line-height: 1; font-weight: 400;
  color: var(--teal-600); transition: transform .25s var(--ease);
}
.faq-item[open] summary::after { content: "−"; }
.faq-item summary:hover { color: var(--teal-700); }
.faq-a { padding: 0 20px 18px; color: var(--ink-soft); line-height: 1.65; font-size: 0.98rem; max-width: 64ch; }
