/* ============================================================
   Yediköy Rota — 7 Gün Fethiye-Kekova Mavi Tur
   ============================================================ */

:root {
  --bg: #E7F1F1;
  --surface: #FFFFFF;
  --surface-2: #EEF6F5;
  --sand: #F6F1E7;
  --ink: #102E34;
  --ink-soft: #3B5A60;
  --ink-faint: #6E888D;
  --accent: #1D7874;
  --accent-deep: #124F4B;
  --accent-2: #E4572E;
  --accent-2-deep: #C43F1B;
  --line: rgba(16, 46, 52, 0.12);
  --line-strong: rgba(16, 46, 52, 0.22);
  --sun: #FFD79A;
  --sun-deep: #E8A84C;
  --header-h: 76px;
  --maxw: 1240px;
  --radius: 16px;
  --shadow-sm: 0 4px 16px -10px rgba(16,46,52,.30);
  --shadow-md: 0 22px 50px -28px rgba(16,46,52,.44);
  --shadow-accent: 0 26px 54px -26px rgba(29,120,116,.5);
  --shadow-warm: 0 26px 54px -26px rgba(228,87,46,.42);
  --font-body: "Figtree", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Fraunces", "Bricolage Grotesque", Georgia, "Times New Roman", serif;
  --font-mono: "JetBrains Mono", ui-monospace, "Consolas", monospace;
  interpolate-size: allow-keywords;
}

* { 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);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.62;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 560;
  font-optical-sizing: auto;
  line-height: 1.04;
  letter-spacing: -0.006em;
  color: var(--ink);
  margin: 0 0 .5em;
  text-wrap: balance;
}
/* editorial italic accent inside headings */
h1 em, h2 em, h3 em {
  font-style: italic;
  font-weight: 440;
  color: var(--accent-2);
}
.band h1 em, .band h2 em, .band h3 em,
.cta-band h2 em { color: var(--sun); }

p { margin: 0 0 1em; }
a { color: var(--accent); text-decoration: none; transition: color .24s cubic-bezier(.4,0,.2,1); }
a:hover { color: var(--accent-2); }

img { max-width: 100%; height: auto; display: block; }

.mono { font-family: var(--font-mono); }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

section { position: relative; }
.section-pad { padding: clamp(56px, 8vw, 108px) 0; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--accent-2);
  display: inline-block;
  border-radius: 2px;
}

.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--ink); color: #fff;
  padding: 10px 16px; border-radius: 8px; z-index: 4000;
  transition: top .2s;
}
.skip-link:focus { top: 12px; color: #fff; }

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: "Figtree", sans-serif;
  font-weight: 600; font-size: 15.5px;
  padding: 14px 26px; border-radius: 999px;
  cursor: pointer; border: 1.5px solid transparent;
  transition: background .24s ease, color .24s ease, transform .24s cubic-bezier(.2,.7,.2,1), box-shadow .24s ease;
  text-align: center; line-height: 1;
}
.btn-primary { background: var(--accent-2); color: #fff; box-shadow: 0 12px 26px -14px rgba(228,87,46,.7); }
.btn-primary:hover, .btn-primary:focus-visible { background: var(--accent-2-deep); color: #fff; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover, .btn-ghost:focus-visible { background: var(--surface); color: var(--accent); border-color: var(--accent); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--accent-deep); }
.btn-light:hover, .btn-light:focus-visible { background: var(--sun); color: var(--ink); transform: translateY(-2px); }
.btn .arw { transition: transform .24s ease; }
.btn:hover .arw { transform: translateX(4px); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1080;
  height: var(--header-h);
  background: rgba(234, 243, 244, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: background .24s ease, box-shadow .24s ease, height .24s ease, border-color .24s ease;
}
.site-header.is-scrolled {
  background: rgba(234, 243, 244, 0.98);
  box-shadow: 0 8px 24px -16px rgba(19,52,59,.28);
  border-bottom-color: var(--line);
  height: 66px;
}
.header-inner {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex; align-items: center; gap: 11px;
  font-family: var(--font-display);
  font-weight: 560; font-size: 21px; letter-spacing: -0.01em;
  color: var(--ink);
}
.brand:hover { color: var(--ink); }
.brand .mark {
  width: 34px; height: 34px; flex: none;
  display: grid; place-items: center;
  color: var(--accent);
}
.brand .mark svg { width: 34px; height: 34px; }
.brand small {
  display: block; font-family: "JetBrains Mono", monospace;
  font-size: 9.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent); font-weight: 500; line-height: 1;
}
.brand b { display: block; line-height: 1; }

.nav-desktop { display: flex; align-items: center; gap: 6px; }
.nav-desktop a {
  position: relative;
  font-size: 15px; font-weight: 500; color: var(--ink-soft);
  padding: 9px 13px; border-radius: 8px;
  transition: color .2s ease;
}
.nav-desktop a::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 4px;
  height: 2px; background: var(--accent-2); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform .24s ease;
}
.nav-desktop a:hover { color: var(--ink); }
.nav-desktop a:hover::after, .nav-desktop a.is-active::after { transform: scaleX(1); }
.nav-desktop a.is-active { color: var(--accent); }
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta {
  margin-left: 8px; background: var(--accent); color: #fff;
  padding: 10px 20px; border-radius: 999px; font-weight: 600;
}
.nav-desktop .nav-cta:hover { background: var(--accent-deep); color: #fff; }

.nav-toggle {
  display: none;
  position: relative; z-index: 1100;
  width: 44px; height: 44px; flex: none;
  background: var(--surface); border: 1px solid var(--line-strong);
  border-radius: 11px; cursor: pointer; padding: 0;
}
.nav-toggle span {
  position: absolute; left: 11px; right: 11px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform .28s cubic-bezier(.2,.7,.2,1), opacity .2s ease;
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Drawer */
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: var(--surface);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.2,.7,.2,1);
  padding: calc(var(--header-h) + 20px) 26px 30px;
  display: flex; flex-direction: column; gap: 6px;
  box-shadow: -20px 0 50px -30px rgba(0,0,0,.4);
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  font-family: var(--font-display); font-weight: 500;
  font-size: 21px; color: var(--ink); padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.drawer a:hover { color: var(--accent); }
.drawer a.drawer-cta {
  margin-top: 16px; border: none; background: var(--accent-2); color: #fff;
  text-align: center; border-radius: 999px; padding: 15px; font-size: 16px;
}
.drawer a.drawer-cta:hover { background: var(--accent-2-deep); color: #fff; }
.drawer-backdrop {
  position: fixed; inset: 0; z-index: 1040;
  background: rgba(10, 30, 33, 0.55);
  opacity: 0; visibility: hidden; transition: opacity .24s ease, visibility .24s ease;
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

main { padding-top: var(--header-h); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(96px, 14vh, 168px) 0 clamp(56px, 9vw, 96px);
  overflow: hidden;
  isolation: isolate;
}
/* full-bleed cinematic photo */
.hero-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 42%;
  transform: scale(1.08);
  animation: heroKen 22s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes heroKen {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to   { transform: scale(1.16) translate3d(-1.5%, -2%, 0); }
}
/* dark gradient overlay for text contrast (>=4.5:1) */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(9,28,31,.86) 0%, rgba(9,28,31,.60) 42%, rgba(9,28,31,.20) 78%, rgba(9,28,31,.34) 100%),
    linear-gradient(180deg, rgba(9,28,31,.55) 0%, rgba(9,28,31,.06) 34%, rgba(9,28,31,.55) 100%);
}

.hero-inner { position: relative; z-index: 3; max-width: 900px; }
.hero .hero-eyebrow { color: var(--sun); }
.hero .hero-eyebrow::before { background: var(--accent-2); }

.hero-title {
  font-family: var(--font-display);
  font-weight: 420;
  letter-spacing: -0.012em;
  line-height: 1.0;
  color: #fff;
  text-wrap: balance;
  font-size: clamp(2.5rem, 8.4vw, 5.6rem);
  margin: 0 0 .34em;
  text-shadow: 0 2px 30px rgba(0,0,0,.35);
}
.hero-title .w { display: inline-block; white-space: nowrap; }
.hero-title .accent { color: var(--sun); }
.hero-title em { font-style: italic; font-weight: 380; }

.hero-sub {
  font-size: clamp(1.05rem, 2.2vw, 1.42rem);
  max-width: 48ch; color: rgba(255,255,255,.9);
  margin: 0 0 32px; line-height: 1.55;
  text-shadow: 0 1px 16px rgba(0,0,0,.35);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.btn-hero-ghost {
  background: rgba(255,255,255,.10); color: #fff;
  border-color: rgba(255,255,255,.55);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.btn-hero-ghost:hover, .btn-hero-ghost:focus-visible {
  background: #fff; color: var(--accent-deep); border-color: #fff; transform: translateY(-2px);
}

/* thin stats strip over photo */
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 14px 34px;
  margin: 38px 0 0; padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.22);
}
.hero-stats div { display: flex; flex-direction: column; gap: 2px; }
.hero-stats dt { font-size: clamp(1.5rem, 3.6vw, 2.1rem); font-weight: 600; color: #fff; line-height: 1; }
.hero-stats dd { margin: 0; font-size: 12.5px; letter-spacing: .01em; color: rgba(255,255,255,.78); max-width: 15ch; }

/* scroll cue */
.hero-scrollcue {
  position: absolute; left: 50%; bottom: 22px; z-index: 3;
  width: 24px; height: 38px; margin-left: -12px;
  border: 2px solid rgba(255,255,255,.55); border-radius: 14px;
}
.hero-scrollcue::before {
  content: ""; position: absolute; left: 50%; top: 7px; width: 4px; height: 8px;
  margin-left: -2px; background: #fff; border-radius: 3px;
  animation: scrollcue 1.9s ease-in-out infinite;
}
@keyframes scrollcue { 0%,100% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translateY(10px); } }

/* hero entrance (fade-up); no-JS/reduced-motion fallbacks handled below */
.reveal-hero { opacity: 0; transform: translateY(26px); }
.hero-title.reveal-hero { transform: translateY(30px); }
@keyframes heroFadeUp { to { opacity: 1; transform: none; } }
html:not(.no-js) .reveal-hero {
  animation: heroFadeUp .85s cubic-bezier(.2,.7,.2,1) forwards;
  animation-delay: calc(var(--d, 0) * 130ms + 120ms);
}
html.no-js .reveal-hero { opacity: 1; transform: none; }

/* Timeline strip (relocated below hero) */
.route-strip-band .timeline-track::before { background: rgba(255,255,255,.35); }
.route-strip-band .tl-label { color: rgba(255,255,255,.82); }
.route-strip-band .tl-day { color: var(--sun); }
.timeline-strip {
  position: relative;
  margin-bottom: 0;
  padding: 18px 0 6px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.timeline-strip::-webkit-scrollbar { height: 6px; }
.timeline-strip::-webkit-scrollbar-thumb { background: rgba(19,52,59,.25); border-radius: 3px; }
.timeline-track {
  position: relative;
  display: flex; align-items: flex-start; gap: 0;
  min-width: 680px;
  padding: 0 6px;
}
.timeline-track::before {
  content: ""; position: absolute; left: 26px; right: 26px; top: 30px;
  height: 3px; border-radius: 3px;
  background: rgba(255,255,255,.5);
}
.timeline-track .track-fill {
  content: ""; position: absolute; left: 26px; top: 30px; height: 3px;
  border-radius: 3px; background: var(--accent-2);
  width: 0; transition: width .3s ease;
  box-shadow: 0 0 12px rgba(228,87,46,.6);
}
.tl-node {
  position: relative; flex: 1 1 0; min-width: 82px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  text-align: center; z-index: 2;
}
.tl-dot {
  width: 20px; height: 20px; border-radius: 50%;
  background: #fff; border: 3px solid rgba(255,255,255,.7);
  box-shadow: 0 0 0 4px rgba(29,120,116,.18);
  transition: background .3s ease, box-shadow .3s ease, transform .3s ease;
}
.tl-node.is-lit .tl-dot {
  background: var(--accent-2);
  box-shadow: 0 0 0 5px rgba(228,87,46,.28), 0 0 16px rgba(228,87,46,.5);
  transform: scale(1.15);
}
.tl-day { font-family: "JetBrains Mono", monospace; font-size: 12px; font-weight: 600; color: var(--accent-deep); letter-spacing: .04em; }
.tl-label { font-size: 12.5px; color: var(--ink-soft); line-height: 1.25; max-width: 92px; }
.tl-node.is-lit .tl-day { color: var(--accent-2-deep); }
.route-strip-band .tl-node.is-lit .tl-day { color: #fff; }

/* ============================================================
   LAYOUT: sticky day axis + content
   ============================================================ */
.rota-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}
.day-axis {
  position: sticky; top: calc(var(--header-h) + 20px);
  align-self: start;
}
.day-axis h2 { font-size: 1.7rem; margin-bottom: 6px; }
.axis-sub { color: var(--ink-faint); font-size: 14px; margin-bottom: 20px; }
.axis-list { list-style: none; margin: 0; padding: 0; position: relative; }
.axis-list::before {
  content: ""; position: absolute; left: 9px; top: 8px; bottom: 8px;
  width: 2px; background: var(--line);
}
.axis-list li { position: relative; }
.axis-list a {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 9px 0 9px 30px; color: var(--ink-soft);
  font-weight: 500; font-size: 14.5px; position: relative;
}
.axis-list a::before {
  content: ""; position: absolute; left: 3px; top: 15px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--surface); border: 2px solid var(--line-strong);
  transition: background .24s ease, border-color .24s ease, box-shadow .24s ease;
}
.axis-list a .ax-day { font-family: "JetBrains Mono", monospace; font-size: 11px; color: var(--accent); display: block; }
.axis-list a:hover { color: var(--ink); }
.axis-list a:hover::before, .axis-list a.is-active::before {
  background: var(--accent-2); border-color: var(--accent-2);
  box-shadow: 0 0 0 4px rgba(228,87,46,.16);
}
.axis-list a.is-active { color: var(--accent-deep); }

.rota-content { min-width: 0; }

/* Day detail cards */
.day-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease;
}
.day-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-accent); border-color: rgba(29,120,116,.32); }
.day-card-grid { display: grid; grid-template-columns: 1fr; }
.day-card.has-img .day-card-grid { grid-template-columns: 1fr 300px; }
.day-card-media { position: relative; overflow: hidden; min-height: 200px; }
.day-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.day-card:hover .day-card-media img { transform: scale(1.05); }
.day-card-media .anchor-badge {
  position: absolute; top: 14px; left: 14px;
  background: rgba(19,52,59,.72); color: #fff; backdrop-filter: blur(4px);
  padding: 6px 12px; border-radius: 999px;
  font-family: "JetBrains Mono", monospace; font-size: 11px; letter-spacing: .05em;
  display: inline-flex; align-items: center; gap: 7px;
}
.day-card-media .anchor-badge svg { width: 14px; height: 14px; }
.day-card-body { padding: clamp(22px, 3vw, 32px); }
.day-tag {
  font-family: "JetBrains Mono", monospace; font-size: 12px; font-weight: 600;
  color: var(--accent-2); letter-spacing: .08em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 10px;
}
.day-tag .num {
  background: var(--accent); color: #fff; width: 26px; height: 26px;
  border-radius: 8px; display: grid; place-items: center; font-size: 12px;
}
.day-card-body h3 { font-size: clamp(1.35rem, 3vw, 1.8rem); margin-bottom: 10px; }
.day-card-body p { color: var(--ink-soft); font-size: 15.5px; margin-bottom: 16px; }

.schedule { list-style: none; margin: 0; padding: 0; }
.schedule li {
  display: grid; grid-template-columns: 62px 22px 1fr;
  gap: 10px; align-items: start;
  padding: 8px 0; border-top: 1px dashed var(--line);
}
.schedule li:first-child { border-top: none; }
.schedule .time { font-family: "JetBrains Mono", monospace; font-size: 13px; color: var(--accent-deep); font-weight: 500; }
.schedule .ico { color: var(--accent); }
.schedule .ico svg { width: 18px; height: 18px; }
.schedule .act { font-size: 14.5px; color: var(--ink); }
.schedule .act b { font-weight: 600; }

/* ============================================================
   FEATURE / COMFORT cards
   ============================================================ */
.band {
  background:
    radial-gradient(120% 90% at 82% -10%, rgba(255,215,154,.18), transparent 55%),
    radial-gradient(100% 80% at 0% 110%, rgba(228,87,46,.16), transparent 55%),
    linear-gradient(158deg, #0E413E 0%, var(--accent-deep) 42%, var(--accent) 100%);
  color: #fff;
  isolation: isolate;
}
/* faint nautical chart contour lines */
.band::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  opacity: .5;
  background-image:
    repeating-linear-gradient(90deg, rgba(255,255,255,.05) 0 1px, transparent 1px 84px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.04) 0 1px, transparent 1px 84px);
  -webkit-mask-image: radial-gradient(120% 90% at 50% 0%, #000, transparent 78%);
          mask-image: radial-gradient(120% 90% at 50% 0%, #000, transparent 78%);
}
.band > .container { position: relative; z-index: 1; }
.band h2, .band h3 { color: #fff; }
.band .eyebrow { color: var(--sun); }
.band .eyebrow::before { background: var(--accent-2); }
.band p { color: rgba(255,255,255,.86); }

.section-head { max-width: 660px; margin-bottom: clamp(32px, 4.4vw, 54px); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head h2 { font-size: clamp(2.05rem, 5vw, 3.35rem); letter-spacing: -0.014em; }
.section-head p { color: var(--ink-soft); font-size: 1.08rem; margin-top: .55em; max-width: 58ch; }
.section-head.center p { margin-left: auto; margin-right: auto; }

.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.feature {
  position: relative;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius); padding: 30px 26px 28px;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  transition: transform .34s cubic-bezier(.2,.7,.2,1), background .34s ease, border-color .34s ease, box-shadow .34s ease;
}
.feature::before {
  content: ""; position: absolute; left: 26px; right: 26px; top: 0; height: 2px;
  background: linear-gradient(90deg, var(--sun), transparent);
  border-radius: 2px; opacity: 0; transition: opacity .34s ease;
}
.feature:hover {
  transform: translateY(-7px); background: rgba(255,255,255,.13);
  border-color: rgba(255,255,255,.32);
  box-shadow: 0 30px 56px -28px rgba(0,0,0,.55);
}
.feature:hover::before { opacity: 1; }
.feature-ico {
  width: 54px; height: 54px; border-radius: 15px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  display: grid; place-items: center;
  margin-bottom: 18px; color: var(--sun);
  transition: transform .34s cubic-bezier(.2,.7,.2,1);
}
.feature:hover .feature-ico { transform: translateY(-2px) rotate(-4deg); }
.feature-ico svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.28rem; margin-bottom: 9px; }
.feature p { font-size: 14.5px; margin: 0; }

/* comfort on light bg */
.comfort-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.comfort-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm);
  transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease;
}
.comfort-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-accent); border-color: rgba(29,120,116,.3); }
.comfort-card .feature-ico { background: var(--surface-2); color: var(--accent); }
.comfort-card h3 { font-size: 1.15rem; color: var(--ink); }
.comfort-card p { color: var(--ink-soft); font-size: 14.5px; margin: 0; }

/* boat gallery */
.boat-showcase { display: grid; grid-template-columns: 1.2fr 1fr; gap: 24px; align-items: stretch; margin-top: 40px; }
.boat-showcase .big { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 340px; box-shadow: var(--shadow-md); }
.boat-showcase .big img { width: 100%; height: 100%; object-fit: cover; }
.boat-showcase .stack { display: grid; grid-template-rows: 1fr 1fr; gap: 24px; }
.boat-showcase .stack figure { position: relative; margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); min-height: 150px; }
.boat-showcase .stack img { width: 100%; height: 100%; object-fit: cover; }
.boat-showcase figcaption {
  position: absolute; left: 14px; bottom: 12px;
  background: rgba(19,52,59,.7); color: #fff; padding: 5px 12px; border-radius: 999px;
  font-size: 12px; font-family: "JetBrains Mono", monospace; backdrop-filter: blur(3px);
}

/* ============================================================
   STATS
   ============================================================ */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 20px; }
.stat { text-align: center; padding: 10px; }
.stat .num {
  font-family: var(--font-display); font-weight: 560;
  font-size: clamp(2.6rem, 5.4vw, 3.7rem); line-height: 1; color: var(--sun);
  letter-spacing: -0.02em;
}
.band .stat .num { color: var(--sun); }
.stat .lbl { font-size: 14px; color: rgba(255,255,255,.82); margin-top: 8px; }

/* ============================================================
   PRICING
   ============================================================ */
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; align-items: stretch; }
.price-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-accent); border-color: rgba(29,120,116,.34); }
.price-card.featured { border: 2px solid var(--accent); box-shadow: var(--shadow-accent); transform: translateY(-6px); }
.price-card.featured:hover { transform: translateY(-10px); }
.price-card.featured::before {
  content: "En çok tercih edilen"; position: absolute; top: 16px; right: -34px;
  background: var(--accent-2); color: #fff; font-size: 11px; font-weight: 600;
  padding: 5px 40px; transform: rotate(45deg);
  font-family: "JetBrains Mono", monospace; letter-spacing: .03em;
}
.price-card h3 { font-size: 1.35rem; margin-bottom: 4px; }
.price-card .p-desc { font-size: 13.5px; color: var(--ink-faint); margin-bottom: 18px; }
.price-card .amount { font-family: "JetBrains Mono", monospace; font-weight: 700; font-size: 2.1rem; color: var(--ink); line-height: 1.1; }
.price-card .amount small { font-size: 13px; color: var(--ink-faint); font-weight: 500; display: block; margin-top: 4px; font-family: "Figtree", sans-serif; }
.price-card .amount .cur { color: var(--accent-2); }
.price-list { list-style: none; margin: 18px 0 22px; padding: 0; flex: 1; }
.price-list li { display: flex; gap: 10px; align-items: flex-start; padding: 6px 0; font-size: 14.5px; color: var(--ink-soft); }
.price-list li svg { width: 18px; height: 18px; flex: none; margin-top: 2px; }
.price-list li.inc svg { color: var(--accent); }
.price-list li.exc { color: var(--ink-faint); }
.price-list li.exc svg { color: var(--accent-2); }
.price-note { font-size: 12.5px; color: var(--ink-faint); margin-top: 16px; text-align: center; }
.early-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface-2); border: 1px dashed var(--accent-2);
  color: var(--accent-2-deep); padding: 8px 16px; border-radius: 999px;
  font-weight: 600; font-size: 14px; margin-bottom: 26px;
}
.early-badge svg { width: 18px; height: 18px; }

/* dates table */
.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; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }
table th, table td { padding: 13px 16px; text-align: left; font-size: 14.5px; border-bottom: 1px solid var(--line); }
table thead th { background: var(--surface-2); font-family: "JetBrains Mono", monospace; font-size: 12px; letter-spacing: .04em; text-transform: uppercase; color: var(--accent-deep); }
table tbody tr:hover { background: var(--surface-2); }
table td .mono { color: var(--accent-deep); font-weight: 500; }
.badge-avail { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: 12px; font-weight: 600; font-family: "JetBrains Mono", monospace; }
.badge-avail.ok { background: rgba(29,120,116,.14); color: var(--accent-deep); }
.badge-avail.low { background: rgba(228,87,46,.14); color: var(--accent-2-deep); }
.badge-avail.full { background: rgba(19,52,59,.1); color: var(--ink-faint); }

/* ============================================================
   CONDITIONS / list
   ============================================================ */
.cond-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.cond-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm);
  transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease, border-color .3s ease;
}
.cond-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-accent); border-color: rgba(29,120,116,.3); }
.cond-card h3 { font-size: 1.22rem; display: flex; align-items: center; gap: 10px; }
.cond-card h3 svg { width: 22px; height: 22px; color: var(--accent); flex: none; }
.cond-card ul { margin: 12px 0 0; padding-left: 0; list-style: none; }
.cond-card li { display: flex; gap: 10px; align-items: flex-start; padding: 6px 0; font-size: 14.5px; color: var(--ink-soft); }
.cond-card li svg { width: 17px; height: 17px; color: var(--accent-2); flex: none; margin-top: 3px; }

/* process steps vertical timeline */
.steps { position: relative; max-width: 780px; margin: 0 auto; padding-left: 8px; }
.steps::before { content: ""; position: absolute; left: 27px; top: 10px; bottom: 10px; width: 2px; background: var(--line); }
.step { position: relative; padding: 0 0 34px 76px; }
.step:last-child { padding-bottom: 0; }
.step .snum {
  position: absolute; left: 0; top: 0; width: 54px; height: 54px; border-radius: 50%;
  background: var(--surface); border: 2px solid var(--accent); color: var(--accent-deep);
  display: grid; place-items: center; font-family: "JetBrains Mono", monospace; font-weight: 700; font-size: 18px;
  z-index: 1;
}
.step h3 { font-size: 1.2rem; margin-bottom: 4px; }
.step .when { font-family: "JetBrains Mono", monospace; font-size: 12px; color: var(--accent-2); margin-bottom: 6px; display: inline-block; }
.step p { color: var(--ink-soft); font-size: 14.5px; margin: 0; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.testi {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; box-shadow: var(--shadow-sm); position: relative;
  transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease, border-color .3s ease;
}
.testi:hover { transform: translateY(-5px); box-shadow: var(--shadow-accent); border-color: rgba(29,120,116,.3); }
.testi .quote-mark { position: absolute; top: 16px; right: 24px; font-family: var(--font-display); font-style: italic; font-size: 4.2rem; line-height: .7; color: var(--accent-2); opacity: .26; }
.testi p { font-size: 15.5px; color: var(--ink); font-family: var(--font-display); font-weight: 380; font-style: italic; line-height: 1.5; margin: 6px 0 18px; }
.testi .who { display: flex; align-items: center; gap: 12px; }
.testi .who .av { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent-deep)); color: #fff; display: grid; place-items: center; font-weight: 560; font-family: var(--font-display); flex: none; }
.testi .who b { display: block; font-size: 14.5px; }
.testi .who span { font-size: 12.5px; color: var(--ink-faint); font-family: "JetBrains Mono", monospace; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; margin-bottom: 12px; overflow: hidden; }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 20px 24px;
  font-family: var(--font-display); font-weight: 540; font-size: 1.16rem;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus { flex: none; width: 26px; height: 26px; position: relative; transition: transform .3s ease; }
.faq-item summary .plus::before, .faq-item summary .plus::after {
  content: ""; position: absolute; background: var(--accent); border-radius: 2px;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.faq-item summary .plus::before { width: 14px; height: 2px; }
.faq-item summary .plus::after { width: 2px; height: 14px; transition: transform .3s ease; }
.faq-item[open] summary .plus::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-item > .answer {
  height: 0; padding: 0 24px; overflow: hidden;
  transition: height 360ms cubic-bezier(.4,0,.2,1), padding-block-end 360ms cubic-bezier(.4,0,.2,1);
}
.faq-item[open] > .answer { height: auto; padding-block-end: 22px; }
.faq-item > .answer p { color: var(--ink-soft); font-size: 15px; margin: 0; }
@media (prefers-reduced-motion: reduce) { .faq-item > .answer { transition: none; } }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band { position: relative; overflow: hidden; text-align: center; }
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { font-size: clamp(2rem, 5vw, 3.4rem); color: #fff; }
.cta-band p { color: rgba(255,255,255,.86); max-width: 46ch; margin: 0 auto 26px; }
.cta-band .hero-water {
  position: absolute; left: 0; right: 0; bottom: 0; height: 60%; z-index: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.10) 0 2px, transparent 2px 9px),
    linear-gradient(180deg, rgba(42,140,134,0) 0%, rgba(20,92,88,.55) 100%);
  background-size: 220px 100%, 100% 100%;
  animation: shimmer 14s linear infinite;
  opacity: .8; pointer-events: none;
}
@keyframes shimmer { to { background-position: 220px 0, 0 0; } }
@media (prefers-reduced-motion: reduce) { .cta-band .hero-water { animation: none !important; } }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-hero { background: linear-gradient(160deg, #BEE6E3, #7FC9C6); }
.channel-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.channel {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow-sm);
  transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease;
}
.channel:hover { transform: translateY(-5px); box-shadow: var(--shadow-accent); border-color: rgba(29,120,116,.3); }
.channel .c-ico { width: 48px; height: 48px; border-radius: 12px; background: var(--surface-2); color: var(--accent); display: grid; place-items: center; margin-bottom: 14px; }
.channel .c-ico svg { width: 24px; height: 24px; }
.channel h3 { font-size: 1.1rem; margin-bottom: 4px; }
.channel a, .channel p { font-size: 14.5px; color: var(--ink-soft); margin: 0; word-break: break-word; overflow-wrap: anywhere; }
.channel a { color: var(--accent-deep); font-weight: 500; }
.channel a:hover { color: var(--accent-2); }
.channel .sub { font-size: 12.5px; color: var(--ink-faint); margin-top: 4px; }

.hours-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; }
.hours-cell { background: var(--surface); border: 1px solid var(--line); border-radius: 10px; padding: 14px 16px; }
.hours-cell.today { border-color: var(--accent); background: var(--surface-2); }
.hours-cell .d { font-family: "JetBrains Mono", monospace; font-size: 12px; color: var(--accent-deep); text-transform: uppercase; letter-spacing: .05em; }
.hours-cell .h { font-size: 14px; font-weight: 500; font-variant-numeric: tabular-nums; margin-top: 4px; }

/* forms */
.form-wrap { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; margin-bottom: 18px; }
.field label, .field > span { font-size: 13.5px; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  font-family: "Figtree", sans-serif; font-size: 15px; color: var(--ink);
  background: var(--surface-2); border: 1.5px solid var(--line);
  border-radius: 10px; padding: 13px 15px; width: 100%;
  transition: border-color .2s ease, background .2s ease;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); background: #fff;
}
.field.kvkk { flex-direction: row; align-items: flex-start; gap: 10px; }
.field.kvkk label { margin: 0; font-weight: 400; font-size: 14px; color: var(--ink-soft); }
.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-wrap .btn-primary { width: 100%; justify-content: center; margin-top: 6px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); color: rgba(255,255,255,.72); padding: clamp(48px, 6vw, 76px) 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 34px; margin-bottom: 40px; }
.site-footer h4 { color: #fff; font-size: 16px; font-weight: 540; margin-bottom: 16px; font-family: var(--font-display); letter-spacing: .01em; }
.site-footer .brand { color: #fff; margin-bottom: 14px; }
.site-footer .brand small { color: var(--sun); }
.site-footer p { font-size: 14px; color: rgba(255,255,255,.62); }
.footer-nav { list-style: none; margin: 0; padding: 0; }
.footer-nav li { margin-bottom: 9px; }
.footer-nav a { color: rgba(255,255,255,.72); font-size: 14px; }
.footer-nav a:hover { color: var(--sun); }
.footer-contact { list-style: none; margin: 0; padding: 0; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; margin-bottom: 10px; color: rgba(255,255,255,.72); word-break: break-word; overflow-wrap: anywhere; }
.footer-contact svg { width: 17px; height: 17px; color: var(--sun); flex: none; margin-top: 3px; }
.footer-contact a { color: rgba(255,255,255,.72); }
.footer-contact a:hover { color: var(--sun); }
.footer-social { display: flex; gap: 12px; margin-top: 14px; }
.footer-social a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; }
.footer-social a:hover { background: var(--accent); color: #fff; }
.footer-social svg { width: 20px; height: 20px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); padding-top: 24px;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  font-size: 12.5px; color: rgba(255,255,255,.5);
}
.footer-bottom .legal { font-family: "JetBrains Mono", monospace; }

/* ============================================================
   DOC PAGES
   ============================================================ */
.doc-hero { background: linear-gradient(160deg, #BEE6E3, #9BD8D4); padding: clamp(50px,7vw,90px) 0 clamp(34px,4vw,50px); }
.doc-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
.doc-hero p { color: var(--ink-soft); max-width: 56ch; }
.doc-body { max-width: 820px; margin: 0 auto; padding: clamp(40px,6vw,72px) 0; }
.doc-body h2 { font-size: 1.5rem; margin: 34px 0 12px; }
.doc-body h3 { font-size: 1.2rem; margin: 24px 0 8px; }
.doc-body p, .doc-body li { color: var(--ink-soft); font-size: 15.5px; }
.doc-body ul { padding-left: 20px; }
.doc-body li { margin-bottom: 8px; }
.doc-toc { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 22px 26px; margin-bottom: 30px; }
.doc-toc ul { list-style: none; padding: 0; margin: 0; }
.doc-toc li { margin-bottom: 6px; }

/* thank you / 404 */
.centered-page {
  min-height: calc(100vh - var(--header-h)); display: grid; place-items: center; text-align: center;
  padding: 60px 20px; position: relative; overflow: hidden;
}
.centered-page .inner { position: relative; z-index: 3; max-width: 560px; }
.centered-page h1 { font-size: clamp(2.2rem, 6vw, 4rem); }
.centered-page .big404 { font-family: var(--font-display); font-style: italic; font-weight: 460; font-size: clamp(5rem, 18vw, 11rem); line-height: 1; color: var(--accent); opacity: .18; }
.centered-page p { color: var(--ink-soft); font-size: 1.1rem; margin-bottom: 26px; }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 700ms cubic-bezier(.2,.7,.2,1), transform 700ms cubic-bezier(.2,.7,.2,1);
  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-photo, .hero-scrollcue::before { animation: none !important; transform: none !important; }
  .reveal-hero { opacity: 1 !important; transform: none !important; animation: none !important; }
}
html.no-js .reveal { opacity: 1; transform: none; }

/* ============================================================
   COOKIE
   ============================================================ */
.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: 14px; padding: 22px; box-shadow: 0 24px 60px -20px rgba(0,0,0,.4);
  transform: translateY(140%); opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  z-index: 9999;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner h3 { font-size: 1.05rem; margin-bottom: 6px; }
.cookie-banner p { font-size: 13.5px; color: var(--ink-soft); margin-bottom: 16px; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-actions button {
  flex: 1 1 auto; min-height: 44px; padding: 11px 16px; border-radius: 10px;
  font-family: "Figtree", sans-serif; font-weight: 600; font-size: 14px; cursor: pointer;
  border: 1.5px solid var(--line-strong); background: var(--surface); color: var(--ink);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.cookie-actions button[data-consent="accept"] { background: var(--accent); border-color: var(--accent); color: #fff; }
.cookie-actions button[data-consent="accept"]:hover { background: var(--accent-deep); color: #fff; }
.cookie-actions button[data-consent="reject"]:hover, .cookie-actions button[data-consent="settings"]:hover { border-color: var(--accent); color: var(--accent); }
@media (min-width: 768px) { .cookie-banner { left: 24px; right: auto; max-width: 420px; } }

/* cookie modal */
.cookie-modal-backdrop {
  position: fixed; inset: 0; z-index: 10000; background: rgba(10,30,33,.6);
  display: none; place-items: center; padding: 20px;
}
.cookie-modal-backdrop.is-open { display: grid; }
.cookie-modal { background: var(--surface); border-radius: 16px; padding: 30px; max-width: 480px; width: 100%; box-shadow: var(--shadow-md); }
.cookie-modal h3 { font-size: 1.3rem; margin-bottom: 8px; }
.cookie-modal > p { font-size: 14px; color: var(--ink-soft); margin-bottom: 18px; }
.toggle-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; padding: 14px 0; border-top: 1px solid var(--line); }
.toggle-row .t-info b { display: block; font-size: 15px; }
.toggle-row .t-info span { font-size: 13px; color: var(--ink-faint); }
.switch { position: relative; width: 46px; height: 26px; flex: none; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch .slider { position: absolute; inset: 0; background: var(--line-strong); border-radius: 999px; transition: background .2s; cursor: pointer; }
.switch .slider::before { content: ""; position: absolute; width: 20px; height: 20px; left: 3px; top: 3px; background: #fff; border-radius: 50%; transition: transform .2s; }
.switch input:checked + .slider { background: var(--accent); }
.switch input:checked + .slider::before { transform: translateX(20px); }
.switch input:disabled + .slider { background: var(--accent); opacity: .5; cursor: not-allowed; }
.cookie-modal .btn-primary { width: 100%; justify-content: center; margin-top: 20px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: block; }
  .rota-layout { grid-template-columns: 1fr; }
  .day-axis { position: static; margin-bottom: 30px; }
  .axis-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 4px; }
  .axis-list::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .boat-showcase { grid-template-columns: 1fr; }
  .day-card.has-img .day-card-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: 88vh; padding-top: clamp(88px, 16vh, 128px); }
  .hero-title { font-size: clamp(2rem, 8.6vw, 2.6rem); }
  .hero-stats dt { font-size: clamp(1.4rem, 6vw, 1.8rem); }
  .feature-ico, .comfort-card .feature-ico { width: 42px; height: 42px; }
  .feature-ico svg { width: 22px; height: 22px; }
  .schedule li { grid-template-columns: 54px 20px 1fr; }
  .cookie-actions button { flex: 1 1 100%; }
  .step { padding-left: 64px; }
  .step .snum { width: 46px; height: 46px; font-size: 16px; }
  .steps::before { left: 23px; }
}
@media (max-width: 400px) {
  .axis-list { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(1.9rem, 10.5vw, 2.5rem); }
  .hero-stats { gap: 12px 24px; }
}

/* ============================================================
   PROSE / LEGAL PAGES
   ============================================================ */
.prose { max-width: 740px; margin: 0 auto; line-height: 1.7; }
.prose > p, .prose li { color: var(--ink-soft); font-size: 16px; }
.prose > p { margin: 0 0 1.1em; }
.prose h2 { font-size: 1.5rem; margin: 40px 0 12px; }
.prose > h2:first-of-type { margin-top: 0; }
.prose h3 { font-size: 1.18rem; margin: 26px 0 8px; }
.prose ul, .prose ol { padding-left: 22px; margin: 0 0 1.1em; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--accent-deep); text-decoration: underline; overflow-wrap: anywhere; }
.prose a:hover { color: var(--accent-2); }
.prose .lead { font-size: 1.08rem; color: var(--ink); }
.prose .updated { font-family: "JetBrains Mono", monospace; font-size: 12.5px; color: var(--ink-faint); margin-bottom: 20px; text-transform: uppercase; letter-spacing: .04em; }

/* sitemap page */
.sitemap-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 24px; max-width: 940px; margin: 0 auto; }
.sitemap-cols .col { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 26px; box-shadow: var(--shadow-sm); }
.sitemap-cols h2 { font-size: 1.15rem; margin-bottom: 14px; }
.sitemap-cols ul { list-style: none; margin: 0; padding: 0; }
.sitemap-cols li { margin-bottom: 10px; }
.sitemap-cols a { color: var(--ink-soft); }
.sitemap-cols a:hover { color: var(--accent-2); }

/* optional field hint */
.field label .opt { color: var(--ink-faint); font-weight: 400; font-size: 12px; }

.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;
}

/* ============================================================
   AWARD ELEVATION LAYER — Yediköy Rota
   Nautical editorial art-direction refinement.
   Additive only: transform / opacity / filter / color motion.
   Every decorative animation stays inside the existing
   prefers-reduced-motion guard; no layout is altered on mobile.
   ============================================================ */

:root {
  --ease-nautic: cubic-bezier(.2,.7,.2,1);
  --wave-accent: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='10' viewBox='0 0 64 10'%3E%3Cpath d='M0 6 Q8 0 16 6 T32 6 T48 6 T64 6' fill='none' stroke='%23E4572E' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* Anchor jumps clear the fixed header (direct #hash loads too) */
main section[id], [data-day], .day-card[id], #sss, #fiyat, #tekne, #gunler, #kosullar {
  scroll-margin-top: calc(var(--header-h) + 26px);
}

/* --- Sea-light depth behind the whole document (no image, GPU-cheap) --- */
body {
  background:
    radial-gradient(135% 82% at 50% -12%, rgba(255,215,154,.16), transparent 44%),
    radial-gradient(112% 70% at 100% 4%, rgba(127,201,198,.20), transparent 52%),
    radial-gradient(120% 78% at 0% 8%, rgba(29,120,116,.10), transparent 55%),
    var(--bg);
  background-repeat: no-repeat;
  background-attachment: scroll;
}

/* --- Editorial typography: tighter display tracking, richer optics --- */
h1, h2 { letter-spacing: -0.02em; }
.section-head { margin-bottom: clamp(34px, 4.8vw, 60px); }
.section-head h2 {
  font-size: clamp(2.15rem, 5.4vw, 3.65rem);
  line-height: 1.0;
}
.section-head p { font-size: 1.1rem; line-height: 1.6; }
.section-head:not(.on-dark) p { color: var(--ink-soft); }
/* keep intro paragraphs legible on dark bands (contrast >=4.5:1) */
.band .section-head p, .cta-band .section-head p { color: rgba(255,255,255,.88); }
h1 em, h2 em, h3 em { font-optical-sizing: auto; }

/* refined eyebrow: sun-tipped rule + tiny node */
.eyebrow::before {
  width: 30px; height: 2px;
  background: linear-gradient(90deg, var(--accent-2), var(--sun));
}

/* signature wave rule under centered section heads */
.section-head.center h2 { position: relative; padding-bottom: 22px; }
.section-head.center h2::after {
  content: ""; position: absolute; left: 50%; bottom: 4px;
  width: 64px; height: 10px; transform: translateX(-50%);
  background: var(--wave-accent) center / 64px 10px no-repeat;
  opacity: .9;
}
.band .section-head.center h2::after,
.cta-band .section-head.center h2::after { filter: saturate(1.2) brightness(1.15); }

/* --- Buttons: lacquered top edge (inset highlight; no text overlap) --- */
.btn-primary { box-shadow: inset 0 1px 0 rgba(255,255,255,.26), 0 12px 26px -14px rgba(228,87,46,.7); }
.btn-primary:hover, .btn-primary:focus-visible { box-shadow: inset 0 1px 0 rgba(255,255,255,.3), 0 18px 34px -16px rgba(228,87,46,.78); }
.drawer a.drawer-cta { box-shadow: inset 0 1px 0 rgba(255,255,255,.24); }
.btn-light { box-shadow: inset 0 1px 0 rgba(255,255,255,.6), var(--shadow-sm); }

/* --- Unified card motion: longer, softer, accent-tinted lift --- */
.day-card, .price-card, .cond-card, .testi, .comfort-card, .channel, .feature {
  transition: transform .42s var(--ease-nautic), box-shadow .42s ease,
              border-color .42s ease, background .42s ease;
}
.day-card:hover, .price-card:hover, .cond-card:hover,
.testi:hover, .comfort-card:hover, .channel:hover {
  box-shadow: 0 34px 66px -30px rgba(16,46,52,.5), 0 0 0 1px rgba(29,120,116,.14);
}

/* light-card hairline accent that wipes in on hover */
.cond-card, .testi, .comfort-card, .channel { position: relative; }
.cond-card::before, .testi::before, .comfort-card::before, .channel::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0); transform-origin: left;
  transition: transform .42s var(--ease-nautic);
  border-radius: var(--radius) var(--radius) 0 0;
}
.cond-card:hover::before, .testi:hover::before,
.comfort-card:hover::before, .channel:hover::before { transform: scaleX(1); }

/* --- Feature cards (dark band): editorial index numerals + crisper icon --- */
.grid-3 { counter-reset: feat; }
.grid-3 .feature::after {
  counter-increment: feat;
  content: counter(feat, decimal-leading-zero);
  position: absolute; top: 20px; right: 24px;
  font-family: var(--font-mono); font-size: 12.5px; font-weight: 500;
  letter-spacing: .12em; color: rgba(255,255,255,.30);
  transition: color .34s ease;
}
.grid-3 .feature:hover::after { color: var(--sun); }
.feature-ico { box-shadow: inset 0 1px 0 rgba(255,255,255,.14); }

/* --- Day cards: crisp media, deeper anchor badge, hairline schedule glow --- */
.day-card-media img { filter: saturate(1.03); transition: transform .55s var(--ease-nautic), filter .55s ease; }
.day-card:hover .day-card-media img { transform: scale(1.06); filter: saturate(1.12); }
.day-card:hover { border-color: rgba(29,120,116,.34); }
.schedule li { transition: border-color .3s ease; }
.day-card:hover .schedule li { border-color: rgba(29,120,116,.16); }

/* --- Pricing: warmer featured card, tabular clarity --- */
.price-card .amount { font-variant-numeric: tabular-nums; letter-spacing: -0.01em; }
.price-card.featured {
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(29,120,116,.06), transparent 60%),
    var(--surface);
}
.price-card.featured::before { box-shadow: 0 6px 16px -8px rgba(228,87,46,.6); }
.badge-avail { letter-spacing: .02em; }

/* --- Boat gallery: gentle zoom + caption lift --- */
.boat-showcase .big img, .boat-showcase .stack img { transition: transform .6s var(--ease-nautic); }
.boat-showcase .big:hover img, .boat-showcase .stack figure:hover img { transform: scale(1.045); }

/* --- Testimonials: lacquered quote, refined measure --- */
.testi .quote-mark { transition: opacity .4s ease, transform .4s var(--ease-nautic); }
.testi:hover .quote-mark { opacity: .4; transform: translateY(-2px); }

/* --- FAQ: quieter borders, warmer open state --- */
.faq-item { transition: border-color .3s ease, box-shadow .3s ease; }
.faq-item[open] { border-color: rgba(29,120,116,.34); box-shadow: var(--shadow-sm); }
.faq-item summary:hover { color: var(--accent-deep); }

/* --- Timeline strip: lit label sharpens --- */
.tl-node .tl-label { transition: color .3s ease; }
.route-strip-band .tl-node.is-lit .tl-label { color: #fff; }

/* --- Day axis: active row gets a soft rail highlight --- */
.axis-list a.is-active { font-weight: 600; }

/* --- Reveal: add a whisper of scale for depth (motion-guarded below) --- */
.reveal { transform: translateY(26px) scale(.992); }
.reveal.is-in { transform: none; }

/* Auto-stagger fallback so grid children cascade even without inline --i */
.grid-3 .feature:nth-child(2), .price-grid > *:nth-child(2),
.cond-grid > *:nth-child(2), .testi-grid > *:nth-child(2),
.comfort-grid > *:nth-child(2), .channel-grid > *:nth-child(2) { transition-delay: 90ms; }
.grid-3 .feature:nth-child(3), .price-grid > *:nth-child(3),
.cond-grid > *:nth-child(3), .testi-grid > *:nth-child(3),
.comfort-grid > *:nth-child(3), .channel-grid > *:nth-child(3) { transition-delay: 170ms; }
.grid-3 .feature:nth-child(4), .channel-grid > *:nth-child(4) { transition-delay: 250ms; }

/* --- CTA band: deeper vignette so white text sits richer --- */
.cta-band { box-shadow: inset 0 0 160px -40px rgba(9,28,31,.6); }

/* --- Motion off: neutralise every decorative addition above --- */
@media (prefers-reduced-motion: reduce) {
  .reveal { transform: none !important; }
  .cond-card::before, .testi::before, .comfort-card::before, .channel::before { transform: scaleX(1); transition: none; }
  .day-card-media img, .boat-showcase .big img, .boat-showcase .stack img,
  .btn-primary::after, .btn-light::after { transition: none; }
}

/* --- Small-screen safety: keep the elevation tidy, zero overflow --- */
@media (max-width: 640px) {
  .grid-3 .feature::after { top: 16px; right: 18px; }
  .section-head.center h2 { padding-bottom: 18px; }
}
