/* Gastro Muğla — statik site (menü estetiğine yakın) */

:root {
  --cream-50: #faf9f6;
  --cream-100: #f5f0e8;
  --gold-100: #f5edd8;
  --gold-200: #e9d5a8;
  --gold-300: #d4bc7f;
  --gold-400: #c5a85a;
  --gold-600: #a67c2a;
  --gold-700: #8a6d2e;
  --gold-800: #6b5422;
  --gold-900: #4a3a18;
  --gold-950: #2d2410;
  --award-red: #b91c1c;
  --stone-50: #fafaf9;
  --stone-500: #78716c;
  --stone-600: #57534e;
  --stone-700: #44403c;
  --stone-800: #292524;
  --stone-900: #1c1917;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  --max: 72rem;
  --header-h: 4.5rem;
  --text-heading: var(--stone-900);
  --btn-solid-bg: var(--stone-900);
  --btn-solid-fg: var(--cream-50);
  --btn-solid-hover: var(--gold-950);
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  min-height: 100vh;
  padding-top: calc(var(--header-h) + env(safe-area-inset-top, 0px));
  display: flex;
  flex-direction: column;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--stone-800);
  background-color: var(--cream-50);
}

@media (prefers-reduced-motion: no-preference) {
  html.theme-transition,
  html.theme-transition *,
  html.theme-transition *::before,
  html.theme-transition *::after {
    transition-property: background-color, background, color, border-color, box-shadow,
      outline-color, text-decoration-color, fill, stroke;
    transition-duration: 0.38s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: inherit;
}

main {
  flex: 1;
}

.skip-link {
  position: absolute;
  left: 0.75rem;
  top: -120px;
  z-index: 100;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  background: var(--stone-900);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
}

.skip-link:focus {
  top: calc(var(--header-h) + env(safe-area-inset-top, 0px) + 0.35rem);
  outline: 2px solid var(--gold-400);
  outline-offset: 2px;
}

.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 45;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid rgb(212 188 127 / 0.55);
  border-radius: 9999px;
  background: rgb(255 255 255 / 0.96);
  color: var(--gold-800);
  cursor: pointer;
  box-shadow: 0 2px 12px rgb(28 25 23 / 0.08);
}

.back-to-top:hover {
  background: var(--cream-100);
  color: var(--gold-950);
}

.back-to-top:focus-visible {
  outline: 2px solid var(--gold-600);
  outline-offset: 2px;
}

/* ——— Tipografi ——— */
.font-display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: 0.01em;
}

/* ——— Üst şerit (sabit; kaydırmada gölgeli geçiş) ——— */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding-top: env(safe-area-inset-top, 0px);
  border-bottom: 1px solid rgb(233 213 168 / 0.6);
  background: rgb(250 249 246 / 0.92);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  backdrop-filter: blur(12px) saturate(1.2);
  box-shadow: 0 0 0 rgb(28 25 23 / 0);
  transition:
    background 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header.is-scrolled {
  background: rgb(250 249 246 / 0.97);
  border-bottom-color: rgb(212 188 127 / 0.55);
  box-shadow:
    0 4px 24px rgb(28 25 23 / 0.07),
    0 1px 0 rgb(233 213 168 / 0.35);
}

.site-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 0.75rem;
  position: relative;
}

@media (min-width: 768px) {
  .site-header__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 0.75rem 1rem;
    justify-content: initial;
  }

  .site-header .brand {
    justify-self: start;
  }

  .site-header .nav {
    justify-self: center;
  }

  .site-header__end {
    justify-self: end;
  }
}

.site-header__end {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}

.site-header__controls {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}

.brand {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1;
  min-width: 0;
}

.brand__small {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-700);
}

@media (min-width: 640px) {
  .brand__small {
    font-size: 0.75rem;
  }
}

.brand__large {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-heading);
  margin-top: 0.15rem;
}

@media (min-width: 640px) {
  .brand__large {
    font-size: 1.5rem;
  }
}

.brand:hover .brand__large {
  color: var(--gold-800);
}

.brand--with-icon {
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand__mark {
  flex-shrink: 0;
  color: var(--gold-800);
}

.brand__mark svg {
  display: block;
  width: 2.25rem;
  height: 2.25rem;
}

@media (min-width: 640px) {
  .brand__mark svg {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 0.375rem;
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--gold-600);
  outline-offset: 2px;
}

.nav-toggle span {
  display: block;
  width: 1.5rem;
  height: 2px;
  background: var(--text-heading);
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }
}

.nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 55;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem 1.25rem 1rem;
  background: var(--cream-50);
  border-bottom: 1px solid var(--gold-200);
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: 0 12px 28px rgb(28 25 23 / 0.08);
}

.nav.is-open {
  display: flex;
}

@media (min-width: 768px) {
  .nav {
    display: flex;
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(0.75rem, 2vw, 1.5rem);
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    z-index: auto;
  }
}

.nav a {
  text-decoration: none;
  padding: 0.4rem 0.5rem;
  border-radius: 0.375rem;
  color: var(--stone-700);
}

.site-header .nav a:hover {
  background: rgb(245 237 216 / 0.75);
  color: var(--stone-900);
}

.site-header .nav a[aria-current="page"] {
  background: rgb(237 222 180 / 0.55);
  color: var(--stone-900);
  font-weight: 600;
  box-shadow: inset 0 0 0 1px rgb(197 168 90 / 0.35);
}

.site-header .nav a[aria-current="page"]:hover {
  background: rgb(232 216 170 / 0.65);
  color: var(--stone-900);
}

.nav a:focus-visible {
  outline: 2px solid var(--gold-600);
  outline-offset: 2px;
}

/* Tema (açık / koyu) — tek hücre grid: ikonlar üst üste, yalnızca biri görünür */
.theme-toggle {
  position: relative;
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid rgb(197 168 90 / 0.45);
  border-radius: 0.5rem;
  background: rgb(255 255 255 / 0.72);
  color: var(--gold-800);
  cursor: pointer;
  flex-shrink: 0;
  overflow: hidden;
}

.theme-toggle:hover {
  border-color: var(--gold-600);
  background: rgb(245 237 216 / 0.65);
  color: var(--gold-950);
}

.theme-toggle:focus-visible {
  outline: 2px solid var(--gold-600);
  outline-offset: 2px;
}

.theme-toggle > svg {
  grid-area: 1 / 1;
  width: 1.2rem;
  height: 1.2rem;
  flex-shrink: 0;
}

/* Açık tema: ay görünsün */
.theme-toggle__icon--moon {
  display: block;
}

.theme-toggle__icon--sun {
  display: none !important;
}

/* Koyu tema: güneş görünsün */
html[data-theme="dark"] .theme-toggle__icon--moon {
  display: none !important;
}

html[data-theme="dark"] .theme-toggle__icon--sun {
  display: block !important;
}

.lang-switch {
  display: inline-flex;
  border: 1px solid rgb(197 168 90 / 0.45);
  border-radius: 0.5rem;
  overflow: hidden;
  flex-shrink: 0;
}

.lang-switch__btn {
  margin: 0;
  padding: 0.4rem 0.55rem;
  border: none;
  background: rgb(255 255 255 / 0.72);
  color: var(--stone-700);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  line-height: 1;
  font-family: inherit;
}

.lang-switch__btn:hover {
  background: rgb(245 237 216 / 0.65);
  color: var(--stone-900);
}

.lang-switch__btn:focus-visible {
  outline: 2px solid var(--gold-600);
  outline-offset: 2px;
}

.lang-switch__btn[aria-pressed="true"] {
  background: rgb(237 222 180 / 0.65);
  color: var(--stone-900);
  box-shadow: inset 0 0 0 1px rgb(197 168 90 / 0.35);
}

html[data-theme="dark"] .lang-switch {
  border-color: rgb(212 188 127 / 0.42);
  box-shadow: 0 0 0 1px rgb(0 0 0 / 0.25);
}

/* --cream-* koyu temada koyu zemine çevrildiği için metin için stone/gold kullan */
html[data-theme="dark"] .lang-switch__btn {
  background: rgb(38 35 32 / 0.92);
  color: var(--stone-700);
}

html[data-theme="dark"] .lang-switch__btn:hover {
  background: rgb(48 44 40 / 0.96);
  color: var(--stone-800);
}

html[data-theme="dark"] .lang-switch__btn[aria-pressed="true"] {
  background: rgb(58 50 38 / 0.92);
  color: var(--gold-800);
  box-shadow: inset 0 0 0 1px rgb(212 188 127 / 0.42);
}

html[data-theme="dark"] .lang-switch__btn:focus-visible {
  outline-color: var(--gold-600);
  outline-offset: 2px;
}

/* ——— Bölüm başlıkları ——— */
.section-head {
  margin-bottom: 0.5rem;
}

.section-head__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin: 0 0 0.5rem;
}

.section-head__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--gold-800);
  margin: 0;
}

.section-head--center {
  text-align: center;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgb(233 213 168 / 0.5);
  background: linear-gradient(to bottom, var(--cream-50), var(--cream-50), rgb(245 240 232 / 0.8));
}

.hero__glow {
  pointer-events: none;
  position: absolute;
  border-radius: 9999px;
  filter: blur(36px);
}

.hero__glow--1 {
  right: -6rem;
  top: 2.5rem;
  width: 18rem;
  height: 18rem;
  background: rgb(233 213 168 / 0.12);
}

.hero__glow--2 {
  left: -4rem;
  bottom: 0;
  width: 16rem;
  height: 16rem;
  background: rgb(254 243 199 / 0.22);
}

.hero__grid {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 4rem 1.25rem;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.hero__text {
  order: 2;
}

.hero__visual {
  order: 1;
}

@media (min-width: 768px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    padding: 6rem 1.5rem;
    gap: 4rem;
  }

  .hero__text {
    order: 1;
  }

  .hero__visual {
    order: 2;
  }
}

.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin: 0 0 0.75rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 700;
  color: var(--gold-900);
  margin: 0;
  line-height: 1.12;
}

.hero__lead {
  margin: 1rem 0 0;
  font-size: 1.125rem;
  color: var(--stone-600);
  max-width: 36rem;
}

@media (min-width: 640px) {
  .hero__lead {
    font-size: 1.25rem;
  }
}

.hero__actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__usp {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgb(233 213 168 / 0.55);
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--stone-600);
  max-width: 36rem;
}

.hero__usp ul {
  margin: 0.35rem 0 0;
  padding-left: 1.2rem;
  list-style: disc;
}

.hero__usp li {
  margin: 0.2rem 0;
}

.hero__usp strong {
  color: var(--gold-800);
  font-weight: 600;
}

/* Kamuya aktarım — açık temada sıcak kahverengimsi zemin */
.public-share-banner {
  background: linear-gradient(
    165deg,
    rgb(245 237 224) 0%,
    rgb(232 218 198) 42%,
    rgb(218 199 172) 100%
  );
  color: var(--stone-800);
  padding: 2rem 1.25rem;
  border-top: 1px solid rgb(197 168 90 / 0.45);
  border-bottom: 1px solid rgb(160 132 94 / 0.28);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.55),
    inset 0 -1px 0 rgb(106 84 52 / 0.06);
}

.public-share-banner__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

@media (min-width: 768px) {
  .public-share-banner__inner {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    text-align: left;
  }
}

.public-share-banner__figure {
  margin: 0;
  line-height: 1;
}

.public-share-banner__pct {
  font-family: var(--font-sans);
  font-size: clamp(3.75rem, 12vw, 6.25rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  display: block;
  color: rgb(90 62 28);
  text-shadow: 0 1px 0 rgb(255 255 255 / 0.35);
}

.public-share-banner__suffix {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgb(107 84 34);
}

.public-share-banner__text {
  margin: 0;
  font-size: clamp(1.0625rem, 2.4vw, 1.4rem);
  line-height: 1.55;
  max-width: 38rem;
  color: rgb(52 48 42);
}

.public-share-banner__text strong {
  font-weight: 700;
  color: rgb(35 32 28);
}

.public-share-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  margin: 2rem 0 0;
  padding: 1.75rem 1.5rem;
  border-radius: 1.25rem;
  border: 1px solid rgb(212 188 127 / 0.55);
  background: linear-gradient(165deg, #fffdf8, var(--cream-100));
  text-align: center;
}

@media (min-width: 640px) {
  .public-share-panel {
    flex-direction: row;
    align-items: center;
    text-align: left;
    padding: 2rem 2rem;
    gap: 2rem;
  }
}

.public-share-panel--in-about {
  margin: 0 0 1.5rem;
  padding: 1.5rem 1.35rem;
}

@media (min-width: 640px) {
  .public-share-panel--in-about {
    padding: 1.65rem 1.75rem;
  }
}

.public-share-panel__num {
  margin: 0;
  flex-shrink: 0;
  font-family: var(--font-sans);
  font-size: clamp(3rem, 8vw, 4.75rem);
  font-weight: 800;
  line-height: 1;
  color: var(--gold-800);
  letter-spacing: -0.03em;
}

.public-share-panel__body {
  flex: 1;
  min-width: 0;
}

.public-share-panel__title {
  margin: 0 0 0.65rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-heading);
  font-family: var(--font-sans);
}

.public-share-panel__lead {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--stone-700);
}

.public-share-panel__lead strong {
  color: var(--gold-900);
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.btn--dark {
  background: var(--btn-solid-bg);
  color: var(--btn-solid-fg);
  box-shadow: 0 10px 25px rgb(28 25 23 / 0.1);
}

.btn--dark:hover {
  background: var(--btn-solid-hover);
}

.btn--outline {
  background: rgb(255 255 255 / 0.6);
  backdrop-filter: blur(6px);
  color: var(--stone-800);
  border: 1px solid rgb(197 168 90 / 0.8);
}

.btn--outline:hover {
  border-color: var(--gold-600);
  background: #fff;
}

.hero__visual {
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) {
  .hero__visual {
    justify-content: flex-end;
  }
}

.hero__figure-wrap {
  position: relative;
  width: 100%;
  max-width: 22rem;
}

.hero__figure-glow {
  position: absolute;
  inset: -0.75rem;
  border-radius: 9999px;
  background: linear-gradient(to bottom right, rgb(212 188 127 / 0.5), rgb(233 213 168 / 0.3), transparent);
  filter: blur(24px);
  pointer-events: none;
}

.hero figure {
  position: relative;
  margin: 0 auto;
  max-width: 20rem;
  aspect-ratio: 4 / 5;
  border-radius: 2.5rem;
  overflow: hidden;
  border: 4px solid rgb(212 188 127 / 0.7);
  box-shadow: 0 25px 50px rgb(28 25 23 / 0.15);
  box-shadow:
    0 0 0 1px rgb(233 213 168 / 0.5),
    0 25px 50px rgb(28 25 23 / 0.15);
}

.hero figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero figcaption {
  margin-top: 1.25rem;
  text-align: center;
}

.hero figcaption strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold-900);
  display: block;
}

.hero figcaption span {
  font-size: 0.875rem;
  color: var(--stone-600);
  margin-top: 0.25rem;
  display: block;
}

/* API hero: görsel en-boyuna göre — dikey (w<h) slayt, yatay/kare tam genişlik + overlay */
.hero__measure-shell {
  position: relative;
  width: 100%;
  min-height: min(65vh, 28rem);
}

.hero__measure-img {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Ana sayfa: API hero slaytları gelene kadar */
.hero--home.hero--loading {
  align-items: center;
}

.hero--loading {
  min-height: min(65vh, 28rem);
}

.hero-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  flex: 1 1 auto;
  min-height: min(65vh, 28rem);
  padding: 3rem 1.25rem;
  box-sizing: border-box;
  margin-inline: auto;
}

.hero-loading__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
}

.hero__wide {
  position: relative;
  width: 100%;
  min-height: calc(100svh - var(--header-h) - env(safe-area-inset-top, 0px));
  min-height: calc(100dvh - var(--header-h) - env(safe-area-inset-top, 0px));
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero__wide-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__wide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero__wide-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgb(28 25 23 / 0.82) 0%,
    rgb(28 25 23 / 0.4) 48%,
    rgb(28 25 23 / 0.12) 100%
  );
}

.hero__wide-inner {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(2rem, 6vh, 4rem) clamp(1.25rem, 4vw, 2rem) clamp(2.5rem, 8vh, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.hero__wide .hero__text--overlay {
  text-align: center;
  max-width: 44rem;
}

.hero__wide .hero__text--overlay .hero__eyebrow {
  color: rgb(253 230 138);
}

.hero__wide .hero__text--overlay h1 {
  color: #fffef8;
  text-shadow: 0 2px 28px rgb(0 0 0 / 0.35);
}

.hero__wide .hero__text--overlay .hero__lead {
  color: rgb(245 245 244 / 0.96);
}

.hero__wide .hero__text--overlay .hero__usp {
  border-top-color: rgb(255 255 255 / 0.28);
  color: rgb(231 229 228 / 0.95);
}

.hero__wide .hero__text--overlay .hero__usp strong {
  color: rgb(254 243 199);
}

.hero__wide-caption {
  margin-top: auto;
  padding-top: 1.5rem;
  text-align: center;
}

.hero__wide-caption strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: #fffef8;
  display: block;
  text-shadow: 0 1px 14px rgb(0 0 0 / 0.45);
}

.hero__wide-caption span {
  font-size: 0.875rem;
  color: rgb(231 229 228 / 0.92);
  margin-top: 0.35rem;
  display: block;
}

.btn--on-photo {
  background: rgb(255 255 255 / 0.12);
  backdrop-filter: blur(8px);
  color: #fffef8;
  border-color: rgb(255 255 255 / 0.5);
}

.btn--on-photo:hover {
  background: rgb(255 255 255 / 0.22);
  border-color: rgb(255 255 255 / 0.7);
  color: #fff;
}

/* Ana sayfa — hero tam ekran (üst bar + güvenli alan hariç) */
.hero--home {
  min-height: calc(100vh - var(--header-h) - env(safe-area-inset-top, 0px));
  min-height: calc(100svh - var(--header-h) - env(safe-area-inset-top, 0px));
  min-height: calc(100dvh - var(--header-h) - env(safe-area-inset-top, 0px));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero--home .hero__grid {
  flex: 1 1 auto;
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  align-content: center;
  min-height: 0;
  padding: clamp(1.5rem, 4vh, 2.75rem) clamp(1.25rem, 4vw, 2rem);
  gap: clamp(1.75rem, 4vw, 3rem);
}

@media (min-width: 768px) {
  .hero--home .hero__grid {
    padding: clamp(2rem, 5vh, 3.5rem) clamp(1.5rem, 4vw, 2rem);
    gap: clamp(2rem, 4vw, 4rem);
  }
}

.hero--home .hero__text {
  max-width: 38rem;
  width: 100%;
}

@media (min-width: 768px) {
  .hero--home .hero__text {
    max-width: 42rem;
  }
}

.hero--home .hero__text,
.hero--home .hero__visual {
  justify-self: center;
}

@media (min-width: 768px) {
  .hero--home .hero__text {
    justify-self: start;
  }

  .hero--home .hero__visual {
    justify-self: end;
  }
}

/* Ana sayfa — hero portre görseli daha büyük */
.hero--home .hero__figure-wrap {
  max-width: min(96vw, 34rem);
}

.hero--home .hero figure {
  max-width: 100%;
}

@media (min-width: 768px) {
  .hero--home .hero__figure-wrap {
    max-width: 40rem;
  }
}

@media (min-width: 1100px) {
  .hero--home .hero__figure-wrap {
    max-width: 46rem;
  }
}

/* ——— Ödüllü yemekler ——— */
.section {
  padding: 5rem 1.25rem;
}

@media (min-width: 640px) {
  .section {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.section--white {
  background: #fff;
  border-bottom: 1px solid rgb(233 213 168 / 0.4);
}

.section--cream {
  background: var(--cream-50);
  border-bottom: 1px solid rgb(233 213 168 / 0.4);
}

.section__inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section__intro {
  margin-top: 1.25rem;
  max-width: 42rem;
  color: var(--stone-600);
}

.section__intro--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 40rem;
}

/* Ana sayfa — net hizalar ve düzenli ritim */
.main--home .hero__text {
  text-align: center;
}

.main--home .hero__actions {
  justify-content: center;
}

.main--home .hero__lead,
.main--home .hero__usp {
  margin-left: auto;
  margin-right: auto;
}

.main--home .hero figcaption {
  text-align: center;
}

.main--home .hall-card {
  text-align: center;
}

.main--home .section {
  padding: clamp(3.25rem, 10vw, 5rem) clamp(1.25rem, 4vw, 2rem);
}

.main--home .section__inner {
  width: 100%;
}

.main--home .section-head {
  margin-bottom: 0;
}

.main--home .section__intro {
  margin-top: 0.875rem;
  line-height: 1.65;
}

.main--home .section__intro:not(.section__intro--center) {
  max-width: 38rem;
}

.main--home .section__inner > .section-head + .section__intro {
  margin-top: 0.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgb(233 213 168 / 0.4);
}

.main--home .public-share-banner {
  padding-left: clamp(1.25rem, 4vw, 2rem);
  padding-right: clamp(1.25rem, 4vw, 2rem);
}

@media (min-width: 768px) {
  .main--home .public-share-banner__inner {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}

.main--home .awards-grid {
  margin-top: 2rem;
  gap: 1.25rem;
  align-items: stretch;
}

@media (min-width: 900px) {
  .main--home .awards-grid {
    gap: 1.5rem;
  }
}

.main--home .award-card {
  height: 100%;
}

.main--home .hall-fame .section__intro {
  margin-top: 1rem;
}

.hall-fame__grid--spaced {
  margin-top: 2.25rem;
}

.awards-grid {
  margin-top: 3.5rem;
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 640px) {
  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .awards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.award-card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgb(233 213 168 / 0.6);
  background: rgb(250 249 246 / 0.8);
  box-shadow: 0 1px 3px rgb(0 0 0 / 0.05);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.award-card:hover {
  border-color: var(--gold-300);
  box-shadow: 0 4px 12px rgb(0 0 0 / 0.06);
}

.award-card__img-wrap {
  position: relative;
  width: 11rem;
  height: 11rem;
  margin: 0 auto 1.25rem;
}

.award-card__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(to bottom right, rgb(233 213 168 / 0.8), rgb(197 168 90 / 0.3));
}

.award-card__img {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: var(--cream-50);
}

.award-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.award-card:hover .award-card__img img {
  transform: scale(1.05);
}

.award-card__badge {
  text-align: center;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--award-red);
  line-height: 1.3;
  margin: 0;
}

.award-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-align: center;
  color: var(--gold-900);
  margin: 0.75rem 0 0;
  font-weight: 600;
}

.award-card p {
  margin: 0.75rem 0 0;
  text-align: center;
  font-size: 0.875rem;
  color: var(--stone-600);
  flex: 1;
}

/* ——— Vitrin (müze vitrini: kart + story-board kalitesinde çerçeve + altyazı) ——— */
.vitrin-panel__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(1.75rem, 4.5vw, 2.75rem);
}

.vitrin-panel__lead {
  max-width: 42rem;
  margin-inline: auto;
}

.vitrin-panel__lede {
  margin-top: 0.75rem;
}

.vitrin-panel__grid {
  display: grid;
  gap: clamp(1.25rem, 3vw, 1.65rem);
  grid-template-columns: repeat(auto-fill, minmax(15.75rem, 1fr));
  align-items: start;
}

.vitrin-tile {
  margin: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.vitrin-tile__card {
  padding: 0.65rem 0.65rem 0.55rem;
  border-radius: 1.15rem;
  border: 1px solid rgb(212 188 127 / 0.48);
  background: linear-gradient(168deg, rgb(255 255 255 / 0.97), var(--cream-100));
  box-shadow:
    0 1px 2px rgb(28 25 23 / 0.04),
    0 14px 36px rgb(74 58 24 / 0.08);
}

.vitrin-tile__frame {
  position: relative;
  border-radius: 0.85rem;
  overflow: hidden;
  border: 1px solid rgb(233 213 168 / 0.52);
  background: var(--cream-100);
  box-shadow:
    0 3px 6px rgb(28 25 23 / 0.05),
    0 14px 28px rgb(74 58 24 / 0.09);
}

.vitrin-tile__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 0.35);
}

.vitrin-tile__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  vertical-align: middle;
}

.vitrin-tile__caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.9rem;
  padding: 0 0.2rem;
  text-align: center;
  flex: 1;
}

.vitrin-tile__kicker {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-700);
  line-height: 1.35;
}

.vitrin-tile__line {
  width: 2.25rem;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
  opacity: 0.88;
}

.vitrin-tile__spotlight {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.45rem);
  font-weight: 600;
  color: var(--gold-900);
  line-height: 1.22;
  letter-spacing: -0.02em;
}

/* ——— Hakkımızda özeti ——— */
.two-col {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }
}

.about-box {
  border-radius: 1.5rem;
  border: 1px solid rgb(233 213 168 / 0.7);
  background: var(--cream-50);
  padding: 2rem;
  box-shadow: inset 0 2px 20px rgb(245 237 216 / 0.5);
}

.about-box h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--gold-900);
  margin: 0;
  font-weight: 600;
}

.about-box p {
  margin: 1rem 0 0;
  font-size: 0.875rem;
  color: var(--stone-600);
  line-height: 1.7;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold-800);
  text-decoration: underline;
  text-decoration-color: var(--gold-400);
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

.link-arrow:hover {
  color: var(--gold-950);
}

/* ——— Alt bilgi ——— */
.site-footer {
  border-top: 1px solid rgb(233 213 168 / 0.8);
  background: var(--stone-900);
  color: rgb(214 211 209);
  padding: 3.5rem 1.25rem;
}

.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
}

.site-footer__grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.site-footer .brand__small {
  color: rgb(251 191 36 / 0.9);
}

.site-footer .brand__large {
  color: var(--stone-50);
}

.site-footer .brand:hover .brand__large {
  color: rgb(253 230 138);
}

.site-footer .brand__mark {
  color: rgb(251 191 36 / 0.95);
}

.site-footer p {
  margin: 1rem 0 0;
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgb(168 162 158);
  max-width: 22rem;
}

.site-footer__stat {
  margin: 1.25rem 0 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
  color: rgb(253 224 71);
  max-width: 22rem;
}

.site-footer__stat strong {
  font-size: 1.125rem;
  font-weight: 800;
  color: #fff;
}

.site-footer h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: rgb(253 224 71);
  margin: 0;
  font-weight: 600;
}

.site-footer__list {
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.875rem;
}

.site-footer__list a {
  color: inherit;
  text-decoration: none;
}

.site-footer__list a:hover {
  color: rgb(253 230 138);
}

.site-footer__bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgb(68 64 60);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.75rem;
  color: rgb(120 113 108);
}

@media (min-width: 640px) {
  .site-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.site-footer__tag {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgb(87 83 78);
}

/* ——— Alt sayfalar ——— */
.page-hero {
  border-bottom: 1px solid rgb(233 213 168 / 0.5);
  background: linear-gradient(to bottom, #fff, var(--cream-50));
  padding: 4rem 1.25rem;
  text-align: left;
}

.page-hero__inner {
  max-width: 48rem;
  margin: 0 auto;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  color: var(--gold-900);
  margin: 1rem 0 0;
  font-weight: 700;
  line-height: 1.12;
}

.page-hero .section-head__eyebrow {
  margin-bottom: 0;
}

.page-hero__lead {
  margin: 1.5rem 0 0;
  font-size: 1.125rem;
  color: var(--stone-600);
  line-height: 1.7;
}

.content-narrow {
  max-width: 48rem;
  margin: 0 auto;
}

.content-wide {
  max-width: var(--max);
  margin: 0 auto;
}

/* Hakkımızda — üst hero kaldırıldı; ilk bölümde üst boşluk */
.about-page > .section--about-first {
  padding-top: clamp(3.25rem, 8vw, 5rem);
}

/* Dar sütunda ara başlık (ör. "Eğitim ve misafirperverlik") */
.section__inner.content-narrow > h3 {
  margin-top: 2.25rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3.2vw, 1.75rem);
  font-weight: 600;
  color: var(--gold-900);
  line-height: 1.25;
}

.prose-block {
  margin-top: 1.5rem;
  color: var(--stone-600);
  line-height: 1.75;
}

.prose-block h2,
.prose-block h3 {
  font-family: var(--font-display);
  color: var(--gold-900);
  font-weight: 600;
  margin: 2.5rem 0 0;
}

.prose-block h2:first-child,
.prose-block h3:first-child {
  margin-top: 0;
}

.prose-block ul {
  margin: 0.75rem 0 0;
  padding-left: 1.25rem;
}

.prose-block li {
  margin: 0.35rem 0;
}

.prose-block .note {
  font-size: 0.875rem;
  color: var(--stone-600);
  margin-top: 1rem;
}

.about-founder__body p {
  margin: 0;
}

.about-founder__body p + p {
  margin-top: 1.15rem;
}

.prose-block--lead {
  font-size: 1.0625rem;
  line-height: 1.65;
}

@media (min-width: 640px) {
  .prose-block--lead {
    font-size: 1.125rem;
  }
}

/* Ana sayfa — Hikâyemiz (editoryal düzen) */
.section--story {
  position: relative;
}

.section__inner--story-wide {
  max-width: 58rem;
  margin: 0 auto;
}

.story-hero {
  text-align: center;
  max-width: 28rem;
  margin: 0 auto 2rem;
}

.story-hero__eyebrow {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-700);
}

.story-hero__title {
  margin: 0.65rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 6vw, 3.15rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--gold-900);
}

.story-hero__line {
  width: 3.5rem;
  height: 3px;
  margin: 1.25rem auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
  opacity: 0.85;
}

/* Ana sayfa — dükkan / mekân (görsel + metin) */
.home-shop .story-board {
  margin-top: 0;
}

.home-shop .story-board__content > .section-head {
  margin-bottom: 1rem;
}

.story-board {
  display: grid;
  gap: 2rem;
  align-items: stretch;
  margin-top: 0.35rem;
}

@media (min-width: 900px) {
  .story-board {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.25rem 2.75rem;
    align-items: center;
  }
}

.story-board__figure {
  margin: 0;
}

.story-board__frame {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgb(233 213 168 / 0.5);
  box-shadow:
    0 4px 6px rgb(28 25 23 / 0.04),
    0 25px 50px rgb(74 58 24 / 0.1);
  background: var(--cream-100);
}

.story-board__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 0.35);
}

.story-board__frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.story-board__content {
  padding: 0.25rem 0 0;
  text-align: center;
}

@media (min-width: 900px) {
  .story-board__content {
    padding: 0.5rem 0 0;
    text-align: left;
  }
}

.story-board__lead {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--stone-800);
}

.story-board__lead strong {
  color: var(--gold-900);
  font-weight: 700;
}

.story-board__text {
  margin: 1.15rem 0 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--stone-600);
}

.story-board__link {
  margin-top: 1.75rem;
}

.story-values {
  margin-top: 2.75rem;
  padding: 1.75rem 1.5rem;
  border-radius: 1.25rem;
  border: 1px solid rgb(212 188 127 / 0.4);
  background: linear-gradient(165deg, rgb(255 255 255 / 0.92), var(--cream-50));
  box-shadow: 0 1px 3px rgb(28 25 23 / 0.05);
}

@media (min-width: 640px) {
  .story-values {
    padding: 2rem 2rem;
  }
}

.story-values__panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgb(233 213 168 / 0.45);
}

@media (min-width: 640px) {
  .story-values__panel {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.75rem;
    text-align: left;
  }
}

.story-values__pct {
  margin: 0;
  flex-shrink: 0;
  font-family: var(--font-sans);
  font-size: clamp(3rem, 8vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--gold-800);
}

.story-values__panel-body {
  min-width: 0;
}

.story-values__heading {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-heading);
}

.story-values__lead {
  margin: 0.75rem 0 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--stone-600);
}

.story-values__lead strong {
  color: var(--gold-900);
  font-weight: 700;
}

.story-values__notes {
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.story-values__notes li {
  position: relative;
  margin: 0;
  padding: 0.85rem 0 0.85rem 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--stone-600);
  border-left: 3px solid var(--gold-400);
  background: linear-gradient(90deg, rgb(245 237 216 / 0.35), transparent);
  border-radius: 0 0.5rem 0.5rem 0;
}

.portrait-card {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 4px solid rgb(212 188 127 / 0.6);
  box-shadow: 0 20px 40px rgb(0 0 0 / 0.12);
  max-width: min(20rem, 100%);
  margin-inline: auto;
}

.portrait-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

@media (min-width: 1024px) {
  .about-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.62fr) minmax(0, 1fr);
    gap: clamp(2rem, 4vw, 3.25rem);
    align-items: start;
  }

  .about-layout .portrait-card {
    max-width: min(20rem, 100%);
    justify-self: start;
    margin-inline: 0;
    aspect-ratio: 3 / 4;
  }

  .portrait-card {
    position: sticky;
    top: calc(var(--header-h) + env(safe-area-inset-top, 0px) + 1rem);
  }
}

.contact-page > .section--contact-first {
  padding-top: clamp(3.25rem, 8vw, 5rem);
}

.contact-intro {
  margin: 0 auto 2rem;
  max-width: 40rem;
  text-align: center;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--stone-600);
}

.contact-intro strong {
  color: var(--stone-800);
  font-weight: 600;
}

.contact-card__fineprint {
  margin-top: 1.5rem;
  font-size: 0.8125rem;
  color: var(--stone-600);
  line-height: 1.5;
}

.contact-grid {
  display: grid;
  gap: 2.5rem;
}

.contact-stack {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-card {
  border-radius: 1.5rem;
  border: 1px solid rgb(233 213 168 / 0.7);
  background: #fff;
  padding: 2rem;
  box-shadow: 0 1px 3px rgb(0 0 0 / 0.05);
}

.contact-card h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--gold-900);
  margin: 0;
  font-weight: 600;
}

.contact-card dl {
  margin: 1.5rem 0 0;
}

.contact-card dt {
  font-weight: 600;
  color: var(--stone-800);
  margin-top: 1rem;
}

.contact-card dt:first-of-type {
  margin-top: 0;
}

.contact-card dd {
  margin: 0.35rem 0 0;
  color: var(--stone-600);
}

.contact-card a {
  color: var(--gold-800);
}

.contact-mail-form h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--gold-900);
  margin: 0;
  font-weight: 600;
}

.contact-mail-form__hint {
  margin: 0.75rem 0 1.25rem;
  font-size: 0.8125rem;
  color: var(--stone-600);
  line-height: 1.5;
}

.contact-mail-form__label {
  display: block;
  margin-top: 1rem;
}

.contact-mail-form__label:first-of-type {
  margin-top: 0;
}

.contact-mail-form__label-text {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--stone-700);
  margin-bottom: 0.35rem;
}

.contact-mail-form__input,
.contact-mail-form__textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgb(233 213 168 / 0.8);
  border-radius: 0.5rem;
  font: inherit;
  color: var(--stone-800);
  background: var(--cream-50);
}

.contact-mail-form__input:focus-visible,
.contact-mail-form__textarea:focus-visible {
  outline: 2px solid var(--gold-400);
  outline-offset: 1px;
}

.contact-mail-form__textarea {
  resize: vertical;
  min-height: 6rem;
}

.contact-mail-form__submit {
  margin-top: 1.25rem;
  padding: 0.65rem 1.25rem;
  border: 1px solid rgb(212 188 127 / 0.65);
  border-radius: 0.5rem;
  background: linear-gradient(180deg, #fffdf8, var(--gold-100));
  font: inherit;
  font-weight: 600;
  color: var(--gold-950);
  cursor: pointer;
}

.contact-mail-form__submit:hover {
  border-color: var(--gold-400);
}

.contact-mail-form__submit:focus-visible {
  outline: 2px solid var(--gold-600);
  outline-offset: 2px;
}

.map-frame {
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgb(233 213 168 / 0.7);
  box-shadow: 0 2px 12px rgb(0 0 0 / 0.06);
  min-height: 20rem;
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 24rem;
  border: 0;
}

@media (min-width: 1024px) {
  .map-frame iframe {
    height: 100%;
    min-height: 25rem;
  }
}

.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;
}

/* ——— Şeref köşesi / ödüller (plan: Hall of Fame) ——— */
.hall-fame {
  position: relative;
  overflow: hidden;
}

.hall-fame__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.4;
  background: radial-gradient(ellipse at 30% 0%, rgb(233 213 168 / 0.35), transparent 55%);
}

.hall-fame__grid {
  position: relative;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .hall-fame__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .hall-fame__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.hall-card {
  border-radius: 1rem;
  border: 1px solid rgb(233 213 168 / 0.65);
  background: #fff;
  padding: 1.25rem 1rem;
  text-align: left;
  box-shadow: 0 4px 20px rgb(74 58 24 / 0.06);
}

.hall-card__label {
  margin: 0;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9a3412;
  line-height: 1.35;
}

.hall-card__title {
  margin: 0.6rem 0 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-900);
  font-weight: 600;
}

.hall-card p {
  margin: 0.5rem 0 0;
  font-size: 0.8125rem;
  color: var(--stone-600);
  line-height: 1.5;
}

/* ——— Tam menü sayfası (premium kart düzeni) ——— */
.menu-page {
  padding-bottom: 3.5rem;
}

.menu-page--styled {
  background: var(--cream-50);
}

/* Başlık bandı yok: doğrudan TOC (statik menü sayfası gibi) */
.menu-page--no-hero .menu-toolbar {
  padding-top: clamp(1.5rem, 4vw, 2.25rem);
}

.menu-page__loading {
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.25rem;
  margin-top: 0.35rem;
}

.menu-page__loading-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 1.35rem;
  padding: 0.5rem 0;
}

.menu-page__loading-spinner {
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  border: 2.5px solid rgb(233 213 168 / 0.55);
  border-top-color: var(--gold-600);
  animation: menu-loading-spin 0.7s linear infinite;
}

.menu-page__loading-label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--stone-600);
  letter-spacing: 0.02em;
}

@keyframes menu-loading-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes menu-sk-shimmer {
  0% {
    background-position: 120% 0;
  }

  100% {
    background-position: -120% 0;
  }
}

.menu-skeleton {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.menu-skeleton__section {
  position: relative;
  overflow: hidden;
  padding: 1.65rem 1.25rem 1.5rem;
  border-radius: 1.35rem;
  border: 1px solid rgb(212 188 127 / 0.32);
  background: #ffffff;
  box-shadow: 0 1px 4px rgb(28 25 23 / 0.04);
}

.menu-skeleton__section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-400), var(--gold-500), var(--gold-400));
  opacity: 0.75;
}

.menu-skeleton__title {
  height: 1.65rem;
  max-width: 14rem;
  margin-bottom: 0.75rem;
  border-radius: 0.4rem;
  background: linear-gradient(90deg, #e8e0d4 0%, #f4efe6 40%, #e8e0d4 80%);
  background-size: 220% 100%;
  animation: menu-sk-shimmer 1.2s ease-in-out infinite;
}

.menu-skeleton__intro {
  height: 0.72rem;
  max-width: 100%;
  margin-bottom: 0.45rem;
  border-radius: 0.3rem;
  background: linear-gradient(90deg, #ebe6de 0%, #f5f1ea 45%, #ebe6de 90%);
  background-size: 220% 100%;
  animation: menu-sk-shimmer 1.2s ease-in-out infinite;
  animation-delay: 0.08s;
}

.menu-skeleton__intro--short {
  max-width: 72%;
  margin-bottom: 1rem;
  animation-delay: 0.12s;
}

.menu-skeleton__items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.menu-skeleton__item {
  display: grid;
  grid-template-columns: minmax(4.5rem, 5.75rem) minmax(0, 1fr);
  gap: 0.85rem 1rem;
  align-items: start;
  padding: 0.85rem 0.85rem 0.95rem;
  border-radius: 1rem;
  border: 1px solid rgb(233 213 168 / 0.45);
  background: #fffef9;
}

.menu-skeleton__thumb {
  aspect-ratio: 4 / 3;
  width: 100%;
  max-width: 5.75rem;
  border-radius: 0.65rem;
  background: linear-gradient(120deg, #e5ddd2 0%, #f2ebe2 50%, #e5ddd2 100%);
  background-size: 200% 100%;
  animation: menu-sk-shimmer 1.2s ease-in-out infinite;
}

.menu-skeleton__body {
  min-width: 0;
  padding-top: 0.1rem;
}

.menu-skeleton__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.55rem;
}

.menu-skeleton__name {
  flex: 1;
  min-height: 1.1rem;
  max-width: 70%;
  border-radius: 0.3rem;
  background: linear-gradient(90deg, #ddd5cb 0%, #ece6dd 45%, #ddd5cb 90%);
  background-size: 220% 100%;
  animation: menu-sk-shimmer 1.15s ease-in-out infinite;
}

.menu-skeleton__price {
  width: 3.75rem;
  height: 1.85rem;
  flex-shrink: 0;
  border-radius: 0.55rem;
  background: linear-gradient(90deg, #e8dfd2 0%, #f3ebe0 50%, #e8dfd2 100%);
  background-size: 200% 100%;
  animation: menu-sk-shimmer 1.15s ease-in-out infinite;
  animation-delay: 0.05s;
}

.menu-skeleton__desc {
  height: 0.62rem;
  border-radius: 0.25rem;
  margin-bottom: 0.35rem;
  background: linear-gradient(90deg, #e9e4dc 0%, #f3f0ea 50%, #e9e4dc 100%);
  background-size: 220% 100%;
  animation: menu-sk-shimmer 1.25s ease-in-out infinite;
  animation-delay: 0.1s;
}

.menu-skeleton__desc--narrow {
  max-width: 55%;
  margin-bottom: 0;
}

.menu-toc--loading {
  justify-content: center;
  pointer-events: none;
}

.menu-toc__sk-pill {
  display: inline-block;
  height: 2rem;
  min-width: 4.25rem;
  border-radius: 9999px;
  background: linear-gradient(90deg, #ebe4d8 0%, #f5f0e8 50%, #ebe4d8 100%);
  background-size: 200% 100%;
  animation: menu-sk-shimmer 1.1s ease-in-out infinite;
}

.menu-toc__sk-pill:nth-child(2) {
  min-width: 5.5rem;
  animation-delay: 0.06s;
}

.menu-toc__sk-pill:nth-child(3) {
  min-width: 3.75rem;
  animation-delay: 0.12s;
}

.menu-toc__sk-pill:nth-child(4) {
  min-width: 4.75rem;
  animation-delay: 0.04s;
}

.menu-toc__sk-pill:nth-child(5) {
  min-width: 3.5rem;
  animation-delay: 0.1s;
}

.menu-page__err {
  max-width: 52rem;
  margin: 1rem auto 0;
  padding: 0 1.35rem;
}

@media (prefers-reduced-motion: reduce) {
  .menu-page__loading-spinner {
    animation: none;
    border-color: var(--gold-500);
    opacity: 0.85;
  }

  .menu-skeleton__title,
  .menu-skeleton__intro,
  .menu-skeleton__thumb,
  .menu-skeleton__name,
  .menu-skeleton__price,
  .menu-skeleton__desc,
  .menu-toc__sk-pill {
    animation: none;
    opacity: 0.72;
  }
}

/* Üst şerit: kategori TOC (genişlik menü kartlarıyla aynı) */
.menu-toolbar {
  max-width: 52rem;
  margin: 0 auto;
  padding: clamp(1.25rem, 4vw, 2rem) 1.35rem 0.5rem;
}

@media (min-width: 768px) {
  .menu-toolbar {
    padding-left: 2.4rem;
    padding-right: 2.4rem;
  }
}

.menu-toc {
  position: sticky;
  top: calc(var(--header-h, 4.5rem) + env(safe-area-inset-top, 0px) + 0.35rem);
  z-index: 8;
  margin: 0 0 1.75rem;
  padding: 1rem 1.1rem;
  border-radius: 1.1rem;
  border: 1px solid rgb(212 188 127 / 0.4);
  background: rgb(255 255 255 / 0.98);
  box-shadow: 0 1px 6px rgb(28 25 23 / 0.05);
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: center;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 600;
}

.menu-toc a {
  color: var(--gold-800);
  text-decoration: none;
  padding: 0.45rem 0.95rem;
  border-radius: 9999px;
  border: 1px solid transparent;
  background: var(--cream-100);
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s;
}

.menu-toc a:hover {
  background: var(--gold-100);
  border-color: var(--gold-300);
  color: var(--gold-950);
}

.menu-toc a.is-active {
  background: rgb(245 237 216 / 0.95);
  border-color: var(--gold-400);
  color: var(--text-heading);
}

.menu-toc a:focus-visible {
  outline: 2px solid var(--gold-600);
  outline-offset: 2px;
}

/* Bölüm kartları */
.menu-section {
  max-width: 52rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 640px) {
  .menu-section {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.menu-page--styled .menu-section {
  position: relative;
  overflow: hidden;
  margin-bottom: 1.5rem;
  padding: 2rem 1.35rem 2.15rem;
  background: #ffffff;
  border-radius: 1.35rem;
  border: 1px solid rgb(212 188 127 / 0.32);
  box-shadow: 0 1px 4px rgb(28 25 23 / 0.04);
}

/* Üst altın çizgi — tüm menü panelleri (ör. gozleme bölümü dahil) */
.menu-page--styled .menu-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-400);
  opacity: 0.85;
  z-index: 0;
  pointer-events: none;
}

.menu-page--styled .menu-section > * {
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .menu-page--styled .menu-section {
    padding: 2.35rem 2.4rem 2.5rem;
  }
}

.menu-section--featured {
  background: #fffef9 !important;
  border-color: rgb(197 168 90 / 0.45) !important;
  box-shadow: 0 1px 6px rgb(74 58 24 / 0.06) !important;
}

.menu-section--last {
  margin-bottom: 0 !important;
}

section.menu-section[id] {
  scroll-margin-top: 5.75rem;
}

.menu-section__title {
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 4.5vw, 2.95rem);
  color: var(--gold-900);
  margin: 0 0 0.65rem;
  font-weight: 700;
  line-height: 1.15;
  position: relative;
  padding-bottom: 0.85rem;
}

.menu-section__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 3.25rem;
  height: 3px;
  border-radius: 2px;
  background: var(--gold-400);
}

.menu-section__intro {
  margin: 0 0 1.35rem;
  font-size: 0.9375rem;
  color: var(--stone-600);
  line-height: 1.68;
  max-width: 40rem;
}

.menu-section__note {
  margin: -0.25rem 0 1.35rem;
  padding: 0.65rem 0.85rem;
  border-radius: 0.65rem;
  background: rgb(250 249 246 / 0.9);
  border: 1px dashed rgb(212 188 127 / 0.45);
  font-size: 0.8125rem;
  color: var(--stone-600);
  font-style: italic;
  line-height: 1.5;
}

.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.menu-page--styled .menu-item {
  padding: 1.05rem 1rem 1.1rem;
  margin: 0;
  border: 1px solid rgb(233 213 168 / 0.5);
  border-radius: 1rem;
  background: #fff;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  align-items: start;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

@media (min-width: 640px) {
  .menu-page--styled .menu-item {
    grid-template-columns: minmax(5.25rem, 7.25rem) minmax(0, 1fr);
    gap: 1rem 1.15rem;
    align-items: start;
  }
}

.menu-item__thumb {
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgb(233 213 168 / 0.55);
  background: var(--cream-100);
  aspect-ratio: 4 / 3;
  width: 100%;
  max-width: 7.25rem;
  box-shadow: 0 2px 10px rgb(28 25 23 / 0.06);
}

@media (max-width: 639px) {
  .menu-item__thumb {
    max-width: 6.75rem;
  }
}

.menu-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.menu-item__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.menu-page--styled .menu-item:hover {
  border-color: rgb(197 168 90 / 0.5);
  box-shadow: 0 2px 8px rgb(74 58 24 / 0.05);
}

.menu-item__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.6rem 0.85rem;
  flex-wrap: wrap;
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.menu-item__header-text {
  flex: 1;
  min-width: min(100%, 10rem);
}

.menu-item__top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.65rem 1.25rem;
}

.menu-item__name {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.9vw, 1.65rem);
  color: var(--gold-900);
  margin: 0;
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: 0.01em;
}

.menu-item__tags {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-left: 0.35rem;
  vertical-align: middle;
}

.menu-tag {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--stone-700);
  background: linear-gradient(180deg, #f5f0e8, var(--cream-100));
  padding: 0.2rem 0.5rem;
  border-radius: 9999px;
  border: 1px solid rgb(233 213 168 / 0.5);
}

.menu-tag--organic {
  color: var(--gold-900);
  background: linear-gradient(180deg, #fdf6e3, #f5edd8);
  border-color: rgb(212 188 127 / 0.45);
}

.menu-item__award {
  flex-shrink: 0;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--award-red);
  line-height: 1.25;
  text-align: left;
  max-width: 11rem;
  padding: 0.35rem 0.5rem;
  border-radius: 0.35rem;
  background: rgb(185 28 28 / 0.06);
  border: 1px solid rgb(185 28 28 / 0.18);
}

.menu-item__award--below-title {
  display: block;
  margin-top: 0.45rem;
  width: fit-content;
  max-width: 100%;
}

.menu-item__price {
  font-family: var(--font-sans);
  font-size: 0.98rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--gold-800);
  white-space: nowrap;
  margin: 0;
  padding: 0.35rem 0.65rem;
  border-radius: 0.6rem;
  background: linear-gradient(165deg, #fffdf9, #f5ecd8);
  border: 1px solid rgb(212 188 127 / 0.55);
  box-shadow: 0 1px 3px rgb(74 58 24 / 0.06);
  flex-shrink: 0;
  align-self: flex-start;
}

.menu-item__price small {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--stone-500);
  text-transform: lowercase;
  margin-top: 0.15rem;
}

.menu-item__desc {
  margin: 0.65rem 0 0;
  padding-top: 0.55rem;
  border-top: 1px solid rgb(233 213 168 / 0.35);
  font-size: 0.8125rem;
  color: var(--stone-600);
  line-height: 1.58;
  max-width: none;
}

.menu-item__meta {
  margin: 0.45rem 0 0;
  font-size: 0.72rem;
  color: var(--stone-500);
}

.menu-sub {
  margin: 1.75rem 0 0.65rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-700);
}

/* SPA / şablon uyumu: içecek alt başlıkları */
.menu-section__sub {
  margin: 1.75rem 0 0.65rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-700);
  line-height: 1.3;
}

.menu-section__sub:first-of-type {
  margin-top: 0.5rem;
}

.menu-simple {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

@media (min-width: 540px) {
  .menu-simple {
    grid-template-columns: 1fr 1fr;
  }
}

.menu-simple li {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.5rem 0.65rem;
  padding: 0.5rem 0.7rem 0.5rem 0.55rem;
  border: 1px solid rgb(233 213 168 / 0.42);
  border-radius: 0.75rem;
  background: rgb(255 255 255 / 0.75);
  font-size: 0.875rem;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.menu-simple__thumb {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid rgb(233 213 168 / 0.45);
  background: var(--cream-100);
  flex-shrink: 0;
}

.menu-simple__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.menu-simple li:hover {
  border-color: rgb(197 168 90 / 0.45);
  box-shadow: 0 6px 18px rgb(74 58 24 / 0.05);
}

.menu-simple span:first-child {
  color: var(--stone-800);
  font-weight: 500;
  line-height: 1.35;
}

.menu-simple .menu-item__price {
  font-size: 0.9rem;
  padding: 0.25rem 0.5rem;
  flex-shrink: 0;
}

/* ——— Hoş animasyonlar (ölçülü) ——— */
@keyframes anim-fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Yalnızca opacity: fixed header üzerinde transform, bazı tarayıcılarda sabitlemeyi bozar */
@keyframes anim-header-enter {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .site-header--enter {
    animation: anim-header-enter 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .hero-animate .hero__text > * {
    opacity: 0;
    animation: anim-fade-up 0.68s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  .hero-animate .hero__text > *:nth-child(1) {
    animation-delay: 0.07s;
  }

  .hero-animate .hero__text > *:nth-child(2) {
    animation-delay: 0.13s;
  }

  .hero-animate .hero__text > *:nth-child(3) {
    animation-delay: 0.19s;
  }

  .hero-animate .hero__text > *:nth-child(4) {
    animation-delay: 0.25s;
  }

  .hero-animate .hero__text > *:nth-child(5) {
    animation-delay: 0.31s;
  }

  .hero-animate .hero__text > *:nth-child(6) {
    animation-delay: 0.37s;
  }

  .hero-animate .hero__visual {
    opacity: 0;
    animation: anim-fade-up 0.72s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
  }

  .page-hero-animate .page-hero__inner > * {
    opacity: 0;
    animation: anim-fade-up 0.62s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  .page-hero-animate .page-hero__inner > *:nth-child(1) {
    animation-delay: 0.06s;
  }

  .page-hero-animate .page-hero__inner > *:nth-child(2) {
    animation-delay: 0.12s;
  }

  .page-hero-animate .page-hero__inner > *:nth-child(3) {
    animation-delay: 0.18s;
  }

  .page-hero-animate .page-hero__inner > *:nth-child(4) {
    animation-delay: 0.24s;
  }

  .page-hero-animate .page-hero__inner > *:nth-child(5) {
    animation-delay: 0.3s;
  }

  .page-hero-animate .page-hero__inner > *:nth-child(6) {
    animation-delay: 0.36s;
  }

  .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition:
      opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .reveal.is-visible .animate-children > * {
    animation: anim-fade-up 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .reveal.is-visible .animate-children > *:nth-child(1) {
    animation-delay: 0.06s;
  }

  .reveal.is-visible .animate-children > *:nth-child(2) {
    animation-delay: 0.12s;
  }

  .reveal.is-visible .animate-children > *:nth-child(3) {
    animation-delay: 0.18s;
  }

  .reveal.is-visible .animate-children > *:nth-child(4) {
    animation-delay: 0.24s;
  }

  .reveal.is-visible .animate-children > *:nth-child(5) {
    animation-delay: 0.3s;
  }

  .reveal.is-visible .animate-children > *:nth-child(6) {
    animation-delay: 0.36s;
  }

  .reveal.is-visible .animate-children > *:nth-child(7) {
    animation-delay: 0.42s;
  }

  .reveal.is-visible .animate-children > *:nth-child(8) {
    animation-delay: 0.48s;
  }

  .btn {
    transition:
      transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 0.22s ease,
      border-color 0.22s ease,
      background-color 0.22s ease,
      color 0.22s ease;
  }

  .btn--dark:hover,
  .btn--outline:hover {
    transform: translateY(-1px);
  }

  .btn:active {
    transform: translateY(0);
  }
}

/* ——— Koyu tema ——— */
html[data-theme="dark"] {
  color-scheme: dark;
  --cream-50: #141210;
  --cream-100: #1c1a17;
  --gold-100: #252018;
  --gold-200: #3a3220;
  --gold-300: #8a7340;
  --gold-400: #c5a85a;
  --gold-600: #d4bc7f;
  --gold-700: #e4d4a8;
  --gold-800: #f0e6c8;
  --gold-900: #faf6e8;
  --gold-950: #1a1610;
  --stone-50: #1c1917;
  /* Okunabilir ikincil metin (önceki #a8a29e koyu zeminde zayıftı) */
  --stone-500: #a6a09a;
  --stone-600: #b8b2ab;
  --stone-700: #ddd6cf;
  --stone-800: #ece8e4;
  --text-heading: #f5f4f1;
  --btn-solid-bg: #ebe6dc;
  --btn-solid-fg: #1c1917;
  --btn-solid-hover: #f7f0e6;
}

html[data-theme="dark"] .site-header {
  border-bottom: 1px solid rgb(212 188 127 / 0.14);
  background: rgb(28 25 23 / 0.88);
  box-shadow: 0 1px 0 rgb(0 0 0 / 0.35);
}

html[data-theme="dark"] .site-header.is-scrolled {
  background: rgb(28 25 23 / 0.94);
  border-bottom-color: rgb(212 188 127 / 0.22);
  box-shadow:
    0 8px 32px rgb(0 0 0 / 0.45),
    0 1px 0 rgb(212 188 127 / 0.12);
}

html[data-theme="dark"] .site-header .brand__small {
  color: #c4a86a;
}

html[data-theme="dark"] .site-header .brand__mark {
  color: #d4bc7f;
}

html[data-theme="dark"] .site-header .nav a {
  color: rgb(220 217 214 / 0.92);
}

@media (max-width: 767px) {
  html[data-theme="dark"] .site-header .nav {
    box-shadow: 0 16px 36px rgb(0 0 0 / 0.5);
  }
}

html[data-theme="dark"] .site-header .nav a:hover {
  background: rgb(45 40 34 / 0.92);
  color: #f0e6c8;
  box-shadow: none;
}

html[data-theme="dark"] .site-header .nav a[aria-current="page"] {
  background: rgb(55 48 38 / 0.95);
  color: #f5edd8;
  font-weight: 600;
  box-shadow:
    inset 0 0 0 1px rgb(212 188 127 / 0.38),
    0 0 0 1px rgb(212 188 127 / 0.12);
}

html[data-theme="dark"] .site-header .nav a[aria-current="page"]:hover {
  background: rgb(62 54 42 / 0.98);
  color: #faf6e8;
}

html[data-theme="dark"] .theme-toggle {
  border-color: rgb(212 188 127 / 0.32);
  background: rgb(32 29 26 / 0.9);
  color: #d4bc7f;
}

html[data-theme="dark"] .theme-toggle:hover {
  border-color: rgb(212 188 127 / 0.5);
  background: rgb(42 38 32 / 0.95);
  color: #f0e6c8;
}

html[data-theme="dark"] .back-to-top {
  border-color: rgb(212 188 127 / 0.35);
  background: rgb(28 26 23 / 0.96);
  color: var(--gold-300);
  box-shadow: 0 2px 12px rgb(0 0 0 / 0.35);
}

html[data-theme="dark"] .back-to-top:hover {
  background: rgb(38 34 28 / 0.98);
  color: var(--gold-200);
}

html[data-theme="dark"] body {
  color: var(--stone-800);
  background-color: var(--cream-50);
}

html[data-theme="dark"] .hero {
  border-bottom-color: rgb(212 188 127 / 0.2);
  background: linear-gradient(to bottom, var(--cream-50), var(--cream-50), rgb(24 22 19 / 0.95));
}

html[data-theme="dark"] .hero__glow--1 {
  background: rgb(212 188 127 / 0.08);
}

html[data-theme="dark"] .hero__glow--2 {
  background: rgb(197 168 90 / 0.06);
}

html[data-theme="dark"] .hero__usp {
  border-top-color: rgb(212 188 127 / 0.22);
}

html[data-theme="dark"] .main--home .hero__lead {
  color: var(--stone-800);
}

html[data-theme="dark"] .main--home .hero__usp {
  color: var(--stone-700);
}

html[data-theme="dark"] .main--home .hero figcaption span {
  color: var(--stone-700);
}

html[data-theme="dark"] .hero__wide-scrim {
  background: linear-gradient(
    to top,
    rgb(12 10 8 / 0.9) 0%,
    rgb(12 10 8 / 0.48) 50%,
    rgb(12 10 8 / 0.22) 100%
  );
}

html[data-theme="dark"] .main--home .section__intro {
  color: var(--stone-700);
}

html[data-theme="dark"] .public-share-panel {
  border-color: rgb(212 188 127 / 0.35);
  background: linear-gradient(165deg, #1e1c18, var(--cream-100));
}

html[data-theme="dark"] .public-share-panel__num {
  color: #e4d4a8;
}

html[data-theme="dark"] .public-share-panel__lead {
  color: var(--stone-700);
}

html[data-theme="dark"] .section__inner.content-narrow > h3 {
  color: #f0e6c8;
}

html[data-theme="dark"] .about-page .prose-block strong {
  color: #faf6e8;
}

html[data-theme="dark"] .about-page .section-head__title {
  color: #f0e6c8;
}

html[data-theme="dark"] .about-page .section-head__eyebrow {
  color: #d4bc7f;
}

html[data-theme="dark"] .public-share-banner {
  background: linear-gradient(180deg, rgb(26 24 21) 0%, var(--cream-50) 100%);
  color: var(--stone-800);
  border-top-color: rgb(212 188 127 / 0.22);
  border-bottom-color: rgb(212 188 127 / 0.18);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.04);
}

html[data-theme="dark"] .public-share-banner__pct {
  color: #e4d4a8;
  text-shadow: none;
}

html[data-theme="dark"] .public-share-banner__suffix {
  color: #d4bc7f;
}

html[data-theme="dark"] .public-share-banner__text {
  color: #e5e1dc;
}

html[data-theme="dark"] .public-share-banner__text strong {
  color: #faf6e8;
}

html[data-theme="dark"] .btn--outline {
  background: rgb(30 28 25 / 0.65);
  color: #f0ebe6;
  border-color: rgb(212 188 127 / 0.45);
}

html[data-theme="dark"] .btn--outline:hover {
  background: rgb(40 36 30 / 0.9);
  border-color: var(--gold-400);
  color: #faf8f5;
}

html[data-theme="dark"] .hero figure {
  border-color: rgb(212 188 127 / 0.45);
  box-shadow:
    0 0 0 1px rgb(212 188 127 / 0.2),
    0 25px 50px rgb(0 0 0 / 0.45);
}

html[data-theme="dark"] .hero__figure-glow {
  background: linear-gradient(to bottom right, rgb(212 188 127 / 0.25), rgb(90 75 40 / 0.15), transparent);
}

html[data-theme="dark"] .section--white {
  background: var(--cream-100);
  border-bottom-color: rgb(212 188 127 / 0.18);
}

html[data-theme="dark"] .section--cream {
  background: var(--cream-50);
  border-bottom-color: rgb(212 188 127 / 0.18);
}

html[data-theme="dark"] .main--home .section__inner > .section-head + .section__intro {
  border-bottom-color: rgb(212 188 127 / 0.18);
}

html[data-theme="dark"] .award-card {
  border-color: rgb(212 188 127 / 0.28);
  background: rgb(24 22 19 / 0.85);
  box-shadow: 0 1px 3px rgb(0 0 0 / 0.25);
}

html[data-theme="dark"] .award-card:hover {
  box-shadow: 0 4px 12px rgb(0 0 0 / 0.35);
}

html[data-theme="dark"] .award-card__ring {
  background: linear-gradient(to bottom right, rgb(212 188 127 / 0.35), rgb(90 75 40 / 0.2));
}

html[data-theme="dark"] .hall-fame__decor {
  background: radial-gradient(ellipse at 30% 0%, rgb(212 188 127 / 0.12), transparent 55%);
}

html[data-theme="dark"] .hall-card {
  border-color: rgb(212 188 127 / 0.28);
  background: rgb(22 20 18 / 0.92);
  box-shadow: 0 4px 20px rgb(0 0 0 / 0.3);
}

html[data-theme="dark"] .hall-card__label {
  color: #fbbf24;
}

html[data-theme="dark"] .vitrin-tile__card {
  background: linear-gradient(168deg, rgb(28 26 24 / 0.98), rgb(18 16 14));
  border-color: rgb(212 188 127 / 0.28);
  box-shadow: 0 12px 36px rgb(0 0 0 / 0.42);
}

html[data-theme="dark"] .vitrin-tile__frame {
  border-color: rgb(212 188 127 / 0.28);
  background: rgb(22 20 18);
  box-shadow: 0 6px 22px rgb(0 0 0 / 0.38);
}

html[data-theme="dark"] .vitrin-tile__kicker {
  color: var(--gold-400);
}

html[data-theme="dark"] .vitrin-tile__spotlight {
  color: var(--gold-200);
}

html[data-theme="dark"] .page-hero {
  border-bottom-color: rgb(212 188 127 / 0.2);
  background: linear-gradient(to bottom, var(--cream-100), var(--cream-50));
}

html[data-theme="dark"] .about-box {
  border-color: rgb(212 188 127 / 0.3);
  background: rgb(22 20 18 / 0.92);
  box-shadow: inset 0 2px 20px rgb(0 0 0 / 0.2);
}

html[data-theme="dark"] .story-board__frame {
  border-color: rgb(212 188 127 / 0.3);
  background: rgb(22 20 18 / 0.88);
  box-shadow:
    0 4px 8px rgb(0 0 0 / 0.35),
    0 28px 55px rgb(0 0 0 / 0.4);
}

html[data-theme="dark"] .story-board__frame::after {
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 0.06);
}

html[data-theme="dark"] .story-values {
  border-color: rgb(212 188 127 / 0.32);
  background: linear-gradient(165deg, rgb(28 26 23 / 0.96), rgb(20 18 16 / 0.98));
  box-shadow: 0 1px 4px rgb(0 0 0 / 0.35);
}

html[data-theme="dark"] .story-values__panel {
  border-bottom-color: rgb(212 188 127 / 0.22);
}

html[data-theme="dark"] .story-values__notes li {
  background: linear-gradient(90deg, rgb(40 36 30 / 0.75), transparent);
  border-left-color: var(--gold-400);
}

html[data-theme="dark"] .portrait-card {
  border-color: rgb(212 188 127 / 0.4);
  box-shadow: 0 20px 40px rgb(0 0 0 / 0.45);
}

html[data-theme="dark"] .contact-card {
  border-color: rgb(212 188 127 / 0.3);
  background: rgb(22 20 18 / 0.95);
  box-shadow: 0 1px 3px rgb(0 0 0 / 0.25);
}

html[data-theme="dark"] .contact-mail-form__input,
html[data-theme="dark"] .contact-mail-form__textarea {
  border-color: rgb(212 188 127 / 0.35);
  background: rgb(18 16 14 / 0.95);
  color: var(--stone-800);
}

html[data-theme="dark"] .contact-mail-form__submit {
  border-color: rgb(212 188 127 / 0.45);
  background: linear-gradient(180deg, #2a2620, var(--gold-100));
  color: var(--gold-900);
}

html[data-theme="dark"] .contact-mail-form__submit:hover {
  border-color: var(--gold-400);
  color: #fffefb;
}

html[data-theme="dark"] .contact-intro {
  color: var(--stone-700);
}

html[data-theme="dark"] .contact-intro strong {
  color: #faf6e8;
}

html[data-theme="dark"] .contact-page .contact-card h2,
html[data-theme="dark"] .contact-page .contact-mail-form h2 {
  color: #faf6e8;
}

html[data-theme="dark"] .contact-page .contact-card dt {
  color: #ece8e4;
}

html[data-theme="dark"] .contact-page .contact-card dd {
  color: var(--stone-700);
}

html[data-theme="dark"] .contact-page .contact-card a {
  color: #e9d5a8;
}

html[data-theme="dark"] .contact-page .contact-card a:hover {
  color: #fef3c7;
}

html[data-theme="dark"] .contact-card__fineprint {
  color: var(--stone-500);
}

html[data-theme="dark"] .contact-page .contact-mail-form__hint {
  color: var(--stone-500);
}

html[data-theme="dark"] .contact-page .contact-mail-form__label-text {
  color: #d8d3cd;
}

html[data-theme="dark"] .contact-mail-form__input::placeholder,
html[data-theme="dark"] .contact-mail-form__textarea::placeholder {
  color: #948f88;
  opacity: 1;
}

html[data-theme="dark"] .map-frame {
  border-color: rgb(212 188 127 / 0.3);
  box-shadow: 0 2px 12px rgb(0 0 0 / 0.35);
}

html[data-theme="dark"] .menu-toc {
  border-color: rgb(212 188 127 / 0.32);
  background: rgb(22 20 18 / 0.96);
  box-shadow: 0 1px 6px rgb(0 0 0 / 0.35);
}

html[data-theme="dark"] .menu-toc a {
  color: #e9d5a8;
  background: rgb(30 28 25 / 0.9);
  border-color: transparent;
}

html[data-theme="dark"] .menu-toc a:hover {
  background: rgb(42 38 32 / 0.95);
  border-color: rgb(212 188 127 / 0.4);
  color: #faf6e8;
}

html[data-theme="dark"] .menu-toc a.is-active {
  background: rgb(52 45 36 / 0.98);
  border-color: rgb(212 188 127 / 0.5);
  color: #fefce8;
}

html[data-theme="dark"] .menu-page__loading-label {
  color: var(--stone-800);
}

html[data-theme="dark"] .menu-page__loading-spinner {
  border-color: rgb(120 100 70 / 0.45);
  border-top-color: var(--gold-500);
}

html[data-theme="dark"] .menu-skeleton__section {
  background: rgb(22 20 18 / 0.95);
  border-color: rgb(212 188 127 / 0.28);
  box-shadow: 0 1px 4px rgb(0 0 0 / 0.25);
}

html[data-theme="dark"] .menu-skeleton__title {
  background: linear-gradient(90deg, rgb(42 38 34) 0%, rgb(52 46 40) 45%, rgb(42 38 34) 90%);
  background-size: 220% 100%;
}

html[data-theme="dark"] .menu-skeleton__intro {
  background: linear-gradient(90deg, rgb(38 35 32) 0%, rgb(48 43 38) 50%, rgb(38 35 32) 100%);
  background-size: 220% 100%;
}

html[data-theme="dark"] .menu-skeleton__item {
  background: rgb(18 16 14 / 0.92);
  border-color: rgb(212 188 127 / 0.22);
}

html[data-theme="dark"] .menu-skeleton__thumb {
  background: linear-gradient(120deg, rgb(40 36 32) 0%, rgb(52 46 40) 50%, rgb(40 36 32) 100%);
  background-size: 200% 100%;
}

html[data-theme="dark"] .menu-skeleton__name {
  background: linear-gradient(90deg, rgb(42 38 34) 0%, rgb(55 48 42) 45%, rgb(42 38 34) 90%);
  background-size: 220% 100%;
}

html[data-theme="dark"] .menu-skeleton__price {
  background: linear-gradient(90deg, rgb(44 40 36) 0%, rgb(56 50 44) 50%, rgb(44 40 36) 100%);
  background-size: 200% 100%;
}

html[data-theme="dark"] .menu-skeleton__desc {
  background: linear-gradient(90deg, rgb(40 37 34) 0%, rgb(50 45 40) 50%, rgb(40 37 34) 100%);
  background-size: 220% 100%;
}

html[data-theme="dark"] .menu-toc__sk-pill {
  background: linear-gradient(90deg, rgb(42 38 34) 0%, rgb(52 46 40) 50%, rgb(42 38 34) 100%);
  background-size: 200% 100%;
}

html[data-theme="dark"] .menu-page--styled .menu-section {
  background: rgb(22 20 18 / 0.95);
  border-color: rgb(212 188 127 / 0.28);
  box-shadow: 0 1px 4px rgb(0 0 0 / 0.25);
}

html[data-theme="dark"] .menu-section--featured {
  background: rgb(28 25 20 / 0.98) !important;
  border-color: rgb(197 168 90 / 0.35) !important;
  box-shadow: 0 1px 6px rgb(0 0 0 / 0.3) !important;
}

html[data-theme="dark"] .menu-page--styled .menu-item {
  border-color: rgb(212 188 127 / 0.22);
  background: rgb(18 16 14 / 0.92);
}

html[data-theme="dark"] .menu-page--styled .menu-item:hover {
  box-shadow: 0 2px 8px rgb(0 0 0 / 0.35);
}

html[data-theme="dark"] .menu-item__thumb {
  border-color: rgb(120 100 70 / 0.35);
  background: rgb(40 36 32 / 0.9);
}

html[data-theme="dark"] .menu-simple__thumb {
  border-color: rgb(120 100 70 / 0.35);
  background: rgb(40 36 32 / 0.9);
}

html[data-theme="dark"] .menu-section__note {
  background: rgb(24 22 19 / 0.9);
  border-color: rgb(212 188 127 / 0.3);
  color: var(--stone-700);
}

html[data-theme="dark"] .menu-section__intro {
  color: var(--stone-700);
}

html[data-theme="dark"] .menu-section__intro strong {
  color: #faf6e8;
}

html[data-theme="dark"] .menu-item__name {
  color: #faf6e8;
}

html[data-theme="dark"] .menu-item__desc {
  color: var(--stone-700);
  border-top-color: rgb(212 188 127 / 0.22);
}

html[data-theme="dark"] .menu-item__meta {
  color: var(--stone-500);
}

html[data-theme="dark"] .menu-item__price {
  background: rgb(38 34 30 / 0.95);
  color: #f5edd8;
  border-color: rgb(212 188 127 / 0.38);
  box-shadow: none;
}

html[data-theme="dark"] .menu-item__price small {
  color: #c9c4bd;
}

html[data-theme="dark"] .menu-tag {
  color: #e8e4de;
  background: rgb(38 35 32 / 0.95);
  border-color: rgb(212 188 127 / 0.35);
}

html[data-theme="dark"] .menu-tag--organic {
  color: #fef3c7;
  background: rgb(55 48 38 / 0.9);
  border-color: rgb(212 188 127 / 0.45);
}

html[data-theme="dark"] .menu-item__award {
  color: #fecaca;
  background: rgb(127 29 29 / 0.25);
  border-color: rgb(248 113 113 / 0.35);
}

html[data-theme="dark"] .menu-simple li {
  background: rgb(26 24 22 / 0.92);
  border-color: rgb(212 188 127 / 0.28);
}

html[data-theme="dark"] .menu-simple span:first-child {
  color: #ebe7e2;
}

html[data-theme="dark"] .menu-sub {
  color: #d4bc7f;
}

html[data-theme="dark"] .menu-section__sub {
  color: #d4bc7f;
}

html[data-theme="dark"] .link-arrow {
  color: #e9d5a8;
  text-decoration-color: rgb(212 188 127 / 0.75);
}

html[data-theme="dark"] .link-arrow:hover {
  color: #faf6e8;
  text-decoration-color: #d4bc7f;
}

html[data-theme="dark"] .site-footer {
  border-top-color: rgb(68 64 60 / 0.8);
}

/* Koyu temada --stone-50 koyu kahve olduğu için marka adı kayboluyordu */
html[data-theme="dark"] .site-footer .brand__large {
  color: #fafaf9;
}

html[data-theme="dark"] .site-footer .brand:hover .brand__large {
  color: #fef3c7;
}

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

  .site-header--enter {
    animation: none;
  }

  .hero-animate .hero__text > *,
  .hero-animate .hero__visual,
  .page-hero-animate .page-hero__inner > * {
    animation: none !important;
    opacity: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .reveal.is-visible .animate-children > * {
    animation: none !important;
    opacity: 1 !important;
  }
}

/* Yazdırma (özellikle menü) */
@media print {
  .skip-link,
  .back-to-top,
  .nav-toggle,
  .theme-toggle,
  .lang-switch,
  .site-header,
  .site-footer,
  .menu-toc {
    display: none !important;
  }

  body {
    padding-top: 0 !important;
    background: #fff;
    color: #000;
  }

  .reveal,
  .reveal.is-visible .animate-children > * {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }

  .menu-page--styled .menu-section,
  .menu-page--styled .menu-item {
    box-shadow: none;
    break-inside: avoid;
  }
}
