/* ============================================================
   Kabin Rotası — Kişi Başı Kabin Charter Mavi Turlar
   Cozy travel-journal · sand + turquoise + coral
   ============================================================ */

:root {
  interpolate-size: allow-keywords;

  --bg: #FBF6EE;
  --surface: #FFFFFF;
  --surface-2: #F3ECE0;
  --surface-3: #EAF6F4;
  --ink: #122A33;
  --ink-soft: #3D555E;
  --ink-mute: #6C808A;
  --accent: #1CA0A0;
  --accent-deep: #147C7C;
  --accent-2: #E86A33;
  --accent-2-deep: #C9531F;
  --line: rgba(18, 42, 51, 0.12);
  --line-strong: rgba(18, 42, 51, 0.22);
  --sand: #F0E4CE;
  --gold: #D9A441;

  --header-h: 74px;
  --maxw: 1320px;
  --radius: 14px;
  --cut: 20px;

  --shadow-sm: 0 4px 14px -8px rgba(18, 42, 51, 0.28);
  --shadow-md: 0 16px 40px -22px rgba(18, 42, 51, 0.42);
  --shadow-teal: 0 22px 46px -24px rgba(28, 160, 160, 0.55);

  --ease: cubic-bezier(.2, .7, .2, 1);
  --ease2: cubic-bezier(.4, 0, .2, 1);

  /* Editorial coastal serif for display + italic accents; grotesque for UI/numbers */
  --font-display: 'Fraunces', 'Georgia', 'Times New Roman', serif;
  --font-head: 'Archivo', 'Public Sans', system-ui, 'Segoe UI', sans-serif;
  --font-body: 'Public Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

html, body {
  overflow-x: hidden;
  max-width: 100vw;
  margin: 0;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.014em;
  margin: 0 0 0.4em;
  color: var(--ink);
  font-optical-sizing: auto;
  text-wrap: balance;
}
/* Italic accents — the signature editorial touch (softer, wonky true-italic) */
h1 em, h2 em, h3 em {
  font-style: italic;
  color: var(--accent-2);
  font-weight: 500;
  font-variation-settings: "SOFT" 60, "WONK" 1;
}

p { margin: 0 0 1em; }
a { color: var(--accent-deep); text-decoration: none; }

img { max-width: 100%; height: auto; display: block; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 56px);
  padding-right: clamp(16px, 4vw, 56px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-deep);
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--accent-2);
  display: inline-block;
}

.section { padding: clamp(48px, 8vw, 104px) 0; }
.section-head { max-width: 720px; margin-bottom: clamp(28px, 4vw, 52px); }
.section-head h2 {
  font-size: clamp(1.9rem, 5vw, 3.1rem);
  margin-top: 0.3em;
}
.section-head p { color: var(--ink-soft); font-size: 1.06rem; margin: 0; }

.text-accent { color: var(--accent-deep); }
.text-coral { color: var(--accent-2); }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 2000;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1080;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(251, 246, 238, 0.92);
  backdrop-filter: saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: background .24s var(--ease), box-shadow .24s var(--ease), height .24s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(251, 246, 238, 0.98);
  box-shadow: 0 8px 24px -16px rgba(0, 0, 0, .18);
  border-bottom-color: var(--line);
  height: 64px;
}
.header-inner {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 56px);
  padding-right: clamp(16px, 4vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.24rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.brand:hover { color: var(--ink); }
.brand .mark {
  width: 34px; height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #fff;
  border-radius: 10px 10px 10px 3px;
  box-shadow: var(--shadow-sm);
}
.brand .mark svg { width: 20px; height: 20px; }
.brand b { color: var(--accent-deep); }

.nav-desktop {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
}
.nav-desktop a {
  position: relative;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--ink-soft);
  padding: 6px 2px;
  transition: color .2s var(--ease);
}
.nav-desktop a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 2px;
  background: var(--accent-2);
  transition: right .28s var(--ease);
}
.nav-desktop a:not(.nav-cta):hover,
.nav-desktop a.is-active { color: var(--ink); }
.nav-desktop a:not(.nav-cta):hover::after,
.nav-desktop a.is-active::after { right: 0; }

.nav-cta {
  background: var(--ink);
  color: var(--surface) !important;
  padding: 10px 18px !important;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover,
.nav-desktop .nav-cta:focus-visible {
  background: var(--accent-2);
  color: #fff !important;
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 1100;
  width: 46px; height: 46px;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  border-radius: 12px;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  position: absolute;
  left: 12px; right: 12px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease), top .3s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

/* ---------- Mobile drawer ---------- */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity .24s var(--ease), visibility .24s var(--ease);
  z-index: 1040;
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: var(--ink);
  color: #fff;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.2, .7, .2, 1);
  z-index: 1050;
  padding: calc(var(--header-h) + 12px) 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  color: #EAF6F4;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: color .2s var(--ease), padding-left .2s var(--ease);
}
.drawer a:hover, .drawer a.is-active {
  color: #fff;
  padding-left: 8px;
}
.drawer .drawer-cta {
  margin-top: 18px;
  background: var(--accent-2);
  color: #fff !important;
  text-align: center;
  border-radius: 999px;
  border: 0;
  padding: 14px 20px;
}
.drawer .drawer-cta:hover { background: #fff; color: var(--ink) !important; padding-left: 20px; }
.drawer-note {
  margin-top: auto;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.9rem;
  color: rgba(234, 246, 244, 0.7);
  border: 0 !important;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
  text-align: center;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--accent-2);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-primary .arrow { transition: transform .25s var(--ease); }
.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  transform: translateY(-2px);
}
.btn-teal {
  background: var(--accent);
  color: #fff;
}
.btn-teal:hover, .btn-teal:focus-visible {
  background: var(--accent-deep);
  color: #fff;
  transform: translateY(-2px);
}
.btn-block { width: 100%; justify-content: center; }

/* ============================================================
   MAIN / HERO
   ============================================================ */
main { padding-top: var(--header-h); }

/* ---------- Cinematic full-bleed photo hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  margin-top: calc(var(--header-h) * -1); /* pull under fixed header for full-bleed */
  display: flex;
  align-items: flex-end;
  background: var(--ink);
  isolation: isolate;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  transform: scale(1.06);
}
/* Slow ken-burns drift — only with JS + motion allowed */
html:not(.no-js) .hero-media img {
  animation: kenburns 20s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to   { transform: scale(1.16) translate3d(-1.5%, -2%, 0); }
}
/* Dark overlay for text contrast (>=4.5:1 against white) */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(9,22,28,0.86) 0%, rgba(9,22,28,0.55) 42%, rgba(9,22,28,0.12) 74%, rgba(9,22,28,0.0) 100%),
    linear-gradient(0deg, rgba(9,22,28,0.72) 0%, rgba(9,22,28,0.18) 38%, rgba(9,22,28,0.0) 62%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: calc(var(--header-h) + 40px) clamp(16px, 4vw, 56px) clamp(52px, 8vh, 96px);
}
.hero-copy { max-width: 640px; }
.hero-copy .eyebrow { color: #fff; }
.hero-copy .eyebrow::before { background: var(--accent-2); }

.hero-title {
  font-family: var(--font-display);
  font-weight: 560;
  letter-spacing: -0.018em;
  line-height: 1.0;
  color: #fff;
  font-size: clamp(2.3rem, 3.6vw + 1.4rem, 5rem);
  margin: 0.14em 0 0.42em;
  text-shadow: 0 2px 30px rgba(0,0,0,0.35);
  font-optical-sizing: auto;
}
.hero-title .word { display: inline-block; white-space: nowrap; }
.hero-title em {
  font-style: italic;
  color: var(--accent-2);
  font-weight: 500;
  font-variation-settings: "SOFT" 70, "WONK" 1;
}
/* Fade-up entrance (visible at rest; hidden start lives in keyframe) */
html:not(.no-js) .hero-title .word {
  animation: heroWordUp .9s var(--ease) both;
}
html:not(.no-js) .hero-title .word:nth-child(1) { animation-delay: .05s; }
html:not(.no-js) .hero-title .word:nth-child(2) { animation-delay: .13s; }
html:not(.no-js) .hero-title .word:nth-child(3) { animation-delay: .21s; }
html:not(.no-js) .hero-title .word:nth-child(4) { animation-delay: .29s; }
@keyframes heroWordUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.6vw + 0.9rem, 1.18rem);
  color: rgba(255,255,255,0.9);
  max-width: 500px;
  text-shadow: 0 1px 14px rgba(0,0,0,0.35);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 30px;
}
/* Ghost CTA tuned for dark photo — never blends into background */
.btn-hero-ghost {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border-color: rgba(255,255,255,0.7);
  backdrop-filter: blur(3px);
}
.btn-hero-ghost:hover, .btn-hero-ghost:focus-visible {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
  transform: translateY(-2px);
}

/* Thin stats strip over the photo */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 30px;
  align-items: flex-end;
  list-style: none;
  margin: 4px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid rgba(255,255,255,0.22);
  max-width: 560px;
}
.hero-stats li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-stats b {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.3rem, 1vw + 1.1rem, 1.7rem);
  line-height: 1;
  color: #fff;
}
.hero-stats b i { font-style: normal; font-weight: 700; color: var(--accent-2); font-size: 0.68em; }
.hero-stats span {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.78);
}

/* Scroll cue */
.hero-scroll {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 1.5px solid rgba(255,255,255,0.6);
  border-radius: 14px;
}
.hero-scroll span {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 4px; height: 8px;
  margin-left: -2px;
  border-radius: 2px;
  background: #fff;
}
html:not(.no-js) .hero-scroll span { animation: scrollCue 1.8s var(--ease2) infinite; }
@keyframes scrollCue {
  0% { opacity: 0; transform: translateY(0); }
  35% { opacity: 1; }
  70%,100% { opacity: 0; transform: translateY(12px); }
}

/* ---------- Featured koylar (moved out of hero) ---------- */
.featured-koylar { padding-top: clamp(40px, 6vw, 72px); }
.koy-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 22px);
}
.koy-card {
  position: relative;
  min-width: 0;
  border-radius: 16px 16px 16px 4px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--surface-2);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.koy-card:hover { transform: translateY(-6px); box-shadow: 0 26px 50px -24px rgba(18,42,51,.55); }
.koy-card:hover img { transform: scale(1.06); }
.koy-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.koy-card .cap {
  position: absolute;
  z-index: 2;
  left: 12px; bottom: 12px; right: 12px;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  text-shadow: 0 2px 10px rgba(0,0,0,.55);
}
.koy-card .cap small {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  opacity: .92;
}
.koy-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(9,22,28,0.6) 0%, rgba(9,22,28,0.0) 45%);
  pointer-events: none;
}

/* ============================================================
   STATS BAND
   ============================================================ */
.stats-band {
  background: var(--ink);
  color: #fff;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 3vw, 40px);
}
.stat { text-align: left; }
.stat .num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--accent);
  line-height: 1;
}
.stat .num .suf { color: var(--accent-2); }
.stat .lbl { color: rgba(234,246,244,.78); font-size: 0.94rem; margin-top: 6px; }

/* ============================================================
   FILTER BAR + ROUTE VITRINE
   ============================================================ */
.filter-bar {
  position: sticky;
  top: calc(var(--header-h) - 6px);
  z-index: 30;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px clamp(16px, 3vw, 24px);
  box-shadow: var(--shadow-sm);
  margin-bottom: 34px;
}
.filter-group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.filter-group > .flabel {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-right: 2px;
}
.chip {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 15px;
  border-radius: 999px;
  border: 1.5px solid var(--line-strong);
  background: var(--surface);
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .2s var(--ease);
}
.chip:hover { border-color: var(--accent); color: var(--accent-deep); }
.chip.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.filter-count {
  margin-left: auto;
  font-size: 0.86rem;
  color: var(--ink-mute);
  font-weight: 600;
}
.filter-count b { color: var(--ink); }

.route-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: clamp(18px, 2.4vw, 28px);
}
.route-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius) var(--radius) var(--radius) 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  /* corner cut */
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--cut)), calc(100% - var(--cut)) 100%, 0 100%);
}
.route-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-teal);
  border-color: transparent;
}
.route-media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.route-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.route-card:hover .route-media img { transform: scale(1.06); }

/* direction / bay pin badge */
.pin-badge {
  position: absolute;
  left: 12px; top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(251,246,238,.94);
  color: var(--ink);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 6px 11px 6px 9px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.pin-badge svg { width: 14px; height: 14px; color: var(--accent-2); }
.nights-badge {
  position: absolute;
  right: 12px; top: 12px;
  background: var(--accent-2);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

/* animated route badge — dots hopping bay to bay (theme signature) */
.route-hop {
  position: absolute;
  left: 12px; bottom: 12px; right: 12px;
  height: 24px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  pointer-events: none;
}
.route-card:hover .route-hop { opacity: 1; transform: translateY(0); }
.route-hop svg { width: 100%; height: 100%; overflow: visible; }
.route-hop .hop-line { stroke: rgba(255,255,255,.75); stroke-width: 1.4; stroke-dasharray: 3 4; }
.route-hop .hop-dot {
  fill: #fff;
  opacity: .35;
}
.route-card:hover .route-hop .hop-dot { animation: hopPulse 1.6s var(--ease2) infinite; }
.route-hop .hop-dot:nth-child(2) { animation-delay: 0s; }
.route-hop .hop-dot:nth-child(3) { animation-delay: .2s; }
.route-hop .hop-dot:nth-child(4) { animation-delay: .4s; }
.route-hop .hop-dot:nth-child(5) { animation-delay: .6s; }
.route-hop .hop-boat { fill: var(--accent-2); }
.route-card:hover .route-hop .hop-boat { animation: sailAcross 2.6s var(--ease2) infinite; }
@keyframes hopPulse {
  0%, 100% { opacity: .35; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-4px); }
}
@keyframes sailAcross {
  0% { transform: translateX(0); }
  100% { transform: translateX(160px); }
}

.route-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
.route-title {
  font-size: 1.28rem;
  margin: 0 0 4px;
}
.route-sub {
  font-size: 0.9rem;
  color: var(--ink-mute);
  margin: 0 0 12px;
}
.route-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  margin-bottom: 14px;
}
.route-meta .tag {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--accent-deep);
  background: var(--surface-3);
  padding: 4px 9px;
  border-radius: 7px;
}
.route-foot {
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.route-price .from { font-size: 0.72rem; color: var(--ink-mute); text-transform: uppercase; letter-spacing: 0.04em; font-weight: 700; }
.route-price .amount {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.route-price .amount .cur { color: var(--accent-2); }
.route-price .per { font-size: 0.74rem; color: var(--ink-mute); }
.route-foot .go {
  flex: 0 0 auto;
  width: 40px; height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #fff;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.route-foot .go svg { width: 18px; height: 18px; }
.route-card:hover .route-foot .go { background: var(--accent-2); transform: translateX(3px); }

.is-hidden-card { display: none !important; }

/* ============================================================
   CABIN TYPES
   ============================================================ */
.cabins-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 26px);
}
.cabin-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.cabin-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.cabin-card.is-featured { border-color: var(--accent); box-shadow: var(--shadow-teal); }
.cabin-media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.cabin-media img { width: 100%; height: 100%; object-fit: cover; }
.cabin-flag {
  position: absolute; top: 12px; left: 12px;
  background: var(--accent); color: #fff;
  font-family: var(--font-head); font-weight: 700;
  font-size: 0.74rem; padding: 5px 11px; border-radius: 999px;
}
.cabin-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.cabin-body h3 { font-size: 1.5rem; margin-bottom: 2px; }
.cabin-body .lead { color: var(--ink-soft); font-size: 0.96rem; margin-bottom: 14px; }
.cabin-feats { list-style: none; padding: 0; margin: 0 0 18px; display: grid; gap: 9px; }
.cabin-feats li { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; font-size: 0.94rem; color: var(--ink-soft); }
.cabin-feats li svg { width: 18px; height: 18px; color: var(--accent); margin-top: 2px; }
.cabin-foot { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.cabin-foot .price { font-family: var(--font-head); font-weight: 800; font-size: 1.35rem; color: var(--ink); }
.cabin-foot .price small { display: block; font-family: var(--font-body); font-weight: 600; font-size: 0.72rem; color: var(--ink-mute); }

/* ============================================================
   INCLUDED (dahil olanlar)
   ============================================================ */
.included {
  background: var(--surface-3);
}
.incl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(14px, 2vw, 22px);
}
.incl-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px 20px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.incl-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.incl-icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 12px 12px 12px 3px;
  background: var(--surface-3);
  color: var(--accent-deep);
  margin-bottom: 14px;
}
.incl-icon svg { width: 26px; height: 26px; }
.incl-item h3 { font-size: 1.14rem; margin-bottom: 5px; }
.incl-item p { font-size: 0.92rem; color: var(--ink-soft); margin: 0; }

/* ============================================================
   DEPARTURE CALENDAR
   ============================================================ */
.calendar-wrap {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
table.cal {
  border-collapse: collapse;
  width: 100%;
  min-width: 620px;
  font-variant-numeric: tabular-nums;
}
table.cal th, table.cal td {
  text-align: left;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 0.94rem;
}
table.cal thead th {
  background: var(--ink);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
table.cal tbody tr:hover { background: var(--surface-3); }
table.cal .date { font-family: var(--font-head); font-weight: 700; color: var(--ink); }
table.cal .price { font-weight: 700; color: var(--ink); }
.avail {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.82rem; font-weight: 700;
  padding: 4px 10px; border-radius: 999px;
}
.avail::before { content: ""; width: 8px; height: 8px; border-radius: 50%; }
.avail.ok { background: rgba(28,160,160,.14); color: var(--accent-deep); }
.avail.ok::before { background: var(--accent); }
.avail.low { background: rgba(232,106,51,.14); color: var(--accent-2-deep); }
.avail.low::before { background: var(--accent-2); }
.avail.full { background: rgba(108,128,138,.16); color: var(--ink-mute); }
.avail.full::before { background: var(--ink-mute); }

/* ============================================================
   PROCESS TIMELINE
   ============================================================ */
.timeline {
  position: relative;
  display: grid;
  gap: 4px;
  max-width: 860px;
}
.tl-step {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px dashed var(--line-strong);
}
.tl-step:last-child { border-bottom: 0; }
.tl-num {
  width: 52px; height: 52px;
  border-radius: 14px 14px 14px 4px;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  display: grid; place-items: center;
}
.tl-step:nth-child(odd) .tl-num { background: var(--accent); }
.tl-step:nth-child(even) .tl-num { background: var(--accent-2); }
.tl-body h3 { font-size: 1.24rem; margin-bottom: 4px; }
.tl-body .when {
  display: inline-block;
  font-size: 0.76rem; font-weight: 700;
  color: var(--accent-deep);
  background: var(--surface-3);
  padding: 3px 10px; border-radius: 999px;
  margin-bottom: 8px;
}
.tl-body p { color: var(--ink-soft); margin: 0; font-size: 0.98rem; }

/* ============================================================
   PRICING PACKAGES
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 26px);
  align-items: stretch;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px 30px;
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.price-card.is-popular {
  border-color: var(--accent);
  box-shadow: var(--shadow-teal);
  position: relative;
}
.price-card.is-popular::before {
  content: "En çok tercih edilen";
  position: absolute;
  top: -12px; left: 26px;
  background: var(--accent-2);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700; font-size: 0.74rem;
  padding: 5px 12px; border-radius: 999px;
}
.price-card h3 { font-size: 1.5rem; margin-bottom: 4px; }
.price-card .plan-sub { color: var(--ink-mute); font-size: 0.9rem; margin-bottom: 16px; }
.price-card .amt {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--ink);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.price-card .amt .cur { color: var(--accent-2); font-size: 1.4rem; }
.price-card .amt-note { font-size: 0.82rem; color: var(--ink-mute); margin: 6px 0 18px; }
.price-list { list-style: none; padding: 0; margin: 0 0 22px; display: grid; gap: 10px; }
.price-list li { display: grid; grid-template-columns: 20px 1fr; gap: 10px; font-size: 0.92rem; color: var(--ink-soft); align-items: start; }
.price-list li svg { width: 18px; height: 18px; margin-top: 2px; }
.price-list li.inc svg { color: var(--accent); }
.price-list li.exc { color: var(--ink-mute); }
.price-list li.exc svg { color: var(--ink-mute); }
.price-card .btn { margin-top: auto; }
.price-disclaimer { font-size: 0.86rem; color: var(--ink-mute); margin-top: 18px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(18px, 2.4vw, 26px);
}
.testi {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
}
.testi:nth-child(2) { background: var(--ink); color: #fff; border-color: transparent; }
.testi:nth-child(2) .testi-meta small { color: rgba(234,246,244,.7); }
.testi:nth-child(2) .stars { color: var(--gold); }
.testi:nth-child(2) p { color: #EAF6F4; }
.stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; font-size: 0.94rem; }
.testi p { font-size: 0.98rem; line-height: 1.6; flex: 1; }
.testi-meta { display: flex; align-items: center; gap: 12px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); }
.testi:nth-child(2) .testi-meta { border-top-color: rgba(255,255,255,.16); }
.testi-avatar {
  width: 44px; height: 44px; flex: 0 0 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 800; font-size: 1.05rem;
}
.testi-meta b { font-family: var(--font-head); font-size: 1.02rem; }
.testi-meta small { display: block; color: var(--ink-mute); font-size: 0.82rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 860px; display: grid; gap: 12px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.faq-item > summary {
  list-style: none;
  cursor: pointer;
  padding: 18px clamp(18px, 3vw, 24px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--ink);
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary .plus {
  flex: 0 0 26px;
  width: 26px; height: 26px;
  position: relative;
  border-radius: 50%;
  background: var(--surface-3);
  transition: background .2s var(--ease);
}
.faq-item > summary .plus::before,
.faq-item > summary .plus::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 11px; height: 2px;
  background: var(--accent-deep);
  transform: translate(-50%, -50%);
  transition: transform .28s var(--ease);
}
.faq-item > summary .plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] > summary .plus { background: var(--accent); }
.faq-item[open] > summary .plus::before,
.faq-item[open] > summary .plus::after { background: #fff; }
.faq-item[open] > summary .plus::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq-item > .answer {
  height: 0;
  padding: 0 clamp(18px, 3vw, 24px);
  overflow: hidden;
  transition: height .36s var(--ease2), padding-block-end .36s var(--ease2);
}
.faq-item[open] > .answer {
  height: auto;
  padding-block-end: 22px;
}
.faq-item > .answer p { margin: 0; color: var(--ink-soft); font-size: 0.98rem; }
@media (prefers-reduced-motion: reduce) {
  .faq-item > .answer { transition: none; }
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  position: relative;
  background: linear-gradient(120deg, var(--accent-deep), var(--accent));
  color: #fff;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(115deg, rgba(255,255,255,.05) 0 2px, transparent 2px 40px);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 30px;
  align-items: center;
}
.cta-inner h2 { color: #fff; font-size: clamp(1.9rem, 4.5vw, 3rem); }
.cta-inner p { color: rgba(255,255,255,.9); margin: 0; max-width: 540px; }
.cta-actions { display: flex; flex-direction: column; gap: 12px; }
.cta-band .btn-primary { background: #fff; color: var(--ink); }
.cta-band .btn-primary:hover { background: var(--ink); color: #fff; }
.cta-band .btn-ghost { border-color: rgba(255,255,255,.6); color: #fff; }
.cta-band .btn-ghost:hover { background: #fff; color: var(--accent-deep); border-color: #fff; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: #EAF6F4;
  padding: clamp(48px, 7vw, 80px) 0 30px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: clamp(24px, 4vw, 48px);
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.footer-brand .brand { color: #fff; margin-bottom: 14px; }
.footer-brand p { color: rgba(234,246,244,.72); font-size: 0.94rem; max-width: 320px; }
.footer-col h4 { color: #fff; font-size: 1.02rem; margin-bottom: 14px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col a { color: rgba(234,246,244,.76); font-size: 0.94rem; transition: color .2s var(--ease), padding-left .2s var(--ease); }
.footer-col a:hover { color: #fff; padding-left: 4px; }
.footer-contact li { display: grid; grid-template-columns: 20px 1fr; gap: 10px; color: rgba(234,246,244,.8); font-size: 0.92rem; margin-bottom: 12px; align-items: start; word-break: break-word; overflow-wrap: anywhere; }
.footer-contact li svg { width: 18px; height: 18px; color: var(--accent); margin-top: 2px; }
.footer-contact a { color: rgba(234,246,244,.8); }
.footer-contact a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 24px;
  font-size: 0.84rem;
  color: rgba(234,246,244,.6);
}
.footer-bottom a { color: rgba(234,246,244,.6); }
.footer-bottom a:hover { color: #fff; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 8px 18px; }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-title .word { animation: none !important; opacity: 1 !important; transform: none !important; }
  .hero-media img, .hero-scroll span { animation: none !important; }
}
html.no-js .reveal { opacity: 1; transform: none; }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  padding: 20px 22px;
  transform: translateY(140%);
  opacity: 0;
  transition: transform .28s var(--ease), opacity .24s;
  z-index: 9999;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner h3 { font-size: 1.14rem; margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
.cookie-banner h3 svg { width: 20px; height: 20px; color: var(--accent); }
.cookie-banner p { font-size: 0.9rem; color: var(--ink-soft); margin: 0 0 14px; }
.cookie-banner p a { color: var(--accent-deep); text-decoration: underline; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-actions button {
  flex: 1 1 auto;
  min-height: 44px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: 999px;
  cursor: pointer;
  border: 1.5px solid var(--line-strong);
  transition: all .2s var(--ease);
  padding: 0 16px;
}
.cookie-actions [data-consent="accept"] { background: var(--accent); color: #fff; border-color: var(--accent); }
.cookie-actions [data-consent="accept"]:hover { background: var(--accent-deep); border-color: var(--accent-deep); }
/* Reject carries equal visual weight to Accept — no dark pattern. */
.cookie-actions [data-consent="reject"] { background: var(--ink); color: #fff; border-color: var(--ink); }
.cookie-actions [data-consent="reject"]:hover { background: #0b1c22; border-color: #0b1c22; }
.cookie-actions [data-consent="settings"] { background: transparent; color: var(--ink-soft); border-style: dashed; flex: 1 1 100%; }
.cookie-actions [data-consent="settings"]:hover { color: var(--ink); border-color: var(--ink); }
@media (min-width: 720px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}

/* cookie settings modal */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.cookie-modal.is-open { display: flex; }
.cookie-modal-backdrop { position: absolute; inset: 0; background: rgba(18,42,51,.6); }
.cookie-modal-box {
  position: relative;
  background: var(--surface);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  max-width: 480px;
  width: 100%;
  padding: 28px;
  max-height: 90vh;
  overflow-y: auto;
}
.cookie-modal-box h3 { font-size: 1.4rem; margin-bottom: 6px; }
.cookie-modal-box > p { font-size: 0.92rem; color: var(--ink-soft); }
.toggle-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.toggle-row h4 { font-size: 1.02rem; margin: 0 0 3px; }
.toggle-row p { font-size: 0.84rem; color: var(--ink-mute); margin: 0; }
.switch { position: relative; flex: 0 0 46px; width: 46px; height: 26px; margin-top: 3px; }
.switch input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.switch .slider {
  position: absolute; inset: 0;
  background: var(--line-strong);
  border-radius: 999px;
  transition: background .2s var(--ease);
}
.switch .slider::before {
  content: ""; position: absolute;
  left: 3px; top: 3px;
  width: 20px; height: 20px;
  background: #fff; border-radius: 50%;
  transition: transform .2s var(--ease);
}
.switch input:checked + .slider { background: var(--accent); }
.switch input:checked + .slider::before { transform: translateX(20px); }
.switch input:disabled + .slider { background: var(--accent-deep); opacity: .6; }
.cookie-modal-box .btn { margin-top: 20px; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, #F7E9CF 0%, var(--surface-3) 70%);
  padding: clamp(40px, 8vw, 88px) 0 clamp(36px, 6vw, 64px);
  min-height: 240px;
}
.page-hero::after {
  content: "";
  position: absolute;
  right: -60px; bottom: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(28,160,160,.22), transparent 70%);
  pointer-events: none;
}
.page-hero .eyebrow { margin-bottom: 12px; }
.page-hero h1 { font-size: clamp(2.1rem, 6vw, 3.6rem); max-width: 780px; }
.page-hero p { color: var(--ink-soft); font-size: 1.08rem; max-width: 620px; margin: 0; }
.breadcrumb { font-size: 0.86rem; color: var(--ink-mute); margin-bottom: 14px; }
.breadcrumb a { color: var(--ink-mute); }
.breadcrumb a:hover { color: var(--accent-deep); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(16px, 2.2vw, 24px);
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px 22px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.contact-card .cc-icon {
  width: 48px; height: 48px;
  border-radius: 12px 12px 12px 3px;
  background: var(--surface-3);
  color: var(--accent-deep);
  display: grid; place-items: center;
  margin-bottom: 14px;
}
.contact-card .cc-icon svg { width: 24px; height: 24px; }
.contact-card h3 { font-size: 1.1rem; margin-bottom: 3px; }
.contact-card a, .contact-card .val { font-size: 1.02rem; color: var(--ink); font-weight: 600; word-break: break-word; overflow-wrap: anywhere; }
.contact-card a:hover { color: var(--accent-deep); }
.contact-card small { display: block; color: var(--ink-mute); font-size: 0.84rem; margin-top: 6px; }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}
.hours-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
}
.hours-card h3 { font-size: 1.3rem; margin-bottom: 14px; }
.hours-list { list-style: none; padding: 0; margin: 0; }
.hours-list li {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-variant-numeric: tabular-nums;
}
.hours-list li:last-child { border-bottom: 0; }
.hours-list li.today { color: var(--accent-deep); font-weight: 700; }
.hours-list li span:first-child { color: var(--ink-soft); }
.hours-list li.today span:first-child { color: var(--accent-deep); }

/* ============================================================
   FORMS
   ============================================================ */
.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(22px, 3vw, 34px);
  box-shadow: var(--shadow-sm);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 18px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label, .field > span.lbl { font-family: var(--font-head); font-weight: 700; font-size: 0.9rem; color: var(--ink); }
.field input, .field select, .field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg);
  border: 1.5px solid var(--line-strong);
  border-radius: 10px;
  padding: 12px 14px;
  transition: border-color .2s var(--ease), background .2s var(--ease);
  width: 100%;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface);
}
.field.kvkk { flex-direction: row; align-items: flex-start; gap: 10px; }
.field.kvkk label { font-family: var(--font-body); font-weight: 400; font-size: 0.9rem; color: var(--ink-soft); line-height: 1.5; }
.field input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  width: 18px; height: 18px;
  min-width: 18px; min-height: 18px;
  padding: 0; border: 0; margin: 2px 0 0;
  accent-color: var(--accent);
}
.form-card .btn { margin-top: 6px; }
.form-note { font-size: 0.84rem; color: var(--ink-mute); margin-top: 12px; }

/* ============================================================
   ABOUT / TEAM / CONTENT
   ============================================================ */
.prose { max-width: 780px; }
.prose h2 { font-size: clamp(1.6rem, 4vw, 2.3rem); margin-top: 1.4em; }
.prose h3 { font-size: 1.3rem; margin-top: 1.3em; }
.prose p, .prose li { color: var(--ink-soft); }
.prose ul, .prose ol { padding-left: 1.2em; margin-bottom: 1.2em; }
.prose li { margin-bottom: 8px; }
.prose a { text-decoration: underline; }
.prose .lead { font-size: 1.16rem; color: var(--ink); }

.about-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.about-media {
  position: relative;
  border-radius: 18px 18px 18px 5px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about-badge {
  position: absolute;
  left: 18px; bottom: 18px;
  background: var(--surface);
  border-radius: 12px;
  padding: 12px 18px;
  box-shadow: var(--shadow-md);
}
.about-badge .num { font-family: var(--font-head); font-weight: 800; font-size: 1.7rem; color: var(--accent-2); line-height: 1; }
.about-badge .lbl { font-size: 0.8rem; color: var(--ink-soft); font-weight: 600; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 28px);
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.team-card img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.team-body { padding: 20px 22px 24px; }
.team-body h3 { font-size: 1.24rem; margin-bottom: 2px; }
.team-body .role { color: var(--accent-deep); font-weight: 700; font-size: 0.88rem; margin-bottom: 10px; }
.team-body p { font-size: 0.92rem; color: var(--ink-soft); margin: 0; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(16px, 2.2vw, 24px);
}
.value-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px 22px;
}
.value-card .v-icon {
  width: 46px; height: 46px;
  border-radius: 12px 12px 12px 3px;
  background: var(--surface-3);
  color: var(--accent-deep);
  display: grid; place-items: center;
  margin-bottom: 14px;
}
.value-card .v-icon svg { width: 24px; height: 24px; }
.value-card h3 { font-size: 1.14rem; margin-bottom: 5px; }
.value-card p { font-size: 0.92rem; color: var(--ink-soft); margin: 0; }

/* gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery-grid a {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.gallery-grid img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  transition: transform .5s var(--ease);
}
.gallery-grid a:hover img { transform: scale(1.06); }
.gallery-grid a:nth-child(1) { grid-row: span 2; }
.gallery-grid a:nth-child(1) img { aspect-ratio: 1/2.08; }

/* notes / updates block */
.notes-list { display: grid; gap: 14px; max-width: 720px; }
.note-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 20px;
}
.note-date {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--accent-2);
  white-space: nowrap;
}
.note-item h3 { font-size: 1.05rem; margin-bottom: 3px; }
.note-item p { font-size: 0.9rem; color: var(--ink-soft); margin: 0; }

/* availability strip */
.avail-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 24px;
  background: var(--surface);
  border: 1px dashed var(--accent);
  border-radius: 14px;
  padding: 18px 24px;
}
.avail-strip .ai { display: flex; align-items: center; gap: 10px; font-size: 0.94rem; color: var(--ink-soft); }
.avail-strip .ai b { color: var(--ink); font-family: var(--font-head); }
.avail-strip .ai svg { width: 20px; height: 20px; color: var(--accent-deep); }

/* thank you */
.thankyou {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: clamp(48px, 10vw, 120px) 0;
}
.thankyou .ty-mark {
  width: 88px; height: 88px;
  margin: 0 auto 24px;
  border-radius: 24px 24px 24px 8px;
  background: var(--accent);
  color: #fff;
  display: grid; place-items: center;
  box-shadow: var(--shadow-teal);
  animation: bob 5s var(--ease2) infinite;
}
.thankyou .ty-mark svg { width: 44px; height: 44px; }
.thankyou h1 { font-size: clamp(2rem, 6vw, 3.4rem); }
.thankyou p { color: var(--ink-soft); font-size: 1.1rem; max-width: 520px; margin: 0 auto 26px; }

/* 404 */
.err-page { min-height: 64vh; display: grid; place-items: center; text-align: center; padding: 80px 0; }
.err-page .code { font-family: var(--font-head); font-weight: 800; font-size: clamp(5rem, 18vw, 11rem); color: var(--accent); line-height: .9; }
.err-page h1 { font-size: clamp(1.6rem, 5vw, 2.6rem); }
.err-page p { color: var(--ink-soft); max-width: 480px; margin: 0 auto 24px; }

/* sitemap */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(20px, 3vw, 36px);
}
.sitemap-col h3 { font-size: 1.2rem; margin-bottom: 12px; }
.sitemap-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.sitemap-col a { color: var(--ink-soft); }
.sitemap-col a:hover { color: var(--accent-deep); }

/* ============================================================
   TABLES
   ============================================================ */
.table-scroll {
  display: block; width: 100%; max-width: 100%; min-width: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.table-scroll > table { margin: 0 !important; min-width: 480px; width: 100%; border-collapse: collapse; }
.table-scroll th, .table-scroll td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--line); font-size: 0.94rem; }
.table-scroll thead th { background: var(--surface-3); font-family: var(--font-head); font-weight: 700; color: var(--ink); }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }

/* long text guard */
.break { word-break: break-word; overflow-wrap: anywhere; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: block; }
  .cta-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .cabins-grid, .pricing-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .about-split { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid a:nth-child(1) { grid-row: auto; }
  .gallery-grid a:nth-child(1) img { aspect-ratio: 1; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .hero { min-height: 92vh; }
  .hero-stats { gap: 14px 22px; }
  .koy-strip { grid-template-columns: 1fr; }
  .koy-card img { aspect-ratio: 16/10; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 22px 16px; }
  .filter-bar { position: static; }
  .tl-step { grid-template-columns: 48px 1fr; gap: 14px; }
  .tl-num { width: 44px; height: 44px; font-size: 1.1rem; }
  .incl-icon, .contact-card .cc-icon, .value-card .v-icon { width: 40px; height: 40px; }
  .route-grid { grid-template-columns: 1fr; }
}

@media (max-width: 400px) {
  .hero-actions .btn { width: 100%; }
  .cookie-actions button { flex: 1 1 100%; }
}

.scroll-progress{position:fixed;top:0;left:0;height:3px;width:0;background:var(--accent);z-index:9998;transition:width 80ms linear;pointer-events:none}

/* header-cta-padding-guard v1 */
.nav-desktop a.nav-cta, header a.nav-cta, .site-header a.nav-cta {
  padding: 10px 18px;
}

/* ============================================================
   PREMIUM ELEVATION LAYER
   Coastal-editorial art direction · Fraunces display + air + rhythm
   (transform/opacity/filter motion only; reduced-motion safe)
   ============================================================ */

/* ---------- Type: editorial section heads ---------- */
.eyebrow {
  font-family: var(--font-head);
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  gap: 10px;
}
.eyebrow::before {
  width: 26px; height: 2px;
  background: linear-gradient(90deg, var(--accent-2), var(--gold));
  border-radius: 2px;
}

.section-head { margin-bottom: clamp(30px, 4.5vw, 58px); }
.section-head h2 {
  font-size: clamp(2.05rem, 2vw + 1.6rem, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.03;
  margin-top: 0.32em;
  max-width: 18ch;
}
.section-head p {
  font-size: clamp(1rem, 0.4vw + 0.92rem, 1.14rem);
  color: var(--ink-soft);
  max-width: 60ch;
  margin-top: 0.85em;
}
/* Hairline lead-in over the eyebrow on non-first sections for quiet rhythm */
.section-head { position: relative; }

/* Slightly bolder presence for the flagship route/cabin/price headings */
.route-title, .cabin-body h3, .price-card h3, .testi-meta b, .team-body h3 { letter-spacing: -0.015em; }

.hero-sub { line-height: 1.62; }

/* prose lead gets an editorial italic feel */
.prose .lead { font-family: var(--font-display); font-weight: 500; line-height: 1.35; letter-spacing: -0.01em; }
.prose .lead em { color: var(--accent-2); }

/* ---------- Dark / colored context: keep italic accents legible ---------- */
.cta-inner h2 em { color: #FCE6C4; }
.testi:nth-child(2) em { color: var(--gold); }

/* ---------- Thematic dotted "sail line" divider (route dots) ---------- */
.wave-rule {
  height: 14px;
  margin: 6px 0 0;
  background:
    radial-gradient(circle at center, var(--accent) 0 2.2px, transparent 2.6px) repeat-x left center / 20px 6px;
  opacity: .5;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

/* ---------- Unified card motion + accent-tinted depth ---------- */
@media (hover: hover) {
  .route-card, .koy-card, .cabin-card, .incl-item, .value-card,
  .team-card, .contact-card, .price-card, .note-item, .testi { will-change: auto; }
  .route-card:hover, .koy-card:hover, .cabin-card:hover, .price-card:hover,
  .team-card:hover, .incl-item:hover, .value-card:hover, .contact-card:hover {
    will-change: transform;
  }
}

.incl-item, .value-card, .contact-card, .note-item, .testi {
  transition: transform .32s var(--ease), box-shadow .32s var(--ease), border-color .32s var(--ease);
}
.note-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.testi:not(:nth-child(2)):hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.faq-item { transition: border-color .25s var(--ease), box-shadow .25s var(--ease); }
.faq-item:hover { border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.faq-item[open] { box-shadow: var(--shadow-sm); border-color: var(--accent); }

/* Featured cards glow a touch warmer in the accent on hover */
.cabin-card:hover, .price-card:hover { box-shadow: var(--shadow-teal); }
.incl-item:hover, .value-card:hover, .contact-card:hover { border-color: transparent; }

/* ---------- Thematic icon tiles: soft gradient wash + lift ---------- */
.incl-icon, .value-card .v-icon, .contact-card .cc-icon {
  background: linear-gradient(150deg, var(--surface-3), #DDEFEC);
  box-shadow: inset 0 0 0 1px rgba(28,160,160,.12);
  transition: transform .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease);
}
.incl-item:hover .incl-icon,
.value-card:hover .v-icon,
.contact-card:hover .cc-icon {
  transform: translateY(-2px) rotate(-3deg);
  color: var(--accent-2);
  box-shadow: inset 0 0 0 1px rgba(232,106,51,.28);
}
.incl-item:nth-child(6) .incl-icon { color: var(--accent-2); background: linear-gradient(150deg, #FBE6D8, #F6D3BF); box-shadow: inset 0 0 0 1px rgba(232,106,51,.18); }

/* ---------- Koy strip + gallery: fine inner ring + asymmetric first tile ---------- */
.koy-card, .gallery-grid a { box-shadow: var(--shadow-md); }
.koy-card::before, .gallery-grid a::before {
  content: ""; position: absolute; inset: 0; z-index: 3; pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.14);
}
.gallery-grid a { box-shadow: var(--shadow-sm); }
.gallery-grid a:hover { box-shadow: var(--shadow-md); }
/* editorial asymmetry: first koy tile spans wider on desktop */
@media (min-width: 900px) {
  .koy-strip { grid-template-columns: 1.5fr 1fr 1fr; }
  .koy-card:first-child img { aspect-ratio: 3/2.35; }
}

/* ---------- Route card: warmer price + refined tags ---------- */
.route-meta .tag {
  border: 1px solid rgba(28,160,160,.18);
  background: rgba(234,246,244,.7);
}
.route-price .amount { letter-spacing: -0.01em; }

/* ---------- Timeline: connective spine + hover ---------- */
.tl-step { transition: background .25s var(--ease); border-radius: 12px; padding-inline: clamp(0px, 1.5vw, 16px); }
.tl-step:hover { background: color-mix(in srgb, var(--accent) 6%, transparent); }
.tl-num { box-shadow: var(--shadow-sm); transition: transform .3s var(--ease); }
.tl-step:hover .tl-num { transform: translateY(-2px) scale(1.04); }

/* ---------- Pricing popular card lifts out of the row ---------- */
@media (min-width: 861px) {
  .price-card.is-popular { transform: translateY(-10px); }
  .price-card.is-popular:hover { transform: translateY(-15px); }
}

/* ---------- Stats band: hairline separators + tabular calm ---------- */
.stats-grid .stat { position: relative; padding-left: clamp(0px, 2vw, 22px); }
.stats-grid .stat:not(:first-child)::before {
  content: ""; position: absolute; left: 0; top: 4px; bottom: 4px;
  width: 1px; background: rgba(234,246,244,.16);
}
@media (max-width: 860px) {
  .stats-grid .stat:nth-child(odd)::before { display: none; }
}

/* ---------- CTA band: subtle compass-rose glow ---------- */
.cta-band::before {
  content: ""; position: absolute; z-index: 0;
  right: -80px; top: -80px; width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255,255,255,.16), transparent 62%);
  pointer-events: none;
}

/* ---------- Buttons: crisper weight for the new type ---------- */
.btn { font-weight: 700; letter-spacing: 0.005em; }

/* ---------- Focus ring refinement ---------- */
:focus-visible { outline-offset: 3px; }

/* ---------- Reveal: add gentle scale so lift reads as premium ---------- */
.reveal { transform: translateY(30px) scale(.985); }
.reveal.is-in { transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { transform: none !important; }
  .wave-rule { display: none; }
}
html.no-js .reveal { transform: none; }
