/* ============================================================
   Mor Nefes — Lavanta Aromaterapi & Masaj Stüdyosu
   Palette: bg #EEF2F1 · surface #FFFFFF · ink #22302E
            accent #8A7CB6 · accent-2 #4FA3A0
   Display: Fraunces (editorial serif, botanical italics)
   UI/Body: Corbel / Segoe UI
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400;1,9..144,500;1,9..144,600&display=swap');

:root {
  --bg: #EEF2F1;
  --surface: #FFFFFF;
  --surface-2: #F5F7F6;
  --surface-3: #E7ECEA;
  --ink: #22302E;
  --ink-soft: #4A5654;
  --ink-faint: #75817F;
  --accent: #8A7CB6;
  --accent-deep: #6F5FA3;
  --accent-2: #4FA3A0;
  --accent-2-deep: #3B8582;
  --line: rgba(34, 48, 46, 0.12);
  --line-strong: rgba(34, 48, 46, 0.22);
  --honey: #D9B65B;
  --honey-deep: #9E7B2B;
  --font-display: "Fraunces", Georgia, "Cambria", "Times New Roman", serif;
  --header-h: 74px;
  --container: 1180px;
  --pad: clamp(16px, 4vw, 56px);
  --r-sm: 8px;
  --r: 14px;
  --r-lg: 22px;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --ease-io: cubic-bezier(.4, 0, .2, 1);
  --shadow-sm: 0 4px 16px -10px rgba(34, 48, 46, .35);
  --shadow: 0 18px 46px -26px rgba(34, 48, 46, .40);
  --shadow-accent: 0 22px 50px -28px rgba(111, 95, 163, .55);
  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: "Segoe UI", Tahoma, system-ui, sans-serif;
  font-weight: 300;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.68;
  font-size: clamp(15.5px, 1.05vw, 17px);
  letter-spacing: 0.002em;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5,
.display, .eyebrow, .btn, .nav a, .stat__num {
  font-family: Corbel, "Segoe UI", "Gill Sans", Candara, sans-serif;
}

h1, h2, h3, h4 {
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.12;
  color: var(--ink);
  margin: 0 0 .5em;
  overflow-wrap: break-word;
  word-break: keep-all;
}

h2 { font-size: clamp(1.6rem, 3.6vw, 2.55rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { margin: 0 0 1rem; overflow-wrap: break-word; }
a { color: var(--accent-deep); text-decoration: none; transition: color .24s var(--ease-io); }
img { max-width: 100%; height: auto; display: block; }

/* long strings */
.brk { word-break: break-word; overflow-wrap: anywhere; }

/* ---------- layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}
.section { padding-block: clamp(56px, 8vw, 116px); position: relative; }
.section--tint { background: var(--surface-2); }
.section--band {
  background:
    radial-gradient(120% 140% at 80% 10%, rgba(138, 124, 182, .28), transparent 55%),
    linear-gradient(160deg, #2b2542, #22302e 70%);
  color: #EFEBF6;
}
.section--band h2, .section--band h3 { color: #fff; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin: 0 0 1rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: currentColor;
  opacity: .6;
}
.section--band .eyebrow { color: #C9BFEA; }

.lead { font-size: clamp(1.02rem, 1.5vw, 1.22rem); color: var(--ink-soft); max-width: 62ch; }
.section-head { max-width: 66ch; margin-bottom: clamp(28px, 4vw, 52px); }
.section-head--center { margin-inline: auto; text-align: center; }

/* ---------- buttons ---------- */
.btn {
  --_pad: 14px 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  padding: var(--_pad);
  font-size: .96rem;
  font-weight: 600;
  letter-spacing: .02em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .24s var(--ease), background .24s var(--ease-io), color .24s var(--ease-io), box-shadow .24s var(--ease-io), border-color .24s var(--ease-io);
  text-align: center;
  line-height: 1.1;
}
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.btn__arrow { transition: transform .3s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-accent);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent-deep);
  color: #fff;
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.btn-2 {
  background: var(--accent-2);
  color: #fff;
}
.btn-2:hover, .btn-2:focus-visible { background: var(--accent-2-deep); color: #fff; transform: translateY(-2px); }
.section--band .btn-ghost { color: #EFEBF6; border-color: rgba(255,255,255,.35); }
.section--band .btn-ghost:hover { background: rgba(255,255,255,.12); color: #fff; }

/* ---------- skip link ---------- */
.skip-link {
  position: absolute;
  left: 12px; top: -60px;
  z-index: 2000;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--r-sm);
  transition: top .2s var(--ease-io);
}
.skip-link:focus { top: 12px; }

/* ============================================================
   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(238, 242, 241, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: height .24s var(--ease-io), background .24s var(--ease-io), box-shadow .24s var(--ease-io), border-color .24s var(--ease-io);
}
.site-header.is-scrolled {
  height: 62px;
  background: rgba(238, 242, 241, 0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,.18);
  border-bottom-color: var(--line);
}
.header-inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: Corbel, "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: 1.12rem;
  letter-spacing: .04em;
  color: var(--ink);
}
.brand:hover { color: var(--ink); }
.brand__mark { width: 30px; height: 30px; flex: none; color: var(--accent-deep); }
.brand__mark svg { width: 100%; height: 100%; }
.brand small {
  display: block;
  font-family: "Segoe UI", sans-serif;
  font-weight: 300;
  font-size: .58rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 1px;
}

.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;
    font-family: Corbel, "Segoe UI", sans-serif;
    font-weight: 600;
    font-size: .93rem;
    letter-spacing: .03em;
    color: var(--ink-soft);
    padding: 6px 2px;
  }
  .nav-desktop a::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .28s var(--ease);
  }
  .nav-desktop a:hover { color: var(--ink); }
  .nav-desktop a:hover::after,
  .nav-desktop a.is-active::after { transform: scaleX(1); }
  .nav-desktop a.is-active { color: var(--accent-deep); }
  .nav-desktop .nav-cta::after { display: none; }
  .nav-desktop .nav-cta {
    padding: 10px 20px;
    background: var(--accent);
    color: #fff;
    border-radius: 999px;
    box-shadow: var(--shadow-accent);
  }
  .nav-desktop .nav-cta:hover { background: var(--accent-deep); color: #fff; }
}

/* hamburger */
.nav-toggle {
  position: relative;
  z-index: 1100;
  width: 46px; height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  cursor: pointer;
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.nav-toggle__box { position: relative; width: 22px; height: 15px; }
.nav-toggle__box span {
  position: absolute;
  left: 0;
  width: 100%; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease-io), top .3s var(--ease);
}
.nav-toggle__box span:nth-child(1) { top: 0; }
.nav-toggle__box span:nth-child(2) { top: 6.5px; }
.nav-toggle__box span:nth-child(3) { top: 13px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__box span:nth-child(1) { top: 6.5px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__box span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__box span:nth-child(3) { top: 6.5px; transform: rotate(-45deg); }

/* drawer */
.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  z-index: 1050;
  background: var(--surface);
  transform: translateX(100%);
  transition: transform .32s var(--ease);
  padding: calc(var(--header-h) + 20px) 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: -30px 0 60px -40px rgba(0,0,0,.5);
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  font-family: Corbel, "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: 1.12rem;
  letter-spacing: .02em;
  color: var(--ink);
  padding: 14px 6px;
  border-bottom: 1px solid var(--line);
}
.drawer a:hover { color: var(--accent-deep); }
.drawer a.is-active { color: var(--accent-deep); }
.drawer .drawer-cta {
  margin-top: 18px;
  border-bottom: none;
  background: var(--accent);
  color: #fff;
  text-align: center;
  border-radius: 999px;
  padding: 15px 20px;
  box-shadow: var(--shadow-accent);
}
.drawer a.drawer-cta:hover { background: var(--accent-deep); color: #fff; }
.drawer__meta { margin-top: auto; padding-top: 24px; font-size: .84rem; color: var(--ink-faint); }
.drawer__meta a { font-size: .84rem; padding: 2px 0; border: none; display: inline; color: var(--accent-deep); }

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1040;
  background: rgba(0,0,0,.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity .24s var(--ease-io), visibility .24s var(--ease-io);
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

main { padding-top: var(--header-h); }

/* ============================================================
   HERO — cinematic full-bleed photo
   ============================================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  /* pull the fixed header's reserved padding back so the photo is truly full-bleed */
  margin-top: calc(-1 * var(--header-h));
}
@media (max-width: 979px) {
  .hero { min-height: 92vh; }
}
@media (min-width: 980px) {
  .hero { align-items: center; }
}

/* photo layer */
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 60%;
  transform: scale(1.06);
  transform-origin: 62% 55%;
  will-change: transform;
}
/* slow ken-burns — opt-in only when motion is allowed (js-anim set in <head>) */
.js-anim .hero__photo {
  animation: hero-kenburns 20s var(--ease-io) infinite alternate;
}
@keyframes hero-kenburns {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to   { transform: scale(1.16) translate3d(-1.8%, -1.4%, 0); }
}

/* dark cinematic scrim — carries text contrast (>=4.5:1) over a bright photo */
.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(94deg,
      rgba(20, 15, 30, .86) 0%,
      rgba(20, 15, 30, .68) 34%,
      rgba(20, 15, 30, .40) 60%,
      rgba(20, 15, 30, .24) 100%),
    linear-gradient(0deg,
      rgba(18, 13, 27, .78) 0%,
      rgba(18, 13, 27, .30) 38%,
      rgba(18, 13, 27, .10) 62%,
      rgba(18, 13, 27, .32) 100%);
}
@media (max-width: 979px) {
  .hero__scrim {
    background:
      linear-gradient(180deg,
        rgba(18, 13, 27, .52) 0%,
        rgba(18, 13, 27, .40) 30%,
        rgba(18, 13, 27, .74) 78%,
        rgba(18, 13, 27, .88) 100%);
  }
}

.hero__grid {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding: calc(var(--header-h) + clamp(40px, 9vw, 96px)) var(--pad) clamp(48px, 8vw, 96px);
}

.hero__copy { max-width: 46rem; }
.hero__eyebrow { color: #D9CEF3; }
.hero__eyebrow::before { background: #D9CEF3; opacity: .8; }

.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.2rem, 7vw, 4.7rem);
  line-height: 1.04;
  letter-spacing: -.005em;
  color: #FBFAFF;
  margin-bottom: .55em;
  text-shadow: 0 2px 26px rgba(10, 6, 20, .45);
  text-wrap: balance;
}
.hero__title .word {
  display: inline-block;
  white-space: nowrap;
}
.hero__title .accent {
  font-style: italic;
  color: #CDBBF2;
}
/* entrance: word fade-up, opt-in only when motion allowed; visible by default */
.js-anim .hero__title .word {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(16px);
  animation: word-in .95s var(--ease) forwards;
  animation-delay: calc(var(--i) * 100ms + 200ms);
}
@keyframes word-in {
  to { opacity: 1; filter: blur(0); transform: none; }
}
.reduce-motion .hero__title .word { opacity: 1; filter: none; transform: none; animation: none; }

.hero__sub {
  font-size: clamp(1.04rem, 1.6vw, 1.28rem);
  color: rgba(244, 240, 252, .92);
  max-width: 44ch;
  margin-bottom: 2rem;
  text-shadow: 0 1px 16px rgba(10, 6, 20, .4);
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 2rem; }

/* light ghost button that reads on a dark photo */
.btn-hero-ghost {
  background: rgba(255, 255, 255, .08);
  color: #FBFAFF;
  border-color: rgba(255, 255, 255, .42);
  backdrop-filter: blur(4px);
}
.btn-hero-ghost:hover, .btn-hero-ghost:focus-visible {
  background: rgba(255, 255, 255, .16);
  color: #fff;
  border-color: #fff;
  transform: translateY(-2px);
}

/* thin stat strip over the photo */
.hero__facts {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px clamp(20px, 4vw, 40px);
  list-style: none;
  padding: 22px 0 0;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, .18);
  max-width: 44rem;
}
.hero__facts li {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-size: .9rem;
  color: rgba(233, 227, 246, .82);
  letter-spacing: .01em;
}
.hero__facts b {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.55rem;
  color: #FBFAFF;
  letter-spacing: .01em;
}

/* entrance for the supporting copy — CSS-only, no JS dependency */
.js-anim .hero__eyebrow,
.js-anim .hero__sub,
.js-anim .hero__cta,
.js-anim .hero__facts {
  opacity: 0;
  transform: translateY(16px);
  animation: hero-rise .9s var(--ease) forwards;
}
.js-anim .hero__eyebrow { animation-delay: .05s; }
.js-anim .hero__sub { animation-delay: .62s; }
.js-anim .hero__cta { animation-delay: .74s; }
.js-anim .hero__facts { animation-delay: .86s; }
@keyframes hero-rise {
  to { opacity: 1; transform: none; }
}
.reduce-motion .hero__eyebrow,
.reduce-motion .hero__sub,
.reduce-motion .hero__cta,
.reduce-motion .hero__facts { opacity: 1 !important; transform: none !important; animation: none !important; }

/* ============================================================
   KOKU-KARIŞIM section (relocated configurator)
   ============================================================ */
.config-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 52px);
  align-items: center;
}
@media (min-width: 900px) {
  .config-layout { grid-template-columns: 1fr 1fr; }
}
.config-intro { max-width: 42rem; }
.config-intro__list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 12px;
}
.config-intro__list li {
  position: relative;
  padding-left: 26px;
  color: var(--ink-soft);
  font-size: .96rem;
}
.config-intro__list li::before {
  content: "";
  position: absolute;
  left: 0; top: .62em;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, var(--accent), var(--accent-deep));
}

/* ============================================================
   CONFIGURATOR (signature)
   ============================================================ */
.configurator {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(22px, 3vw, 34px);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.configurator::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(138,124,182,.07), transparent 60%);
  pointer-events: none;
}
.configurator > * { position: relative; }
.configurator__eyebrow {
  font-family: Corbel, sans-serif;
  font-weight: 600;
  font-size: .74rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin: 0 0 4px;
}
.configurator h2 {
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  margin-bottom: 1.3rem;
}

/* breathing preview circle whose color tracks intensity */
.config-orb {
  --orb: 34;
  position: relative;
  width: clamp(140px, 24vw, 190px);
  height: clamp(140px, 24vw, 190px);
  margin: 0 auto 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 42%,
      hsl(258 calc(var(--orb) * 1%) 78%),
      hsl(172 calc((100 - var(--orb)) * 0.4%) 70%) 78%);
  box-shadow: 0 0 0 1px var(--line), inset 0 0 40px rgba(255,255,255,.5);
  transition: background .5s var(--ease-io);
}
.config-orb::after {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px solid rgba(138,124,182,.4);
  animation: breathe 8s var(--ease-io) infinite;
}
.reduce-motion .config-orb::after { animation: none; }
.config-orb__drop { width: 42px; height: 42px; color: #fff; opacity: .92; }
.config-orb__drop svg { width: 100%; height: 100%; }

.config-blend {
  text-align: center;
  margin-bottom: 6px;
}
.config-blend__label {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.config-blend__name {
  font-family: Corbel, sans-serif;
  font-weight: 600;
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  color: var(--accent-deep);
  letter-spacing: .02em;
  min-height: 1.3em;
  transition: color .4s var(--ease-io);
}

.config-field { margin-top: 20px; }
.config-field__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}
.config-field__label { font-weight: 600; font-family: Corbel, sans-serif; letter-spacing: .02em; font-size: .96rem; }
.config-field__val {
  font-size: .82rem;
  color: var(--accent-deep);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

/* range slider */
input[type="range"].scent-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-2) 0%, var(--accent) 100%);
  outline: none;
  cursor: pointer;
}
input[type="range"].scent-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--accent-deep);
  box-shadow: 0 4px 12px -3px rgba(111,95,163,.6);
  transition: transform .2s var(--ease);
}
input[type="range"].scent-slider::-webkit-slider-thumb:hover { transform: scale(1.12); }
input[type="range"].scent-slider::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--accent-deep);
  box-shadow: 0 4px 12px -3px rgba(111,95,163,.6);
}
input[type="range"].scent-slider:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

.config-oils {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 12px;
}
.config-oils button {
  flex: 1 1 auto;
  min-width: 92px;
  padding: 11px 10px 9px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  font-family: "Segoe UI", sans-serif;
  font-size: .82rem;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .22s var(--ease-io);
  text-align: center;
  line-height: 1.3;
}
.config-oils button strong { display: block; font-family: Corbel, sans-serif; font-weight: 600; color: var(--ink); font-size: .9rem; }
.config-oils button[aria-pressed="true"] {
  background: rgba(138,124,182,.12);
  border-color: var(--accent);
  color: var(--accent-deep);
}
.config-oils button[aria-pressed="true"] strong { color: var(--accent-deep); }
.config-oils button:hover { border-color: var(--accent); transform: translateY(-2px); }

.config-reco {
  margin-top: 20px;
  padding: 16px 18px;
  background: var(--surface-2);
  border: 1px dashed var(--line-strong);
  border-radius: var(--r);
  font-size: .9rem;
  color: var(--ink-soft);
}
.config-reco strong { color: var(--ink); font-family: Corbel, sans-serif; font-weight: 600; }
.config-reco__line { display: block; margin-top: 4px; }
.config-cta { margin-top: 18px; width: 100%; }

/* ============================================================
   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; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
.no-js .reveal { opacity: 1; transform: none; }

/* ============================================================
   STATS
   ============================================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: clamp(16px, 3vw, 34px);
}
.stat { text-align: center; padding: 8px; }
.stat__num {
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  font-weight: 600;
  color: var(--accent-deep);
  letter-spacing: .01em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat__num .suffix { color: var(--accent-2-deep); }
.stat__label { margin-top: 8px; font-size: .86rem; color: var(--ink-soft); letter-spacing: .02em; }
.section--band .stat__num { color: #C9BFEA; }
.section--band .stat__num .suffix { color: #7fd0cd; }
.section--band .stat__label { color: rgba(239,235,246,.75); }

/* ============================================================
   CARDS / SESSIONS
   ============================================================ */
.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
  gap: clamp(18px, 2.4vw, 26px);
}
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(22px, 2.6vw, 30px);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease-io);
  overflow: hidden;
  min-width: 0;
}
.card::after {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-accent);
  border-color: rgba(138,124,182,.4);
}
.card:hover::after { transform: scaleX(1); }
.card__icon {
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(138,124,182,.12);
  color: var(--accent-deep);
  margin-bottom: 16px;
}
.card__icon svg { width: 27px; height: 27px; }
.card h3 { margin-bottom: .4em; }
.card p { color: var(--ink-soft); font-size: .95rem; }
.card__meta {
  margin-top: auto;
  padding-top: 16px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  font-size: .88rem;
  color: var(--ink-faint);
}
.card__price {
  font-family: Corbel, sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--accent-deep);
  font-variant-numeric: tabular-nums;
}
.card__tag {
  display: inline-block;
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-2-deep);
  background: rgba(79,163,160,.12);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
  align-self: flex-start;
}

/* ============================================================
   BENEFIT (editorial split)
   ============================================================ */
.benefit-grid {
  display: grid;
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
}
@media (min-width: 900px) {
  .benefit-grid { grid-template-columns: 1fr 1fr; }
}
.benefit-media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, #d9d3ec, #cfe0de);
}
.benefit-media img { width: 100%; height: 100%; object-fit: cover; }
.benefit-media__badge {
  position: absolute;
  left: 18px; bottom: 18px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(6px);
  padding: 12px 16px;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}
.benefit-media__badge b { font-family: Corbel, sans-serif; color: var(--accent-deep); font-size: 1.05rem; }
.benefit-media__badge span { display: block; font-size: .78rem; color: var(--ink-soft); }

.note-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.note-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  transition: transform .24s var(--ease), border-color .24s var(--ease-io);
  min-width: 0;
}
.note-list li:hover { transform: translateY(-2px); border-color: rgba(138,124,182,.4); }
.note-list__ic {
  grid-row: span 2;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(79,163,160,.12);
  color: var(--accent-2-deep);
}
.note-list__ic svg { width: 22px; height: 22px; }
.note-list b { font-family: Corbel, sans-serif; font-weight: 600; letter-spacing: .02em; }
.note-list p { margin: 3px 0 0; font-size: .9rem; color: var(--ink-soft); }

/* ============================================================
   PROCESS timeline
   ============================================================ */
.timeline { display: grid; gap: 0; max-width: 780px; margin-inline: auto; }
.tl-step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(18px, 3vw, 30px);
  padding-bottom: clamp(26px, 4vw, 42px);
}
.tl-step:last-child { padding-bottom: 0; }
.tl-step__rail { display: flex; flex-direction: column; align-items: center; }
.tl-step__dot {
  width: 46px; height: 46px;
  flex: none;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: Corbel, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  box-shadow: var(--shadow-accent);
  z-index: 1;
}
.tl-step__line {
  flex: 1;
  width: 2px;
  margin-top: 4px;
  background: linear-gradient(var(--accent), rgba(138,124,182,.2));
}
.tl-step:last-child .tl-step__line { display: none; }
.tl-step__body { padding-bottom: 4px; min-width: 0; }
.tl-step__time {
  display: inline-block;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-2-deep);
  margin-bottom: 5px;
}
.tl-step__body h3 { font-size: 1.16rem; margin-bottom: .3em; }
.tl-step__body p { color: var(--ink-soft); font-size: .94rem; margin: 0; }

/* ============================================================
   PRICING
   ============================================================ */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(18px, 2.4vw, 26px);
  align-items: stretch;
}
.price-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 34px);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease-io);
  min-width: 0;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(138,124,182,.4); }
.price-card--feature {
  border-color: var(--accent);
  box-shadow: var(--shadow-accent);
  position: relative;
}
.price-card--feature::before {
  content: "En çok tercih edilen";
  position: absolute;
  top: 16px; right: 16px;
  font-size: .66rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--accent);
  color: #fff;
  padding: 5px 11px;
  border-radius: 999px;
  font-family: Corbel, sans-serif;
  font-weight: 600;
}
.price-card__name { font-family: Corbel, sans-serif; font-weight: 600; font-size: 1.3rem; letter-spacing: .02em; margin-bottom: 4px; }
.price-card__desc { font-size: .88rem; color: var(--ink-faint); margin-bottom: 16px; min-height: 2.6em; }
.price-card__price {
  font-family: Corbel, sans-serif;
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: var(--accent-deep);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.price-card__price small { font-size: .9rem; color: var(--ink-faint); font-weight: 300; display: block; margin-top: 4px; }
.price-card__list { list-style: none; margin: 20px 0; padding: 0; display: grid; gap: 10px; }
.price-card__list li { display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: start; font-size: .9rem; color: var(--ink-soft); }
.price-card__list li svg { width: 18px; height: 18px; margin-top: 3px; flex: none; }
.price-card__list li.inc svg { color: var(--accent-2-deep); }
.price-card__list li.exc { color: var(--ink-faint); }
.price-card__list li.exc svg { color: var(--ink-faint); }
.price-card .btn { margin-top: auto; width: 100%; }
.price-note { text-align: center; margin-top: 22px; font-size: .82rem; color: var(--ink-faint); }

/* ============================================================
   RESERVATION (hour-slots)
   ============================================================ */
.rez-wrap {
  display: grid;
  gap: clamp(26px, 4vw, 46px);
}
@media (min-width: 900px) { .rez-wrap { grid-template-columns: 1fr 1.1fr; } }
.slots { }
.slots h3 { margin-bottom: 8px; }
.slot-day { margin-bottom: 20px; }
.slot-day__title {
  font-family: Corbel, sans-serif;
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .04em;
  color: var(--ink-soft);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.slot-day__title svg { width: 18px; height: 18px; color: var(--accent-2-deep); }
.slot-list { display: flex; flex-wrap: wrap; gap: 9px; }
.slot {
  padding: 9px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  font-size: .86rem;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  cursor: pointer;
  transition: all .2s var(--ease-io);
}
.slot:hover:not(:disabled) { border-color: var(--accent); color: var(--accent-deep); transform: translateY(-2px); }
.slot[aria-pressed="true"] { background: var(--accent); border-color: var(--accent); color: #fff; }
.slot:disabled { opacity: .4; cursor: not-allowed; text-decoration: line-through; }

/* ============================================================
   FORMS
   ============================================================ */
.form { display: grid; gap: 16px; }
.form-grid { display: grid; gap: 16px; }
@media (min-width: 620px) { .form-grid.cols-2 { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.field > span, .field > label { font-size: .84rem; font-weight: 600; font-family: Corbel, sans-serif; letter-spacing: .02em; color: var(--ink-soft); }
.field input:not([type="checkbox"]),
.field select,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  background: var(--surface);
  font-family: "Segoe UI", sans-serif;
  font-size: .96rem;
  font-weight: 300;
  color: var(--ink);
  transition: border-color .2s var(--ease-io), box-shadow .2s var(--ease-io);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(138,124,182,.16);
}
.field.kvkk {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}
.field.kvkk span, .field.kvkk label { font-weight: 300; color: var(--ink-soft); font-family: "Segoe UI", sans-serif; font-size: .88rem; }
.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: none;
}
.form-hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-hero {
  padding-block: clamp(52px, 7vw, 96px);
  min-height: 240px;
  background:
    radial-gradient(90% 120% at 82% 0%, rgba(138,124,182,.18), transparent 55%),
    var(--surface-2);
}
.channel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(14px, 2vw, 22px);
}
.channel {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--surface);
  transition: transform .26s var(--ease), box-shadow .26s var(--ease), border-color .26s var(--ease-io);
  min-width: 0;
}
.channel:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: rgba(138,124,182,.4); }
.channel__ic {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: rgba(138,124,182,.12);
  color: var(--accent-deep);
  margin-bottom: 8px;
}
.channel__ic svg { width: 24px; height: 24px; }
.channel h3 { font-size: 1.02rem; margin: 0; }
.channel a, .channel p { font-size: .95rem; color: var(--ink); margin: 0; word-break: break-word; }
.channel a:hover { color: var(--accent-deep); }
.channel small { color: var(--ink-faint); font-size: .82rem; }

/* hours */
.hours-card {
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--surface);
}
.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 20px;
  border-bottom: 1px solid var(--line);
  font-size: .92rem;
  font-variant-numeric: tabular-nums;
}
.hours-row:last-child { border-bottom: none; }
.hours-row.is-today { background: rgba(138,124,182,.09); font-weight: 600; }
.hours-row .day { color: var(--ink-soft); font-family: Corbel, sans-serif; }
.hours-row.is-today .day { color: var(--accent-deep); }

/* ============================================================
   FAQ (pure CSS accordion)
   ============================================================ */
.faq { max-width: 800px; margin-inline: auto; display: grid; gap: 12px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--surface);
  overflow: hidden;
}
.faq-item > summary {
  list-style: none;
  cursor: pointer;
  padding: clamp(16px, 2.4vw, 20px) clamp(18px, 3vw, 26px);
  font-family: Corbel, sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: .01em;
  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::after {
  content: "";
  width: 12px; height: 12px;
  flex: none;
  border-right: 2px solid var(--accent-deep);
  border-bottom: 2px solid var(--accent-deep);
  transform: rotate(45deg);
  transition: transform .3s var(--ease);
}
.faq-item[open] > summary::after { transform: rotate(-135deg); }
.faq-item > .answer {
  height: 0;
  padding: 0 clamp(18px, 3vw, 26px);
  overflow: hidden;
  color: var(--ink-soft);
  font-size: .95rem;
  transition: height .36s var(--ease-io), padding-block-end .36s var(--ease-io);
}
.faq-item[open] > .answer {
  height: auto;
  padding-block-end: 22px;
}
@media (prefers-reduced-motion: reduce) {
  .faq-item > .answer { transition: none; }
}

/* ============================================================
   TESTIMONIALS (editorial grid, no carousel)
   ============================================================ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(18px, 2.4vw, 26px);
}
.testi {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(22px, 2.6vw, 30px);
  min-width: 0;
}
.testi__quote { font-size: .96rem; color: var(--ink); margin-bottom: 16px; }
.testi__quote::before { content: "“"; font-family: Corbel, serif; color: var(--accent); font-size: 2.2rem; line-height: 0; vertical-align: -.2em; margin-right: 4px; }
.testi__meta { margin-top: auto; padding-top: 12px; border-top: 1px solid var(--line); }
.testi__name { font-family: Corbel, sans-serif; font-weight: 600; letter-spacing: .02em; }
.testi__ctx { font-size: .8rem; color: var(--ink-faint); }
.testi__crit { font-size: .82rem; color: var(--ink-faint); margin-top: 8px; font-style: italic; }

/* ============================================================
   TEAM
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: clamp(18px, 2.4vw, 26px);
}
.member {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.member:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.member__photo { aspect-ratio: 4/5; background: linear-gradient(160deg, #d9d3ec, #cfe0de); overflow: hidden; }
.member__photo img { width: 100%; height: 100%; object-fit: cover; }
.member__body { padding: 20px 22px; }
.member__name { font-family: Corbel, sans-serif; font-weight: 600; font-size: 1.14rem; }
.member__role { font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; color: var(--accent-deep); margin-bottom: 10px; }
.member__bio { font-size: .9rem; color: var(--ink-soft); margin: 0; }

/* ============================================================
   NOTES / news block
   ============================================================ */
.notes-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.notes-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: baseline;
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
}
.notes-list time { font-size: .78rem; color: var(--accent-2-deep); font-variant-numeric: tabular-nums; white-space: nowrap; }
.notes-list span { color: var(--ink-soft); font-size: .94rem; }

/* ============================================================
   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: 6px;
  background: var(--surface);
}
.table-scroll > table { margin: 0 !important; min-width: 480px; width: 100%; border-collapse: collapse; background: var(--surface); }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }
table th, table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--line); font-size: .92rem; }
/* on narrow phones let the 3-col legal tables reflow to fit — no forced scroll,
   so the last column is never clipped at the viewport edge */
@media (max-width: 600px) {
  .table-scroll > table { min-width: 0; }
  table th, table td { padding: 9px 11px; font-size: .82rem; line-height: 1.42; }
}
table th { font-family: Corbel, sans-serif; font-weight: 600; letter-spacing: .02em; background: var(--surface-2); color: var(--ink); }
table td { color: var(--ink-soft); }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band { text-align: center; }
.cta-band h2 { color: #fff; margin-bottom: .5em; }
.cta-band p { color: rgba(239,235,246,.82); max-width: 52ch; margin-inline: auto; margin-bottom: 1.6rem; }
.cta-band .btn-primary { background: #fff; color: var(--accent-deep); }
.cta-band .btn-primary:hover { background: var(--bg); color: var(--accent-deep); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #1c2826;
  color: #cdd6d3;
  padding-block: clamp(48px, 6vw, 80px) 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(24px, 3vw, 44px);
  margin-bottom: 40px;
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { display: inline-flex; align-items: center; gap: 10px; color: #fff; font-family: Corbel, sans-serif; font-weight: 600; font-size: 1.15rem; margin-bottom: 12px; }
.footer-brand__mark { width: 28px; height: 28px; color: var(--accent); }
.footer-col h4 { color: #fff; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 14px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer-col a, .footer-col p { color: #b3bebb; font-size: .9rem; margin: 0; }
.footer-col a:hover { color: #fff; }
.footer-col p { line-height: 1.6; }
.footer-about p { color: #a7b2af; font-size: .9rem; max-width: 34ch; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: .8rem;
  color: #8a9793;
}
.footer-bottom a { color: #8a9793; }
.footer-bottom a:hover { color: #fff; }
.footer-legal { font-variant-numeric: tabular-nums; }

/* ============================================================
   COOKIE
   ============================================================ */
.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: var(--r);
  padding: 20px 22px;
  box-shadow: 0 24px 60px -24px rgba(0,0,0,.5);
  transform: translateY(140%);
  opacity: 0;
  transition: transform .28s var(--ease), opacity .24s var(--ease-io);
  z-index: 9999;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
@media (min-width: 720px) { .cookie-banner { left: 24px; right: auto; max-width: 420px; } }
.cookie-banner h4 { font-size: 1.02rem; margin-bottom: 6px; }
.cookie-banner p { font-size: .86rem; color: var(--ink-soft); margin-bottom: 14px; }
.cookie-banner p a { color: var(--accent-deep); text-decoration: underline; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 9px; }
.cookie-actions button {
  flex: 1 1 auto;
  min-height: 44px;
  padding: 11px 14px;
  border-radius: 999px;
  font-family: Corbel, sans-serif;
  font-weight: 600;
  font-size: .86rem;
  cursor: pointer;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  color: var(--ink);
  transition: all .2s var(--ease-io);
}
.cookie-actions button[data-consent="accept"] { background: var(--accent); border-color: var(--accent); color: #fff; }
.cookie-actions button[data-consent="accept"]:hover { background: var(--accent-deep); border-color: var(--accent-deep); color: #fff; }
/* consent parity — "Reddet" reads with the same weight as "Kabul et"
   (no dark-pattern nudge); "Ayarlar" stays the lighter tertiary action */
.cookie-actions button[data-consent="reject"] {
  background: var(--surface-2);
  border-color: var(--ink-soft);
  color: var(--ink);
}
.cookie-actions button[data-consent="reject"]:hover {
  background: var(--surface-3);
  border-color: var(--ink);
  color: var(--ink);
}
.cookie-actions button[data-consent="settings"] { color: var(--ink-soft); }
.cookie-actions button[data-consent="settings"]:hover { border-color: var(--accent); color: var(--accent-deep); }

/* cookie modal */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0,0,0,.5);
}
.cookie-modal.is-open { display: flex; }
.cookie-modal__box {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: clamp(24px, 4vw, 34px);
  max-width: 440px;
  width: 100%;
  box-shadow: var(--shadow);
  max-height: 90vh;
  overflow-y: auto;
}
.cookie-modal h3 { margin-bottom: 6px; }
.cookie-modal > .cookie-modal__box > p { font-size: .88rem; color: var(--ink-soft); margin-bottom: 18px; }
.cookie-toggle {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.cookie-toggle b { font-family: Corbel, sans-serif; font-weight: 600; font-size: .96rem; }
.cookie-toggle p { font-size: .82rem; color: var(--ink-faint); margin: 3px 0 0; }
.cookie-toggle input { width: 20px; height: 20px; accent-color: var(--accent); margin-top: 2px; flex: none; }
.cookie-modal__save { margin-top: 20px; width: 100%; }

/* ============================================================
   PAGE / DOC
   ============================================================ */
.page-hero {
  padding-block: clamp(52px, 7vw, 96px) clamp(30px, 4vw, 46px);
  background:
    radial-gradient(90% 120% at 82% 0%, rgba(138,124,182,.16), transparent 55%),
    var(--surface-2);
}
.doc { max-width: 820px; margin-inline: auto; }
.doc h2 { font-size: clamp(1.35rem, 2.4vw, 1.8rem); margin-top: 2em; }
.doc h2:first-child { margin-top: 0; }
.doc h3 { margin-top: 1.4em; font-size: 1.1rem; }
.doc p, .doc li { color: var(--ink-soft); }
.doc ul, .doc ol { padding-left: 1.3em; }
.doc li { margin-bottom: .5em; }
.doc a { color: var(--accent-deep); text-decoration: underline; }
.toc {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 20px 24px;
  margin-bottom: 32px;
}
.toc ul { list-style: none; padding: 0; margin: 0; columns: 2; gap: 20px; }
@media (max-width: 560px) { .toc ul { columns: 1; } }
.toc a { text-decoration: none; }

/* thank you */
.thanks { min-height: 62vh; display: grid; place-items: center; text-align: center; padding-block: 80px; }
.thanks__ic { width: 84px; height: 84px; margin: 0 auto 24px; border-radius: 50%; background: rgba(79,163,160,.14); display: grid; place-items: center; color: var(--accent-2-deep); }
.thanks__ic svg { width: 42px; height: 42px; }
.thanks h1 { margin-bottom: .4em; }
.thanks p { color: var(--ink-soft); max-width: 44ch; margin-inline: auto; margin-bottom: 1.6rem; }

/* 404 */
.err { min-height: 66vh; display: grid; place-items: center; text-align: center; padding-block: 80px; }
.err__code { font-family: Corbel, sans-serif; font-weight: 600; font-size: clamp(5rem, 18vw, 9rem); color: var(--accent); line-height: 1; letter-spacing: .02em; }

/* sitemap page */
.sitemap-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); gap: 26px; }
.sitemap-col h3 { font-size: 1.05rem; margin-bottom: 12px; }
.sitemap-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.sitemap-col a { color: var(--accent-deep); }

/* reduced motion global kill for decorative */
@media (prefers-reduced-motion: reduce) {
  .hero__photo, .config-orb::after { animation: none !important; transform: none !important; }
  /* never leave hero content stuck at opacity:0 when animation is killed */
  .hero__title .word,
  .hero__eyebrow, .hero__sub, .hero__cta, .hero__facts {
    animation: none !important; opacity: 1 !important; filter: none !important; transform: none !important;
  }
}
.reduce-motion .hero__photo { animation: none !important; transform: none !important; }

/* anchor targets clear the fixed header on cross-page jumps */
:where([id]) { scroll-margin-top: calc(var(--header-h) + 20px); }

/* reservation → contact CTA panel (index) */
.rez-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: var(--shadow);
}
.rez-cta h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); margin: 0; }
.rez-cta > p { color: var(--ink-soft); font-size: .96rem; margin: 0; }
.rez-cta__list { list-style: none; margin: 4px 0 8px; padding: 0; display: grid; gap: 10px; width: 100%; }
.rez-cta__list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  font-size: .92rem;
  color: var(--ink-soft);
}
.rez-cta__list li svg { width: 18px; height: 18px; margin-top: 2px; color: var(--accent-2-deep); flex: none; }
.rez-cta .btn { width: 100%; }

/* display-only availability chips */
span.slot { cursor: default; user-select: none; }
span.slot:hover { transform: none; border-color: var(--line); color: var(--ink); }
.slot.is-full { opacity: .4; text-decoration: line-through; }

/* optional-field hint in labels */
.field .opt { font-weight: 300; color: var(--ink-faint); letter-spacing: 0; text-transform: none; }

/* utility spacing */
.mt-s { margin-top: 14px; }
.mt-m { margin-top: 26px; }
.center { text-align: center; }
.muted { color: var(--ink-faint); }

.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;
}

/* ============================================================
   AWARD POLISH — botanical editorial layer
   Display: Fraunces serif with living italic accents.
   All decorative motion respects prefers-reduced-motion (global kill below).
   ============================================================ */

/* ---- display typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -.006em;
  line-height: 1.08;
  text-wrap: balance;
}
h2 { font-size: clamp(1.72rem, 4vw, 2.85rem); }
h3 { font-size: clamp(1.24rem, 2vw, 1.56rem); }

/* living italic accent — the botanical signature of the type system */
h1 em, h2 em, h3 em, .ital {
  font-style: italic;
  font-weight: 500;
}
.section-head em,
.section-head .ital,
.config-intro em, .configurator em { color: var(--accent-deep); }
.section--band em,
.cta-band em { color: #CDBBF2; }
.page-hero em, .contact-hero em,
.thanks em, .err em, .doc em { color: var(--accent-deep); }

/* ---- eyebrow: sprig-marked kicker ---- */
.eyebrow {
  gap: .6em;
  font-size: .72rem;
  letter-spacing: .24em;
}
.eyebrow::before {
  width: 30px;
  height: 1px;
  opacity: .5;
}
.section-head--center .eyebrow { justify-content: center; }

/* centered section heads earn a small lavender sprig above the kicker */
.section-head--center::before {
  content: "";
  display: block;
  width: 22px;
  height: 34px;
  margin: 0 auto 18px;
  background: no-repeat center / contain
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 40' fill='none' stroke='%238A7CB6' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 39V15'/%3E%3Cpath d='M12 15c-2.2-1-3.4-3-3.4-5.4 2.2 0 4.2 1 4.4 3.2'/%3E%3Cpath d='M12 15c2.2-1 3.4-3 3.4-5.4-2.2 0-4.2 1-4.4 3.2'/%3E%3Cpath d='M12 20c-2-1-3-2.6-3-4.8 2 0 3.6 1 4 2.6'/%3E%3Cpath d='M12 20c2-1 3-2.6 3-4.8-2 0-3.6 1-4 2.6'/%3E%3Ccircle cx='12' cy='6' r='1.5'/%3E%3C/svg%3E");
  opacity: .9;
}
.section--band .section-head--center::before { filter: brightness(1.7) saturate(1.2); opacity: .8; }

.lead { line-height: 1.62; }

/* ---- section rhythm & botanical wash ---- */
.section { padding-block: clamp(60px, 8.5vw, 128px); }
.section--tint {
  background:
    radial-gradient(130% 90% at 100% 0%, rgba(138, 124, 182, .06), transparent 58%),
    radial-gradient(120% 90% at 0% 100%, rgba(79, 163, 160, .05), transparent 60%),
    var(--surface-2);
}
/* hairline divider between adjacent same-tone sections */
.section + .section:not(.section--tint):not(.section--band)::before,
.section--tint + .section--tint::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(var(--container), calc(100% - 2 * var(--pad)));
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong) 22%, var(--line-strong) 78%, transparent);
  opacity: .7;
}

/* ---- serif numerals: editorial figures across the site ---- */
.stat__num,
.card__price,
.price-card__price,
.hero__facts b,
.config-field__val,
.err__code {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -.01em;
}
.stat__num { font-size: clamp(2.2rem, 4.8vw, 3.35rem); }

/* stats: hairline column separators, roomier */
.stats { position: relative; }
@media (min-width: 720px) {
  .stat { position: relative; padding-block: 6px; }
  .stat + .stat::before {
    content: "";
    position: absolute;
    left: calc(-1 * clamp(8px, 1.5vw, 17px));
    top: 12%;
    height: 76%;
    width: 1px;
    background: var(--line);
  }
}

/* ---- config blend name in living italic ---- */
.config-blend__name { font-family: var(--font-display); font-style: italic; font-weight: 500; }
.configurator__eyebrow { font-family: Corbel, "Segoe UI", sans-serif; }

/* ---- cards: refined seal-style icon + warmer hover ---- */
.card { border-radius: 20px; }
.card__icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 32%, rgba(138, 124, 182, .18), rgba(138, 124, 182, .09));
  box-shadow: inset 0 0 0 1px rgba(138, 124, 182, .22);
}
.card h3 { letter-spacing: -.01em; }
.card__price { font-size: 1.28rem; }
.card__tag {
  font-family: Corbel, "Segoe UI", sans-serif;
  font-weight: 600;
}
/* the featured (first) session card lifts on a warmer ground */
.grid-cards .card:first-child {
  background:
    radial-gradient(140% 120% at 100% 0%, rgba(138, 124, 182, .07), transparent 55%),
    var(--surface);
}

/* ---- benefit media: honey hairline frame + softer badge ---- */
.benefit-media { box-shadow: 0 30px 60px -34px rgba(34, 48, 46, .5); }
.benefit-media::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: calc(var(--r-lg) - 8px);
  pointer-events: none;
}
.benefit-media__badge {
  left: 20px; bottom: 20px;
  border-radius: 16px;
  border: 1px solid rgba(138, 124, 182, .18);
}
.benefit-media__badge b { font-family: var(--font-display); font-weight: 600; font-size: 1.4rem; }

.note-list__ic { border-radius: 50%; }
.note-list b { letter-spacing: -.005em; }

/* ---- timeline: warmer rail, serif step numbers ---- */
.tl-step__dot { font-family: var(--font-display); font-weight: 600; }
.tl-step__body h3 { letter-spacing: -.005em; }
.tl-step__time { font-family: Corbel, "Segoe UI", sans-serif; font-weight: 600; }

/* ---- pricing: feature card gets a lavender ground + honey top rule ---- */
.price-card { border-radius: 20px; overflow: hidden; position: relative; }
.price-card__name { font-family: var(--font-display); font-weight: 600; font-style: italic; }
.price-card--feature {
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(138, 124, 182, .10), transparent 60%),
    var(--surface);
}
.price-card--feature::after {
  content: "";
  position: absolute;
  left: 0; top: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--honey));
}

/* ---- testimonials: editorial quote + rating dots ---- */
.testi { border-radius: 20px; position: relative; }
.testi__quote {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.02rem, 1.4vw, 1.14rem);
  line-height: 1.55;
  color: var(--ink);
}
.testi__quote::before {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--accent);
  opacity: .55;
}
.testi__name { font-family: var(--font-display); font-weight: 600; font-size: 1.06rem; }
.testi__stars {
  display: inline-flex;
  gap: 3px;
  margin-bottom: 12px;
  color: var(--honey-deep);
}
.testi__stars svg { width: 15px; height: 15px; }

/* ---- team ---- */
.member { border-radius: 20px; }
.member__name { font-family: var(--font-display); font-weight: 600; letter-spacing: -.005em; }
.member__role { font-family: Corbel, "Segoe UI", sans-serif; font-weight: 600; }

/* ---- contact channels: seal icon ---- */
.channel { border-radius: 18px; }
.channel__ic { border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(138, 124, 182, .22); }
.channel h3 { font-size: 1.06rem; }

/* ---- FAQ ---- */
.faq-item { border-radius: 16px; }
.faq-item > summary { font-family: var(--font-display); font-weight: 600; letter-spacing: -.005em; }

/* ---- CTA band: sprig watermark + serif heading ---- */
.section--band { overflow: hidden; }
.cta-band { position: relative; overflow: hidden; }
.cta-band h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
.section--band::after {
  content: "";
  position: absolute;
  right: clamp(-40px, -2vw, -20px);
  bottom: -30px;
  width: 220px;
  height: 320px;
  background: no-repeat center / contain
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 40' fill='none' stroke='%23ffffff' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 39V15'/%3E%3Cpath d='M12 15c-2.2-1-3.4-3-3.4-5.4 2.2 0 4.2 1 4.4 3.2'/%3E%3Cpath d='M12 15c2.2-1 3.4-3 3.4-5.4-2.2 0-4.2 1-4.4 3.2'/%3E%3Cpath d='M12 20c-2-1-3-2.6-3-4.8 2 0 3.6 1 4 2.6'/%3E%3Cpath d='M12 20c2-1 3-2.6 3-4.8-2 0-3.6 1-4 2.6'/%3E%3Ccircle cx='12' cy='6' r='1.5'/%3E%3C/svg%3E");
  opacity: .07;
  pointer-events: none;
  z-index: 0;
}
.section--band .container { position: relative; z-index: 1; }

/* ---- page / contact hero: serif title ---- */
.page-hero h2, .contact-hero h2 { font-size: clamp(1.9rem, 4vw, 2.85rem); }

/* ---- doc pages ---- */
.doc h2, .doc h3 { letter-spacing: -.005em; }
.err__code { letter-spacing: -.02em; }

/* ---- refined focal motion: hover-lift with accent-tinted shadow ---- */
@media (hover: hover) {
  .card, .price-card, .member, .channel, .note-list li, .testi { will-change: auto; }
  .testi:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-accent);
    border-color: rgba(138, 124, 182, .4);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease-io);
  }
}

/* reduced-motion: decorative sprigs stay (static), no new animation introduced */
@media (prefers-reduced-motion: reduce) {
  .testi { transition: none !important; }
}
