/* =====================================================
   LADY BENTE — Tasarım Sistemi
   Palet: Derin Ege / Ege Mavisi / Köpük / Tik Ağacı
   Tipografi: Marcellus (display) + Figtree (metin)
   ===================================================== */

:root {
  --ink:   #0D2B3E;   /* derin Ege laciverti */
  --ink-2: #123A52;   /* koyu zemin varyantı */
  --sea:   #1E6E8C;   /* Ege mavisi */
  --sea-lt:#7FB6C6;   /* açık deniz */
  --foam:  #F3F7F8;   /* köpük — serin beyaz */
  --white: #FDFEFE;
  --teak:  #A9713F;   /* tik ağacı — vurgu */
  --teak-lt:#C89468;
  --line:  #D8E3E7;

  --font-display: "Marcellus", Georgia, serif;
  --font-body: "Figtree", -apple-system, "Segoe UI", sans-serif;

  --container: 1180px;
  --radius: 14px;
  --shadow: 0 18px 50px -20px rgba(13, 43, 62, .25);
  --ease: cubic-bezier(.22, .8, .3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
ul, ol { list-style: none; }

/* ---------- Tipografi ---------- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.12; }
h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); letter-spacing: .01em; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: 1.2rem; }
h3 { font-size: 1.25rem; }

.eyebrow {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--teak);
  margin-bottom: 1rem;
}
.dark .eyebrow { color: var(--teak-lt); }

.lead { font-size: 1.2rem; font-weight: 300; margin-bottom: 1rem; }
.section-sub { max-width: 620px; color: #3E5A6B; margin-bottom: 3rem; font-size: 1.05rem; }
.fineprint { font-size: .85rem; color: #6B8391; margin-top: 1.5rem; font-style: italic; }

/* ---------- Yapı ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(1.2rem, 4vw, 2.5rem); }
.container.narrow { max-width: 780px; }
.section { padding: clamp(4rem, 9vw, 7.5rem) 0; }
.section.dark { background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%); color: var(--foam); }
.section.dark h2 { color: var(--white); }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .85rem 1.9rem;
  font: 600 .95rem var(--font-body);
  letter-spacing: .04em;
  text-decoration: none;
  border-radius: 999px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-solid { background: var(--teak); color: #fff; box-shadow: 0 10px 25px -10px rgba(169, 113, 63, .6); }
.btn-solid:hover { background: #96622F; }
.btn-ghost { border: 1.5px solid currentColor; color: inherit; background: transparent; }
.btn-whatsapp { background: #22B15C; color: #fff; box-shadow: 0 10px 25px -10px rgba(34, 177, 92, .55); }
.btn-lg { padding: 1.05rem 2.3rem; font-size: 1rem; }
.btn-sm { padding: .55rem 1.3rem; font-size: .85rem; }
.text-link {
  font-weight: 600; font-size: .92rem; color: var(--sea);
  text-decoration: none; letter-spacing: .03em;
}
.text-link:hover { color: var(--ink); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  color: #fff;
  transition: background .35s, box-shadow .35s, color .35s;
}
.site-header.scrolled {
  background: rgba(253, 254, 254, .92);
  backdrop-filter: blur(12px);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
}
.header-inner {
  max-width: var(--container); margin: 0 auto;
  padding: .9rem clamp(1.2rem, 4vw, 2.5rem);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; }
.brand-mark { font-size: 1.1rem; color: var(--teak-lt); }
.brand-text { font-family: var(--font-display); font-size: 1.25rem; letter-spacing: .12em; }
.brand-text em { font-style: normal; color: var(--teak-lt); }
.site-header.scrolled .brand-text em { color: var(--teak); }

.main-nav { display: flex; gap: 1.7rem; }
.main-nav a {
  font-size: .88rem; font-weight: 500; letter-spacing: .06em;
  text-decoration: none; opacity: .9;
}
.main-nav a:hover { opacity: 1; }
.header-actions { display: flex; align-items: center; gap: 1rem; }
.lang-switch { font-size: .82rem; font-weight: 600; letter-spacing: .1em; text-decoration: none; opacity: .85; }

.nav-toggle { display: none; background: none; border: 0; width: 40px; height: 40px; position: relative; cursor: pointer; }
.nav-toggle span {
  position: absolute; left: 8px; right: 8px; height: 2px; background: currentColor;
  transition: transform .3s var(--ease), top .3s var(--ease);
}
.nav-toggle span:first-child { top: 15px; }
.nav-toggle span:last-child { top: 23px; }
.nav-toggle[aria-expanded="true"] span:first-child { top: 19px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { top: 19px; transform: rotate(-45deg); }

.mobile-menu {
  display: flex; flex-direction: column; gap: 1.1rem;
  padding: 1.5rem clamp(1.2rem, 4vw, 2.5rem) 2rem;
  background: rgba(253, 254, 254, .97); backdrop-filter: blur(12px);
  color: var(--ink);
  box-shadow: 0 20px 40px -20px rgba(13,43,62,.3);
}
.mobile-menu a { text-decoration: none; font-weight: 500; }

/* ---------- 1. Hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center; text-align: center;
  color: #fff; overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; background: var(--ink);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,43,62,.45) 0%, rgba(13,43,62,.25) 45%, rgba(13,43,62,.65) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 7rem 1.5rem 5rem; max-width: 880px; }
.hero-eyebrow {
  font-size: .8rem; font-weight: 600; letter-spacing: .3em; text-transform: uppercase;
  color: var(--teak-lt); margin-bottom: 1.4rem;
}
.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.6vw, 1.7rem);
  letter-spacing: .08em;
  margin-top: 1.2rem;
  color: var(--sea-lt);
}
.hero-sub { max-width: 560px; margin: 1.2rem auto 2.4rem; font-weight: 300; opacity: .92; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.75); z-index: 2;
}
.scroll-dot { animation: scrollDot 2s infinite var(--ease); }
@keyframes scrollDot { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(12px); opacity: 0; } 100% { opacity: 0; } }

/* Hero yükleme animasyonu */
.hero-content > * { opacity: 0; transform: translateY(24px); animation: heroIn 1s var(--ease) forwards; }
.hero-content > *:nth-child(1) { animation-delay: .15s; }
.hero-content > *:nth-child(2) { animation-delay: .3s; }
.hero-content > *:nth-child(3) { animation-delay: .5s; }
.hero-content > *:nth-child(4) { animation-delay: .65s; }
.hero-content > *:nth-child(5) { animation-delay: .8s; }
@keyframes heroIn { to { opacity: 1; transform: none; } }

/* ---------- 2. Hoş geldiniz ---------- */
.welcome { text-align: center; background: var(--foam); }
.waterline { color: var(--sea-lt); width: 140px; margin: 1.6rem auto 2rem; }
.waterline svg { width: 100%; }

/* ---------- 3. Neden ---------- */
.why { text-align: center; }
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem;
  margin-top: 3.2rem; text-align: left;
}
.why-card {
  padding: 2.1rem 1.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.why-icon { display: inline-block; width: 46px; height: 46px; color: var(--sea); margin-bottom: 1.1rem; }
.why-icon svg { width: 100%; height: 100%; }
.why-card h3 { font-family: var(--font-body); font-weight: 600; font-size: 1.02rem; margin-bottom: .35rem; }
.why-card p { color: #4A6474; font-size: .93rem; }

/* ---------- 4. Tekneyi keşfedin ---------- */
.discover { background: var(--foam); }
.discover h2, .discover .eyebrow { text-align: center; }
.discover .section-sub { margin-inline: auto; text-align: center; }
.discover-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.discover-item {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4 / 3; background: var(--ink);
}
.discover-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.discover-item:hover img { transform: scale(1.05); }
.discover-item figcaption {
  position: absolute; inset: auto 0 0 0; padding: 2.2rem 1.4rem 1.2rem;
  background: linear-gradient(180deg, transparent, rgba(13,43,62,.85));
  color: #fff;
}
.discover-item h3 { font-size: 1.15rem; }
.discover-item p { font-size: .85rem; opacity: .85; }

/* ---------- 5. Premium alanlar ---------- */
.premium { text-align: center; }
.premium-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; margin-top: 3rem; }
.premium-card {
  position: relative; text-align: left; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); background: var(--white);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.premium-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.premium-card img { aspect-ratio: 4 / 3.4; object-fit: cover; width: 100%; }
.premium-card.featured { border-color: var(--teak); }
.premium-badge {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  background: var(--teak); color: #fff;
  font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: .35rem .8rem; border-radius: 999px;
}
.premium-body { padding: 1.5rem 1.6rem 1.7rem; }
.premium-body h3 { margin-bottom: .4rem; }
.premium-body p { color: #4A6474; font-size: .95rem; margin-bottom: 1rem; }

/* ---------- 6. Gün akışı (rota) ---------- */
.day .container { max-width: 700px; }
.route { margin-top: 3rem; position: relative; }
.route-stop {
  display: grid; grid-template-columns: 74px 30px 1fr; gap: .8rem;
  padding-bottom: 2.4rem; position: relative;
}
.route-stop:last-child { padding-bottom: 0; }
.route-time {
  font-family: var(--font-display); font-size: 1.05rem; text-align: right;
  color: var(--teak-lt); padding-top: .1rem;
}
.route-node {
  position: relative; width: 14px; height: 14px; margin: 6px auto 0;
  border-radius: 50%; border: 2px solid var(--sea-lt); background: var(--ink);
}
.route-node.end { background: var(--teak-lt); border-color: var(--teak-lt); }
.route-stop:not(:last-child) .route-node::after {
  content: ""; position: absolute; left: 50%; top: 16px; transform: translateX(-50%);
  width: 0; height: calc(100% + 2.4rem + 8px);
  border-left: 2px dotted rgba(127, 182, 198, .5);
}
.route-body h3 { color: var(--white); margin-bottom: .2rem; }
.route-body p { color: rgba(243, 247, 248, .75); font-size: .95rem; font-weight: 300; }

/* ---------- 7. Koylar ---------- */
.coves { text-align: center; }
.coves-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-top: 3rem; }
.cove {
  position: relative; display: block; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 3 / 4; text-decoration: none; background: var(--ink);
}
.cove img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.cove:hover img { transform: scale(1.06); }
.cove::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(13,43,62,.75));
}
.cove-name {
  position: absolute; z-index: 2; inset: auto 0 1.2rem 0;
  font-family: var(--font-display); font-size: 1.3rem; color: #fff; letter-spacing: .05em;
}

/* ---------- 8. Öğle yemeği ---------- */
.lunch { background: var(--foam); }
.lunch-layout { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.lunch-photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.lunch-photo img { aspect-ratio: 4 / 4.6; object-fit: cover; width: 100%; }
.menu-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 2.2rem; margin-top: 1.4rem;
}
.menu-card h3 {
  font-family: var(--font-body); font-size: .8rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: var(--teak);
  margin: 1.4rem 0 .8rem;
}
.menu-card h3:first-child { margin-top: 0; }
.menu-mains li { font-family: var(--font-display); font-size: 1.35rem; }
.menu-or { font-family: var(--font-body) !important; font-size: .85rem !important; color: #6B8391; padding: .15rem 0; font-style: italic; }
.menu-sides { display: grid; grid-template-columns: 1fr 1fr; gap: .45rem .8rem; }
.menu-sides li { position: relative; padding-left: 1.1rem; font-size: .97rem; }
.menu-sides li::before { content: "—"; position: absolute; left: 0; color: var(--sea-lt); }

/* ---------- 9. Atmosfer ---------- */
.atmosphere { text-align: center; }
.calm-wave { width: min(560px, 88%); margin: 0 auto 2.6rem; color: var(--sea-lt); display: block; }
.atmosphere-statement {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  line-height: 1.35; color: var(--white);
}
.atmosphere-statement em { font-style: italic; color: var(--teak-lt); }
.atmosphere-sub { margin-top: 1.4rem; font-weight: 300; color: rgba(243,247,248,.75); }

/* ---------- 10. Yorumlar ---------- */
.reviews { text-align: center; }
.rating-badge { white-space: nowrap; }
.stars { color: var(--teak); font-size: .7em; letter-spacing: .12em; vertical-align: .18em; }
.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; margin-top: 3rem; text-align: left; }
.review {
  padding: 1.9rem 2rem; background: var(--foam); border-radius: var(--radius);
  border: 1px solid var(--line);
}
.review p { font-size: 1.02rem; margin-bottom: 1rem; }
.review footer { font-size: .85rem; color: #6B8391; }

/* ---------- 11. Hakkımızda ---------- */
.about { background: var(--foam); }
.about-layout { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about-story p { margin-bottom: 1rem; }
.about-photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.about-photo img { aspect-ratio: 3 / 4; object-fit: cover; width: 100%; }
.about-facts {
  display: grid; grid-template-columns: repeat(4, auto); gap: 1.5rem 2.5rem;
  margin-top: 2.2rem; justify-content: start;
}
.about-facts li { display: flex; flex-direction: column; }
.about-facts strong { font-family: var(--font-display); font-weight: 400; font-size: 1.9rem; color: var(--sea); }
.about-facts span { font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: #6B8391; }

/* ---------- 12. SSS ---------- */
.faq h2, .faq .eyebrow { text-align: center; }
.faq-list { margin-top: 2.6rem; border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  cursor: pointer; list-style: none;
  padding: 1.25rem .2rem; font-weight: 600; font-size: 1.02rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; font-family: var(--font-display); font-size: 1.4rem;
  color: var(--teak); transition: transform .3s var(--ease); flex-shrink: 0;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { padding: 0 .2rem 1.4rem; color: #3E5A6B; max-width: 640px; }

/* ---------- 13. CTA ---------- */
.cta { text-align: center; }
.cta-tagline {
  font-family: var(--font-display); letter-spacing: .1em;
  color: var(--sea-lt); font-size: 1.2rem; margin: .6rem 0 2.4rem;
}
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-phone { margin-top: 2rem; font-size: .95rem; color: rgba(243,247,248,.8); }
.cta-phone a { color: var(--white); text-decoration: none; font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer { background: #081D2B; color: rgba(243,247,248,.8); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }
.footer-brand { font-size: 1.4rem; color: #fff; }
.footer-tagline { font-style: italic; color: var(--sea-lt); margin: .4rem 0 1.2rem; }
.site-footer address { font-style: normal; font-size: .92rem; line-height: 1.8; }
.site-footer h3 {
  font-family: var(--font-body); font-size: .78rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: var(--teak-lt); margin-bottom: 1rem;
}
.site-footer nav a, .site-footer div > a { display: block; text-decoration: none; padding: .25rem 0; font-size: .95rem; }
.site-footer a:hover { color: #fff; }
.footer-social { display: flex; gap: 1.2rem; margin-top: 1rem; }
.footer-social a { display: inline; }
.footer-copy {
  text-align: center; font-size: .82rem; color: rgba(243,247,248,.45);
  margin-top: 3rem; padding: 1.5rem clamp(1.2rem, 4vw, 2.5rem) 0;
  border-top: 1px solid rgba(243,247,248,.1);
}

/* ---------- Sabit WhatsApp ---------- */
.wa-float {
  position: fixed; right: 1.3rem; bottom: 1.3rem; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: #22B15C; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px -8px rgba(34, 177, 92, .6);
  transition: transform .25s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Erişilebilirlik ---------- */
:focus-visible { outline: 2px solid var(--sea); outline-offset: 3px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-content > * { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .why-grid, .discover-grid, .premium-grid { grid-template-columns: repeat(2, 1fr); }
  .coves-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .main-nav, .header-actions .lang-switch { display: none; }
  .nav-toggle { display: block; }
  .lunch-layout, .about-layout { grid-template-columns: 1fr; }
  .lunch-photo { order: 2; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .reviews-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .why-grid, .discover-grid, .premium-grid, .coves-grid { grid-template-columns: 1fr; }
  .route-stop { grid-template-columns: 56px 26px 1fr; }
  .about-facts { grid-template-columns: repeat(2, auto); }
  .btn-lg { width: 100%; }
  .hero-actions, .cta-actions { flex-direction: column; align-items: stretch; }
}

/* =====================================================
   ÇOK SAYFALI YAPI EKLERİ + HATA DÜZELTMELERİ
   ===================================================== */

/* HATA DÜZELTME: mobil menü masaüstünde görünüyordu.
   display:flex, [hidden] özniteliğini eziyordu. */
.mobile-menu[hidden] { display: none !important; }
@media (min-width: 861px) { .mobile-menu { display: none !important; } }

/* Hero'suz sayfalarda header her zaman koyu metinli/beyaz zemin */
.site-header.solid {
  position: sticky;
  background: rgba(253, 254, 254, .95);
  backdrop-filter: blur(12px);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
}
.site-header.solid .brand-text em { color: var(--teak); }

/* İç sayfa banner'ı */
.page-hero {
  position: relative;
  padding: clamp(6.5rem, 12vw, 9rem) 0 clamp(3rem, 6vw, 4.5rem);
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
  color: var(--foam);
  text-align: center;
  overflow: hidden;
}
.page-hero.solid-offset { padding-top: clamp(3.5rem, 7vw, 5.5rem); }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.4rem); color: var(--white); }
.page-hero .eyebrow { color: var(--teak-lt); }
.page-hero .page-sub { max-width: 640px; margin: 1rem auto 0; font-weight: 300; color: rgba(243,247,248,.85); }
.page-hero .breadcrumb {
  display: flex; gap: .5rem; justify-content: center;
  font-size: .82rem; letter-spacing: .05em; margin-top: 1.4rem;
  color: rgba(243,247,248,.6);
}
.page-hero .breadcrumb a { color: rgba(243,247,248,.85); text-decoration: none; }
.page-hero .breadcrumb a:hover { color: #fff; }

/* Ana sayfada bölüm sonu "devamı" linki */
.section-more { text-align: center; margin-top: 2.6rem; }

/* Galeri */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery-grid a { display: block; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; background: var(--ink); }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.gallery-grid a:hover img { transform: scale(1.05); }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.post-card {
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  background: var(--white); display: flex; flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.post-card img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.post-card-body { padding: 1.5rem 1.6rem 1.7rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.post-meta { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--teak); font-weight: 600; }
.post-card h3 a { text-decoration: none; }
.post-card h3 a:hover { color: var(--sea); }
.post-card p { color: #4A6474; font-size: .95rem; flex: 1; }

/* Blog yazı sayfası */
.article-body { max-width: 720px; margin: 0 auto; }
.article-body p { margin-bottom: 1.2rem; }
.article-body h2 { font-size: 1.6rem; margin: 2.4rem 0 1rem; }
.article-body img { border-radius: var(--radius); margin: 2rem 0; }
.article-body ul { list-style: none; margin: 0 0 1.2rem; }
.article-body ul li { position: relative; padding-left: 1.2rem; margin-bottom: .4rem; }
.article-body ul li::before { content: "—"; position: absolute; left: 0; color: var(--sea-lt); }

/* İletişim */
.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 2.2rem;
}
.contact-card h3 {
  font-family: var(--font-body); font-size: .78rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: var(--teak); margin: 1.6rem 0 .5rem;
}
.contact-card h3:first-child { margin-top: 0; }
.contact-card a { display: block; text-decoration: none; padding: .15rem 0; font-weight: 500; }
.contact-card a:hover { color: var(--sea); }
.contact-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); min-height: 420px; background: var(--foam); }
.contact-map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }

/* Turlar listesi (diğer turlar) */
.tour-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }

@media (max-width: 1020px) {
  .gallery-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .gallery-grid, .blog-grid, .tour-list { grid-template-columns: 1fr; }
}

/* =====================================================
   YORUMLAR v2 (Google + Tripadvisor, dinamik) + rötuşlar
   ===================================================== */
.reviews-summary {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  margin: 1.6rem 0 0;
}
.review-summary-badge {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .6rem 1.2rem; border-radius: 999px;
  background: var(--foam); border: 1px solid var(--line);
}
.review-summary-badge strong { font-family: var(--font-display); font-size: 1.25rem; }
.review-summary-badge .stars { color: var(--teak); font-size: .8rem; letter-spacing: .1em; }
.review-summary-badge em { font-style: normal; font-size: .82rem; color: #4A6474; }
.src-google strong { color: #1A73E8; }
.src-tripadvisor strong { color: #00AA6C; }

.review.v2 { display: flex; flex-direction: column; gap: .9rem; }
.review-head { display: flex; align-items: center; gap: .8rem; }
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--ink); color: var(--sea-lt);
  font-weight: 600; font-size: .9rem; letter-spacing: .05em;
}
.review-who { display: flex; flex-direction: column; line-height: 1.3; flex: 1; }
.review-who strong { font-size: .95rem; }
.review-stars { color: var(--teak); font-size: .78rem; letter-spacing: .12em; }
.review-src {
  font-size: .72rem; font-weight: 600; letter-spacing: .06em;
  padding: .25rem .7rem; border-radius: 999px; background: #fff; border: 1px solid var(--line);
}
.review-src.src-google { color: #1A73E8; }
.review-src.src-tripadvisor { color: #00AA6C; }
.review.v2 p { margin: 0; font-size: .98rem; }
.reviews-links { text-align: center; margin-top: 2.4rem; display: flex; gap: 1.6rem; justify-content: center; flex-wrap: wrap; }

/* Rötuş: kart görsellerine çok hafif iç gölge, section geçişine yumuşaklık */
.premium-card img, .discover-item, .cove, .lunch-photo, .about-photo { box-shadow: inset 0 0 0 1px rgba(13,43,62,.04); }
.welcome { position: relative; }
.welcome::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

/* ---------- Videolar (facade: iframe tıklanınca yüklenir) ---------- */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 34px; }
.video-grid.shorts { grid-template-columns: repeat(4, 1fr); }
.video-item { margin: 0; }
.video-item figcaption { margin-top: 12px; font-size: .95rem; color: var(--ink); opacity: .85; }
.video-facade { position: relative; display: block; width: 100%; border: 0; padding: 0; cursor: pointer; border-radius: var(--radius); overflow: hidden; background: var(--ink); aspect-ratio: 16 / 9; box-shadow: var(--shadow); }
.video-facade.vertical { aspect-ratio: 9 / 16; }
.video-facade img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: .92; transition: transform .5s var(--ease), opacity .3s; }
.video-facade:hover img { transform: scale(1.04); opacity: 1; }
.video-facade .video-play { position: absolute; inset: 0; margin: auto; width: 62px; height: 62px; border-radius: 50%; background: rgba(13, 43, 62, .72); color: var(--foam); display: flex; align-items: center; justify-content: center; transition: background .3s; pointer-events: none; }
.video-facade:hover .video-play { background: var(--sea); }
.video-facade iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
@media (max-width: 900px) {
  .video-grid { grid-template-columns: 1fr; }
  .video-grid.shorts { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Dil seçici (4 dil) ---------- */
.lang-switch { display: flex; gap: .55rem; align-items: center; }
.lang-switch a, .lang-switch [aria-current] { font-size: .82rem; font-weight: 600; letter-spacing: .08em; text-decoration: none; color: inherit; opacity: .65; }
.lang-switch [aria-current] { opacity: 1; }
.lang-switch a:hover { opacity: 1; }
.mobile-menu .lang-row { display: flex; gap: 1.1rem; padding-top: .65rem; }
.mobile-menu .lang-row a, .mobile-menu .lang-row [aria-current] { font-size: .85rem; font-weight: 600; letter-spacing: .08em; opacity: .7; }
.mobile-menu .lang-row [aria-current] { opacity: 1; }

/* ================= HEADER v2 — ortada logo, her zaman koyu zemin ================= */
.site-header.v2 { position: sticky; top: 0; background: var(--ink); color: var(--foam); box-shadow: 0 1px 0 rgba(255,255,255,.06); }
.site-header.v2 .header-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1rem; padding: .55rem clamp(1.2rem, 4vw, 2.5rem); }
.site-header.v2 .nav-left { justify-content: flex-end; }
.site-header.v2 .nav-right { justify-content: flex-start; }
.site-header.v2 .main-nav { display: flex; align-items: center; gap: 1.4rem; }
.site-header.v2 .brand img { display: block; height: 52px; width: auto; filter: drop-shadow(0 0 1px rgba(255,255,255,.4)) brightness(1.15); }
.site-header.v2 .nav-toggle { position: absolute; right: clamp(1.2rem, 4vw, 2.5rem); }

/* Dropdown menüler */
.nav-drop { position: relative; }
.nav-drop > a, .nav-drop > .lang-btn { display: inline-flex; align-items: center; gap: .35rem; }
.drop-caret { opacity: .7; transition: transform .25s var(--ease); }
.nav-drop:hover .drop-caret, .nav-drop:focus-within .drop-caret { transform: rotate(180deg); }
.drop-menu {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translate(-50%, 8px);
  min-width: 190px; padding: .5rem 0;
  background: var(--white); color: var(--ink); border-radius: 10px;
  box-shadow: 0 18px 40px -12px rgba(13,43,62,.35);
  opacity: 0; visibility: hidden; transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
  z-index: 50;
}
.drop-menu::before { content: ""; position: absolute; top: -10px; left: 0; right: 0; height: 10px; }
.nav-drop:hover .drop-menu, .nav-drop:focus-within .drop-menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.drop-menu a { display: block; padding: .5rem 1.1rem; font-size: .86rem; font-weight: 500; text-decoration: none; color: var(--ink); opacity: .85; white-space: nowrap; }
.drop-menu a:hover { opacity: 1; background: var(--foam); }
.lang-btn { background: none; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; color: inherit; font: inherit; font-size: .8rem; font-weight: 600; letter-spacing: .08em; padding: .3rem .7rem; cursor: pointer; }

@media (max-width: 1060px) {
  .site-header.v2 .main-nav { display: none; }
  .site-header.v2 .nav-toggle { display: block; }
  .site-header.v2 .header-inner { grid-template-columns: 1fr; justify-items: center; }
  .site-header.v2 .brand img { height: 44px; }
}

/* ================= 4 resim / 4 yazı kartları ================= */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 40px; }
.feature-card { display: block; text-decoration: none; color: inherit; border-radius: var(--radius); overflow: hidden; background: var(--white); box-shadow: var(--shadow); transition: transform .4s var(--ease); }
.feature-card:hover { transform: translateY(-6px); }
.feature-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.feature-card-body { padding: 1.3rem 1.4rem 1.6rem; }
.feature-card h3 { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: .45rem; }
.feature-card p { font-size: .92rem; opacity: .8; }
@media (max-width: 1000px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .feature-grid { grid-template-columns: 1fr; } }

/* Parion tarzı tanıtım (logo + metin + görsel) */
.intro-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; text-align: left; }
.intro-logo { height: 74px; width: auto; margin-bottom: 1.4rem; }
.intro-media img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); display: block; }
@media (max-width: 900px) { .intro-layout { grid-template-columns: 1fr; } .intro-media { order: -1; } }

/* ================= Lightbox ================= */
.lightbox { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; background: rgba(9, 26, 38, .94); opacity: 0; visibility: hidden; transition: opacity .25s var(--ease), visibility .25s; }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(92vw, 1400px); max-height: 86vh; border-radius: 10px; box-shadow: 0 30px 80px -20px rgba(0,0,0,.6); }
.lightbox button { position: absolute; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2); color: #fff; width: 46px; height: 46px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .25s; }
.lightbox button:hover { background: rgba(255,255,255,.22); }
.lb-close { top: 18px; right: 18px; }
.lb-prev { left: 14px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 14px; top: 50%; transform: translateY(-50%); }
.lb-count { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.8); font-size: .85rem; letter-spacing: .1em; }
@media (max-width: 640px) { .lb-prev { left: 6px; } .lb-next { right: 6px; } .lightbox button { width: 40px; height: 40px; } }

/* ================= Yorumlar sayfası v2 ================= */
.review-hero-badges { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-top: 10px; }
.review-hero-badge { display: flex; align-items: center; gap: 14px; background: var(--white); color: var(--ink); border-radius: var(--radius); padding: 1.1rem 1.5rem; box-shadow: var(--shadow); text-decoration: none; transition: transform .35s var(--ease); }
.review-hero-badge:hover { transform: translateY(-4px); }
.review-hero-badge .rhb-logo { width: 38px; height: 38px; flex: none; }
.review-hero-badge .rhb-score { font-family: var(--font-display); font-size: 1.7rem; line-height: 1; }
.review-hero-badge .rhb-meta { display: flex; flex-direction: column; gap: .2rem; font-size: .82rem; opacity: .8; }
.review-hero-badge .stars { color: #F5A623; letter-spacing: .08em; font-size: .95rem; }
.reviews-section-title { display: flex; align-items: center; gap: .7rem; justify-content: center; margin-bottom: .4rem; }
.reviews-section-title img, .reviews-section-title svg { width: 30px; height: 30px; }
.review .review-stars, .review-who .review-stars { color: #F5A623; letter-spacing: .1em; }

.footer-credit { text-align: center; font-size: .78rem; opacity: .55; padding: 0 0 1.4rem; }
.footer-credit a { color: inherit; }

/* intro görseli sütunu doldursun (başlık kaldırıldı, görsel büyüdü) */
.intro-media { align-self: stretch; }
.intro-media img { height: 100%; min-height: 460px; object-fit: cover; }
@media (max-width: 900px) { .intro-media img { min-height: 300px; } }

/* ================= Rezervasyon / İletişim çubuğu (Parion tarzı) ================= */
.contact-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 150; display: flex; height: 56px; box-shadow: 0 -8px 30px -12px rgba(13,43,62,.4); }
.contact-bar > a, .contact-bar > button { flex: 1; display: flex; align-items: center; justify-content: center; gap: .5rem; background: var(--ink); color: #fff; font: inherit; font-size: .84rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; text-decoration: none; border: 0; cursor: pointer; }
.contact-bar > button { border-left: 1px solid rgba(255,255,255,.18); }
.contact-bar > a:hover, .contact-bar > button:hover { background: var(--ink-2); }
.contact-bar .cb-ico { width: 17px; height: 17px; flex: none; }
.contact-panel { position: fixed; bottom: 68px; right: 12px; z-index: 150; width: min(320px, calc(100vw - 24px)); background: var(--white); border-radius: var(--radius); box-shadow: 0 24px 60px -18px rgba(13,43,62,.45); padding: .6rem; opacity: 0; visibility: hidden; transform: translateY(10px); transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s; }
.contact-panel.open { opacity: 1; visibility: visible; transform: none; }
.contact-panel a { display: flex; align-items: center; gap: .9rem; padding: .7rem .8rem; border-radius: 10px; text-decoration: none; color: var(--ink); }
.contact-panel a:hover { background: var(--foam); }
.contact-panel .cp-ico { width: 40px; height: 40px; border-radius: 50%; flex: none; display: flex; align-items: center; justify-content: center; color: #fff; }
.contact-panel .cp-ico svg { width: 19px; height: 19px; }
.contact-panel .cp-meta { display: flex; flex-direction: column; }
.contact-panel .cp-meta small { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; opacity: .55; }
.contact-panel .cp-meta strong { font-size: .92rem; }

@media (min-width: 861px) {
  .contact-bar { left: auto; right: 24px; bottom: 20px; width: 360px; height: 52px; border-radius: 999px; overflow: hidden; }
  .contact-panel { right: 24px; bottom: 84px; }
}

/* eski yüzen whatsapp butonu yeni çubukla çakışmasın */
.wa-float { display: none !important; }
body { padding-bottom: 56px; }
@media (min-width: 861px) { body { padding-bottom: 0; } }

/* Widget: oval değil, hafif yuvarlatılmış köşeli dikdörtgen */
@media (min-width: 861px) {
  .contact-bar { border-radius: 10px; width: 340px; }
}
/* PC menü ferahlığı: öğe araları ve logo çevresi açıldı */
.site-header.v2 .main-nav { gap: 1.9rem; }
.site-header.v2 .header-inner { gap: clamp(1.5rem, 3vw, 3rem); padding-top: .7rem; padding-bottom: .7rem; }
.site-header.v2 .nav-left { padding-right: .5rem; }
.site-header.v2 .nav-right { padding-left: .5rem; }
/* Mobil hamburger ve X her zaman beyaz */
.site-header.v2 .nav-toggle span { background: var(--foam); }

/* intro H1 (hero'dan taşınan ana başlık) h2 boyutunda görünür */
.intro-title { font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin-bottom: .6rem; }
