/* ============================================================
   MÜHÜR ATÖLYE — özel dikim · editorial-magazine
   ============================================================ */

:root {
  --bg:        #F4F1EA;
  --surface:   #EAE5D8;
  --surface-2: #E0D9C7;
  --ink:       #1A2238;
  --ink-soft:  #3b4360;
  --accent:    #A67C2E;
  --accent-2:  #5C6B73;
  --line:        rgba(26,34,56,.14);
  --line-strong: rgba(26,34,56,.30);
  --gold-line:   rgba(166,124,46,.55);
  --header-h:  74px;
  --maxw:      1180px;
  --pad:       clamp(20px, 5vw, 72px);
  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: 'Spectral', Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.68;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.08;
  margin: 0 0 .5em;
}

p { margin: 0 0 1.1em; }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--ink); }

img { max-width: 100%; height: auto; display: block; }

::selection { background: var(--accent); color: var(--bg); }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.eyebrow {
  font-family: 'Spectral', serif;
  font-size: .74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--accent);
  margin: 0 0 1.1rem;
  display: inline-block;
}

.gold-rule {
  height: 1px;
  background: var(--gold-line);
  border: 0;
  margin: 0;
  transform-origin: left center;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--bg);
  padding: 10px 16px;
  z-index: 2000;
  border-radius: 0 0 6px 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1080;
  background: rgba(244, 241, 234, 0.92);
  backdrop-filter: saturate(140%);
  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(244,241,234,.98);
  box-shadow: 0 8px 24px -16px rgba(26,34,56,.30);
  border-bottom-color: var(--line);
  height: 64px;
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 1.32rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
  gap: .42em;
  white-space: nowrap;
}
.brand:hover { color: var(--ink); }
.brand .brand-mark {
  font-style: normal;
  font-size: .6rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: 'Spectral', serif;
  font-weight: 600;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 30px);
}
.nav-desktop a {
  position: relative;
  font-family: 'Spectral', serif;
  font-size: .94rem;
  letter-spacing: .02em;
  color: var(--ink-soft);
  padding: 6px 0;
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1.5px;
  background: var(--accent);
  transition: width 240ms cubic-bezier(.4,0,.2,1);
}
.nav-desktop a:hover { color: var(--ink); }
.nav-desktop a:hover::after,
.nav-desktop a.is-active::after { width: 100%; }
.nav-desktop a.is-active { color: var(--ink); }

.nav-cta {
  margin-left: 6px;
  background: var(--ink);
  color: var(--surface) !important;
  padding: 10px 20px;
  font-size: .9rem;
  letter-spacing: .04em;
  border: 1px solid var(--ink);
  border-radius: 2px;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover {
  background: var(--accent);
  color: var(--bg) !important;
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* hamburger */
.nav-toggle {
  display: none;
  position: relative;
  z-index: 1100;
  width: 46px; height: 46px;
  background: rgba(244,241,234,.55);
  border: 1.5px solid var(--ink-soft);
  border-radius: 3px;
  cursor: pointer;
  padding: 0;
  transition: border-color 200ms ease, background 200ms ease;
}
.nav-toggle:hover { border-color: var(--ink); background: var(--surface); }
.nav-toggle span {
  position: absolute;
  left: 50%; top: 50%;
  width: 22px; height: 1.6px;
  background: var(--ink);
  transform: translate(-50%,-50%);
  transition: transform 260ms cubic-bezier(.4,0,.2,1), opacity 200ms ease;
}
.nav-toggle span:nth-child(1) { transform: translate(-50%,-50%) translateY(-6px); }
.nav-toggle span:nth-child(3) { transform: translate(-50%,-50%) translateY(6px); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translate(-50%,-50%) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translate(-50%,-50%) rotate(-45deg); }

/* drawer */
.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: var(--ink);
  color: var(--surface);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  padding: calc(var(--header-h) + 24px) 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--surface);
  padding: 13px 0;
  border-bottom: 1px solid rgba(244,241,234,.12);
}
.drawer a:hover, .drawer a.is-active { color: var(--accent); }
.drawer .drawer-cta {
  margin-top: 20px;
  font-style: normal;
  font-family: 'Spectral', serif;
  font-size: 1rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--ink);
  text-align: center;
  padding: 14px;
  border: 0;
  border-radius: 2px;
}
.drawer .drawer-cta:hover { background: var(--surface); color: var(--ink); }
.drawer .drawer-meta {
  margin-top: auto;
  font-size: .82rem;
  color: rgba(244,241,234,.6);
  font-style: italic;
}
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: opacity 240ms ease, visibility 240ms ease;
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

main { padding-top: var(--header-h); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  font-family: 'Spectral', serif;
  font-size: .98rem;
  letter-spacing: .03em;
  padding: 14px 28px;
  border-radius: 2px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease, border-color 220ms ease;
}
.btn-primary {
  background: var(--ink);
  color: var(--surface);
  border-color: var(--ink);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
  transform: translateY(-2px);
  /* warm atelier-light glow — theme micro-effect */
  box-shadow: 0 14px 30px -14px rgba(166,124,46,.65);
}
.btn-primary .arr { transition: transform 220ms ease; }
.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(--ink);
  border-color: var(--ink);
  transform: translateY(-2px);
}

/* ============================================================
   HERO — type-only-massive
   ============================================================ */
.hero {
  position: relative;
  padding: clamp(40px, 8vh, 90px) 0 clamp(48px, 8vh, 96px);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0,1fr) clamp(110px, 16vw, 200px);
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
}
.hero-main { min-width: 0; }
.hero-title-svg {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 0 .4em -2px;
  overflow: visible;
}
.hero-title-svg .fill {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  fill: var(--ink);
  letter-spacing: -0.01em;
}
.hero-title-svg .outline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  fill: none;
  stroke: var(--accent);
  stroke-width: .7;
  stroke-dasharray: 3.5 4.5;
  stroke-linecap: round;
  opacity: 0;
}
/* JS-enabled: the ink headline is legible from the first paint; the gold
   stitch outline draws across it left-to-right, marches a few cycles, then
   settles to a quiet thread. The text is never invisible — the animation is
   pure decoration over an already-readable fill. */
body.js .hero-title-svg .fill {
  opacity: 1;
  animation: fillFade .55s ease both;
}
body.js .hero-title-svg .outline {
  opacity: 1;
  animation: stitchReveal 1s cubic-bezier(.4,0,.2,1) forwards,
             stitchMarch 1.2s linear 2,
             outlineSettle .6s ease 1.1s forwards;
}
@keyframes stitchReveal {
  from { clip-path: inset(0 100% 0 0); }
  to   { clip-path: inset(0 0 0 0); }
}
@keyframes stitchMarch { to { stroke-dashoffset: -80; } }
@keyframes outlineSettle { to { opacity: .2; } }
@keyframes fillFade { from { opacity: .35; } to { opacity: 1; } }

.hero-sub {
  font-size: clamp(1.06rem, 1.9vw, 1.4rem);
  color: var(--ink-soft);
  max-width: 32ch;
  margin: 0 0 1.5em;
  line-height: 1.55;
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-size: .82rem;
  letter-spacing: .04em;
  color: var(--ink-soft);
}
.hero-trust svg { width: 16px; height: 16px; color: var(--accent); }

/* thin vertical photo strip (CSS fabric texture, no broken img) */
.hero-strip {
  position: relative;
  align-self: stretch;
  min-height: clamp(280px, 42vh, 480px);
  border: 1px solid var(--line);
  background:
    repeating-linear-gradient(135deg, rgba(26,34,56,.05) 0 2px, transparent 2px 7px),
    repeating-linear-gradient(45deg, rgba(166,124,46,.06) 0 2px, transparent 2px 9px),
    linear-gradient(170deg, var(--surface) 0%, var(--surface-2) 60%, #d6cdb6 100%);
  overflow: hidden;
}
.hero-strip::after {
  content: "İğne ardına saklı saatler";
  position: absolute;
  left: 50%; bottom: 18px;
  transform: translateX(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  font-style: italic;
  font-family: 'Playfair Display', serif;
  font-size: .9rem;
  color: var(--ink-soft);
  letter-spacing: .02em;
  white-space: nowrap;
}
.hero-strip::before {
  content: "";
  position: absolute;
  top: 22px; left: 50%;
  width: 1px; height: 90px;
  transform: translateX(-50%);
  background: repeating-linear-gradient(var(--accent) 0 5px, transparent 5px 11px);
}

/* hero figure — actual image variant of the strip */
.hero-figure { margin: 0; padding: 0; }
.hero-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* atelier gallery — editorial image cards */
.atelier-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.gallery-card {
  background: var(--bg);
  margin: 0;
  overflow: hidden;
}
.gallery-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.gallery-card:hover img { transform: scale(1.04); }
.gallery-card figcaption {
  padding: 16px clamp(18px, 2.4vw, 26px) 20px;
  font-family: 'Spectral', serif;
  font-size: .9rem;
  color: var(--ink-soft);
}
.gallery-card figcaption strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: .2em;
}

/* story figure — about page */
.story-figure { margin: 0 0 clamp(28px, 4vw, 48px); }
.story-figure img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
  border: 1px solid var(--line);
}
.story-figure img { border-color: var(--gold-line); }
.story-figure figcaption {
  margin-top: .7em;
  font-size: .82rem;
  font-style: italic;
  color: rgba(244,241,234,.7);
}

/* page-number margin marker */
.page-no {
  position: absolute;
  right: clamp(6px, 1.6vw, 22px);
  top: 50%;
  transform: rotate(180deg);
  writing-mode: vertical-rl;
  font-family: 'Spectral', serif;
  font-size: .72rem;
  letter-spacing: .3em;
  color: var(--ink-soft);
  opacity: .55;
  pointer-events: none;
}

/* ============================================================
   SECTIONS
   ============================================================ */
section { position: relative; }
.section {
  padding: clamp(56px, 9vh, 116px) 0;
  border-top: 1px solid var(--line);
}
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(20px, 4vw, 56px);
  align-items: end;
  margin-bottom: clamp(32px, 5vw, 60px);
}
.section-head h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin: 0;
}
.section-head .lede {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin: 0;
}
.section-num {
  display: block;
  font-family: 'Spectral', serif;
  font-style: normal;
  font-size: .74rem;
  letter-spacing: .28em;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* MANIFESTO */
.manifesto {
  background: var(--ink);
  color: var(--surface);
  border-top: 0;
}
.manifesto .section-num { color: var(--accent); }
.manifesto blockquote {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(2.2rem, 6.5vw, 5.4rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
  max-width: 16ch;
}
.manifesto .quote-mark { color: var(--accent); }
.manifesto-body {
  margin-top: clamp(28px, 4vw, 48px);
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}
.manifesto-body .dropcap::first-letter {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 3.6em;
  float: left;
  line-height: .78;
  padding: .06em .12em 0 0;
  color: var(--accent);
}
.manifesto-body p { color: rgba(244,241,234,.84); }
.manifesto-aside {
  border-left: 1px solid var(--gold-line);
  padding-left: clamp(18px, 3vw, 34px);
}
.manifesto-aside dt {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--accent);
  margin-top: 1.2em;
}
.manifesto-aside dd {
  margin: .25em 0 0;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--surface);
}

/* ZANAAT — editorial timeline with quotes */
.craft-timeline {
  display: grid;
  gap: clamp(28px, 4vw, 46px);
}
.craft-step {
  display: grid;
  grid-template-columns: clamp(56px, 9vw, 96px) minmax(0, 1fr);
  gap: clamp(16px, 3vw, 38px);
  align-items: start;
  padding-bottom: clamp(28px, 4vw, 46px);
  border-bottom: 1px solid var(--line);
}
.craft-step:last-child { border-bottom: 0; padding-bottom: 0; }
.craft-step .step-idx {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--accent);
  line-height: 1;
}
.craft-step .step-body { min-width: 0; }
.craft-step h3 {
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  margin-bottom: .35em;
}
.craft-step .step-when {
  font-size: .76rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent-2);
  display: block;
  margin-bottom: .6em;
}
.craft-step .step-icon {
  width: 34px; height: 34px;
  color: var(--accent-2);
  margin-bottom: .5em;
}
.craft-step blockquote {
  margin: 1em 0 0;
  padding-left: 18px;
  border-left: 2px solid var(--gold-line);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.18rem;
  color: var(--ink);
  line-height: 1.4;
}
.craft-step blockquote cite {
  display: block;
  margin-top: .5em;
  font-family: 'Spectral', serif;
  font-style: normal;
  font-size: .8rem;
  letter-spacing: .1em;
  color: var(--ink-soft);
}

/* KUMASLAR — fabric notes, asymmetric */
.fabric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.fabric-card {
  position: relative;
  background: var(--bg);
  padding: clamp(24px, 3vw, 38px);
  min-width: 0;
  transition: background 240ms ease, transform 240ms ease;
}
.fabric-card:hover { background: var(--surface); transform: translateY(-2px); }
/* running-stitch thread draws across the top on hover — tailoring micro-effect */
.fabric-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(24px, 3vw, 38px);
  right: clamp(24px, 3vw, 38px);
  border-top: 1.5px dashed var(--gold-line);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 460ms cubic-bezier(.2,.7,.2,1);
}
.fabric-card:hover::before { transform: scaleX(1); }
@media (prefers-reduced-motion: reduce) {
  .fabric-card::before { transition: none; }
}
.fabric-card .fc-origin {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--accent);
  display: block;
  margin-bottom: .8em;
}
.fabric-card h3 { font-size: 1.5rem; margin-bottom: .3em; }
.fabric-card .fc-house {
  font-style: italic;
  color: var(--accent-2);
  font-size: .95rem;
  margin-bottom: .9em;
}
.fabric-card p { font-size: .96rem; color: var(--ink-soft); margin: 0 0 1em; }
.fabric-card .fc-spec {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  font-size: .76rem;
  letter-spacing: .04em;
}
.fabric-card .fc-spec span {
  border: 1px solid var(--line);
  padding: 3px 9px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-variant-numeric: tabular-nums;
}

/* STATS */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: clamp(20px, 3vw, 40px);
}
.stat { min-width: 0; }
.stat .num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(2.4rem, 6vw, 4rem);
  color: var(--ink);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat .lbl {
  display: block;
  margin-top: .5em;
  font-size: .86rem;
  letter-spacing: .08em;
  color: var(--ink-soft);
}

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
  gap: clamp(18px, 2.4vw, 28px);
}
.price-card {
  border: 1px solid var(--line-strong);
  background: var(--bg);
  padding: clamp(26px, 3vw, 38px);
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px -28px rgba(166,124,46,.5);
  border-color: var(--gold-line);
}
.price-card.featured {
  background: var(--surface);
  border-color: var(--accent);
}
.price-card .pc-name {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 1.7rem;
  margin-bottom: .2em;
}
.price-card .pc-tag {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--accent);
  margin-bottom: 1em;
  display: block;
}
.price-card .pc-price {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 2.1rem;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  margin-bottom: .1em;
}
.price-card .pc-price small {
  font-family: 'Spectral', serif;
  font-style: normal;
  font-size: .8rem;
  color: var(--ink-soft);
  letter-spacing: .04em;
}
.price-card .pc-list {
  list-style: none;
  padding: 0;
  margin: 1.4em 0;
  border-top: 1px solid var(--line);
  padding-top: 1.4em;
}
.price-card .pc-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: .65em;
  font-size: .94rem;
  color: var(--ink-soft);
}
.price-card .pc-list li::before {
  content: "";
  position: absolute;
  left: 0; top: .55em;
  width: 12px; height: 1.5px;
  background: var(--accent);
}
.price-card .pc-list li.excl { color: var(--accent-2); }
.price-card .pc-list li.excl::before { background: var(--line-strong); }
.price-card .pc-deliver {
  font-size: .82rem;
  font-style: italic;
  color: var(--ink-soft);
  margin: 0 0 1.4em;
}
.price-card .btn { margin-top: auto; justify-content: center; }
.price-note {
  margin-top: 20px;
  font-size: .82rem;
  font-style: italic;
  color: var(--ink-soft);
}

/* RANDEVU — fitting calendar / availability */
.randevu-wrap {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.availability {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: clamp(22px, 3vw, 34px);
}
.availability h3 { font-size: 1.5rem; }
.avail-bar {
  height: 10px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  margin: 14px 0 10px;
}
.avail-bar i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent), #c79a4a);
  border-radius: 999px;
  transition: width 1.1s cubic-bezier(.2,.7,.2,1);
}
.avail-meta {
  font-size: .86rem;
  color: var(--ink-soft);
  font-variant-numeric: tabular-nums;
}
.prova-list { list-style: none; padding: 0; margin: 18px 0 0; }
.prova-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: baseline;
  padding: 12px 0;
  border-top: 1px dashed var(--line-strong);
  font-size: .96rem;
}
.prova-list li .pl-date {
  font-family: 'Spectral', serif;
  font-variant-numeric: tabular-nums;
  color: var(--accent);
  letter-spacing: .04em;
  white-space: nowrap;
}
.prova-list li .pl-state {
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--accent-2);
}

/* notes / atölye notları */
.notes-list { list-style: none; padding: 0; margin: 0; }
.notes-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: baseline;
}
.notes-list li:last-child { border-bottom: 0; }
.notes-list .nl-date {
  font-size: .76rem;
  letter-spacing: .1em;
  color: var(--accent);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.notes-list .nl-text { font-size: .98rem; color: var(--ink); }

/* TESTIMONIALS */
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(18px, 2.6vw, 30px);
}
.quote-card {
  border-top: 2px solid var(--gold-line);
  padding-top: 22px;
  min-width: 0;
}
.quote-card blockquote {
  margin: 0 0 1em;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.18rem;
  line-height: 1.42;
  color: var(--ink);
}
.quote-card .qc-author {
  font-size: .88rem;
  color: var(--ink-soft);
  font-style: normal;
}
.quote-card .qc-author strong { color: var(--ink); font-weight: 600; }
.quote-card .qc-meta {
  display: block;
  font-size: .76rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: .3em;
}

/* FAQ */
.faq-list { border-top: 1px solid var(--line); }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 44px 22px 0;
  position: relative;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.1rem, 2.4vw, 1.4rem);
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 6px; top: 50%;
  transform: translateY(-50%);
  font-family: 'Spectral', serif;
  font-style: normal;
  font-size: 1.6rem;
  color: var(--accent);
  transition: transform 300ms ease;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item > .answer {
  height: 0;
  padding: 0 clamp(0px, 2vw, 24px) 0 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 .8em; color: var(--ink-soft); }
.faq-item .answer p:last-child { margin-bottom: 0; }
@media (prefers-reduced-motion: reduce) {
  .faq-item > .answer { transition: none; }
}

/* CTA band */
.cta-band {
  background: var(--surface);
  border-top: 1px solid var(--line);
}
.cta-band .inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}
.cta-band h2 { font-size: clamp(1.8rem, 4.5vw, 3rem); margin: 0; }
.cta-band p { margin: .6em 0 0; color: var(--ink-soft); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.page-hero {
  padding: clamp(48px, 9vh, 110px) 0 clamp(32px, 5vh, 56px);
  min-height: 240px;
}
.page-hero h1 { font-size: clamp(2.4rem, 7vw, 4.5rem); }
.page-hero .lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 46ch;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: clamp(16px, 2.2vw, 24px);
}
.contact-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  background: var(--bg);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
  min-width: 0;
  opacity: 0;
  transform: translateY(20px);
}
.contact-card.is-in { opacity: 1; transform: none; transition: opacity .6s ease calc(var(--i, 0) * 80ms), transform .6s ease calc(var(--i, 0) * 80ms); }
.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 38px -26px rgba(26,34,56,.4);
  border-color: var(--gold-line);
}
.contact-card .cc-ico {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(166,124,46,.12);
  color: var(--accent);
  margin-bottom: 16px;
}
.contact-card .cc-ico svg { width: 22px; height: 22px; }
.contact-card h3 { font-size: 1.25rem; margin-bottom: .15em; }
.contact-card a, .contact-card .cc-val {
  display: block;
  font-size: 1.02rem;
  color: var(--ink);
  word-break: break-word;
  overflow-wrap: anywhere;
}
.contact-card a:hover { color: var(--accent); }
.contact-card .cc-sub {
  font-size: .82rem;
  color: var(--ink-soft);
  margin-top: .4em;
  font-style: italic;
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr));
  gap: 10px;
  margin-top: 6px;
}
.hours-grid .hg-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: .9rem;
  font-variant-numeric: tabular-nums;
}
.hours-grid .hg-row.today {
  border-color: var(--accent);
  background: rgba(166,124,46,.08);
}
.hours-grid .hg-row .day { color: var(--ink-soft); }
.hours-grid .hg-row .time { color: var(--ink); }

/* ============================================================
   FORM
   ============================================================ */
.form-wrap {
  border: 1px solid var(--line);
  background: var(--bg);
  padding: clamp(24px, 4vw, 44px);
}
form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 20px;
}
.field { display: flex; flex-direction: column; min-width: 0; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.field label .opt {
  text-transform: none;
  letter-spacing: 0;
  font-size: .9em;
  color: var(--accent-2);
  font-style: italic;
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  width: 100%;
  font-family: 'Spectral', serif;
  font-size: 1rem;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 2px solid var(--line-strong);
  padding: 10px 2px;
  transition: border-color 220ms ease;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--accent);
}
.field.kvkk, .field .kvkk {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  text-transform: none;
  letter-spacing: 0;
  font-size: .9rem;
  color: var(--ink-soft);
}
.kvkk { display: flex; 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: 3px 0 0;
  accent-color: var(--accent);
}
form .btn[type="submit"] { margin-top: 6px; }

/* ============================================================
   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: 12px 16px;
  border-bottom: 1px solid var(--line);
  font-size: .94rem;
}
table th {
  font-family: 'Spectral', serif;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--ink);
  background: var(--surface);
}
table td { color: var(--ink-soft); }

/* ============================================================
   LEGAL / PROSE PAGES
   ============================================================ */
.prose { max-width: 760px; }
.prose h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  margin: 1.8em 0 .5em;
}
.prose h3 {
  font-size: 1.2rem;
  font-style: italic;
  margin: 1.4em 0 .4em;
}
.prose p, .prose li { color: var(--ink-soft); }
.prose ul, .prose ol { padding-left: 1.3em; margin: 0 0 1.1em; }
.prose li { margin-bottom: .5em; }
.prose .updated {
  font-size: .82rem;
  font-style: italic;
  color: var(--accent-2);
  margin-bottom: 2em;
}

/* sitemap list */
.sitemap-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 28px;
}
.sitemap-cols ul { list-style: none; padding: 0; }
.sitemap-cols li { margin-bottom: .6em; }
.sitemap-cols h3 { font-size: 1.15rem; margin-bottom: .6em; }

/* 404 */
.err-wrap { text-align: center; padding: clamp(60px, 14vh, 160px) 0; }
.err-wrap .code {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(5rem, 22vw, 12rem);
  color: var(--accent);
  line-height: .9;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(244,241,234,.74);
  padding: clamp(48px, 7vw, 84px) 0 32px;
  font-size: .92rem;
}
.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 5fr) repeat(2, minmax(0, 3fr)) minmax(0, 4fr);
  gap: clamp(24px, 4vw, 48px);
}
.footer-top h4 {
  color: var(--surface);
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-style: normal;
  font-family: 'Spectral', serif;
  margin-bottom: 1.1em;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--surface);
  margin-bottom: .4em;
}
.footer-top ul { list-style: none; padding: 0; margin: 0; }
.footer-top li { margin-bottom: .55em; }
.footer-top a { color: rgba(244,241,234,.74); }
.footer-top a:hover { color: var(--accent); }
.footer-top p { color: rgba(244,241,234,.7); margin: 0 0 .6em; }
.footer-social { display: flex; gap: 12px; margin-top: 12px; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(244,241,234,.2);
  border-radius: 50%;
  display: grid; place-items: center;
  color: rgba(244,241,234,.8);
  transition: border-color 220ms ease, color 220ms ease, transform 220ms ease;
}
.footer-social a:hover { color: var(--accent); border-color: var(--accent); transform: translateY(-2px); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom {
  margin-top: clamp(36px, 5vw, 60px);
  padding-top: 24px;
  border-top: 1px solid rgba(244,241,234,.14);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: space-between;
  font-size: .8rem;
  color: rgba(244,241,234,.55);
}
.footer-bottom .legal-row { display: flex; flex-wrap: wrap; gap: 6px 18px; }
.footer-reg { font-variant-numeric: tabular-nums; letter-spacing: .03em; }

/* ============================================================
   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) * 70ms);
}
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  body.js .hero-title-svg .fill { opacity: 1; animation: none; }
  body.js .hero-title-svg .outline { opacity: 0; animation: none; }
}
html.no-js .reveal { opacity: 1; transform: none; }
html.no-js .contact-card { opacity: 1; transform: none; }

/* ============================================================
   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: 1px solid var(--gold-line);
  border-radius: 8px;
  padding: 22px 24px;
  z-index: 9999;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms ease;
  box-shadow: 0 24px 50px -20px rgba(0,0,0,.5);
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner h2 {
  font-size: 1.1rem;
  color: var(--surface);
  margin: 0 0 .4em;
}
.cookie-banner p {
  font-size: .88rem;
  color: rgba(244,241,234,.78);
  margin: 0 0 16px;
}
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-actions button {
  flex: 1 1 auto;
  min-height: 44px;
  font-family: 'Spectral', serif;
  font-size: .9rem;
  letter-spacing: .03em;
  border-radius: 3px;
  cursor: pointer;
  border: 1px solid rgba(244,241,234,.3);
  padding: 0 16px;
  transition: background 200ms ease, color 200ms ease;
}
/* Accept & Reject carry equal visual weight (GDPR-fair); Ayrıntılar is the quiet option. */
.cookie-actions [data-consent="accept"] {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--accent);
  font-weight: 600;
}
.cookie-actions [data-consent="accept"]:hover { background: #b98c3c; border-color: #b98c3c; }
.cookie-actions [data-consent="reject"] {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--surface);
  font-weight: 600;
}
.cookie-actions [data-consent="reject"]:hover { background: #d9d1be; border-color: #d9d1be; }
.cookie-actions [data-consent="settings"] {
  flex: 0 1 auto;
  background: transparent;
  color: rgba(244,241,234,.82);
  border-color: rgba(244,241,234,.28);
}
.cookie-actions [data-consent="settings"]:hover {
  background: rgba(244,241,234,.1);
  color: var(--surface);
  border-color: rgba(244,241,234,.5);
}

@media (min-width: 768px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: inline-block; }
  .section-head { grid-template-columns: 1fr; }
  .randevu-wrap { grid-template-columns: 1fr; }
  .cta-band .inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  body { font-size: 17px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-strip {
    min-height: 200px;
    order: -1;
  }
  .hero-strip::after { writing-mode: horizontal-tb; transform: translateX(-50%); }
  .hero-strip::before { display: none; }
  .manifesto-body { grid-template-columns: 1fr; }
  form .form-grid { grid-template-columns: 1fr; }
  .page-no { display: none; }
}

@media (max-width: 640px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .fabric-grid { grid-template-columns: 1fr; }
  .craft-step { grid-template-columns: 1fr; gap: 8px; }
  .craft-step .step-idx { font-size: 2rem; }
  .contact-card { padding: 20px; }
  .contact-card .cc-ico { width: 40px; height: 40px; }
  .price-card { padding: 22px; }
  .cookie-actions button { flex: 1 1 100%; }
}

@media (max-width: 400px) {
  :root { --pad: 18px; }
  .brand { font-size: 1.12rem; }
  .brand .brand-mark { display: none; }
}

/* ============================================================
   CARD HOVER — lift + tinted shadow (CSS-only)
   Declared last on purpose: `.reveal.is-in { transform: none }`
   and `.contact-card.is-in { transform: none }` have the same
   specificity (0,2,0) as `.card:hover`, so the hover lift only
   wins if it appears later in the cascade. Without this block the
   revealed cards report transform=none / shadow=none on hover.
   ============================================================ */
.fabric-card,
.gallery-card,
.quote-card,
.price-card {
  transition: transform 240ms cubic-bezier(.2,.7,.2,1),
              box-shadow 240ms cubic-bezier(.2,.7,.2,1),
              background 240ms cubic-bezier(.2,.7,.2,1),
              border-color 240ms cubic-bezier(.2,.7,.2,1);
}
.fabric-card:hover,
.gallery-card:hover,
.quote-card:hover,
.price-card:hover,
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px -26px rgba(166,124,46,.5);
}
.fabric-card:hover { background: var(--surface); }
.price-card:hover { border-color: var(--gold-line); }
.quote-card:hover { border-top-color: var(--accent); }
.contact-card:hover { border-color: var(--gold-line); }
@media (prefers-reduced-motion: reduce) {
  .fabric-card:hover,
  .gallery-card:hover,
  .quote-card:hover,
  .price-card:hover,
  .contact-card:hover { transform: none; box-shadow: 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}
