/* ===========================================================
   Derin Ritim — Serbest Dalış Etkinlik Takvimi
   =========================================================== */

:root {
  --bg: #FBF7F0;
  --surface: #FFFFFF;
  --surface-2: #F4EEE3;
  --ink: #1C1A2E;
  --ink-soft: #524F66;
  --ink-faint: #8B889C;
  --accent: #4A2D7A;
  --accent-soft: #6B4AA0;
  --accent-2: #F2A93B;
  --accent-2-deep: #D9912A;
  --line: rgba(28, 26, 46, 0.12);
  --line-strong: rgba(28, 26, 46, 0.22);
  --header-h: 74px;
  --maxw: 1360px;
  --pad: clamp(16px, 4vw, 52px);
  --r: 14px;
  --r-lg: 22px;
  --shadow: 0 18px 44px -28px rgba(28, 26, 46, 0.40);
  --shadow-soft: 0 10px 30px -22px rgba(28, 26, 46, 0.45);
  --ease: cubic-bezier(.2, .7, .2, 1);
  interpolate-size: allow-keywords;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: hidden; max-width: 100vw; }
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: 'Public Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5 {
  font-family: 'Bricolage Grotesque', 'Public Sans', system-ui, sans-serif;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0 0 .5em;
}

p { margin: 0 0 1em; }
a { color: var(--accent); text-decoration: none; transition: color .24s var(--ease); }
a:hover { color: var(--accent-soft); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { margin: 0 0 1em; padding-left: 1.2em; }
strong { font-weight: 600; }
.tnum { font-variant-numeric: tabular-nums; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 12px; top: -100px;
  background: var(--ink);
  color: var(--surface);
  padding: 10px 16px;
  border-radius: 8px;
  z-index: 2000;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; color: var(--surface); }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.section { padding: clamp(56px, 8vw, 110px) 0; position: relative; }
.section--tint { background: var(--surface-2); }
.section--ink { background: var(--ink); color: var(--bg); }
.section--ink h1, .section--ink h2, .section--ink h3 { color: var(--bg); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--accent-2);
}
.section--ink .eyebrow { color: var(--accent-2); }

.lead { font-size: 1.16rem; color: var(--ink-soft); max-width: 62ch; }

.section-head { max-width: 64ch; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); margin-top: .35em; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .22s var(--ease), background .22s var(--ease), color .22s var(--ease), box-shadow .22s var(--ease);
  line-height: 1;
  text-align: center;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--accent); color: #fff; box-shadow: var(--shadow-soft); }
.btn-primary:hover, .btn-primary:focus-visible { background: var(--ink); color: #fff; transform: translateY(-2px); }
.btn-secondary { background: var(--accent-2); color: var(--ink); }
.btn-secondary:hover, .btn-secondary:focus-visible { background: var(--accent-2-deep); color: var(--ink); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover, .btn-ghost:focus-visible { background: var(--ink); color: #fff; transform: translateY(-2px); }
.section--ink .btn-ghost { color: var(--bg); border-color: rgba(251,247,240,.4); }
.section--ink .btn-ghost:hover { background: var(--bg); color: var(--ink); }
.btn .arrow { transition: transform .22s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ===========================================================
   HEADER
   =========================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1080;
  height: var(--header-h);
  background: rgba(251, 247, 240, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid transparent;
  transition: background .24s var(--ease), box-shadow .24s var(--ease), height .24s var(--ease), border-color .24s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(251, 247, 240, 0.98);
  box-shadow: 0 8px 24px -16px rgba(28, 26, 46, 0.30);
  border-bottom-color: var(--line);
  height: 64px;
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: 1.18rem;
  letter-spacing: -.01em;
  color: var(--ink);
}
.brand:hover { color: var(--ink); }
.brand-mark {
  width: 34px; height: 34px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
}
.brand-mark svg { width: 20px; height: 20px; }
.brand small { display: block; font-family: 'Public Sans', sans-serif; font-weight: 400; font-size: .64rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); margin-top: 2px; }

.nav-desktop { display: none; }
.nav-desktop ul { display: flex; gap: clamp(14px, 2vw, 28px); list-style: none; margin: 0; padding: 0; align-items: center; }
.nav-desktop a {
  position: relative;
  font-size: .95rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 6px 2px;
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -2px;
  height: 2px;
  background: var(--accent-2);
  transition: right .28s var(--ease);
}
.nav-desktop a:hover { color: var(--ink); }
.nav-desktop a:hover::after, .nav-desktop a.is-active::after { right: 0; }
.nav-desktop a.is-active { color: var(--accent); }
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta {
  background: var(--accent);
  color: #fff;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
}
.nav-desktop .nav-cta:hover { background: var(--ink); color: #fff; }

@media (min-width: 1024px) {
  .nav-desktop { display: block; }
}

/* hamburger */
.nav-toggle {
  position: relative;
  z-index: 1100;
  flex: none;
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  cursor: pointer;
  transition: background .22s var(--ease), border-color .22s var(--ease);
}
.nav-toggle:hover { background: var(--surface-2); border-color: var(--accent-soft); }
.nav-toggle span {
  display: block;
  position: absolute;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav-toggle span:nth-child(1) { transform: translateY(-6px); }
.nav-toggle span:nth-child(3) { transform: translateY(6px); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg); }

/* hamburger is mobile-only; hidden once the desktop nav appears.
   Placed after the base .nav-toggle rule so it wins on source order. */
@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 .24s var(--ease), visibility .24s var(--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: var(--bg);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.2, .7, .2, 1);
  padding: calc(var(--header-h) + 14px) 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: -20px 0 50px -30px rgba(0,0,0,.5);
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.drawer a:hover, .drawer a.is-active { color: var(--accent); }
.drawer .drawer-cta {
  margin-top: 18px;
  border: none;
  text-align: center;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  padding: 15px;
}
.drawer .drawer-cta:hover { background: var(--ink); color: #fff; }
.drawer-meta { margin-top: auto; padding-top: 20px; font-size: .85rem; color: var(--ink-soft); }
.drawer-meta a { font-size: .9rem; font-weight: 400; border: 0; padding: 4px 0; color: var(--accent); }

main { padding-top: var(--header-h); }
/* keep anchored sections clear of the fixed header on hash navigation */
[id] { scroll-margin-top: calc(var(--header-h) + 18px); }

/* ===========================================================
   HERO — horizontal timeline
   =========================================================== */
.hero {
  position: relative;
  padding: clamp(40px, 6vw, 72px) 0 clamp(40px, 6vw, 64px);
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 85% 0%, rgba(74,45,122,.10), transparent 60%),
    radial-gradient(90% 70% at 5% 100%, rgba(242,169,59,.12), transparent 55%);
}
/* ambient bubbles */
.bubbles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }
.bubble {
  position: absolute;
  bottom: -40px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(255,255,255,.9), rgba(74,45,122,.18));
  opacity: 0;
  animation: rise var(--dur, 11s) linear infinite;
  animation-delay: var(--del, 0s);
}
@keyframes rise {
  0% { transform: translateY(0) translateX(0) scale(.7); opacity: 0; }
  12% { opacity: .55; }
  50% { transform: translateY(-46vh) translateX(var(--wob, 14px)) scale(1); }
  88% { opacity: .35; }
  100% { transform: translateY(-92vh) translateX(0) scale(1.05); opacity: 0; }
}

.hero-inner { position: relative; z-index: 2; }
.hero-top { max-width: 70ch; margin-bottom: clamp(30px, 4vw, 46px); }
.hero h1 {
  font-size: clamp(2.6rem, 7vw, 4.5rem);
  margin: .28em 0 .35em;
  letter-spacing: -.02em;
}
.hero h1 .em { color: var(--accent); }
.hero-sub { font-size: clamp(1.05rem, 2vw, 1.32rem); color: var(--ink-soft); max-width: 54ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 26px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .85rem; font-weight: 600;
  padding: 8px 15px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink-soft);
}
.hero-badge svg { width: 16px; height: 16px; color: var(--accent); }

/* month tabs */
.month-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 6px;
  margin-bottom: 18px;
  scrollbar-width: thin;
}
.month-tab {
  flex: none;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: .92rem;
  padding: 9px 17px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink-soft);
  cursor: default;
}
.month-tab.is-current { background: var(--accent); color: #fff; border-color: var(--accent); }

/* timeline rail (full width) */
.timeline-shell { position: relative; z-index: 2; }
.timeline {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 14px 0 26px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) transparent;
}
.timeline::-webkit-scrollbar { height: 8px; }
.timeline::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 99px; }
.timeline::-webkit-scrollbar-track { background: var(--line); border-radius: 99px; }

.tl-card {
  scroll-snap-align: start;
  flex: 0 0 clamp(248px, 78vw, 290px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 20px 20px 22px;
  position: relative;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tl-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: var(--accent-soft); }
.tl-card.is-today { border-color: var(--accent-2); box-shadow: 0 0 0 2px var(--accent-2) inset; }
.tl-date { display: flex; align-items: baseline; gap: 9px; }
.tl-day {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: 3.2rem;
  line-height: .9;
  letter-spacing: -.03em;
  color: var(--ink);
}
.tl-mon { display: flex; flex-direction: column; font-size: .82rem; font-weight: 600; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .1em; }
.tl-mon span:last-child { color: var(--ink-faint); font-weight: 400; letter-spacing: .04em; }
.tl-tag {
  align-self: flex-start;
  font-size: .72rem; font-weight: 600;
  padding: 4px 11px;
  border-radius: 999px;
  letter-spacing: .03em;
}
.tag-atolye { background: rgba(74,45,122,.12); color: var(--accent); }
.tag-havuz { background: rgba(54,128,170,.14); color: #2c6a8c; }
.tag-kamp { background: rgba(242,169,59,.20); color: var(--accent-2-deep); }
.tl-card h3 { font-size: 1.18rem; margin: 2px 0 0; }
.tl-meta { font-size: .88rem; color: var(--ink-soft); margin: 0; }
.tl-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 8px; padding-top: 6px; }
.tl-price { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 600; color: var(--accent); font-size: 1.05rem; }
.tl-seat { font-size: .78rem; color: var(--ink-faint); }
/* pulse line on each card */
.tl-pulse { height: 22px; margin: 2px -2px -4px; }
.tl-pulse svg { width: 100%; height: 100%; overflow: visible; }
.tl-pulse path {
  fill: none;
  stroke: var(--accent-2);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 5 160;
  stroke-dashoffset: 0;
  animation: pulseRun var(--pulse, 3.2s) linear infinite;
}
@keyframes pulseRun { to { stroke-dashoffset: -330; } }
.tl-hint { font-size: .82rem; color: var(--ink-faint); display: inline-flex; align-items: center; gap: 8px; }
.tl-hint svg { width: 16px; height: 16px; }

/* ===========================================================
   STATS / depth gauge
   =========================================================== */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.stat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px 20px;
}
.stat-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: clamp(2.2rem, 5vw, 3rem);
  line-height: 1;
  color: var(--accent);
  letter-spacing: -.02em;
}
.stat-num .suf { color: var(--accent-2-deep); }
.stat-label { font-size: .9rem; color: var(--ink-soft); margin-top: 8px; }

/* ===========================================================
   WORKSHOP TYPES (atolyeler)
   =========================================================== */
.type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.type-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  transition: transform .26s var(--ease), box-shadow .26s var(--ease), border-color .26s var(--ease);
}
.type-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--accent-soft); }
.type-icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--surface-2);
  color: var(--accent);
  margin-bottom: 16px;
}
.type-icon svg { width: 28px; height: 28px; }
.type-card h3 { font-size: 1.32rem; }
.type-card p { color: var(--ink-soft); font-size: .98rem; margin-bottom: .6em; }
.type-card .type-meta {
  display: flex; flex-wrap: wrap; gap: 8px 16px;
  font-size: .85rem; color: var(--ink-faint);
  padding-top: 12px; margin-top: 6px;
  border-top: 1px dashed var(--line);
}
.type-card .type-meta b { color: var(--accent); font-weight: 600; }

/* ===========================================================
   LOCATIONS (yer)
   =========================================================== */
.loc-list { display: flex; flex-direction: column; gap: 0; }
.loc-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px 22px;
  align-items: center;
  padding: 26px 0;
  border-top: 1px solid var(--line);
}
.loc-row:last-child { border-bottom: 1px solid var(--line); }
.loc-no {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: 1.7rem;
  color: var(--accent-2-deep);
  min-width: 0;
}
.loc-body h3 { font-size: 1.28rem; margin-bottom: .25em; }
.loc-body p { margin: 0; color: var(--ink-soft); font-size: .96rem; }
.loc-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 10px; }
.loc-tags span { font-size: .78rem; padding: 4px 11px; border-radius: 999px; background: var(--surface-2); color: var(--ink-soft); }
.loc-aside { text-align: right; min-width: 0; }
.loc-aside .lk { font-size: .85rem; color: var(--ink-faint); }
.loc-aside .lv { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 600; color: var(--ink); }
@media (max-width: 700px) {
  .loc-row { grid-template-columns: auto 1fr; }
  .loc-aside { grid-column: 1 / -1; text-align: left; padding-left: calc(1.7rem + 22px); }
}

/* ===========================================================
   PRICING
   =========================================================== */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 18px;
  align-items: stretch;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  transition: transform .26s var(--ease), box-shadow .26s var(--ease);
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.price-card.is-featured { border-color: var(--accent); box-shadow: 0 0 0 2px var(--accent) inset; }
.price-flag { display: inline-block; align-self: flex-start; font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--accent-2-deep); margin-bottom: 10px; }
.price-card h3 { font-size: 1.4rem; }
.price-amt { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 600; font-size: 2.6rem; color: var(--accent); letter-spacing: -.02em; margin: 6px 0 2px; }
.price-amt small { font-size: .9rem; color: var(--ink-faint); font-weight: 400; }
.price-note { font-size: .82rem; color: var(--ink-faint); margin-bottom: 16px; }
.price-list { list-style: none; padding: 0; margin: 0 0 22px; display: flex; flex-direction: column; gap: 10px; }
.price-list li { display: flex; gap: 10px; font-size: .94rem; color: var(--ink-soft); align-items: flex-start; }
.price-list li svg { width: 18px; height: 18px; flex: none; margin-top: 2px; }
.price-list li.no { color: var(--ink-faint); }
.price-list li.yes svg { color: var(--accent); }
.price-list li.no svg { color: var(--ink-faint); }
.price-card .btn { margin-top: auto; justify-content: center; }

/* ===========================================================
   PROCESS / steps timeline
   =========================================================== */
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  padding: 0 0 36px;
  position: relative;
}
.step:last-child { padding-bottom: 0; }
.step-rail { display: flex; flex-direction: column; align-items: center; }
.step-dot {
  width: 50px; height: 50px;
  flex: none;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
}
.step-line { width: 2px; flex: 1; background: var(--line-strong); margin-top: 6px; min-height: 24px; }
.step:last-child .step-line { display: none; }
.step-body { padding-top: 4px; }
.step-body h3 { font-size: 1.24rem; margin-bottom: .3em; }
.step-body p { color: var(--ink-soft); margin: 0; }
.step-when { font-size: .8rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--accent-2-deep); display: block; margin-bottom: 6px; }

/* ===========================================================
   BREATHE pacer (apnea)
   =========================================================== */
.breathe-band { background: var(--ink); color: var(--bg); overflow: hidden; }
.breathe-band .eyebrow { color: var(--accent-2); }
.breathe-band h2 { color: var(--bg); }
.breathe-wrap { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
.breathe-stage { display: grid; place-items: center; min-height: 260px; position: relative; }
.breathe-core {
  width: 130px; height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, var(--accent-2), var(--accent-2-deep));
  display: grid; place-items: center;
  color: var(--ink);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  animation: breathe 11s ease-in-out infinite;
}
.breathe-core::before, .breathe-core::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(242,169,59,.45);
  animation: breatheRing 11s ease-in-out infinite;
}
.breathe-core::after { animation-delay: .6s; opacity: .5; }
@keyframes breathe {
  0%, 100% { transform: scale(1); }
  18%, 36% { transform: scale(1.55); }
  64%, 82% { transform: scale(1.05); }
}
@keyframes breatheRing {
  0%, 100% { transform: scale(1); opacity: .15; }
  18%, 36% { transform: scale(1.9); opacity: .5; }
  64%, 82% { transform: scale(1.25); opacity: .25; }
}
@media (min-width: 800px) { .breathe-wrap { grid-template-columns: 320px 1fr; } }

/* ===========================================================
   TESTIMONIALS (editorial grid)
   =========================================================== */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.quote {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
}
.quote .qmark { font-family: 'Bricolage Grotesque', sans-serif; font-size: 3rem; line-height: .5; color: var(--accent-2); height: 26px; }
.quote p { color: var(--ink); font-size: 1.02rem; }
.quote footer { margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line); font-size: .88rem; }
.quote footer b { display: block; color: var(--ink); font-weight: 600; }
.quote footer span { color: var(--ink-faint); }

/* ===========================================================
   FORM
   =========================================================== */
.form-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media (min-width: 900px) { .form-wrap { grid-template-columns: 1fr 1.05fr; align-items: start; } }
.form-aside h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.form-aside .lead { margin-bottom: 22px; }
.form-aside .mini { display: flex; gap: 13px; align-items: flex-start; margin-bottom: 16px; }
.form-aside .mini svg { width: 22px; height: 22px; color: var(--accent); flex: none; margin-top: 3px; }
.form-aside .mini b { display: block; }
.form-aside .mini span { font-size: .92rem; color: var(--ink-soft); }

.event-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(22px, 4vw, 36px);
  box-shadow: var(--shadow-soft);
}
.field { margin-bottom: 18px; }
.field label, .field > span.lab { display: block; font-size: .9rem; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 13px 15px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(74,45,122,.14);
}
.field-row { display: grid; grid-template-columns: 1fr; gap: 0; }
@media (min-width: 560px) { .field-row { grid-template-columns: 1fr 1fr; gap: 18px; } }
.field.kvkk { display: grid; grid-template-columns: auto 1fr; gap: 11px; align-items: start; }
.field.kvkk label { margin: 0; font-weight: 400; font-size: .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: 2px 0 0;
  accent-color: var(--accent);
}
.form-note { font-size: .82rem; color: var(--ink-faint); margin-top: 12px; }
.event-form button[type="submit"] { width: 100%; justify-content: center; margin-top: 6px; }
.field label .opt { font-weight: 400; color: var(--ink-faint); font-size: .82em; }

/* ===========================================================
   CTA BAND (landing page, replaces inline form)
   =========================================================== */
.cta-band { text-align: center; max-width: 760px; margin-inline: auto; }
.cta-band .eyebrow { justify-content: center; }
.cta-band h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-top: .3em; }
.cta-band .lead { margin: 0 auto 28px; }
.cta-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  text-align: left;
  margin: 0 auto 30px;
}
.cta-points .mini {
  display: flex; gap: 13px; align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 18px 20px;
}
.cta-points .mini svg { width: 22px; height: 22px; color: var(--accent); flex: none; margin-top: 3px; }
.cta-points .mini b { display: block; }
.cta-points .mini span { font-size: .92rem; color: var(--ink-soft); }

/* ===========================================================
   FAQ
   =========================================================== */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--surface);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px clamp(18px, 3vw, 26px);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .ic {
  flex: none;
  width: 26px; height: 26px;
  position: relative;
  transition: transform .3s var(--ease);
}
.faq-item summary .ic::before, .faq-item summary .ic::after {
  content: ""; position: absolute; background: var(--accent);
  border-radius: 2px;
  top: 50%; left: 50%;
}
.faq-item summary .ic::before { width: 14px; height: 2px; transform: translate(-50%, -50%); }
.faq-item summary .ic::after { width: 2px; height: 14px; transform: translate(-50%, -50%); transition: transform .3s var(--ease); }
.faq-item[open] summary .ic::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-item > .answer {
  height: 0;
  padding: 0 clamp(18px, 3vw, 26px);
  overflow: hidden;
  transition: height .36s cubic-bezier(.4,0,.2,1), padding-block-end .36s cubic-bezier(.4,0,.2,1);
}
.faq-item[open] > .answer { height: auto; padding-block-end: 22px; }
.faq-item > .answer p { color: var(--ink-soft); margin: 0; }
@media (prefers-reduced-motion: reduce) {
  .faq-item > .answer { transition: none; }
}

/* ===========================================================
   CONTACT cards
   =========================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
  gap: 16px;
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 24px;
  transition: transform .24s var(--ease), box-shadow .24s var(--ease), border-color .24s var(--ease);
}
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--accent-soft); }
.contact-card .cc-ic {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--surface-2);
  color: var(--accent);
  margin-bottom: 14px;
}
.contact-card .cc-ic svg { width: 24px; height: 24px; }
.contact-card h3 { font-size: 1.1rem; margin-bottom: .2em; }
.contact-card a, .contact-card p { color: var(--ink); font-size: 1.02rem; margin: 0 0 4px; word-break: break-word; overflow-wrap: anywhere; }
.contact-card a { font-weight: 600; color: var(--accent); }
.contact-card .cc-sub { font-size: .85rem; color: var(--ink-faint); }

.hours-grid { display: grid; gap: 8px; }
.hours-row {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  font-variant-numeric: tabular-nums;
}
.hours-row.is-today { border-color: var(--accent-2); background: rgba(242,169,59,.08); }
.hours-row .d { font-weight: 600; }
.hours-row .h { 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: 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: 13px 16px; border-bottom: 1px solid var(--line); font-size: .94rem; }
table th { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 600; background: var(--surface-2); color: var(--ink); }
table tr:last-child td { border-bottom: none; }

/* ===========================================================
   ARTICLE / legal pages
   =========================================================== */
.page-hero {
  padding: clamp(40px, 6vw, 72px) 0 clamp(24px, 4vw, 40px);
  background:
    radial-gradient(110% 90% at 90% 0%, rgba(74,45,122,.10), transparent 58%);
}
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin-top: .3em; }
.page-hero p { color: var(--ink-soft); max-width: 60ch; }
.doc { max-width: 760px; margin-inline: auto; }
.doc h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-top: 1.6em; }
.doc h3 { font-size: 1.2rem; margin-top: 1.2em; }
.doc p, .doc li { color: var(--ink-soft); line-height: 1.75; }
.doc ul { padding-left: 1.3em; }
.doc .meta-line { font-size: .88rem; color: var(--ink-faint); margin-bottom: 2em; }

/* news / notes */
.notes { display: grid; gap: 14px; }
.note {
  display: grid; grid-template-columns: auto 1fr; gap: 16px;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  align-items: start;
}
.note .nd {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: .82rem;
  color: var(--accent-2-deep);
  white-space: nowrap;
}
.note h3 { font-size: 1.05rem; margin: 0 0 .2em; }
.note p { margin: 0; font-size: .92rem; color: var(--ink-soft); }

/* team */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.team-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px;
}
.team-photo {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  display: grid; place-items: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: 14px;
}
.team-card h3 { font-size: 1.2rem; margin-bottom: .15em; }
.team-card .role { font-size: .85rem; font-weight: 600; color: var(--accent); letter-spacing: .03em; margin-bottom: .7em; }
.team-card p { font-size: .94rem; color: var(--ink-soft); margin: 0; }

/* sitemap */
.smap { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 26px; }
.smap h3 { font-size: 1.1rem; margin-bottom: .6em; }
.smap ul { list-style: none; padding: 0; }
.smap li { margin-bottom: 8px; }

/* big 404 */
.err-wrap { text-align: center; padding: clamp(60px, 12vw, 130px) 0; }
.err-code { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 600; font-size: clamp(5rem, 18vw, 11rem); line-height: .9; color: var(--accent); letter-spacing: -.04em; }
.err-wrap p { color: var(--ink-soft); max-width: 46ch; margin-inline: auto; }

/* ===========================================================
   FOOTER
   =========================================================== */
.site-footer { background: var(--ink); color: var(--bg); padding: clamp(48px, 7vw, 80px) 0 30px; }
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(251,247,240,.14);
}
@media (min-width: 760px) { .footer-top { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-brand .brand { color: var(--bg); margin-bottom: 14px; }
.footer-brand .brand small { color: rgba(251,247,240,.6); }
.footer-brand p { color: rgba(251,247,240,.72); font-size: .94rem; max-width: 40ch; }
.footer-col h4 { color: var(--bg); font-size: 1rem; margin-bottom: 14px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 9px; }
.footer-col a, .footer-col p { color: rgba(251,247,240,.72); font-size: .93rem; }
.footer-col a:hover { color: var(--accent-2); }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 12px 24px;
  justify-content: space-between;
  padding-top: 24px;
  font-size: .82rem;
  color: rgba(251,247,240,.55);
}
.footer-bottom a { color: rgba(251,247,240,.7); }
.footer-bottom .legal { display: flex; flex-wrap: wrap; gap: 8px 18px; }

/* ===========================================================
   COOKIE BANNER
   =========================================================== */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  padding: 22px 22px 20px;
  box-shadow: 0 24px 60px -22px rgba(28,26,46,.5);
  transform: translateY(140%);
  opacity: 0;
  transition: transform .28s cubic-bezier(.2,.7,.2,1), opacity .24s;
  z-index: 9999;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
@media (min-width: 768px) { .cookie-banner { left: 24px; right: auto; max-width: 420px; } }
.cookie-banner h3 { font-size: 1.1rem; margin-bottom: .4em; }
.cookie-banner p { font-size: .89rem; color: var(--ink-soft); margin-bottom: 16px; }
.cookie-banner p a { font-weight: 600; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-actions button {
  flex: 1 1 auto;
  min-height: 44px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: .92rem;
  border-radius: 999px;
  cursor: pointer;
  border: 1.5px solid var(--line-strong);
  padding: 10px 16px;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.cookie-actions [data-consent="accept"] { background: var(--accent); color: #fff; border-color: var(--accent); }
.cookie-actions [data-consent="accept"]:hover { background: var(--ink); color: #fff; }
.cookie-actions [data-consent="reject"] { background: var(--surface-2); color: var(--ink); border-color: var(--ink); }
.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); border-style: dashed; }
.cookie-actions [data-consent="settings"]:hover { background: var(--surface-2); color: var(--ink); }

/* ===========================================================
   REVEAL
   =========================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.reveal.is-in { opacity: 1; transform: none; }
html.no-js .reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .bubble, .breathe-core, .breathe-core::before, .breathe-core::after, .tl-pulse path { animation: none !important; }
}

/* ===========================================================
   UTIL
   =========================================================== */
.grid-2 { display: grid; gap: 26px; }
@media (min-width: 900px) { .grid-2 { grid-template-columns: 1.1fr 1fr; align-items: center; } }
.mb-0 { margin-bottom: 0; }
.center { text-align: center; }
.mt-cta { margin-top: 30px; }
.long { word-break: break-word; overflow-wrap: anywhere; }

@media (max-width: 640px) {
  body { font-size: 16px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .type-card, .price-card, .quote { padding: 22px 20px; }
  .contact-card { padding: 20px; }
}
@media (max-width: 380px) {
  .tl-day { font-size: 2.6rem; }
}

.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;
}
