/* ============================================================
   SADE CAFE — Kurumsal site stil dosyası
   Palet: kömür siyahı · krem · pirinç sarısı
   ============================================================ */

/* ── Değişkenler ─────────────────────────────────────────── */
:root {
  --ink:        #14110F;
  --ink-2:      #1C1815;
  --ink-3:      #262019;
  --cream:      #F4EFE6;
  --cream-2:    #E7DECF;
  --paper:      #FBF8F3;
  --gold:       #C8A16B;
  --gold-soft:  #E2CBA4;
  --muted:      #8C8377;
  --muted-dark: rgba(244, 239, 230, .56);
  --line:       rgba(20, 17, 15, .12);
  --line-dark:  rgba(244, 239, 230, .14);

  --font-display: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  --font-sans:    'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --wrap:    1220px;
  --gutter:  clamp(20px, 5vw, 56px);
  --section: clamp(72px, 10vw, 136px);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ── Sıfırlama ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }

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

/* Klavye odak halkası */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── Yardımcılar ─────────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section); }
.section--tight { padding-block: clamp(48px, 7vw, 88px); }

.section--dark {
  background: var(--ink);
  color: var(--cream);
}
.section--ink2 { background: var(--ink-2); color: var(--cream); }
.section--cream { background: var(--cream); }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 50%; top: -100px; transform: translateX(-50%);
  background: var(--ink); color: var(--cream);
  padding: 12px 22px; z-index: 999; transition: top .2s;
}
.skip-link:focus { top: 12px; }

/* ── Tipografi ───────────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 22px;
}
.section--dark .eyebrow, .section--ink2 .eyebrow { color: var(--gold-soft); }

.display {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: .01em;
  margin: 0 0 24px;
  font-size: clamp(32px, 4.6vw, 62px);
}
.display--lg { font-size: clamp(38px, 6.4vw, 86px); }
.display em { font-style: italic; color: var(--gold); }

h2.display, h3.display { text-wrap: balance; }

.lede {
  font-size: clamp(16px, 1.55vw, 19px);
  line-height: 1.85;
  color: var(--muted);
  max-width: 62ch;
  margin: 0 0 32px;
  font-weight: 300;
}
.section--dark .lede, .section--ink2 .lede { color: var(--muted-dark); }

p { margin: 0 0 20px; }
p:last-child { margin-bottom: 0; }

.rule {
  width: 52px; height: 1px;
  background: var(--gold);
  border: 0; margin: 0 0 28px;
}
.rule--center { margin-inline: auto; }

.center { text-align: center; }
.center .lede { margin-inline: auto; }

/* ── Butonlar ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--cream);
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .2s var(--ease);
  white-space: nowrap;
}
.btn:hover { background: transparent; color: var(--ink); }
.btn:active { transform: translateY(1px); }

.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--cream); }

.btn--light { background: var(--cream); border-color: var(--cream); color: var(--ink); }
.btn--light:hover { background: transparent; color: var(--cream); }

.btn--outline-light { background: transparent; border-color: rgba(244,239,230,.4); color: var(--cream); }
.btn--outline-light:hover { background: var(--cream); border-color: var(--cream); color: var(--ink); }

.btn--gold { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.btn--gold:hover { background: transparent; color: var(--gold); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row--center { justify-content: center; }

/* ── Logo kilidi ─────────────────────────────────────────── */
.logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  line-height: 1;
}
.logo__mark { width: 30px; height: auto; }
.logo__mark path { stroke: currentColor; }
.logo__word {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 21px;
  letter-spacing: .34em;
  text-indent: .34em;
}
.logo__sub {
  display: flex; align-items: center; gap: 8px;
  font-size: 8.5px; letter-spacing: .44em; text-indent: .44em;
  font-weight: 300; opacity: .9;
}
.logo__sub::before, .logo__sub::after {
  content: ''; display: block; width: 18px; height: 1px;
  background: currentColor; opacity: .6;
}

.logo--lg .logo__mark { width: 52px; }
.logo--lg .logo__word { font-size: clamp(36px, 6vw, 58px); letter-spacing: .3em; text-indent: .3em; }
.logo--lg .logo__sub { font-size: clamp(10px, 1.3vw, 13px); }
.logo--lg .logo__sub::before, .logo--lg .logo__sub::after { width: clamp(24px, 4vw, 44px); }

/* ── Üst menü ────────────────────────────────────────────── */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 20px var(--gutter);
  color: var(--cream);
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease), color .4s var(--ease);
}
.nav::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to bottom, rgba(20,17,15,.72), rgba(20,17,15,0));
  opacity: 1; transition: opacity .4s var(--ease);
}
.nav.is-stuck {
  background: rgba(20,17,15,.94);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  padding-block: 12px;
  box-shadow: 0 1px 0 rgba(244,239,230,.1);
}
.nav.is-stuck::before { opacity: 0; }

/* Koyu olmayan sayfalarda (hero'suz) */
.nav--solid {
  position: sticky;
  background: var(--ink);
}
.nav--solid::before { opacity: 0; }

.nav__brand { color: inherit; flex-shrink: 0; }

.nav__links {
  display: flex; align-items: center; gap: clamp(18px, 2.4vw, 38px);
}
.nav__link {
  position: relative;
  font-size: 11.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 300;
  padding-block: 6px;
  opacity: .82;
  transition: opacity .25s;
}
.nav__link::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease);
}
.nav__link:hover { opacity: 1; }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav__link.is-active { opacity: 1; }

.nav__cta {
  padding: 11px 22px;
  border: 1px solid rgba(244,239,230,.34);
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s;
}
.nav__cta:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }

/* Hamburger */
.nav__toggle {
  display: none;
  width: 42px; height: 42px;
  background: none; border: 0; padding: 0;
  color: inherit;
  position: relative; z-index: 120;
}
.nav__toggle span {
  position: absolute; left: 9px; width: 24px; height: 1px;
  background: currentColor; transition: transform .35s var(--ease), opacity .25s;
}
.nav__toggle span:nth-child(1) { top: 16px; }
.nav__toggle span:nth-child(2) { top: 21px; }
.nav__toggle span:nth-child(3) { top: 26px; }
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav__toggle { display: block; }
  .nav__menu {
    position: fixed; inset: 0;
    background: var(--ink);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 6px;
    opacity: 0; visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .38s var(--ease), transform .38s var(--ease), visibility .38s;
  }
  .nav.is-open .nav__menu { opacity: 1; visibility: visible; transform: none; }
  .nav__links { flex-direction: column; gap: 4px; }
  .nav__link { font-size: 15px; letter-spacing: .24em; padding: 14px 0; }
  .nav__link::after { display: none; }
  .nav__cta { margin-top: 26px; font-size: 12px; padding: 15px 34px; }
  body.nav-open { overflow: hidden; }
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--cream);
  background: var(--ink);
  overflow: hidden;
  padding: 130px var(--gutter) 90px;
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.06);
  animation: heroZoom 18s var(--ease) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }

.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 45%, rgba(20,17,15,.42), rgba(20,17,15,.88) 75%),
    linear-gradient(to bottom, rgba(20,17,15,.7), rgba(20,17,15,.35) 35%, rgba(20,17,15,.92));
}
/* Görsel yokken: sıcak ışıklı degrade */
.hero__bg--fallback {
  background:
    radial-gradient(circle at 50% 38%, rgba(200,161,107,.22), transparent 58%),
    radial-gradient(circle at 12% 88%, rgba(200,161,107,.12), transparent 48%),
    linear-gradient(160deg, #1C1815 0%, #14110F 55%, #0E0C0A 100%);
}
.hero__bg--fallback::after { background: none; }

.hero__inner { position: relative; z-index: 2; max-width: 780px; }

.hero__logo { margin-bottom: 34px; }

.hero__slogan {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2.7vw, 30px);
  color: var(--gold-soft);
  margin: 0 0 18px;
  letter-spacing: .01em;
}

.hero__text {
  color: rgba(244,239,230,.72);
  font-size: clamp(14.5px, 1.4vw, 17px);
  line-height: 1.85;
  max-width: 52ch;
  margin: 0 auto 40px;
}

.hero__status {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(244,239,230,.68);
  margin-bottom: 26px;
}
.hero__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #5FA86B; box-shadow: 0 0 0 0 rgba(95,168,107,.6);
  animation: pulse 2.4s infinite;
}
.hero__dot--closed { background: #B4564E; animation: none; }
@keyframes pulse {
  70%  { box-shadow: 0 0 0 9px rgba(95,168,107,0); }
  100% { box-shadow: 0 0 0 0 rgba(95,168,107,0); }
}

.hero__scroll {
  position: absolute; left: 50%; bottom: 34px; z-index: 2;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 9.5px; letter-spacing: .3em; text-transform: uppercase;
  color: rgba(244,239,230,.5);
}
.hero__scroll i {
  display: block; width: 1px; height: 44px;
  background: linear-gradient(to bottom, rgba(244,239,230,.5), transparent);
  animation: scrollLine 2.2s var(--ease) infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  45%  { transform: scaleY(1); transform-origin: top; }
  55%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Sayfa başlığı (iç sayfalar) */
.pagehead {
  position: relative;
  background: var(--ink);
  color: var(--cream);
  padding: clamp(140px, 17vw, 200px) var(--gutter) clamp(60px, 8vw, 92px);
  text-align: center;
  overflow: hidden;
}
.pagehead::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(200,161,107,.16), transparent 62%),
    linear-gradient(170deg, #1C1815, #14110F);
}
.pagehead__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .32;
}
.pagehead__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(20,17,15,.55), rgba(20,17,15,.9));
}
.pagehead > * { position: relative; z-index: 2; }
.pagehead .display { margin-bottom: 14px; }
.pagehead .lede { margin-inline: auto; color: rgba(244,239,230,.66); }

.crumbs {
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(244,239,230,.45);
  display: flex; justify-content: center; flex-wrap: wrap; gap: 8px;
  margin-top: 26px;
}
.crumbs a { transition: color .25s; }
.crumbs a:hover { color: var(--gold); }
.crumbs span { opacity: .45; }

/* ── İkili bölüm ─────────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
}
.split--reverse .split__media { order: 2; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
}

.split__media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--ink-2);
  overflow: hidden;
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__media--wide { aspect-ratio: 5 / 4; }

.split__badge {
  position: absolute; right: -1px; bottom: -1px;
  background: var(--ink); color: var(--cream);
  padding: 22px 28px; text-align: center;
  max-width: 62%;
}
.split__badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 30px; font-weight: 300; line-height: 1;
  color: var(--gold);
}
.split__badge span {
  display: block; margin-top: 8px;
  font-size: 9.5px; letter-spacing: .24em; text-transform: uppercase;
  color: rgba(244,239,230,.6);
}

/* ── Değerler / özellik kartları ─────────────────────────── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.section--dark .grid-3, .section--ink2 .grid-3 {
  background: var(--line-dark); border-color: var(--line-dark);
}

.feature {
  background: var(--paper);
  padding: clamp(30px, 3.6vw, 48px);
  transition: background .4s var(--ease);
}
.section--cream .feature { background: var(--cream); }
.section--dark .feature, .section--ink2 .feature { background: var(--ink); }
.section--ink2 .feature { background: var(--ink-2); }
.feature:hover { background: var(--cream-2); }
.section--dark .feature:hover, .section--ink2 .feature:hover { background: var(--ink-3); }

.feature__no {
  font-family: var(--font-display);
  font-size: 13px; letter-spacing: .1em;
  color: var(--gold);
  margin-bottom: 20px;
}
.feature h3 {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 400; line-height: 1.3;
  margin: 0 0 12px;
}
.feature p {
  font-size: 14.5px; line-height: 1.8; color: var(--muted); margin: 0;
}
.section--dark .feature p, .section--ink2 .feature p { color: var(--muted-dark); }

.feature__icon { width: 30px; height: 30px; margin-bottom: 22px; color: var(--gold); }
.feature__icon path { stroke: currentColor; }

/* ── Öne çıkanlar ────────────────────────────────────────── */
.picks {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(264px, 1fr));
  gap: clamp(24px, 3vw, 40px);
}

.pick { display: block; }
.pick__media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--cream-2);
  margin-bottom: 20px;
}
.pick__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease);
}
.pick:hover .pick__media img { transform: scale(1.055); }
.pick__media--empty {
  display: grid; place-items: center;
  background: linear-gradient(150deg, var(--cream-2), var(--cream));
  color: var(--gold);
}
.pick__media--empty svg { width: 46px; opacity: .55; }
.section--dark .pick__media--empty, .section--ink2 .pick__media--empty {
  background: linear-gradient(150deg, var(--ink-3), var(--ink-2));
}

.pick__cat {
  font-size: 10px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 9px;
}
.pick__name {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 400; line-height: 1.25;
  margin: 0 0 8px;
}
.pick__desc {
  font-size: 14px; line-height: 1.75; color: var(--muted); margin: 0 0 12px;
}
.section--dark .pick__desc, .section--ink2 .pick__desc { color: var(--muted-dark); }
.pick__price {
  font-size: 14px; letter-spacing: .06em; color: var(--gold);
}

/* ── Menü listesi ────────────────────────────────────────── */
.menu-nav {
  position: sticky; top: 66px; z-index: 40;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  margin-bottom: clamp(40px, 6vw, 72px);
}
.menu-nav__scroll {
  display: flex; gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-block: 14px;
  -webkit-overflow-scrolling: touch;
}
.menu-nav__scroll::-webkit-scrollbar { display: none; }
.menu-nav__item {
  flex-shrink: 0;
  padding: 9px 18px;
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted);
  border: 1px solid transparent;
  transition: color .25s, border-color .25s, background .25s;
  white-space: nowrap;
}
.menu-nav__item:hover { color: var(--ink); border-color: var(--line); }
.menu-nav__item.is-active { color: var(--ink); border-color: var(--ink); }

.menu-cat { margin-bottom: clamp(56px, 8vw, 96px); scroll-margin-top: 130px; }
.menu-cat:last-child { margin-bottom: 0; }

.menu-cat__head {
  display: flex; align-items: baseline; gap: 20px;
  margin-bottom: 8px;
}
.menu-cat__head h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(27px, 3.4vw, 40px);
  margin: 0; white-space: nowrap;
}
.menu-cat__head::after {
  content: ''; flex: 1; height: 1px; background: var(--line);
}
.menu-cat__desc {
  color: var(--muted); font-size: 14.5px; margin: 0 0 34px; max-width: 60ch;
}

.menu-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 4px clamp(32px, 5vw, 72px); }

.menu-item {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.menu-item__thumb {
  width: 76px; height: 76px; flex-shrink: 0;
  object-fit: cover; background: var(--cream-2);
}
.menu-item__body { flex: 1; min-width: 0; }
.menu-item__top {
  display: flex; align-items: baseline; gap: 12px;
}
.menu-item__name {
  font-family: var(--font-display);
  font-size: 19px; font-weight: 500; line-height: 1.3;
  margin: 0;
}
.menu-item__dots {
  flex: 1; height: 1px; min-width: 16px;
  background-image: linear-gradient(to right, var(--line) 33%, transparent 0);
  background-size: 6px 1px; background-repeat: repeat-x;
  transform: translateY(-4px);
}
.menu-item__price {
  font-size: 15px; font-weight: 400; white-space: nowrap; letter-spacing: .02em;
}
.menu-item__desc {
  font-size: 13.5px; line-height: 1.7; color: var(--muted); margin: 6px 0 0;
}
.menu-item__variants {
  display: flex; flex-wrap: wrap; gap: 6px 16px; margin-top: 9px;
  font-size: 12.5px; color: var(--muted);
}
.menu-item__variants b { font-weight: 400; color: var(--ink); }

.badges { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 9.5px; letter-spacing: .12em; text-transform: uppercase;
  padding: 4px 9px;
  border: 1px solid var(--line);
  color: var(--muted);
  border-radius: 2px;
}
.badge.b-chef  { border-color: rgba(200,161,107,.5); color: #9C7A3E; }
.badge.b-new   { border-color: rgba(200,161,107,.5); color: #9C7A3E; }
.badge.b-vegan { border-color: rgba(95,138,84,.4);  color: #5A7D4F; }
.badge.b-gf    { border-color: rgba(120,120,120,.35); }
.badge.b-hot   { border-color: rgba(178,74,62,.4);  color: #A8493D; }

/* ── Galeri ──────────────────────────────────────────────── */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 4px;
}
.gallery__item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--ink-2);
  cursor: zoom-in;
}
.gallery__item:nth-child(6n+1) { grid-column: span 2; aspect-ratio: 2 / 1; }
@media (max-width: 700px) {
  .gallery__item:nth-child(6n+1) { grid-column: span 1; aspect-ratio: 1 / 1; }
}
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s var(--ease), opacity .4s;
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(20,17,15,.28);
  opacity: 0; transition: opacity .4s var(--ease);
}
.gallery__item:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(14,12,10,.96);
  display: grid; place-items: center;
  padding: 24px;
  opacity: 0; visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(1100px, 94vw); max-height: 88vh; object-fit: contain; }
.lightbox__close {
  position: absolute; top: 20px; right: 24px;
  width: 44px; height: 44px;
  background: none; border: 1px solid rgba(244,239,230,.3);
  color: var(--cream); font-size: 20px; line-height: 1;
}
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  background: none; border: 1px solid rgba(244,239,230,.25);
  color: var(--cream); font-size: 18px;
}
.lightbox__nav--prev { left: 20px; }
.lightbox__nav--next { right: 20px; }

/* ── Alıntı bandı ────────────────────────────────────────── */
.quote {
  text-align: center;
  max-width: 820px; margin-inline: auto;
}
.quote blockquote {
  font-family: var(--font-display);
  font-weight: 300; font-style: italic;
  font-size: clamp(23px, 3.3vw, 40px);
  line-height: 1.45;
  margin: 0 0 26px;
}
.quote cite {
  font-style: normal; font-size: 10.5px;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold-soft);
}

/* ── Bilgi satırı (saat / adres / telefon) ───────────────── */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(28px, 4vw, 56px);
}
.info h3 {
  font-size: 10.5px; letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold); font-weight: 400; margin: 0 0 16px;
}
.info p, .info li { font-size: 15px; line-height: 1.85; margin: 0; }
.info a:hover { color: var(--gold); }

.hours-list li {
  display: flex; justify-content: space-between; gap: 18px;
  padding: 7px 0;
  border-bottom: 1px solid var(--line-dark);
  font-size: 14px;
}
.hours-list li:last-child { border-bottom: 0; }
.hours-list .day { color: rgba(244,239,230,.82); }
.hours-list .time { color: var(--gold-soft); white-space: nowrap; }
.hours-list li.is-today .day { color: var(--cream); }
.hours-list li.is-today .time { font-weight: 400; }

/* ── QR bandı ────────────────────────────────────────────── */
.qr-band {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 700px) { .qr-band { grid-template-columns: 1fr; text-align: center; justify-items: center; } }

.qr-card {
  background: var(--cream);
  padding: 22px;
  width: 200px; height: 200px;
  display: grid; place-items: center;
}
.qr-card img, .qr-card canvas { width: 100%; height: auto; }

/* ── Form ────────────────────────────────────────────────── */
.form { display: grid; gap: 20px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 640px) { .form__row { grid-template-columns: 1fr; } }

.field label {
  display: block;
  font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 9px;
}
.field input, .field textarea, .field select {
  width: 100%;
  font-family: inherit; font-size: 15px; font-weight: 300;
  color: var(--ink);
  background: transparent;
  border: 0; border-bottom: 1px solid var(--line);
  padding: 11px 0;
  transition: border-color .3s;
  border-radius: 0;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-bottom-color: var(--gold);
}
.field textarea { resize: vertical; min-height: 120px; }

.section--dark .field label { color: rgba(244,239,230,.5); }
.section--dark .field input,
.section--dark .field textarea {
  color: var(--cream); border-bottom-color: var(--line-dark);
}

.alert {
  padding: 15px 20px;
  border-left: 2px solid var(--gold);
  background: rgba(200,161,107,.1);
  font-size: 14px;
}
.alert--error { border-color: #B4564E; background: rgba(180,86,78,.09); }

.hp { position: absolute; left: -9999px; opacity: 0; }

/* ── Harita ──────────────────────────────────────────────── */
.map {
  aspect-ratio: 16 / 9;
  background: var(--ink-2);
  filter: grayscale(1) contrast(1.08) brightness(.92);
  transition: filter .6s var(--ease);
}
.map:hover { filter: grayscale(0) contrast(1) brightness(1); }
.map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ── Alt bilgi ───────────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding-block: clamp(56px, 7vw, 88px) 0;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(30px, 4vw, 56px);
  padding-bottom: clamp(44px, 6vw, 68px);
}
@media (max-width: 900px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__top { grid-template-columns: 1fr; } }

.footer__brand .logo { align-items: flex-start; }
.footer__tag {
  font-family: var(--font-display);
  font-style: italic; font-size: 17px;
  color: var(--gold-soft);
  margin: 20px 0 0;
}
.footer h4 {
  font-size: 10.5px; letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold); font-weight: 400; margin: 0 0 18px;
}
.footer li { margin-bottom: 10px; }
.footer a {
  font-size: 14px; color: rgba(244,239,230,.68);
  transition: color .25s;
}
.footer a:hover { color: var(--cream); }

.socials { display: flex; gap: 10px; margin-top: 20px; }
.socials a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid var(--line-dark);
  transition: background .3s, border-color .3s, color .3s;
}
.socials a:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.socials svg { width: 16px; height: 16px; }

.footer__bottom {
  border-top: 1px solid var(--line-dark);
  padding-block: 24px 28px;
  display: flex; flex-wrap: wrap; gap: 14px;
  justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(244,239,230,.42);
}
.footer__bottom a:hover { color: var(--gold); }

/* ── Yüzen QR butonu (mobil) ─────────────────────────────── */
.fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  display: none; align-items: center; gap: 9px;
  padding: 14px 20px;
  background: var(--gold); color: var(--ink);
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(20,17,15,.28);
  border-radius: 40px;
}
@media (max-width: 760px) { .fab { display: inline-flex; } }

/* ── Kaydırma animasyonu ─────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .09s; }
.reveal[data-delay="2"] { transition-delay: .18s; }
.reveal[data-delay="3"] { transition-delay: .27s; }
.reveal[data-delay="4"] { transition-delay: .36s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ── Yazdırma ────────────────────────────────────────────── */
@media print {
  .nav, .footer, .fab, .hero__scroll, .menu-nav { display: none !important; }
  body { background: #fff; color: #000; }
  .section { padding-block: 16px; }
  .menu-item { break-inside: avoid; }
}
