/* ============================================================
   Atelier Selen — Couture Atölye
   Design DNA: storytelling longread, couture, el nakışı
   ============================================================ */

:root {
  --bg: #FBF6F4;
  --surface: #F3E7E4;
  --surface-2: #EFDDD8;
  --ink: #3B1F26;
  --ink-soft: #5C4248;
  --accent: #8C2F39;
  --accent-2: #C9A66B;
  --line: rgba(59, 31, 38, 0.14);
  --line-strong: rgba(59, 31, 38, 0.28);

  --header-h: 76px;
  --maxw: 1080px;
  --pad: clamp(20px, 6vw, 80px);

  --f-head: 'Cormorant', 'Cambria', Georgia, serif;
  --f-body: 'Mulish', 'Segoe UI', system-ui, sans-serif;

  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 {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  font-weight: 300;
  font-size: clamp(16px, 1.05rem, 18px);
  line-height: 1.75;
  letter-spacing: 0.002em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--f-head);
  font-weight: 600;
  font-style: italic;
  line-height: 1.08;
  color: var(--ink);
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.6rem, 7vw, 4.5rem); letter-spacing: -0.012em; }
h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.45rem); }

p { margin: 0 0 1.2em; max-width: 64ch; }

a { color: var(--accent); text-decoration: none; transition: color 200ms ease; }
a:hover { color: var(--ink); }

.eyebrow {
  font-family: var(--f-body);
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--accent);
  margin: 0 0 1.1em;
  display: inline-block;
}

.signature {
  font-family: var(--f-head);
  font-style: italic;
  font-weight: 600;
  font-size: 1.9rem;
  color: var(--accent);
  line-height: 1;
}

/* hairline divider */
.hairline {
  border: 0;
  height: 1px;
  background: var(--line);
  margin: clamp(40px, 7vw, 90px) 0;
  position: relative;
  overflow: hidden;
}
.hairline::after {
  content: "";
  position: absolute;
  left: 0; top: 0; height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  transition: width 1100ms cubic-bezier(.2,.7,.2,1);
}
.hairline.is-in::after { width: 38%; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.narrow { max-width: 720px; }

section { position: relative; }

.section {
  padding-top: clamp(56px, 9vw, 120px);
  padding-bottom: clamp(56px, 9vw, 120px);
}

/* vertical chapter marker */
.chapter-mark {
  position: absolute;
  left: clamp(6px, 1.4vw, 22px);
  top: clamp(56px, 9vw, 120px);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--f-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.66rem;
  color: var(--accent-2);
  opacity: 0.85;
  pointer-events: none;
}
@media (max-width: 900px) { .chapter-mark { display: none; } }

/* ============================================================
   Skip link
   ============================================================ */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--bg);
  padding: 10px 18px;
  z-index: 2000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* visually-hidden but accessible to screen readers / DOM scans.
   The scoped second selector outranks `.nav-toggle span` so the
   hidden label never paints as a fourth hamburger bar. */
.sr-only,
.nav-toggle .sr-only {
  position: absolute;
  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;
  background: transparent;
}

a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1080;
  height: var(--header-h);
  background: rgba(251, 246, 244, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid transparent;
  transition: background 240ms ease, box-shadow 240ms ease, height 240ms ease, border-color 240ms ease;
}
.site-header.is-scrolled {
  background: rgba(251, 246, 244, 0.98);
  box-shadow: 0 8px 24px -16px rgba(59, 31, 38, 0.32);
  border-bottom-color: var(--line);
  height: 64px;
}
.header-inner {
  height: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  font-family: var(--f-head);
  font-style: italic;
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.01em;
  display: flex;
  align-items: baseline;
  gap: 7px;
}
.brand:hover { color: var(--ink); }
.brand .brand-mark { color: var(--accent); }
.brand small {
  display: block;
  font-family: var(--f-body);
  font-weight: 600;
  font-style: normal;
  font-size: 0.56rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-top: 3px;
}

.nav-desktop { display: flex; align-items: center; gap: clamp(14px, 2vw, 28px); }
.nav-desktop a {
  position: relative;
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 0.86rem;
  letter-spacing: 0.03em;
  color: var(--ink-soft);
  padding: 6px 0;
}
.nav-desktop a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 1px; width: 0;
  background: var(--accent);
  transition: width 240ms cubic-bezier(.4,0,.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 { width: 100%; }
.nav-desktop a.is-active:not(.nav-cta) { color: var(--accent); }

.nav-cta {
  background: var(--ink);
  color: var(--bg) !important;
  padding: 9px 18px !important;
  border-radius: 999px;
  font-weight: 600 !important;
  letter-spacing: 0.04em;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-cta:hover, .nav-cta:focus-visible {
  background: var(--accent);
  color: var(--bg) !important;
  transform: translateY(-1px);
}

@media (max-width: 1023px) { .nav-desktop { display: none; } }

/* hamburger */
.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;
  padding: 0;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.nav-toggle:hover, .nav-toggle:focus-visible { border-color: var(--accent); box-shadow: 0 8px 20px -14px rgba(140,47,57,0.6); }
.nav-toggle span {
  position: absolute;
  left: 12px;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 200ms ease, top 280ms ease;
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }
@media (max-width: 1023px) { .nav-toggle { display: block; } }

/* ============================================================
   Drawer (outside header)
   ============================================================ */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 8, 11, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 240ms ease, visibility 240ms ease;
  z-index: 1040;
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

.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);
  padding: calc(var(--header-h) + 16px) 28px 32px;
  overflow-y: auto;
  box-shadow: -20px 0 50px -30px rgba(59,31,38,0.5);
}
.drawer.is-open { transform: translateX(0); }
.drawer .drawer-eyebrow {
  font-family: var(--f-body);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.66rem;
  font-weight: 600;
  color: var(--accent-2);
  margin-bottom: 20px;
}
.drawer nav { display: flex; flex-direction: column; }
.drawer nav a {
  font-family: var(--f-head);
  font-style: italic;
  font-size: 1.7rem;
  color: var(--ink);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.drawer nav a:hover, .drawer nav a.is-active { color: var(--accent); }
.drawer .drawer-cta {
  margin-top: 24px;
  display: inline-block;
  text-align: center;
  background: var(--ink);
  color: var(--bg) !important;
  padding: 13px 20px;
  border-radius: 999px;
  font-family: var(--f-body);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.drawer .drawer-cta:hover { background: var(--accent); color: var(--bg) !important; }
.drawer .drawer-contact {
  margin-top: 28px;
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.7;
}
.drawer .drawer-contact a { color: var(--accent); }

/* ============================================================
   Main
   ============================================================ */
main { padding-top: var(--header-h); }

/* ============================================================
   Hero — vertical stack
   ============================================================ */
.hero {
  text-align: center;
  padding-top: clamp(48px, 8vw, 90px);
}
.hero .eyebrow { color: var(--accent); }
.hero h1 {
  margin: 0 auto 0.3em;
  max-width: 14ch;
}
.hero-sub {
  font-family: var(--f-body);
  font-weight: 300;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--ink-soft);
  max-width: 46ch;
  margin: 0 auto 2em;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.4em;
}
.trust-strip {
  display: flex;
  gap: 10px 22px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto clamp(40px, 6vw, 70px);
  max-width: 760px;
  padding: 0;
  list-style: none;
}
.trust-strip li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
}
.trust-strip svg { width: 16px; height: 16px; color: var(--accent-2); flex: none; }

/* hero portrait full width with parallax + stitching SVG overlay */
.hero-portrait {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  aspect-ratio: 3 / 4;
  max-height: 86vh;
  overflow: hidden;
  border-radius: 4px;
}
@media (min-width: 700px) { .hero-portrait { aspect-ratio: 16 / 11; } }
.hero-portrait img {
  position: absolute;
  inset: -8% 0 -8% 0;
  width: 100%;
  height: 116%;
  object-fit: cover;
  will-change: transform;
}
.hero-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(59,31,38,0) 40%, rgba(59,31,38,0.45) 100%);
}
.hero-portrait .stitch-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.hero-portrait .stitch-svg path {
  fill: none;
  stroke: var(--accent-2);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.35));
}
.hero-portrait .stitch-caption {
  position: absolute;
  left: clamp(18px, 4vw, 40px);
  bottom: clamp(18px, 4vw, 34px);
  z-index: 3;
  color: var(--bg);
  font-family: var(--f-head);
  font-style: italic;
  font-size: clamp(1.1rem, 2.4vw, 1.7rem);
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

/* ============================================================
   Buttons
   ============================================================ */
.btn-primary, .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  padding: 14px 28px;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.btn-primary {
  background: var(--ink);
  color: var(--bg);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -16px rgba(140,47,57,0.7);
}
.btn-primary .arrow { transition: transform 220ms ease; }
.btn-primary:hover .arrow { 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(--ink);
  transform: translateY(-2px);
  border-color: var(--accent);
}

/* ============================================================
   Reveal
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms cubic-bezier(.2,.7,.2,1), transform 700ms cubic-bezier(.2,.7,.2,1);
  transition-delay: calc(var(--i, 0) * 90ms);
}
.reveal.is-in { opacity: 1; transform: none; }
html.no-js .reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ============================================================
   Longread story blocks
   ============================================================ */
.story-lead {
  font-family: var(--f-head);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  line-height: 1.3;
  color: var(--ink);
  max-width: 22ch;
  margin: 0 0 1em;
}
.dropcap::first-letter {
  font-family: var(--f-head);
  font-style: italic;
  font-weight: 600;
  font-size: 3.6em;
  float: left;
  line-height: 0.78;
  padding: 6px 12px 0 0;
  color: var(--accent);
}
.story-figure {
  margin: clamp(34px, 6vw, 64px) 0;
}
.story-figure img {
  width: 100%;
  border-radius: 4px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.story-figure.tall img { aspect-ratio: 3 / 4; }
.story-figure figcaption {
  margin-top: 12px;
  font-size: 0.82rem;
  color: var(--ink-soft);
  font-style: italic;
  font-family: var(--f-head);
  font-size: 1.05rem;
}

/* overlapping editorial split */
.split {
  display: grid;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}
@media (min-width: 820px) {
  .split { grid-template-columns: 1.05fr 0.95fr; }
  .split.reverse { grid-template-columns: 0.95fr 1.05fr; }
  .split.reverse .split-media { order: -1; }
}
.split-media img {
  width: 100%;
  border-radius: 4px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.split-media { position: relative; }
.split-media .float-note {
  position: absolute;
  bottom: -22px;
  right: -10px;
  background: var(--ink);
  color: var(--bg);
  padding: 14px 18px;
  border-radius: 4px;
  font-family: var(--f-head);
  font-style: italic;
  font-size: 1.05rem;
  max-width: 200px;
  box-shadow: 0 20px 40px -24px rgba(59,31,38,0.6);
}
@media (max-width: 819px) { .split-media .float-note { position: static; margin-top: 14px; max-width: none; } }

/* ============================================================
   Stats / counters
   ============================================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: clamp(20px, 4vw, 48px);
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(30px, 5vw, 50px) 0;
}
.stat .num {
  font-family: var(--f-head);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--accent);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat .lbl {
  display: block;
  margin-top: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ============================================================
   Process timeline (vertical)
   ============================================================ */
.timeline { position: relative; margin-top: 30px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 19px; top: 8px; bottom: 8px;
  width: 1px;
  background: linear-gradient(180deg, var(--accent-2), var(--accent), transparent);
}
.tl-step {
  position: relative;
  padding-left: 60px;
  padding-bottom: clamp(28px, 4vw, 44px);
}
.tl-step:last-child { padding-bottom: 0; }
.tl-num {
  position: absolute;
  left: 0; top: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--accent);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-head);
  font-style: italic;
  font-weight: 600;
  font-size: 1.1rem;
}
.tl-step .when {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 4px;
}
.tl-step h4 { margin-bottom: 0.3em; }
.tl-step p { margin-bottom: 0; font-size: 0.96rem; }

/* ============================================================
   Cards / icon features
   ============================================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(18px, 2.5vw, 28px);
}
.icard {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 26px 24px;
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms ease, border-color 240ms ease;
}
/* couture gold-thread that draws across the top edge on hover */
.icard::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  height: 2px; width: 0;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  transition: width 460ms cubic-bezier(.2,.7,.2,1);
}
.icard:hover::before, .icard:focus-within::before { width: 100%; }
.icard:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 44px -28px rgba(140,47,57,0.4);
  border-color: var(--accent-2);
}
@media (prefers-reduced-motion: reduce) {
  .icard, .icard::before { transition: none; }
}
.icard .ic {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--bg);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent);
}
.icard .ic svg { width: 24px; height: 24px; }
.icard h4 { margin-bottom: 0.4em; }
.icard p { margin: 0; font-size: 0.92rem; color: var(--ink-soft); }

/* ============================================================
   Testimonials (editorial grid)
   ============================================================ */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 3vw, 34px);
}
.quote {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 30px 28px;
  position: relative;
}
.quote::before {
  content: "\201C";
  font-family: var(--f-head);
  font-style: italic;
  font-size: 4.5rem;
  color: var(--accent-2);
  line-height: 0.6;
  display: block;
  margin-bottom: 8px;
}
.quote p { font-size: 0.98rem; color: var(--ink); font-style: italic; font-family: var(--f-head); font-size: 1.25rem; line-height: 1.45; }
.quote .who {
  margin-top: 16px;
  font-family: var(--f-body);
  font-style: normal;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  color: var(--ink-soft);
}
.quote .who strong { color: var(--ink); font-weight: 600; }

.manifesto {
  text-align: center;
  font-family: var(--f-head);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.8rem, 4.6vw, 3.2rem);
  line-height: 1.28;
  color: var(--ink);
  max-width: 18ch;
  margin: 0 auto;
}
.manifesto .em { color: var(--accent); }

/* hero-band contrast section */
.band {
  background: var(--ink);
  color: var(--surface);
}
.band h2, .band h3 { color: var(--surface); }
.band .eyebrow { color: var(--accent-2); }
.band p { color: rgba(243,231,228,0.82); }
.band .num { color: var(--accent-2); }
.band a { color: var(--accent-2); }
/* Cards sit on a light surface even inside the dark band — keep their copy dark */
.band .icard p { color: var(--ink-soft); }
.band .icard h4 { color: var(--ink); }
.band .icard a { color: var(--accent); }

/* ============================================================
   Pricing
   ============================================================ */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: clamp(18px, 2.5vw, 26px);
}
.price-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}
.price-card:hover { transform: translateY(-5px); box-shadow: 0 26px 48px -30px rgba(140,47,57,0.4); }
.price-card.featured { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent) inset; }
.price-card .tier {
  font-family: var(--f-body);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
}
.price-card .badge {
  align-self: flex-start;
  background: var(--accent);
  color: var(--bg);
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.price-card .amount {
  font-family: var(--f-head);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: var(--ink);
  margin: 8px 0 2px;
  font-variant-numeric: tabular-nums;
}
.price-card .amount small { font-size: 0.9rem; font-style: normal; color: var(--ink-soft); }
.price-card .delivery { font-size: 0.8rem; color: var(--ink-soft); margin-bottom: 16px; }
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  gap: 9px;
}
.price-card li {
  font-size: 0.9rem;
  padding-left: 24px;
  position: relative;
  color: var(--ink-soft);
}
.price-card li.inc::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 12px; height: 7px;
  border-left: 1.6px solid var(--accent);
  border-bottom: 1.6px solid var(--accent);
  transform: rotate(-45deg);
}
.price-card li.exc { color: var(--line-strong); }
.price-card li.exc::before {
  content: "\00D7";
  position: absolute;
  left: 2px; top: -1px;
  color: var(--line-strong);
  font-size: 1rem;
}
.price-card .btn-primary, .price-card .btn-ghost { margin-top: auto; justify-content: center; }
.price-note {
  margin-top: 22px;
  font-size: 0.8rem;
  color: var(--ink-soft);
  font-style: italic;
}

/* ============================================================
   Atelier notes (dated)
   ============================================================ */
.notes-list { list-style: none; padding: 0; margin: 0; }
.notes-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.notes-list .date {
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}
.notes-list .txt { font-size: 0.98rem; color: var(--ink); }
@media (max-width: 540px) {
  .notes-list li { grid-template-columns: 1fr; gap: 4px; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 760px; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 44px 20px 0;
  position: relative;
  font-family: var(--f-head);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 6px; top: 50%;
  width: 12px; height: 12px;
  border-right: 1.6px solid var(--accent);
  border-bottom: 1.6px solid var(--accent);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 300ms cubic-bezier(.4,0,.2,1);
}
.faq-item[open] summary::after { transform: translateY(-30%) rotate(225deg); }
.faq-item > .answer {
  height: 0;
  padding: 0;
  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: 24px;
}
.faq-item .answer p { margin: 0 0 0.8em; font-size: 0.96rem; color: var(--ink-soft); }
.faq-item .answer p:last-child { margin-bottom: 0; }
@media (prefers-reduced-motion: reduce) {
  .faq-item > .answer { transition: none; }
}

/* ============================================================
   Contact cards
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(16px, 2.4vw, 24px);
}
.contact-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}
.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 40px -28px rgba(140,47,57,0.4);
  border-color: var(--accent-2);
}
.contact-card .cc-ic {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 14px;
}
.contact-card .cc-ic svg { width: 22px; height: 22px; }
.contact-card .label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  margin-bottom: 4px;
}
.contact-card .value {
  font-family: var(--f-head);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--ink);
  word-break: break-word;
  overflow-wrap: anywhere;
}
.contact-card a.value:hover { color: var(--accent); }
.contact-card .sub { font-size: 0.82rem; color: var(--ink-soft); margin-top: 4px; }

/* hours */
.hours-grid {
  display: grid;
  gap: 8px;
  max-width: 460px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.9rem;
  background: var(--bg);
  font-variant-numeric: tabular-nums;
}
.hours-row.today { border-color: var(--accent); background: var(--surface); }
.hours-row .day { color: var(--ink-soft); }
.hours-row .time { color: var(--ink); font-weight: 600; }

/* ============================================================
   Forms
   ============================================================ */
.form-wrap {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(24px, 4vw, 44px);
}
.form-row {
  display: grid;
  gap: 18px;
}
@media (min-width: 640px) { .form-row.two { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.field > span.lbl {
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
}
.field input,
.field select,
.field textarea {
  font-family: var(--f-body);
  font-weight: 300;
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg);
  border: 0;
  border-bottom: 2px solid var(--line-strong);
  border-radius: 4px 4px 0 0;
  padding: 12px 14px;
  transition: border-color 220ms ease, background 220ms ease;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--accent);
  background: var(--surface-2);
}
.field.kvkk {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.86rem;
  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: 3px 0 0;
  accent-color: var(--accent);
}
.field.kvkk a { color: var(--accent); }
.form-wrap button[type="submit"] {
  margin-top: 6px;
  width: 100%;
}
@media (min-width: 640px) { .form-wrap button[type="submit"] { width: auto; } }

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

/* ============================================================
   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: 6px;
}
.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: 13px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}
table th {
  font-family: var(--f-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.74rem;
  color: var(--accent);
  background: var(--surface);
}
table tr:last-child td { border-bottom: 0; }

/* ============================================================
   Team
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(20px, 3vw, 34px);
}
.team-card {
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms ease;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 44px -28px rgba(140,47,57,0.4);
}
.team-card:hover img { box-shadow: 0 18px 36px -24px rgba(59,31,38,0.45); }
@media (prefers-reduced-motion: reduce) {
  .team-card { transition: none; }
}
.team-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
  transition: box-shadow 240ms ease;
}
.team-card .role {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 4px;
}
.team-card h4 { margin-bottom: 0.4em; }
.team-card p { font-size: 0.9rem; color: var(--ink-soft); margin: 0; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: clamp(50px, 7vw, 80px) 0 30px;
  margin-top: clamp(50px, 8vw, 110px);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(28px, 4vw, 54px);
}
@media (max-width: 820px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand .brand { font-size: 1.7rem; margin-bottom: 14px; }
.footer-brand p { font-size: 0.9rem; color: var(--ink-soft); max-width: 34ch; }
.footer-col h5 {
  font-family: var(--f-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  color: var(--accent);
  margin: 0 0 14px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer-col a { color: var(--ink-soft); font-size: 0.9rem; }
.footer-col a:hover { color: var(--accent); }
.footer-col p { font-size: 0.88rem; color: var(--ink-soft); margin: 0 0 8px; }
.footer-bottom {
  margin-top: clamp(34px, 5vw, 54px);
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: var(--ink-soft);
}
.footer-bottom .legal { font-size: 0.72rem; color: var(--line-strong); }

/* ============================================================
   Doc pages
   ============================================================ */
.doc h2 { margin-top: 1.6em; }
.doc h3 { margin-top: 1.2em; }
.doc ul, .doc ol { padding-left: 22px; }
.doc li { margin-bottom: 8px; }
.doc .updated {
  font-size: 0.82rem;
  color: var(--ink-soft);
  font-style: italic;
  margin-bottom: 2em;
}

/* 404 / thank you */
.center-page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.center-page .big {
  font-family: var(--f-head);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(4rem, 14vw, 8rem);
  color: var(--accent);
  line-height: 0.9;
}

/* ============================================================
   Cookie banner
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--ink);
  color: var(--surface);
  border-radius: 14px;
  padding: 22px 24px;
  box-shadow: 0 24px 60px -24px rgba(0,0,0,0.6);
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms ease;
  z-index: 9999;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
@media (min-width: 760px) { .cookie-banner { left: 24px; right: auto; max-width: 420px; } }
.cookie-banner h4 { color: var(--surface); margin-bottom: 0.4em; font-size: 1.3rem; }
.cookie-banner p { font-size: 0.84rem; color: rgba(243,231,228,0.8); margin-bottom: 16px; }
.cookie-banner p a { color: var(--accent-2); }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-actions button {
  flex: 1 1 auto;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.82rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
}
.cookie-actions [data-consent="accept"] { background: var(--accent-2); color: var(--ink); }
.cookie-actions [data-consent="accept"]:hover { background: var(--surface); color: var(--ink); }
/* Reject carries the same visual weight as Accept (equal-prominence consent) */
.cookie-actions [data-consent="reject"] {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--surface);
}
.cookie-actions [data-consent="reject"]:hover {
  background: var(--bg);
  color: var(--ink);
  border-color: var(--bg);
}
.cookie-actions [data-consent="settings"] {
  background: transparent;
  color: var(--surface);
  border-color: rgba(243,231,228,0.4);
  flex-basis: 100%;
}
.cookie-actions [data-consent="settings"]:hover {
  background: rgba(243,231,228,0.12);
  color: var(--surface);
}

/* ============================================================
   Keyframes (niche animations)
   ============================================================ */
@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.025); }
}
@keyframes stitchDraw {
  to { stroke-dashoffset: 0; }
}
@keyframes shimmerGold {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
@keyframes threadFloat {
  0% { transform: translateY(0) rotate(0deg); opacity: 0; }
  10% { opacity: 0.5; }
  90% { opacity: 0.4; }
  100% { transform: translateY(-120px) rotate(40deg); opacity: 0; }
}

.gold-rule {
  height: 1px;
  width: 80px;
  margin: 22px 0;
  background: linear-gradient(90deg, var(--accent-2), transparent);
}
.gold-rule.center { margin-left: auto; margin-right: auto; }

.float-deco { animation: floatUp 6s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) {
  .float-deco, .hero-portrait img { animation: none !important; }
}

/* floating thread particles in hero */
.threads { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; }
.threads i {
  position: absolute;
  bottom: -10px;
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, var(--accent-2));
  opacity: 0;
  animation: threadFloat 9s linear infinite;
  animation-delay: calc(var(--d, 0) * 1s);
  left: calc(var(--x, 50) * 1%);
}
@media (prefers-reduced-motion: reduce) { .threads i { animation: none; display: none; } }

/* hero headline — slow warm gold thread passing through the word */
.shimmer-word {
  background: linear-gradient(90deg, var(--accent) 32%, var(--accent-2) 50%, var(--accent) 68%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmerGold 7s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .shimmer-word { animation: none; background-position: 50% 0; }
}

/* responsive tweaks */
@media (max-width: 640px) {
  .icard, .quote, .price-card, .contact-card { padding: 20px; }
  .icard .ic, .contact-card .cc-ic { width: 40px; height: 40px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary, .hero-actions .btn-ghost { width: 100%; justify-content: center; }
}

.lead-block { max-width: 720px; }

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.badge-row .pill {
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.78rem;
  color: var(--ink-soft);
  background: var(--bg);
}

.availability {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.82rem;
  color: var(--ink);
  margin-bottom: 1.4em;
}
.availability .dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--accent);
  animation: breathe 2.4s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) { .availability .dot { animation: 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}
