/* Simyacı Kahvaltı & Çorba — logo paleti: çember yeşili, krem halka, altın, toprak kahve */
:root {
  --color-forest: #1e4d40;
  --color-forest-mid: #2a5f50;
  --color-forest-dark: #153529;
  --color-bg: #faf6e8;
  --color-cream: #f3ead4;
  --color-cream-bright: #fff9ec;
  --color-gold: #c9a227;
  /* Menü / hero birincil CTA — logodan biraz daha açık sarı */
  --color-gold-bright: #edd068;
  --color-gold-muted: #d4bc6a;
  --color-earth: #7a4f28;
  --color-ink: #122620;
  --color-text: #2a2419;
  --color-muted: #5e5a4a;
  --color-on-light: #2a2419;
  --color-on-dark: #fff9ec;
  --color-accent: var(--color-forest);
  --color-accent-dark: var(--color-forest-dark);
  --color-shadow-hero: rgba(21, 53, 41, 0.42);
  --font-display: "Arima Madurai", sans-serif;
  --font-body: "Arima Madurai", sans-serif;
  --radius: 6px;
  --shadow: 0 14px 42px rgba(21, 53, 41, 0.1);
  --shadow-soft: 0 8px 28px rgba(21, 53, 41, 0.06);
  --line-rgb: 21, 53, 41;
  --font-nav: "Arima Madurai", sans-serif;
  --nav-color: #2d3834;
  --nav-font-size: 14px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
}

/* Scroll reveal animations (home) */
[data-reveal],
[data-reveal-group] [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition:
    transform 1100ms cubic-bezier(0.2, 0.9, 0.2, 1),
    opacity 1100ms ease;
  will-change: transform, opacity;
}

[data-reveal="left"],
[data-reveal-group] [data-reveal="left"] {
  transform: translate3d(-28px, 10px, 0);
}

[data-reveal="right"],
[data-reveal-group] [data-reveal="right"] {
  transform: translate3d(28px, 10px, 0);
}

[data-reveal="up"],
[data-reveal-group] [data-reveal="up"] {
  transform: translate3d(0, 22px, 0);
}

.is-revealed,
.is-revealed [data-reveal] {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  [data-reveal-group] [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

html.is-modal-open,
body.is-modal-open {
  overflow: hidden;
}

::selection {
  background: rgba(201, 162, 39, 0.38);
  color: var(--color-text);
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

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

a {
  color: var(--color-accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.narrow {
  max-width: 720px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 232, 0.93);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(var(--line-rgb), 0.1);
  overflow: visible;
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: clamp(1.75rem, 5vw, 3.5rem);
  row-gap: 0.75rem;
  padding: 0.65rem 0;
  position: relative;
  overflow: visible;
}

.nav-cluster {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem clamp(1.35rem, 2.8vw, 2.25rem);
}

.nav-cluster a {
  font-family: var(--font-nav);
  font-size: var(--nav-font-size);
  color: var(--nav-color);
  font-weight: 500;
  text-decoration: none;
}

.nav-cluster a:hover {
  color: var(--color-forest-mid);
  text-decoration: none;
}

.nav-cluster a.active {
  color: var(--nav-color);
  font-weight: 600;
}

.nav-cluster--left {
  grid-column: 1;
  justify-self: end;
  padding-right: clamp(0.35rem, 1.2vw, 0.85rem);
}

.header-logo {
  grid-column: 2;
  justify-self: center;
  align-self: center;
  text-decoration: none;
  line-height: 0;
  position: relative;
  z-index: 2;
  /* Layout’ta aynı “slot”; görsel 2.5x — çoğunlukla aşağı (hero) taşar */
  transform: scale(2.5);
  transform-origin: center top;
}

.header-logo:hover {
  opacity: 0.88;
  text-decoration: none;
}

.header-logo img {
  display: block;
  height: clamp(44px, 8vw, 56px);
  width: auto;
  max-width: min(200px, 42vw);
  object-fit: contain;
}

.header-end {
  grid-column: 3;
  justify-self: stretch;
  padding-left: clamp(0.35rem, 1.2vw, 0.85rem);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.5rem clamp(0.65rem, 1.8vw, 1.15rem);
}

/* Blog + İletişim + sosyal — logo yanı (eski sağ blok); Menü butonu ayrı en sağda */
.header-end-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem clamp(0.5rem, 1.5vw, 1rem);
  min-width: 0;
}

.header-end-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem 0.65rem;
  margin-left: auto;
}

.header-menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 7.5rem;
  padding: 0.48rem 1.85rem;
  font-family: var(--font-nav);
  font-size: var(--nav-font-size);
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none !important;
  border-radius: var(--radius);
  background: var(--color-gold-bright);
  color: var(--color-forest-dark) !important;
  border: 2px solid var(--color-gold-bright);
  flex-shrink: 0;
  box-shadow: 0 3px 18px rgba(237, 208, 104, 0.5);
}

.nav-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  text-decoration: none !important;
  flex-shrink: 0;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.nav-pill:hover {
  transform: scale(1.06);
}

.nav-pill__svg {
  display: block;
}

.nav-pill--instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
  box-shadow: 0 3px 12px rgba(188, 24, 136, 0.35);
}

.nav-pill--whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 3px 12px rgba(37, 211, 102, 0.4);
}

.nav-drawer-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(var(--line-rgb), 0.12);
}

.header-menu-btn:hover {
  background: var(--color-forest-mid);
  border-color: var(--color-forest-mid);
  color: var(--color-on-dark) !important;
}

.header-menu-btn.is-active {
  background: var(--color-forest-dark);
  border-color: var(--color-gold);
  color: var(--color-on-dark) !important;
}

/* Menü modal */
.menu-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  --menu-zoom: 1;
  --menu-pan-x: 0px;
  --menu-pan-y: 0px;
}

.menu-modal.is-open {
  display: block;
}

.menu-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 18, 16, 0.68);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.menu-modal__panel {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(1240px, 96vw);
  max-height: 92vh;
  background: rgba(255, 249, 236, 0.16);
  border-radius: 16px;
  border: 1px solid rgba(255, 249, 236, 0.22);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.38);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
  outline: none;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.container--menu-page {
  width: min(1240px, 96vw);
}

.section-menu-page {
  padding-top: clamp(2.5rem, 6vw, 4rem);
}

.is-menu-page .site-footer,
.is-menu-page .site-header {
  display: none;
}

.menu-sheet {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(1.25rem, 3vw, 2.25rem);
  background: #fbf5e6;
}

.menu-sheet__inner {
  width: min(760px, 96vw);
  background: #fbf5e6;
  border-radius: 22px;
  padding: clamp(1.2rem, 2.4vw, 1.8rem);
}

.menu-sheet__top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.menu-sheet__spacer {
  height: 1px;
}

.menu-sheet__logo {
  display: grid;
  place-items: center;
}

.menu-sheet__logo img {
  width: min(220px, 44vw);
  height: auto;
}

.menu-sheet__word {
  font-family: "Arima Madurai", sans-serif;
  font-weight: 900;
  font-size: clamp(2.1rem, 5vw, 3.2rem);
  letter-spacing: 0.02em;
  color: #1a1712;
  justify-self: end;
  margin-top: 0.25rem;
}

.menu-sheet__grid {
  --menu-grid-gap: clamp(1.4rem, 3vw, 2.2rem);
  --menu-slot-gap: clamp(1.1rem, 2.2vw, 1.55rem);
  --menu-card-min-h: clamp(120px, 14vw, 170px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--menu-grid-gap);
  align-items: start;
}

.menu-sheet__col {
  display: grid;
  gap: var(--menu-slot-gap);
}

.menu-slot__label {
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: rgba(18, 38, 32, 0.7);
  margin-bottom: 0.5rem;
}

.menu-slot__label--right {
  margin-top: 0.15rem;
}

.menu-card-sim {
  position: relative;
  border-radius: 18px;
  min-height: var(--menu-card-min-h);
  padding: 0.95rem 0.95rem 0.95rem;
  box-shadow: 0 14px 32px rgba(21, 53, 41, 0.12);
  overflow: visible; /* görsel karttan taşabilsin */
}

.menu-card-sim--tall {
  /* Sağ kolondaki her kart = soldaki 2 kart yüksekliği + aradaki boşluk */
  min-height: calc(var(--menu-card-min-h) + var(--menu-card-min-h) + var(--menu-slot-gap));
  padding-top: 1.1rem;
}

.menu-card-sim__img {
  position: absolute;
  left: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(92px, 16vw, 142px);
  height: auto;
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.18));
  z-index: 2;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.menu-card-sim__img--right {
  left: -12%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(110px, 18vw, 170px);
}

.menu-card-sim__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
  padding-left: clamp(90px, 13vw, 132px); /* görsel boşluğu (biraz sola) */
}

.menu-card-sim__list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  align-items: baseline;
  color: rgba(18, 38, 32, 0.92);
  font-weight: 800;
  font-size: 0.9rem; /* 1 punto küçük */
}

.menu-card-sim__empty {
  opacity: 0.18;
}

.menu-card-sim__list li span {
  min-width: 0;
  overflow: visible;
  text-overflow: clip;
  white-space: normal;
}

.menu-card-sim__list li strong {
  font-weight: 950;
  color: rgba(18, 38, 32, 0.92);
}

.menu-card-sim--toast { background: #d7c9c7; }
.menu-card-sim--soup { background: #f4783a; }
.menu-card-sim--breakfast { background: #e3b05a; }
.menu-card-sim--dessert { background: #eadbc5; }
.menu-card-sim--main { background: #b9d367; }
.menu-card-sim--drink { background: #f5b073; }

/* İçecekler görseli: çok az sola */
.menu-card-sim--drink .menu-card-sim__img--right {
  left: -18%;
}

.menu-sheet__bottom {
  margin-top: 1.25rem;
  text-align: center;
}

.menu-sheet__thanks {
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: rgba(18, 38, 32, 0.92);
  margin-bottom: 0.75rem;
}

.menu-sheet__address {
  font-weight: 900;
  font-size: 0.8rem;
  color: rgba(18, 38, 32, 0.85);
}

@media (max-width: 720px) {
  .menu-sheet__grid {
    grid-template-columns: 1fr;
  }
  .menu-card-sim__list {
    padding-left: clamp(88px, 20vw, 124px);
  }
  .menu-card-sim__img,
  .menu-card-sim__img--right {
    left: -10%;
  }
}

.menu-page-panel {
  background: rgba(255, 249, 236, 0.16);
  border-radius: 16px;
  border: 1px solid rgba(255, 249, 236, 0.22);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.menu-page-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.1rem;
  border-bottom: 1px solid rgba(255, 249, 236, 0.14);
  background: linear-gradient(180deg, rgba(255, 249, 236, 0.22) 0%, rgba(243, 234, 212, 0.12) 100%);
}

.menu-page-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-forest-dark);
}

.menu-page-body {
  padding: 0.65rem 0.75rem;
  background: transparent;
  overflow: hidden;
  min-height: min(78vh, 980px);
}

.menu-board {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(1rem, 2.2vw, 1.5rem);
  align-items: start;
}

.menu-board__left {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.9rem, 2vw, 1.2rem);
}

.menu-card-public {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 249, 236, 0.22);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
  padding: 1.05rem 1.05rem 1.1rem;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.menu-card-public__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  letter-spacing: 0.01em;
  color: rgba(255, 249, 236, 0.98);
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.32);
}

.menu-card-public__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
}

.menu-card-public__list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  align-items: baseline;
  color: rgba(255, 249, 236, 0.92);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.28);
  font-weight: 650;
}

.menu-card-public__item {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.menu-card-public__price {
  font-weight: 950;
  color: rgba(255, 249, 236, 0.98);
}

.menu-card-public.tone-1 {
  background: linear-gradient(140deg, rgba(30, 77, 64, 0.92), rgba(21, 53, 41, 0.74));
}
.menu-card-public.tone-2 {
  background: linear-gradient(140deg, rgba(122, 79, 40, 0.92), rgba(88, 52, 24, 0.74));
}
.menu-card-public.tone-3 {
  background: linear-gradient(140deg, rgba(201, 162, 39, 0.88), rgba(180, 140, 18, 0.7));
}
.menu-card-public.tone-4 {
  background: linear-gradient(140deg, rgba(42, 95, 80, 0.9), rgba(30, 77, 64, 0.72));
}

.menu-board__right {
  display: grid;
  gap: clamp(0.9rem, 2vw, 1.2rem);
  position: sticky;
  top: 6.25rem;
}

.menu-photo {
  border-radius: 18px;
  border: 1px solid rgba(var(--line-rgb), 0.12);
  background: linear-gradient(145deg, rgba(255, 249, 236, 0.7), rgba(243, 234, 212, 0.35));
  box-shadow: 0 18px 44px rgba(21, 53, 41, 0.12);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  display: grid;
  place-items: center;
  text-align: center;
}

.menu-photo__hint {
  color: rgba(42, 36, 25, 0.72);
  font-weight: 800;
  padding: 1rem;
}

@media (max-width: 980px) {
  .menu-board {
    grid-template-columns: 1fr;
  }
  .menu-board__right {
    position: static;
  }
}

@media (max-width: 680px) {
  .menu-board__left {
    grid-template-columns: 1fr;
  }
}

.menu-modal__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.1rem;
  border-bottom: 1px solid rgba(255, 249, 236, 0.14);
  background: linear-gradient(180deg, rgba(255, 249, 236, 0.22) 0%, rgba(243, 234, 212, 0.12) 100%);
}

.menu-modal__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-forest-dark);
}

.menu-modal__actions {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.menu-zoom-btn {
  appearance: none;
  border: 1px solid rgba(255, 249, 236, 0.22);
  background: rgba(12, 18, 16, 0.22);
  color: var(--color-on-dark);
  height: 2.4rem;
  min-width: 2.4rem;
  padding: 0 0.7rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.menu-zoom-btn:hover {
  background: rgba(255, 249, 236, 0.16);
}

.menu-modal__close {
  appearance: none;
  border: 1px solid rgba(255, 249, 236, 0.22);
  background: rgba(12, 18, 16, 0.22);
  color: var(--color-on-dark);
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
  display: grid;
  place-items: center;
}

.menu-modal__close:hover {
  background: rgba(255, 249, 236, 0.16);
}

.menu-modal__body {
  padding: 0.65rem 0.75rem;
  overflow: auto;
  background: transparent;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge legacy */
  display: block;
}

.menu-modal__body::-webkit-scrollbar {
  width: 0;
  height: 0;
}

/* Modal içinde menü sheet uyumu */
.menu-modal__body .menu-sheet {
  min-height: auto;
  padding: 0;
  background: transparent;
}

.menu-modal__body .menu-sheet__inner {
  width: min(840px, 100%);
  margin: 0 auto;
  /* Modal kenarlarında güvenli boşluk + taşan görseli kırp */
  padding: clamp(1.1rem, 2.6vw, 1.75rem);
  border-radius: 18px;
  overflow: visible;
}

/* Modal içinde görselleri biraz içeri al (dışarı taşmasın) */
.menu-modal__body .menu-card-sim__img,
.menu-modal__body .menu-card-sim__img--right {
  left: -6%;
}

/* İçecekler: modalda da karttan dışarı daha çok taşsın */
.menu-modal__body .menu-card-sim--drink .menu-card-sim__img--right {
  left: -14%;
}

/* Mobilde (menü sayfası): biraz daha dar */
@media (max-width: 520px) {
  #menuSheet .menu-sheet__inner {
    width: min(660px, 92vw);
    padding: 1.05rem;
  }
}

/* Mobilde: modal daha dar, içerik daha kompakt */
@media (max-width: 520px) {
  .menu-modal__panel {
    width: 92vw;
    max-height: 90vh;
  }

  .menu-modal__body {
    padding: 0.5rem;
  }

  .menu-modal__body .menu-sheet__inner {
    width: min(620px, 86vw);
    padding: 0.95rem;
    border-radius: 16px;
    overflow: visible;
  }

  /* Mobil modal: içecekler görselini biraz daha sola al */
  .menu-modal__body .menu-card-sim--drink .menu-card-sim__img--right {
    left: -10%;
    width: clamp(140px, 30vw, 220px);
  }
}


.menu-modal__bottom {
  padding: 0.9rem 1.1rem 1.05rem;
  border-top: 1px solid rgba(var(--line-rgb), 0.08);
  display: flex;
  justify-content: flex-end;
  background: rgba(255, 249, 236, 0.9);
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--color-muted);
  background: transparent;
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  z-index: 2;
}

.nav-toggle::before,
.nav-toggle::after {
  content: "";
  position: absolute;
  left: 0.5rem;
  right: 0.5rem;
  height: 2px;
  background: var(--color-text);
}

.nav-toggle::before {
  top: 0.85rem;
  box-shadow: 0 6px 0 var(--color-text);
}

.nav-toggle::after {
  bottom: 0.85rem;
}

.nav-social {
  display: inline-flex;
  gap: 0.5rem;
  margin-left: 0;
  padding-left: clamp(0.65rem, 1.5vw, 1.1rem);
  border-left: 1px solid rgba(var(--line-rgb), 0.14);
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--color-cream-bright);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-forest-dark);
  text-decoration: none;
}

.social-icon:hover {
  background: var(--color-forest);
  color: var(--color-on-dark);
  text-decoration: none;
}

.nav-drawer {
  display: none;
  grid-column: 1 / -1;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0 0 0.75rem;
  border-top: 1px solid transparent;
}

.nav-drawer.is-open {
  display: flex;
  border-top-color: rgba(var(--line-rgb), 0.12);
  margin-top: 0.35rem;
  padding-top: 0.85rem;
}

.nav-drawer a {
  font-family: var(--font-nav);
  font-size: var(--nav-font-size);
  color: var(--nav-color);
  font-weight: 500;
  text-decoration: none;
  padding: 0.25rem 0;
}

.nav-drawer a:hover {
  color: var(--color-forest-mid);
  text-decoration: none;
}

.nav-drawer a.active {
  color: var(--nav-color);
  font-weight: 600;
}

.nav-drawer-menu {
  appearance: none;
  border: 1px solid rgba(var(--line-rgb), 0.14);
  background: rgba(255, 249, 236, 0.08);
  color: var(--nav-color);
  font-family: var(--font-nav);
  font-size: var(--nav-font-size);
  font-weight: 600;
  border-radius: 999px;
  padding: 0.55rem 0.85rem;
  cursor: pointer;
  margin-top: 0.35rem;
}

.nav-drawer-menu:hover {
  background: rgba(255, 249, 236, 0.16);
}

.nav-drawer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.35rem;
}

@media (max-width: 900px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
  }

  .nav-toggle {
    display: block;
  }

  .nav-cluster--left,
  .header-end {
    display: none;
  }

  .header-logo {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
  }

  .nav-drawer {
    grid-row: 2;
  }

  .nav-social {
    border-left: none;
    padding-left: 0;
    margin-left: 0;
  }
}

/* Ana sayfa: navbar ile hero tek blok, görsel en üstten */
body.is-home {
  --header-overlap: 5.75rem;
}

body.is-home .site-main > .hero.hero--under-nav:first-child {
  margin-top: calc(-1 * var(--header-overlap));
  min-height: calc(100vh + var(--header-overlap));
  min-height: calc(100dvh + var(--header-overlap));
}

body.is-home .site-header:not(.header--solid) {
  background: linear-gradient(
    to bottom,
    rgba(21, 53, 41, 0.78) 0%,
    rgba(21, 53, 41, 0.32) 52%,
    transparent 100%
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom-color: rgba(255, 255, 255, 0.14);
}

body.is-home .site-header:not(.header--solid) .nav-cluster a,
body.is-home .site-header:not(.header--solid) .nav-drawer a {
  color: var(--color-on-dark);
  text-shadow: 0 1px 5px var(--color-shadow-hero);
}

body.is-home .site-header:not(.header--solid) .nav-cluster a:hover,
body.is-home .site-header:not(.header--solid) .nav-cluster a.active {
  color: var(--color-gold-muted);
  opacity: 1;
}

body.is-home .site-header:not(.header--solid) .nav-toggle {
  border-color: rgba(255, 255, 255, 0.45);
}

body.is-home .site-header:not(.header--solid) .nav-toggle::before,
body.is-home .site-header:not(.header--solid) .nav-toggle::after {
  background: var(--color-on-dark);
}

body.is-home .site-header:not(.header--solid) .nav-social {
  border-left-color: rgba(255, 255, 255, 0.28);
}

body.is-home .site-header:not(.header--solid) .nav-pill--instagram {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

body.is-home .site-header:not(.header--solid) .nav-pill--whatsapp {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

body.is-home .site-header.header--solid {
  background: rgba(250, 246, 232, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(var(--line-rgb), 0.1);
}

body.is-home .site-header.header--solid .nav-cluster a,
body.is-home .site-header.header--solid .nav-drawer a {
  color: var(--nav-color);
  text-shadow: none;
}

body.is-home .site-header.header--solid .nav-cluster a:hover {
  color: var(--color-forest-mid);
}

body.is-home .site-header.header--solid .nav-cluster a.active {
  color: var(--nav-color);
  opacity: 1;
}

body.is-home .site-header.header--solid .nav-toggle {
  border-color: var(--color-muted);
}

body.is-home .site-header.header--solid .nav-toggle::before,
body.is-home .site-header.header--solid .nav-toggle::after {
  background: var(--color-text);
}

body.is-home .site-header.header--solid .nav-social {
  border-left-color: rgba(var(--line-rgb), 0.14);
}


body.is-home .site-header:not(.header--solid) .header-menu-btn {
  background: var(--color-gold-bright);
  color: var(--color-forest-dark) !important;
  border-color: var(--color-gold-bright);
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.32);
}

body.is-home .site-header:not(.header--solid) .header-menu-btn:hover {
  background: #ffffff;
  border-color: var(--color-gold-bright);
  color: var(--color-forest-dark) !important;
}

body.is-home .site-header:not(.header--solid) .header-menu-btn.is-active {
  background: var(--color-forest-dark);
  border-color: var(--color-gold);
  color: var(--color-on-dark) !important;
}

body.is-home .site-header.header--solid .header-menu-btn {
  background: var(--color-gold-bright);
  color: var(--color-forest-dark) !important;
  border-color: var(--color-gold-bright);
  box-shadow: 0 3px 18px rgba(237, 208, 104, 0.45);
}

body.is-home .site-header.header--solid .header-menu-btn:hover {
  background: var(--color-forest-mid);
  border-color: var(--color-forest-mid);
}

body.is-home .site-header.header--solid .header-menu-btn.is-active {
  background: var(--color-forest-dark);
  border-color: var(--color-gold);
  color: var(--color-on-dark) !important;
}

/* Hero */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--color-forest-dark) 0%,
    var(--color-earth) 42%,
    var(--color-ink) 100%
  );
  background-size: cover;
  background-position: center;
  color: var(--color-on-dark);
  text-align: center;
}

.hero--fullscreen {
  min-height: 100vh;
  min-height: 100dvh;
  padding: 0;
  display: grid;
  place-items: center;
  background: var(--color-forest-dark);
}

.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to bottom,
      rgba(21, 53, 41, 0.38) 0%,
      rgba(18, 28, 22, 0.48) 42%,
      rgba(12, 18, 16, 0.58) 100%
    );
  pointer-events: none;
}

.hero-content--cta {
  z-index: 2;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 2.25rem);
}

/* Tam ekran hero (hero-section.webp): karşılama tipografisi — Arima Madurai */
.hero-welcome {
  font-family: "Arima Madurai", var(--font-nav), system-ui, sans-serif;
  text-align: center;
  max-width: min(36rem, 92vw);
  color: var(--color-on-dark);
}

.hero-welcome__brand {
  margin: 0 0 0.4rem;
  font-size: clamp(1rem, 2.8vw + 0.35rem, 25px);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-gold-muted);
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.55),
    0 2px 28px rgba(21, 53, 41, 0.65);
}

.hero-welcome__title {
  margin: 0 0 0.75rem;
  font-size: clamp(2.5rem, 9vw + 1.25rem, 75px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: 0.02em;
  text-shadow:
    0 2px 6px rgba(0, 0, 0, 0.45),
    0 6px 48px rgba(21, 53, 41, 0.55);
}

.hero-welcome__tag {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.01em;
  color: rgba(255, 249, 236, 0.94);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.5);
}

.hero__cta {
  font-size: 1rem;
  padding: 0.85rem 1.75rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  justify-content: center;
  align-items: center;
}

.hero__actions .hero__cta {
  box-shadow: 0 10px 36px var(--color-shadow-hero);
}

.hero--image {
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 4rem 0;
}

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

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--color-gold-muted);
  opacity: 0.95;
  margin: 0 0 0.5rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin: 0 0 1rem;
  line-height: 1.15;
  color: var(--color-on-dark);
  text-shadow: 0 2px 28px var(--color-shadow-hero);
}

.hero-sub {
  font-size: 1.15rem;
  max-width: 36rem;
  margin: 0 auto 1.75rem;
  opacity: 0.95;
  color: rgba(255, 249, 236, 0.94);
  text-shadow: 0 1px 16px rgba(21, 53, 41, 0.5);
}

/* Buttons — logo: yeşil birincil, krem açık, altın çerçeve ikincil */
.btn {
  display: inline-block;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius);
  background: var(--color-forest);
  color: var(--color-on-dark) !important;
  font-weight: 600;
  text-decoration: none !important;
  border: 2px solid var(--color-forest);
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(21, 53, 41, 0.2);
}

.btn:hover {
  background: var(--color-forest-mid);
  border-color: var(--color-forest-mid);
  box-shadow: 0 6px 22px rgba(21, 53, 41, 0.28);
}

.btn:active {
  background: var(--color-forest-dark);
  border-color: var(--color-forest-dark);
}

.btn-light {
  background: var(--color-gold-bright);
  color: var(--color-forest-dark) !important;
  border: 2px solid var(--color-gold-bright);
  box-shadow: 0 6px 30px rgba(237, 208, 104, 0.48);
}

.btn-light:hover {
  background: #ffffff;
  border-color: var(--color-gold-bright);
  color: var(--color-forest-dark) !important;
}

.btn-outline {
  background: transparent;
  color: var(--color-forest-dark) !important;
  border: 2px solid var(--color-gold-bright);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--color-gold-bright);
  border-color: var(--color-gold-bright);
  color: var(--color-forest-dark) !important;
  box-shadow: 0 4px 20px rgba(237, 208, 104, 0.35);
}

/* Yol tarifi al — yeşil birincil (hero) */
.btn-ghost {
  background: var(--color-forest);
  color: var(--color-on-dark) !important;
  border: 2px solid var(--color-forest);
  box-shadow: 0 6px 28px rgba(21, 53, 41, 0.38);
}

.btn-ghost:hover {
  background: var(--color-forest-mid);
  border-color: var(--color-forest-mid);
  color: var(--color-on-dark) !important;
  box-shadow: 0 8px 32px rgba(21, 53, 41, 0.42);
}

/* Sections */
.section {
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.section-muted {
  background: var(--color-cream);
  border-block: 1px solid rgba(var(--line-rgb), 0.06);
}

/* Ana sayfa: Menüden seçtiklerimiz arka plan görseli */
.section-menu-picks {
  position: relative;
  overflow: hidden;
}

.section-menu-picks::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/menu-sectik.webp");
  background-repeat: no-repeat;
  background-size: 140% auto; /* daha çok “görüntü” yakalamak için */
  background-position: center top;
  transform: translateZ(0);
  will-change: background-position;
  animation: menuPicksPan 18s ease-in-out infinite alternate;
  z-index: 0;
}

.section-menu-picks::after {
  content: "";
  position: absolute;
  inset: 0;
  /* Overlay'i azaltılmış cam hissi */
  background: linear-gradient(
    rgba(243, 234, 212, 0.55),
    rgba(243, 234, 212, 0.28)
  );
  z-index: 0;
}

.section-menu-picks .container {
  position: relative;
  z-index: 1;
}

@keyframes menuPicksPan {
  0% {
    background-position: center top;
  }
  100% {
    background-position: center bottom;
  }
}

/* Ana sayfa banner alanı (görsel sadece durur) */
.section-banner {
  position: relative;
  overflow: hidden;
}

.section-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/ensevilenlezzetler.webp");
  background-repeat: no-repeat;
  background-size: 140% auto; /* daha çok “görüntü” alanı yakalamak için */
  background-position: center top;
  z-index: 0;
  animation: menuPicksPan 18s ease-in-out infinite alternate;
  will-change: background-position;
}

.section-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(243, 234, 212, 0.62),
    rgba(243, 234, 212, 0.35)
  );
  z-index: 0;
}

.section-banner .container {
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .section-menu-picks::before {
    animation: none;
  }
  .section-banner::before {
    animation: none;
  }
}

/* Menü modal: iframe içerik, animasyon yok */

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0 0 1rem;
  color: var(--color-forest-dark);
}

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

.section-lead {
  color: var(--color-muted);
  max-width: 42rem;
  margin: 0 auto 1.5rem;
}

.center {
  text-align: center;
}

.cta-row {
  margin-top: 1rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

/* Hikayemiz sayfası: iki sütunlu metin + yapışkan görsel */
.container--hikaye {
  width: min(1220px, 94vw);
}

.hikaye-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(260px, 0.88fr);
  gap: clamp(2rem, 4vw, 3.75rem);
  align-items: start;
}

.hikaye-page-copy {
  min-width: 0;
}

.prose--columns {
  column-count: 1;
}

@media (min-width: 900px) {
  .prose--columns {
    column-count: 2;
    column-gap: 2.25rem;
    column-rule: 1px solid rgba(var(--line-rgb), 0.1);
  }

  .hikaye-page-visual {
    position: sticky;
    top: 5.75rem;
  }
}

.hikaye-page-cta {
  margin-top: 1.75rem;
  margin-bottom: 0;
  break-inside: avoid;
}

.hikaye-figure {
  position: relative;
  margin: 0;
  padding: 0;
  border-radius: 12px;
}

.hikaye-figure .hikaye-photo {
  position: relative;
  z-index: 1;
  border-radius: 10px;
}

.hikaye-photo {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: min(88vh, 860px);
  object-fit: contain;
  object-position: center top;
  box-shadow: 0 20px 50px rgba(21, 53, 41, 0.18);
  transition: box-shadow 0.35s ease;
}

.hikaye-figure:hover .hikaye-photo {
  box-shadow: 0 26px 60px rgba(21, 53, 41, 0.22);
}

.placeholder-media--hikaye {
  width: 100%;
  min-height: min(55vh, 380px);
  aspect-ratio: auto;
  position: relative;
  z-index: 1;
}

@media (max-width: 899px) {
  .hikaye-page-grid {
    grid-template-columns: 1fr;
  }

  .hikaye-page-visual {
    order: -1;
    max-width: 520px;
    margin-inline: auto;
  }

  .hikaye-photo {
    max-height: min(70vh, 560px);
  }
}

.split-reverse .split-text {
  order: 2;
}

.split-reverse .split-media {
  order: 1;
}

@media (max-width: 800px) {
  .split,
  .split-reverse .split-text,
  .split-reverse .split-media {
    grid-template-columns: 1fr;
    order: unset;
  }
}

.split-media img,
.placeholder-media {
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.split-media--bg {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  padding: 0.85rem;
  background:
    linear-gradient(rgba(255, 249, 236, 0.72), rgba(255, 249, 236, 0.52)),
    var(--split-bg);
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(var(--line-rgb), 0.12);
  box-shadow: 0 18px 44px rgba(21, 53, 41, 0.12);
}

/* Mekan galerisi (kolaj düzen) */
.mekan-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  grid-auto-flow: dense;
}

.mekan-gallery__item {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(21, 53, 41, 0.12);
  border: 1px solid rgba(var(--line-rgb), 0.08);
  background: var(--color-cream);
  position: relative;
}

.mekan-gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 240px at 20% 0%, rgba(255, 255, 255, 0.35), transparent 50%);
  pointer-events: none;
  opacity: 0.9;
}

.mekan-gallery__item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.35s ease;
}

.mekan-gallery__item:hover img {
  transform: scale(1.05);
}

/* 7 foto: kolaj boyutları */
.mekan-gallery__item--1 {
  grid-column: span 2;
  aspect-ratio: 16 / 11;
}

.mekan-gallery__item--2 {
  grid-column: span 1;
  aspect-ratio: 1 / 1;
}

.mekan-gallery__item--3 {
  grid-column: span 1;
  aspect-ratio: 16 / 12;
}

.mekan-gallery__item--4 {
  grid-column: span 1;
  aspect-ratio: 4 / 5;
}

.mekan-gallery__item--5 {
  grid-column: span 1;
  aspect-ratio: 4 / 5;
}

.mekan-gallery__item--6 {
  grid-column: span 2;
  aspect-ratio: 16 / 10;
}

.mekan-gallery__item--7 {
  grid-column: span 4;
  aspect-ratio: 16 / 7;
}

@media (max-width: 900px) {
  .mekan-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .mekan-gallery__item--1,
  .mekan-gallery__item--2,
  .mekan-gallery__item--3,
  .mekan-gallery__item--4,
  .mekan-gallery__item--5,
  .mekan-gallery__item--6 {
    grid-column: span 1;
  }

  .mekan-gallery__item--1 {
    aspect-ratio: 16 / 12;
  }

  .mekan-gallery__item--2 {
    aspect-ratio: 1 / 1;
  }

  .mekan-gallery__item--3 {
    aspect-ratio: 4 / 3;
  }

  .mekan-gallery__item--4,
  .mekan-gallery__item--5 {
    aspect-ratio: 4 / 5;
  }

  .mekan-gallery__item--6 {
    grid-column: span 2;
    aspect-ratio: 16 / 10;
  }

  .mekan-gallery__item--7 {
    grid-column: span 2;
    aspect-ratio: 16 / 9;
  }
}

.placeholder-media {
  aspect-ratio: 4/3;
  background: linear-gradient(145deg, #ebe3cf, #d9ccb0);
}

.prose {
  color: var(--color-muted);
}

.prose.large {
  font-size: 1.05rem;
}

/* Cards / blog */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
}

/* Tabaklarimiz sayfasi */
.plates-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.plate-card {
  background: var(--color-cream-bright);
  border: 1px solid rgba(var(--line-rgb), 0.1);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}

.plate-card__media {
  appearance: none;
  border: 0;
  padding: 0;
  width: 100%;
  cursor: zoom-in;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(145deg, #ebe3cf, #d9ccb0);
}

.plate-card__media:disabled {
  cursor: default;
}

.plate-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.plate-card:hover .plate-card__media img {
  transform: scale(1.04);
}

.plate-card__placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--color-muted);
  padding: 1rem;
  text-align: center;
}

.plate-card__body {
  padding: 0.95rem 1rem 1.05rem;
}

.plate-card__details {
  margin: 0;
}

.plate-card__details > summary {
  list-style: none;
}

.plate-card__details > summary::-webkit-details-marker {
  display: none;
}

.plate-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-forest-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.plate-card__title::after {
  content: "+";
  font-weight: 800;
  color: var(--color-forest-mid);
}

.plate-card__details[open] .plate-card__title::after {
  content: "-";
}

.plate-card__ingredients {
  margin: 0.55rem 0 0;
  color: var(--color-muted);
  line-height: 1.55;
}

.plate-card__ingredients--muted {
  opacity: 0.82;
}

.plate-modal {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: none;
}

.plate-modal.is-open {
  display: block;
}

.plate-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(10, 14, 13, 0.76);
}

.plate-modal__panel {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(980px, 92vw);
  max-height: 90vh;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.42);
  background: #111;
}

.plate-modal__panel img {
  width: 100%;
  height: auto;
  max-height: 90vh;
  object-fit: contain;
  display: block;
}

.plate-modal__close {
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.42);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

/* Blog list layout */
.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.38fr);
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: start;
}

.blog-layout--detail {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
}

.blog-main {
  min-width: 0;
}

.blog-aside {
  position: sticky;
  top: 6.1rem;
}

.blog-widget--share .share-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

.share-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.blog-widget {
  background: var(--color-cream-bright);
  border: 1px solid rgba(var(--line-rgb), 0.08);
  box-shadow: var(--shadow-soft);
  border-radius: 12px;
  padding: 1.1rem 1.15rem;
  margin-bottom: 1rem;
}

.blog-widget h3 {
  font-family: var(--font-display);
  margin: 0 0 0.75rem;
  color: var(--color-forest-dark);
  font-size: 1.1rem;
}

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

.blog-list a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.45rem 0.5rem;
  border-radius: 8px;
  color: var(--color-forest-dark);
  text-decoration: none;
}

.blog-list a:hover {
  background: rgba(201, 162, 39, 0.12);
}

.blog-list a.is-active {
  background: rgba(201, 162, 39, 0.18);
  font-weight: 700;
}

.blog-list .count {
  font-variant-numeric: tabular-nums;
  color: var(--color-muted);
  font-size: 0.85rem;
}

.blog-search {
  background: var(--color-cream-bright);
  border: 1px solid rgba(var(--line-rgb), 0.08);
  box-shadow: var(--shadow-soft);
  border-radius: 12px;
  padding: 0.9rem;
  margin-bottom: 1.25rem;
}

.blog-search__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  align-items: center;
}

.blog-search__input {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
  border: 1px solid rgba(var(--line-rgb), 0.16);
  background: #fff;
  outline: none;
}

.blog-search__input:focus {
  border-color: rgba(201, 162, 39, 0.55);
  box-shadow: 0 0 0 3px rgba(237, 208, 104, 0.28);
}

.blog-search__active {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.6rem;
  align-items: center;
}

.blog-search__clear {
  font-weight: 700;
  color: var(--color-forest-mid);
  text-decoration: none;
}

.blog-search__clear:hover {
  text-decoration: underline;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(201, 162, 39, 0.14);
  border: 1px solid rgba(201, 162, 39, 0.22);
  color: var(--color-forest-dark);
  font-size: 0.85rem;
}

.chip--link {
  text-decoration: none;
  font-weight: 700;
}

.chip--link:hover {
  background: rgba(201, 162, 39, 0.22);
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  display: inline-flex;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: rgba(21, 53, 41, 0.06);
  border: 1px solid rgba(var(--line-rgb), 0.1);
  color: var(--color-forest-dark);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
}

.tag:hover {
  background: rgba(237, 208, 104, 0.22);
  border-color: rgba(201, 162, 39, 0.35);
}

.tag.is-active {
  background: rgba(237, 208, 104, 0.35);
  border-color: rgba(201, 162, 39, 0.55);
}

.muted {
  color: var(--color-muted);
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }

  .blog-aside {
    position: static;
  }

  .plates-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .plates-grid {
    grid-template-columns: 1fr;
  }
}

.card-blog {
  background: var(--color-cream-bright);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(var(--line-rgb), 0.07);
  display: flex;
  flex-direction: column;
}

.card-img-wrap {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.card-body h2,
.card-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0;
  color: var(--color-forest-dark);
}

.card-body p {
  color: var(--color-muted);
}

.card-body > a:last-child {
  font-weight: 600;
  color: var(--color-forest-mid);
}

.card-body > a:last-child:hover {
  color: var(--color-earth);
}

.card-body h2 a,
.card-body h3 a {
  color: inherit;
  text-decoration: none;
}

.card-body h2 a:hover,
.card-body h3 a:hover {
  color: var(--color-forest-mid);
}

/* Page hero */
.page-hero {
  background: linear-gradient(
    125deg,
    var(--color-forest) 0%,
    var(--color-forest-dark) 48%,
    var(--color-ink) 100%
  );
  color: var(--color-on-dark);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  border-bottom: 3px solid var(--color-gold);
}

.page-hero--small h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 0;
  color: var(--color-on-dark);
  text-shadow: 0 2px 20px rgba(18, 38, 32, 0.45);
}

.page-hero .lead {
  color: rgba(255, 249, 236, 0.9);
  margin: 0.5rem 0 0;
}

/* Menu */
.menu-cat-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid var(--color-gold);
  color: var(--color-forest-dark);
}

.menu-category:first-child .menu-cat-title {
  margin-top: 0;
}

.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-item {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(var(--line-rgb), 0.09);
}

.menu-item-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.menu-item-name {
  font-weight: 600;
  color: var(--color-forest-dark);
}

.menu-item-price {
  font-variant-numeric: tabular-nums;
  color: var(--color-forest-mid);
  white-space: nowrap;
}

.menu-item-desc {
  margin: 0.35rem 0 0;
  font-size: 0.95rem;
  color: var(--color-muted);
}

/* Article */
.article-head h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  margin: 0.5rem 0;
  color: var(--color-forest-dark);
}

.article-tax {
  margin-top: 0.65rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.article-share {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(var(--line-rgb), 0.1);
}

.article-share__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 0.75rem;
  color: var(--color-forest-dark);
}

.share-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.share-btn {
  appearance: none;
  border: 1px solid rgba(var(--line-rgb), 0.12);
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-forest-dark);
  border-radius: 14px;
  padding: 0.7rem 0.75rem;
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  box-shadow: 0 12px 26px rgba(21, 53, 41, 0.08);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.share-btn:hover {
  background: #fff;
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(21, 53, 41, 0.12);
}

.share-btn--wa {
  border-color: rgba(37, 211, 102, 0.35);
  background: linear-gradient(180deg, rgba(37, 211, 102, 0.14) 0%, rgba(255, 255, 255, 0.92) 100%);
}

.share-btn--x {
  border-color: rgba(0, 0, 0, 0.14);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06) 0%, rgba(255, 255, 255, 0.92) 100%);
}

.share-btn--fb {
  border-color: rgba(24, 119, 242, 0.35);
  background: linear-gradient(180deg, rgba(24, 119, 242, 0.12) 0%, rgba(255, 255, 255, 0.92) 100%);
}

.share-btn--copy {
  border-color: rgba(201, 162, 39, 0.35);
  background: linear-gradient(180deg, rgba(237, 208, 104, 0.22) 0%, rgba(255, 255, 255, 0.92) 100%);
}

.share-btn__icon {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(21, 53, 41, 0.06);
  border: 1px solid rgba(var(--line-rgb), 0.08);
}

.share-btn__label {
  font-size: 0.95rem;
}

@media (max-width: 980px) {
  .share-grid {
    grid-template-columns: 1fr;
  }
}

.article-pn {
  margin-top: 1.75rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.article-pn__item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  background: var(--color-cream-bright);
  border: 1px solid rgba(var(--line-rgb), 0.08);
  box-shadow: var(--shadow-soft);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  text-decoration: none;
}

.article-pn__item--next {
  text-align: right;
}

.article-pn__k {
  font-size: 0.85rem;
  color: var(--color-muted);
  font-weight: 700;
}

.article-pn__t {
  font-weight: 800;
  color: var(--color-forest-dark);
}

@media (max-width: 720px) {
  .article-pn {
    grid-template-columns: 1fr;
  }
}

.article-head .lead {
  color: var(--color-muted);
}

.meta {
  font-size: 0.85rem;
  color: var(--color-muted);
}

.article-cover {
  margin: 1.5rem 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.article-content {
  margin-top: 1.5rem;
}

.article-content img {
  max-width: 100%;
  border-radius: 6px;
}

.back-link {
  margin-top: 2.5rem;
}

.back-link a {
  color: var(--color-forest-mid);
  font-weight: 600;
}

.back-link a:hover {
  color: var(--color-earth);
}

.blog-cta-row {
  margin-top: 2rem;
}

.section-menu {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-cream-bright) 100%);
}

/* Contact — harita + yan panel */
.section-contact {
  background: linear-gradient(
    165deg,
    var(--color-bg) 0%,
    var(--color-cream-bright) 42%,
    rgba(243, 234, 212, 0.65) 100%
  );
}

.container--contact {
  width: min(1120px, 92vw);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(260px, 0.78fr);
  gap: clamp(1.75rem, 4vw, 2.75rem);
  align-items: start;
}

.contact-layout__map {
  min-width: 0;
}

.contact-map__header {
  margin-bottom: 1.1rem;
}

.contact-map__eyebrow {
  display: block;
  font-family: var(--font-nav);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.35rem;
}

.contact-map__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 700;
  margin: 0 0 0.5rem;
  line-height: 1.2;
  color: var(--color-forest-dark);
}

.contact-map__lead {
  margin: 0;
  max-width: 36rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--color-muted);
}

.contact-map__frame-wrap {
  position: relative;
  border-radius: 16px;
  padding: 3px;
  background: linear-gradient(
    135deg,
    rgba(201, 162, 39, 0.55) 0%,
    rgba(30, 77, 64, 0.35) 50%,
    rgba(201, 162, 39, 0.4) 100%
  );
  box-shadow: 0 24px 56px rgba(21, 53, 41, 0.14), 0 2px 12px rgba(21, 53, 41, 0.06);
}

.contact-map__frame {
  position: relative;
  border-radius: 13px;
  overflow: hidden;
  background: var(--color-cream);
  aspect-ratio: 16 / 10;
  min-height: min(52vw, 380px);
  max-height: 520px;
}

.contact-map__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-map__footer {
  margin-top: 1.15rem;
}

.contact-map__external {
  font-size: 0.95rem;
}

.contact-map--empty {
  padding: 2rem 1.5rem;
  border-radius: 16px;
  background: var(--color-cream-bright);
  border: 1px dashed rgba(var(--line-rgb), 0.18);
  box-shadow: var(--shadow-soft);
}

.contact-map__empty-msg {
  margin: 0.75rem 0 0;
  color: var(--color-muted);
  line-height: 1.55;
  font-size: 0.95rem;
}

.contact-layout__aside {
  min-width: 0;
}

.contact-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card {
  background: var(--color-cream-bright);
  padding: 1.35rem 1.45rem;
  border-radius: 12px;
  box-shadow: 0 10px 32px rgba(21, 53, 41, 0.07);
  border: 1px solid rgba(var(--line-rgb), 0.07);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.contact-card:hover {
  box-shadow: 0 14px 40px rgba(21, 53, 41, 0.1);
  border-color: rgba(201, 162, 39, 0.22);
}

.contact-card--accent {
  border-color: rgba(201, 162, 39, 0.35);
  background: linear-gradient(160deg, #fffef8 0%, var(--color-cream-bright) 100%);
}

.contact-card__label {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.65rem;
  color: var(--color-forest-dark);
}

.contact-card__body {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--color-muted);
}

.contact-card__body p {
  margin: 0 0 0.5rem;
}

.contact-card__body p:last-child {
  margin-bottom: 0;
}

.contact-hours {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.65rem;
  align-items: baseline;
}

.contact-hours__k {
  font-weight: 600;
  color: var(--color-forest-dark);
  min-width: 5.5rem;
}

.contact-link {
  font-weight: 600;
  color: var(--color-forest-mid);
  text-decoration: none !important;
}

.contact-link:hover {
  color: var(--color-earth);
  text-decoration: underline !important;
}

.contact-social {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-social__link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  font-weight: 700;
  color: var(--color-forest-mid);
  text-decoration: none !important;
}

.contact-social__link:hover {
  color: var(--color-earth);
  text-decoration: underline !important;
}

.contact-social__link--wa {
  color: #1fa756;
}

.contact-social__link--wa:hover {
  color: #159246;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-layout__map {
    order: -1;
  }

  .contact-map__frame {
    min-height: 280px;
    max-height: none;
    aspect-ratio: 4 / 3;
  }
}

/* Eski üç sütunlu ızgara (başka yerde kullanılırsa) */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.contact-grid .contact-card h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 0.75rem;
  color: var(--color-forest-dark);
}

/* Footer */
.site-footer {
  background: var(--color-forest-dark);
  color: #f3ead4;
  padding: 2.5rem 0 0;
  margin-top: 2rem;
  text-align: center;
}

.site-footer a {
  color: var(--color-gold-muted);
}

.site-footer a:hover {
  color: var(--color-on-dark);
}

.site-footer strong {
  color: var(--color-gold-muted);
  font-weight: 700;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  padding-bottom: 2rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  padding-bottom: 2rem;
}

.footer-brand {
  max-width: 46rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.footer-brand__logo {
  display: inline-flex;
  text-decoration: none;
}

.footer-brand__logo img {
  height: 54px;
  width: auto;
}

.footer-brand__about {
  margin: 0;
  color: rgba(243, 234, 212, 0.92);
  line-height: 1.65;
}

.footer-grid--center {
  width: 100%;
  max-width: 980px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-bottom: 0;
}

.footer-card p {
  margin: 0.4rem 0 0;
  color: rgba(243, 234, 212, 0.92);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 0.9rem;
  justify-content: center;
  margin-top: 0.55rem;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
}

.footer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 0.95rem;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none !important;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 249, 236, 0.08);
  color: var(--color-on-dark) !important;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.footer-btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 249, 236, 0.16);
  border-color: rgba(212, 188, 106, 0.55);
}

.footer-btn--instagram {
  border-color: rgba(212, 188, 106, 0.55);
}

.footer-btn--whatsapp {
  border-color: rgba(37, 211, 102, 0.45);
}

.footer-btn--directions {
  border-color: rgba(237, 208, 104, 0.55);
}

.footer-copy {
  border-top: 1px solid rgba(212, 188, 106, 0.22);
  padding: 1rem 0;
  font-size: 0.85rem;
  opacity: 0.88;
  color: rgba(243, 234, 212, 0.9);
}

.footer-copy__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.footer-dev {
  color: var(--color-gold-muted) !important;
  font-weight: 800;
  text-decoration: none !important;
}

.footer-dev:hover {
  color: var(--color-on-dark) !important;
  text-decoration: underline !important;
}

@media (max-width: 980px) {
  .footer-grid--center {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }
}

.float-whatsapp {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  text-decoration: none !important;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45), 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.float-whatsapp:hover {
  transform: scale(1.06);
  color: #fff;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55), 0 4px 12px rgba(0, 0, 0, 0.18);
}

.float-whatsapp__icon {
  display: block;
}

/* Blog içerik linkleri (admin HTML) */
.article-content a {
  color: var(--color-forest-mid);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-content a:hover {
  color: var(--color-earth);
}
