/* =========================================================
   Mavi Sükûn — Birebir Serbest Dalış Koçluğu
   Palette: bg #EFE9E3 / surface #FFFFFF / ink #241F1C
            accent #7A2E3A / accent-2 #8FA67E
   Type:    Libre Caslon Text (heading) / Mulish (body)
   ========================================================= */

:root {
  --bg:        #EFE9E3;
  --surface:   #FFFFFF;
  --surface-2: #F6F2ED;
  --ink:       #241F1C;
  --ink-soft:  #5A524C;
  --ink-faint: #8C837B;
  --accent:    #7A2E3A;
  --accent-2:  #8FA67E;
  --line:      rgba(36, 31, 28, 0.12);
  --line-strong: rgba(36, 31, 28, 0.22);

  --maxw: 920px;
  --pad: clamp(18px, 6vw, 72px);
  --header-h: 72px;

  --serif: 'Libre Caslon Text', 'Cambria', Georgia, serif;
  --sans: 'Mulish', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --ease: cubic-bezier(.2, .7, .2, 1);
  --ease2: cubic-bezier(.4, 0, .2, 1);

  interpolate-size: allow-keywords;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

html, body {
  overflow-x: hidden;
  max-width: 100vw;
  margin: 0;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.18;
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1.1em; }
a { color: var(--accent); text-decoration: none; transition: color .24s var(--ease2); }
a:hover { color: var(--ink); }

img { max-width: 100%; height: auto; display: block; }

::selection { background: rgba(122, 46, 58, 0.16); }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* word safety */
.break { word-break: break-word; overflow-wrap: anywhere; }

/* ---------- Skip link & focus ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--surface);
  padding: 10px 16px;
  z-index: 2000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}

/* =========================================================
   THEME EFFECT — breathing line on page edges
   4s inhale / 8s exhale pulse
   ========================================================= */
.breath-line {
  position: fixed;
  top: 0; bottom: 0;
  width: 2px;
  z-index: 5;
  pointer-events: none;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(122, 46, 58, 0.0) 8%,
    rgba(122, 46, 58, 0.45) 50%,
    rgba(122, 46, 58, 0.0) 92%,
    transparent 100%);
  transform-origin: center;
  animation: breathePulse 12s var(--ease) infinite;
}
.breath-line.left  { left: max(6px, env(safe-area-inset-left)); }
.breath-line.right { right: max(6px, env(safe-area-inset-right)); animation-delay: -6s; }

@keyframes breathePulse {
  /* inhale 4s (0 -> 33%), hold + exhale 8s (33% -> 100%) */
  0%   { opacity: .18; transform: scaleY(.86); }
  33%  { opacity: .8;  transform: scaleY(1.0); }
  100% { opacity: .18; transform: scaleY(.86); }
}

/* =========================================================
   AMBIENT — rising bubbles & caustic light (decor)
   ========================================================= */
.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.caustic {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(closest-side at 20% 30%, rgba(143,166,126,.18), transparent 60%),
    radial-gradient(closest-side at 78% 20%, rgba(122,46,58,.10), transparent 55%),
    radial-gradient(closest-side at 60% 80%, rgba(143,166,126,.12), transparent 60%);
  filter: blur(6px);
  mix-blend-mode: soft-light;
  opacity: .5;
  animation: causticDrift 16s ease-in-out infinite alternate;
}
@keyframes causticDrift {
  0%   { transform: translate3d(0,0,0) scale(1); }
  100% { transform: translate3d(-2%, -3%, 0) scale(1.06); }
}
.bubbles { position: absolute; inset: 0; }
.bubble {
  position: absolute;
  bottom: -40px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(255,255,255,.85), rgba(143,166,126,.25) 60%, rgba(122,46,58,.08));
  box-shadow: inset 0 0 4px rgba(255,255,255,.6);
  opacity: 0;
  animation: rise var(--dur, 11s) linear infinite;
  animation-delay: var(--delay, 0s);
  will-change: transform, opacity;
}
@keyframes rise {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  8%   { opacity: .55; }
  50%  { transform: translateY(-52vh) translateX(var(--sway, 12px)); }
  90%  { opacity: .4; }
  100% { transform: translateY(-104vh) translateX(0); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .breath-line, .caustic, .bubble { animation: none !important; }
  .caustic { opacity: .3; }
  .bubble { display: none; }
}

/* =========================================================
   HEADER  (fixed, morphs on scroll)
   ========================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1080;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(239, 233, 227, 0.92);
  -webkit-backdrop-filter: saturate(1.2) blur(8px);
  backdrop-filter: saturate(1.2) blur(8px);
  border-bottom: 1px solid transparent;
  transition: background .24s var(--ease2), box-shadow .24s var(--ease2),
              height .24s var(--ease2), border-color .24s var(--ease2);
}
.site-header.is-scrolled {
  background: rgba(239, 233, 227, 0.98);
  height: 60px;
  box-shadow: 0 8px 24px -16px rgba(0,0,0,.28);
  border-bottom-color: var(--line);
}
.header-inner {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: .01em;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
  gap: .45em;
  white-space: nowrap;
}
.brand:hover { color: var(--ink); }
.brand .brand-mark {
  font-size: .7rem;
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 30px);
}
.nav-desktop a {
  position: relative;
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 6px 0;
}
.nav-desktop a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 1.5px;
  background: var(--accent);
  transition: right .28s var(--ease);
}
.nav-desktop a:not(.nav-cta):hover { color: var(--ink); }
.nav-desktop a:not(.nav-cta):hover::after,
.nav-desktop a.is-active:not(.nav-cta)::after { right: 0; }
.nav-desktop a.is-active:not(.nav-cta) { color: var(--accent); }

.nav-cta {
  background: var(--ink);
  color: var(--surface) !important;
  padding: 9px 18px !important;
  border-radius: 999px;
  text-transform: none !important;
  letter-spacing: .01em !important;
  font-size: .82rem !important;
  transition: background .24s var(--ease2), color .24s var(--ease2), transform .24s var(--ease2);
}
.nav-desktop .nav-cta::after { display: none; }
.nav-cta:hover, .nav-cta:focus-visible {
  background: var(--accent);
  color: var(--surface) !important;
  transform: translateY(-2px);
}

/* hamburger */
.nav-toggle {
  display: none;
  position: relative;
  z-index: 1100;
  width: 46px; height: 46px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.45);
  border-radius: 13px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  padding: 0 11px;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  transition: background .24s var(--ease2), border-color .24s var(--ease2), transform .24s var(--ease2);
}
.nav-toggle:hover, .nav-toggle:focus-visible {
  background: var(--surface);
  border-color: var(--ink);
  transform: translateY(-1px);
}
.nav-toggle[aria-expanded="true"] {
  background: var(--surface);
  border-color: var(--ink);
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s ease;
}
.nav-toggle span + span { margin-top: 5px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* drawer */
.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: var(--surface);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform .32s var(--ease);
  display: flex;
  flex-direction: column;
  padding: calc(var(--header-h) + 18px) 28px 28px;
  box-shadow: -20px 0 50px -30px rgba(0,0,0,.4);
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.drawer a:hover, .drawer a.is-active { color: var(--accent); }
.drawer .drawer-cta {
  margin-top: 22px;
  background: var(--ink);
  color: var(--surface);
  text-align: center;
  border-radius: 999px;
  padding: 14px 18px;
  border-bottom: 0;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
}
.drawer .drawer-cta:hover { background: var(--accent); color: var(--surface); }
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: opacity .24s ease, visibility .24s ease;
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }
}

/* =========================================================
   MAIN / sections
   ========================================================= */
main {
  position: relative;
  z-index: 1;
  padding-top: var(--header-h);
}
section { position: relative; }
.section {
  padding-top: clamp(56px, 9vw, 110px);
  padding-bottom: clamp(56px, 9vw, 110px);
}
.section + .section { padding-top: 0; }

.eyebrow {
  font-family: var(--sans);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1.1em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1.5px;
  background: var(--accent);
  display: inline-block;
}

.section-title {
  font-size: clamp(1.7rem, 4.6vw, 2.6rem);
  max-width: 22ch;
}
.lead {
  font-size: clamp(1.05rem, 2.2vw, 1.22rem);
  color: var(--ink-soft);
  max-width: 60ch;
}

/* bordo underline accent */
.u-accent {
  position: relative;
  display: inline-block;
}
.u-accent::after {
  content: "";
  position: absolute;
  left: 0; bottom: -.1em;
  width: 100%; height: 2px;
  background: var(--accent);
  opacity: .85;
}

/* =========================================================
   HERO  (type-with-portrait-inset)
   ========================================================= */
.hero {
  padding-top: clamp(48px, 8vw, 92px);
  padding-bottom: clamp(48px, 8vw, 80px);
  position: relative;
}
.hero-grad {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(120% 90% at 80% -10%, rgba(143,166,126,.22), transparent 55%),
    radial-gradient(90% 80% at 0% 110%, rgba(122,46,58,.10), transparent 55%);
  pointer-events: none;
}
.hero .eyebrow { animation: fadeUp .9s var(--ease) both; }
.hero-head {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 30px);
  flex-wrap: wrap;
}
.hero h1 {
  font-size: clamp(2.4rem, 8vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.018em;
  margin: 0;
  flex: 1 1 320px;
  min-width: 0;
}
.hero h1 .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp .85s var(--ease) forwards;
}
.portrait-inset {
  flex: 0 0 auto;
  width: clamp(96px, 16vw, 150px);
  height: clamp(96px, 16vw, 150px);
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--surface);
  box-shadow: 0 18px 40px -22px rgba(36,31,28,.55);
  background: var(--surface-2);
  animation: portraitIn 1.1s var(--ease) .25s both;
}
.portrait-inset img { width: 100%; height: 100%; object-fit: cover; }
@keyframes portraitIn {
  from { opacity: 0; transform: scale(.82); }
  to   { opacity: 1; transform: scale(1); }
}
.hero-sub {
  margin-top: clamp(20px, 3.5vw, 32px);
  font-size: clamp(1.08rem, 2.4vw, 1.34rem);
  color: var(--ink-soft);
  max-width: 54ch;
  animation: fadeUp .95s var(--ease) .35s both;
}
.hero-actions {
  margin-top: 30px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  animation: fadeUp 1s var(--ease) .5s both;
}
.trust-strip {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  animation: fadeUp 1.05s var(--ease) .65s both;
}
.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--ink-soft);
  letter-spacing: .01em;
}
.trust-strip span svg { width: 17px; height: 17px; color: var(--accent-2); flex: none; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}

/* hero stats (depth gauge feel) */
.hero-stats {
  margin-top: clamp(36px, 6vw, 56px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 3vw, 30px);
  border-top: 1px solid var(--line);
  padding-top: clamp(24px, 4vw, 36px);
}
.hero-stats .stat .num {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  color: var(--accent);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.hero-stats .stat .num small { font-size: .5em; color: var(--ink-faint); }
.hero-stats .stat .lab {
  margin-top: 8px;
  font-size: .82rem;
  color: var(--ink-soft);
  letter-spacing: .02em;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .98rem;
  letter-spacing: .01em;
  border-radius: 999px;
  padding: 14px 26px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background .24s var(--ease2), color .24s var(--ease2),
              transform .24s var(--ease2), box-shadow .24s var(--ease2), border-color .24s;
}
.btn svg { width: 18px; height: 18px; transition: transform .24s var(--ease2); }
.btn-primary {
  background: var(--ink);
  color: var(--surface);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent);
  color: var(--surface);
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -18px rgba(122,46,58,.7);
}
.btn-primary:hover svg { 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(--ink);
  transform: translateY(-2px);
}

/* =========================================================
   Reveal
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: calc(var(--i, 0) * 90ms);
}
.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; }
  .hero h1 .word, .portrait-inset, .hero .eyebrow, .hero-sub, .hero-actions, .trust-strip { animation: none !important; opacity: 1 !important; transform: none !important; }
}

/* =========================================================
   tanis — coach intro (asymmetric split)
   ========================================================= */
.tanis-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(26px, 5vw, 56px);
  align-items: center;
}
.tanis-figure {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 60px -40px rgba(36,31,28,.6);
}
.tanis-figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.tanis-figure:hover img { transform: scale(1.04); }
.tanis-figure figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 18px;
  background: linear-gradient(to top, rgba(36,31,28,.78), transparent);
  color: #fff;
  font-size: .85rem;
}
.tanis-figure figcaption b { font-family: var(--serif); font-weight: 700; font-size: 1.02rem; display: block; }
.coach-creds {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.coach-creds li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  font-size: .95rem;
  color: var(--ink-soft);
}
.coach-creds li svg { width: 20px; height: 20px; color: var(--accent-2); margin-top: 3px; }

@media (max-width: 760px) {
  .tanis-grid { grid-template-columns: 1fr; }
  .tanis-figure { order: -1; max-width: 420px; }
}

/* =========================================================
   yaklasim — philosophy w/ breath pacer
   ========================================================= */
.yaklasim { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.manifesto {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 4.4vw, 2.4rem);
  line-height: 1.34;
  font-style: italic;
  color: var(--ink);
  max-width: 24ch;
  margin: 0 0 .8em;
}
.manifesto em { color: var(--accent); font-style: italic; }
.pacer-wrap {
  display: flex;
  align-items: center;
  gap: clamp(24px, 5vw, 48px);
  flex-wrap: wrap;
  margin-top: clamp(30px, 5vw, 46px);
}
.pacer {
  flex: 0 0 auto;
  width: 160px; height: 160px;
  display: grid;
  place-items: center;
  position: relative;
}
.pacer .ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--accent-2);
  opacity: .35;
  animation: breathe 12s var(--ease) infinite;
}
.pacer .ring.r2 { animation-delay: -2s; opacity: .2; }
.pacer .dot {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--accent-2), var(--accent));
  animation: breatheDot 12s var(--ease) infinite;
}
.pacer .lbl {
  position: absolute;
  bottom: -26px;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
@keyframes breathe {
  0%   { transform: scale(.7);  opacity: .15; }
  33%  { transform: scale(1.0); opacity: .5; }
  100% { transform: scale(.7);  opacity: .15; }
}
@keyframes breatheDot {
  0%   { transform: scale(.78); }
  33%  { transform: scale(1.5); }
  100% { transform: scale(.78); }
}
@media (prefers-reduced-motion: reduce) {
  .pacer .ring, .pacer .dot { animation: none; }
}
.principles {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
  flex: 1 1 340px;
  min-width: 0;
}
.principles li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}
.principles li .ic {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--surface-2);
  color: var(--accent);
  flex: none;
}
.principles li .ic svg { width: 22px; height: 22px; }
.principles li b { font-family: var(--serif); font-weight: 700; font-size: 1.08rem; display: block; margin-bottom: 3px; }
.principles li span { color: var(--ink-soft); font-size: .94rem; }

/* =========================================================
   seans-tipi — session types (editorial stack)
   ========================================================= */
.seans-list {
  display: grid;
  gap: 18px;
  margin-top: clamp(28px, 5vw, 44px);
}
.seans-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: clamp(22px, 4vw, 34px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(16px, 3vw, 28px);
  align-items: center;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  overflow: hidden;
}
.seans-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .4s var(--ease);
}
.seans-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 50px -34px rgba(36,31,28,.5);
  border-color: var(--line-strong);
}
.seans-card:hover::before { transform: scaleY(1); }
.seans-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--surface-2);
  display: grid; place-items: center;
  color: var(--accent);
  flex: none;
}
.seans-icon svg { width: 30px; height: 30px; }
.seans-body { min-width: 0; }
.seans-body h3 { font-size: 1.3rem; margin: 0 0 .3em; }
.seans-body p { margin: 0; color: var(--ink-soft); font-size: .95rem; }
.seans-body .meta {
  margin-top: 10px;
  display: flex; flex-wrap: wrap; gap: 8px 14px;
  font-size: .82rem; color: var(--ink-faint);
}
.seans-body .meta span { display: inline-flex; align-items: center; gap: 6px; }
.seans-body .meta svg { width: 14px; height: 14px; color: var(--accent-2); }
.seans-price {
  text-align: right;
  font-family: var(--serif);
  white-space: nowrap;
}
.seans-price .p {
  font-size: 1.4rem;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.seans-price small { display: block; font-family: var(--sans); font-size: .72rem; color: var(--ink-faint); letter-spacing: .04em; text-transform: uppercase; margin-top: 4px; }

@media (max-width: 680px) {
  .seans-card { grid-template-columns: auto 1fr; }
  .seans-price { grid-column: 1 / -1; text-align: left; border-top: 1px solid var(--line); padding-top: 14px; }
}

/* pricing note */
.pricing-note {
  margin-top: 20px;
  font-size: .82rem;
  color: var(--ink-faint);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.pricing-note svg { width: 16px; height: 16px; color: var(--accent-2); }

/* =========================================================
   Process steps (vertical timeline)
   ========================================================= */
.timeline {
  margin-top: clamp(28px, 5vw, 44px);
  position: relative;
  padding-left: 34px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 11px; top: 6px; bottom: 6px;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent-2), var(--line));
}
.tstep { position: relative; padding-bottom: 30px; }
.tstep:last-child { padding-bottom: 0; }
.tstep::before {
  content: "";
  position: absolute;
  left: -34px; top: 4px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--surface);
  border: 2.5px solid var(--accent);
}
.tstep .when {
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}
.tstep h4 { font-size: 1.15rem; margin: 4px 0 6px; }
.tstep p { margin: 0; color: var(--ink-soft); font-size: .94rem; }

/* =========================================================
   yorum — single testimonial (left strip quote)
   ========================================================= */
.yorum { background: var(--ink); color: #F1ECE6; }
.yorum .eyebrow { color: var(--accent-2); }
.yorum .eyebrow::before { background: var(--accent-2); }
.quote-block {
  border-left: 3px solid var(--accent-2);
  padding-left: clamp(20px, 4vw, 38px);
  max-width: 60ch;
}
.quote-block blockquote {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 3.6vw, 2rem);
  line-height: 1.42;
  font-style: italic;
  margin: 0 0 24px;
  color: #FBF7F1;
}
.quote-block .who {
  display: flex;
  align-items: center;
  gap: 14px;
}
.quote-block .who img {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.25);
}
.quote-block .who b { font-family: var(--serif); font-weight: 700; color: #fff; }
.quote-block .who span { display: block; font-size: .85rem; color: rgba(241,236,230,.7); }

/* =========================================================
   randevu — form
   ========================================================= */
.randevu .form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(24px, 5vw, 44px);
  margin-top: clamp(26px, 4vw, 40px);
  box-shadow: 0 30px 60px -50px rgba(36,31,28,.6);
}
form .grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field { display: block; margin-bottom: 18px; }
.field > span.lbl {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .03em;
  color: var(--ink-soft);
  margin-bottom: 7px;
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-bottom: 2px solid var(--line-strong);
  border-radius: 8px;
  padding: 13px 14px;
  transition: border-color .24s var(--ease2), background .24s;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface);
}
.field.kvkk {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  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: 3px 0 0;
  accent-color: var(--accent);
}
.field.kvkk a { text-decoration: underline; }
form button[type="submit"] {
  margin-top: 6px;
  width: 100%;
}
@media (min-width: 620px) {
  form button[type="submit"] { width: auto; }
}
@media (max-width: 560px) {
  form .grid-2 { grid-template-columns: 1fr; }
}

/* contact list inside randevu */
.contact-rail {
  display: grid;
  gap: 14px;
  margin-top: 8px;
}
.contact-rail a, .contact-rail div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  color: var(--ink-soft);
  font-size: .95rem;
  transition: transform .24s var(--ease2);
}
.contact-rail a:hover { transform: translateX(4px); color: var(--ink); }
.contact-rail svg { width: 20px; height: 20px; color: var(--accent); margin-top: 2px; flex: none; }
.contact-rail b { display: block; color: var(--ink); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 2px; }

/* =========================================================
   Contact page cards
   ========================================================= */
.channel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: clamp(26px, 4vw, 40px);
}
.channel {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  background: var(--surface);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.channel:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px -34px rgba(36,31,28,.5);
  border-color: var(--line-strong);
}
.channel .ic {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--surface-2);
  color: var(--accent);
  margin-bottom: 14px;
}
.channel .ic svg { width: 24px; height: 24px; }
.channel h3 { font-size: 1.05rem; margin: 0 0 4px; }
.channel a, .channel p { font-size: .95rem; color: var(--ink-soft); margin: 0; word-break: break-word; }
.channel a:hover { color: var(--accent); }
.channel small { display: block; margin-top: 6px; font-size: .8rem; color: var(--ink-faint); }

/* hours grid */
.hours-grid {
  display: grid;
  gap: 8px;
  margin-top: clamp(22px, 4vw, 34px);
  max-width: 460px;
}
.hours-grid .row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  font-variant-numeric: tabular-nums;
  font-size: .94rem;
}
.hours-grid .row.today { border-color: var(--accent); background: var(--surface-2); }
.hours-grid .row .d { color: var(--ink); font-weight: 600; }
.hours-grid .row .h { color: var(--ink-soft); }

/* =========================================================
   FAQ
   ========================================================= */
.faq { margin-top: clamp(26px, 4vw, 40px); display: grid; gap: 12px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px clamp(18px, 3vw, 26px);
  font-family: var(--serif);
  font-size: 1.08rem;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev {
  flex: none;
  width: 22px; height: 22px;
  transition: transform .35s var(--ease);
  color: var(--accent);
}
.faq-item[open] summary .chev { transform: rotate(180deg); }
.faq-item > .answer {
  height: 0;
  padding: 0 clamp(18px, 3vw, 26px);
  overflow: hidden;
  color: var(--ink-soft);
  font-size: .96rem;
  transition: height .36s var(--ease2), padding-block-end .36s var(--ease2);
}
.faq-item[open] > .answer {
  height: auto;
  padding-block-end: 22px;
}
@media (prefers-reduced-motion: reduce) {
  .faq-item > .answer { transition: none; }
}

/* =========================================================
   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: 12px 16px;
  border-bottom: 1px solid var(--line);
  font-size: .92rem;
}
table th { font-family: var(--sans); font-weight: 700; color: var(--ink); background: var(--surface-2); }
table td { color: var(--ink-soft); }

/* =========================================================
   Prose (legal pages)
   ========================================================= */
.prose { max-width: 70ch; }
.prose h2 { font-size: clamp(1.4rem, 3.4vw, 1.9rem); margin-top: 1.8em; }
.prose h3 { font-size: 1.15rem; margin-top: 1.4em; }
.prose p, .prose li { color: var(--ink-soft); }
.prose ul, .prose ol { padding-left: 22px; margin: 0 0 1.1em; }
.prose li { margin-bottom: .5em; }
.page-hero {
  padding-top: clamp(40px, 7vw, 72px);
  padding-bottom: clamp(20px, 3vw, 32px);
}
.page-hero h1 { font-size: clamp(2rem, 6vw, 3.2rem); }

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--ink);
  color: rgba(241,236,230,.82);
  position: relative;
  z-index: 1;
  padding-top: clamp(48px, 7vw, 80px);
  padding-bottom: 30px;
  margin-top: clamp(40px, 7vw, 90px);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(28px, 5vw, 56px);
}
.site-footer h4 {
  color: #fff;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-family: var(--sans);
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-brand .fb-name { font-family: var(--serif); font-size: 1.5rem; color: #fff; font-weight: 700; }
.footer-brand p { font-size: .92rem; margin-top: 12px; max-width: 38ch; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.site-footer ul a, .site-footer address a { color: rgba(241,236,230,.82); font-size: .92rem; font-style: normal; }
.site-footer ul a:hover, .site-footer address a:hover { color: var(--accent-2); }
.site-footer address { font-style: normal; display: grid; gap: 10px; font-size: .92rem; line-height: 1.6; }
.footer-bottom {
  margin-top: clamp(34px, 5vw, 56px);
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  color: rgba(241,236,230,.6);
}
.footer-bottom .legal-links { display: flex; flex-wrap: wrap; gap: 8px 18px; }

@media (max-width: 760px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 460px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* notes block */
.notes { display: grid; gap: 14px; margin-top: clamp(22px, 4vw, 34px); }
.note-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
}
.note-item .date {
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}
.note-item p { margin: 0; font-size: .94rem; color: var(--ink-soft); }

/* availability badge */
.avail {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(143,166,126,.16);
  border: 1px solid rgba(143,166,126,.4);
  font-size: .85rem;
  color: var(--ink);
  margin-bottom: 18px;
}
.avail .pulse {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 0 rgba(143,166,126,.6);
  animation: ping 2.4s var(--ease) infinite;
}
@keyframes ping {
  0%   { box-shadow: 0 0 0 0 rgba(143,166,126,.55); }
  70%  { box-shadow: 0 0 0 10px rgba(143,166,126,0); }
  100% { box-shadow: 0 0 0 0 rgba(143,166,126,0); }
}
@media (prefers-reduced-motion: reduce) { .avail .pulse { animation: none; } }

/* 404 */
.err-wrap { text-align: center; padding: clamp(60px, 14vw, 140px) 0; }
.err-wrap .big { font-family: var(--serif); font-size: clamp(4rem, 18vw, 9rem); color: var(--accent); line-height: 1; }

/* thank you */
.thanks-wrap { text-align: center; padding: clamp(48px, 12vw, 120px) 0; max-width: 600px; margin: 0 auto; }
.thanks-wrap .ic {
  width: 84px; height: 84px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: rgba(143,166,126,.18);
  display: grid; place-items: center;
  color: var(--accent-2);
}
.thanks-wrap .ic svg { width: 42px; height: 42px; }

/* divider */
.divider { height: 1px; background: var(--line); margin: clamp(40px,7vw,80px) 0; }

/* small print */
.smallprint { font-size: .82rem; color: var(--ink-faint); }

/* =========================================================
   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: 14px;
  padding: 20px 22px;
  box-shadow: 0 24px 60px -30px rgba(36,31,28,.6);
  transform: translateY(140%);
  opacity: 0;
  transition: transform .28s var(--ease), opacity .24s ease;
  z-index: 9999;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner h4 { font-size: 1.05rem; margin: 0 0 6px; }
.cookie-banner p { font-size: .88rem; color: var(--ink-soft); margin: 0 0 16px; }
.cookie-banner p a { text-decoration: underline; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.cookie-actions button {
  min-height: 46px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .9rem;
  border-radius: 999px;
  cursor: pointer;
  padding: 11px 18px;
  border: 1.5px solid var(--ink);
  background: transparent;
  color: var(--ink);
  transition: background .24s var(--ease2), color .24s var(--ease2), border-color .24s, transform .24s var(--ease2);
}
/* Accept & Reject carry equal visual weight (no dark-pattern bias) */
.cookie-actions button[data-consent="accept"],
.cookie-actions button[data-consent="reject"] { flex: 1 1 0; }
.cookie-actions button[data-consent="accept"] {
  background: var(--ink);
  color: var(--surface);
  border-color: var(--ink);
}
.cookie-actions button[data-consent="reject"] {
  background: var(--surface-2);
  color: var(--ink);
  border-color: var(--ink);
}
.cookie-actions button[data-consent="accept"]:hover,
.cookie-actions button[data-consent="accept"]:focus-visible { background: var(--accent); border-color: var(--accent); color: var(--surface); transform: translateY(-1px); }
.cookie-actions button[data-consent="reject"]:hover,
.cookie-actions button[data-consent="reject"]:focus-visible { background: var(--ink); border-color: var(--ink); color: var(--surface); transform: translateY(-1px); }
/* Settings is a tertiary action, de-emphasised as a text link */
.cookie-actions button[data-consent="settings"] {
  flex: 0 0 auto;
  border-color: transparent;
  background: transparent;
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 11px 12px;
}
.cookie-actions button[data-consent="settings"]:hover,
.cookie-actions button[data-consent="settings"]:focus-visible { color: var(--ink); }
@media (prefers-reduced-motion: reduce) {
  .cookie-actions button { transition: background .24s, color .24s, border-color .24s; }
}

@media (min-width: 768px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}

.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(--surface) !important;
}
