/* ============================================================
   Derin Mavi Rota — Dalış temalı mavi tur kataloğu
   Palette: deniz derinliği + akuamarin + sarı
   ============================================================ */

:root {
  --bg: #071A24;
  --bg-2: #05141c;
  --surface: #0E2A38;
  --surface-2: #123645;
  --surface-3: #0a2230;
  --ink: #EAF6FF;
  --ink-soft: #a9c6d6;
  --ink-dim: #6f93a5;
  --accent: #00C2C7;
  --accent-2: #FFD23F;
  --accent-deep: #0399a0;
  --line: rgba(0, 194, 199, 0.16);
  --line-strong: rgba(0, 194, 199, 0.34);
  --header-h: 74px;
  --maxw: 1320px;
  --display: 'Fraunces', Georgia, 'Times New Roman', 'Times', serif;
  --sans: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mono: 'Roboto Mono', ui-monospace, 'SFMono-Regular', monospace;
  --serif: var(--display);
  --shadow: 0 24px 60px -30px rgba(0, 0, 0, 0.7);
  --glow: 0 26px 60px -32px rgba(0, 194, 199, 0.55);
  --radius: 14px;
  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 {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: anywhere;
  word-break: break-word;
}

h1, h2, h3, h4, h5 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.06;
  margin: 0 0 0.5em;
  letter-spacing: -0.014em;
  color: var(--ink);
}
h1 em, h2 em, h3 em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

p { margin: 0 0 1em; color: var(--ink-soft); }
a { color: var(--accent); text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.mono {
  font-family: var(--mono);
  letter-spacing: 0.02em;
}

.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; }
main section[id], main [id] { scroll-margin-top: calc(var(--header-h) + 18px); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: #04141b;
  padding: 10px 16px;
  border-radius: 0 0 10px 0;
  z-index: 2000;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 3px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--accent);
  margin: 0 0 16px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--accent);
  opacity: 0.7;
}

/* ============================================================
   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(7, 26, 36, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: background 240ms ease, box-shadow 240ms ease, height 240ms ease;
}
.site-header.is-scrolled {
  background: rgba(5, 20, 28, 0.98);
  box-shadow: 0 8px 24px -16px rgba(0, 0, 0, 0.6);
  height: 64px;
}
.header-inner {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.12rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.brand svg { width: 30px; height: 30px; flex: none; }
.brand span b { color: var(--accent); font-weight: 700; }
.brand small {
  display: block;
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 0.22em;
  color: var(--ink-dim);
  text-transform: uppercase;
  font-weight: 400;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
}
.nav-desktop a {
  position: relative;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 500;
  padding: 6px 2px;
  transition: color 200ms ease;
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 220ms cubic-bezier(.2,.7,.2,1);
  border-radius: 2px;
}
.nav-desktop a:hover { color: var(--ink); }
.nav-desktop a:hover::after,
.nav-desktop a.is-active::after { width: 100%; }
.nav-desktop a.is-active { color: var(--ink); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #04141b !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid transparent;
  transition: transform 200ms ease, background 200ms ease, box-shadow 200ms ease;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-cta:hover, .nav-cta:focus-visible {
  background: var(--accent-2);
  color: #241c00 !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -12px rgba(255, 210, 63, 0.6);
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 1100;
  width: 44px; height: 44px;
  background: var(--surface-2);
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 260ms cubic-bezier(.2,.7,.2,1), opacity 200ms ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Drawer */
.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: var(--bg-2);
  border-left: 1px solid var(--line-strong);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  padding: calc(var(--header-h) + 20px) 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.14rem;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.drawer a.is-active { color: var(--accent); }
.drawer .drawer-cta,
.drawer a.nav-cta {
  margin-top: 18px;
  background: var(--accent);
  color: #04141b !important;
  text-align: center;
  border-radius: 999px;
  border: none;
  justify-content: center;
}
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: opacity 240ms ease, visibility 240ms ease;
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

@media (max-width: 1023px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }
}

/* ============================================================
   Buttons
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 14px 26px;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 200ms ease, background 220ms ease, color 200ms ease, box-shadow 220ms ease, border-color 200ms ease;
}
.btn-primary {
  background: var(--accent);
  color: #04141b;
  box-shadow: 0 14px 34px -18px rgba(0, 194, 199, 0.9);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent-2);
  color: #241c00;
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -18px rgba(255, 210, 63, 0.7);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface-2);
  color: var(--ink);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.btn svg { width: 18px; height: 18px; }

/* ============================================================
   Bubbles ambient layer
   ============================================================ */

.bubble-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.bubble {
  position: absolute;
  bottom: -40px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(234, 246, 255, 0.55), rgba(0, 194, 199, 0.12) 60%, transparent 70%);
  border: 1px solid rgba(234, 246, 255, 0.18);
  animation: bubbleRise linear infinite;
  opacity: 0;
}
@keyframes bubbleRise {
  0% { transform: translateY(0) translateX(0) scale(0.6); opacity: 0; }
  10% { opacity: 0.7; }
  50% { transform: translateY(-52vh) translateX(14px) scale(1); opacity: 0.5; }
  90% { opacity: 0.15; }
  100% { transform: translateY(-104vh) translateX(-10px) scale(1.1); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .bubble { display: none; }
}

/* ============================================================
   Hero
   ============================================================ */

.hero {
  position: relative;
  min-height: 88vh;
  min-height: 88svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 60px) 0 clamp(56px, 11vh, 120px);
  overflow: hidden;
  isolation: isolate;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  transform: scale(1.08);
  will-change: transform;
  animation: heroKen 22s ease-in-out infinite alternate;
}
@keyframes heroKen {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to   { transform: scale(1.17) translate3d(-1.6%, -2.2%, 0); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(4, 15, 21, 0.80) 0%, rgba(4, 15, 21, 0.40) 48%, rgba(4, 15, 21, 0.05) 100%),
    linear-gradient(180deg, rgba(4, 15, 21, 0.55) 0%, rgba(4, 15, 21, 0.20) 34%, rgba(5, 18, 25, 0.60) 72%, var(--bg) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 130px;
  background: linear-gradient(180deg, transparent, var(--bg));
  z-index: -1;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.hero-eyebrow { color: var(--accent); margin-bottom: 18px; }
.hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.3rem, 8.4vw, 5.6rem);
  line-height: 1.02;
  letter-spacing: -0.018em;
  color: #fff;
  margin: 0 0 22px;
  text-wrap: balance;
  text-shadow: 0 2px 34px rgba(0, 0, 0, 0.45);
}
.hero-title .w { display: inline-block; white-space: nowrap; }
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.hero-sub {
  font-size: clamp(1.04rem, 2.2vw, 1.28rem);
  color: rgba(234, 246, 255, 0.94);
  max-width: 46ch;
  margin-bottom: 30px;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.4);
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}
.hero .btn-ghost {
  background: rgba(7, 26, 36, 0.42);
  border-color: rgba(234, 246, 255, 0.42);
  color: #fff;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.hero .btn-ghost:hover, .hero .btn-ghost:focus-visible {
  background: var(--surface-2);
  border-color: var(--accent);
}
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 14px clamp(22px, 4vw, 40px);
  margin: 0;
  padding: 20px 0 0;
  list-style: none;
  border-top: 1px solid rgba(234, 246, 255, 0.16);
  max-width: 560px;
}
.hero-facts li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-facts b {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  line-height: 1;
  color: #fff;
}
.hero-facts span {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(234, 246, 255, 0.72);
}
@media (prefers-reduced-motion: reduce) {
  .hero-media img { animation: none; transform: scale(1.04); }
}

/* Hero collage (relocated to Dive Points section) */
.hero-collage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: minmax(170px, 1fr);
  gap: 14px;
  max-width: 960px;
  margin-inline: auto;
}
.dive-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  min-height: 150px;
  box-shadow: var(--shadow);
}
.dive-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.2,.7,.2,1);
}
.dive-card:hover img { transform: scale(1.06); }
.dive-card.big { grid-row: span 2; }
.dive-card .tag {
  position: absolute;
  left: 10px; top: 10px;
  z-index: 2;
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  background: rgba(7, 26, 36, 0.82);
  border: 1px solid var(--line-strong);
  color: var(--accent);
  padding: 4px 9px;
  border-radius: 999px;
  text-transform: uppercase;
}
.dive-card .depth {
  position: absolute;
  right: 10px; bottom: 10px;
  z-index: 2;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--accent-2);
  background: rgba(7, 26, 36, 0.7);
  padding: 3px 8px;
  border-radius: 8px;
}
.dive-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5, 20, 28, 0.72));
}

/* Depth scale rail */
.depth-rail {
  position: absolute;
  left: 6px;
  top: calc(var(--header-h) + 90px);
  bottom: 90px;
  width: 1px;
  background: var(--line-strong);
  z-index: 3;
  display: none;
}
@media (min-width: 1180px) { .depth-rail { display: block; } }
.depth-rail span {
  position: absolute;
  left: 8px;
  font-family: var(--mono);
  font-size: 0.6rem;
  color: var(--ink-dim);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.depth-rail span::before {
  content: "";
  position: absolute;
  left: -8px; top: 50%;
  width: 6px; height: 1px;
  background: var(--accent);
}
.depth-rail span:nth-child(1) { top: 0; }
.depth-rail span:nth-child(2) { top: 25%; }
.depth-rail span:nth-child(3) { top: 50%; }
.depth-rail span:nth-child(4) { top: 75%; }
.depth-rail span:nth-child(5) { top: 100%; color: var(--accent-2); }

/* ============================================================
   Section shell
   ============================================================ */

.section {
  padding: clamp(56px, 8vw, 100px) 0;
}
.section-head {
  max-width: 62ch;
  margin-bottom: clamp(30px, 5vw, 52px);
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(1.7rem, 4.4vw, 2.9rem);
}
.section-head p { font-size: 1.05rem; }

.neon-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong) 20%, var(--accent) 50%, var(--line-strong) 80%, transparent);
  opacity: 0.6;
  margin: 0 auto;
  max-width: var(--maxw);
}

/* ============================================================
   Routes grid
   ============================================================ */

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
  align-items: center;
}
.filter-bar .flabel {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-right: 6px;
}
.chip {
  font-family: var(--mono);
  font-size: 0.78rem;
  padding: 8px 15px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 200ms ease;
  letter-spacing: 0.02em;
}
.chip:hover { border-color: var(--accent); color: var(--ink); transform: translateY(-2px); }
.chip.is-active {
  background: var(--accent);
  color: #04141b;
  border-color: var(--accent);
  font-weight: 600;
}

.routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 18px;
}
.route-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 260ms cubic-bezier(.2,.7,.2,1), border-color 260ms ease, box-shadow 260ms ease;
}
.route-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: 0 26px 50px -30px rgba(0, 194, 199, 0.5);
}
.route-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.route-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.2,.7,.2,1);
}
.route-card:hover .route-media img { transform: scale(1.07); }
.route-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(7, 26, 36, 0.85));
}
.level-badge {
  position: absolute;
  left: 12px; top: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(7, 26, 36, 0.85);
}
.level-badge.b { color: var(--accent-2); }
.level-badge.a { color: var(--accent); }
.level-badge.p { color: #ff8bd0; border-color: rgba(255,139,208,0.4); }
.level-badge::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: currentColor;
}
.route-depth {
  position: absolute;
  right: 12px; bottom: 12px;
  z-index: 2;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--ink);
}
.route-depth b { color: var(--accent-2); }
.route-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.route-body h3 {
  font-size: 1.16rem;
  margin-bottom: 6px;
}
.route-loc {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.route-loc svg { width: 13px; height: 13px; }
.route-body p { font-size: 0.9rem; margin-bottom: 14px; }
.route-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--ink-dim);
}
.route-meta span { display: inline-flex; align-items: center; gap: 5px; }
.route-meta b { color: var(--ink); font-weight: 500; }
.route-price {
  margin-top: 12px;
  font-family: var(--sans);
  font-weight: 700;
  color: var(--ink);
  font-size: 1.05rem;
}
.route-price small {
  font-family: var(--mono);
  font-weight: 400;
  font-size: 0.66rem;
  color: var(--ink-dim);
  display: block;
  letter-spacing: 0.04em;
}

/* ============================================================
   Feature cards (equipment / boat)
   ============================================================ */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: transform 260ms ease, border-color 260ms ease;
}
.feature-card:hover { transform: translateY(-5px); border-color: var(--line-strong); }
.feature-ico {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--surface-2), var(--surface-3));
  border: 1px solid var(--line-strong);
  margin-bottom: 16px;
}
.feature-ico svg { width: 26px; height: 26px; color: var(--accent); }
.feature-card h3 { font-size: 1.14rem; margin-bottom: 8px; }
.feature-card p { font-size: 0.92rem; margin: 0; }

/* Boat / equipment split */
.boat-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}
.boat-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}
.boat-media img { width: 100%; height: 100%; object-fit: cover; }
.gear-list { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 12px; }
.gear-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.gear-list li svg { width: 22px; height: 22px; color: var(--accent); grid-row: span 2; margin-top: 3px; }
.gear-list li b { display: block; color: var(--ink); font-family: var(--sans); font-size: 0.98rem; }
.gear-list li span { color: var(--ink-soft); font-size: 0.86rem; }

/* ============================================================
   Pricing
   ============================================================ */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  align-items: stretch;
}
.price-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  position: relative;
  transition: transform 260ms ease, border-color 260ms ease;
}
.price-card:hover { transform: translateY(-5px); border-color: var(--line-strong); }
.price-card.featured {
  border-color: var(--accent);
  box-shadow: 0 30px 60px -34px rgba(0, 194, 199, 0.55);
}
.price-card.featured::before {
  content: "En çok tercih edilen";
  position: absolute;
  top: -12px; left: 26px;
  background: var(--accent);
  color: #04141b;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  font-weight: 600;
}
.price-card h3 { font-size: 1.28rem; margin-bottom: 6px; }
.price-card .lvl {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}
.price-tag {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 2.1rem;
  color: var(--ink);
  line-height: 1;
}
.price-tag small {
  display: block;
  font-family: var(--mono);
  font-weight: 400;
  font-size: 0.68rem;
  color: var(--ink-dim);
  letter-spacing: 0.04em;
  margin-top: 6px;
}
.price-list { list-style: none; margin: 20px 0; padding: 0; display: grid; gap: 10px; flex: 1; }
.price-list li {
  display: flex;
  align-items: start;
  gap: 9px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.price-list li svg { width: 16px; height: 16px; flex: none; margin-top: 4px; color: var(--accent); }
.price-list li.no { color: var(--ink-dim); }
.price-list li.no svg { color: var(--ink-dim); }
.price-card .btn { width: 100%; }
.price-note {
  text-align: center;
  font-family: var(--mono);
  font-size: 0.76rem;
  color: var(--ink-dim);
  margin-top: 24px;
}

/* ============================================================
   Season calendar
   ============================================================ */

.season-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}
.month-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 14px;
  text-align: center;
  transition: transform 220ms ease, border-color 220ms ease;
}
.month-card:hover { transform: translateY(-4px); }
.month-card .m {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.02rem;
  margin-bottom: 4px;
}
.month-card .t {
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--accent-2);
}
.month-card .st {
  font-size: 0.72rem;
  color: var(--ink-dim);
  margin-top: 8px;
  font-family: var(--mono);
}
.month-card.peak { border-color: var(--accent); background: linear-gradient(160deg, var(--surface-2), var(--surface)); }
.month-card.peak .st { color: var(--accent); }
.month-card.closed { opacity: 0.5; }

/* ============================================================
   Process timeline
   ============================================================ */

.timeline {
  position: relative;
  display: grid;
  gap: 4px;
  max-width: 820px;
  margin: 0 auto;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 21px; top: 12px; bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), var(--accent-deep), transparent);
}
.tl-step {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  padding: 16px 0;
}
.tl-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--accent);
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-weight: 700;
  color: var(--accent);
  z-index: 2;
}
.tl-body h3 { font-size: 1.16rem; margin-bottom: 4px; }
.tl-body .when {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--accent-2);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  display: block;
}
.tl-body p { font-size: 0.94rem; margin: 0; }

/* ============================================================
   Testimonials
   ============================================================ */

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
}
.testi-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  position: relative;
}
.testi-card .stars {
  color: var(--accent-2);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.testi-card p { font-size: 0.95rem; color: var(--ink); font-style: italic; margin-bottom: 16px; }
.testi-meta { display: flex; align-items: center; gap: 12px; }
.testi-av {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--accent-deep), var(--surface-2));
  display: grid;
  place-items: center;
  font-family: var(--sans);
  font-weight: 700;
  color: var(--ink);
  flex: none;
}
.testi-meta b { display: block; font-size: 0.92rem; color: var(--ink); font-family: var(--sans); }
.testi-meta span { font-family: var(--mono); font-size: 0.72rem; color: var(--ink-dim); }

/* ============================================================
   FAQ
   ============================================================ */

.faq-wrap { max-width: 820px; margin: 0 auto; 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: 20px clamp(18px, 3vw, 26px);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .ic {
  width: 22px; height: 22px;
  flex: none;
  position: relative;
  transition: transform 300ms ease;
}
.faq-item summary .ic::before,
.faq-item summary .ic::after {
  content: "";
  position: absolute;
  background: var(--accent);
  border-radius: 2px;
}
.faq-item summary .ic::before { left: 0; top: 10px; width: 22px; height: 2px; }
.faq-item summary .ic::after { left: 10px; top: 0; width: 2px; height: 22px; transition: transform 300ms ease; }
.faq-item[open] summary .ic::after { transform: scaleY(0); }
.faq-item > .answer {
  height: 0;
  padding: 0 clamp(18px, 3vw, 26px);
  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: 24px;
}
.faq-item > .answer p { margin: 0; font-size: 0.94rem; }
@media (prefers-reduced-motion: reduce) {
  .faq-item > .answer { transition: none; }
}

/* ============================================================
   CTA band
   ============================================================ */

.cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, #062a34, #0a3b45 60%, #073038);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}
.cta-band .container {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: clamp(56px, 8vw, 92px);
  padding-bottom: clamp(56px, 8vw, 92px);
}
.cta-band h2 { font-size: clamp(1.8rem, 4.4vw, 3rem); }
.cta-band p { max-width: 52ch; margin: 0 auto 28px; font-size: 1.08rem; }
.cta-band .hero-cta { justify-content: center; }

/* ============================================================
   Footer
   ============================================================ */

.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: clamp(48px, 7vw, 72px) 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(28px, 4vw, 48px);
}
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; max-width: 34ch; }
.footer-col h4 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-dim);
  font-family: var(--mono);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col a { color: var(--ink-soft); font-size: 0.92rem; transition: color 200ms ease; }
.footer-col a:hover { color: var(--accent); }
.footer-contact li {
  display: flex;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--ink-soft);
  align-items: start;
}
.footer-contact svg { width: 17px; height: 17px; color: var(--accent); flex: none; margin-top: 3px; }
.footer-bottom {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--ink-dim);
}
.footer-bottom .mono { font-size: 0.72rem; }
.footer-bottom a { color: var(--ink-dim); }
.footer-bottom a:hover { color: var(--accent); }

/* ============================================================
   Reveal
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms cubic-bezier(.2,.7,.2,1), transform 600ms cubic-bezier(.2,.7,.2,1);
  transition-delay: calc(var(--i, 0) * 70ms);
}
.reveal.is-in { opacity: 1; transform: none; }
html.no-js .reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ============================================================
   Counter stat block
   ============================================================ */

.stat-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
  text-align: center;
}
.stat-item {
  padding: 26px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.stat-item b {
  display: block;
  font-family: var(--sans);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  color: var(--accent);
  line-height: 1;
}
.stat-item span {
  font-size: 0.82rem;
  color: var(--ink-soft);
  font-family: var(--mono);
  letter-spacing: 0.02em;
}

/* ============================================================
   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;
  padding: 22px 22px 20px;
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.8);
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms ease;
  z-index: 9999;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
@media (min-width: 700px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}
.cookie-banner h4 { font-size: 1.02rem; margin-bottom: 8px; }
.cookie-banner p { font-size: 0.85rem; margin-bottom: 16px; }
.cookie-banner p a { color: var(--accent); text-decoration: underline; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-actions button {
  flex: 1;
  min-width: 100px;
  min-height: 44px;
  padding: 11px 14px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.86rem;
  cursor: pointer;
  border: 1px solid var(--line-strong);
  transition: all 200ms ease;
}
.cookie-actions button[data-consent="accept"] {
  background: var(--accent);
  color: #04141b;
  border-color: var(--accent);
}
.cookie-actions button[data-consent="accept"]:hover { background: var(--accent-2); color: #241c00; }
.cookie-actions button[data-consent="reject"],
.cookie-actions button[data-consent="settings"] {
  background: transparent;
  color: var(--ink);
}
.cookie-actions button[data-consent="reject"]:hover,
.cookie-actions button[data-consent="settings"]:hover { background: var(--surface-2); border-color: var(--accent); }

/* Cookie modal */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(3, 12, 17, 0.72);
}
.cookie-modal.is-open { display: flex; }
.cookie-modal-inner {
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  padding: 30px 28px;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}
.cookie-modal-inner h3 { font-size: 1.3rem; margin-bottom: 14px; }
.toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.toggle-row b { display: block; font-family: var(--sans); font-size: 0.98rem; color: var(--ink); }
.toggle-row span { font-size: 0.82rem; color: var(--ink-dim); }
.switch { position: relative; width: 46px; height: 26px; flex: none; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch .track {
  position: absolute; inset: 0;
  background: var(--surface-3);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  cursor: pointer;
  transition: background 200ms ease;
}
.switch .track::before {
  content: "";
  position: absolute;
  left: 3px; top: 2px;
  width: 20px; height: 20px;
  background: var(--ink-dim);
  border-radius: 50%;
  transition: transform 220ms ease, background 200ms ease;
}
.switch input:checked + .track { background: rgba(0, 194, 199, 0.3); border-color: var(--accent); }
.switch input:checked + .track::before { transform: translateX(20px); background: var(--accent); }
.switch input:disabled + .track { opacity: 0.6; cursor: not-allowed; }
.cookie-modal .btn { width: 100%; margin-top: 22px; }

/* ============================================================
   Forms
   ============================================================ */

.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(24px, 4vw, 40px);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 4px; }
.field.full { grid-column: 1 / -1; }
.field label, .field > span {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--surface-3);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 13px 15px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.96rem;
  transition: border-color 200ms ease, background 200ms ease;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-dim); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface-2);
}
.field textarea { min-height: 130px; resize: vertical; }
.field select { cursor: pointer; }
.field.kvkk {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}
.field.kvkk label { font-weight: 400; font-size: 0.86rem; color: var(--ink-soft); font-family: var(--sans); }
.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: 8px; }

/* ============================================================
   Contact cards
   ============================================================ */

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}
.contact-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 20px 44px -28px rgba(0, 194, 199, 0.5);
}
.contact-card .cico {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(145deg, var(--surface-2), var(--surface-3));
  border: 1px solid var(--line-strong);
  margin-bottom: 14px;
}
.contact-card .cico svg { width: 24px; height: 24px; color: var(--accent); }
.contact-card h3 { font-size: 1.02rem; margin-bottom: 4px; }
.contact-card a, .contact-card .val { color: var(--ink); font-size: 0.98rem; font-weight: 500; word-break: break-word; }
.contact-card a:hover { color: var(--accent); }
.contact-card .sub { font-size: 0.8rem; color: var(--ink-dim); margin-top: 6px; font-family: var(--mono); }

/* Hours table */
.hours-grid {
  display: grid;
  gap: 8px;
  max-width: 460px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 0.92rem;
}
.hours-row .d { color: var(--ink); font-weight: 500; }
.hours-row .h { font-family: var(--mono); color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.hours-row.today { border-color: var(--accent); background: linear-gradient(90deg, var(--surface-2), var(--surface)); }
.hours-row.today .h { color: var(--accent); }

/* ============================================================
   Team
   ============================================================ */

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 240ms ease, border-color 240ms ease;
}
.team-card:hover { transform: translateY(-5px); border-color: var(--line-strong); }
.team-media { aspect-ratio: 4 / 5; overflow: hidden; }
.team-media img { width: 100%; height: 100%; object-fit: cover; }
.team-body { padding: 20px; }
.team-body h3 { font-size: 1.14rem; margin-bottom: 2px; }
.team-body .role {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.team-body p { font-size: 0.88rem; margin: 0; }

/* ============================================================
   Generic content / legal pages
   ============================================================ */

.page-hero {
  padding: calc(var(--header-h) + 50px) 0 44px;
  background:
    radial-gradient(900px 400px at 80% -10%, rgba(0, 194, 199, 0.16), transparent 60%),
    linear-gradient(180deg, #082230, var(--bg));
  position: relative;
  overflow: hidden;
}
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
.page-hero p { max-width: 60ch; font-size: 1.06rem; }

.prose { max-width: 748px; margin: 0 auto; }
.prose h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin: 40px 0 14px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.2rem; margin: 26px 0 10px; }
.prose p, .prose li { color: var(--ink-soft); font-size: 1rem; line-height: 1.75; }
.prose p { margin: 0 0 16px; }
.prose ul, .prose ol { padding-left: 22px; margin: 0 0 18px; }
.prose li { margin-bottom: 8px; }
.prose .lead { font-size: 1.08rem; color: var(--ink); }
.prose .muted { font-size: 0.85rem; color: var(--ink-dim); font-family: var(--mono); }
.prose strong { color: var(--ink); }
.prose a { color: var(--accent); text-decoration: underline; }

/* 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; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }
table th, table td {
  padding: 13px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}
table th {
  background: var(--surface-2);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.85rem;
}
table td { color: var(--ink-soft); }

/* Thank you / 404 */
.center-stage {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: calc(var(--header-h) + 40px) 0 60px;
  position: relative;
  overflow: hidden;
}
.center-stage h1 { font-size: clamp(2.2rem, 6vw, 4rem); }
.center-stage .big404 {
  font-family: var(--sans);
  font-size: clamp(5rem, 18vw, 11rem);
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.03em;
}
.center-stage p { max-width: 46ch; margin: 0 auto 26px; }

/* Sitemap */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.sitemap-col {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.sitemap-col h3 { font-size: 1.1rem; margin-bottom: 14px; }
.sitemap-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.sitemap-col a { color: var(--ink-soft); font-size: 0.94rem; }
.sitemap-col a:hover { color: var(--accent); }

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 960px) {
  .boat-split { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero { min-height: 82vh; min-height: 82svh; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .feature-card { padding: 22px 20px; }
  .feature-ico { width: 44px; height: 44px; }
  .feature-ico svg { width: 22px; height: 22px; }
  .hero-collage { grid-template-columns: 1fr 1fr; }
  .cookie-actions button { flex: 1 1 100%; }
}
@media (max-width: 380px) {
  .hero-facts { gap: 12px 22px; }
}

.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-LEVEL ART DIRECTION — "Derin Mavi" deep-sea editorial
   Fraunces display + Manrope + mono · aqua/amber on abyss teal
   (transform/opacity/box-shadow/filter only; guards preserved)
   ============================================================ */

:root { --amber: var(--accent-2); --abyss: #041017; }

.reveal { will-change: opacity, transform; }
.reveal.is-in { will-change: auto; }

/* ---- Display typography: optical sizing + editorial feel ---- */
h1, h2, h3, h4, h5 { font-optical-sizing: auto; }
body { text-rendering: optimizeLegibility; }

/* Eyebrow → sonar tick + tracked mono kicker */
.eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  gap: 10px;
}
.eyebrow::before {
  width: 30px;
  background: linear-gradient(90deg, transparent, var(--accent));
  opacity: 0.9;
}
.section-head.center .eyebrow { justify-content: center; }

/* Section heads: bigger, balanced, with hairline + soft depth glow */
.section-head { position: relative; }
.section-head h2 {
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.02;
  text-wrap: balance;
}
.section-head p {
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  color: var(--ink-soft);
  max-width: 54ch;
}
.section-head.center p { margin-left: auto; margin-right: auto; }
.section-head h2 em { display: inline; }

/* Ambient caustic light behind major section heads (very soft) */
.section > .container > .section-head::before {
  content: "";
  position: absolute;
  left: -6%;
  top: -34px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 194, 199, 0.14), transparent 70%);
  pointer-events: none;
  z-index: -1;
  filter: blur(6px);
}
.section-head.center::before { left: 50%; transform: translateX(-50%); }
@media (prefers-reduced-motion: reduce) {
  .section > .container > .section-head::before { display: none; }
}

/* Refined divider → sonar sweep line */
.neon-divider {
  height: 1px;
  opacity: 0.55;
  background: linear-gradient(90deg, transparent, var(--line-strong) 18%, var(--accent) 50%, var(--line-strong) 82%, transparent);
  position: relative;
}

/* ---- Unified premium hover-lift with accent glow ---- */
.route-card,
.feature-card,
.price-card,
.testi-card,
.contact-card,
.team-card,
.month-card,
.dive-card,
.sitemap-col {
  will-change: transform;
}
.feature-card:hover,
.month-card:hover {
  box-shadow: var(--glow);
}
.testi-card {
  transition: transform 260ms cubic-bezier(.2,.7,.2,1), border-color 260ms ease, box-shadow 260ms ease;
}
.testi-card:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
  box-shadow: var(--glow);
}

/* ---- Big numerals in Fraunces (editorial figures) ---- */
.stat-item b,
.price-tag,
.route-price {
  font-family: var(--display);
  font-optical-sizing: auto;
  letter-spacing: -0.01em;
}
.stat-item b { font-weight: 500; }
.price-tag { font-weight: 500; font-size: clamp(2.1rem, 5vw, 2.5rem); }
.route-price { font-weight: 600; }
.center-stage .big404 { font-family: var(--display); font-weight: 500; }

/* Stat band → instrument-panel read-outs */
.stat-band { gap: 16px; }
.stat-item {
  position: relative;
  padding: 30px 20px 26px;
  background: linear-gradient(165deg, var(--surface-2), var(--surface));
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), border-color 240ms ease, box-shadow 240ms ease;
}
.stat-item:hover { transform: translateY(-4px); border-color: var(--line-strong); box-shadow: var(--glow); }
.stat-item::before {
  content: "";
  position: absolute;
  left: 20px; right: 20px; top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.5;
}
.stat-item span { display: block; margin-top: 8px; letter-spacing: 0.04em; }

/* ---- Dive-points collage: depth read-out + caption ---- */
.dive-card { border-color: var(--line-strong); }
.dive-card .depth {
  font-weight: 500;
  border: 1px solid rgba(255, 210, 63, 0.4);
  letter-spacing: 0.04em;
}
.dive-card:hover { box-shadow: var(--glow); }

/* ---- Route cards: cohesive detailing ---- */
.route-card { background: linear-gradient(180deg, var(--surface), var(--surface-3)); }
.route-body h3 { font-size: 1.24rem; font-weight: 600; }
.route-meta span svg { width: 15px; height: 15px; color: var(--accent); flex: none; }
.route-price {
  padding-top: 12px;
  margin-top: 12px;
  border-top: 1px solid var(--line);
}

/* Filter chips: crisper */
.chip { transition: transform 200ms ease, background 200ms ease, color 200ms ease, border-color 200ms ease; }
.chip.is-active { box-shadow: 0 10px 24px -14px rgba(0, 194, 199, 0.8); }

/* ---- Feature icon tiles → porthole rings ---- */
.feature-ico,
.contact-card .cico {
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 40%, rgba(0, 194, 199, 0.16), transparent 70%),
    linear-gradient(150deg, var(--surface-2), var(--surface-3));
  box-shadow: inset 0 0 0 1px rgba(0, 194, 199, 0.18);
  transition: transform 260ms cubic-bezier(.2,.7,.2,1), box-shadow 260ms ease, border-color 260ms ease;
}
.feature-card:hover .feature-ico,
.contact-card:hover .cico {
  transform: translateY(-2px) rotate(-4deg);
  border-color: var(--accent);
  box-shadow: inset 0 0 0 1px var(--accent), 0 12px 26px -14px rgba(0, 194, 199, 0.7);
}
.feature-card h3, .contact-card h3 { font-weight: 600; }

/* ---- Boat / gear split: caption chip + refined list ---- */
.boat-media { box-shadow: var(--glow), var(--shadow); }
.boat-media::after {
  content: "Teknede tam donanım";
  position: absolute;
  left: 14px; bottom: 14px;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(4, 16, 23, 0.82);
  border: 1px solid var(--line-strong);
  padding: 5px 11px;
  border-radius: 999px;
}
.gear-list li { transition: border-color 220ms ease; }
.gear-list li:hover { border-color: var(--line-strong); }
.gear-list li:hover svg { color: var(--amber); }

/* ---- Pricing: sharper hierarchy for featured plan ---- */
.price-card { background: linear-gradient(180deg, var(--surface), var(--surface-3)); }
.price-card.featured {
  transform: translateY(-6px);
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  box-shadow: var(--glow);
}
.price-card.featured:hover { transform: translateY(-10px); }
.price-card h3 { font-weight: 600; }
.price-list li svg { color: var(--accent); }

/* ---- Season calendar: gauge-like depth cues ---- */
.month-card {
  transition: transform 220ms cubic-bezier(.2,.7,.2,1), border-color 220ms ease, box-shadow 220ms ease;
}
.month-card .t { font-weight: 500; letter-spacing: 0.02em; }
.month-card.peak { box-shadow: inset 0 0 0 1px rgba(0, 194, 199, 0.22); }
.month-card.peak .m { color: var(--ink); }

/* ---- Timeline: refined nodes ---- */
.tl-num {
  font-family: var(--display);
  font-weight: 600;
  transition: transform 240ms ease, box-shadow 240ms ease, background 240ms ease;
  box-shadow: 0 0 0 5px rgba(0, 194, 199, 0.08);
}
.tl-step:hover .tl-num {
  transform: scale(1.06);
  background: var(--accent);
  color: var(--abyss);
  box-shadow: 0 0 0 6px rgba(0, 194, 199, 0.14);
}
.tl-body h3 { font-weight: 600; }

/* ---- Testimonials: opening quote mark ---- */
.testi-card::before {
  content: "\201C";
  position: absolute;
  top: 10px; right: 20px;
  font-family: var(--display);
  font-size: 4.4rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.16;
  pointer-events: none;
}
.testi-card p { position: relative; z-index: 1; }
.testi-av { font-family: var(--sans); }

/* ---- FAQ: hover accent ---- */
.faq-item { transition: border-color 220ms ease, background 220ms ease; }
.faq-item:hover { border-color: var(--line-strong); }
.faq-item[open] { border-color: var(--accent); background: linear-gradient(180deg, var(--surface-2), var(--surface)); }
.faq-item summary { font-weight: 600; }

/* ---- CTA band: caustic wash + strong headline ---- */
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 300px at 15% 0%, rgba(0, 194, 199, 0.20), transparent 60%),
    radial-gradient(500px 260px at 90% 100%, rgba(255, 210, 63, 0.10), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.cta-band h2 { font-weight: 500; letter-spacing: -0.02em; }

/* ---- Footer / prose display polish ---- */
.footer-brand p { color: var(--ink-soft); }
.page-hero h1 { font-weight: 500; letter-spacing: -0.02em; }
.page-hero h1 em { font-style: italic; color: var(--accent); }
.prose h2 { font-weight: 600; }
.center-stage h1 { font-weight: 500; }

/* ---- Buttons: keep grotesque, tighten weight ---- */
.btn { font-family: var(--sans); font-weight: 600; letter-spacing: 0.005em; }

/* ---- Mobile clamp / overflow safety ---- */
@media (max-width: 600px) {
  .section-head h2 { font-size: clamp(1.7rem, 8vw, 2.3rem); }
  .stat-item b { font-size: clamp(1.9rem, 9vw, 2.4rem); }
  .section > .container > .section-head::before { width: 160px; height: 160px; left: -12%; }
}
@media (max-width: 380px) {
  .price-tag { font-size: 2rem; }
}
