/* ============================================================
   Mîra Koku Evi — niş parfüm vitrini
   Art direction: "Karaköy Amber Noir"
   Cinematic ink + warm gold, editorial Fraunces display.
   Palet: bg #0E1116 · surface #161A21 · ink #EDEFF3
   accent #E7B24A (amber altını) · accent-2 #F0CE7E (soft gold)
   Aile renkleri (semantik): odunsu #B47A3C · çiçeksi #E678B4
   · fujer #33D6A6 (nane) · oryantal #F2A03C
   ============================================================ */

:root {
  --bg: #0E1116;
  --surface: #161A21;
  --surface-2: #1E232C;
  --surface-3: #272D38;
  --ink: #EDEFF3;
  --ink-soft: #A7AEBA;
  --ink-mute: #8A91A0;

  --accent: #E7B24A;            /* amber altını — primary */
  --accent-hi: #F4C766;         /* hover / lifted gold */
  --accent-deep: #B7862F;       /* gradient partner */
  --accent-ink: #231903;        /* text on gold */
  --accent-2: #F0CE7E;          /* soft gold highlight */
  --accent-soft: rgba(231,178,74,0.14);
  --glow: rgba(231,178,74,0.34);

  --line: rgba(237,239,243,0.09);
  --line-strong: rgba(237,239,243,0.18);
  --danger: #E86A6A;

  --header-h: 76px;
  --maxw: 1320px;
  --pad: clamp(16px, 3vw, 40px);
  --radius: 16px;
  --ease: cubic-bezier(.2,.7,.2,1);
  --ease-2: cubic-bezier(.4,0,.2,1);

  --display: 'Fraunces', 'Cormorant Garamond', ui-serif, 'Iowan Old Style', 'Palatino Linotype', Palatino, Georgia, 'Times New Roman', serif;
  --serif: var(--display);
  --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --grotesk: 'Archivo', 'Inter', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;

  interpolate-size: allow-keywords;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: hidden; max-width: 100vw; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* faint warm vignette anchoring the amber art direction */
  background-image:
    radial-gradient(120% 60% at 82% -8%, rgba(231,178,74,0.07), transparent 60%),
    radial-gradient(90% 50% at -10% 108%, rgba(231,178,74,0.05), transparent 60%);
  background-attachment: fixed;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 430;
  letter-spacing: -0.012em;
  line-height: 1.05;
  margin: 0;
  color: var(--ink);
  font-optical-sizing: auto;
}
h4 {
  font-family: var(--grotesk);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0;
  color: var(--ink);
}
/* editorial italic accents inside display headings */
h1 em, h2 em, h3 em, .hero__title .accent-word, .accent-ital {
  font-style: italic;
  font-weight: 400;
  color: var(--accent-2);
}
p { margin: 0 0 1em; }

::selection { background: var(--accent); color: var(--accent-ink); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--accent); color: var(--accent-ink);
  padding: 10px 16px; border-radius: 8px; z-index: 2000;
  font-weight: 600; transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ---------- layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}
.section { padding-block: clamp(60px, 8.5vw, 128px); position: relative; }
.section--tight { padding-block: clamp(40px, 5vw, 76px); }
/* hairline rhythm between stacked sections */
.section + .section { border-top: 1px solid var(--line); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--accent); font-weight: 500;
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}
.section-head { max-width: 660px; margin-bottom: clamp(30px, 4vw, 52px); }
.section-head h2 { font-size: clamp(2rem, 4.6vw, 3.35rem); margin: 16px 0 14px; }
.section-head p { color: var(--ink-soft); font-size: 1.04rem; max-width: 58ch; }

.lede { color: var(--ink-soft); font-size: 1.08rem; }

/* ---------- header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1080;
  height: var(--header-h);
  display: flex; align-items: center;
  background: linear-gradient(180deg, rgba(10,12,16,0.78), rgba(10,12,16,0.28));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: height .24s var(--ease), background .24s var(--ease), border-color .24s var(--ease);
}
.site-header.is-scrolled {
  height: 64px;
  background: rgba(13,16,21,0.95);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px -18px rgba(0,0,0,.7);
}
.header-inner {
  width: 100%; max-width: var(--maxw); margin-inline: auto;
  padding-left: var(--pad); padding-right: var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--display); font-weight: 500;
  letter-spacing: -0.01em; font-size: 1.34rem; color: var(--ink);
  flex-shrink: 0;
}
.brand__mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(145deg, var(--accent-hi), var(--accent-deep));
  display: grid; place-items: center; color: var(--accent-ink);
  box-shadow: 0 0 0 1px rgba(231,178,74,.35), 0 8px 20px -8px rgba(231,178,74,.6);
}
.brand__mark svg { width: 20px; height: 20px; }
.brand small {
  display: block; font-family: var(--mono);
  font-size: 0.55rem; letter-spacing: 0.26em; color: var(--ink-mute);
  font-weight: 500; text-transform: uppercase; margin-top: 2px;
}

.nav-desktop { display: none; align-items: center; gap: 2px; }
.nav-desktop a {
  position: relative; padding: 9px 15px; font-size: 0.92rem;
  font-weight: 500; color: var(--ink-soft); border-radius: 8px;
  transition: color .2s var(--ease);
}
.nav-desktop a::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 3px;
  height: 2px; background: var(--accent); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform .28s var(--ease);
}
.nav-desktop a:hover { color: var(--ink); }
.nav-desktop a.is-active { color: var(--ink); }
.nav-desktop a.is-active::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 12px; }

.nav-cta {
  display: none; align-items: center; gap: 8px;
  background: var(--accent); color: var(--accent-ink);
  padding: 10px 18px; border-radius: 10px;
  font-weight: 600; font-size: 0.9rem; border: 0;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.nav-desktop .nav-cta::after { display: none; }
.nav-cta:hover, .nav-cta:focus-visible {
  background: var(--accent-hi); color: var(--accent-ink);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -10px var(--glow);
}

/* hamburger */
.nav-toggle {
  position: relative; z-index: 1100;
  width: 44px; height: 44px; border: 1px solid var(--line-strong);
  background: var(--surface-2); border-radius: 11px;
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}
.nav-toggle:hover, .nav-toggle:focus-visible {
  border-color: var(--accent); background: var(--surface-3);
  box-shadow: 0 6px 18px -10px var(--glow);
}
.nav-toggle:hover span { background: var(--accent); }
.nav-toggle span {
  width: 20px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease), background .2s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
}

/* ---------- drawer ---------- */
.drawer-backdrop {
  position: fixed; inset: 0; z-index: 1040;
  background: rgba(0,0,0,0.58);
  opacity: 0; visibility: hidden; transition: opacity .24s var(--ease), visibility .24s;
}
.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(--surface);
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform .32s var(--ease);
  display: flex; flex-direction: column;
  padding: calc(var(--header-h) + 12px) 26px 32px;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 4px; font-family: var(--display); font-weight: 500;
  font-size: 1.24rem; color: var(--ink); border-bottom: 1px solid var(--line);
  transition: color .2s var(--ease), padding-left .2s var(--ease);
}
.drawer a::after { content: "→"; color: var(--ink-mute); font-family: var(--sans); font-weight: 400; }
.drawer a:hover, .drawer a.is-active { color: var(--accent); padding-left: 10px; }
.drawer a.is-active::after { color: var(--accent); }
/* explicit, high-specificity CTA colour so it never inherits the plain link look */
.drawer a.drawer-cta, aside.drawer a.drawer-cta {
  margin-top: 22px; background: var(--accent); color: var(--accent-ink);
  border-radius: 12px; justify-content: center; border-bottom: 0;
  padding: 15px; font-size: 1rem; font-family: var(--grotesk); font-weight: 700;
}
.drawer a.drawer-cta::after { display: none; }
.drawer a.drawer-cta:hover { color: var(--accent-ink); padding-left: 0; background: var(--accent-hi); }
@media (min-width: 1024px) { .drawer, .drawer-backdrop { display: none; } }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 26px; border-radius: 12px; font-weight: 600; font-size: 0.96rem;
  font-family: var(--grotesk);
  border: 1px solid transparent; transition: transform .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
  line-height: 1;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent-hi); color: var(--accent-ink); transform: translateY(-2px);
  box-shadow: 0 14px 30px -12px var(--glow);
}
.btn-ghost { background: rgba(237,239,243,0.02); color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface-2); color: var(--ink); border-color: var(--accent); transform: translateY(-2px);
}
.btn-amber { background: var(--accent); color: var(--accent-ink); }
.btn-amber:hover, .btn-amber:focus-visible { background: var(--accent-hi); color: var(--accent-ink); transform: translateY(-2px); box-shadow: 0 14px 30px -12px var(--glow); }
.btn-block { width: 100%; justify-content: center; }

/* ---------- main ---------- */
main { padding-top: var(--header-h); }

/* ============================================================
   HERO — cinematic full-bleed photo (preserved)
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  margin-top: calc(var(--header-h) * -1);
  min-height: 90vh;
  display: flex; align-items: center;
  padding-top: calc(var(--header-h) + clamp(40px, 9vh, 96px));
  padding-bottom: clamp(48px, 9vh, 108px);
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__photo {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%;
  transform: scale(1.08);
  animation: heroKen 22s ease-in-out infinite alternate;
  will-change: transform;
}
.hero__scrim {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(80% 60% at 78% 40%, rgba(231,178,74,0.10), transparent 62%),
    linear-gradient(180deg, rgba(9,11,15,.60) 0%, rgba(9,11,15,.28) 32%, rgba(9,11,15,.55) 72%, rgba(9,11,15,.88) 100%),
    linear-gradient(90deg, rgba(9,11,15,.88) 0%, rgba(9,11,15,.54) 44%, rgba(9,11,15,.08) 100%);
}
@keyframes heroKen {
  from { transform: scale(1.08) translate3d(0, 0, 0); }
  to   { transform: scale(1.16) translate3d(-1.5%, -2%, 0); }
}

.hero__inner { position: relative; z-index: 2; width: 100%; }
.hero__lede { max-width: min(700px, 96%); }

.hero__eyebrow { color: var(--accent); animation: fadeUp .7s var(--ease) .05s both; }

.hero h1,
.hero__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.3rem, 6.8vw, 5.4rem);
  line-height: 1.02; letter-spacing: -0.018em;
  margin: 18px 0 22px; max-width: 15ch;
  color: #fff; text-shadow: 0 2px 40px rgba(0,0,0,.55);
}
.hero__title .word {
  display: inline-block; white-space: nowrap;
  animation: wordRise .8s var(--ease) both;
}
.hero__title .word:nth-child(1) { animation-delay: .08s; }
.hero__title .word:nth-child(2) { animation-delay: .20s; }
.hero__title .word:nth-child(3) { animation-delay: .32s; }
.hero__title .accent-word {
  font-style: italic; font-weight: 400;
  color: var(--accent-2);
}
@keyframes wordRise {
  from { opacity: 0; transform: translateY(22px); filter: blur(5px); }
  to   { opacity: 1; transform: none; filter: blur(0); }
}
.hero__sub {
  color: rgba(237,239,243,.94);
  font-size: clamp(1.04rem, 1.7vw, 1.26rem);
  max-width: 52ch; margin: 0 0 30px;
  text-shadow: 0 1px 16px rgba(0,0,0,.55);
  animation: fadeUp .8s var(--ease) .42s both;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px;
  animation: fadeUp .8s var(--ease) .5s both; }

.hero__stats {
  display: flex; flex-wrap: wrap; gap: clamp(20px, 5vw, 48px);
  padding-top: clamp(20px, 3vh, 28px); border-top: 1px solid rgba(237,239,243,.18);
  max-width: 600px;
  animation: fadeUp .8s var(--ease) .58s both;
}
.hero__stats .stat { min-width: 72px; }
.hero__stats .num {
  font-family: var(--grotesk); font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #fff; letter-spacing: -0.02em; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.hero__stats .num .accent-c { color: var(--accent-2); }
.hero__stats .lbl { font-size: 0.74rem; color: rgba(237,239,243,.74); margin-top: 7px; letter-spacing: 0.02em; }

/* no-js + reduced-motion: everything visible, no motion */
html.no-js .hero__photo,
html.no-js .hero__title .word,
html.no-js .hero__eyebrow,
html.no-js .hero__sub,
html.no-js .hero__actions,
html.no-js .hero__stats { animation: none; opacity: 1; transform: none; filter: none; }
html.no-js .hero__photo { transform: scale(1.02); }
@media (prefers-reduced-motion: reduce) {
  .hero__photo,
  .hero__title .word,
  .hero__eyebrow,
  .hero__sub,
  .hero__actions,
  .hero__stats { animation: none !important; opacity: 1 !important; transform: none !important; filter: none !important; }
  .hero__photo { transform: scale(1.02) !important; }
}

/* ---- catalog filter chips ---- */
.catalog-filters {
  display: flex; flex-wrap: wrap; align-items: center; gap: 9px;
  margin-bottom: 26px;
}
.catalog-filters .fl-label {
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-mute); margin-right: 4px;
}
.chip-row { display: flex; flex-wrap: wrap; gap: 9px; }
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 16px; border-radius: 999px; font-size: 0.86rem; font-weight: 500;
  background: var(--surface-2); color: var(--ink-soft);
  border: 1px solid var(--line); transition: color .22s var(--ease), background .22s var(--ease), border-color .22s var(--ease), transform .22s var(--ease);
}
.chip .dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.chip:hover { border-color: var(--line-strong); color: var(--ink); transform: translateY(-2px); }
.chip.is-selected { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
.chip.is-selected .dot { background: var(--accent-ink) !important; }

/* ============================================================
   PRODUCT GRID — catalog cards
   ============================================================ */
.catalog-toolbar {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: flex-end; justify-content: space-between;
  margin-bottom: 28px;
}
.catalog-toolbar h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
.catalog-toolbar .filters { display: flex; flex-wrap: wrap; gap: 8px; }
.catalog-toolbar .count { font-family: var(--mono); font-size: 0.8rem; color: var(--ink-mute); }
.catalog-toolbar .count b { color: var(--accent); }

.grid-cards {
  display: grid; gap: 18px;
  grid-template-columns: repeat(2, minmax(0,1fr));
}
@media (min-width: 720px) { .grid-cards { grid-template-columns: repeat(3, minmax(0,1fr)); } }
@media (min-width: 1080px) { .grid-cards { grid-template-columns: repeat(4, minmax(0,1fr)); gap: 22px; } }

.card {
  position: relative; min-width: 0;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(231,178,74,.4);
  box-shadow: 0 26px 52px -26px var(--glow), 0 2px 0 0 rgba(231,178,74,.12) inset;
}
.card__media {
  position: relative; aspect-ratio: 7/8; overflow: hidden; background: var(--surface-2);
}
.card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease);
}
.card:hover .card__media img { transform: scale(1.05); }

.card__note-dot {
  position: absolute; top: 12px; left: 12px; z-index: 3;
  width: 13px; height: 13px; border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(14,17,22,.55), 0 0 12px currentColor;
}
.card__stock {
  position: absolute; top: 11px; right: 11px; z-index: 3;
  font-size: 0.66rem; font-weight: 600; letter-spacing: 0.04em;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(231,178,74,.16); color: var(--accent);
  border: 1px solid rgba(231,178,74,.32);
  backdrop-filter: blur(3px);
}
.card__stock.is-low { background: rgba(230,120,90,.16); color: #F0A98E; border-color: rgba(230,120,90,.32); }

.card__flacon {
  position: absolute; bottom: 12px; right: 12px; z-index: 3;
  width: 30px; height: 30px; color: var(--accent);
  opacity: 0; transform: translateY(6px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.card:hover .card__flacon { opacity: 0.92; transform: translateY(0); }

.card__mist { position: absolute; inset: 0; z-index: 2; pointer-events: none; overflow: hidden; }
.card__mist span {
  position: absolute; bottom: 34%; left: 50%;
  width: 46px; height: 46px; border-radius: 50%;
  background: radial-gradient(circle, rgba(231,178,74,.5), transparent 68%);
  opacity: 0; filter: blur(6px);
}
.card:hover .card__mist span { animation: mist 2.6s var(--ease) infinite; }
.card__mist span:nth-child(1) { margin-left: -30px; animation-delay: 0s !important; }
.card__mist span:nth-child(2) { margin-left: 0px; }
.card__mist span:nth-child(3) { margin-left: 22px; }
.card:hover .card__mist span:nth-child(2) { animation-delay: .55s !important; }
.card:hover .card__mist span:nth-child(3) { animation-delay: 1.1s !important; }
@keyframes mist {
  0%   { opacity: 0; transform: translateY(10px) scale(.6); }
  25%  { opacity: .55; }
  100% { opacity: 0; transform: translateY(-58px) scale(1.5); }
}

.card__badges {
  position: absolute; left: 12px; right: 12px; bottom: 12px; z-index: 4;
  display: flex; flex-wrap: wrap; gap: 5px;
  opacity: 0; transform: translateY(8px);
  transition: opacity .32s var(--ease), transform .32s var(--ease);
}
.card:hover .card__badges { opacity: 1; transform: translateY(0); }
.card__badges span {
  font-size: 0.64rem; padding: 3px 9px; border-radius: 999px;
  background: rgba(14,17,22,.80); color: var(--ink); border: 1px solid var(--line-strong);
  backdrop-filter: blur(4px);
}

.card__body { padding: 16px 17px 18px; display: flex; flex-direction: column; flex: 1; min-width: 0; }
.card__family { font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 7px; }
.card__name { font-family: var(--display); font-weight: 500; font-size: 1.22rem; letter-spacing: -0.01em; line-height: 1.15; overflow-wrap: break-word; word-break: keep-all; }
.card__house { font-size: 0.8rem; color: var(--ink-soft); margin-top: 4px; }
.card__meta { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; margin-top: 15px; }
.card__price {
  font-family: var(--grotesk); font-weight: 600; font-size: 1.12rem; color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.card__vol { font-size: 0.72rem; color: var(--ink-mute); }
.card__add {
  margin-top: 14px; width: 100%; justify-content: center;
  background: var(--surface-2); color: var(--ink); border: 1px solid var(--line-strong);
  padding: 11px; border-radius: 10px; font-weight: 600; font-size: 0.86rem;
  font-family: var(--grotesk);
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease);
}
.card__add svg { width: 15px; height: 15px; }
.card__add:hover { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }

/* stagger fade-up */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 660ms var(--ease), transform 660ms var(--ease);
  transition-delay: calc(var(--i, 0) * 55ms);
}
.reveal.is-in { opacity: 1; transform: none; }
html.no-js .reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .card__mist span { animation: none !important; }
}

/* ============================================================
   FAMILY TABS
   ============================================================ */
.fam-tabs {
  display: grid; grid-template-columns: 1fr; gap: 24px; align-items: start;
}
@media (min-width: 900px) { .fam-tabs { grid-template-columns: 300px 1fr; } }
.fam-tablist { display: flex; flex-direction: column; gap: 8px; }
@media (max-width: 899px) { .fam-tablist { flex-direction: row; flex-wrap: wrap; } }
.fam-tab {
  display: flex; align-items: center; gap: 12px; text-align: left;
  padding: 15px 17px; border-radius: 13px; border: 1px solid var(--line);
  background: var(--surface); color: var(--ink-soft);
  font-weight: 600; font-size: 0.94rem; font-family: var(--grotesk);
  transition: color .22s var(--ease), background .22s var(--ease), border-color .22s var(--ease); min-width: 0;
}
.fam-tab .fdot { width: 11px; height: 11px; border-radius: 50%; flex-shrink: 0; box-shadow: 0 0 10px currentColor; }
.fam-tab:hover { border-color: var(--line-strong); color: var(--ink); }
.fam-tab[aria-selected="true"] { background: var(--surface-2); color: var(--ink); border-color: var(--accent); }
.fam-panel {
  display: none; gap: 26px; align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 620px) { .fam-panel { grid-template-columns: 280px 1fr; } }
.fam-panel.is-active { display: grid; animation: fadeUp .5s var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.fam-panel__img { border-radius: 18px; overflow: hidden; border: 1px solid var(--line); aspect-ratio: 1; }
.fam-panel__img img { width: 100%; height: 100%; object-fit: cover; }
.fam-panel h3 { font-size: clamp(1.7rem, 3vw, 2.2rem); margin-bottom: 12px; }
.fam-panel p { color: var(--ink-soft); }
.fam-panel .fam-notes { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.fam-panel .fam-notes span {
  font-size: 0.78rem; padding: 6px 13px; border-radius: 999px;
  background: var(--surface-2); border: 1px solid var(--line); color: var(--ink-soft);
}

/* ============================================================
   BESTSELLER STRIP (editorial grid)
   ============================================================ */
.best-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(2, minmax(0,1fr));
}
@media (min-width: 720px) { .best-grid { grid-template-columns: repeat(4, minmax(0,1fr)); } }
.best-card {
  position: relative; display: flex; align-items: center; gap: 15px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 15px;
  padding: 16px; min-width: 0; overflow: hidden;
  transition: transform .26s var(--ease), border-color .26s var(--ease), box-shadow .26s var(--ease);
}
.best-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--accent), transparent);
  opacity: 0; transition: opacity .26s var(--ease);
}
.best-card:hover { transform: translateY(-4px); border-color: rgba(231,178,74,.34); box-shadow: 0 20px 44px -28px var(--glow); }
.best-card:hover::before { opacity: 1; }
.best-card .rank {
  font-family: var(--display); font-weight: 500; font-size: 2rem; font-style: italic;
  color: var(--accent-2); flex-shrink: 0; width: 40px; line-height: 1; font-variant-numeric: lining-nums;
}
.best-card .best-info { min-width: 0; }
.best-card .best-info .n { font-family: var(--display); font-weight: 500; font-size: 1.14rem; line-height: 1.15; overflow-wrap: break-word; }
.best-card .best-info .f { font-size: 0.76rem; color: var(--ink-mute); margin-top: 3px; }
.best-card .best-info .p { font-family: var(--grotesk); font-size: 0.9rem; color: var(--accent); font-weight: 600; margin-top: 7px; font-variant-numeric: tabular-nums; }

/* ============================================================
   DISCOVERY SET block (hero-band contrast)
   ============================================================ */
.disc {
  background: linear-gradient(135deg, #241B0E 0%, #171C24 58%);
  border: 1px solid rgba(231,178,74,.24);
  border-radius: 24px; overflow: hidden;
  display: grid; grid-template-columns: 1fr; align-items: stretch;
  box-shadow: 0 40px 90px -50px rgba(0,0,0,.8);
}
@media (min-width: 860px) { .disc { grid-template-columns: 1fr 0.85fr; } }
.disc__body { padding: clamp(30px, 4vw, 56px); }
.disc__body h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); margin-bottom: 16px; }
.disc__body p { color: var(--ink-soft); max-width: 46ch; }
.disc__list { list-style: none; padding: 0; margin: 24px 0; display: grid; gap: 13px; }
.disc__list li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.95rem; color: var(--ink-soft); }
.disc__list svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; margin-top: 1px; }
.disc__price {
  display: flex; align-items: baseline; gap: 12px; margin: 20px 0 26px;
}
.disc__price .amt { font-family: var(--grotesk); font-weight: 800; font-size: clamp(2rem, 4vw, 2.5rem); color: var(--ink); letter-spacing: -0.02em; }
.disc__price .note { font-size: 0.8rem; color: var(--ink-mute); }
.disc__media { position: relative; min-height: 280px; }
.disc__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.disc__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(36,27,14,.62), transparent 42%); }

/* combo badge */
.combo-badge {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 22px;
  padding: 8px 15px; border-radius: 999px; font-size: 0.82rem; font-weight: 600;
  background: rgba(231,178,74,.14); color: var(--accent); border: 1px solid rgba(231,178,74,.32);
}
.combo-badge svg { color: var(--accent); }

/* ============================================================
   ATÖLYE / trust — split
   ============================================================ */
.split {
  display: grid; grid-template-columns: 1fr; gap: clamp(30px, 4vw, 60px); align-items: center;
}
@media (min-width: 880px) { .split { grid-template-columns: 1fr 1fr; } }
.split--rev .split__media { order: -1; }
@media (min-width: 880px) { .split--rev .split__media { order: 0; } }
.split__media { border-radius: 22px; overflow: hidden; border: 1px solid var(--line); aspect-ratio: 4/3.2; box-shadow: 0 30px 70px -40px rgba(0,0,0,.75); }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); margin-bottom: 18px; }
.split p { color: var(--ink-soft); }

.mini-stats { display: flex; flex-wrap: wrap; gap: 30px; margin-top: 28px; }
.mini-stats .ms .n { font-family: var(--grotesk); font-weight: 800; font-size: 1.8rem; color: var(--accent); font-variant-numeric: tabular-nums; letter-spacing: -0.02em; }
.mini-stats .ms .l { font-size: 0.78rem; color: var(--ink-mute); margin-top: 3px; }

/* feature list with niche icons */
.feature-list { display: grid; gap: 22px; grid-template-columns: 1fr; margin-top: 26px; }
@media (min-width: 560px) { .feature-list { grid-template-columns: 1fr 1fr; } }
.feat { display: grid; grid-template-columns: auto 1fr; gap: 15px; align-items: start; min-width: 0; }
.feat .ic {
  grid-row: span 2; width: 48px; height: 48px; border-radius: 13px;
  background: radial-gradient(120% 120% at 30% 20%, rgba(231,178,74,.16), var(--surface-2));
  border: 1px solid var(--line-strong);
  display: grid; place-items: center; color: var(--accent); flex-shrink: 0;
}
.feat .ic svg { width: 23px; height: 23px; }
.feat h4 { font-size: 1.04rem; margin-bottom: 5px; }
.feat p { font-size: 0.9rem; color: var(--ink-soft); margin: 0; }

/* ============================================================
   PROCESS steps
   ============================================================ */
.steps { display: grid; gap: 16px; grid-template-columns: 1fr; counter-reset: step; }
@media (min-width: 720px) { .steps { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .steps { grid-template-columns: repeat(5,1fr); } }
.step {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: 16px; padding: 24px 20px; min-width: 0;
  transition: transform .26s var(--ease), border-color .26s var(--ease), box-shadow .26s var(--ease);
}
.step:hover { transform: translateY(-4px); border-color: rgba(231,178,74,.3); box-shadow: 0 18px 40px -28px var(--glow); }
.step .snum {
  font-family: var(--display); font-style: italic; font-weight: 500; font-size: 1.6rem; color: var(--accent-2);
  line-height: 1; display: block;
}
.step h4 { font-size: 1.04rem; margin: 14px 0 8px; }
.step p { font-size: 0.87rem; color: var(--ink-soft); margin: 0; }
.step .when { display: inline-block; margin-top: 14px; font-size: 0.72rem; color: var(--ink-mute); padding: 4px 11px; border-radius: 999px; background: var(--surface-2); border: 1px solid var(--line); font-family: var(--mono); letter-spacing: 0.04em; }

/* ============================================================
   PRICING packages
   ============================================================ */
.price-grid { display: grid; gap: 20px; grid-template-columns: 1fr; align-items: stretch; }
@media (min-width: 760px) { .price-grid { grid-template-columns: repeat(3,1fr); } }
.price-card {
  display: flex; flex-direction: column; background: var(--surface);
  border: 1px solid var(--line); border-radius: 20px; padding: 28px 26px; min-width: 0;
  transition: transform .28s var(--ease), border-color .28s var(--ease), box-shadow .28s var(--ease);
}
.price-card:hover { transform: translateY(-5px); border-color: var(--line-strong); }
.price-card.is-featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(231,178,74,.06), var(--surface) 40%);
  box-shadow: 0 30px 70px -34px var(--glow);
}
@media (min-width: 760px) { .price-card.is-featured { transform: scale(1.03); } .price-card.is-featured:hover { transform: scale(1.03) translateY(-5px); } }
.price-card .tier { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); display: flex; align-items: center; gap: 8px; }
.price-card .badge-pop { display: inline-block; font-family: var(--grotesk); font-size: 0.62rem; letter-spacing: 0.06em; font-weight: 700; color: var(--accent-ink); background: var(--accent); padding: 3px 10px; border-radius: 999px; text-transform: uppercase; }
.price-card .amt { font-family: var(--grotesk); font-weight: 800; font-size: 2.3rem; margin: 16px 0 4px; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
.price-card .amt small { font-family: var(--sans); font-size: 0.9rem; color: var(--ink-mute); font-weight: 500; letter-spacing: 0; }
.price-card .sub { font-size: 0.88rem; color: var(--ink-soft); margin-bottom: 20px; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 22px; display: grid; gap: 11px; }
.price-card li { display: flex; gap: 10px; font-size: 0.89rem; color: var(--ink-soft); align-items: flex-start; }
.price-card li svg { width: 17px; height: 17px; flex-shrink: 0; margin-top: 2px; }
.price-card li.inc svg { color: var(--accent); }
.price-card li.exc { color: var(--ink-mute); }
.price-card li.exc svg { color: var(--ink-mute); }
.price-card .btn { margin-top: auto; }
.price-note { margin-top: 22px; font-size: 0.8rem; color: var(--ink-mute); text-align: center; }

/* ============================================================
   TESTIMONIALS (editorial grid)
   ============================================================ */
.quotes { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .quotes { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1080px) { .quotes { grid-template-columns: repeat(3,1fr); } }
.quote {
  position: relative;
  background: var(--surface); border: 1px solid var(--line); border-radius: 18px;
  padding: 28px 26px; min-width: 0; display: flex; flex-direction: column;
  transition: transform .26s var(--ease), border-color .26s var(--ease);
}
.quote:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.quote::before {
  content: "\201C"; position: absolute; top: 6px; right: 22px;
  font-family: var(--display); font-style: italic; font-size: 4.2rem; line-height: 1;
  color: rgba(231,178,74,.20);
}
.quote .stars { color: var(--accent-2); font-size: 0.9rem; letter-spacing: 3px; margin-bottom: 14px; }
.quote p { font-size: 0.96rem; color: var(--ink); margin: 0 0 18px; line-height: 1.6; }
.quote .who { margin-top: auto; display: flex; align-items: center; gap: 12px; }
.quote .av { width: 42px; height: 42px; border-radius: 50%; background: radial-gradient(120% 120% at 30% 20%, rgba(231,178,74,.2), var(--surface-3)); display: grid; place-items: center; font-family: var(--grotesk); font-weight: 700; color: var(--accent); flex-shrink: 0; font-size: 0.86rem; }
.quote .who .nm { font-weight: 600; font-size: 0.92rem; }
.quote .who .mt { font-size: 0.76rem; color: var(--ink-mute); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { display: grid; gap: 12px; max-width: 860px; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: 15px; overflow: hidden; transition: border-color .24s var(--ease); }
.faq-item[open] { border-color: var(--line-strong); }
.faq-item > summary {
  list-style: none; cursor: pointer; padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--display); font-weight: 500; font-size: 1.14rem; color: var(--ink);
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary .plus { width: 22px; height: 22px; flex-shrink: 0; position: relative; transition: transform .3s var(--ease); }
.faq-item > summary .plus::before, .faq-item > summary .plus::after {
  content: ""; position: absolute; background: var(--accent); border-radius: 2px;
}
.faq-item > summary .plus::before { top: 10px; left: 2px; right: 2px; height: 2px; }
.faq-item > summary .plus::after { left: 10px; top: 2px; bottom: 2px; width: 2px; transition: transform .3s var(--ease); }
.faq-item[open] > summary .plus::after { transform: rotate(90deg); }
.faq-item > .answer {
  height: 0; padding: 0 24px; overflow: hidden; color: var(--ink-soft); font-size: 0.95rem;
  transition: height 360ms var(--ease-2), padding-block-end 360ms var(--ease-2);
}
.faq-item[open] > .answer { height: auto; padding-block-end: 22px; }
@media (prefers-reduced-motion: reduce) { .faq-item > .answer { transition: none; } }

/* ============================================================
    atölye notları (news)
   ============================================================ */
.notes-list { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .notes-list { grid-template-columns: repeat(3,1fr); } }
.note-item { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: 15px; padding: 22px; min-width: 0; transition: transform .24s var(--ease), border-color .24s var(--ease); }
.note-item:hover { transform: translateY(-4px); border-color: rgba(231,178,74,.3); }
.note-item time { font-family: var(--mono); font-size: 0.72rem; color: var(--accent); letter-spacing: 0.06em; }
.note-item h4 { font-family: var(--display); font-weight: 500; font-size: 1.16rem; margin: 11px 0 7px; line-height: 1.2; }
.note-item p { font-size: 0.87rem; color: var(--ink-soft); margin: 0; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-hero { padding-block: clamp(40px, 6vw, 80px); }
.channel-grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.channel {
  background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 24px;
  transition: transform .26s var(--ease), border-color .26s var(--ease), box-shadow .26s var(--ease); min-width: 0;
}
.channel:hover { transform: translateY(-3px); border-color: rgba(231,178,74,.3); box-shadow: 0 18px 40px -26px var(--glow); }
.channel .cic { width: 48px; height: 48px; border-radius: 13px; background: radial-gradient(120% 120% at 30% 20%, rgba(231,178,74,.16), var(--surface-2)); border: 1px solid var(--line-strong); display: grid; place-items: center; color: var(--accent); margin-bottom: 16px; }
.channel .cic svg { width: 22px; height: 22px; }
.channel h3 { font-size: 0.72rem; font-family: var(--mono); letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); font-weight: 500; }
.channel .val { display: block; font-family: var(--display); font-weight: 500; font-size: 1.16rem; margin: 7px 0 5px; color: var(--ink); word-break: break-word; }
.channel .sub { font-size: 0.82rem; color: var(--ink-soft); }
a.channel:hover .val { color: var(--accent); }

.hours-grid { display: grid; gap: 8px; grid-template-columns: 1fr; }
@media (min-width: 560px) { .hours-grid { grid-template-columns: repeat(2,1fr); } }
.hour-row {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 13px 17px; border-radius: 11px; background: var(--surface); border: 1px solid var(--line);
  font-variant-numeric: tabular-nums;
}
.hour-row.today { border-color: var(--accent); background: linear-gradient(90deg, rgba(231,178,74,.08), var(--surface-2)); }
.hour-row .d { font-weight: 600; font-size: 0.9rem; }
.hour-row .t { font-size: 0.86rem; color: var(--ink-soft); }
.hour-row.today .t { color: var(--accent); }

/* ---------- forms ---------- */
.form-wrap { background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: clamp(24px, 3vw, 36px); }
.form-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } .field.full { grid-column: 1 / -1; } }
.field { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.field label { font-size: 0.84rem; font-weight: 600; color: var(--ink-soft); }
.field label .opt { color: var(--ink-mute); font-weight: 400; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--line-strong); border-radius: 11px;
  padding: 13px 15px; color: var(--ink); font-family: inherit; font-size: 0.95rem;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(231,178,74,.18);
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23A7AEBA' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }
.field.kvkk { flex-direction: row; align-items: flex-start; gap: 10px; }
.field.kvkk label { font-weight: 400; font-size: 0.84rem; color: var(--ink-soft); }
.field input[type="checkbox"] {
  appearance: auto; -webkit-appearance: auto;
  width: 18px; height: 18px; min-width: 18px; min-height: 18px;
  padding: 0; border: 0; margin: 2px 0 0; accent-color: var(--accent);
}
.form-actions { margin-top: 24px; }
@media (max-width: 639px) { .form-actions .btn { width: 100%; justify-content: center; } }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #0A0D11; border-top: 1px solid var(--line); padding-block: clamp(48px, 6vw, 76px) 30px; margin-top: 0; }
.footer-grid { display: grid; gap: 36px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; } }
.footer-brand p { color: var(--ink-soft); font-size: 0.9rem; max-width: 34ch; margin-top: 16px; }
.footer-col h4 { font-size: 0.74rem; font-family: var(--mono); letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 16px; font-weight: 500; }
.footer-col a, .footer-col p { display: block; color: var(--ink-soft); font-size: 0.9rem; margin-bottom: 10px; transition: color .2s var(--ease); }
.footer-col a:hover { color: var(--accent); }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a { width: 42px; height: 42px; border-radius: 11px; background: var(--surface); border: 1px solid var(--line); display: grid; place-items: center; color: var(--ink-soft); transition: color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease); }
.footer-social a:hover { color: var(--accent); border-color: var(--accent); transform: translateY(-2px); }
.footer-social svg { width: 19px; height: 19px; }
.footer-bottom {
  margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center;
  font-size: 0.8rem; color: var(--ink-mute);
}
.footer-bottom .legal-links { display: flex; flex-wrap: wrap; gap: 16px; }
.footer-bottom a:hover { color: var(--accent); }
.footer-reg { font-family: var(--mono); font-size: 0.72rem; }

/* ============================================================
   TABLES
   ============================================================ */
.table-scroll {
  display: block; width: 100%; max-width: 100%; min-width: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  margin: 18px 0; border: 1px solid var(--line); border-radius: 12px;
}
.table-scroll > table { margin: 0 !important; min-width: 480px; width: 100%; border-collapse: collapse; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }
table th, table td { padding: 14px 17px; text-align: left; border-bottom: 1px solid var(--line); font-size: 0.9rem; overflow-wrap: anywhere; }
table th { background: var(--surface-2); font-family: var(--grotesk); font-weight: 700; color: var(--ink); }
table td { color: var(--ink-soft); }
table tr:last-child td { border-bottom: 0; }

@media (max-width: 600px) {
  .table-scroll > table { min-width: 0; }
  table th, table td { padding: 10px 12px; font-size: 0.82rem; }
}

/* ============================================================
   legal / prose pages
   ============================================================ */
.page-hero { padding-block: clamp(44px, 6vw, 80px) clamp(28px,4vw,44px); border-bottom: 1px solid var(--line); position: relative; }
.page-hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(70% 120% at 85% -20%, rgba(231,178,74,0.08), transparent 60%);
}
.page-hero h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); margin-bottom: 14px; }
.page-hero p { color: var(--ink-soft); max-width: 58ch; }
.prose { max-width: 820px; }
.prose h2 { font-size: clamp(1.5rem, 2.6vw, 1.9rem); margin: 44px 0 16px; }
.prose h3 { font-size: 1.2rem; margin: 28px 0 10px; }
.prose p, .prose li { color: var(--ink-soft); font-size: 0.99rem; line-height: 1.78; }
.prose ul, .prose ol { padding-left: 22px; margin: 0 0 1em; }
.prose li { margin-bottom: 9px; }
.prose li::marker { color: var(--accent); }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--ink); }

/* ============================================================
   cookie banner
   ============================================================ */
.cookie-banner {
  position: fixed; bottom: 16px; left: 16px; right: 16px; max-width: 520px; margin: 0 auto;
  background: var(--surface); border: 1px solid var(--line-strong); border-radius: 18px;
  padding: 22px 24px; z-index: 9999;
  transform: translateY(140%); opacity: 0;
  transition: transform 280ms var(--ease), opacity 240ms;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,.75);
}
.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-family: var(--display); font-weight: 500; font-size: 1.16rem; margin-bottom: 9px; }
.cookie-banner p { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 16px; }
.cookie-banner p a { color: var(--accent); text-decoration: underline; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 9px; }
.cookie-actions button {
  flex: 1; min-width: 90px; min-height: 44px; padding: 11px 14px; border-radius: 11px;
  font-weight: 600; font-size: 0.85rem; font-family: var(--grotesk); border: 1px solid var(--line-strong); transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.cookie-actions .c-accept { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
.cookie-actions .c-accept:hover { background: var(--accent-hi); }
/* Reddet, Kabul et ile eşit görünür ağırlıkta (KVKK adil rıza) */
.cookie-actions .c-reject { background: var(--surface-3); color: var(--ink); border-color: var(--ink-soft); font-weight: 600; }
.cookie-actions .c-reject:hover, .cookie-actions .c-reject:focus-visible { background: var(--surface-2); border-color: var(--ink); color: var(--ink); }
.cookie-actions .c-settings { flex: 0 1 auto; background: transparent; color: var(--ink-soft); border-color: transparent; }
.cookie-actions .c-settings:hover, .cookie-actions .c-settings:focus-visible { background: var(--surface-2); color: var(--ink); }

/* cookie modal */
.cookie-modal { position: fixed; inset: 0; z-index: 10000; display: none; align-items: center; justify-content: center; padding: 20px; }
.cookie-modal.is-open { display: flex; }
.cookie-modal__bg { position: absolute; inset: 0; background: rgba(0,0,0,.62); backdrop-filter: blur(2px); }
.cookie-modal__panel {
  position: relative; background: var(--surface); border: 1px solid var(--line-strong);
  border-radius: 20px; padding: 30px; max-width: 460px; width: 100%; max-height: 90vh; overflow-y: auto;
  box-shadow: 0 40px 90px -40px rgba(0,0,0,.85);
}
.cookie-modal__panel h3 { font-size: 1.4rem; margin-bottom: 18px; }
.toggle-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.toggle-row .ti { min-width: 0; }
.toggle-row .ti strong { font-size: 0.94rem; }
.toggle-row .ti p { font-size: 0.82rem; color: var(--ink-soft); margin: 4px 0 0; }
.switch { position: relative; width: 46px; height: 26px; flex-shrink: 0; }
.switch input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.switch .track { position: absolute; inset: 0; background: var(--surface-3); border-radius: 999px; transition: background .2s var(--ease); }
.switch .track::before { content: ""; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; border-radius: 50%; background: var(--ink-soft); transition: transform .2s var(--ease); }
.switch input:checked + .track { background: var(--accent); }
.switch input:checked + .track::before { transform: translateX(20px); background: var(--accent-ink); }
.switch input:disabled + .track { opacity: 0.5; }
.cookie-modal__actions { margin-top: 22px; }

/* ============================================================
   404
   ============================================================ */
.err-wrap { min-height: 62vh; display: grid; place-items: center; text-align: center; }
.err-wrap .code { font-family: var(--display); font-weight: 400; font-style: italic; font-size: clamp(5rem, 18vw, 11rem); color: var(--accent); letter-spacing: -0.04em; line-height: 1; }
.err-wrap h1 { font-size: clamp(1.6rem, 4vw, 2.5rem); margin: 10px 0 14px; }
.err-wrap p { color: var(--ink-soft); max-width: 44ch; margin: 0 auto 24px; }

/* ============================================================
   utilities
   ============================================================ */
.text-accent { color: var(--accent); }
.break { word-break: break-word; overflow-wrap: anywhere; }
.thanks-wrap { min-height: 60vh; display: grid; place-items: center; text-align: center; }
.thanks-wrap .ok-ic { width: 78px; height: 78px; border-radius: 50%; background: radial-gradient(120% 120% at 30% 20%, rgba(231,178,74,.2), rgba(231,178,74,.08)); border: 1px solid rgba(231,178,74,.4); display: grid; place-items: center; color: var(--accent); margin: 0 auto 24px; }
.thanks-wrap .ok-ic svg { width: 36px; height: 36px; }
.thanks-wrap h1 { font-size: clamp(1.9rem, 4vw, 2.9rem); margin-bottom: 14px; }
.thanks-wrap p { color: var(--ink-soft); max-width: 46ch; margin: 0 auto 26px; }

.scroll-progress{position:fixed;top:0;left:0;height:3px;width:0;background:linear-gradient(90deg,var(--accent-deep),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;
}
