/* ============================================================
   Yaka Atölye — özel dikim ceket/takım konfigüratörü
   ============================================================ */

:root {
  --bg: #F0FBF7;
  --surface: #FFFFFF;
  --surface-2: #E7F6F0;
  --ink: #10302A;
  --ink-soft: #3C5A52;
  --ink-mute: #6E8780;
  --accent: #0E9488;
  --accent-dk: #0A6E64;
  --accent-2: #F2B705;
  --accent-2-dk: #C9990A;
  --line: rgba(16, 48, 42, 0.12);
  --line-strong: rgba(16, 48, 42, 0.24);
  --shadow-soft: 0 18px 48px -28px rgba(10, 56, 48, 0.5);
  --shadow-card: 0 22px 60px -34px rgba(10, 56, 48, 0.42);
  --header-h: 76px;
  --maxw: 1400px;
  --r: 14px;
  interpolate-size: allow-keywords;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

html, body {
  overflow-x: hidden;
  max-width: 100vw;
  margin: 0;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5 {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 .5em;
  line-height: 1.1;
  letter-spacing: -0.012em;
}

p { margin: 0 0 1em; }
a { color: var(--accent-dk); text-decoration: none; }

img { max-width: 100%; height: auto; display: block; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: clamp(16px, 3vw, 40px);
  padding-right: clamp(16px, 3vw, 40px);
}

.tnum { font-variant-numeric: tabular-nums; font-feature-settings: "tnum"; }

.eyebrow {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: .76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-dk);
  margin: 0 0 .85em;
  display: inline-block;
}

.lead { font-size: 1.12rem; color: var(--ink-soft); }

.word-break { word-break: break-word; overflow-wrap: anywhere; }

:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  border-radius: 0 0 10px 0;
  z-index: 2000;
}
.skip-link:focus { left: 0; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: .98rem;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .2s cubic-bezier(.2,.7,.2,1), background .24s, color .24s, box-shadow .24s, border-color .24s;
  text-align: center;
  line-height: 1.1;
}
.btn-primary {
  background: var(--ink);
  color: var(--surface);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent);
  color: var(--surface);
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -16px rgba(14, 148, 136, .7);
}
.btn-primary .arr { transition: transform .24s; }
.btn-primary:hover .arr { transform: translateX(4px); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface);
  color: var(--accent-dk);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--accent-2);
  color: var(--ink);
}
.btn-gold:hover, .btn-gold:focus-visible {
  background: var(--accent-2-dk);
  color: var(--ink);
  transform: translateY(-2px);
}
.btn-block { width: 100%; justify-content: center; }

/* ============================================================
   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(240, 251, 247, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: background .24s ease, box-shadow .24s ease, height .24s ease, border-color .24s ease;
}
.site-header.is-scrolled {
  background: rgba(240, 251, 247, 0.98);
  box-shadow: 0 8px 24px -16px rgba(10, 56, 48, 0.4);
  border-bottom-color: var(--line);
  height: 64px;
}
.header-inner {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: clamp(16px, 3vw, 40px);
  padding-right: clamp(16px, 3vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.16rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand:hover { color: var(--ink); }
.brand-mark {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: var(--ink);
  color: var(--accent-2);
  flex: 0 0 auto;
}
.brand-mark svg { width: 20px; height: 20px; }
.brand small {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 30px);
}
.nav-desktop a {
  position: relative;
  font-family: 'Sora', sans-serif;
  font-weight: 500;
  font-size: .95rem;
  color: var(--ink-soft);
  padding: 6px 2px;
  transition: color .2s;
}
.nav-desktop a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .26s cubic-bezier(.2,.7,.2,1);
}
.nav-desktop a:not(.nav-cta):hover { color: var(--ink); }
.nav-desktop a:not(.nav-cta):hover::after,
.nav-desktop a.is-active:not(.nav-cta)::after { transform: scaleX(1); }
.nav-desktop a.is-active:not(.nav-cta) { color: var(--accent-dk); }

.nav-cta {
  background: var(--ink);
  color: var(--surface) !important;
  padding: 10px 20px !important;
  border-radius: 999px;
  transition: background .22s, color .22s, transform .2s;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-cta:hover {
  background: var(--accent);
  color: var(--surface) !important;
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  position: relative;
  width: 46px; height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
  z-index: 1100;
  flex: 0 0 auto;
}
.nav-toggle span {
  position: absolute;
  left: 12px;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .26s cubic-bezier(.2,.7,.2,1), opacity .2s;
}
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Drawer */
.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: var(--surface);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  display: flex;
  flex-direction: column;
  padding: calc(var(--header-h) + 14px) 26px 30px;
  box-shadow: -24px 0 60px -30px rgba(10, 56, 48, .5);
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  font-family: 'Sora', sans-serif;
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  transition: color .2s, padding-left .2s;
}
.drawer a:hover, .drawer a.is-active { color: var(--accent-dk); padding-left: 6px; }
.drawer .drawer-cta {
  margin-top: 22px;
  border-bottom: none;
}
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8, 28, 24, 0.55);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: opacity 240ms ease, visibility 240ms ease;
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: block; }
}

/* ============================================================
   Main / sections
   ============================================================ */
main { padding-top: var(--header-h); }

.section { padding: clamp(56px, 8vw, 110px) 0; }
.section-tight { padding: clamp(40px, 6vw, 80px) 0; }

.section-head { max-width: 720px; margin-bottom: clamp(30px, 4vw, 54px); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.9rem);
}
.section-head p { color: var(--ink-soft); font-size: 1.08rem; margin-bottom: 0; }

.band {
  background: var(--ink);
  color: #DDEFE9;
}
.band h2, .band h3 { color: #fff; }
.band .eyebrow { color: var(--accent-2); }
.band .section-head p { color: #AECBC2; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  padding: clamp(28px, 5vw, 56px) 0 clamp(40px, 5vw, 70px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -120px; right: -160px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(14,148,136,.16), transparent 68%);
  z-index: 0;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -140px; left: -120px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(242,183,5,.12), transparent 70%);
  z-index: 0;
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; }
.hero-top {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(26px, 3.5vw, 40px);
}
.hero-top h1 {
  font-size: clamp(2.3rem, 6vw, 4rem);
  margin-bottom: .35em;
}
.hero-top h1 .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(22px);
  animation: heroWord .7s cubic-bezier(.2,.7,.2,1) forwards;
  animation-delay: calc(var(--w) * 90ms + 120ms);
}
.no-js .hero-top h1 .word { opacity: 1; transform: none; animation: none; }
@keyframes heroWord { to { opacity: 1; transform: none; } }
.hero-top p { font-size: clamp(1.05rem, 2vw, 1.28rem); color: var(--ink-soft); margin-bottom: 0; }

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 14px;
  margin-top: 22px;
}
.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 7px 14px;
  border-radius: 999px;
}
.trust-strip span svg { width: 15px; height: 15px; color: var(--accent); }

/* ============================================================
   Configurator
   ============================================================ */
.configurator {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: clamp(18px, 2.4vw, 32px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(18px, 2.4vw, 34px);
  box-shadow: var(--shadow-card);
  position: relative;
}
@media (max-width: 880px) {
  .configurator { grid-template-columns: 1fr; }
}

.cfg-panel { min-width: 0; }
.cfg-group { margin-bottom: 26px; }
.cfg-group:last-child { margin-bottom: 0; }
.cfg-group > .cfg-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.cfg-group .cfg-label h3 {
  font-size: 1.02rem;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 9px;
}
.cfg-group .cfg-label h3 svg { width: 19px; height: 19px; color: var(--accent); flex: 0 0 auto; }
.cfg-group .cfg-label .hint { font-size: .82rem; color: var(--ink-mute); }

/* chips */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1.5px solid var(--line);
  background: var(--surface);
  border-radius: 12px;
  padding: 9px 13px 9px 10px;
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: .9rem;
  color: var(--ink-soft);
  transition: border-color .2s, background .2s, transform .18s, box-shadow .2s;
  min-width: 0;
}
.chip:hover { border-color: var(--line-strong); transform: translateY(-1px); }
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip .swatch {
  width: 26px; height: 26px;
  border-radius: 50%;
  flex: 0 0 auto;
  border: 1px solid rgba(0,0,0,.14);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.35);
}
.chip .chip-text { display: flex; flex-direction: column; line-height: 1.18; }
.chip .chip-name { font-weight: 600; color: var(--ink); }
.chip .chip-add {
  font-size: .74rem;
  color: var(--accent-dk);
  font-variant-numeric: tabular-nums;
}
.chip .chip-add.is-free { color: var(--ink-mute); }
.chip:has(input:checked) {
  border-color: var(--accent);
  background: var(--surface-2);
  box-shadow: 0 0 0 3px rgba(14,148,136,.14);
}
.chip:has(input:checked) { animation: chipPop .32s cubic-bezier(.2,.9,.3,1.4); }
@keyframes chipPop {
  0% { transform: scale(.96); }
  55% { transform: scale(1.04); }
  100% { transform: scale(1); }
}
.chip .check {
  position: absolute;
  top: -7px; right: -7px;
  width: 19px; height: 19px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 11px;
  opacity: 0;
  transform: scale(.5);
  transition: opacity .2s, transform .2s;
}
.chip:has(input:checked) .check { opacity: 1; transform: scale(1); }

/* segmented toggle */
.segmented {
  display: inline-flex;
  background: var(--surface-2);
  border-radius: 12px;
  padding: 4px;
  gap: 4px;
  flex-wrap: wrap;
}
.segmented label {
  position: relative;
  cursor: pointer;
}
.segmented input { position: absolute; opacity: 0; pointer-events: none; }
.segmented span {
  display: inline-block;
  padding: 9px 16px;
  border-radius: 9px;
  font-family: 'Sora', sans-serif;
  font-weight: 500;
  font-size: .9rem;
  color: var(--ink-soft);
  transition: background .2s, color .2s, box-shadow .2s;
}
.segmented label:has(input:checked) span {
  background: var(--surface);
  color: var(--accent-dk);
  box-shadow: var(--shadow-soft);
  font-weight: 600;
}

/* Preview panel */
.cfg-preview {
  position: sticky;
  top: calc(var(--header-h) + 14px);
  align-self: start;
  background: linear-gradient(160deg, #F4FBF8, #E3F4EE);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
@media (max-width: 880px) {
  .cfg-preview { position: static; order: -1; }
}
.preview-stage {
  position: relative;
  flex: 1;
  display: grid;
  place-items: center;
  min-height: 320px;
  padding: 10px 0 6px;
}
.jacket-svg { width: min(280px, 78%); height: auto; filter: drop-shadow(0 24px 30px rgba(10,56,48,.22)); }
.jacket-body, .jacket-lapel, .jacket-lining, .jacket-btn {
  transition: fill .5s ease;
}
.preview-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.preview-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.preview-tags span {
  font-size: .72rem;
  font-weight: 600;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  padding: 4px 9px;
  border-radius: 999px;
}
.price-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  background: var(--ink);
  color: #fff;
  border-radius: 14px;
  padding: 10px 16px;
  box-shadow: 0 16px 30px -18px rgba(10,56,48,.7);
}
.price-badge .pb-label {
  font-size: .64rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-2);
}
.price-badge .pb-amount {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}
.price-badge.bump { animation: pbBump .4s cubic-bezier(.2,.9,.3,1.4); }
@keyframes pbBump { 0%{transform:scale(1)}50%{transform:scale(1.06)}100%{transform:scale(1)} }

.cfg-foot {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cfg-foot .pb-note { font-size: .78rem; color: var(--ink-mute); margin: 0; }

/* texture overlay on jacket via pattern swatches reference */
.fabric-tex { mix-blend-mode: multiply; opacity: .5; transition: opacity .5s; }

/* ============================================================
   Steps (nasil-calisir) — vertical timeline
   ============================================================ */
.timeline {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 0;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 27px; top: 14px; bottom: 14px;
  width: 2px;
  background: linear-gradient(var(--accent), var(--accent-2));
}
.tl-step {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 16px 0;
}
.tl-num {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--surface);
  border: 1.5px solid var(--accent);
  color: var(--accent-dk);
  display: grid; place-items: center;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-soft);
}
.tl-body { padding-top: 4px; min-width: 0; }
.tl-body h3 { font-size: 1.18rem; margin-bottom: 4px; }
.tl-body .tl-when {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--accent-2-dk);
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 6px;
}
.tl-body p { color: var(--ink-soft); margin: 0; }

/* ============================================================
   Card grids
   ============================================================ */
.grid {
  display: grid;
  gap: clamp(14px, 2vw, 22px);
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 960px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: clamp(18px, 2.2vw, 26px);
  transition: transform .22s cubic-bezier(.2,.7,.2,1), box-shadow .24s, border-color .24s;
  min-width: 0;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: var(--accent);
}
.card .ico {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--surface-2);
  color: var(--accent-dk);
  display: grid; place-items: center;
  margin-bottom: 14px;
}
.card .ico svg { width: 24px; height: 24px; }
.card h3 { font-size: 1.12rem; margin-bottom: 6px; overflow-wrap: break-word; word-break: keep-all; }
.card p { color: var(--ink-soft); margin: 0; font-size: .96rem; }
.card .kv {
  margin-top: 12px;
  font-size: .82rem;
  color: var(--ink-mute);
  display: flex; flex-direction: column; gap: 4px;
}
.card .kv b { color: var(--accent-dk); font-variant-numeric: tabular-nums; }

/* ============================================================
   Pricing
   ============================================================ */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
  align-items: stretch;
}
@media (max-width: 940px) { .pricing { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; } }
.plan {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  transition: transform .22s, box-shadow .24s, border-color .24s;
}
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.plan.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(14,148,136,.12), var(--shadow-card);
  position: relative;
}
.plan.featured::before {
  content: "En çok tercih edilen";
  position: absolute;
  top: -13px; left: 24px;
  background: var(--accent-2);
  color: var(--ink);
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: .72rem;
  padding: 5px 12px;
  border-radius: 999px;
}
.plan h3 { font-size: 1.24rem; margin-bottom: 4px; }
.plan .plan-tag { font-size: .9rem; color: var(--ink-mute); margin-bottom: 16px; }
.plan .price {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 2.1rem;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  line-height: 1.05;
}
.plan .price small { font-size: .9rem; font-weight: 500; color: var(--ink-mute); display: block; margin-top: 2px; }
.plan ul { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 9px; }
.plan ul li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 9px;
  font-size: .92rem;
  color: var(--ink-soft);
  align-items: start;
}
.plan ul li svg { width: 17px; height: 17px; margin-top: 3px; }
.plan ul li.inc svg { color: var(--accent); }
.plan ul li.exc { color: var(--ink-mute); }
.plan ul li.exc svg { color: var(--line-strong); }
.plan .plan-foot { margin-top: auto; padding-top: 22px; }
.plan .plan-foot .deliver { font-size: .8rem; color: var(--ink-mute); margin-bottom: 12px; }
.price-disc {
  text-align: center;
  color: var(--ink-mute);
  font-size: .85rem;
  margin-top: 22px;
}

/* ============================================================
   Testimonials
   ============================================================ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 22px);
}
@media (max-width: 960px) { .testi-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .testi-grid { grid-template-columns: 1fr; } }
.testi {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.testi .stars { color: var(--accent-2); letter-spacing: 2px; font-size: .9rem; margin-bottom: 10px; }
.testi p { font-size: .98rem; color: var(--ink); }
.testi .who {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: .86rem;
}
.testi .who b { font-family: 'Sora', sans-serif; color: var(--ink); }
.testi .who span { color: var(--ink-mute); display: block; }

/* ============================================================
   Stats
   ============================================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2vw, 24px);
  text-align: center;
}
@media (max-width: 720px) { .stats { grid-template-columns: 1fr 1fr; } }
.stat .num {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--accent-2);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.stat .lbl { font-size: .9rem; color: #AECBC2; margin-top: 6px; }

/* ============================================================
   Manifesto / quote
   ============================================================ */
.manifesto {
  text-align: center;
  max-width: 940px;
  margin: 0 auto;
}
.manifesto blockquote {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: clamp(1.5rem, 3.6vw, 2.5rem);
  line-height: 1.28;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
}
.manifesto blockquote .hl { color: var(--accent-dk); }
.manifesto cite { display: block; margin-top: 18px; font-style: normal; color: var(--ink-mute); font-size: .95rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px clamp(18px, 3vw, 26px);
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .pm {
  flex: 0 0 auto;
  width: 24px; height: 24px;
  position: relative;
  transition: transform .3s;
}
.faq-item summary .pm::before, .faq-item summary .pm::after {
  content: "";
  position: absolute;
  background: var(--accent);
  border-radius: 2px;
}
.faq-item summary .pm::before { top: 11px; left: 4px; width: 16px; height: 2px; }
.faq-item summary .pm::after { left: 11px; top: 4px; width: 2px; height: 16px; transition: transform .3s; }
.faq-item[open] summary .pm::after { transform: rotate(90deg); }
.faq-item > .answer {
  height: 0;
  padding: 0 clamp(18px, 3vw, 26px);
  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 { color: var(--ink-soft); margin: 0; }
@media (prefers-reduced-motion: reduce) {
  .faq-item > .answer { transition: none; }
}

/* ============================================================
   Kumas rehberi cards with image
   ============================================================ */
.fabric-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .22s, box-shadow .24s, border-color .24s;
}
.fabric-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: var(--accent); }
.fabric-card .fc-media { aspect-ratio: 4/3; overflow: hidden; background: var(--surface-2); }
.fabric-card .fc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.fabric-card:hover .fc-media img { transform: scale(1.05); }
.fabric-card .fc-body { padding: 20px; }
.fabric-card .fc-body h3 { font-size: 1.1rem; margin-bottom: 4px; }
.fabric-card .fc-body p { color: var(--ink-soft); font-size: .92rem; margin: 0 0 10px; }
.fabric-card .fc-meta { font-size: .8rem; color: var(--accent-dk); font-weight: 600; }

/* ============================================================
   Contact
   ============================================================ */
.contact-hero {
  background: var(--ink);
  color: #DDEFE9;
  text-align: center;
  padding: clamp(50px, 8vw, 90px) 0;
}
.contact-hero h1 { color: #fff; font-size: clamp(2rem, 5vw, 3.2rem); }
.contact-hero p { color: #AECBC2; max-width: 560px; margin: 0 auto; }
.contact-hero .eyebrow { color: var(--accent-2); }

.channel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(14px, 2vw, 20px);
}
.channel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px;
  transition: transform .22s, box-shadow .24s, border-color .24s;
}
.channel:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); border-color: var(--accent); }
.channel .ci {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--accent-dk);
  display: grid; place-items: center;
  margin-bottom: 14px;
}
.channel .ci svg { width: 22px; height: 22px; }
.channel h3 { font-size: 1rem; margin-bottom: 4px; }
.channel a, .channel .cval { color: var(--ink); font-weight: 600; word-break: break-word; }
.channel a:hover { color: var(--accent-dk); }
.channel .csub { font-size: .82rem; color: var(--ink-mute); margin-top: 4px; }

.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
}
.hours-day {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  font-variant-numeric: tabular-nums;
}
.hours-day.today { border-color: var(--accent); background: var(--surface-2); }
.hours-day .d { font-family: 'Sora', sans-serif; font-weight: 600; font-size: .88rem; }
.hours-day .t { font-size: .86rem; color: var(--ink-soft); }
.hours-day.today .t { color: var(--accent-dk); font-weight: 600; }

/* ============================================================
   Forms
   ============================================================ */
.form-wrap {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(20px, 3vw, 36px);
  box-shadow: var(--shadow-card);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: 'Sora', sans-serif; font-weight: 500; font-size: .9rem; color: var(--ink); }
.field input, .field select, .field textarea {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  transition: border-color .2s, box-shadow .2s, background .2s;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface);
  box-shadow: 0 0 0 3px rgba(14,148,136,.14);
}
.field.kvkk {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: var(--ink-soft);
}
.field input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  width: 18px; height: 18px;
  min-width: 18px; min-height: 18px;
  padding: 0; border: 0; margin: 2px 0 0;
  accent-color: var(--accent);
}
.form-foot { margin-top: 20px; display: flex; justify-content: flex-end; }
@media (max-width: 640px) { .form-foot { justify-content: stretch; } .form-foot .btn { width: 100%; justify-content: center; } }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: #0B241F;
  color: #AECBC2;
  padding: clamp(48px, 6vw, 72px) 0 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: clamp(24px, 3vw, 44px);
}
@media (max-width: 880px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand .brand { color: #fff; margin-bottom: 14px; }
.footer-brand .brand small { color: #7FA59B; }
.footer-brand p { font-size: .9rem; color: #8FB3AA; max-width: 320px; }
.footer-col h4 { color: #fff; font-size: .92rem; letter-spacing: .04em; margin-bottom: 14px; }
.footer-col a, .footer-col .fline {
  display: block;
  color: #AECBC2;
  font-size: .9rem;
  padding: 5px 0;
  transition: color .2s, padding-left .2s;
  word-break: break-word;
}
.footer-col a:hover { color: #fff; padding-left: 4px; }
.footer-col .fline { color: #8FB3AA; }
.footer-social { display: flex; gap: 10px; margin-top: 12px; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 10px;
  display: grid; place-items: center;
  color: #AECBC2;
  padding: 0;
}
.footer-social a:hover { color: var(--ink); background: var(--accent-2); border-color: var(--accent-2); padding-left: 0; }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  align-items: center;
  justify-content: space-between;
  font-size: .8rem;
  color: #7FA59B;
}
.footer-bottom .legal-links { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.footer-bottom a { color: #7FA59B; }
.footer-bottom a:hover { color: #fff; }

/* ============================================================
   Doc pages
   ============================================================ */
.doc-hero {
  background: var(--surface-2);
  padding: clamp(40px, 6vw, 70px) 0 clamp(28px, 4vw, 40px);
  border-bottom: 1px solid var(--line);
}
.doc-hero h1 { font-size: clamp(1.9rem, 4.5vw, 2.8rem); }
.doc-hero p { color: var(--ink-soft); margin: 0; }
.doc-body { max-width: 760px; line-height: 1.75; }
.doc-body h2 { font-size: 1.4rem; margin-top: 40px; }
.doc-body h3 { font-size: 1.1rem; margin-top: 26px; }
.doc-body p, .doc-body li { color: var(--ink-soft); line-height: 1.75; }
.doc-body p { margin-bottom: 1.15em; }
.doc-body ul, .doc-body ol { padding-left: 22px; }
.doc-body li { margin-bottom: 8px; }
.doc-meta { font-size: .85rem; color: var(--ink-mute); margin-bottom: 8px; }

/* sitemap */
.sitemap-list { list-style: none; padding: 0; display: grid; gap: 10px; max-width: 560px; }
.sitemap-list a {
  display: block;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 18px;
  color: var(--ink);
  font-weight: 600;
  transition: transform .2s, border-color .2s;
}
.sitemap-list a:hover { transform: translateX(4px); border-color: var(--accent); color: var(--accent-dk); }

/* 404 */
.nf {
  min-height: 64vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 60px 0;
}
.nf .code {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: clamp(5rem, 18vw, 11rem);
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.04em;
}

/* ============================================================
   Tables
   ============================================================ */
.table-scroll {
  display: block; width: 100%; max-width: 100%; min-width: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.table-scroll > table { margin: 0 !important; min-width: 480px; width: 100%; border-collapse: collapse; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }
table th, table td { text-align: left; padding: 12px 16px; border-bottom: 1px solid var(--line); font-size: .92rem; }
table th { font-family: 'Sora', sans-serif; font-weight: 600; background: var(--surface-2); color: var(--ink); }
table td { color: var(--ink-soft); }

/* ============================================================
   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: 16px;
  padding: 20px 22px;
  box-shadow: 0 28px 60px -22px rgba(10,56,48,.55);
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  z-index: 9999;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
@media (min-width: 768px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}
.cookie-banner h4 { font-size: 1rem; margin-bottom: 6px; }
.cookie-banner p { font-size: .85rem; color: var(--ink-soft); margin: 0 0 14px; }
.cookie-banner p a { color: var(--accent-dk); text-decoration: underline; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.cookie-actions button {
  flex: 1 1 auto;
  min-height: 44px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: .86rem;
  border-radius: 10px;
  cursor: pointer;
  border: 1.5px solid var(--line-strong);
  background: var(--surface);
  color: var(--ink);
  transition: background .2s, color .2s, border-color .2s;
}
.cookie-actions button[data-consent="accept"] { background: var(--ink); color: #fff; border-color: var(--ink); }
.cookie-actions button[data-consent="accept"]:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.cookie-actions button[data-consent="reject"]:hover,
.cookie-actions button[data-consent="settings"]:hover { border-color: var(--accent); color: var(--accent-dk); }

/* ============================================================
   Reveal
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms cubic-bezier(.2,.7,.2,1), transform 600ms cubic-bezier(.2,.7,.2,1);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.reveal.is-in { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* utility */
.mt-s { margin-top: 14px; }
.mt-m { margin-top: 26px; }
.center { text-align: center; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; }
.cta-row.center { justify-content: center; }
@media (max-width: 460px) {
  .cta-row .btn { width: 100%; justify-content: center; }
}

/* note block */
.note-block {
  background: var(--surface-2);
  border-left: 3px solid var(--accent);
  border-radius: 0 12px 12px 0;
  padding: 16px 20px;
  font-size: .92rem;
  color: var(--ink-soft);
}

/* atelier notes */
.notes-list { display: grid; gap: 12px; max-width: 720px; }
.note-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: baseline;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 20px;
}
.note-row .nd { font-size: .78rem; font-weight: 600; color: var(--accent-2-dk); white-space: nowrap; }
.note-row .nt { color: var(--ink); }
@media (max-width: 480px) { .note-row { grid-template-columns: 1fr; gap: 4px; } }

.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}
