/* ============================================================
   Mavi Apne — Kaş Serbest Dalış İnzivası
   Storytelling longread / derinleşme teması
   ============================================================ */

:root {
  --bg: #0C1A1C;
  --bg-2: #0a1517;
  --surface: #13262A;
  --surface-2: #183136;
  --ink: #EDE7DA;
  --ink-soft: #b8c2bd;
  --ink-faint: #8a9994;
  --accent: #D9A441;
  --accent-soft: #e7c281;
  --accent-2: #5FB6A8;
  --line: rgba(237, 231, 218, 0.14);
  --line-strong: rgba(237, 231, 218, 0.28);
  --header-h: 74px;
  --maxw: 1080px;
  interpolate-size: allow-keywords;
}

*, *::before, *::after { 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: 'Source Sans 3', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* derinleşme: arka plan yüzeyden dibe doğru koyulaşır */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(120% 60% at 50% -10%, rgba(95, 182, 168, 0.10), transparent 55%),
    linear-gradient(180deg, #143036 0%, #0C1A1C 42%, #071214 78%, #050d0f 100%);
  background-attachment: fixed;
}
/* derinleşme katmanı — scroll ile JS opacity arttırır */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, rgba(3, 8, 9, 0.55) 65%, rgba(2, 6, 7, 0.92) 100%);
  opacity: var(--depth, 0);
  transition: opacity 400ms linear;
}

h1, h2, h3, h4 {
  font-family: 'Lora', Georgia, 'Times New Roman', serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 0.5em;
}
h1 { letter-spacing: -0.012em; }

p { margin: 0 0 1.1em; }
a { color: var(--accent-soft); text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-left: clamp(16px, 6vw, 80px);
  padding-right: clamp(16px, 6vw, 80px);
}

.eyebrow {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.74rem;
  color: var(--accent-2);
  margin: 0 0 1em;
  display: inline-block;
}

.gun-etiketi {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.gun-etiketi::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--accent);
}

/* ince altın yatay çizgi */
.altin-cizgi {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong) 18%, var(--accent) 50%, var(--line-strong) 82%, transparent);
  opacity: 0.6;
  margin: clamp(40px, 7vw, 86px) auto;
  max-width: var(--maxw);
}

.skip-link {
  position: absolute;
  left: 12px; top: -60px;
  background: var(--accent);
  color: #06100f;
  padding: 10px 16px;
  border-radius: 8px;
  z-index: 2000;
  transition: top 180ms ease;
  font-weight: 600;
}
.skip-link:focus { top: 12px; }

: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);
  display: flex;
  align-items: center;
  background: rgba(12, 26, 28, 0.92);
  border-bottom: 1px solid transparent;
  transition: background 240ms ease, height 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}
.site-header.scrolled {
  background: rgba(9, 19, 21, 0.98);
  box-shadow: 0 8px 24px -16px rgba(0, 0, 0, 0.6);
  border-bottom-color: var(--line);
  height: calc(var(--header-h) - 10px);
}
.header-inner {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-left: clamp(16px, 6vw, 80px);
  padding-right: clamp(16px, 6vw, 80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Lora', serif;
  font-weight: 600;
  font-size: 1.12rem;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.brand .brand-mark { color: var(--accent-2); flex: 0 0 auto; }
.brand b { color: var(--accent); font-weight: 600; }

.nav-desktop { display: none; }
@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2vw, 30px);
  }
  .nav-desktop a {
    position: relative;
    color: var(--ink-soft);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 6px 0;
    transition: color 200ms ease;
  }
  .nav-desktop a::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 2px;
    background: var(--accent);
    transition: width 220ms cubic-bezier(.2,.7,.2,1);
  }
  .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-desktop .nav-cta::after { display: none; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 200ms cubic-bezier(.2,.7,.2,1), background 220ms ease, color 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.btn-primary {
  background: var(--accent);
  color: #06100f;
  box-shadow: 0 10px 28px -14px rgba(217, 164, 65, 0.8);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent-soft);
  color: #06100f;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px -14px rgba(217, 164, 65, 0.7);
}
.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-2);
  transform: translateY(-2px);
}
.nav-cta {
  padding: 10px 20px;
  font-size: 0.92rem;
}
.nav-desktop .nav-cta { background: var(--accent); color: #06100f; }
.nav-desktop .nav-cta:hover { background: var(--accent-soft); color: #06100f; }

/* Hamburger */
.nav-toggle {
  position: relative;
  z-index: 1100;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  padding: 11px;
  background: rgba(95, 182, 168, 0.10);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  cursor: pointer;
  transition: background 200ms ease, border-color 200ms ease, transform 180ms cubic-bezier(.2,.7,.2,1);
}
.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(95, 182, 168, 0.18);
  border-color: var(--accent-2);
}
.nav-toggle:active { transform: scale(0.94); }
.nav-toggle[aria-expanded="true"] {
  background: rgba(217, 164, 65, 0.16);
  border-color: var(--accent);
}
.nav-toggle span {
  display: block;
  height: 2.5px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 200ms ease, background 200ms ease;
}
@media (prefers-reduced-motion: reduce) {
  .nav-toggle, .nav-toggle span { transition: none; }
}
.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-toggle { display: none; } }

/* Drawer */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 240ms ease, visibility 240ms ease;
  z-index: 1040;
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: #0e2024;
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  z-index: 1050;
  padding: calc(var(--header-h) + 14px) 26px 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  color: var(--ink);
  font-family: 'Lora', serif;
  font-size: 1.18rem;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  transition: color 180ms ease, padding-left 200ms ease;
}
.drawer a:hover, .drawer a.is-active { color: var(--accent); padding-left: 6px; }
.drawer .btn-primary {
  margin-top: 18px;
  color: #06100f;
}
.drawer .btn-primary:hover { color: #06100f; }

/* ============================================================
   HERO — split asymmetric
   ============================================================ */
main { padding-top: var(--header-h); }

.hero {
  position: relative;
  padding-top: clamp(28px, 6vw, 56px);
  padding-bottom: clamp(40px, 7vw, 80px);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}
@media (min-width: 860px) {
  .hero-grid { grid-template-columns: 0.92fr 1.08fr; }
}
.hero-photo-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.8);
}
.hero-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,26,28,0.05) 0%, rgba(7,18,20,0.55) 100%);
  z-index: 1;
}
.hero-photo {
  width: 100%;
  aspect-ratio: 9 / 13;
  object-fit: cover;
  will-change: transform;
  transform: scale(1.06) translateY(var(--py, 0));
  transition: transform 600ms ease-out;
}
.hero-depth-badge {
  position: absolute;
  left: 16px; bottom: 16px;
  z-index: 2;
  background: rgba(7, 18, 20, 0.62);
  backdrop-filter: blur(2px);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-depth-badge .num {
  font-family: 'Lora', serif;
  font-size: 1.7rem;
  color: var(--accent);
  line-height: 1;
}
.hero-depth-badge .lbl { font-size: 0.74rem; color: var(--ink-soft); letter-spacing: 0.04em; }

.hero-copy h1 {
  font-size: clamp(2.3rem, 6vw, 3.7rem);
  margin-bottom: 0.4em;
}
.hero-sub {
  font-size: clamp(1.05rem, 2.2vw, 1.28rem);
  color: var(--ink-soft);
  max-width: 46ch;
  margin-bottom: 1.6em;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 1.8em;
}
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  list-style: none;
  padding: 0; margin: 0;
}
.trust-strip li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.trust-strip svg { color: var(--accent-2); flex: 0 0 auto; }

/* breath pacer */
.breath-pacer {
  position: absolute;
  top: 14%; right: -40px;
  width: 220px; height: 220px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}
.breath-pacer .ring {
  position: absolute;
  inset: 0;
  border: 1px solid var(--accent-2);
  border-radius: 50%;
  opacity: 0.4;
  animation: breathe 9s ease-in-out infinite;
}
@keyframes breathe {
  0%, 100% { transform: scale(0.55); opacity: 0.12; }
  45%, 55% { transform: scale(1); opacity: 0.4; }
}

/* ============================================================
   AMBIENT — bubbles + caustics + god rays (decor)
   ============================================================ */
.ambient {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.caustics {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(closest-side at 20% 30%, rgba(95,182,168,0.10), transparent),
    radial-gradient(closest-side at 70% 20%, rgba(217,164,65,0.06), transparent),
    radial-gradient(closest-side at 50% 60%, rgba(95,182,168,0.08), transparent);
  mix-blend-mode: soft-light;
  opacity: 0.35;
  animation: caustic-shift 16s ease-in-out infinite alternate;
}
@keyframes caustic-shift {
  0% { transform: translate3d(-2%, -1%, 0) scale(1); }
  100% { transform: translate3d(3%, 2%, 0) scale(1.08); }
}
.god-rays {
  position: absolute;
  inset: -10% -20% 0;
  background: repeating-linear-gradient(105deg,
    rgba(200,230,220,0.05) 0px, rgba(200,230,220,0.05) 2px,
    transparent 4px, transparent 60px);
  opacity: 0.5;
  animation: rays-pan 18s linear infinite;
}
@keyframes rays-pan {
  0% { background-position: 0 0; }
  100% { background-position: 300px 0; }
}
.bubbles { position: absolute; inset: 0; }
.bubble {
  position: absolute;
  bottom: -40px;
  width: var(--s, 8px);
  height: var(--s, 8px);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(230,245,240,0.5), rgba(150,200,190,0.08));
  border: 1px solid rgba(220,240,235,0.18);
  animation: rise var(--d, 11s) linear infinite;
  animation-delay: var(--delay, 0s);
  left: var(--x, 50%);
  opacity: 0;
}
@keyframes rise {
  0% { transform: translate(0,0); opacity: 0; }
  8% { opacity: 0.55; }
  50% { transform: translate(14px, -52vh); }
  90% { opacity: 0.4; }
  100% { transform: translate(-10px, -108vh); opacity: 0; }
}

/* ============================================================
   SECTIONS — longread
   ============================================================ */
.section { padding-block: clamp(34px, 6vw, 70px); }
.section-head { margin-bottom: clamp(22px, 3.4vw, 40px); max-width: 60ch; }
.section-head h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); }
.lead { font-size: clamp(1.1rem, 2.2vw, 1.32rem); color: var(--ink-soft); }

.prose p { max-width: 68ch; }
.prose .pullquote {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: clamp(1.5rem, 4vw, 2.3rem);
  line-height: 1.4;
  color: var(--ink);
  border-left: 3px solid var(--accent);
  padding: 6px 0 6px 24px;
  margin: clamp(28px, 5vw, 52px) 0;
  max-width: 22ch;
}
.prose .pullquote span { color: var(--accent); }

.figure {
  margin: clamp(24px, 4vw, 44px) 0;
}
.figure img {
  width: 100%;
  border-radius: 14px;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  box-shadow: 0 30px 60px -38px rgba(0,0,0,0.85);
}
.figure figcaption {
  margin-top: 10px;
  font-size: 0.86rem;
  color: var(--ink-faint);
  font-style: italic;
}

/* gün akışı — vertical longread story */
.gun {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 3vw, 38px);
  align-items: center;
  padding-block: clamp(26px, 4vw, 48px);
}
@media (min-width: 800px) {
  .gun { grid-template-columns: 1.1fr 1fr; }
  .gun:nth-child(even) .gun-media { order: 2; }
}
.gun-media {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}
.gun-media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.2,.7,.2,1);
}
.gun-media:hover img { transform: scale(1.05); }
.gun-body h3 { font-size: clamp(1.4rem, 3vw, 2rem); margin-top: 12px; }
.gun-body .saat {
  list-style: none;
  padding: 0; margin: 14px 0 0;
  display: grid;
  gap: 8px;
}
.gun-body .saat li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  font-size: 0.96rem;
  color: var(--ink-soft);
}
.gun-body .saat b {
  color: var(--accent-2);
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}

/* depth gauge */
.gauge-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: clamp(14px, 2.4vw, 26px);
  margin-top: clamp(20px, 3vw, 34px);
}
.gauge {
  text-align: center;
  padding: 22px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.gauge .stat {
  font-family: 'Lora', serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: var(--accent);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.gauge .cap { font-size: 0.86rem; color: var(--ink-soft); margin-top: 8px; }

/* mekan split */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(22px, 4vw, 44px);
  align-items: stretch;
}
@media (min-width: 820px) { .split { grid-template-columns: 1fr 1fr; } }
.split-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.split-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.split-card .pad { padding: clamp(20px, 3vw, 30px); }
.split-card h3 { font-size: 1.45rem; }

/* feature/icon grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(14px, 2.4vw, 24px);
}
.feature {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px 22px;
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), border-color 240ms ease, box-shadow 240ms ease;
}
.feature:hover {
  transform: translateY(-6px);
  border-color: var(--accent-2);
  box-shadow: 0 24px 44px -28px rgba(95,182,168,0.5);
}
.feature .ico {
  width: 46px; height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(95,182,168,0.12);
  color: var(--accent-2);
  margin-bottom: 14px;
}
.feature h3 { font-size: 1.18rem; }
.feature p { font-size: 0.96rem; color: var(--ink-soft); margin: 0; }

/* kimler — list */
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.checklist li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--ink-soft);
}
.checklist svg { color: var(--accent); margin-top: 3px; }
.checklist b { color: var(--ink); }

/* hero-band contrasting section */
.band {
  background: linear-gradient(160deg, #16323a, #0e2226);
  border-block: 1px solid var(--line);
}

/* ============================================================
   PRICING
   ============================================================ */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(16px, 2.6vw, 26px);
  align-items: stretch;
}
.price-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 24px;
  position: relative;
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), border-color 240ms ease;
}
.price-card:hover { transform: translateY(-6px); border-color: var(--accent); }
.price-card.featured { border-color: var(--accent); box-shadow: 0 30px 60px -40px rgba(217,164,65,0.5); }
.price-card .tag {
  position: absolute; top: -12px; right: 20px;
  background: var(--accent); color: #06100f;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  padding: 5px 12px; border-radius: 999px;
  text-transform: uppercase;
}
.price-card h3 { font-size: 1.4rem; margin-bottom: 4px; }
.price-card .price {
  font-family: 'Lora', serif;
  font-size: 2.2rem;
  color: var(--accent);
  margin: 8px 0 2px;
}
.price-card .price small { font-size: 0.9rem; color: var(--ink-faint); font-family: 'Source Sans 3', sans-serif; }
.price-card .ornk { font-size: 0.78rem; color: var(--ink-faint); margin-bottom: 16px; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 20px; display: grid; gap: 9px; }
.price-card ul li { display: grid; grid-template-columns: 20px 1fr; gap: 10px; font-size: 0.94rem; color: var(--ink-soft); }
.price-card ul li svg { margin-top: 4px; }
.price-card ul li.no { color: var(--ink-faint); }
.price-card ul li.no svg { color: var(--ink-faint); }
.price-card .dahil-deg { color: var(--accent-2); }
.price-card .btn { margin-top: auto; }

/* ============================================================
   TABLE
   ============================================================ */
.table-scroll {
  display: block; width: 100%; max-width: 100%; min-width: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.table-scroll > table { margin: 0 !important; min-width: 480px; width: 100%; border-collapse: collapse; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }
table th, table td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
table th { color: var(--accent-2); font-weight: 600; background: rgba(95,182,168,0.06); }
table td { color: var(--ink-soft); }
table tr:last-child td { border-bottom: 0; }

/* ============================================================
   FORM
   ============================================================ */
.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(22px, 4vw, 40px);
}
.form-grid { display: grid; gap: 18px; }
@media (min-width: 640px) { .form-grid.two { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label, .field > span { font-size: 0.9rem; font-weight: 600; color: var(--ink); }
.field label .opt { font-weight: 400; color: var(--ink-faint); font-size: 0.82rem; }
.field input, .field select, .field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg-2);
  border: 1px solid var(--line-strong);
  border-bottom: 2px solid var(--line-strong);
  border-radius: 10px;
  padding: 12px 14px;
  transition: border-color 200ms ease, background 200ms ease;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent-2);
  background: #0c1c1f;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--ink-soft) 50%), linear-gradient(135deg, var(--ink-soft) 50%, transparent 50%); background-position: calc(100% - 20px) center, calc(100% - 15px) center; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; }

.kvkk { flex-direction: row; align-items: flex-start; gap: 10px; font-weight: 400; }
.kvkk span, .kvkk { font-size: 0.9rem; color: var(--ink-soft); }
.field input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  width: 18px; height: 18px;
  min-width: 18px; min-height: 18px;
  padding: 0; border: 0; margin: 3px 0 0;
  accent-color: var(--accent);
  flex: 0 0 auto;
}
.form-card .btn-primary { width: 100%; margin-top: 6px; }
@media (min-width: 640px) { .form-card .btn-primary { width: auto; } }

/* ============================================================
   CONTACT cards
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(14px, 2.4vw, 22px);
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), border-color 240ms ease, box-shadow 240ms ease;
}
.contact-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-2);
  box-shadow: 0 22px 40px -28px rgba(95,182,168,0.45);
}
.contact-card .ci {
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(217,164,65,0.14);
  color: var(--accent);
  margin-bottom: 14px;
}
.contact-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.contact-card a { color: var(--ink); word-break: break-word; overflow-wrap: anywhere; }
.contact-card a:hover { color: var(--accent); }
.contact-card .sub { font-size: 0.84rem; color: var(--ink-faint); margin: 4px 0 0; }

.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  margin-top: 16px;
}
.hours-grid .day {
  display: flex; justify-content: space-between; gap: 8px;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.hours-grid .day b { color: var(--ink); font-weight: 600; }
.hours-grid .day.today { border-color: var(--accent); }
.hours-grid .day .t { font-variant-numeric: tabular-nums; }

/* team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(16px, 2.6vw, 26px);
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.team-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.team-card .pad { padding: 22px; }
.team-card h3 { font-size: 1.2rem; margin-bottom: 2px; }
.team-card .role { color: var(--accent-2); font-size: 0.86rem; font-weight: 600; margin-bottom: 10px; }
.team-card p { font-size: 0.92rem; color: var(--ink-soft); margin: 0; }

/* testimonials editorial */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(16px, 2.6vw, 26px);
}
.testi {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: 12px;
  padding: 24px;
}
.testi p { font-style: italic; color: var(--ink); }
.testi .who { font-style: normal; font-size: 0.86rem; color: var(--ink-faint); margin: 0; }
.testi .who b { color: var(--accent-2); font-weight: 600; }

/* FAQ */
.faq { display: grid; gap: 12px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.faq-item > summary {
  list-style: none;
  cursor: pointer;
  padding: 18px clamp(18px, 3vw, 26px);
  font-family: 'Lora', serif;
  font-weight: 600;
  font-size: 1.08rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::after {
  content: "+";
  color: var(--accent);
  font-size: 1.5rem;
  transition: transform 300ms ease;
  flex: 0 0 auto;
}
.faq-item[open] > summary::after { transform: rotate(45deg); }
.faq-item > .answer {
  height: 0;
  padding: 0 clamp(18px, 3vw, 26px);
  overflow: hidden;
  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; } }

/* notes / activity block */
.notes { display: grid; gap: 12px; }
.note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.note time { color: var(--accent); font-size: 0.82rem; font-weight: 600; white-space: nowrap; }
.note p { margin: 0; font-size: 0.95rem; color: var(--ink-soft); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  margin-top: clamp(40px, 7vw, 90px);
  padding-block: clamp(40px, 6vw, 64px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(26px, 4vw, 44px);
}
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-grid h4 { font-family: 'Source Sans 3', sans-serif; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--accent-2); }
.footer-grid a { color: var(--ink-soft); display: block; padding: 5px 0; }
.footer-grid a:hover { color: var(--accent); }
.footer-grid p { color: var(--ink-soft); font-size: 0.94rem; }
.footer-bottom {
  margin-top: clamp(28px, 4vw, 44px);
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  justify-content: space-between;
  font-size: 0.84rem;
  color: var(--ink-faint);
}
.footer-bottom a { color: var(--ink-faint); }
.footer-bottom a:hover { color: var(--accent); }
.footer-legal { display: flex; flex-wrap: wrap; gap: 8px 16px; }

/* ============================================================
   COOKIE
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: #0e2024;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 20px 22px;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.9);
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  z-index: 9999;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
@media (min-width: 640px) { .cookie-banner { left: 24px; right: auto; max-width: 420px; } }
.cookie-banner h2 { font-size: 1.1rem; margin-bottom: 6px; }
.cookie-banner p { font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 14px; }
.cookie-banner p a { color: var(--accent); }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-actions button {
  flex: 1 1 auto;
  min-height: 44px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 10px;
  cursor: pointer;
  border: 1px solid var(--line-strong);
  padding: 10px 16px;
  transition: background 200ms ease, color 200ms ease, transform 180ms ease;
}
.cookie-actions [data-consent="accept"] { background: var(--accent); color: #06100f; border-color: var(--accent); }
.cookie-actions [data-consent="accept"]:hover { background: var(--accent-soft); color: #06100f; transform: translateY(-2px); }
/* Reddet, Kabul et ile eşit görsel ağırlıkta — adil onay */
.cookie-actions [data-consent="reject"] { background: var(--surface-2); color: var(--ink); border-color: var(--line-strong); }
.cookie-actions [data-consent="reject"]:hover { background: #21424a; color: var(--ink); border-color: var(--ink-faint); transform: translateY(-2px); }
.cookie-actions [data-consent="settings"] { flex: 1 1 100%; background: transparent; color: var(--ink-soft); border-color: var(--line); }
.cookie-actions [data-consent="settings"]:hover { background: var(--surface); color: var(--ink); }
@media (min-width: 640px) { .cookie-actions [data-consent="settings"] { flex: 1 1 auto; } }
@media (prefers-reduced-motion: reduce) { .cookie-actions button:hover { transform: none; } }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms cubic-bezier(.2,.7,.2,1), transform 800ms cubic-bezier(.2,.7,.2,1);
  transition-delay: calc(var(--i, 0) * 90ms);
}
.reveal.is-in { opacity: 1; transform: none; }
/* float-up sway variant */
.reveal.float-up { transform: translateY(34px) translateX(-6px); }
.reveal.float-up.is-in { transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .ambient, .breath-pacer, .caustics, .god-rays, .bubbles { display: none !important; }
  .hero-photo { transform: none !important; }
}
html.no-js .reveal { opacity: 1; transform: none; }
html.no-js .ambient { display: none; }

/* page hero (inner pages) */
.page-hero {
  padding-top: clamp(32px, 6vw, 60px);
  padding-bottom: clamp(24px, 4vw, 44px);
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
.page-hero p { color: var(--ink-soft); max-width: 56ch; font-size: clamp(1.05rem, 2vw, 1.2rem); }

/* legal doc */
.doc { max-width: 760px; }
.doc h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); margin-top: 1.8em; }
.doc h3 { font-size: 1.2rem; margin-top: 1.4em; }
.doc p, .doc li { color: var(--ink-soft); }
.doc ul { padding-left: 1.2em; }
.doc li { margin-bottom: 0.5em; }

/* sitemap */
.sitemap-list { list-style: none; padding: 0; display: grid; gap: 10px; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); }
.sitemap-list a {
  display: block; padding: 14px 18px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 10px; color: var(--ink);
}
.sitemap-list a:hover { border-color: var(--accent); color: var(--accent); }

/* 404 */
.err { text-align: center; padding-block: clamp(60px, 12vw, 140px); }
.err .big { font-family: 'Lora', serif; font-size: clamp(5rem, 18vw, 11rem); color: var(--accent); line-height: 1; }

.center-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 24px; }

/* long text safety */
.break { word-break: break-word; overflow-wrap: anywhere; }

.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: #06100f !important;
}
