/* ─────────────────────────────────────────────────────────────
   KOY Ayvalık — Redesign
   System: Aegean mist + weathered gold · Fraunces + Inter
   ───────────────────────────────────────────────────────────── */

:root {
  /* Palette — Aegean mist */
  --bg:              #F3F2EC;   /* warm off-white, linen paper */
  --bg-soft:         #EAEAE2;   /* faintly cooler paper */
  --mist:            #D8DEDC;   /* pale blue-grey mist */
  --mist-deep:       #A7B2B4;   /* distant sea-grey */
  --stone:           #6C7375;   /* wet stone */
  --ink:             #2F3739;   /* deep slate (never pure black) */
  --ink-soft:        #4A5254;

  /* Accent — weathered gold (oxidized, not saturated) */
  --gold:            #B08C4F;
  --gold-soft:       #C8A977;
  --gold-deep:       #8A6E3D;

  /* Alt accent for Tweaks */
  --terracotta:      #B57A5A;

  /* Typography */
  --serif: "Fraunces", "Playfair Display", Georgia, serif;
  --sans:  "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Rhythm */
  --page-pad-x:      clamp(24px, 6vw, 120px);
  --section-pad-y:   clamp(96px, 14vw, 220px);
  --max-w:           1440px;
  --line:            1px solid rgba(47, 55, 57, 0.14);
}

/* Palette variants set by Tweaks */
:root[data-palette="linen"] {
  --bg:        #F0EBE0;
  --bg-soft:   #E6DFCE;
  --mist:      #DCD2BE;
  --mist-deep: #B8A884;
  --stone:     #7A6D53;
  --ink:       #3A3124;
  --ink-soft:  #54493A;
  --gold:      #B57A5A;
  --gold-soft: #CB9578;
  --gold-deep: #8E5A3E;
}
:root[data-palette="olive"] {
  --bg:        #EFEEE4;
  --bg-soft:   #E3E2D2;
  --mist:      #CFD3BC;
  --mist-deep: #97A082;
  --stone:     #5E6852;
  --ink:       #2D332A;
  --ink-soft:  #485040;
  --gold:      #8A8F52;
  --gold-soft: #A7AC6E;
  --gold-deep: #66693A;
}

/* ─── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: unset;
}
img, video, iframe, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }

/* Grain overlay (Tweak) */
body.grain::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.06;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.8'/></svg>");
  mix-blend-mode: multiply;
}

/* ─── Typography primitives ──────────────────────────────── */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--stone);
}
.h-display {
  font-family: var(--serif);
  font-weight: 300;
  font-style: normal;
  letter-spacing: -0.015em;
  line-height: 1.02;
  color: var(--ink);
}
.h-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0;
}
.section-head {
  display: flex;
  align-items: baseline;
  gap: 48px;
  margin-bottom: clamp(56px, 7vw, 96px);
}
.section-head .num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  font-size: 18px;
}

/* ─── Language toggle ────────────────────────────────────── */
.dil-toggle {
  position: fixed;
  top: clamp(24px, 3vw, 40px);
  right: clamp(24px, 3vw, 40px);
  z-index: 60;
  display: flex;
  gap: 2px;
  mix-blend-mode: difference;
}
.dil-toggle button {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.24em;
  color: #EDEEE8;
  padding: 8px 10px;
  opacity: 0.55;
  transition: opacity 0.3s ease;
}
.dil-toggle button.aktif { opacity: 1; }
.dil-toggle button:hover { opacity: 0.9; }
.dil-toggle .sep {
  color: #EDEEE8;
  opacity: 0.35;
  padding: 8px 0;
  font-size: 11px;
}

/* Dil toggle sits on pale dawn background — dark text by default */
.dil-toggle { mix-blend-mode: normal; }
.dil-toggle button { color: var(--stone); }
.dil-toggle button.aktif { color: var(--ink); }
.dil-toggle .sep { color: var(--stone); opacity: 0.4; }

/* ─── Hero ──────────────────────────────────────────────── */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  background: #CFDEE2;
  color: #3A4A52;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}
/* Dawn on the Aegean — pale luminous blue, soft warmth at horizon */
.hero-still {
  position: absolute; inset: 0;
  z-index: 1;
  background:
    /* dawn warmth, very subtle */
    radial-gradient(ellipse 80% 55% at 65% 28%, rgba(240, 214, 176, 0.35), transparent 65%),
    /* pale water */
    linear-gradient(180deg,
      #E6EEF0 0%,
      #D6E3E7 30%,
      #C4D6DC 58%,
      #B2C8D0 82%,
      #A8C0C9 100%);
}
.hero-overlay {
  position: absolute; inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(255, 246, 230, 0.10) 0%, transparent 40%, rgba(168, 192, 201, 0.18) 100%);
}

.hero-icerik {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 var(--page-pad-x);
  text-align: center;
}
.hero-wave {
  width: clamp(180px, 22vw, 320px);
  height: auto;
  color: #6B8894;
  opacity: 0.8;
  margin-bottom: clamp(36px, 5vw, 60px);
}
.hero-baslik {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
}
.hero-koy {
  font-family: var(--serif);
  font-weight: 200;
  font-style: normal;
  font-size: clamp(120px, 22vw, 340px);
  line-height: 0.9;
  letter-spacing: 0.04em;
  color: #3A4A52;
}
.hero-ayvalik {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 2.4vw, 34px);
  letter-spacing: 0.08em;
  color: rgba(58, 74, 82, 0.78);
}

.hero-ok {
  position: absolute;
  z-index: 3;
  bottom: clamp(22px, 3vw, 36px);
  left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 40px;
  display: grid; place-items: center;
  color: rgba(58, 74, 82, 0.7);
  opacity: 0.85;
  animation: koy-drift 3.2s ease-in-out infinite;
}
.hero-ok svg { width: 18px; height: 18px; }
@keyframes koy-drift {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.85; }
  50%      { transform: translate(-50%, 6px); opacity: 1; }
}

/* ─── Hero → Menu quiet transition ───────────────────────── */
.hero-menu-gecis {
  height: 1px;
  background: transparent;
}

/* ─── Section shell ──────────────────────────────────────── */
section.koy-section {
  padding: var(--section-pad-y) var(--page-pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
}
.koy-rule {
  height: 1px;
  background: rgba(47, 55, 57, 0.12);
  margin: 0 var(--page-pad-x);
  max-width: var(--max-w);
  margin-left: auto; margin-right: auto;
}

/* ─── Menu ───────────────────────────────────────────────── */
.menu-icons {
  display: flex;
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
  color: var(--gold-deep);
  opacity: 0.85;
}
.menu-icons svg {
  width: clamp(28px, 2.4vw, 34px);
  height: clamp(28px, 2.4vw, 34px);
  flex: 0 0 auto;
}

#menu .menu-intro {
  max-width: 540px;
  margin-bottom: clamp(48px, 6vw, 80px);
}
#menu .menu-intro p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}

.menu-tab-bar {
  display: flex;
  gap: clamp(28px, 3.5vw, 52px);
  margin: 0 0 clamp(56px, 7vw, 96px);
  padding-bottom: 20px;
  border-bottom: var(--line);
  overflow-x: auto;
  scrollbar-width: none;
}
.menu-tab-bar::-webkit-scrollbar { display: none; }
.menu-tab {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mist-deep);
  padding: 6px 0;
  white-space: nowrap;
  position: relative;
  transition: color 0.3s ease;
}
.menu-tab::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -21px;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.menu-tab:hover { color: var(--stone); }
.menu-tab.aktif { color: var(--ink); }
.menu-tab.aktif::after { transform: scaleX(1); }

/* Menu list */
.menu-icerik { position: relative; }
.menu-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(56px, 7vw, 112px) clamp(64px, 9vw, 144px);
}
.menu-panel.tek { grid-template-columns: 1fr; max-width: 860px; }

.menu-grup-baslik {
  grid-column: 1 / -1;
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-top: clamp(24px, 3vw, 40px);
  margin-bottom: clamp(16px, 2vw, 24px);
}
.menu-grup-baslik:first-child { margin-top: 0; }
.menu-grup-baslik h3 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 2vw, 28px);
  color: var(--ink);
  letter-spacing: -0.005em;
  margin: 0;
}
.menu-grup-baslik .grup-num {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--gold);
  text-transform: uppercase;
}
.menu-grup-baslik .grup-kural {
  flex: 1;
  height: 1px;
  background: rgba(47,55,57,0.12);
  transform: translateY(-4px);
}

.menu-oge {
  padding: clamp(18px, 2vw, 22px) 0;
  border-bottom: 1px dashed rgba(47,55,57,0.1);
}
.menu-oge:last-child { border-bottom: 0; }
.menu-oge-ust {
  display: flex;
  align-items: baseline;
  gap: 18px;
}
.menu-oge-ad {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(17px, 1.35vw, 20px);
  color: var(--ink);
  letter-spacing: -0.003em;
  flex: 1;
}
.menu-oge-ad .menu-oge-nokta {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-right: 12px;
  transform: translateY(-3px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.menu-oge:hover .menu-oge-nokta { opacity: 0.7; }
.menu-oge-fiyat {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 14px;
  color: var(--stone);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.menu-oge-aciklama {
  margin-top: 8px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--stone);
  max-width: 540px;
}
.menu-oge-meta {
  margin-top: 10px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mist-deep);
}

/* ─── Reservation ────────────────────────────────────────── */
#rezervasyon {
  background: var(--bg-soft);
}
.rezervasyon-icerik {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--section-pad-y) var(--page-pad-x);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(60px, 8vw, 140px);
  align-items: start;
}
.rez-sol .eyebrow { margin-bottom: 20px; display: block; }
.rezervasyon-baslik {
  font-family: var(--serif);
  font-weight: 200;
  font-size: clamp(48px, 6vw, 84px);
  line-height: 1;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 0 0 clamp(32px, 3vw, 44px);
}
.rezervasyon-baslik em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  display: block;
  font-size: 0.5em;
  letter-spacing: 0.01em;
  margin-top: 10px;
}
.rez-intro {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 420px;
  margin: 0 0 36px;
}
.rez-hours {
  border-top: var(--line);
  padding-top: 28px;
  display: grid;
  gap: 8px;
  max-width: 360px;
}
.rez-hours-satir {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--stone);
}
.rez-hours-satir span:last-child { font-variant-numeric: tabular-nums; color: var(--ink); }
.rez-hours-not {
  margin-top: 16px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--mist-deep);
}

.rezervasyon-form { display: grid; gap: clamp(28px, 3vw, 40px); }
.form-satir { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 3vw, 40px); }
.form-grup { position: relative; }
.form-etiket {
  display: block;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 10px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(47,55,57,0.22);
  border-radius: 0;
  padding: 10px 0 12px;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 18px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.3s ease;
  appearance: none;
}
.form-textarea { font-family: var(--sans); font-size: 15px; resize: vertical; line-height: 1.6; }
.form-input::placeholder, .form-textarea::placeholder { color: var(--mist-deep); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-bottom-color: var(--gold);
}
.form-select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path fill='none' stroke='%236C7375' stroke-width='1' d='M1 1l4 4 4-4'/></svg>");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 28px;
}
.form-honeypot { position: absolute; left: -9999px; }

.form-gonder {
  margin-top: 24px;
  justify-self: start;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 18px 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  transition: gap 0.3s ease, color 0.3s ease;
}
.form-gonder::before {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--ink);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.form-gonder::after {
  content: "→";
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  letter-spacing: 0;
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.form-gonder:hover { color: var(--gold-deep); }
.form-gonder:hover::before { background: var(--gold); }
.form-gonder:hover::after { transform: translateX(6px); }
.form-gonder:disabled { opacity: 0.4; cursor: not-allowed; }

.form-mesaj {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--gold-deep);
  min-height: 1.4em;
}
.form-mesaj.hata { color: #9c4b3a; }

.rezervasyon-kapali {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--stone);
  padding: 24px 0;
  border-top: var(--line);
  border-bottom: var(--line);
}

/* ─── Instagram ──────────────────────────────────────────── */
#instagram {
  padding: var(--section-pad-y) var(--page-pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
}
.ig-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.ig-head-left { display: flex; align-items: baseline; gap: 32px; }
.instagram-baslik {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(26px, 2.4vw, 36px);
  color: var(--ink);
  margin: 0;
}
.instagram-hesap {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--stone);
  margin: 0;
}
.instagram-buton {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--ink);
  transition: color 0.3s, border-color 0.3s;
}
.instagram-buton:hover { color: var(--gold-deep); border-color: var(--gold); }

.instagram-izgara {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(8px, 1vw, 14px);
}
.instagram-kare {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--mist);
}
.instagram-kare-ic {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(0.85) contrast(0.98);
  transition: transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.6s ease;
}
.instagram-kare:hover .instagram-kare-ic { transform: scale(1.04); filter: saturate(1) contrast(1); }

/* ─── Harita ─────────────────────────────────────────────── */
#harita {
  position: relative;
  padding: 0;
  background: var(--bg-soft);
}
.harita-kapak {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.harita-sol {
  padding: clamp(60px, 8vw, 120px) clamp(40px, 6vw, 96px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.harita-eyebrow { color: var(--gold); }
.harita-baslik {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
}
.harita-adres {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 380px;
  margin: 0;
}
.harita-link {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--ink);
  align-self: flex-start;
}
.harita-link:hover { color: var(--gold-deep); border-color: var(--gold); }
.harita-sag {
  position: relative;
  min-height: 520px;
  background: var(--mist);
}
.harita-cerceve {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: 0;
  filter: grayscale(0.3) contrast(0.95) saturate(0.8);
}

/* ─── Footer ─────────────────────────────────────────────── */
#footer {
  padding: clamp(80px, 10vw, 140px) var(--page-pad-x) clamp(40px, 5vw, 60px);
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
  border-top: var(--line);
  margin-top: 0;
}
.footer-col h4 {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--stone);
  margin: 0 0 18px;
}
.footer-col p, .footer-col a {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}
.footer-col a:hover { color: var(--gold-deep); }
.footer-logo-col { grid-column: 1; }
.footer-logo {
  font-family: var(--serif);
  font-weight: 200;
  font-size: clamp(40px, 4vw, 56px);
  line-height: 1;
  color: var(--ink);
  margin: 0 0 12px;
  letter-spacing: 0.02em;
}
.footer-logo-col p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--mist-deep);
}
.footer-alt {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 24px var(--page-pad-x) 40px;
  display: flex;
  justify-content: space-between;
  border-top: var(--line);
}
.footer-alt, .footer-alt * {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--mist-deep);
  text-transform: uppercase;
}

/* ─── Floating CTA ───────────────────────────────────────── */
.floating-buton {
  position: fixed;
  bottom: calc(clamp(20px, 3vw, 32px) + env(safe-area-inset-bottom, 0px));
  right: clamp(20px, 3vw, 32px);
  z-index: 55;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 18px 26px;
  border-radius: 2px;
  /* Always visible — main.js doesn't use .goster */
  opacity: 1;
  transform: none;
  transition: background 0.3s ease;
  box-shadow: 0 10px 30px rgba(47,55,57,0.14);
}
.floating-buton:hover { background: var(--gold-deep); }

/* ─── Tweaks panel (design tool artefact — hidden) ──────── */
#tweaks-panel { display: none !important; }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 960px) {
  .rezervasyon-icerik { grid-template-columns: 1fr; gap: 60px; }
  .menu-panel { grid-template-columns: 1fr; }
  .harita-kapak { grid-template-columns: 1fr; }
  .harita-sag { min-height: 400px; }
  #footer { grid-template-columns: 1fr 1fr; }
  .footer-logo-col { display: none; }
  .instagram-izgara { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  :root {
    --page-pad-x: 22px;
    --section-pad-y: clamp(80px, 18vw, 120px);
  }
  body { font-size: 15px; }

  #hero { min-height: 560px; }
  .hero-icerik { padding: 0 22px; }
  .hero-koy {
    font-size: clamp(92px, 34vw, 150px);
    letter-spacing: 0.02em;
    line-height: 0.95;
  }
  .hero-ayvalik {
    font-size: clamp(16px, 4.5vw, 20px);
    letter-spacing: 0.1em;
  }
  .hero-wave {
    width: clamp(140px, 42vw, 200px);
    margin-bottom: 28px;
  }
  .hero-baslik { gap: 14px; }

  .dil-toggle { top: 18px; right: 18px; }
  .dil-toggle button { padding: 6px 6px; font-size: 10.5px; letter-spacing: 0.22em; }

  .menu-tab-bar {
    margin-left: calc(var(--page-pad-x) * -1);
    margin-right: calc(var(--page-pad-x) * -1);
    padding-left: var(--page-pad-x);
    padding-right: var(--page-pad-x);
    gap: 26px;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .menu-tab { flex: 0 0 auto; font-size: 11px; letter-spacing: 0.22em; }
  .menu-tab::after { bottom: -21px; }

  .section-head { gap: 18px; margin-bottom: 40px; }
  .menu-intro { margin-bottom: 40px; }

  .menu-grup-baslik { gap: 14px; flex-wrap: wrap; }
  .menu-grup-baslik h3 { font-size: 22px; }
  .menu-oge-ust { flex-wrap: wrap; gap: 8px; }
  .menu-oge-ad { font-size: 16px; flex: 1 1 auto; }
  .menu-oge-fiyat { font-size: 13px; }

  #rezervasyon .rezervasyon-icerik { gap: 40px; }
  .rezervasyon-baslik { font-size: clamp(40px, 11vw, 56px); }
  .form-satir { grid-template-columns: 1fr; gap: 28px; }
  .form-input, .form-select, .form-textarea { font-size: 17px; }

  .ig-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .ig-head-left { flex-direction: column; align-items: flex-start; gap: 6px; }
  .instagram-baslik { font-size: 26px; }
  .instagram-izgara { grid-template-columns: repeat(2, 1fr); gap: 8px; }

  .harita-kapak { grid-template-columns: 1fr; }
  .harita-sol {
    padding: 60px 22px 40px;
    text-align: left;
    align-items: flex-start;
  }
  .harita-sag { min-height: 360px; }
  .harita-baslik { font-size: 32px; }

  #footer {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
    padding-left: 22px; padding-right: 22px;
  }
  .footer-col h4 { margin-bottom: 12px; }
  .footer-alt {
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-align: center;
    padding: 20px 22px 32px;
  }

  .floating-buton {
    right: 16px; bottom: 16px;
    padding: 14px 20px;
    font-size: 10.5px;
    letter-spacing: 0.22em;
  }
}

/* ═══════════════════════════════════════════════════════════
   JS-RENDERED MENU CLASSES
   main.js generates these class names — styled to match design
   ═══════════════════════════════════════════════════════════ */

/* Category wrapper & heading */
.menu-kategori {
  margin-bottom: clamp(64px, 9vw, 112px);
}
.menu-kategori:last-child { margin-bottom: 0; }

.menu-kategori-baslik {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.008em;
  line-height: 1.05;
  color: var(--ink);
  margin: 0 0 clamp(28px, 3.5vw, 48px);
}

/* Standard product list rows */
.urun-listesi {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .urun-listesi {
    grid-template-columns: repeat(2, 1fr);
    column-gap: clamp(32px, 5vw, 80px);
  }
}
.urun-item {
  padding: clamp(16px, 2vw, 22px) 0;
  border-bottom: 1px dashed rgba(47, 55, 57, 0.1);
}
.urun-item:last-child { border-bottom: 0; }
.urun-satir {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.urun-nokta {
  flex: 1;
  /* Invisible spacer — pushes price to the right */
}
.urun-ad {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--ink);
  letter-spacing: -0.003em;
}
.urun-fiyat {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 13px;
  color: var(--stone);
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.04em;
}
.urun-icerik {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 13.5px;
  color: var(--stone);
  line-height: 1.55;
  margin-top: 6px;
}

/* Wine sub-headings (Kırmızı / Beyaz / Rosé) */
.sarap-alt-baslik {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 1.8vw, 26px);
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: clamp(32px, 4vw, 52px) 0 clamp(16px, 2vw, 24px);
  padding-bottom: 16px;
  border-bottom: var(--line);
}
.sarap-alt-baslik:first-of-type { margin-top: 0; }

/* Bar sub-headings (Kokteyller / Viski / Diğer) */
.bar-alt-baslik {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin: clamp(28px, 3.5vw, 44px) 0 clamp(12px, 1.5vw, 18px);
}
.bar-alt-baslik:first-of-type { margin-top: 0; }
