/* ============================================================
   MEKÂN — Mekânın kendi kokusu
   minimal-monochrome-index · tek renk · indeks-liste · geniş boşluk
   ============================================================ */

:root {
  /* warm apothecary-paper monochrome — "tek renk", warmed toward premium */
  --bg: #FAF7F1;            /* warm bone paper */
  --surface: #F1ECE1;       /* warm sand */
  --surface-2: #E7E0D1;
  --ink: #18140D;           /* warm near-black */
  --ink-soft: #4A4236;      /* warm soft ink */
  --accent: #18140D;
  --accent-2: #756C5E;      /* warm taupe — ≥4.5:1 on paper for secondary text */
  --warm: #7A5A38;          /* tobacco — micro-accents & shadow tints only */
  --warm-shadow: rgba(60, 42, 24, 0.30);
  --line: rgba(24, 20, 13, 0.13);
  --line-strong: rgba(24, 20, 13, 0.30);
  --header-h: 74px;
  --maxw: 1120px;
  --pad: clamp(24px, 5vw, 76px);
  --ff-head: "Inter", "Neue Haas Grotesk Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --ff-body: "Inter", "Helvetica Neue", Arial, sans-serif;
  --ff-serif: "Fraunces", "Iowan Old Style", "Hoefler Text", Georgia, "Times New Roman", serif;
  --ff-mono: "Spline Sans Mono", ui-monospace, "SFMono-Regular", "Menlo", monospace;
  interpolate-size: allow-keywords;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -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(--ff-body);
  font-weight: 400;
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.64;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "tnum" 0;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--ff-head);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0;
}

/* Editorial serif voice — the display moments, tied to the cinematic hero */
.hero__title,
.sec-head__title,
.note-grid__head,
.cta-band h2,
.page-hero h1,
.index-row__name,
.match-card h3,
.stat__num,
.tier__price,
.footer-brand__name,
.tst__q {
  font-family: var(--ff-serif);
  font-weight: 400;
  letter-spacing: -0.012em;
}
:is(.hero__title,.sec-head__title,.note-grid__head,.cta-band h2,.page-hero h1) em {
  font-style: italic;
  font-weight: 400;
}

/* Mono numerals — reinforce the "koku indeksi" apothecary system */
.sec-head__no, .index-row__no, .index-row__code, .index-row__price,
.match-card__no, .step__when, .notes-list time, .hours__time,
.team-card__role, .tier__unit {
  font-family: var(--ff-mono);
  font-feature-settings: "tnum" 1;
}

p { margin: 0 0 1.1em; }

.tnum { font-variant-numeric: tabular-nums; font-feature-settings: "tnum" 1; }

/* ---------- layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.section { padding-block: clamp(64px, 10vw, 132px); }
.section--tight { padding-block: clamp(48px, 7vw, 88px); }

main { padding-top: var(--header-h); }

.rule {
  height: 1px;
  background: var(--line);
  border: 0;
  margin: 0;
}

.eyebrow {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--warm);
  margin: 0 0 clamp(20px, 3vw, 34px);
  display: flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--warm);
  display: inline-block;
}

/* section head with number */
.sec-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(16px, 3vw, 38px);
  align-items: baseline;
  margin-bottom: clamp(32px, 5vw, 64px);
}
.sec-head__no {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: var(--warm);
  padding-top: 0.7em;
  font-variant-numeric: tabular-nums;
}
.sec-head__title {
  font-size: clamp(1.9rem, 5vw, 3.4rem);
  line-height: 1.0;
}
.sec-head__lead {
  grid-column: 2;
  max-width: 54ch;
  color: var(--ink-soft);
  margin-top: 1.15rem;
  font-size: clamp(1rem, 1.4vw, 1.12rem);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1080;
  height: var(--header-h);
  background: rgba(250, 247, 241, 0.88);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: background 240ms ease, border-color 240ms ease, box-shadow 240ms ease, height 240ms ease;
}
.site-header.is-scrolled {
  background: rgba(250, 247, 241, 0.97);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -20px var(--warm-shadow);
  height: 64px;
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--ff-head);
  font-weight: 500;
  font-size: 1.12rem;
  letter-spacing: 0.02em;
}
.brand__mark {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  color: var(--accent-2);
  text-transform: uppercase;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: clamp(20px, 2.6vw, 40px);
}
.nav-desktop a {
  position: relative;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  padding: 6px 0;
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--ink);
  transition: width 240ms cubic-bezier(.2,.7,.2,1);
}
.nav-desktop a:hover::after,
.nav-desktop a:focus-visible::after,
.nav-desktop a.is-active::after { width: 100%; }
.nav-desktop a.is-active { color: var(--ink); }

.nav-cta {
  border: 1px solid var(--ink);
  padding: 9px 18px !important;
  border-radius: 0;
  color: var(--ink);
  transition: background 220ms ease, color 220ms ease;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover,
.nav-desktop .nav-cta:focus-visible {
  background: var(--ink);
  color: var(--bg);
}

/* hamburger */
.nav-toggle {
  position: relative;
  z-index: 1100;
  width: 44px; height: 44px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--ink);
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), opacity 200ms ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .nav-toggle { display: none; }
}

/* ---------- drawer ---------- */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1040;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 240ms ease, visibility 240ms ease;
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  z-index: 1050;
  width: min(360px, 92vw);
  background: var(--bg);
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  display: flex;
  flex-direction: column;
  padding: calc(var(--header-h) + 20px) 32px 32px;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  font-family: var(--ff-head);
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  transition: padding-left 220ms ease, color 220ms ease;
}
.drawer a:hover, .drawer a:focus-visible { padding-left: 8px; color: var(--accent-2); }
.drawer .drawer-cta {
  margin-top: 24px;
  border: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  text-align: center;
  font-size: 0.95rem;
  padding: 16px 0;
  color: var(--bg);
  background: var(--ink);
}
.drawer .drawer-cta:hover, .drawer .drawer-cta:focus-visible {
  padding-left: 0;
  background: #000;
  color: var(--bg);
  border-color: #000;
}
@media (min-width: 1024px) {
  .drawer, .drawer-backdrop { display: none; }
}

/* ============================================================
   HERO — cinematic full-bleed photo
   ============================================================ */
.hero {
  position: relative;
  margin-top: calc(-1 * var(--header-h));   /* pull under fixed header for full-bleed */
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  background: #0c0d0c;                        /* fallback while photo loads */
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.06);
  transform-origin: 60% 40%;
  animation: heroKen 22s ease-in-out 300ms both alternate infinite;
  will-change: transform;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  /* darker at bottom where text sits → text contrast ≥ 4.5:1 on white type */
  background:
    linear-gradient(180deg, rgba(8,9,8,0.42) 0%, rgba(8,9,8,0.12) 30%, rgba(8,9,8,0.55) 68%, rgba(6,7,6,0.86) 100%),
    linear-gradient(90deg, rgba(8,9,8,0.45) 0%, rgba(8,9,8,0.0) 55%);
}
@keyframes heroKen {
  from { transform: scale(1.04) translate3d(0,0,0); }
  to   { transform: scale(1.13) translate3d(-1.5%, -2%, 0); }
}

.hero__inner {
  position: relative;
  width: 100%;
  padding-top: calc(var(--header-h) + clamp(40px, 10vh, 96px));
  padding-bottom: clamp(40px, 7vh, 76px);
}

.hero__eyebrow {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  margin: 0 0 clamp(20px, 3vh, 30px);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: heroFade 800ms ease both 120ms;
}
.hero__eyebrow::before {
  content: "";
  width: 34px; height: 1px;
  background: rgba(255,255,255,0.6);
}

.hero__title {
  font-family: var(--ff-serif);
  font-weight: 500;
  color: #fff;
  font-size: clamp(2.1rem, 8.4vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  max-width: 15ch;
  margin: 0;
  text-shadow: 0 2px 28px rgba(0,0,0,0.35);
}
.hero__title em {
  font-style: italic;
  font-weight: 500;
}
.hero__title .word { display: inline-block; overflow: hidden; vertical-align: top; }
.hero__title .word > span { white-space: nowrap; }   /* Türkçe kelimeleri bölme */
/* Resting state is VISIBLE; hidden position lives only inside the keyframe,
   so if animations are disabled the title still shows and never clips. */
.hero__title .word > span {
  display: inline-block;
  animation: wordUp 1000ms cubic-bezier(.2,.75,.2,1) both;
  animation-delay: calc(var(--i, 0) * 110ms + 260ms);
}
@keyframes wordUp {
  from { transform: translateY(110%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
@keyframes heroFade {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__sub {
  max-width: 48ch;
  color: rgba(255,255,255,0.86);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.6;
  margin: clamp(22px, 3.4vh, 34px) 0 0;
  opacity: 0;
  animation: heroFade 800ms ease both 620ms;
}
.hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: clamp(26px, 3.4vh, 38px);
  opacity: 0;
  animation: heroFade 800ms ease both 760ms;
}

/* CTA on dark photo: primary flips to light so it never blends with the bg */
.hero .btn-primary {
  background: #fff;
  color: #101010;
  border-color: #fff;
}
.hero .btn-primary:hover,
.hero .btn-primary:focus-visible {
  background: #f2f2f0;
  color: #101010;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px -18px rgba(0,0,0,0.7);
}
.btn-ghost--onphoto {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.55);
}
.btn-ghost--onphoto:hover,
.btn-ghost--onphoto:focus-visible {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: #fff;
  transform: translateY(-2px);
}

.hero__stats {
  list-style: none;
  margin: clamp(30px, 5vh, 54px) 0 0;
  padding: clamp(20px, 3vh, 26px) 0 0;
  border-top: 1px solid rgba(255,255,255,0.22);
  display: flex;
  flex-wrap: wrap;
  gap: 18px 34px;
  opacity: 0;
  animation: heroFade 800ms ease both 900ms;
}
.hero__stats li {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.hero__stats b {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: clamp(1.15rem, 2.4vw, 1.6rem);
  color: #fff;
  line-height: 1;
}
.hero__stats span {
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.68);
}

@media (prefers-reduced-motion: reduce) {
  .hero__img { animation: none !important; transform: scale(1.04) !important; }
  .hero__eyebrow, .hero__sub, .hero__cta-row, .hero__stats { animation: none !important; opacity: 1 !important; }
}
/* no-JS: everything visible & static (no-js class removed by inline script) */
html.no-js .hero__img { animation: none; transform: scale(1.04); }
html.no-js .hero__eyebrow,
html.no-js .hero__sub,
html.no-js .hero__cta-row,
html.no-js .hero__stats { opacity: 1; animation: none; }

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 15px 26px;
  border-radius: 0;
  cursor: pointer;
  border: 1px solid var(--ink);
  transition: background 220ms ease, color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}
.btn__arrow { transition: transform 260ms cubic-bezier(.2,.7,.2,1); }
.btn:hover .btn__arrow { transform: translateX(5px); }
/* Primary CTA stays confidently dark on hover (a deepen + lift + shadow),
   rather than washing out to grey — grey read as "fading/disabling". */
.btn-primary { background: var(--ink); color: var(--bg); box-shadow: 0 0 0 0 rgba(0,0,0,0); }
.btn-primary:hover, .btn-primary:focus-visible { background: #000; color: var(--bg); transform: translateY(-2px); box-shadow: 0 16px 30px -18px rgba(0,0,0,0.55); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover, .btn-ghost:focus-visible { background: var(--surface); color: var(--ink); transform: translateY(-2px); }

/* trust strip */
.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: clamp(28px, 4vw, 44px);
  font-size: 0.74rem;
  letter-spacing: 0.02em;
  color: var(--accent-2);
}
.trust span { display: inline-flex; align-items: center; gap: 8px; }
.trust span::before { content: ""; width: 5px; height: 5px; background: var(--ink); border-radius: 50%; }

/* ============================================================
   INDEX LIST — numbered scent index with buğu animation
   ============================================================ */
.index-list { border-top: 1px solid var(--ink); }
.index-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  padding: clamp(24px, 3.4vw, 38px) 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: padding-left 320ms cubic-bezier(.2,.7,.2,1), background 320ms ease;
}
.index-row::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 2px; height: 0;
  background: var(--warm);
  transform: translateY(-50%);
  transition: height 360ms cubic-bezier(.2,.7,.2,1);
}
.index-row:last-child { border-bottom: 1px solid var(--ink); }
.index-row:hover { padding-left: clamp(14px, 2vw, 28px); }
.index-row:hover::before { height: 58%; }

.index-row__no {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--accent-2);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.index-row:hover .index-row__no { color: var(--warm); }

.index-row__body { min-width: 0; }
.index-row__name {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: clamp(1.65rem, 4.8vw, 2.75rem);
  letter-spacing: -0.012em;
  line-height: 1.02;
  display: inline-block;
  position: relative;
}
.index-row__name::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1.5px;
  background: var(--ink);
  transition: width 380ms cubic-bezier(.2,.7,.2,1);
}
.index-row:hover .index-row__name::after { width: 100%; }
.index-row__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 10px;
  font-size: 0.78rem;
  color: var(--accent-2);
  letter-spacing: 0.02em;
}
.index-row__code {
  border: 1px solid var(--line);
  padding: 1px 8px;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: var(--ink);
}

.index-row__right {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
  justify-self: end;
}
.index-row__price {
  font-size: 0.92rem;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  color: var(--ink);
}
/* buğu — smoke rising from diffuser sticks on hover */
.bugu {
  position: relative;
  width: 30px; height: 46px;
  flex: none;
  display: none;
}
@media (min-width: 560px) { .bugu { display: block; } }
.bugu__stick {
  position: absolute;
  bottom: 0;
  width: 1px;
  height: 26px;
  background: var(--line-strong);
}
.bugu__stick:nth-child(1) { left: 11px; }
.bugu__stick:nth-child(2) { left: 15px; height: 30px; }
.bugu__stick:nth-child(3) { left: 19px; }
.bugu__smoke {
  position: absolute;
  bottom: 30px;
  left: 15px;
  width: 2px;
  height: 0;
  background: linear-gradient(to top, rgba(60,42,24,0.42), transparent);
  border-radius: 2px;
  filter: blur(0.4px);
  opacity: 0;
  transform-origin: bottom center;
}
.bugu__smoke.s2 { left: 12px; }
.bugu__smoke.s3 { left: 18px; }
.index-row:hover .bugu__smoke {
  animation: buguRise 2.6s ease-out infinite;
}
.index-row:hover .bugu__smoke.s2 { animation-delay: 0.55s; }
.index-row:hover .bugu__smoke.s3 { animation-delay: 1.2s; }
@keyframes buguRise {
  0%   { height: 0; opacity: 0; transform: translateX(0) scaleX(1) scaleY(0.4); }
  20%  { opacity: 1; }
  60%  { opacity: 0.7; }
  100% { height: 38px; opacity: 0; transform: translateX(-7px) scaleX(1.6) scaleY(1); }
}

/* ============================================================
   SPACE MATCH — salon / ofis
   ============================================================ */
.match-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 48px);
}
@media (min-width: 780px) { .match-grid { grid-template-columns: 1fr 1fr; } }
.match-card {
  border-top: 1px solid var(--ink);
  padding-top: 22px;
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms cubic-bezier(.2,.7,.2,1);
}
.match-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 44px -28px rgba(60,42,24,0.5);
}
.match-card__fig {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  margin-bottom: 22px;
  background: var(--surface);
}
.match-card__fig img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.92) sepia(0.16) brightness(1.02) contrast(1.02);
  transition: transform 900ms cubic-bezier(.2,.7,.2,1), filter 700ms ease;
}
.match-card:hover .match-card__fig img { transform: scale(1.05); filter: grayscale(0.35) sepia(0.08) contrast(1.03); }
.match-card__no {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--accent-2);
  font-variant-numeric: tabular-nums;
}
.match-card h3 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  margin: 10px 0 12px;
}
.match-card p { color: var(--ink-soft); margin-bottom: 16px; }
.match-card__pairs {
  list-style: none;
  margin: 0; padding: 0;
  border-top: 1px solid var(--line);
}
.match-card__pairs li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.85rem;
}
.match-card__pairs li span:last-child { color: var(--accent-2); font-variant-numeric: tabular-nums; }

/* ============================================================
   USAGE NOTE
   ============================================================ */
.note-band {
  background: var(--ink);
  color: var(--bg);
}
.note-band .eyebrow { color: rgba(255,255,255,0.55); }
.note-band .eyebrow::before { background: rgba(255,255,255,0.7); }
.note-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}
@media (min-width: 820px) { .note-grid { grid-template-columns: 0.9fr 1.1fr; } }
.note-grid__head {
  font-size: clamp(1.8rem, 4.6vw, 3rem);
  letter-spacing: -0.025em;
  line-height: 1.02;
}
.note-steps { list-style: none; margin: 0; padding: 0; }
.note-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.16);
}
.note-steps li:last-child { border-bottom: 1px solid rgba(255,255,255,0.16); }
.note-steps__no {
  font-family: var(--ff-mono);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.42);
  font-variant-numeric: tabular-nums;
  padding-top: 4px;
}
.note-steps__b { display: flex; align-items: flex-start; gap: 16px; }
.note-steps__ic {
  flex: none;
  width: 30px; height: 30px;
  color: rgba(255,255,255,0.85);
  margin-top: 1px;
}
.note-steps__ic svg { width: 100%; height: 100%; display: block; }
.note-steps__tx { min-width: 0; }
.note-steps__b h4 { font-size: 1.08rem; margin-bottom: 6px; font-family: var(--ff-head); font-weight: 500; letter-spacing: 0.01em; }
.note-steps__b p { color: rgba(255,255,255,0.7); margin: 0; font-size: 0.92rem; }
.note-grid__head em { color: #fff; }

/* ============================================================
   STATS
   ============================================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (min-width: 720px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat {
  background: var(--bg);
  padding: clamp(24px, 4vw, 40px) clamp(18px, 2.5vw, 28px);
}
.stat__num {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: clamp(2.3rem, 5.4vw, 3.5rem);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.stat__label {
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--accent-2);
  letter-spacing: 0.02em;
}

/* ============================================================
   CTA band
   ============================================================ */
.cta-band { background: var(--surface); }
.cta-band__inner {
  display: grid;
  gap: clamp(24px, 4vw, 40px);
}
@media (min-width: 820px) {
  .cta-band__inner { grid-template-columns: 1.3fr 1fr; align-items: center; }
}
.cta-band h2 {
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  letter-spacing: -0.025em;
}
.cta-band p { color: var(--ink-soft); margin-top: 14px; max-width: 44ch; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ============================================================
   CONTACT (footer contact block + iletisim page)
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
  gap: clamp(16px, 2.4vw, 24px);
}
.contact-card {
  border: 1px solid var(--line);
  padding: 22px 22px 24px;
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms cubic-bezier(.2,.7,.2,1), border-color 240ms ease;
  min-width: 0;
}
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 44px -28px rgba(60,42,24,0.4);
  border-color: var(--line-strong);
}
.contact-card__ic {
  width: 46px; height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  margin-bottom: 16px;
  color: var(--ink);
}
.contact-card__ic svg { width: 20px; height: 20px; }
.contact-card h3 {
  font-family: var(--ff-mono);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 8px;
}
.contact-card__val {
  font-size: 1.02rem;
  color: var(--ink);
  word-break: break-word;
  overflow-wrap: anywhere;
  display: inline-block;
}
a.contact-card__val { border-bottom: 1px solid transparent; transition: border-color 200ms ease; }
a.contact-card__val:hover { border-bottom-color: var(--ink); }
.contact-card__sub { margin-top: 6px; font-size: 0.8rem; color: var(--accent-2); }

/* hours grid */
.hours { border-top: 1px solid var(--ink); }
.hours__row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}
.hours__row.is-today { font-weight: 500; }
.hours__row.is-today .hours__day::after { content: " · bugün"; color: var(--accent-2); font-weight: 400; font-size: 0.8rem; }
.hours__time { font-variant-numeric: tabular-nums; color: var(--ink-soft); }

/* ============================================================
   FORM
   ============================================================ */
.form {
  display: grid;
  gap: 20px;
}
.form__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) { .form__grid { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.field label, .field > span {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-2);
}
.field label .opt { text-transform: none; letter-spacing: 0; opacity: 0.75; }
.field input,
.field select,
.field textarea {
  font-family: var(--ff-body);
  font-size: 0.98rem;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1.5px solid var(--line);
  padding: 10px 2px;
  transition: border-color 220ms ease;
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--ink);
}
.field textarea { resize: vertical; min-height: 130px; }
.field--full { grid-column: 1 / -1; }

.field.kvkk {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}
.field.kvkk label {
  font-family: var(--ff-body);
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.86rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.field input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  width: 18px; height: 18px;
  min-width: 18px; min-height: 18px;
  padding: 0; border: 0; margin: 2px 0 0;
  accent-color: var(--accent);
}
.form button[type="submit"] {
  justify-self: start;
  width: 100%;
}
@media (min-width: 640px) { .form button[type="submit"] { width: auto; } }

/* ============================================================
   FAQ — pure CSS
   ============================================================ */
.faq { border-top: 1px solid var(--ink); }
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  font-family: var(--ff-head);
  font-weight: 500;
  font-size: clamp(1.05rem, 2.4vw, 1.32rem);
  letter-spacing: -0.01em;
  transition: color 220ms ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--accent-2); }
.faq summary:hover .plus::before,
.faq summary:hover .plus::after { background: var(--accent-2); }
.faq summary .plus {
  position: relative;
  width: 16px; height: 16px;
  flex: none;
}
.faq summary .plus::before,
.faq summary .plus::after {
  content: "";
  position: absolute;
  background: var(--ink);
  transition: transform 300ms cubic-bezier(.4,0,.2,1);
}
.faq summary .plus::before { top: 7.25px; left: 0; width: 16px; height: 1.5px; }
.faq summary .plus::after { left: 7.25px; top: 0; width: 1.5px; height: 16px; }
.faq details[open] summary .plus::after { transform: rotate(90deg); opacity: 0; }
/* Collapsible answer via grid-template-rows 0fr→1fr — animates reliably
   across browsers (Chrome 107+, Firefox 66+, Safari 16+) without depending
   on the newer interpolate-size/height:auto transition. */
.faq .answer {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  padding-block-end: 0;
  transition: grid-template-rows 360ms cubic-bezier(.4,0,.2,1),
              padding-block-end 360ms cubic-bezier(.4,0,.2,1);
}
.faq .answer > p { min-height: 0; overflow: hidden; color: var(--ink-soft); margin: 0; max-width: 62ch; }
.faq details[open] .answer {
  grid-template-rows: 1fr;
  padding-block-end: 26px;
}
@media (prefers-reduced-motion: reduce) { .faq .answer { transition: none; } }

/* ============================================================
   TEXT PAGES (policies, about)
   ============================================================ */
.page-hero {
  padding-top: clamp(40px, 7vw, 84px);
  padding-bottom: clamp(28px, 4vw, 48px);
  border-bottom: 1px solid var(--ink);
}
.page-hero h1 { font-size: clamp(2.1rem, 7vw, 4.4rem); letter-spacing: -0.03em; }
.page-hero p { color: var(--ink-soft); max-width: 54ch; margin-top: 18px; }

.prose { max-width: 720px; }
.prose h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  margin: clamp(36px, 5vw, 56px) 0 14px;
}
.prose h3 { font-size: 1.15rem; margin: 28px 0 10px; font-family: var(--ff-body); font-weight: 600; }
.prose p, .prose li { color: var(--ink-soft); }
.prose ul, .prose ol { padding-left: 1.2em; margin: 0 0 1.1em; }
.prose li { margin-bottom: 0.5em; }
.prose a { border-bottom: 1px solid var(--line); }
.prose a:hover { border-bottom-color: var(--ink); }
.prose .updated { font-size: 0.82rem; color: var(--accent-2); }

/* about team */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 3vw, 36px);
}
@media (min-width: 720px) { .team-grid { grid-template-columns: 1fr 1fr; } }
.team-card {
  border-top: 1px solid var(--ink);
  padding-top: 20px;
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms cubic-bezier(.2,.7,.2,1);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 44px -28px rgba(60,42,24,0.5);
}
.team-card__role { font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-2); }
.team-card h3 { font-size: 1.4rem; margin: 8px 0 12px; }
.team-card p { color: var(--ink-soft); font-size: 0.92rem; margin: 0; }

/* notes / news */
.notes-list { border-top: 1px solid var(--ink); }
.notes-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(14px, 3vw, 30px);
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.notes-list time { font-size: 0.78rem; color: var(--accent-2); font-variant-numeric: tabular-nums; white-space: nowrap; }
.notes-list h4 { font-family: var(--ff-body); font-weight: 500; font-size: 1.02rem; margin-bottom: 4px; }
.notes-list p { color: var(--ink-soft); font-size: 0.9rem; margin: 0; }

/* testimonials */
.tst-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 32px);
}
@media (min-width: 760px) { .tst-grid { grid-template-columns: 1fr 1fr; } }
.tst {
  border: 1px solid var(--line);
  padding: clamp(22px, 3vw, 30px);
  display: flex;
  flex-direction: column;
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), border-color 240ms ease, box-shadow 240ms cubic-bezier(.2,.7,.2,1);
}
.tst:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: 0 24px 44px -28px rgba(60,42,24,0.32);
}
.tst__q { font-size: clamp(1.12rem, 1.9vw, 1.34rem); color: var(--ink); line-height: 1.5; margin: 0 0 22px; }
.tst__meta { margin-top: auto; font-size: 0.82rem; color: var(--accent-2); }
.tst__meta strong { color: var(--ink); font-weight: 500; display: block; margin-bottom: 2px; }

/* pricing tiers */
.tiers {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 2.4vw, 26px);
}
@media (min-width: 820px) { .tiers { grid-template-columns: repeat(3, 1fr); } }
.tier {
  position: relative;
  border: 1px solid var(--line);
  background: var(--bg);
  padding: clamp(26px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), border-color 240ms ease, box-shadow 240ms cubic-bezier(.2,.7,.2,1);
}
.tier:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: 0 26px 50px -30px var(--warm-shadow);
}
.tier.is-mid { border-color: var(--ink); background: var(--surface); }
.tier.is-mid:hover { border-color: var(--ink); box-shadow: 0 30px 56px -28px var(--warm-shadow); }
@media (min-width: 820px) { .tier.is-mid { transform: translateY(-10px); } .tier.is-mid:hover { transform: translateY(-16px); } }
.tier__badge {
  position: absolute;
  top: -1px; right: clamp(20px, 3vw, 32px);
  transform: translateY(-50%);
  background: var(--ink);
  color: var(--bg);
  font-family: var(--ff-mono);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 12px;
}
.tier__ic {
  width: 40px; height: 40px;
  color: var(--warm);
  margin-bottom: 18px;
}
.tier__ic svg { width: 100%; height: 100%; display: block; }
.tier__name { font-family: var(--ff-head); font-weight: 500; font-size: 1.32rem; letter-spacing: 0.01em; }
.tier__price {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: clamp(2rem, 3.8vw, 2.5rem);
  letter-spacing: -0.015em;
  font-variant-numeric: tabular-nums;
  margin: 14px 0 4px;
}
.tier__price small { font-size: 0.78rem; color: var(--accent-2); letter-spacing: 0.02em; font-family: var(--ff-mono); }
.tier__unit { font-size: 0.82rem; color: var(--accent-2); margin-bottom: 20px; }
.tier ul { list-style: none; margin: 0 0 20px; padding: 0; border-top: 1px solid var(--line); }
.tier li { padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 0.88rem; display: flex; gap: 10px; }
.tier li::before { content: "—"; color: var(--accent-2); }
.tier li.no { color: var(--accent-2); }
.tier li.no::before { content: "×"; }
.tier .btn { margin-top: auto; justify-content: center; }
.tier__disc { font-size: 0.74rem; color: var(--accent-2); margin-top: 14px; }

/* process steps */
.steps { border-top: 1px solid var(--ink); }
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(16px, 3vw, 34px);
  padding: clamp(22px, 3vw, 32px) 0;
  border-bottom: 1px solid var(--line);
}
.step__no { font-family: var(--ff-head); font-weight: 500; font-size: clamp(1.4rem, 3vw, 2rem); color: var(--accent-2); font-variant-numeric: tabular-nums; }
.step__b h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step__b p { color: var(--ink-soft); margin: 0 0 8px; }
.step__when { font-size: 0.76rem; letter-spacing: 0.06em; color: var(--accent-2); text-transform: uppercase; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--ink);
  padding-top: clamp(52px, 7vw, 84px);
  padding-bottom: 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(30px, 5vw, 48px);
  margin-bottom: clamp(40px, 6vw, 64px);
}
@media (min-width: 760px) { .footer-top { grid-template-columns: 1.6fr 1fr 1fr; } }
.footer-brand__name { font-family: var(--ff-serif); font-weight: 400; font-size: 2rem; letter-spacing: -0.01em; }
.footer-brand p { color: var(--ink-soft); max-width: 40ch; margin-top: 14px; font-size: 0.92rem; }
.footer-col h4 { font-family: var(--ff-mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--warm); margin-bottom: 18px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 0.9rem; color: var(--ink-soft); transition: color 200ms ease; word-break: break-word; }
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  color: var(--accent-2);
}
.footer-bottom a { color: var(--accent-2); }
.footer-bottom a:hover { color: var(--ink); }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--bg);
  border: 1px solid var(--ink);
  padding: 22px 22px 20px;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms ease;
  z-index: 9999;
  box-shadow: 0 20px 50px -24px rgba(0,0,0,0.4);
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
@media (min-width: 720px) { .cookie-banner { left: 24px; right: auto; max-width: 420px; } }
.cookie-banner h2 { font-size: 1.05rem; margin-bottom: 8px; font-family: var(--ff-body); font-weight: 600; }
.cookie-banner p { font-size: 0.86rem; color: var(--ink-soft); margin-bottom: 16px; }
.cookie-banner p a { border-bottom: 1px solid var(--line); }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-actions button {
  flex: 1 1 auto;
  min-height: 44px;
  padding: 10px 16px;
  font-family: var(--ff-body);
  font-size: 0.82rem;
  cursor: pointer;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  transition: background 200ms ease, color 200ms ease, box-shadow 200ms ease;
}
/* Accept and Reject carry equal visual weight (same size, border and
   font-weight) so declining is as easy as accepting; Settings is tertiary. */
.cookie-actions button[data-consent="accept"] { background: var(--ink); color: var(--bg); font-weight: 500; }
.cookie-actions button[data-consent="accept"]:hover,
.cookie-actions button[data-consent="accept"]:focus-visible { background: #000; color: var(--bg); box-shadow: 0 12px 24px -16px rgba(0,0,0,0.55); }
.cookie-actions button[data-consent="reject"] { background: var(--bg); color: var(--ink); font-weight: 500; }
.cookie-actions button[data-consent="reject"]:hover,
.cookie-actions button[data-consent="reject"]:focus-visible { background: var(--ink); color: var(--bg); }
.cookie-actions button[data-consent="settings"] { flex: 0 1 auto; border-color: var(--line); color: var(--ink-soft); }
.cookie-actions button[data-consent="settings"]:hover,
.cookie-actions button[data-consent="settings"]:focus-visible { background: var(--surface); border-color: var(--ink); color: var(--ink); }

/* cookie settings 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,0.55);
}
.cookie-modal.is-open { display: flex; }
.cookie-modal__box {
  background: var(--bg);
  border: 1px solid var(--ink);
  max-width: 460px;
  width: 100%;
  padding: clamp(24px, 4vw, 34px);
  max-height: 90vh;
  overflow-y: auto;
}
.cookie-modal__box h2 { font-size: 1.3rem; margin-bottom: 8px; }
.cookie-modal__box > p { font-size: 0.88rem; color: var(--ink-soft); margin-bottom: 20px; }
.cookie-toggle {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.cookie-toggle:last-of-type { border-bottom: 1px solid var(--line); margin-bottom: 20px; }
.cookie-toggle h3 { font-size: 0.95rem; margin-bottom: 4px; font-family: var(--ff-body); font-weight: 600; }
.cookie-toggle p { font-size: 0.8rem; color: var(--accent-2); margin: 0; }
.switch { position: relative; width: 44px; height: 24px; flex: none; margin-top: 3px; }
.switch input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.switch .track { position: absolute; inset: 0; background: var(--line-strong); transition: background 220ms ease; border-radius: 12px; }
.switch .track::after { content: ""; position: absolute; top: 2px; left: 2px; width: 20px; height: 20px; background: #fff; border-radius: 50%; transition: transform 220ms ease; }
.switch input:checked + .track { background: var(--ink); }
.switch input:checked + .track::after { transform: translateX(20px); }
.switch input:disabled + .track { opacity: 0.5; }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms cubic-bezier(.2,.7,.2,1), transform 700ms cubic-bezier(.2,.7,.2,1);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero h1 .word > span { animation: none !important; transform: none !important; }
  .index-row:hover .bugu__smoke, .match-card__fig img { animation: none !important; }
  /* Neutralise hover lifts/scales so motion-sensitive users get a calm,
     colour/border-only feedback state instead of translate/scale jumps. */
  .btn:hover, .btn:focus-visible,
  .btn-primary:hover, .btn-primary:focus-visible,
  .btn-ghost:hover, .btn-ghost:focus-visible,
  .tst:hover, .tier:hover, .contact-card:hover,
  .match-card:hover, .team-card:hover,
  .index-row:hover, .match-card:hover .match-card__fig img { transform: none !important; }
  .btn__arrow { transition: none !important; }
}
html.no-js .reveal { opacity: 1; transform: none; }
html.no-js .hero h1 .word > span { transform: none; }

/* ============================================================
   A11y
   ============================================================ */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10001;
  background: var(--ink);
  color: var(--bg);
  padding: 12px 18px;
  font-size: 0.85rem;
}
.skip-link:focus { left: 8px; top: 8px; }

a:focus-visible, button:focus-visible,
input:focus-visible, select:focus-visible,
textarea:focus-visible, summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ============================================================
   TABLE SCROLL
   ============================================================ */
.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);
}
.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-scroll th, .table-scroll td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
}
.table-scroll th { font-weight: 500; color: var(--ink); font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; }
.table-scroll td { color: var(--ink-soft); font-variant-numeric: tabular-nums; }

/* utilities */
.mono { font-variant-numeric: tabular-nums; }
.center { text-align: center; }
.lead { font-size: clamp(1.05rem, 2vw, 1.28rem); color: var(--ink-soft); max-width: 60ch; }
.break { word-break: break-word; overflow-wrap: anywhere; }

.scroll-progress{position:fixed;top:0;left:0;height:3px;width:0;background:var(--accent);z-index:9998;transition:width 80ms linear;pointer-events:none}

/* header-cta-padding-guard v1 */
.nav-desktop a.nav-cta, header a.nav-cta, .site-header a.nav-cta {
  padding: 10px 18px;
}
