/* ============================================================
   Derin Sessizlik — Gökova serbest dalış & su altı portre
   ============================================================ */
:root {
  --bg: #0A0C0E;
  --surface: #16191C;
  --surface-2: #1d2226;
  --ink: #F2F4F5;
  --ink-soft: #aab2b6;
  --ink-faint: #6c757b;
  --accent: #7FD4E8;
  --accent-2: #C9A24B;
  --line: rgba(242,244,245,.12);
  --line-strong: rgba(242,244,245,.22);
  --header-h: 74px;
  --maxw: 1400px;
  interpolate-size: allow-keywords;
}

* { box-sizing: border-box; }
html, body { margin: 0; max-width: 100vw; overflow-x: hidden; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter Tight', system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, .eyebrow {
  font-family: 'Syne', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.012em;
  margin: 0;
}
p { margin: 0 0 1rem; }
a { color: var(--accent); text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 2px; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: clamp(16px, 4vw, 32px);
}
/* anchor target offset under the fixed header */
section[id], [id].faq-item { scroll-margin-top: calc(var(--header-h) + 14px); }
/* long URLs / e-mails never overflow */
a, .v, p, li, td { overflow-wrap: anywhere; }
.eyebrow {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: 'Inter Tight', sans-serif;
}
.gold { color: var(--accent-2); }

.skip-link {
  position: absolute; left: 8px; top: -60px;
  background: var(--accent); color: var(--bg);
  padding: 10px 16px; border-radius: 6px; z-index: 2000;
  transition: top .2s; font-weight: 600;
}
.skip-link:focus { top: 8px; }

/* ---------- 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(10, 12, 14, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
  transition: background .24s ease, box-shadow .24s ease, height .24s ease;
}
.site-header.scrolled {
  background: rgba(10,12,14,.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,.6);
  height: 64px;
}
.header-inner {
  width: 100%; max-width: var(--maxw); margin: 0 auto;
  padding-left: clamp(16px, 3vw, 40px); padding-right: clamp(16px, 3vw, 40px);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.brand {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 1.18rem; letter-spacing: .04em; color: var(--ink);
  display: flex; align-items: center; gap: 9px; white-space: nowrap;
}
.brand .mark {
  width: 11px; height: 11px; border-radius: 50%;
  border: 1.5px solid var(--accent);
  position: relative; flex: 0 0 auto;
}
.brand .mark::after {
  content: ""; position: absolute; inset: 3px; border-radius: 50%;
  background: var(--accent-2);
}
.nav-desktop { display: flex; align-items: center; gap: 28px; }
.nav-desktop a {
  position: relative; color: var(--ink-soft); font-size: .95rem;
  font-weight: 500; letter-spacing: .01em; transition: color .2s;
}
.nav-desktop a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -6px;
  height: 1.5px; background: var(--accent); transition: right .25s ease;
}
.nav-desktop a:hover, .nav-desktop a.is-active { color: var(--ink); }
.nav-desktop a:hover::after, .nav-desktop a.is-active::after { right: 0; }

.nav-cta {
  border: 1px solid var(--accent); color: var(--accent) !important;
  padding: 8px 18px; border-radius: 999px; font-weight: 600; font-size: .9rem;
  transition: background .22s, color .22s;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover { background: var(--accent); color: var(--bg) !important; }

.nav-toggle {
  display: none; position: relative; z-index: 1100;
  width: 46px; height: 46px; padding: 0;
  border: 1px solid var(--line-strong); border-radius: 12px;
  background: var(--surface-2); cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  transition: background .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.nav-toggle:hover, .nav-toggle:focus-visible {
  background: var(--surface); border-color: var(--accent);
  box-shadow: 0 8px 22px -14px rgba(127,212,232,.6);
}
.nav-toggle span {
  display: block; height: 2px; width: 22px; background: var(--ink);
  border-radius: 2px; transition: transform .3s ease, opacity .2s ease, background .2s ease;
}
.nav-toggle:hover span, .nav-toggle:focus-visible span { background: var(--accent); }
.nav-toggle span + span { margin-top: 0; }
.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-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,.55);
  opacity: 0; visibility: hidden; transition: opacity .24s ease, visibility .24s;
  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(--surface);
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.2,.7,.2,1);
  z-index: 1050;
  display: flex; flex-direction: column;
  padding: calc(var(--header-h) + 16px) 28px 28px;
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  color: var(--ink); font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 1.3rem; padding: 14px 0; border-bottom: 1px solid var(--line);
  transition: color .2s, padding-left .2s;
}
.drawer a:hover, .drawer a.is-active { color: var(--accent); padding-left: 6px; }
.drawer .drawer-cta {
  margin-top: 24px; border: 1px solid var(--accent); border-radius: 999px;
  text-align: center; color: var(--accent); border-bottom: 1px solid var(--accent);
}
.drawer .drawer-cta:hover { background: var(--accent); color: var(--bg); padding-left: 0; }

main { padding-top: var(--header-h); }

/* ---------- Hero ---------- */
.hero {
  position: relative; height: min(100svh, 1200px); min-height: 600px;
  margin-top: calc(var(--header-h) * -1);
  overflow: hidden;
  display: flex; align-items: flex-end;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  animation: kenburns 26s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1.05) translate(0, 0); }
  to   { transform: scale(1.18) translate(-1.5%, -2%); }
}
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,12,14,.45) 0%, rgba(10,12,14,.1) 40%, rgba(10,12,14,.92) 100%);
}
/* caustics light beams over the image */
.caustics {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  mix-blend-mode: soft-light; opacity: .35;
  background:
    repeating-linear-gradient(102deg, transparent 0 38px, rgba(170,225,240,.5) 40px 44px, transparent 46px 96px),
    radial-gradient(120% 60% at 50% -10%, rgba(180,235,250,.6), transparent 60%);
  background-size: 280px 100%, 100% 100%;
  animation: caustic-drift 14s ease-in-out infinite alternate;
}
.lightshaft {
  position: absolute; inset: -10% 0 0; z-index: 1; pointer-events: none;
  background: linear-gradient(100deg, transparent 30%, rgba(155,220,240,.14) 45%, transparent 52%, transparent 64%, rgba(155,220,240,.1) 72%, transparent 80%);
  animation: shaft-pan 16s ease-in-out infinite alternate; opacity: .8;
}
@keyframes caustic-drift {
  from { background-position: 0 0, 0 0; transform: translateY(0); }
  to   { background-position: 280px 4%, 0 0; transform: translateY(-2%); }
}
@keyframes shaft-pan {
  from { transform: translateX(-4%); }
  to   { transform: translateX(4%); }
}
.hero-content {
  position: relative; z-index: 3;
  padding-bottom: clamp(40px, 8vh, 96px);
}
.hero .eyebrow { margin-bottom: 18px; }
.hero h1 {
  font-size: clamp(2.8rem, 9vw, 4.5rem);
  line-height: .98; max-width: 14ch;
}
.hero h1 .word { display: inline-block; }
.hero-sub {
  margin-top: 22px; max-width: 46ch; color: var(--ink-soft);
  font-size: clamp(1rem, 2.2vw, 1.18rem);
}
.hero-actions { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-meta {
  position: absolute; bottom: 18px; right: clamp(8px,3vw,40px); z-index: 3;
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-faint); writing-mode: vertical-rl;
}
.scroll-hint {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  z-index: 3; color: var(--ink-faint); font-size: .7rem; letter-spacing: .2em;
  text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-hint .bar {
  width: 1px; height: 38px;
  background: linear-gradient(var(--accent), transparent);
  animation: drop 2.2s ease-in-out infinite;
}
@keyframes drop { 0%,100% { transform: scaleY(.4); opacity:.5; transform-origin: top;} 50% { transform: scaleY(1); opacity:1;} }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 26px; border-radius: 999px; font-weight: 600; font-size: .96rem;
  font-family: 'Inter Tight', sans-serif; cursor: pointer; border: 1px solid transparent;
  transition: transform .2s, background .22s, color .22s, border-color .22s;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: var(--bg); }
.btn-primary:hover, .btn-primary:focus-visible { background: var(--accent-2); color: var(--bg); transform: translateY(-2px); }
.btn-primary .arrow { transition: transform .22s; }
.btn-primary:hover .arrow { transform: translateX(4px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover, .btn-ghost:focus-visible { background: var(--surface); color: var(--ink); border-color: var(--accent); transform: translateY(-2px); }

/* ---------- Trust strip ---------- */
.trust-strip {
  display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 26px;
}
.trust-strip span {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; color: var(--ink-soft); letter-spacing: .02em;
}
.trust-strip svg { width: 16px; height: 16px; color: var(--accent); flex: 0 0 auto; }

/* ---------- Section ---------- */
.section { padding: clamp(56px, 9vw, 120px) 0; position: relative; }
.section-head { max-width: 60ch; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head .eyebrow { margin-bottom: 14px; }
.section-head h2 { font-size: clamp(2rem, 5vw, 3.4rem); }
.section-head p { color: var(--ink-soft); margin-top: 16px; font-size: 1.05rem; }
.band { background: var(--surface); border-block: 1px solid var(--line); }

/* ---------- Gallery (mask-reveal flow) ---------- */
.gallery {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: clamp(8px, 1.4vw, 18px);
}
.tile {
  position: relative; overflow: hidden; border-radius: 4px;
  border: 1px solid var(--line); background: var(--surface);
}
.tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s cubic-bezier(.2,.7,.2,1);
}
.tile:hover img { transform: scale(1.05); }
.tile .frame {
  position: absolute; inset: 10px; border: 1px solid rgba(242,244,245,.22);
  pointer-events: none; opacity: .0; transition: opacity .4s, inset .4s;
}
.tile:hover .frame { opacity: 1; inset: 14px; }
.tile .kunye {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 14px 16px;
  background: linear-gradient(transparent, rgba(10,12,14,.85));
  font-size: .76rem; letter-spacing: .04em; color: var(--ink-soft);
  display: flex; justify-content: space-between; gap: 10px;
  opacity: 0; transform: translateY(8px); transition: opacity .4s, transform .4s;
}
.tile:hover .kunye { opacity: 1; transform: none; }
.tile .kunye .n { color: var(--accent-2); }
.tile.t-tall { grid-column: span 4; aspect-ratio: 3/4.4; }
.tile.t-wide { grid-column: span 8; aspect-ratio: 16/10; }
.tile.t-sq { grid-column: span 4; aspect-ratio: 1/1.18; }
.tile.t-half { grid-column: span 6; aspect-ratio: 4/3.2; }

/* mask reveal */
.mask-reveal { clip-path: inset(0 0 100% 0); opacity: .2; transition: clip-path .9s cubic-bezier(.2,.7,.2,1), opacity .9s; }
.mask-reveal.is-in { clip-path: inset(0 0 0 0); opacity: 1; }

/* ---------- Deneyim (single narrative) ---------- */
.narrative {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 5vw, 72px); align-items: center;
}
.narrative-img { position: relative; border-radius: 6px; overflow: hidden; border: 1px solid var(--line); }
.narrative-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.narrative-img .label {
  position: absolute; bottom: 12px; left: 12px;
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-soft); background: rgba(10,12,14,.6); padding: 6px 12px; border-radius: 999px;
  border: 1px solid var(--line);
}
.narrative-text h2 { font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: 22px; }
.narrative-text .lead { font-size: 1.16rem; color: var(--ink); }
.narrative-text p { color: var(--ink-soft); }
.stat-row { display: flex; flex-wrap: wrap; gap: clamp(20px,4vw,46px); margin-top: 34px; }
.stat .num {
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: clamp(2rem,4vw,2.8rem);
  color: var(--ink); line-height: 1; font-variant-numeric: tabular-nums;
}
.stat .num .gold { color: var(--accent-2); }
.stat .lbl { font-size: .8rem; color: var(--ink-faint); letter-spacing: .04em; margin-top: 8px; }

/* breath pacer */
.breath {
  width: 120px; height: 120px; border-radius: 50%; margin: 8px 0 0;
  border: 1px solid var(--accent);
  display: grid; place-items: center; position: relative;
}
.breath::before {
  content: ""; position: absolute; inset: 18px; border-radius: 50%;
  background: radial-gradient(circle, rgba(127,212,232,.28), transparent 70%);
  animation: breathe 8s ease-in-out infinite;
}
.breath span { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); z-index:1; }
@keyframes breathe { 0%,100% { transform: scale(.7); opacity:.5;} 50% { transform: scale(1.25); opacity:1;} }

/* ---------- Seans (çıkış detayı / pricing) ---------- */
.plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: clamp(16px,2.4vw,26px); }
.plan {
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
  padding: clamp(24px,3vw,34px); display: flex; flex-direction: column;
  transition: transform .26s, border-color .26s, box-shadow .26s;
}
.plan:hover { transform: translateY(-6px); border-color: var(--accent); box-shadow: 0 24px 48px -32px rgba(127,212,232,.5); }
.plan.featured { border-color: var(--accent-2); }
.plan .tag { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.plan.featured .tag { color: var(--accent-2); }
.plan h3 { font-size: 1.5rem; margin-bottom: 6px; }
.plan .price {
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 2.3rem; color: var(--ink);
  margin: 14px 0 2px; font-variant-numeric: tabular-nums;
}
.plan .price small { font-size: .8rem; color: var(--ink-faint); font-weight: 400; letter-spacing: .04em; display: block; font-family:'Inter Tight'; }
.plan ul { list-style: none; padding: 0; margin: 20px 0 0; display: flex; flex-direction: column; gap: 11px; }
.plan li { display: grid; grid-template-columns: 20px 1fr; gap: 11px; font-size: .94rem; color: var(--ink-soft); align-items: start; }
.plan li svg { width: 18px; height: 18px; color: var(--accent); margin-top: 3px; }
.plan li.no { color: var(--ink-faint); }
.plan li.no svg { color: var(--ink-faint); }
.plan .plan-foot { margin-top: auto; padding-top: 22px; }
.plan .btn { width: 100%; justify-content: center; }
.note { font-size: .82rem; color: var(--ink-faint); margin-top: 18px; }

/* depth gauge */
.gauge-wrap { display:flex; align-items:center; gap: 20px; flex-wrap: wrap; margin-top: 30px; }
.gauge { position: relative; width: 110px; height: 110px; flex: 0 0 auto; }
.gauge svg { transform: rotate(-90deg); }
.gauge .track { stroke: var(--line-strong); }
.gauge .fill { stroke: var(--accent); stroke-linecap: round; stroke-dasharray: 283; stroke-dashoffset: 283; transition: stroke-dashoffset 1.4s cubic-bezier(.2,.7,.2,1); }
.gauge.is-in .fill { stroke-dashoffset: var(--off, 70); }
.gauge .gv { position:absolute; inset:0; display:grid; place-items:center; font-family:'Syne'; font-weight:700; font-size:1.3rem; }

/* ---------- Process timeline ---------- */
.timeline { display: flex; flex-direction: column; gap: 0; }
.step { display: grid; grid-template-columns: auto 1fr; gap: clamp(18px,3vw,32px); padding: 26px 0; border-top: 1px solid var(--line); }
.step:last-child { border-bottom: 1px solid var(--line); }
.step .idx {
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.4rem; color: var(--accent-2);
  min-width: 56px; font-variant-numeric: tabular-nums;
}
.step h3 { font-size: 1.25rem; margin-bottom: 6px; }
.step .when { font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.step p { color: var(--ink-soft); margin: 0; }

/* ---------- Feature/icon cards ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: clamp(14px,2vw,22px); }
.feature {
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
  padding: 26px 24px; min-width: 0; transition: transform .24s, border-color .24s;
}
.feature:hover { transform: translateY(-5px); border-color: var(--line-strong); }
.icon-c {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(127,212,232,.1); border: 1px solid var(--line); margin-bottom: 16px;
}
.icon-c svg { width: 24px; height: 24px; color: var(--accent); }
.feature h3 { font-size: 1.12rem; margin-bottom: 8px; }
.feature p { color: var(--ink-soft); font-size: .94rem; margin: 0; }

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: clamp(16px,2.4vw,24px); }
.quote { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 28px 26px; min-width: 0; }
.quote .stars { color: var(--accent-2); letter-spacing: 3px; font-size: .85rem; margin-bottom: 12px; }
.quote p { color: var(--ink); font-size: 1.02rem; }
.quote .who { margin-top: 16px; font-size: .85rem; color: var(--ink-soft); }
.quote .who b { color: var(--ink); font-weight: 600; }
.quote .crit { color: var(--ink-faint); font-style: italic; }

/* ---------- Notes (activity) ---------- */
.notes { display: flex; flex-direction: column; gap: 4px; }
.note-row { display: grid; grid-template-columns: 130px 1fr; gap: 18px; padding: 16px 0; border-top: 1px solid var(--line); align-items: baseline; }
.note-row:last-child { border-bottom: 1px solid var(--line); }
.note-row .d { font-size: .8rem; color: var(--accent); letter-spacing: .04em; font-variant-numeric: tabular-nums; }
.note-row .t { color: var(--ink-soft); }

/* ---------- FAQ ---------- */
.faq { max-width: 880px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 22px 40px 22px 0; position: relative;
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.08rem; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 4px; top: 18px; font-size: 1.5rem; color: var(--accent);
  transition: transform .3s; font-family: 'Inter Tight';
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item > .answer {
  height: 0; overflow: hidden; padding: 0; color: var(--ink-soft);
  transition: height 360ms cubic-bezier(.4,0,.2,1), padding-block-end 360ms cubic-bezier(.4,0,.2,1);
}
.faq-item[open] > .answer { height: auto; padding-block-end: 22px; }
@media (prefers-reduced-motion: reduce) { .faq-item > .answer { transition: none; } }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band h2 { font-size: clamp(2rem,6vw,4rem); max-width: 16ch; margin: 0 auto 18px; }
.cta-band p { color: var(--ink-soft); max-width: 50ch; margin: 0 auto 28px; }

/* ---------- Forms ---------- */
.form-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 18px; }
.field { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.field.full { grid-column: 1 / -1; }
.field label, .field > span { font-size: .82rem; color: var(--ink-soft); letter-spacing: .02em; }
.field input, .field select, .field textarea {
  background: var(--surface); border: 1px solid var(--line); border-radius: 8px;
  color: var(--ink); padding: 13px 14px; font: inherit; font-size: .96rem;
  transition: border-color .2s, background .2s; width: 100%;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); background: var(--surface-2); outline: none; }
.field.kvkk { flex-direction: row; align-items: flex-start; gap: 10px; }
.field input[type="checkbox"] {
  appearance: auto; -webkit-appearance: auto;
  width: 18px; height: 18px; min-width: 18px; min-height: 18px;
  padding: 0; border: 0; margin: 3px 0 0; accent-color: var(--accent);
}
.field.kvkk span { font-size: .85rem; line-height: 1.5; }

/* ---------- Contact cards ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(258px,1fr)); gap: clamp(14px,2vw,20px); }
.cc {
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 22px;
  transition: transform .24s, border-color .24s, box-shadow .24s; min-width: 0;
}
.cc:hover { transform: translateY(-3px); border-color: var(--accent); box-shadow: 0 18px 40px -30px rgba(127,212,232,.5); }
.cc .ico { width: 48px; height: 48px; border-radius: 50%; background: rgba(127,212,232,.1); border: 1px solid var(--line); display: grid; place-items: center; margin-bottom: 14px; }
.cc .ico svg { width: 22px; height: 22px; color: var(--accent); }
.cc h3 { font-size: 1rem; margin-bottom: 4px; }
.cc a, .cc .v { color: var(--ink); font-size: 1.02rem; word-break: break-word; }
.cc a:hover { color: var(--accent); }
.cc .sub { font-size: .8rem; color: var(--ink-faint); margin-top: 6px; }

/* hours */
.hours { display: grid; gap: 2px; }
.hour-row { display: flex; justify-content: space-between; gap: 14px; padding: 10px 0; border-bottom: 1px solid var(--line); font-variant-numeric: tabular-nums; }
.hour-row:last-child { border-bottom: 0; }
.hour-row.today { color: var(--accent); }
.hour-row .day { color: var(--ink-soft); }

/* ---------- 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: 8px;
}
.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 { text-align: left; padding: 13px 16px; border-bottom: 1px solid var(--line); font-size: .92rem; }
table th { color: var(--ink); font-family: 'Syne'; font-weight: 700; background: var(--surface); }
table td { color: var(--ink-soft); }

/* ---------- Doc / legal ---------- */
.doc { max-width: 760px; }
.doc h2 { font-size: 1.5rem; margin: 40px 0 14px; }
.doc h3 { font-size: 1.15rem; margin: 28px 0 10px; }
.doc p, .doc li { color: var(--ink-soft); line-height: 1.75; }
.doc > p { margin: 0 0 1.15rem; }
.doc ul { padding-left: 20px; margin: 0 0 1.15rem; }
.doc li { margin-bottom: 10px; }
.page-hero { padding: clamp(46px,7vw,90px) 0 clamp(20px,3vw,40px); }
.page-hero h1 { font-size: clamp(2.2rem, 6vw, 4rem); }
.page-hero p { color: var(--ink-soft); max-width: 56ch; margin-top: 14px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--surface); border-top: 1px solid var(--line); padding: clamp(48px,6vw,72px) 0 32px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; }
.footer-brand .brand { font-size: 1.3rem; margin-bottom: 14px; }
.footer-brand p { color: var(--ink-soft); font-size: .92rem; max-width: 40ch; }
.footer-col h4 { font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 14px; font-family:'Inter Tight'; font-weight:600; }
.footer-col a, .footer-col .fi { display: block; color: var(--ink-soft); font-size: .92rem; padding: 5px 0; word-break: break-word; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between;
  font-size: .8rem; color: var(--ink-faint);
}
.footer-bottom a { color: var(--ink-faint); }
.footer-bottom a:hover { color: var(--accent); }

/* ---------- Cookie ---------- */
.cookie-banner {
  position: fixed; bottom: 16px; left: 16px; right: 16px; max-width: 520px; margin: 0 auto;
  background: var(--surface-2); border: 1px solid var(--line-strong); border-radius: 14px;
  padding: 20px 22px; z-index: 9999;
  transform: translateY(140%); opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,.7);
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner h3 { font-size: 1rem; margin-bottom: 6px; }
.cookie-banner p { font-size: .86rem; color: var(--ink-soft); margin-bottom: 14px; }
.cookie-banner p a { text-decoration: underline; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-actions button {
  flex: 1 1 auto; min-height: 44px; padding: 10px 16px; border-radius: 8px; cursor: pointer;
  font: inherit; font-size: .88rem; font-weight: 600; border: 1px solid var(--line-strong);
  background: var(--surface); color: var(--ink); transition: background .2s, color .2s, border-color .2s;
}
.cookie-actions button[data-consent="accept"] { background: var(--accent); color: var(--bg); border-color: var(--accent); }
.cookie-actions button[data-consent="accept"]:hover { background: var(--accent-2); border-color: var(--accent-2); color: var(--bg); }
.cookie-actions button:hover { border-color: var(--accent); color: var(--accent); }
.cookie-actions button[data-consent="accept"]:hover { color: var(--bg); }
@media (min-width: 760px) { .cookie-banner { left: 24px; right: auto; max-width: 420px; } }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 700ms cubic-bezier(.2,.7,.2,1), transform 700ms cubic-bezier(.2,.7,.2,1); transition-delay: calc(var(--i, 0) * 80ms); }
.reveal.is-in { opacity: 1; transform: none; }
.float-up { opacity: 0; transform: translateY(34px) rotate(-.4deg); transition: opacity 900ms cubic-bezier(.2,.7,.2,1), transform 900ms cubic-bezier(.2,.7,.2,1); transition-delay: calc(var(--i,0) * 90ms); }
.float-up.is-in { opacity: 1; transform: none; }
html.no-js .reveal, html.no-js .float-up, html.no-js .mask-reveal { opacity: 1 !important; transform: none !important; clip-path: none !important; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .float-up, .mask-reveal { opacity: 1 !important; transform: none !important; clip-path: none !important; transition: none !important; }
  .hero-media img, .caustics, .lightshaft, .breath::before, .scroll-hint .bar { animation: none !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }
  .narrative { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .tile.t-tall, .tile.t-wide, .tile.t-sq, .tile.t-half { grid-column: span 12; }
  .form-wrap { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .hero-meta { display: none; }
  .icon-c { width: 40px; height: 40px; }
}
@media (max-width: 480px) {
  .feature, .plan, .cc, .quote { padding: 20px 18px; }
  .hero h1 { font-size: clamp(2.6rem, 13vw, 3.4rem); }
}

.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: var(--accent) !important;
}
