/* ============================================================
   NÜANS Esans Atölyesi — koku konfigüratörü
   Art direction: warm editorial atelier — harmonised with the
   cinematic hero (amber bottle · gold cap · dried orange · rose
   petals · cinnamon · lavender on espresso-black leather).
   Palette : ivory #F5EFE6 / espresso ink #201812
             amber-gold #B07A2E · #8A5A16 / dusty rose #B15A6B · #9E3F55
   Type    : Fraunces (display serif + italic) · Sora (UI) · Manrope (body)
   ============================================================ */

:root {
  --bg: #F5EFE6;
  --surface: #FFFDF8;
  --surface-2: #F1E8DA;
  --surface-3: #E7D9C2;
  --ink: #201812;
  --ink-soft: #574A3C;
  --ink-faint: #6E5D48;
  --accent: #B07A2E;        /* amber-gold — decorative fills / icons */
  --accent-deep: #8A5A16;   /* amber-gold — link / small text (AA) */
  --accent-2: #B15A6B;      /* dusty rose — decorative */
  --accent-2-deep: #9E3F55; /* dusty rose — text (AA) */
  --gold: #C9A24B;          /* metallic gold — accents on dark only */
  --line: rgba(32, 24, 18, 0.11);
  --line-strong: rgba(32, 24, 18, 0.20);
  --hair: rgba(138, 90, 22, 0.22);
  --grad: linear-gradient(120deg, #9C6420 0%, #A34C5C 100%);
  --grad-soft: linear-gradient(120deg, rgba(176,122,46,0.16) 0%, rgba(177,90,107,0.16) 100%);
  --grad-gold: linear-gradient(100deg, #E9C67E 0%, #D98BA0 100%);
  --header-h: 72px;
  --shadow-s: 0 10px 26px -18px rgba(58, 34, 8, 0.42);
  --shadow-m: 0 26px 60px -34px rgba(58, 34, 8, 0.40);
  --shadow-lift: 0 34px 74px -34px rgba(138, 90, 22, 0.48);
  interpolate-size: allow-keywords;
}

/* ---------- reset ---------- */
* { 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: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.66;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-optical-sizing: auto;
  line-height: 1.08;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0 0 .5em;
}
h1 em, h2 em, h3 em, h4 em, .em-accent {
  font-style: italic;
  font-weight: 500;
  color: var(--accent-deep);
}
.eyebrow, .btn { font-family: 'Sora', system-ui, sans-serif; letter-spacing: -0.01em; }
p { margin: 0 0 1em; color: var(--ink-soft); overflow-wrap: anywhere; }
a { color: var(--accent-deep); text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
strong { color: var(--ink); font-weight: 700; }

.container {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding-inline: clamp(18px, 4vw, 36px);
}
.narrow { max-width: 760px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-deep);
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1.5px;
  background: var(--grad);
  border-radius: 2px;
}

.section { padding: clamp(60px, 9vw, 116px) 0; }
:where(main section[id], main [id]) { scroll-margin-top: calc(var(--header-h) + 16px); }
.section-head { max-width: 680px; margin: 0 auto clamp(36px, 5vw, 60px); text-align: center; }
.section-head .eyebrow { justify-content: center; margin-bottom: 16px; }
.section-head h2 { font-size: clamp(2rem, 5.4vw, 3.4rem); line-height: 1.05; }
.section-head p { font-size: 1.08rem; color: var(--ink-soft); margin-top: 14px; }

/* ---------- skip link ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 2000;
  background: var(--ink); color: #fff; padding: 12px 18px; border-radius: 0 0 10px 0;
  font-family: 'Sora', sans-serif; font-weight: 600;
}
.skip-link:focus { left: 0; }

:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1080;
  height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(245, 239, 230, 0.90);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: background 240ms ease, box-shadow 240ms ease, height 240ms ease;
}
.site-header.is-scrolled {
  background: rgba(245, 239, 230, 0.97);
  box-shadow: 0 10px 30px -18px rgba(58, 34, 8, 0.30);
  border-bottom-color: var(--line);
  height: 62px;
}
.header-inner {
  width: 100%; max-width: 1040px; margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 36px);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.brand {
  display: inline-flex; align-items: center; gap: 11px;
  font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.28rem;
  color: var(--ink); letter-spacing: -0.01em;
}
.brand__mark { width: 30px; height: 30px; flex: none; }
.brand__mark .drop { transform-origin: center; animation: breathe 9s ease-in-out infinite; }
@keyframes breathe { 0%,100% { transform: scale(1); } 50% { transform: scale(1.06); } }
.brand small { display: block; font-family: 'Sora', sans-serif; font-weight: 500; font-size: 9.5px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--ink-faint); line-height: 1; margin-top: 3px; }

.nav-desktop { display: flex; align-items: center; gap: clamp(14px, 2.4vw, 30px); }
.nav-desktop a {
  position: relative; font-family: 'Sora', sans-serif; font-size: 14.5px; font-weight: 500; color: var(--ink-soft);
  padding: 6px 2px; transition: color 200ms ease;
}
.nav-desktop a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--grad); border-radius: 2px; transform: scaleX(0); transform-origin: left;
  transition: transform 260ms cubic-bezier(.2,.7,.2,1);
}
.nav-desktop a:hover { color: var(--ink); }
.nav-desktop a:hover::after, .nav-desktop a.is-active::after { transform: scaleX(1); }
.nav-desktop a.is-active { color: var(--ink); }

.nav-cta {
  font-family: 'Sora', sans-serif; font-weight: 600; font-size: 14px;
  background: var(--ink); color: #fff !important;
  padding: 10px 20px; border-radius: 999px;
  transition: background 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-cta:hover { background: var(--accent-deep); color: #fff !important; transform: translateY(-2px); box-shadow: var(--shadow-s); }

/* hamburger */
.nav-toggle {
  display: none; position: relative; z-index: 1100;
  width: 44px; height: 44px; border: 0; border-radius: 12px;
  background: var(--surface); box-shadow: var(--shadow-s); cursor: pointer;
  padding: 0; align-items: center; justify-content: center;
}
.nav-toggle__box { position: absolute; inset: 0; }
.nav-toggle__box span {
  position: absolute; left: 12px; width: 20px; height: 2px; border-radius: 2px;
  background: var(--ink); transition: transform 300ms cubic-bezier(.2,.7,.2,1), opacity 200ms ease;
}
.nav-toggle__box span:nth-child(1) { top: 15px; }
.nav-toggle__box span:nth-child(2) { top: 21px; }
.nav-toggle__box span:nth-child(3) { top: 27px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__box span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__box span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__box span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* screen-reader-only utility */
.sr-only {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0;
}

/* drawer */
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 1050;
  width: min(360px, 92vw);
  background: var(--surface);
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  padding: calc(var(--header-h) + 16px) 28px 32px;
  display: flex; flex-direction: column; gap: 6px;
  box-shadow: -30px 0 60px -30px rgba(58,34,8,0.4);
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  font-family: 'Fraunces', serif; font-weight: 500; font-size: 1.2rem; color: var(--ink);
  padding: 15px 4px; border-bottom: 1px solid var(--line);
}
.drawer a.is-active { color: var(--accent-deep); }
.drawer .drawer-cta {
  margin-top: 18px; text-align: center; border: 0;
  background: var(--ink); color: #fff !important; border-radius: 999px; padding: 16px;
  font-family: 'Sora', sans-serif; font-weight: 600; font-size: 1rem;
}
.drawer .drawer-cta:hover, .drawer .drawer-cta:focus-visible { background: var(--accent-deep); color: #fff !important; }
.drawer-backdrop {
  position: fixed; inset: 0; z-index: 1040; background: rgba(24, 14, 6, 0.55);
  opacity: 0; visibility: hidden; transition: opacity 240ms ease, visibility 240ms ease;
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: 'Sora', sans-serif; font-weight: 600; font-size: 15px;
  padding: 15px 28px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: transform 220ms ease, background 220ms ease, color 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  line-height: 1; text-align: center;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--grad); color: #fff; box-shadow: var(--shadow-s); }
.btn-primary:hover, .btn-primary:focus-visible { color: #fff; transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover, .btn-ink:focus-visible { background: var(--accent-deep); color: #fff; transform: translateY(-3px); box-shadow: var(--shadow-s); }
.btn-ghost { background: var(--surface); 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(-3px); }
.btn-block { width: 100%; }

/* trust strip */
.trust-strip { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 26px; }
.trust-strip span {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 600; color: var(--ink-soft);
}
.trust-strip svg { width: 15px; height: 15px; color: var(--accent); flex: none; }

/* ============================================================
   HERO — sinematik tam ekran foto (KORUNDU)
   ============================================================ */
.hero {
  position: relative;
  min-height: 88vh;
  min-height: 88svh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-h) + clamp(40px, 9vh, 96px));
  padding-bottom: clamp(76px, 12vh, 132px);
  overflow: hidden;
  isolation: isolate;
}
.hero-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 42%;
  transform: scale(1.08);
  will-change: transform;
  animation: heroKen 22s ease-in-out infinite alternate;
}
@keyframes heroKen {
  from { transform: scale(1.07) translate3d(0, 0, 0); }
  to   { transform: scale(1.17) translate3d(-1.6%, -1.4%, 0); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(140% 120% at 50% 34%, rgba(20,12,6,0.30) 0%, rgba(20,12,6,0.60) 55%, rgba(16,9,4,0.90) 100%),
    linear-gradient(180deg, rgba(20,12,6,0.58) 0%, rgba(20,12,6,0.46) 42%, rgba(14,8,3,0.86) 100%);
}
.hero .container.hero-content { position: relative; z-index: 2; text-align: center; }

.eyebrow--light { color: rgba(255,244,228,0.94); }
.eyebrow--light::before { background: var(--grad-gold); }

.hero-title {
  font-family: 'Fraunces', 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: clamp(2.5rem, 7.8vw, 5.3rem);
  line-height: 1.04;
  letter-spacing: -0.014em;
  color: #FBF4E9;
  margin: 18px 0 22px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5), 0 3px 34px rgba(0,0,0,0.5);
}
.hero-title .word { display: inline-block; white-space: nowrap; }
.hero-title .accent {
  font-style: italic;
  font-weight: 500;
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  padding-right: 0.06em;
}
.hero .hero-sub {
  font-size: clamp(1.06rem, 2.5vw, 1.3rem);
  color: rgba(253,246,236,0.88);
  max-width: 590px; margin: 0 auto 32px;
}
.hero-sub { font-size: clamp(1.05rem, 2.6vw, 1.28rem); color: var(--ink-soft); max-width: 560px; margin: 0 auto 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

.btn-hero-ghost {
  background: rgba(255,248,238,0.10);
  color: #fff;
  border-color: rgba(255,244,228,0.55);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.btn-hero-ghost:hover, .btn-hero-ghost:focus-visible {
  background: rgba(255,248,238,0.20); color: #fff;
  border-color: #fff; transform: translateY(-3px);
}

.hero .hero-stats {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: clamp(22px, 6vw, 64px);
  margin-top: clamp(40px, 6vh, 60px);
  padding-top: clamp(26px, 4vh, 36px);
  border-top: 1px solid rgba(255,244,228,0.20);
}
.hero .hero-stats .stat { text-align: center; }
.hero .hero-stats .num { font-family: 'Fraunces', serif; font-weight: 600; font-size: clamp(1.8rem, 4.6vw, 2.7rem); color: #FBF4E9; line-height: 1; }
.hero .hero-stats .num .suffix { color: var(--gold); }
.hero .hero-stats .lbl { font-family: 'Sora', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.12em; color: rgba(253,246,236,0.74); margin-top: 9px; text-transform: uppercase; }

/* scroll cue */
.hero-scroll {
  position: absolute; left: 50%; bottom: clamp(16px, 3vh, 30px);
  transform: translateX(-50%); z-index: 2;
  width: 26px; height: 42px; border: 1.5px solid rgba(255,244,228,0.5);
  border-radius: 20px; display: grid; justify-items: center; align-content: start; padding-top: 8px;
}
.hero-scroll span { width: 4px; height: 8px; border-radius: 4px; background: var(--gold); animation: heroScroll 1.8s ease-in-out infinite; }
@keyframes heroScroll { 0%,100% { opacity: 0; transform: translateY(0); } 50% { opacity: 1; transform: translateY(6px); } }

/* letter-reveal for h1 */
.reveal-letters .word { opacity: 0; transform: translateY(0.5em); animation: letterUp .8s cubic-bezier(.2,.7,.2,1) forwards; animation-delay: calc(var(--wi, 0) * 90ms + 140ms); }
@keyframes letterUp { to { opacity: 1; transform: none; } }
html.no-js .reveal-letters .word { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal-letters .word { opacity: 1 !important; transform: none !important; animation: none !important; }
  .hero-photo { animation: none !important; transform: scale(1.04) !important; }
  .hero-scroll span { animation: none !important; }
}

/* ============================================================
   CONFIGURATOR
   ============================================================ */
.config-wrap { position: relative; }
.config-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow-m);
  padding: clamp(24px, 4vw, 46px);
  overflow: hidden;
}
.config-card::before {
  content: ""; position: absolute; inset: 0; border-radius: 26px; padding: 1px;
  background: linear-gradient(130deg, rgba(176,122,46,0.55), rgba(177,90,107,0.42), transparent 60%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}

/* bubble step indicator */
.step-dots { display: flex; align-items: center; justify-content: center; gap: 0; margin-bottom: clamp(24px, 4vw, 36px); }
.step-dots .dot {
  display: flex; flex-direction: column; align-items: center; gap: 8px; position: relative;
}
.step-dots .bubble {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 15px;
  background: var(--surface-3); color: var(--ink-faint);
  border: 2px solid transparent;
  transition: all 320ms cubic-bezier(.2,.7,.2,1);
}
.step-dots .lbl { font-family: 'Sora', sans-serif; font-size: 11.5px; font-weight: 600; color: var(--ink-faint); letter-spacing: 0.02em; transition: color 320ms; text-align: center; }
.step-dots .link { flex: 1; height: 2px; min-width: 24px; max-width: 90px; background: var(--surface-3); position: relative; margin: 0 6px; align-self: flex-start; margin-top: 19px; border-radius: 2px; overflow: hidden; }
.step-dots .link::after { content: ""; position: absolute; inset: 0; background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform 420ms cubic-bezier(.2,.7,.2,1); }
.step-dots .dot.is-active .bubble { background: var(--grad); color: #fff; border-color: transparent; box-shadow: 0 8px 20px -8px rgba(176,122,46,0.7); transform: scale(1.08); }
.step-dots .dot.is-done .bubble { background: var(--accent); color: #fff; }
.step-dots .dot.is-active .lbl, .step-dots .dot.is-done .lbl { color: var(--ink); }
.step-dots .link.is-done::after { transform: scaleX(1); }

/* steps */
.steps { position: relative; }
.step { display: none; }
.step.is-current { display: block; animation: stepIn 420ms cubic-bezier(.2,.7,.2,1); }
.step.is-prev-anim { animation: stepOut 300ms ease forwards; }
@keyframes stepIn { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: none; } }
@keyframes stepOut { to { opacity: 0; transform: translateX(-30px); } }
@media (prefers-reduced-motion: reduce) { .step.is-current { animation: none; } }

.step h3 { font-size: clamp(1.5rem, 3.8vw, 2.1rem); text-align: center; }
.step .q-hint { text-align: center; color: var(--ink-faint); font-size: 14.5px; margin: -2px 0 28px; }

/* chips grid */
.chips { display: grid; gap: 12px; }
.chips.cols-2 { grid-template-columns: repeat(2, 1fr); }
.chips.cols-4 { grid-template-columns: repeat(4, 1fr); }
.chip {
  position: relative;
  display: flex; flex-direction: column; align-items: center; gap: 9px;
  padding: 20px 12px; border-radius: 16px; cursor: pointer;
  background: var(--surface-2); border: 1.5px solid var(--line);
  text-align: center;
  transition: transform 220ms cubic-bezier(.2,.7,.2,1), border-color 220ms, box-shadow 220ms, background 220ms;
  min-width: 0;
}
.chip:hover { transform: translateY(-3px); border-color: var(--accent); box-shadow: var(--shadow-s); }
.chip .ico { width: 34px; height: 34px; color: var(--accent-deep); transition: transform 260ms, color 260ms; }
.chip .name { font-family: 'Sora', sans-serif; font-weight: 600; font-size: 15px; color: var(--ink); overflow-wrap: break-word; word-break: keep-all; }
.chip .desc { font-size: 12px; color: var(--ink-faint); line-height: 1.35; }
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip.is-selected {
  background: var(--grad-soft); border-color: var(--accent);
  box-shadow: 0 14px 30px -18px rgba(176,122,46,0.7);
}
.chip.is-selected .ico { color: var(--accent-2-deep); transform: scale(1.1); }
.chip.is-selected::after {
  content: "✓"; position: absolute; top: 8px; right: 10px;
  width: 20px; height: 20px; border-radius: 50%; background: var(--grad); color: #fff;
  font-size: 12px; display: grid; place-items: center; font-weight: 700;
  animation: pop 300ms cubic-bezier(.2,.7,.2,1);
}
@keyframes pop { from { transform: scale(0); } to { transform: scale(1); } }

/* toggle daynight */
.subq { margin-top: 22px; }
.subq .subq-t { font-family: 'Sora', sans-serif; font-weight: 600; font-size: 14px; text-align: center; color: var(--ink-soft); margin-bottom: 12px; }
.toggle-pills { display: flex; gap: 10px; justify-content: center; }
.toggle-pills .chip { flex-direction: row; padding: 12px 22px; }

/* step nav */
.step-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: clamp(24px, 4vw, 34px); }
.step-nav .spacer { flex: 1; }

/* live radar preview inside configurator */
.radar-live { display: flex; align-items: center; gap: 20px; justify-content: center; margin-top: 26px; padding-top: 24px; border-top: 1px dashed var(--line-strong); flex-wrap: wrap; }
.radar-live .radar-svg { width: 150px; height: 150px; flex: none; }
.radar-live .legend { display: grid; gap: 8px; }
.radar-live .legend li { display: flex; align-items: center; gap: 8px; list-style: none; font-size: 13px; font-weight: 600; color: var(--ink-soft); }
.radar-live .legend .sw { width: 12px; height: 12px; border-radius: 3px; flex: none; }
.radar-live .legend ul { margin: 0; padding: 0; }
.radar-live .cap { font-size: 12px; color: var(--ink-faint); text-align: center; margin: 12px 0 0; width: 100%; }

/* radar polygon animation */
.radar-poly { transition: all 700ms cubic-bezier(.2,.7,.2,1); }

/* ============================================================
   RESULTS
   ============================================================ */
.results { display: none; }
.results.is-shown { display: block; animation: popReveal 620ms cubic-bezier(.2,.7,.2,1); }
@keyframes popReveal { from { opacity: 0; transform: scale(.94) translateY(20px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .results.is-shown { animation: none; } }

.result-top { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(20px, 4vw, 40px); align-items: center; margin-bottom: clamp(30px, 5vw, 44px); }
.result-top .radar-big { width: 100%; max-width: 320px; margin: 0 auto; }
.result-summary .eyebrow { margin-bottom: 12px; }
.result-summary h2 { font-size: clamp(1.7rem, 4.2vw, 2.5rem); }
.profile-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 4px; }
.profile-tags .tag {
  font-family: 'Sora', sans-serif; font-size: 12.5px; font-weight: 600; padding: 6px 14px; border-radius: 999px;
  background: var(--grad-soft); color: var(--accent-deep); border: 1px solid var(--hair);
}

.match-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.match-card {
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line); border-radius: 20px;
  padding: 24px; box-shadow: var(--shadow-s); position: relative; overflow: hidden;
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms;
}
.match-card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--grad); opacity: 0; transition: opacity 240ms; }
.match-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.match-card:hover::before { opacity: 1; }
.match-card .bottle { width: 56px; height: 74px; margin-bottom: 14px; }
.match-card .m-pct {
  position: absolute; top: 18px; right: 18px;
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 13px;
  color: #fff; background: var(--grad); padding: 5px 11px; border-radius: 999px;
}
.match-card h4 { font-size: 1.35rem; margin-bottom: 2px; }
.match-card .m-house { font-family: 'Sora', sans-serif; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-faint); font-weight: 600; margin-bottom: 12px; }
.match-card .m-notes { font-size: 13.5px; color: var(--ink-soft); margin-bottom: 14px; }
.match-card .m-notes b { color: var(--ink); font-weight: 700; }
.match-card .m-price { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1.05rem; color: var(--ink); margin-top: auto; }
.match-card .m-price span { font-size: 11px; font-weight: 500; color: var(--ink-faint); display: block; letter-spacing: 0.04em; }

.results-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: clamp(30px, 5vw, 44px); }

/* budget selector */
.budget-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin: 26px 0 8px; }
.budget-row .chip { flex-direction: row; padding: 12px 20px; gap: 8px; }
.budget-note { text-align: center; font-size: 12.5px; color: var(--ink-faint); }

/* ============================================================
   WHY / feature cards
   ============================================================ */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feat-card {
  position: relative;
  background: var(--surface); border: 1px solid var(--line); border-radius: 18px;
  padding: 30px 26px; box-shadow: var(--shadow-s);
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms, border-color 240ms;
}
.feat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); border-color: var(--hair); }
.feat-card .ico-circle {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  background: var(--grad-soft); color: var(--accent-deep); margin-bottom: 18px;
  border: 1px solid var(--hair);
}
.feat-card .ico-circle svg { width: 27px; height: 27px; }
.feat-card h3 { font-size: 1.35rem; margin-bottom: 8px; }
.feat-card p { font-size: 14.5px; margin: 0; }
.feat-card .feat-index { position: absolute; top: 24px; right: 26px; font-family: 'Fraunces', serif; font-style: italic; font-weight: 500; font-size: 1.5rem; color: var(--surface-3); }

/* editorial split (why-this-scent) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 56px); align-items: center; }
.split .panel-visual { position: relative; aspect-ratio: 4/5; border-radius: 24px; overflow: hidden; background: var(--grad); box-shadow: var(--shadow-m); }
.split .panel-visual .drift { position: absolute; inset: 0; }
.manifesto {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: clamp(1.6rem, 4.2vw, 2.7rem); line-height: 1.22; letter-spacing: -0.015em;
  color: var(--ink);
}
.manifesto em { font-style: italic; font-weight: 500; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.manifesto-visual { margin-top: clamp(20px,3vw,30px); border-radius: 20px; box-shadow: var(--shadow-m); width: 100%; aspect-ratio: 3/2; object-fit: cover; }

/* nota ailesi thumbnails */
.family-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: clamp(28px, 4vw, 44px); }
.family-thumb { position: relative; margin: 0; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-s); }
.family-thumb img { width: 100%; aspect-ratio: 3/2; object-fit: cover; transition: transform 600ms cubic-bezier(.2,.7,.2,1); }
.family-thumb:hover img { transform: scale(1.05); }
.family-thumb figcaption {
  position: absolute; left: 16px; bottom: 14px; z-index: 2;
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 500; font-size: 1.2rem; color: #FBF4E9;
  text-shadow: 0 1px 10px rgba(0,0,0,0.6);
}
.family-thumb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(20,12,6,0.62), transparent 55%); z-index: 1; }
.family-thumb:nth-child(1) { border-top-left-radius: 40px; }
.family-thumb:nth-child(2) { border-bottom-right-radius: 40px; margin-top: clamp(0px, 3vw, 34px); }

/* pyramid notes */
.note-pyramid { display: grid; gap: 12px; margin-top: 8px; }
.note-layer { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start; padding: 18px 20px; border-radius: 14px; background: var(--surface); border: 1px solid var(--line); transition: transform 220ms, box-shadow 220ms; }
.note-layer:hover { transform: translateX(4px); box-shadow: var(--shadow-s); }
.note-layer .badge { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 11px; border-radius: 8px; background: var(--grad); color: #fff; white-space: nowrap; }
.note-layer h4 { font-size: 1.1rem; margin: 0 0 3px; }
.note-layer p { font-size: 13.5px; margin: 0; }

/* ============================================================
   TIMELINE (process)
   ============================================================ */
.timeline { position: relative; margin-top: 20px; }
.timeline::before { content: ""; position: absolute; left: 21px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(var(--accent), var(--accent-2)); border-radius: 2px; }
.tl-step { position: relative; padding: 0 0 34px 62px; }
.tl-step:last-child { padding-bottom: 0; }
.tl-step .node { position: absolute; left: 8px; top: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--surface); border: 2px solid var(--accent); display: grid; place-items: center; font-family: 'Sora', sans-serif; font-weight: 700; font-size: 13px; color: var(--accent-deep); z-index: 1; transition: transform 300ms, background 300ms, color 300ms; }
.tl-step.is-lit .node { background: var(--grad); color: #fff; border-color: transparent; transform: scale(1.12); }
.tl-step .when { font-family: 'Sora', sans-serif; font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-2-deep); }
.tl-step h4 { font-size: 1.25rem; margin: 4px 0 6px; }
.tl-step p { font-size: 14.5px; margin: 0; }

/* ============================================================
   PRICING
   ============================================================ */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.price-card {
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line); border-radius: 20px;
  padding: 30px 26px; box-shadow: var(--shadow-s); position: relative;
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.price-card.is-featured { border-color: var(--accent); box-shadow: 0 34px 68px -30px rgba(176,122,46,0.5); }
.price-card.is-featured::before { content: ""; position: absolute; inset: 0; border-radius: 20px; padding: 1px; background: var(--grad); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.price-card .flag { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--grad); color: #fff; font-family: 'Sora', sans-serif; font-weight: 600; font-size: 12px; padding: 5px 15px; border-radius: 999px; white-space: nowrap; }
.price-card .tier { font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.55rem; margin-bottom: 4px; }
.price-card .tier-sub { font-size: 13px; color: var(--ink-faint); margin-bottom: 18px; }
.price-card .amount { font-family: 'Fraunces', serif; font-weight: 600; font-size: 2.4rem; color: var(--ink); line-height: 1; }
.price-card .amount small { font-family: 'Sora', sans-serif; font-size: 15px; font-weight: 500; color: var(--ink-faint); }
.price-card .amount-note { font-size: 11.5px; color: var(--ink-faint); margin: 6px 0 20px; }
.price-card ul.incl { list-style: none; margin: 0 0 8px; padding: 0; display: grid; gap: 10px; }
.price-card ul.incl li { display: grid; grid-template-columns: auto 1fr; gap: 10px; font-size: 14px; color: var(--ink-soft); align-items: start; }
.price-card ul.incl li svg { width: 17px; height: 17px; margin-top: 3px; flex: none; }
.price-card ul.incl li.yes svg { color: var(--accent); }
.price-card ul.incl li.no { color: var(--ink-faint); }
.price-card ul.incl li.no svg { color: var(--ink-faint); }
.price-card .btn { margin-top: auto; }
.price-disclaimer { text-align: center; font-size: 12.5px; color: var(--ink-faint); margin-top: 22px; }

/* ============================================================
   TESTIMONIALS (editorial)
   ============================================================ */
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.testi { background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: 30px; box-shadow: var(--shadow-s); transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms; }
.testi:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.testi:nth-child(3) { grid-column: span 2; }
.testi .quote { font-size: 15.5px; color: var(--ink-soft); line-height: 1.62; margin-bottom: 18px; }
.testi .quote::before { content: "“"; font-family: 'Fraunces', serif; font-size: 2.8rem; color: var(--accent); line-height: 0; vertical-align: -0.4em; margin-right: 6px; }
.testi .who { display: flex; align-items: center; gap: 12px; }
.testi .av { width: 44px; height: 44px; border-radius: 50%; background: var(--grad); color: #fff; display: grid; place-items: center; font-family: 'Sora', sans-serif; font-weight: 700; flex: none; }
.testi .who b { font-family: 'Sora', sans-serif; font-size: 14.5px; color: var(--ink); display: block; }
.testi .who span { font-size: 12.5px; color: var(--ink-faint); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { display: grid; gap: 12px; max-width: 780px; margin: 0 auto; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; transition: border-color 240ms; }
.faq-item[open] { border-color: var(--hair); }
.faq-item summary { list-style: none; cursor: pointer; padding: 21px clamp(18px, 3vw, 28px); display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.12rem; color: var(--ink); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus { width: 22px; height: 22px; flex: none; position: relative; }
.faq-item summary .plus::before, .faq-item summary .plus::after { content: ""; position: absolute; top: 50%; left: 50%; background: var(--accent); border-radius: 2px; transition: transform 300ms cubic-bezier(.2,.7,.2,1); }
.faq-item summary .plus::before { width: 14px; height: 2px; transform: translate(-50%, -50%); }
.faq-item summary .plus::after { width: 2px; height: 14px; transform: translate(-50%, -50%); }
.faq-item[open] summary .plus::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-item > .answer { height: 0; padding: 0 clamp(18px, 3vw, 28px); overflow: hidden; transition: height 360ms cubic-bezier(.4,0,.2,1), padding-block-end 360ms cubic-bezier(.4,0,.2,1); }
.faq-item[open] > .answer { height: auto; padding-block-end: 22px; }
.faq-item > .answer p { margin: 0; font-size: 14.5px; }
@media (prefers-reduced-motion: reduce) { .faq-item > .answer { transition: none; } }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band { background: var(--ink); color: #fff; border-radius: 28px; padding: clamp(40px, 6vw, 68px); text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 18% 20%, rgba(176,122,46,0.42), transparent 55%), radial-gradient(circle at 85% 82%, rgba(177,90,107,0.36), transparent 55%); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #FBF4E9; font-size: clamp(1.9rem, 5vw, 3rem); }
.cta-band h2 em { color: var(--gold); }
.cta-band p { color: rgba(253,246,236,0.84); max-width: 540px; margin: 0 auto 28px; }
.cta-band .btn-ghost { background: rgba(255,248,238,0.10); color: #fff; border-color: rgba(255,244,228,0.3); }
.cta-band .btn-ghost:hover, .cta-band .btn-ghost:focus-visible { background: rgba(255,248,238,0.2); color: #fff; border-color: rgba(255,244,228,0.6); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-hero { padding-top: calc(var(--header-h) + clamp(40px, 8vw, 80px)); padding-bottom: clamp(28px, 5vw, 48px); text-align: center; min-height: 240px; }
.contact-hero h1 { font-size: clamp(2.2rem, 6vw, 3.6rem); margin: 18px 0 14px; }
.contact-hero p { max-width: 540px; margin: 0 auto; font-size: 1.08rem; }

.channel-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.channel-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 16px;
  padding: 24px; box-shadow: var(--shadow-s);
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms, border-color 240ms;
  display: flex; flex-direction: column; gap: 4px;
}
.channel-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); border-color: var(--hair); }
.channel-card .ic { width: 50px; height: 50px; border-radius: 13px; background: var(--grad-soft); color: var(--accent-deep); display: grid; place-items: center; margin-bottom: 14px; border: 1px solid var(--hair); }
.channel-card .ic svg { width: 24px; height: 24px; }
.channel-card .ch-name { font-family: 'Sora', sans-serif; font-weight: 600; font-size: 1.02rem; letter-spacing: 0.02em; }
.channel-card .ch-val { font-size: 15px; color: var(--accent-deep); font-weight: 600; word-break: break-word; }
.channel-card .ch-sub { font-size: 12.5px; color: var(--ink-faint); }

.hours-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 10px; margin-top: 8px; }
.hours-grid .day { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 15px 16px; }
.hours-grid .day.is-today { border-color: var(--accent); background: var(--grad-soft); }
.hours-grid .day b { font-family: 'Sora', sans-serif; font-size: 13px; display: block; }
.hours-grid .day span { font-size: 13.5px; color: var(--ink-soft); font-variant-numeric: tabular-nums; }

/* form */
.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: 22px; padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow-m); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label, .field > .lbl { font-family: 'Sora', sans-serif; font-weight: 600; font-size: 14px; color: var(--ink); }
.field input, .field select, .field textarea {
  font-family: 'Manrope', sans-serif; font-size: 15px; color: var(--ink);
  background: var(--surface-2); border: 1.5px solid var(--line); border-radius: 12px;
  padding: 13px 15px; transition: border-color 200ms, box-shadow 200ms, background 200ms;
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); background: #fff; box-shadow: 0 0 0 3px rgba(176,122,46,0.14); }
.field textarea { min-height: 130px; resize: vertical; }
.field.kvkk { flex-direction: row; align-items: flex-start; gap: 10px; }
.field.kvkk label { font-family: 'Manrope', sans-serif; font-weight: 500; font-size: 13.5px; 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-card button[type="submit"] { margin-top: 4px; }
@media (min-width: 641px) { .form-card button[type="submit"] { width: auto; } }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); color: rgba(253,246,236,0.72); padding: clamp(52px, 7vw, 82px) 0 28px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: clamp(28px, 5vw, 48px); }
.site-footer .brand { color: #FBF4E9; }
.site-footer .brand small { color: rgba(253,246,236,0.5); }
.footer-about { font-size: 14px; margin: 18px 0 18px; max-width: 320px; color: rgba(253,246,236,0.64); }
.footer-col h4 { font-family: 'Sora', sans-serif; font-weight: 600; color: #FBF4E9; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer-col a { color: rgba(253,246,236,0.72); font-size: 14.5px; transition: color 200ms; }
.footer-col a:hover { color: var(--gold); }
.footer-contact { display: grid; gap: 10px; font-size: 14px; }
.footer-contact a { color: rgba(253,246,236,0.84); word-break: break-word; }
.footer-contact a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,248,238,0.08); display: grid; place-items: center; color: #fff; transition: background 200ms, transform 200ms; }
.footer-social a:hover { background: var(--accent); transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; align-items: center; margin-top: clamp(34px, 5vw, 50px); padding-top: 24px; border-top: 1px solid rgba(255,244,228,0.14); font-size: 13px; }
.footer-bottom .legal { color: rgba(253,246,236,0.5); }
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.footer-bottom nav a { color: rgba(253,246,236,0.6); font-size: 13px; }
.footer-bottom nav a:hover { color: var(--gold); }
.footer-meta { font-size: 12px; color: rgba(253,246,236,0.42); margin-top: 14px; line-height: 1.7; }

/* ============================================================
   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); border-radius: 12px; }
.table-scroll > table { margin: 0 !important; min-width: 480px; width: 100%; border-collapse: collapse; font-size: 14.5px; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }
.table-scroll th, .table-scroll td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--line); }
.table-scroll th { font-family: 'Sora', sans-serif; font-weight: 600; background: var(--surface-2); color: var(--ink); }
.table-scroll tr:last-child td { border-bottom: 0; }

/* ============================================================
   PROSE (legal + about pages)
   ============================================================ */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: clamp(1.5rem, 3.6vw, 2.1rem); margin-top: 1.8em; }
.prose h3 { font-size: 1.25rem; margin-top: 1.5em; }
.prose p, .prose li { font-size: 15.5px; color: var(--ink-soft); line-height: 1.72; }
.prose { line-height: 1.72; }
.prose ul, .prose ol { padding-left: 22px; }
.prose li { margin-bottom: 8px; }
.prose-visual { width: 100%; aspect-ratio: 3/2; object-fit: cover; border-radius: 20px; box-shadow: var(--shadow-m); margin-bottom: clamp(20px, 3vw, 30px); }
.page-hero { padding-top: calc(var(--header-h) + clamp(40px, 7vw, 72px)); padding-bottom: clamp(20px, 4vw, 36px); text-align: center; }
.page-hero h1 { font-size: clamp(2.2rem, 6vw, 3.4rem); margin: 16px 0 10px; }
.page-hero p { max-width: 560px; margin: 0 auto; }
.updated-note { font-size: 13px; color: var(--ink-faint); }

/* sitemap */
.sitemap-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.sitemap-cols h3 { font-size: 1.15rem; margin-bottom: 12px; }
.sitemap-cols ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.sitemap-cols a { font-size: 15px; color: var(--ink-soft); }
.sitemap-cols a:hover { color: var(--accent-deep); }

/* 404 */
.err-wrap { min-height: 70vh; display: grid; place-items: center; text-align: center; padding-top: var(--header-h); }
.err-wrap .code { font-family: 'Fraunces', serif; font-weight: 600; font-size: clamp(5rem, 20vw, 11rem); line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* thank you */
.ty-wrap { min-height: 74vh; display: grid; place-items: center; text-align: center; padding: calc(var(--header-h) + 40px) 0 60px; }
.ty-card { max-width: 520px; }
.ty-card .ok { width: 84px; height: 84px; margin: 0 auto 22px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; box-shadow: var(--shadow-lift); animation: pop 500ms cubic-bezier(.2,.7,.2,1); }
.ty-card .ok svg { width: 40px; height: 40px; color: #fff; }

/* about */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.team-card { background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: 26px; box-shadow: var(--shadow-s); transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms; }
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.team-card .av { width: 64px; height: 64px; border-radius: 50%; background: var(--grad); color: #fff; display: grid; place-items: center; font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1.4rem; margin-bottom: 16px; }
.team-card h3 { font-size: 1.25rem; margin-bottom: 2px; }
.team-card .role { font-family: 'Sora', sans-serif; font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-2-deep); font-weight: 600; margin-bottom: 10px; }
.team-card p { font-size: 14px; margin: 0; }

.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; text-align: center; }
.stat-band .s { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 26px 16px; box-shadow: var(--shadow-s); transition: transform 240ms, box-shadow 240ms; }
.stat-band .s:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.stat-band .num { font-family: 'Fraunces', serif; font-weight: 600; font-size: clamp(1.8rem, 4vw, 2.5rem); color: var(--ink); line-height: 1; }
.stat-band .num .suffix { color: var(--accent-2-deep); }
.stat-band .lbl { font-family: 'Sora', sans-serif; font-size: 12px; color: var(--ink-faint); font-weight: 600; margin-top: 9px; letter-spacing: 0.02em; }

.notes-list { display: grid; gap: 14px; max-width: 640px; margin: 0 auto; }
.note-entry { display: grid; grid-template-columns: auto 1fr; gap: 16px; padding: 18px 22px; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; transition: transform 220ms, box-shadow 220ms; }
.note-entry:hover { transform: translateX(4px); box-shadow: var(--shadow-s); }
.note-entry .date { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 12px; color: var(--accent-deep); white-space: nowrap; }
.note-entry p { margin: 0; font-size: 14px; }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 640ms cubic-bezier(.2,.7,.2,1), transform 640ms 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; } }
html.no-js .reveal { opacity: 1; transform: none; }

/* smoke/scent drift decor */
.scent-drift { position: absolute; border-radius: 50%; filter: blur(30px); opacity: 0.5; pointer-events: none; animation: drift 14s ease-in-out infinite; }
@keyframes drift { 0%,100% { transform: translate(0,0) scale(1);} 33% { transform: translate(20px,-24px) scale(1.15);} 66% { transform: translate(-16px,14px) scale(0.92);} }
@media (prefers-reduced-motion: reduce) { .scent-drift, .brand__mark .drop, .hero::before { animation: none !important; } }

/* ============================================================
   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; box-shadow: var(--shadow-m); z-index: 9999;
  transform: translateY(140%); opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner h3 { font-size: 1.15rem; margin-bottom: 6px; }
.cookie-banner p { font-size: 13.5px; margin-bottom: 16px; }
.cookie-banner p a { color: var(--accent-deep); text-decoration: underline; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-actions button { flex: 1; min-width: 120px; min-height: 44px; font-family: 'Sora', sans-serif; font-weight: 600; font-size: 14px; border-radius: 10px; cursor: pointer; border: 1.5px solid var(--line-strong); transition: all 200ms; }
.cookie-actions .c-accept { background: var(--grad); color: #fff; border-color: transparent; }
.cookie-actions .c-accept:hover, .cookie-actions .c-accept:focus-visible { transform: translateY(-2px); box-shadow: var(--shadow-s); }
/* Reddet, Kabul et ile eşit görsel ağırlıkta (dolu buton) — KVKK adil seçim */
.cookie-actions .c-reject { background: var(--ink); color: #fff; border-color: transparent; }
.cookie-actions .c-reject:hover, .cookie-actions .c-reject:focus-visible { background: var(--accent-deep); transform: translateY(-2px); box-shadow: var(--shadow-s); }
.cookie-actions .c-settings { background: var(--surface); color: var(--ink); }
.cookie-actions .c-settings:hover, .cookie-actions .c-settings:focus-visible { background: var(--surface-2); border-color: var(--accent); }
@media (prefers-reduced-motion: reduce) { .cookie-actions button:hover, .cookie-actions button:focus-visible { transform: none; } }
@media (min-width: 720px) { .cookie-banner { left: 24px; right: auto; max-width: 420px; } }

/* cookie settings modal */
.cookie-modal { position: fixed; inset: 0; z-index: 10000; display: none; place-items: center; padding: 20px; background: rgba(24,14,6,0.55); }
.cookie-modal.is-open { display: grid; }
.cookie-modal .box { background: var(--surface); border-radius: 20px; padding: 28px; max-width: 460px; width: 100%; box-shadow: var(--shadow-m); }
.cookie-modal h3 { font-size: 1.35rem; }
.cookie-toggle { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.cookie-toggle:last-of-type { border-bottom: 0; }
.cookie-toggle .txt b { font-family: 'Sora', sans-serif; font-size: 14.5px; display: block; }
.cookie-toggle .txt span { font-size: 13px; color: var(--ink-faint); }
.cookie-toggle input { width: 20px; height: 20px; accent-color: var(--accent); margin-top: 2px; flex: none; }
.cookie-modal .save-row { margin-top: 20px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1023px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: inline-flex; }
}
@media (max-width: 860px) {
  .result-top { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .match-grid, .feature-grid, .price-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .testi:nth-child(3) { grid-column: auto; }
  .stat-band { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .family-grid { grid-template-columns: 1fr; }
  .family-thumb:nth-child(2) { margin-top: 0; }
  .step-dots .lbl { font-size: 10px; }
}
@media (max-width: 480px) {
  .chips.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .chip { padding: 16px 10px; }
  .chip .ico { width: 30px; height: 30px; }
  .config-card { padding: 20px 16px; }
  .step-nav .btn { padding: 13px 18px; font-size: 14px; }
  .cta-band, .form-card { border-radius: 20px; }
  .hero-actions .btn { width: 100%; }
  .step-dots .lbl { display: none; }
}

.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 20px;
}

/* mobile drawer-CTA — high specificity color guard (KVKK/contrast) */
.drawer a.drawer-cta, nav.drawer a.drawer-cta, .drawer .drawer-cta { color: #fff !important; }
