/* ============================================================
   Safır Balık — tek stil dosyası
   Palet: derin deniz lacivert / sıcak kum / safir; dalga motifi
   Karakter: yumuşak 10px köşe, serif-italik yemek dili
   ============================================================ */

/* 1. Tokens */
:root {
  --ink: #13222E;
  --navy: #0E3A5C;
  --accent: #14608A;
  --accent-dark: #0E4A6B;
  --sand: #F5EFE3;
  --shell: #E7DCC6;
  --aqua: #7FB6C9;
  --paper: #FFFFFF;
  --muted: #5C6B77;
  --wa: #25D366;
  --radius: 10px;
  --shadow: 0 4px 20px rgba(19, 34, 46, .08);
  --max-w: 1120px;
  --serif-i: Georgia, "Times New Roman", serif;
}

/* 2. Reset & base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; height: auto; }
ul[class], ol[class] { list-style: none; }
a { color: var(--accent); }
[hidden] { display: none !important; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

/* 3. Skip link */
.skip-link {
  position: absolute; left: 12px; top: -48px; z-index: 100;
  background: var(--accent); color: #fff; font-weight: 700;
  padding: 10px 18px; border-radius: 0 0 10px 10px; text-decoration: none; transition: top .2s;
}
.skip-link:focus { top: 0; }

/* 4. Type */
h1 { font-size: clamp(2.1rem, 5.2vw, 3.4rem); line-height: 1.15; font-weight: 800; letter-spacing: -.01em; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); line-height: 1.25; font-weight: 800; }
h3 { font-size: 1.2rem; font-weight: 700; }
.muted { color: var(--muted); }
.accent { color: var(--accent); }
.italic, .dish-desc { font-family: var(--serif-i); font-style: italic; }
.eyebrow {
  display: inline-block; text-transform: uppercase; letter-spacing: .16em;
  font-size: .76rem; font-weight: 700; color: var(--accent); margin-bottom: 10px;
}

/* 5. Layout + dalga */
.container { max-width: var(--max-w); margin-inline: auto; padding-inline: 20px; }
.section { padding-block: clamp(48px, 8vw, 88px); }
.section-sand { background: var(--sand); }
.section-head { max-width: 660px; margin-bottom: clamp(28px, 5vw, 48px); }
.section-head p { color: var(--muted); margin-top: 8px; }
.wave { display: block; width: 100%; height: 48px; margin-bottom: -1px; }
.wave svg { display: block; width: 100%; height: 100%; }

/* 6. Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: var(--radius); padding: 12px 22px; min-height: 44px;
  font: inherit; font-weight: 700; text-decoration: none; cursor: pointer;
  border: 1.5px solid transparent; transition: background .2s, color .2s, transform .2s;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); }
.btn-outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-outline-light { border-color: #fff; color: #fff; background: transparent; }
.btn-outline-light:hover { background: #fff; color: var(--navy); }
.btn-wa { background: var(--paper); border-color: var(--wa); color: var(--ink); }
.btn-wa:hover { background: var(--wa); color: #fff; }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { background: var(--sand); }

/* 7. Header & nav */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .94);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--shell);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 14px; min-height: 70px; }
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--ink); text-decoration: none; font-weight: 800; font-size: 1.05rem; letter-spacing: .03em;
}
.brand svg { width: 32px; height: 32px; flex: none; }
.brand b { color: var(--accent); font-weight: 800; }
.brand small { display: block; margin-top: 1px; font-size: .56rem; letter-spacing: .2em; color: var(--muted); font-weight: 700; }
.nav-links { display: flex; align-items: center; gap: 16px; }
.nav-links a:not(.btn) {
  color: var(--ink); text-decoration: none; font-weight: 600; font-size: .9rem;
  white-space: nowrap; position: relative; padding-block: 6px;
}
.nav-links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .25s;
}
.nav-links a:not(.btn):hover::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { color: var(--accent); font-weight: 700; }
.nav-cta { padding: 10px 16px; }
.nav-toggle { display: none; }

/* Açık/kapalı çipi */
.open-chip {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .74rem; font-weight: 700; color: var(--muted);
  background: var(--sand); border: 1px solid var(--shell); border-radius: 999px;
  padding: 5px 12px; white-space: nowrap;
}
.open-chip::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--muted); }
.open-chip.is-open { color: #1B7A3D; }
.open-chip.is-open::before { background: #2BA84A; }

/* Dil değiştirici (kayar mandal) */
.lang-switch { display: inline-flex; }
.lang-toggle {
  position: relative; display: inline-flex; align-items: center;
  border: 1px solid var(--shell); border-radius: 999px; background: var(--paper);
  padding: 3px; text-decoration: none; transition: border-color .2s;
}
.lang-toggle:hover { border-color: var(--aqua); }
.lang-opt {
  position: relative; z-index: 1; width: 30px; text-align: center;
  font-size: .7rem; font-weight: 700; color: var(--muted); line-height: 20px;
  transition: color .2s;
}
.lang-opt.is-active { color: #fff; }
.lang-knob {
  position: absolute; top: 3px; bottom: 3px; left: 3px; width: 30px;
  border-radius: 999px; background: var(--accent);
  view-transition-name: lang-knob;
}
.lang-toggle-en .lang-knob { left: auto; right: 3px; }

@media (max-width: 1023px) {
  .nav-toggle {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 44px; height: 44px; padding: 10px; background: none; border: 0; cursor: pointer;
  }
  .nav-toggle span { display: block; height: 2.5px; width: 100%; background: var(--ink); border-radius: 2px; transition: transform .25s, opacity .25s; }
  .nav-open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: var(--paper); padding: 16px 20px 24px;
    border-top: 1px solid var(--shell); box-shadow: var(--shadow);
    visibility: hidden; opacity: 0; transform: translateY(-12px); pointer-events: none;
    transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
  }
  .nav-open .nav-links { visibility: visible; opacity: 1; transform: none; pointer-events: auto; transition: opacity .24s ease, transform .24s ease; }
  .nav-links li { opacity: 0; transform: translateY(-6px); transition: opacity .2s ease, transform .2s ease; }
  .nav-open .nav-links li { opacity: 1; transform: none; }
  .nav-open .nav-links li:nth-child(1) { transition-delay: .03s } .nav-open .nav-links li:nth-child(2) { transition-delay: .06s }
  .nav-open .nav-links li:nth-child(3) { transition-delay: .09s } .nav-open .nav-links li:nth-child(4) { transition-delay: .12s }
  .nav-open .nav-links li:nth-child(5) { transition-delay: .15s } .nav-open .nav-links li:nth-child(6) { transition-delay: .18s }
  .nav-open .nav-links li:nth-child(7) { transition-delay: .21s } .nav-open .nav-links li:nth-child(8) { transition-delay: .24s }
  .nav-links a:not(.btn) { padding: 12px 8px; }
  li.lang-switch, li.chip-slot { justify-content: center; align-self: center; }
  .nav-cta { margin-top: 8px; text-align: center; }
}

/* 8. Hero — koyu, video arka planlı */
.hero { position: relative; overflow: hidden; background: var(--navy); }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,58,92,.85) 0%, rgba(14,58,92,.45) 60%, rgba(14,58,92,.75) 100%);
}
.hero-inner {
  position: relative; z-index: 2; text-align: center; color: #fff;
  max-width: 780px; margin-inline: auto;
  padding: clamp(72px, 11vw, 130px) 20px clamp(72px, 11vw, 130px);
}
.hero-inner .eyebrow { color: var(--aqua); }
.hero-inner h1 { color: #fff; }
.hero-inner .sub { font-family: var(--serif-i); font-style: italic; font-size: 1.15rem; color: var(--sand); max-width: 46ch; margin: 16px auto 10px; }
.hero-inner .mood { color: var(--aqua); font-size: .95rem; font-weight: 600; margin-bottom: 26px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* Sayfa hero (iç sayfalar) */
.page-hero { background: var(--navy); color: #fff; }
.page-hero .container { padding-block: clamp(40px, 6vw, 64px); }
.page-hero h1 { color: #fff; }
.page-hero .eyebrow { color: var(--aqua); }
.page-hero p { color: var(--sand); max-width: 58ch; margin-top: 10px; font-size: 1.05rem; }

/* 9. Güven şeridi */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat { background: var(--paper); border-radius: var(--radius); box-shadow: var(--shadow); padding: 20px 14px; text-align: center; }
.stat b { display: block; color: var(--accent); font-size: clamp(1.4rem, 2.8vw, 2rem); font-weight: 800; line-height: 1.25; }
.stat span { color: var(--muted); font-size: .88rem; font-weight: 600; }
@media (max-width: 699px) { .stats { grid-template-columns: 1fr 1fr; } }

/* 10. Kartlar */
.cards-grid { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.card {
  background: var(--paper); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(19,34,46,.14); }
.card-body { padding: 20px 22px 24px; }
.card-body h3 { margin-bottom: 6px; }
.dish-desc { color: var(--muted); font-size: .95rem; }
.dish-price { font-weight: 800; color: var(--accent); margin-top: 10px; }
.card img { display: block; width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.card-link { display: inline-block; margin-top: 12px; font-weight: 700; text-decoration: none; }
.card-link:hover { text-decoration: underline; }

/* 11. Günün balığı karatahtası */
.chalkboard {
  background: var(--navy); color: var(--sand);
  border: 2px dashed var(--shell); border-radius: var(--radius);
  padding: clamp(22px, 4vw, 34px); text-align: center;
  transform: rotate(-1deg); max-width: 420px; margin-inline: auto;
  box-shadow: var(--shadow);
}
.chalkboard .eyebrow { color: var(--aqua); margin-bottom: 6px; }
.chalkboard .fish-name { font-family: var(--serif-i); font-style: italic; font-size: clamp(1.8rem, 4vw, 2.6rem); color: #fff; line-height: 1.2; }
.chalkboard p:last-child { color: var(--aqua); font-size: .92rem; margin-top: 6px; }

/* 12. Menü */
.menu-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.chip {
  border: 0; cursor: pointer; font: inherit; font-weight: 700; font-size: .92rem;
  background: var(--paper); color: var(--ink); border-radius: 999px;
  padding: 10px 20px; min-height: 44px; box-shadow: var(--shadow);
  transition: background .2s, color .2s;
}
.chip:hover { background: var(--shell); }
.chip[aria-pressed="true"] { background: var(--accent); color: #fff; }
.menu-cat { margin-bottom: clamp(28px, 5vw, 44px); }
html.js .menu-cat[data-hidden="1"] { display: none; }
.menu-cat > h2 { margin-bottom: 6px; }
.menu-cat > .cat-note { color: var(--muted); font-size: .9rem; margin-bottom: 16px; font-family: var(--serif-i); font-style: italic; }
.menu-item { display: flex; align-items: baseline; gap: 10px; padding-block: 12px; border-bottom: 1px dashed var(--shell); }
.menu-item .mi-name { font-weight: 700; white-space: nowrap; }
.menu-item .mi-desc { color: var(--muted); font-size: .92rem; font-family: var(--serif-i); font-style: italic; }
.menu-item .mi-dots { flex: 1; border-bottom: 2px dotted var(--shell); transform: translateY(-4px); min-width: 24px; }
.menu-item .mi-price { font-weight: 800; color: var(--accent); white-space: nowrap; }
@media (max-width: 599px) {
  .menu-item { flex-wrap: wrap; }
  .menu-item .mi-desc { flex-basis: 100%; order: 3; }
  .menu-item .mi-name { white-space: normal; }
}

/* 13. Yolculuk şeridi (tekneden sofraya) */
.journey {
  display: flex; gap: 18px; overflow-x: auto;
  scroll-snap-type: x mandatory; padding-bottom: 14px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
}
.journey::-webkit-scrollbar { height: 8px; }
.journey::-webkit-scrollbar-thumb { background: var(--shell); border-radius: 4px; }
.j-slide {
  flex: 0 0 min(420px, 85vw); scroll-snap-align: center;
  background: var(--paper); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden;
}
.j-slide img { display: block; width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.j-slide figcaption { padding: 14px 18px 18px; }
.j-time {
  display: inline-block; background: var(--navy); color: var(--aqua);
  font-size: .74rem; font-weight: 800; letter-spacing: .08em;
  border-radius: 999px; padding: 3px 12px; margin-bottom: 8px;
}
.j-slide p { color: var(--muted); font-size: .95rem; font-family: var(--serif-i); font-style: italic; }

/* 13b. Tekneden sofraya — tam ekran yapışkan hikâye */
.story { position: relative; }
.story-panel {
  position: sticky; top: 0;
  height: 100vh; height: 100svh;
  overflow: hidden;
}
.story-panel > img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.story-caption {
  position: absolute; inset: auto 0 0 0;
  padding: clamp(28px, 6vw, 64px) 20px clamp(36px, 7vw, 72px);
  background: linear-gradient(180deg, rgba(14,58,92,0) 0%, rgba(14,58,92,.55) 45%, rgba(14,58,92,.85) 100%);
  color: #fff; text-align: center;
}
.story-caption .j-time { background: rgba(245,239,227,.16); color: var(--sand); backdrop-filter: blur(4px); }
.story-caption p {
  font-family: var(--serif-i); font-style: italic;
  font-size: clamp(1.15rem, 2.6vw, 1.7rem); color: var(--sand);
  max-width: 40ch; margin: 10px auto 6px;
}
.story-count { display: block; color: var(--aqua); font-size: .82rem; font-weight: 700; letter-spacing: .12em; }

/* 14. Galeri + lightbox */
.gallery-grid { display: grid; gap: 14px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 700px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.g-item { display: block; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.g-item img { display: block; width: 100%; aspect-ratio: 1/1; object-fit: cover; transition: transform .3s; }
.g-item:hover img { transform: scale(1.04); }
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(14, 58, 92, .95);
  display: flex; align-items: center; justify-content: center;
}
.lightbox img { max-width: 90vw; max-height: 86vh; border-radius: var(--radius); }
.lightbox button {
  position: absolute; min-width: 48px; min-height: 48px;
  background: rgba(255,255,255,.12); color: #fff; border: 0; border-radius: 50%;
  font-size: 1.6rem; line-height: 1; cursor: pointer;
}
.lightbox button:hover { background: rgba(255,255,255,.25); }
.lb-close { top: 18px; right: 18px; }
.lb-prev { left: 14px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 14px; top: 50%; transform: translateY(-50%); }

/* 14b. Menü kartları + Sofranı Kur diyaloğu */
html.js .mi-card { cursor: pointer; }
html.js .mi-card .card-body::after {
  content: attr(data-cta); display: block; margin-top: 10px;
  color: var(--accent); font-size: .85rem; font-weight: 700;
}
html.js .mi-card .card-body { position: relative; }
.sofra-dialog {
  position: fixed; inset: 0; z-index: 210;
  background: rgba(14, 58, 92, .95);
  display: flex; align-items: center; justify-content: center; padding: 16px;
}
.sd-panel {
  position: relative; background: var(--paper); border-radius: var(--radius);
  max-width: 560px; width: 100%; max-height: 90vh; overflow-y: auto;
  padding: 0 0 22px;
}
.sd-img { display: block; width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius) var(--radius) 0 0; }
.sd-close {
  position: absolute; top: 12px; right: 12px; z-index: 1;
  min-width: 48px; min-height: 48px; border: 0; border-radius: 50%;
  background: rgba(14,58,92,.75); color: #fff; font-size: 1.6rem; line-height: 1; cursor: pointer;
}
.sd-close:hover { background: var(--navy); }
.sd-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding: 16px 22px 0; }
.sd-head h3 { font-size: 1.35rem; }
.sd-price { font-weight: 800; color: var(--accent); white-space: nowrap; }
.sd-desc { padding: 2px 22px 0; color: var(--muted); }
.sd-label { margin: 16px 22px 8px; display: block; }
.sd-pairs { display: flex; flex-wrap: wrap; gap: 10px; padding: 0 22px; }
.sd-pair {
  display: flex; align-items: center; gap: 10px;
  background: var(--sand); border: 1px solid var(--shell); border-radius: var(--radius);
  padding: 8px 12px 8px 8px; font: inherit; cursor: pointer; min-height: 48px;
  transition: border-color .2s, background .2s;
}
.sd-pair:hover { border-color: var(--aqua); background: #FBF8F0; }
.sd-pair img { width: 64px; height: 48px; object-fit: cover; border-radius: 6px; flex: none; }
.sd-pair span { font-weight: 700; font-size: .92rem; }
.sd-pair b { color: var(--accent); font-size: .88rem; }
.sd-trail { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; padding: 0 22px; }
.sd-chip { background: var(--navy); color: #fff; border-radius: 999px; padding: 5px 14px; font-size: .85rem; font-weight: 700; }
.sd-sep { color: var(--aqua); font-weight: 800; }
.sd-clear {
  min-width: 32px; min-height: 32px; border: 1px solid var(--shell); border-radius: 50%;
  background: var(--paper); color: var(--muted); font-size: 1.1rem; line-height: 1; cursor: pointer;
}
.sd-clear:hover { color: var(--accent); border-color: var(--aqua); }
.sd-wa { margin: 16px 22px 0; width: calc(100% - 44px); }

/* 15. Teras planı */
.terrace-wrap { max-width: 640px; margin-inline: auto; }
.terrace { display: block; width: 100%; height: auto; }
.table-spot { cursor: pointer; }
.table-spot circle { fill: var(--sand); stroke: var(--shell); stroke-width: 2; transition: fill .2s, stroke .2s; }
.table-spot text { font: 700 14px system-ui, sans-serif; fill: var(--ink); text-anchor: middle; dominant-baseline: central; pointer-events: none; }
.table-spot:hover circle, .table-spot:focus circle { stroke: var(--aqua); stroke-width: 3; fill: #EAF4F8; }
.table-spot[aria-pressed="true"] circle { fill: var(--accent); stroke: var(--accent-dark); }
.table-spot[aria-pressed="true"] text { fill: #fff; }
.terrace-note { text-align: center; color: var(--muted); font-weight: 600; margin-top: 10px; }

/* 16. Süreç / kilometre taşları */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { background: var(--paper); border-radius: var(--radius); box-shadow: var(--shadow); padding: 22px; }
.step-num {
  width: 40px; height: 40px; border-radius: 50%; background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 800; margin-bottom: 12px;
}
.step h3 { font-size: 1.05rem; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: .92rem; }
@media (max-width: 767px) { .timeline { grid-template-columns: 1fr; } }

/* 17. Yorumlar */
.review { background: var(--paper); border-radius: var(--radius); box-shadow: var(--shadow); padding: 24px; }
.stars { color: #E0A62E; letter-spacing: 3px; font-size: 1.05rem; }
.review blockquote { margin-block: 12px; color: #3C4B57; font-family: var(--serif-i); font-style: italic; }
.review figcaption { font-weight: 700; }
.review figcaption span { display: block; font-weight: 600; color: var(--muted); font-size: .85rem; }

/* 18. SSS */
.faq details { background: var(--paper); border-radius: var(--radius); box-shadow: var(--shadow); padding: 18px 22px; margin-bottom: 12px; }
.faq summary { cursor: pointer; font-weight: 700; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none; width: 40px; height: 40px; border-radius: 50%;
  color: var(--accent); background-color: var(--sand);
  background-image: linear-gradient(currentColor, currentColor), linear-gradient(currentColor, currentColor);
  background-size: 16px 2.5px, 2.5px 16px;
  background-position: center center, center center;
  background-repeat: no-repeat;
  border: 1px solid var(--shell);
  transition: background-color .2s, color .2s;
}
.faq summary:hover::after { border-color: var(--aqua); }
.faq details[open] summary::after { background-color: var(--accent); color: #fff; border-color: var(--accent); background-size: 16px 2.5px, 0 0; }
.faq details p { margin-top: 10px; color: #3C4B57; max-width: 72ch; }

/* 19. CTA bandı */
.cta-band {
  background: linear-gradient(rgba(14,58,92,.92), rgba(14,58,92,.92)), url("img/hero.webp") center/cover;
  color: #fff; border-radius: var(--radius);
  padding: clamp(34px, 6vw, 58px);
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 24px;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: var(--sand); margin-top: 6px; max-width: 48ch; font-family: var(--serif-i); font-style: italic; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.cta-band .btn-wa { border-color: #fff; background: transparent; color: #fff; }
.cta-band .btn-wa:hover { background: var(--wa); border-color: var(--wa); }

/* 20. Formlar */
.form-card { background: var(--paper); border-radius: var(--radius); box-shadow: var(--shadow); padding: clamp(22px, 4vw, 36px); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label { display: block; font-weight: 700; font-size: .9rem; margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; color: var(--ink);
  background: var(--sand); border: 1px solid var(--shell); border-radius: var(--radius);
  padding: 12px 14px; min-height: 48px;
}
.field textarea { min-height: 100px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 3px solid var(--accent); outline-offset: 1px; background: var(--paper); }
.field-full { grid-column: 1 / -1; }
.form-note { color: var(--muted); font-size: .88rem; margin-top: 14px; }
.form-success { text-align: center; padding: clamp(24px, 5vw, 40px); }
.form-success svg { width: 56px; height: 56px; margin-bottom: 14px; }
.form-success p { font-size: 1.1rem; font-weight: 600; max-width: 46ch; margin-inline: auto; margin-bottom: 20px; }
@media (max-width: 699px) { .form-grid { grid-template-columns: 1fr; } }

/* 21. İletişim / saatler */
.contact-card { padding: 24px; }
.contact-card > svg { width: 40px; height: 40px; margin-bottom: 12px; }
.contact-card a { font-weight: 700; word-break: break-word; }
.contact-card .hint { font-size: .85rem; margin-top: 6px; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table th, .hours-table td { text-align: left; padding: 12px 8px; border-bottom: 1px solid var(--shell); }
.hours-table td:last-child { text-align: right; font-weight: 600; }

/* 22. Footer */
.site-footer { background: var(--navy); color: #BFD3DE; margin-top: clamp(48px, 8vw, 88px); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr 1.5fr; gap: 36px; padding-block: 56px 40px; }
.site-footer h3 { color: #fff; font-size: 1rem; margin-bottom: 14px; }
.site-footer a { color: #BFD3DE; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer li { margin-bottom: 10px; }
.site-footer .brand { color: #fff; }
.site-footer .brand small { color: var(--aqua); }
.footer-tagline { color: var(--aqua); max-width: 30ch; font-family: var(--serif-i); font-style: italic; }
.social-row { display: flex; gap: 14px; margin-top: 16px; }
.social-row a { display: inline-flex; padding: 8px; background: rgba(255,255,255,.1); border-radius: 10px; }
.social-row svg { width: 20px; height: 20px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); padding-block: 20px; }
.footer-bottom p { font-size: .85rem; color: #8FAABB; }
@media (max-width: 899px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 599px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }

/* 23. Belirme animasyonları */
html.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
html.js .reveal.revealed { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  .card, .card:hover, .g-item img { transform: none; transition: none; }
  .nav-toggle span, .nav-links, .nav-links li, .faq summary::after, .table-spot circle { transition: none; }
  .hero-video { display: none; }
}

/* 24. Sayfa geçişleri */
@view-transition { navigation: auto; }
@media (prefers-reduced-motion: no-preference) {
  ::view-transition-old(root) { animation: vt-out .25s ease both; }
  ::view-transition-new(root) { animation: vt-in .25s ease both; }
  .site-header { view-transition-name: header; }
}
@media (prefers-reduced-motion: reduce) {
  ::view-transition-group(*), ::view-transition-old(*), ::view-transition-new(*) { animation: none !important; }
}
@keyframes vt-out { to { opacity: 0; } }
@keyframes vt-in { from { opacity: 0; transform: translateY(8px); } }

/* 25. Mikro etkileşimler */
@media (prefers-reduced-motion: no-preference) {
  .btn:active, .chip:active { transform: scale(.97); }
  html.js .cards-grid > .reveal:nth-child(2), html.js .stats > .reveal:nth-child(2), html.js .timeline > .reveal:nth-child(2) { transition-delay: .06s; }
  html.js .cards-grid > .reveal:nth-child(3), html.js .stats > .reveal:nth-child(3), html.js .timeline > .reveal:nth-child(3) { transition-delay: .12s; }
  html.js .cards-grid > .reveal:nth-child(4), html.js .stats > .reveal:nth-child(4), html.js .timeline > .reveal:nth-child(4) { transition-delay: .18s; }
}
