/* ============================================================
   Pruva Apnea — Saros & Gökova serbest dalış tekne turları
   Palette: bg #F7F3EC / surface #FFF / ink #152230
            accent #13314F / accent-2 #EF8A2B
   Heading: Bitter 700 · Body: Karla 400
   ============================================================ */

:root {
  --bg: #F7F3EC;
  --surface: #FFFFFF;
  --surface-2: #F0EADD;
  --ink: #152230;
  --ink-soft: #41525f;
  --accent: #13314F;
  --accent-2: #EF8A2B;
  --accent-2-soft: #f6b878;
  --line: rgba(21, 34, 48, 0.12);
  --line-strong: rgba(21, 34, 48, 0.24);
  --teal: #1d6a7a;
  --teal-deep: #0c3a47;
  --header-h: 74px;
  --maxw: 1280px;
  --pad: clamp(16px, 4vw, 56px);
  --ease: cubic-bezier(.2, .7, .2, 1);
  --ease-2: cubic-bezier(.4, 0, .2, 1);
  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: 'Karla', 'Segoe UI', system-ui, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.62;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Bitter', Cambria, 'Times New Roman', serif;
  font-weight: 700;
  line-height: 1.08;
  color: var(--ink);
  margin: 0 0 .5em;
  letter-spacing: -0.012em;
}

p { margin: 0 0 1em; }
a { color: var(--accent); text-decoration: none; transition: color 200ms var(--ease-2); }
a:hover { color: var(--accent-2); }

img { max-width: 100%; height: auto; display: block; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

section { position: relative; }

.eyebrow {
  font-family: 'Bitter', serif;
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent-2);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1.5px;
  background: var(--accent-2);
  display: inline-block;
}

.word-wrap { word-break: break-word; overflow-wrap: anywhere; }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  z-index: 2000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 2px;
  border-radius: 3px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1080;
  height: var(--header-h);
  background: rgba(247, 243, 236, 0.92);
  -webkit-backdrop-filter: blur(12px) saturate(1.25);
  backdrop-filter: blur(12px) saturate(1.25);
  border-bottom: 1px solid transparent;
  transition: background 240ms var(--ease-2), box-shadow 240ms var(--ease-2),
              height 240ms var(--ease-2), border-color 240ms var(--ease-2);
}
.site-header.is-scrolled {
  background: rgba(247, 243, 236, 0.98);
  box-shadow: 0 8px 24px -16px rgba(0, 0, 0, .28);
  border-bottom-color: var(--line);
  height: 64px;
}
.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: 'Bitter', serif;
  font-weight: 700;
  font-size: 1.18rem;
  color: var(--ink);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.brand:hover { color: var(--ink); }
.brand svg { width: 30px; height: 30px; color: var(--accent); flex-shrink: 0; }
.brand b { color: var(--accent-2); font-weight: 700; }
.brand small {
  display: block;
  font-family: 'Karla', sans-serif;
  font-weight: 400;
  font-size: .58rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 1px;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
}
.nav-desktop a {
  position: relative;
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink);
  padding: 6px 2px;
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--accent-2);
  transition: width 240ms var(--ease);
}
.nav-desktop a:hover { color: var(--accent); }
.nav-desktop a:hover::after,
.nav-desktop a.is-active::after { width: 100%; }
.nav-desktop a.is-active { color: var(--accent); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-2);
  color: #fff;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: .92rem;
  transition: background 200ms var(--ease-2), transform 200ms var(--ease-2);
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover,
.nav-cta:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }

/* hamburger */
.nav-toggle {
  position: relative;
  z-index: 1100;
  width: 48px; height: 48px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: var(--surface);
  border: 1.5px solid var(--line-strong);
  border-radius: 12px;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 2px 10px -5px rgba(12, 58, 71, .35);
  transition: background 200ms var(--ease-2), border-color 200ms var(--ease-2),
              box-shadow 200ms var(--ease-2), transform 200ms var(--ease-2);
}
.nav-toggle:hover {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 8px 18px -10px rgba(12, 58, 71, .55);
}
.nav-toggle:active { transform: scale(.94); }
.nav-toggle span {
  display: block;
  width: 22px; height: 2.5px;
  background: var(--accent);
  border-radius: 2px;
  transition: transform 280ms var(--ease), opacity 200ms var(--ease-2), background 200ms var(--ease-2);
}
.nav-toggle:hover span { background: #fff; }
.nav-toggle[aria-expanded="true"] {
  background: var(--accent);
  border-color: var(--accent);
}
.nav-toggle[aria-expanded="true"] span { background: #fff; }
.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); }

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .nav-toggle { display: none; }
}

/* ---------- Drawer ---------- */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 240ms var(--ease-2), visibility 240ms var(--ease-2);
  z-index: 1040;
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: var(--accent);
  color: #fff;
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 320ms var(--ease);
  padding: calc(var(--header-h) + 16px) 26px 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  color: #fff;
  font-family: 'Bitter', serif;
  font-weight: 700;
  font-size: 1.25rem;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  display: flex;
  align-items: center;
  gap: 12px;
}
.drawer a:hover, .drawer a.is-active { color: var(--accent-2-soft); }
.drawer a .num {
  font-family: 'Karla', sans-serif;
  font-size: .72rem;
  color: var(--accent-2);
  letter-spacing: .1em;
}
.drawer .drawer-cta {
  margin-top: 18px;
  justify-content: center;
  background: var(--accent-2);
  border-radius: 999px;
  border-bottom: 0;
}
.drawer .drawer-cta:hover { background: #fff; color: var(--accent); }
.drawer-meta { margin-top: auto; font-family: 'Karla', sans-serif; font-size: .82rem; color: rgba(255,255,255,.7); }
.drawer-meta a { font-size: .82rem; font-family: inherit; font-weight: 400; border: 0; padding: 2px 0; display: inline; }

main { padding-top: var(--header-h); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: 'Karla', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 200ms var(--ease-2), color 200ms var(--ease-2),
              transform 200ms var(--ease-2), box-shadow 200ms var(--ease-2);
  text-align: center;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--accent-2); color: #fff; }
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent); color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -16px rgba(19, 49, 79, .6);
}
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover, .btn-ghost:focus-visible { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-light { background: #fff; color: var(--accent); }
.btn-light:hover, .btn-light:focus-visible { background: var(--accent-2); color: #fff; transform: translateY(-2px); }

/* ============================================================
   HERO — duotone band
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--teal-deep);
  color: #fff;
  isolation: isolate;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  opacity: .55;
}
/* duotone overlay */
.hero-duotone {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(180deg,
    rgba(12, 58, 71, .82) 0%,
    rgba(19, 49, 79, .78) 48%,
    rgba(6, 22, 36, .94) 100%);
  mix-blend-mode: multiply;
  animation: hueShift 14s ease-in-out infinite alternate;
}
@keyframes hueShift {
  0%   { filter: hue-rotate(0deg) saturate(1); }
  100% { filter: hue-rotate(-14deg) saturate(1.25); }
}
/* horizon line */
.hero-horizon {
  position: absolute;
  left: 0; right: 0;
  top: 38%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(239,138,43,.7), transparent);
  z-index: -1;
}
/* caustic ripples */
.hero-caustics {
  position: absolute;
  inset: -20%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.10), transparent 22%),
    radial-gradient(circle at 70% 20%, rgba(255,255,255,.08), transparent 18%),
    radial-gradient(circle at 45% 65%, rgba(255,255,255,.07), transparent 25%),
    radial-gradient(circle at 85% 75%, rgba(255,255,255,.06), transparent 20%);
  mix-blend-mode: soft-light;
  opacity: .35;
  animation: caustic 16s ease-in-out infinite alternate;
}
@keyframes caustic {
  0%   { transform: translate3d(0,0,0) scale(1); }
  50%  { transform: translate3d(2%, 1.5%, 0) scale(1.06); }
  100% { transform: translate3d(-1.5%, -1%, 0) scale(1.02); }
}
.hero-inner {
  position: relative;
  padding: clamp(70px, 13vh, 130px) 0 clamp(54px, 9vh, 96px);
}
.hero-eyebrow {
  color: var(--accent-2);
  border-color: var(--accent-2);
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.7rem, 8.5vw, 4.5rem);
  line-height: .98;
  letter-spacing: -0.02em;
  max-width: 15ch;
  text-shadow: 0 4px 30px rgba(0, 0, 0, .35);
}
.hero h1 .accent { color: var(--accent-2); }
.hero-sub {
  font-size: clamp(1.05rem, 2.3vw, 1.35rem);
  max-width: 54ch;
  color: rgba(255, 255, 255, .9);
  margin: 22px 0 30px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 38px;
}
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}
.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .92);
}
.trust-strip svg { width: 18px; height: 18px; color: var(--accent-2); flex-shrink: 0; }

/* hero stats row */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, .16);
  max-width: 640px;
}
.hero-stats .stat b {
  font-family: 'Bitter', serif;
  font-size: clamp(1.9rem, 5vw, 2.8rem);
  color: #fff;
  display: block;
  line-height: 1;
}
.hero-stats .stat span {
  font-size: .82rem;
  color: rgba(255, 255, 255, .72);
  letter-spacing: .03em;
}

/* rising bubbles */
.bubbles {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.bubbles i {
  position: absolute;
  bottom: -40px;
  left: var(--x, 50%);
  width: var(--s, 8px);
  height: var(--s, 8px);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(255,255,255,.9), rgba(255,255,255,.15) 60%, transparent);
  opacity: 0;
  animation: rise var(--d, 9s) linear infinite;
  animation-delay: var(--delay, 0s);
}
@keyframes rise {
  0%   { transform: translate(0, 0) scale(.7); opacity: 0; }
  10%  { opacity: .7; }
  50%  { transform: translate(var(--wob, 14px), -52vh) scale(1); opacity: .55; }
  90%  { opacity: .25; }
  100% { transform: translate(calc(var(--wob, 14px) * -1), -104vh) scale(1.1); opacity: 0; }
}

/* ============================================================
   SECTION SHELL
   ============================================================ */
.section { padding: clamp(56px, 9vw, 110px) 0; }
.section-head { max-width: 64ch; margin-bottom: clamp(34px, 5vw, 56px); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(2rem, 5vw, 3.3rem);
}
.section-head p {
  font-size: 1.08rem;
  color: var(--ink-soft);
  margin-top: 8px;
}
.bg-surface { background: var(--surface); }
.bg-soft { background: var(--surface-2); }
.bg-ink { background: var(--accent); color: #fff; }
.bg-ink h2, .bg-ink h3 { color: #fff; }
.bg-ink p { color: rgba(255, 255, 255, .85); }

/* anchor divider */
.anchor-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--line-strong);
  margin: 6px 0;
}
.anchor-divider::before, .anchor-divider::after {
  content: ""; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
}
.anchor-divider svg { width: 24px; height: 24px; color: var(--accent-2); }

/* ============================================================
   CIKIS — intro feature grid + split
   ============================================================ */
.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.intro-copy p { font-size: 1.1rem; color: var(--ink-soft); }
.intro-figure {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 30px 60px -34px rgba(12, 58, 71, .55);
}
.intro-figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease);
}
.intro-figure:hover img { transform: scale(1.05); }
.intro-figure figcaption {
  position: absolute;
  left: 16px; bottom: 16px;
  background: rgba(19, 49, 79, .85);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: clamp(34px, 5vw, 54px);
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 24px;
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease), border-color 240ms var(--ease);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px -28px rgba(12, 58, 71, .5);
  border-color: var(--accent-2-soft);
}
.icon-badge {
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border-radius: 13px;
  background: rgba(239, 138, 43, .12);
  color: var(--accent);
  margin-bottom: 16px;
}
.icon-badge svg { width: 26px; height: 26px; }
.feature-card h3 { font-size: 1.22rem; }
.feature-card p { color: var(--ink-soft); margin: 0; font-size: .98rem; }

/* ============================================================
   ROTA — route timeline with boat marker
   ============================================================ */
.rota-wrap {
  position: relative;
  margin-top: 20px;
  padding-left: 8px;
}
.rota-line {
  position: absolute;
  left: 27px; top: 14px; bottom: 14px;
  width: 3px;
  background: linear-gradient(180deg, var(--teal), var(--accent), var(--teal-deep));
  border-radius: 3px;
}
/* boat marker travelling the route */
.rota-boat {
  position: absolute;
  left: 16px;
  top: 0;
  width: 26px; height: 26px;
  color: var(--accent-2);
  z-index: 3;
  transform: translateY(0);
  transition: transform 120ms linear;
  filter: drop-shadow(0 4px 8px rgba(12,58,71,.5));
}
.rota-boat svg { width: 100%; height: 100%; }
.rota-step {
  position: relative;
  padding: 0 0 30px 64px;
  min-height: 56px;
}
.rota-step:last-child { padding-bottom: 0; }
.rota-dot {
  position: absolute;
  left: 16px; top: 2px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--surface);
  border: 3px solid var(--teal);
  z-index: 2;
  display: grid; place-items: center;
  transition: border-color 300ms var(--ease), box-shadow 300ms var(--ease), background 300ms var(--ease);
}
.rota-dot::after {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal);
  transition: background 300ms var(--ease), transform 300ms var(--ease);
}
.rota-step.is-glow .rota-dot {
  border-color: var(--accent-2);
  background: var(--accent-2);
  box-shadow: 0 0 0 6px rgba(239, 138, 43, .18);
}
.rota-step.is-glow .rota-dot::after { background: #fff; }
/* dive points get a drop-pulse descending */
.rota-step.is-dive .rota-dot { border-color: var(--accent); }
.rota-step.is-dive.is-glow .rota-dot { border-color: var(--accent-2); }
.rota-drop {
  position: absolute;
  left: 27px; top: 28px;
  width: 4px; height: 4px;
  border-radius: 0 50% 50% 50%;
  background: var(--accent-2);
  opacity: 0;
  transform: rotate(45deg);
}
.rota-step.is-dive.is-glow .rota-drop { animation: dropDescend 1.4s var(--ease) forwards; }
@keyframes dropDescend {
  0%   { opacity: 0; transform: rotate(45deg) translateY(0) scale(.6); }
  20%  { opacity: 1; }
  100% { opacity: 0; transform: rotate(45deg) translateY(36px) scale(1.4); }
}
.rota-time {
  display: inline-block;
  font-family: 'Bitter', serif;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .06em;
  color: var(--accent-2);
  background: rgba(239, 138, 43, .12);
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 9px;
}
.rota-step h3 { font-size: 1.3rem; margin-bottom: 4px; }
.rota-step p { color: var(--ink-soft); margin: 0; max-width: 60ch; }
.rota-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--accent);
  margin-left: 8px;
}

/* ============================================================
   TEKNE — boat & equipment editorial split
   ============================================================ */
.tekne-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}
.tekne-figure {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 5 / 4;
  box-shadow: 0 30px 60px -34px rgba(12, 58, 71, .5);
}
.tekne-figure img { width: 100%; height: 100%; object-fit: cover; }
.spec-list { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 2px; }
.spec-list li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.spec-list li svg { width: 22px; height: 22px; color: var(--accent-2); }
.spec-list li b { font-family: 'Bitter', serif; }
.spec-list li .v { text-align: right; color: rgba(255,255,255,.78); font-size: .95rem; }

.equip-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.equip-chips span {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  padding: 8px 14px; border-radius: 999px;
  font-size: .88rem; font-weight: 600;
}
.equip-chips span svg { width: 15px; height: 15px; color: var(--accent-2); }

/* ============================================================
   DEPTH GAUGE counters
   ============================================================ */
.gauge-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: clamp(34px, 5vw, 52px);
}
.gauge {
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px 16px;
}
.gauge .ring { position: relative; width: 96px; height: 96px; margin: 0 auto 12px; }
.gauge svg { width: 96px; height: 96px; transform: rotate(-90deg); }
.gauge .ring circle { fill: none; stroke-width: 7; stroke-linecap: round; }
.gauge .ring .track { stroke: var(--surface-2); }
.gauge .ring .bar {
  stroke: var(--accent-2);
  stroke-dasharray: 264;
  stroke-dashoffset: 264;
  transition: stroke-dashoffset 1400ms var(--ease);
}
.gauge.is-in .ring .bar { stroke-dashoffset: var(--off, 80); }
.gauge .ring b {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: 'Bitter', serif;
  font-size: 1.5rem;
  color: var(--accent);
}
.gauge p { margin: 0; font-size: .9rem; color: var(--ink-soft); font-weight: 600; }

/* ============================================================
   PAKETLER — pricing
   ============================================================ */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.pkg-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease), border-color 240ms var(--ease);
}
.pkg-card:hover { transform: translateY(-6px); box-shadow: 0 26px 50px -30px rgba(12,58,71,.5); }
.pkg-card.featured { border-color: var(--accent-2); box-shadow: 0 26px 50px -30px rgba(239,138,43,.5); }
.pkg-flag {
  display: inline-block;
  align-self: flex-start;
  font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  color: #fff; background: var(--accent-2);
  padding: 4px 11px; border-radius: 999px; margin-bottom: 14px;
}
.pkg-card h3 { font-size: 1.5rem; margin-bottom: 4px; }
.pkg-card .lead { color: var(--ink-soft); font-size: .94rem; min-height: 44px; }
.pkg-price {
  font-family: 'Bitter', serif;
  font-size: 2.4rem;
  color: var(--accent);
  line-height: 1;
  margin: 14px 0 2px;
}
.pkg-price small { font-size: .9rem; color: var(--ink-soft); font-family: 'Karla', sans-serif; font-weight: 600; }
.pkg-note { font-size: .76rem; color: var(--ink-soft); margin-bottom: 18px; }
.pkg-list { list-style: none; margin: 0 0 12px; padding: 0; display: grid; gap: 9px; }
.pkg-list li { display: flex; gap: 10px; font-size: .93rem; align-items: flex-start; }
.pkg-list li svg { width: 17px; height: 17px; flex-shrink: 0; margin-top: 3px; }
.pkg-list li.yes svg { color: #2f8f5b; }
.pkg-list li.no { color: var(--ink-soft); }
.pkg-list li.no svg { color: var(--line-strong); }
.pkg-card .btn { margin-top: auto; }
.pkg-deliver { font-size: .82rem; color: var(--ink-soft); margin: 4px 0 14px; padding: 10px 12px; background: var(--surface-2); border-radius: 8px; }

/* ============================================================
   STATS BAND / manifesto
   ============================================================ */
.manifesto {
  font-family: 'Bitter', serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 4.4vw, 3rem);
  line-height: 1.18;
  letter-spacing: -0.015em;
  max-width: 20ch;
}
.manifesto .accent { color: var(--accent-2); }

/* ============================================================
   TESTIMONIALS — editorial grid
   ============================================================ */
.tst-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.tst-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.tst-card:nth-child(2) { transform: translateY(0); }
.tst-quote { font-size: 1rem; color: var(--ink); line-height: 1.6; }
.tst-quote::before { content: "“"; font-family: 'Bitter', serif; color: var(--accent-2); font-size: 2.4rem; line-height: 0; vertical-align: -0.3em; margin-right: 4px; }
.tst-meta { margin-top: auto; border-top: 1px solid var(--line); padding-top: 12px; }
.tst-meta b { font-family: 'Bitter', serif; display: block; }
.tst-meta span { font-size: .82rem; color: var(--ink-soft); }
.tst-stars { color: var(--accent-2); letter-spacing: 2px; font-size: .9rem; }

/* ============================================================
   PROCESS steps
   ============================================================ */
.proc-grid { display: grid; gap: 14px; }
.proc-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 24px;
  transition: border-color 240ms var(--ease), transform 240ms var(--ease);
}
.proc-step:hover { border-color: var(--accent-2-soft); transform: translateX(4px); }
.proc-num {
  font-family: 'Bitter', serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--accent-2);
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: rgba(239,138,43,.12);
  border-radius: 12px;
}
.proc-step h3 { font-size: 1.2rem; margin-bottom: 3px; }
.proc-step p { margin: 0; color: var(--ink-soft); font-size: .96rem; }
.proc-when { display: inline-block; font-size: .76rem; font-weight: 700; color: var(--accent); letter-spacing: .05em; margin-bottom: 6px; }

/* ============================================================
   FAQ — pure CSS accordion
   ============================================================ */
.faq-list { display: grid; gap: 12px; max-width: 860px; margin: 0 auto; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px clamp(18px, 3vw, 26px);
  font-family: 'Bitter', serif;
  font-weight: 700;
  font-size: 1.08rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev {
  flex-shrink: 0;
  width: 22px; height: 22px;
  transition: transform 360ms var(--ease);
  color: var(--accent-2);
}
.faq-item[open] summary .chev { transform: rotate(180deg); }
.faq-item > .answer {
  height: 0;
  padding: 0 clamp(18px, 3vw, 26px);
  overflow: hidden;
  color: var(--ink-soft);
  transition: height 360ms var(--ease-2), padding-block-end 360ms var(--ease-2);
}
.faq-item[open] > .answer {
  height: auto;
  padding-block-end: 22px;
}
.faq-item > .answer p { margin: 0 0 .7em; }
.faq-item > .answer p:last-child { margin-bottom: 0; }
@media (prefers-reduced-motion: reduce) {
  .faq-item > .answer { transition: none; }
}

/* ============================================================
   CTA band
   ============================================================ */
.cta-band {
  background: linear-gradient(120deg, var(--teal-deep), var(--accent));
  color: #fff;
  border-radius: 22px;
  padding: clamp(36px, 6vw, 64px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: #fff; font-size: clamp(1.9rem, 5vw, 3rem); }
.cta-band p { color: rgba(255,255,255,.88); max-width: 56ch; margin: 0 auto 24px; }
.cta-band .btn-row { display: inline-flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ============================================================
   FORM — reservation
   ============================================================ */
.form-wrap {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}
.form-side h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.form-side .channel {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  transition: transform 240ms var(--ease-2);
}
.form-side .channel:hover { transform: translateX(4px); }
.form-side .channel svg { width: 22px; height: 22px; color: var(--accent-2); margin-top: 3px; transition: transform 240ms var(--ease-2); }
.form-side .channel:hover svg { transform: scale(1.12); }
.form-side .channel b { font-family: 'Bitter', serif; display: block; font-size: .95rem; }
.form-side .channel a, .form-side .channel span { color: var(--ink-soft); font-size: .95rem; word-break: break-word; }
.form-side .channel a:hover { color: var(--accent-2); }

.lead-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(24px, 4vw, 40px);
  box-shadow: 0 30px 60px -40px rgba(12,58,71,.4);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 700; font-size: .9rem; font-family: 'Bitter', serif; }
.field label .opt { font-family: 'Karla', sans-serif; font-weight: 400; font-size: .8rem; color: var(--ink-soft); }
.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-bottom: 2px solid var(--line-strong);
  border-radius: 10px;
  padding: 13px 15px;
  width: 100%;
  transition: border-color 200ms var(--ease-2), background 200ms var(--ease-2);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent-2);
  background: #fff;
}
.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);
}
.field.kvkk {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: flex-start;
  gap: 11px;
}
.field.kvkk label { font-family: 'Karla', sans-serif; font-weight: 400; font-size: .88rem; color: var(--ink-soft); }
.lead-form .btn { width: 100%; margin-top: 4px; }
.form-smallprint { font-size: .8rem; color: var(--ink-soft); margin: 14px 0 0; }

/* ============================================================
   CONTACT page cards
   ============================================================ */
.contact-hero {
  background: linear-gradient(120deg, var(--teal-deep), var(--accent));
  color: #fff;
  padding: clamp(48px, 9vw, 96px) 0 clamp(40px, 7vw, 80px);
  min-height: 240px;
}
.contact-hero h1 { color: #fff; font-size: clamp(2.2rem, 6vw, 4rem); }
.contact-hero p { color: rgba(255,255,255,.88); max-width: 52ch; font-size: 1.1rem; }
.channel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.channel-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease), border-color 240ms var(--ease);
}
.channel-card:hover { transform: translateY(-3px); box-shadow: 0 18px 36px -26px rgba(12,58,71,.5); border-color: var(--accent-2-soft); }
.channel-card .ic {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(19,49,79,.08);
  color: var(--accent);
  margin-bottom: 14px;
}
.channel-card .ic svg { width: 24px; height: 24px; }
.channel-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.channel-card a, .channel-card .val { color: var(--accent); font-weight: 700; word-break: break-word; }
.channel-card a:hover { color: var(--accent-2); }
.channel-card small { display: block; color: var(--ink-soft); font-size: .84rem; margin-top: 4px; }

.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  margin-top: 8px;
}
.hours-cell {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  font-variant-numeric: tabular-nums;
}
.hours-cell.today { border-color: var(--accent-2); background: rgba(239,138,43,.07); }
.hours-cell b { font-family: 'Bitter', serif; display: block; font-size: .92rem; }
.hours-cell span { color: var(--ink-soft); font-size: .9rem; }

/* ============================================================
   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; }
/* on phones the small policy tables fit without hidden horizontal scroll */
@media (max-width: 560px) {
  .table-scroll > table { min-width: 0; }
  .table-scroll th, .table-scroll td { padding: 10px 11px; font-size: .85rem; }
}
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }
table th, table td { text-align: left; padding: 12px 16px; border-bottom: 1px solid var(--line); font-size: .95rem; }
table th { font-family: 'Bitter', serif; background: var(--surface-2); }
table tr:last-child td { border-bottom: 0; }

/* ============================================================
   ARTICLE / legal pages
   ============================================================ */
.page-hero {
  background: var(--accent);
  color: #fff;
  padding: clamp(60px, 10vw, 110px) 0 clamp(40px, 6vw, 64px);
}
.page-hero h1 { color: #fff; font-size: clamp(2.1rem, 5.5vw, 3.6rem); }
.page-hero p { color: rgba(255,255,255,.85); max-width: 56ch; }
.prose { max-width: 760px; line-height: 1.7; }
.prose h2 { font-size: clamp(1.5rem, 3.5vw, 2.1rem); margin-top: 1.6em; }
.prose h3 { font-size: 1.2rem; margin-top: 1.3em; }
.prose p, .prose li { color: var(--ink-soft); }
.prose ul { padding-left: 1.2em; }
.prose li { margin-bottom: .4em; }
.prose .updated { font-size: .85rem; color: var(--ink-soft); font-style: italic; }

/* notes / news block */
.notes-list { display: grid; gap: 14px; max-width: 720px; }
.note-item {
  display: grid; grid-template-columns: auto 1fr; gap: 18px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 12px; padding: 18px 22px;
}
.note-item time { font-family: 'Bitter', serif; font-weight: 700; font-size: .82rem; color: var(--accent-2); white-space: nowrap; }
.note-item p { margin: 0; font-size: .96rem; }

/* team */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.team-card { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.team-card .ph { aspect-ratio: 4/3; overflow: hidden; background: var(--surface-2); }
.team-card .ph img { width: 100%; height: 100%; object-fit: cover; }
.team-card .body { padding: 20px 22px; }
.team-card h3 { font-size: 1.18rem; margin-bottom: 2px; }
.team-card .role { color: var(--accent-2); font-weight: 700; font-size: .86rem; margin-bottom: 10px; }
.team-card p { font-size: .92rem; color: var(--ink-soft); margin: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--teal-deep);
  color: rgba(255,255,255,.78);
  padding: clamp(48px, 7vw, 80px) 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(26px, 4vw, 48px);
}
.site-footer h4 { color: #fff; font-size: 1.05rem; margin-bottom: 14px; }
.footer-brand { display: inline-flex; align-items: center; gap: 10px; color: #fff; font-family: 'Bitter', serif; font-weight: 700; font-size: 1.3rem; margin-bottom: 12px; }
.footer-brand svg { width: 28px; height: 28px; color: var(--accent-2); }
.site-footer p { font-size: .92rem; color: rgba(255,255,255,.7); }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer-links a { color: rgba(255,255,255,.78); font-size: .94rem; }
.footer-links a:hover { color: var(--accent-2); }
.footer-contact { display: grid; gap: 10px; font-size: .92rem; }
.footer-contact a { color: rgba(255,255,255,.85); }
.footer-contact a:hover { color: var(--accent-2); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.14);
  margin-top: clamp(32px, 5vw, 52px);
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: space-between;
  font-size: .82rem;
  color: rgba(255,255,255,.6);
}
.footer-bottom a { color: rgba(255,255,255,.6); }
.footer-reg { font-size: .78rem; }

/* ============================================================
   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 24px;
  box-shadow: 0 24px 60px -20px rgba(12,58,71,.5);
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms var(--ease), opacity 240ms var(--ease-2);
  z-index: 9999;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner h2 { font-size: 1.15rem; margin-bottom: 6px; }
.cookie-banner p { font-size: .9rem; color: var(--ink-soft); 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 1 auto;
  min-height: 44px;
  font-family: 'Karla', sans-serif;
  font-weight: 700;
  font-size: .92rem;
  border-radius: 999px;
  cursor: pointer;
  border: 1.5px solid var(--line-strong);
  padding: 11px 16px;
  transition: background 200ms var(--ease-2), color 200ms var(--ease-2), border-color 200ms var(--ease-2);
}
.cookie-actions [data-consent="accept"] { background: var(--accent-2); color: #fff; border-color: var(--accent-2); }
.cookie-actions [data-consent="accept"]:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.cookie-actions [data-consent="reject"] { background: var(--surface-2); color: var(--ink); border-color: var(--line-strong); }
.cookie-actions [data-consent="reject"]:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.cookie-actions [data-consent="settings"] { background: transparent; color: var(--ink-soft); }
.cookie-actions [data-consent="settings"]:hover { background: var(--surface-2); color: var(--ink); }
@media (min-width: 768px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}

/* ============================================================
   REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.reveal.is-in { opacity: 1; transform: none; }
/* float-up variant: gentle sway */
.reveal.float-up { transform: translateY(34px) translateX(6px); }
.reveal.float-up.is-in { transform: none; }
html.no-js .reveal { opacity: 1 !important; transform: none !important; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-duotone, .hero-caustics, .bubbles i, .breathe-ring,
  .rota-boat, .rota-step.is-dive.is-glow .rota-drop { animation: none !important; }
}

/* ============================================================
   BREATHE pacer (used in tekne / process)
   ============================================================ */
.breathe {
  display: inline-grid;
  place-items: center;
  width: 120px; height: 120px;
  position: relative;
}
.breathe-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--accent-2);
  animation: breathe 8s var(--ease) infinite;
}
.breathe span { font-family: 'Bitter', serif; font-size: .82rem; color: var(--accent); z-index: 1; }
@keyframes breathe {
  0%, 100% { transform: scale(.78); opacity: .4; }
  45% { transform: scale(1.18); opacity: 1; }
  55% { transform: scale(1.18); opacity: 1; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1023px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .intro-grid, .tekne-grid, .form-wrap { grid-template-columns: 1fr; }
  .intro-figure { aspect-ratio: 16/10; max-width: 520px; }
  .gauge-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .feature-row, .pkg-grid, .tst-grid, .team-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 14px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}
@media (max-width: 640px) {
  .feature-card, .pkg-card, .lead-form, .channel-card { padding: 20px; }
  .icon-badge { width: 42px; height: 42px; }
  .icon-badge svg { width: 22px; height: 22px; }
  .rota-step { padding-left: 56px; }
  .gauge-row { grid-template-columns: 1fr 1fr; }
  .cta-band .btn-row { display: grid; width: 100%; }
}
@media (max-width: 420px) {
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .nav-toggle { width: 44px; height: 44px; }
}

.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;
}

/* drawer-cta-color-guard v1 */
.drawer a.nav-cta, .drawer .nav-cta, .mobile-menu a.nav-cta, nav[class*=mobile] a.nav-cta {
  color: #fff !important;
}
