/* ============================================================
   Kadran Atölyesi — Antika Saat Restorasyonu
   Sıcak sepya · bakır · mavi-gri · uzun anlatı
   ============================================================ */

:root {
  --bg: #F3EDE2;
  --surface: #FBF7EF;
  --surface-2: #EFE6D6;
  --ink: #2A2016;
  --ink-soft: #5C4E3D;
  --ink-faint: #877560;
  --accent: #9A5B34;     /* bakır */
  --accent-deep: #7C4526;
  --accent-2: #54707A;   /* mavi-gri */
  --accent-2-deep: #3E555E;
  --line: rgba(42, 32, 22, 0.14);
  --line-strong: rgba(42, 32, 22, 0.28);
  --gold: #B98A4B;

  --container: 1080px;
  --pad: clamp(20px, 6vw, 80px);
  --header-h: 76px;

  --font-head: 'Libre Baskerville', 'Palatino Linotype', Georgia, serif;
  --font-body: 'Lora', Georgia, 'Times New Roman', serif;

  interpolate-size: allow-keywords;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; max-width: 100vw; overflow-x: hidden; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* subtle patina texture layer over the whole page */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    radial-gradient(circle at 18% 22%, rgba(154, 91, 52, 0.06), transparent 38%),
    radial-gradient(circle at 82% 12%, rgba(84, 112, 122, 0.05), transparent 42%),
    radial-gradient(circle at 60% 88%, rgba(154, 91, 52, 0.05), transparent 46%);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color 200ms ease; }
a:hover { color: var(--accent-deep); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.18;
  color: var(--ink);
  margin: 0 0 0.5em;
  letter-spacing: -0.012em;
}
p { margin: 0 0 1.1em; }
strong { font-weight: 600; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--surface);
  padding: 12px 18px; z-index: 2000; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

/* hairline divider — gold/copper */
.rule {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0;
  opacity: 0.6;
}

/* ============================================================
   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(243, 237, 226, 0.92);
  border-bottom: 1px solid transparent;
  transition: background 240ms ease, box-shadow 240ms ease, height 240ms ease, border-color 240ms ease;
  backdrop-filter: saturate(1.1);
}
.site-header.is-scrolled {
  background: rgba(243, 237, 226, 0.98);
  box-shadow: 0 8px 24px -16px rgba(42, 32, 22, 0.4);
  height: 64px;
  border-bottom-color: var(--line);
}
.header-inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 32px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.12rem;
  color: var(--ink);
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.brand:hover { color: var(--ink); }
.brand-mark { color: var(--accent); flex-shrink: 0; }
.brand-mark svg { display: block; width: 30px; height: 30px; }
.brand small {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 1px;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
}
.nav-desktop a {
  position: relative;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 6px 2px;
}
.nav-desktop a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  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(--ink); }

.nav-cta {
  background: var(--ink);
  color: var(--surface) !important;
  padding: 9px 18px !important;
  border-radius: 999px;
  font-weight: 600 !important;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-cta:hover {
  background: var(--accent);
  color: var(--surface) !important;
  transform: translateY(-1px);
}

/* hamburger */
.nav-toggle {
  display: none;
  position: relative;
  z-index: 1100;
  width: 44px; height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: var(--surface);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}
.nav-toggle:hover, .nav-toggle:focus-visible {
  border-color: var(--accent);
  box-shadow: 0 8px 20px -12px rgba(154, 91, 52, 0.7);
}
.nav-toggle:hover span { background: var(--accent-deep); }
.nav-toggle span {
  position: absolute;
  left: 11px; right: 11px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 260ms cubic-bezier(.2,.7,.2,1), opacity 200ms 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) { 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-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 14, 8, 0.55);
  opacity: 0;
  visibility: hidden;
  z-index: 1040;
  transition: opacity 240ms ease, visibility 240ms ease;
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  z-index: 1050;
  background: var(--surface);
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  display: flex;
  flex-direction: column;
  padding: calc(var(--header-h) + 16px) 28px 32px;
  box-shadow: -20px 0 50px -30px rgba(42, 32, 22, 0.6);
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  font-family: var(--font-head);
  font-size: 1.18rem;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.drawer a:hover, .drawer a.is-active { color: var(--accent); }
.drawer .drawer-cta {
  margin-top: 22px;
  background: var(--ink);
  color: var(--surface);
  text-align: center;
  border-radius: 999px;
  border-bottom: 0;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-weight: 600;
}
.drawer .drawer-cta:hover { background: var(--accent); color: var(--surface); }
.drawer-meta {
  margin-top: auto;
  font-size: 0.85rem;
  color: var(--ink-faint);
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: block; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  line-height: 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 14px 28px -16px rgba(154, 91, 52, 0.7);
}
.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(--accent);
  transform: translateY(-2px);
}

/* ============================================================
   HERO
   ============================================================ */
main { padding-top: var(--header-h); }
main section[id], [id] { scroll-margin-top: calc(var(--header-h) + 12px); }

.hero {
  position: relative;
  min-height: clamp(560px, 86vh, 820px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.hero-media {
  position: absolute;
  inset: -8% 0 0 0;
  z-index: -2;
  will-change: transform;
}
.hero-media img {
  width: 100%;
  height: 116%;
  object-fit: cover;
  object-position: center 40%;
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(20, 14, 8, 0.18) 0%, rgba(20, 14, 8, 0.0) 30%, rgba(20, 14, 8, 0.5) 72%, rgba(20, 14, 8, 0.82) 100%);
}
.hero-inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding: 0 var(--pad) clamp(46px, 8vw, 84px);
  color: #F6EFE2;
}
.hero .eyebrow { color: #E8C39B; }
.hero .eyebrow::before { background: linear-gradient(90deg, #E8C39B, transparent); }
.hero h1 {
  color: #FBF7EF;
  font-size: clamp(2.4rem, 6.4vw, 4.5rem);
  max-width: 14ch;
  margin-bottom: 0.4em;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.hero-sub {
  font-size: clamp(1.08rem, 2.2vw, 1.32rem);
  max-width: 46ch;
  color: #ECE1CE;
  margin-bottom: 1.9em;
  line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero .btn-ghost { color: #F6EFE2; border-color: rgba(246, 239, 226, 0.45); }
.hero .btn-ghost:hover { background: rgba(246, 239, 226, 0.12); color: #FFF; border-color: #F6EFE2; }

/* trust strip */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 1.8em;
}
.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  color: #E4D7C2;
  letter-spacing: 0.02em;
}
.trust-strip svg { width: 16px; height: 16px; color: #E8C39B; flex-shrink: 0; }

/* ============================================================
   SECTIONS / general
   ============================================================ */
.section { padding-block: clamp(64px, 10vw, 128px); }
.section--surface { background: var(--surface); }
.section--band {
  background: var(--ink);
  color: var(--surface);
}
.section--band h2, .section--band h3 { color: var(--surface); }
.section--band .eyebrow { color: #E8C39B; }
.section--band .eyebrow::before { background: linear-gradient(90deg, #E8C39B, transparent); }
.section--band p { color: #E4D7C2; }

.section-head { max-width: 60ch; margin-bottom: clamp(34px, 5vw, 58px); }
.section-head h2 {
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  position: relative;
  padding-bottom: 0.42em;
}
/* line-draw reveal under section headings */
.section-head h2::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  transition: width 900ms cubic-bezier(.2,.7,.2,1) 160ms;
}
.section-head.is-in h2::after, .reveal.is-in .section-head h2::after { width: 84px; }
html.no-js .section-head h2::after { width: 84px; transition: none; }
.lead, .section-head .lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  margin-top: 0.4em;
  line-height: 1.7;
}

/* ============================================================
   STORY (giris-hikaye) — editorial split
   ============================================================ */
.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
@media (min-width: 880px) {
  .story-grid { grid-template-columns: 0.92fr 1.08fr; }
}
.story-figure {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 30px 60px -40px rgba(42, 32, 22, 0.7);
}
.story-figure img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.story-figure figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 30px 22px 18px;
  background: linear-gradient(180deg, transparent, rgba(20, 14, 8, 0.8));
  color: #F1E7D6;
  font-size: 0.86rem;
  font-style: italic;
}
.story-body p:first-of-type::first-letter {
  font-family: var(--font-head);
  font-size: 3.4em;
  line-height: 0.78;
  float: left;
  margin: 0.06em 0.12em 0 0;
  color: var(--accent);
}
.signature {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--accent-deep);
  margin-top: 0.6em;
}
.signature small {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 4px;
}

/* stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: clamp(40px, 6vw, 64px);
}
@media (min-width: 720px) { .stats-row { grid-template-columns: repeat(4, 1fr); } }
.stat {
  text-align: center;
  padding: 22px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
}
.stat .num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  color: var(--accent);
  display: block;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat .lbl {
  font-size: 0.82rem;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  margin-top: 8px;
  display: block;
}

/* ============================================================
   JOURNEY (yolculuk) — vertical timeline longread
   ============================================================ */
.journey { position: relative; }
.journey-step {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(22px, 4vw, 48px);
  padding-block: clamp(40px, 6vw, 70px);
  border-top: 1px solid var(--line);
  align-items: center;
}
.journey-step:first-of-type { border-top: 0; }
@media (min-width: 820px) {
  .journey-step { grid-template-columns: 1fr 1fr; }
  .journey-step:nth-child(even) .journey-figure { order: -1; }
}
.journey-figure {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 24px 50px -38px rgba(42, 32, 22, 0.65);
}
.journey-figure img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.2,.7,.2,1);
}
.journey-figure:hover img { transform: scale(1.04); }
.journey-num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.7em;
}
.journey-num::before {
  content: "";
  width: 26px; height: 26px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  display: inline-block;
}
.journey-step h3 { font-size: clamp(1.45rem, 3vw, 2rem); }
.journey-meta {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-2);
  border: 1px solid var(--line);
  padding: 4px 12px;
  border-radius: 999px;
  margin-top: 0.6em;
}

/* ============================================================
   CASE — before/after vertical scrub (THEME SIGNATURE)
   ============================================================ */
.case-scrub {
  position: relative;
  height: 175vh;
}
/* shorter scrub track on phones so the reveal isn't a long empty scroll */
@media (max-width: 640px) {
  .case-scrub { height: 135vh; }
}
.scrub-sticky {
  position: sticky;
  top: var(--header-h);
  height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  /* warm "display stage" backdrop so the pinned area reads as an intentional
     staging surface, not blank page, through the long scrub scroll */
  background:
    radial-gradient(120% 86% at 50% 44%, rgba(154, 91, 52, 0.11), transparent 60%),
    radial-gradient(150% 130% at 50% 50%, transparent 52%, rgba(42, 32, 22, 0.07));
}
.scrub-stage {
  position: relative;
  width: 100%;
  max-width: 860px;
  margin-inline: auto;
  aspect-ratio: 3 / 2;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 40px 80px -50px rgba(42, 32, 22, 0.8);
}
.scrub-stage img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.scrub-after {
  /* revealed from top down as you scroll */
  clip-path: inset(0 0 100% 0);
  will-change: clip-path;
}
.scrub-line {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(185, 138, 75, 0.9);
  z-index: 3;
  will-change: top;
}
@media (prefers-reduced-motion: no-preference) {
  /* gentle "live" pulse on the reveal seam — a watchmaker's loupe glow */
  .scrub-line { animation: scrubPulse 2.6s ease-in-out infinite; }
}
@keyframes scrubPulse {
  0%, 100% { box-shadow: 0 0 16px rgba(185, 138, 75, 0.85); }
  50%      { box-shadow: 0 0 28px rgba(185, 138, 75, 1); }
}
.scrub-label {
  position: absolute;
  top: 16px;
  z-index: 4;
  font-family: var(--font-body);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: 999px;
  background: rgba(20, 14, 8, 0.7);
  color: #F1E7D6;
  backdrop-filter: blur(2px);
}
.scrub-label.left { left: 16px; }
.scrub-label.right { right: 16px; }
.scrub-hint {
  position: absolute;
  bottom: 18px; left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  font-size: 0.78rem;
  color: #F1E7D6;
  background: rgba(20, 14, 8, 0.55);
  padding: 6px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.scrub-caption {
  max-width: 60ch;
  margin: 0 auto;
  text-align: center;
  padding-top: clamp(24px, 4vw, 40px);
}
@media (prefers-reduced-motion: reduce) {
  .case-scrub { height: auto; }
  .scrub-sticky { position: static; height: auto; display: block; padding-block: 30px; }
  .scrub-after { clip-path: inset(0 0 0 0); position: relative; margin-top: 14px; }
  .scrub-before { position: relative; }
  .scrub-stage { aspect-ratio: auto; height: auto; }
  .scrub-stage img { position: relative; height: auto; }
  .scrub-line { display: none; }
}

/* CASE — before/after side-by-side (robust, no empty scroll track) */
.vaka-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(14px, 2vw, 24px);
}
.vaka-item {
  position: relative;
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 30px 60px -45px rgba(42, 32, 22, 0.8);
}
.vaka-item img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.vaka-item figcaption {
  position: absolute;
  top: 14px;
  left: 14px;
}
.vaka-tag {
  font-family: var(--font-body);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: 999px;
  background: rgba(20, 14, 8, 0.7);
  color: #F1E7D6;
  backdrop-filter: blur(2px);
}
.vaka-tag.gold { background: var(--gold); color: #1a1206; }
@media (max-width: 680px) {
  .vaka-compare { grid-template-columns: 1fr; }
}

/* ============================================================
   VALUES (degerler) — manifesto + icon list
   ============================================================ */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 720px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
.value-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: clamp(22px, 3vw, 30px);
  transition: transform 260ms cubic-bezier(.2,.7,.2,1), box-shadow 260ms ease, border-color 260ms ease;
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px -34px rgba(154, 91, 52, 0.5);
  border-color: rgba(154, 91, 52, 0.4);
}
.value-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--surface-2);
  color: var(--accent);
  margin-bottom: 16px;
}
.value-icon svg { width: 26px; height: 26px; }
.value-card h3 { font-size: 1.25rem; margin-bottom: 0.4em; }
.value-card p { margin: 0; color: var(--ink-soft); font-size: 0.98rem; }

.manifesto {
  font-family: var(--font-head);
  font-style: italic;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  line-height: 1.4;
  max-width: 22ch;
  color: var(--surface);
}
.manifesto .hl { color: #E8C39B; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 820px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }
.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: clamp(24px, 3vw, 34px);
  display: flex;
  flex-direction: column;
  transition: transform 260ms cubic-bezier(.2,.7,.2,1), box-shadow 260ms ease, border-color 260ms ease;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -40px rgba(42, 32, 22, 0.55);
}
.price-card.featured {
  border-color: var(--accent);
  box-shadow: 0 24px 50px -34px rgba(154, 91, 52, 0.45);
}
.price-card .tier {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-2);
}
.price-card h3 { font-size: 1.5rem; margin: 0.5em 0 0.3em; }
.price-tag {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.7rem, 3.6vw, 2.2rem);
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}
.price-tag small {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.78rem;
  color: var(--ink-faint);
  letter-spacing: 0.04em;
  margin-top: 4px;
}
.price-card .badge-featured {
  align-self: flex-start;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--surface);
  background: var(--accent);
  padding: 4px 11px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.price-list { list-style: none; padding: 0; margin: 18px 0 0; flex-grow: 1; }
.price-list li {
  position: relative;
  padding: 7px 0 7px 26px;
  font-size: 0.94rem;
  color: var(--ink-soft);
  border-bottom: 1px dashed var(--line);
}
.price-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 13px; height: 13px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239A5B34' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.price-list li.excl { color: var(--ink-faint); }
.price-list li.excl::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23877560' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 6 6 18M6 6l12 12'/%3E%3C/svg%3E");
}
.price-card .btn { margin-top: 24px; justify-content: center; }
.price-note {
  font-size: 0.86rem;
  color: var(--ink-faint);
  margin-top: 22px;
  text-align: center;
  font-style: italic;
}

/* availability strip */
.availability {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 26px;
  margin-top: 30px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
}
.availability .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 4px rgba(84, 112, 122, 0.18);
  flex-shrink: 0;
}
.availability span { font-size: 0.92rem; color: var(--ink-soft); }
.availability strong { color: var(--ink); }

/* ============================================================
   TESTIMONIALS — editorial irregular grid
   ============================================================ */
.testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 760px) { .testi-grid { grid-template-columns: repeat(2, 1fr); } }
.testi {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: 10px;
  padding: clamp(22px, 3vw, 30px);
}
.testi p { font-style: italic; color: var(--ink); margin-bottom: 1em; }
.testi .meta {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
}
.testi .meta small {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--ink-faint);
  margin-top: 2px;
}
.testi .stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 10px; }

/* ============================================================
   NOTES (Atölye Notları)
   ============================================================ */
.notes-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.notes-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.notes-list time {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--accent);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.notes-list strong { font-family: var(--font-head); font-weight: 700; color: var(--ink); }
.notes-list p { margin: 4px 0 0; font-size: 0.92rem; color: var(--ink-soft); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 760px; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px clamp(8px, 2vw, 18px) 22px 0;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  flex-shrink: 0;
  width: 20px; height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239A5B34' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 300ms cubic-bezier(.4,0,.2,1);
}
.faq-item[open] summary::after { transform: rotate(135deg); }
.faq-item .answer {
  height: 0;
  padding: 0 clamp(8px, 2vw, 18px) 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 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 {
  text-align: center;
}
.cta-band h2 { font-size: clamp(1.9rem, 4.5vw, 3rem); color: var(--surface); }
.cta-band p { max-width: 52ch; margin-inline: auto; }
.cta-band .hero-actions { justify-content: center; margin-top: 1.6em; }
.cta-band .btn-ghost { color: #F6EFE2; border-color: rgba(246, 239, 226, 0.4); }
.cta-band .btn-ghost:hover { background: rgba(246,239,226,0.12); color: #FFF; border-color: #F6EFE2; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-hero { padding-block: clamp(56px, 9vw, 110px) clamp(30px, 5vw, 56px); }
.contact-hero h1 { font-size: clamp(2.1rem, 5.4vw, 3.6rem); }

.channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.channel-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  transition: transform 260ms cubic-bezier(.2,.7,.2,1), box-shadow 260ms ease, border-color 260ms ease;
}
.channel-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 46px -34px rgba(42, 32, 22, 0.5);
  border-color: rgba(154, 91, 52, 0.4);
}
.channel-ico {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--surface-2);
  color: var(--accent);
  margin-bottom: 14px;
  transition: transform 260ms ease, background 260ms ease, color 260ms ease;
}
.channel-card:hover .channel-ico { transform: scale(1.08); background: var(--accent); color: var(--surface); }
.channel-ico svg { width: 22px; height: 22px; }
.channel-card h3 { font-size: 1.06rem; margin-bottom: 0.3em; }
.channel-card a, .channel-card .val {
  font-size: 1.02rem;
  color: var(--ink);
  font-weight: 600;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.channel-card a:hover { color: var(--accent); }
.channel-card .sub { display: block; font-size: 0.84rem; color: var(--ink-faint); margin-top: 6px; font-weight: 400; }

/* hours mini-grid */
.hours-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  max-width: 460px;
}
.hours-grid .row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  font-size: 0.95rem;
}
.hours-grid .row.today { border-color: var(--accent); background: rgba(154, 91, 52, 0.07); }
.hours-grid .row .day { color: var(--ink-soft); }
.hours-grid .row .time { font-variant-numeric: tabular-nums; color: var(--ink); font-weight: 600; }

/* ============================================================
   FORM
   ============================================================ */
.form-wrap {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: clamp(24px, 4vw, 44px);
}
.form-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 640px) { .form-grid .half { grid-column: span 1; } .form-grid.two { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label, .field > span.lbl {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.field label .opt { font-weight: 400; font-size: 0.86em; color: var(--ink-faint); }
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  padding: 13px 15px;
  width: 100%;
  transition: border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}
.field textarea { min-height: 130px; resize: vertical; }
.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(154, 91, 52, 0.16);
}
.field .kvkk, .kvkk {
  flex-direction: row;
  align-items: flex-start;
  gap: 11px;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.5;
  cursor: pointer;
}
.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-wrap .btn { width: 100%; justify-content: center; margin-top: 6px; }
@media (min-width: 640px) { .form-wrap .btn { width: auto; } }

/* ============================================================
   ABOUT / team
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 720px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
.member {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 260ms cubic-bezier(.2,.7,.2,1), box-shadow 260ms ease;
}
.member:hover { transform: translateY(-5px); box-shadow: 0 26px 50px -36px rgba(42,32,22,0.5); }
.member img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.member .body { padding: 20px 22px 26px; }
.member h3 { font-size: 1.2rem; margin-bottom: 0.15em; }
.member .role { font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.7em; }
.member p { font-size: 0.93rem; color: var(--ink-soft); margin: 0; }

.prose { max-width: 760px; }
.prose h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); margin-top: 1.6em; }
.prose h3 { font-size: 1.25rem; margin-top: 1.4em; }
.prose ul { padding-left: 1.3em; }
.prose li { margin-bottom: 0.5em; }
.prose a { word-break: break-word; }

/* ============================================================
   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: 8px;
}
.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: 0.94rem; }
table th { background: var(--surface-2); font-family: var(--font-head); font-weight: 700; color: var(--ink); }
table tr:last-child td { border-bottom: 0; }

/* key/value "künye" table — stacks into cards on phones instead of forcing
   a horizontal scroll that clips values (data tables keep their scroll) */
.table-scroll.is-info { overflow: visible; }
@media (max-width: 600px) {
  .table-scroll.is-info { border: 0; border-radius: 0; }
  .table-scroll.is-info > table { min-width: 0; }
  .table-scroll.is-info table,
  .table-scroll.is-info tbody,
  .table-scroll.is-info tr,
  .table-scroll.is-info th,
  .table-scroll.is-info td { display: block; width: 100%; }
  .table-scroll.is-info tr {
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--surface);
    padding: 13px 16px;
    margin-bottom: 10px;
  }
  .table-scroll.is-info tr:last-child { margin-bottom: 0; }
  .table-scroll.is-info th {
    background: transparent;
    border: 0;
    padding: 0 0 4px;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
  }
  .table-scroll.is-info td {
    border: 0;
    padding: 0;
    font-size: 0.96rem;
    line-height: 1.55;
    color: var(--ink);
    overflow-wrap: anywhere;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: #D9CBB6;
  padding-block: clamp(48px, 7vw, 80px) 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-grid h4 { color: #F1E7D6; font-size: 1rem; margin-bottom: 1em; letter-spacing: 0.02em; }
.footer-brand .brand { color: #F6EFE2; margin-bottom: 14px; }
.footer-brand .brand small { color: #B7A88E; }
.footer-brand p { color: #C3B49B; font-size: 0.94rem; max-width: 38ch; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a { color: #D9CBB6; font-size: 0.94rem; }
.footer-grid a:hover { color: #E8C39B; }
.footer-contact p { font-size: 0.92rem; margin-bottom: 0.7em; color: #C3B49B; line-height: 1.6; }
.footer-contact a { color: #E8C39B; }
.footer-bottom {
  border-top: 1px solid rgba(246, 239, 226, 0.14);
  margin-top: 40px;
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: space-between;
  font-size: 0.82rem;
  color: #9C8C73;
}
.footer-bottom a { color: #9C8C73; }
.footer-bottom a:hover { color: #E8C39B; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 8px 18px; }

/* ============================================================
   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: 14px;
  padding: 22px 24px;
  box-shadow: 0 30px 70px -30px rgba(42, 32, 22, 0.7);
  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: 720px) { .cookie-banner { left: 24px; right: auto; max-width: 420px; } }
.cookie-banner h2 { font-size: 1.1rem; margin-bottom: 0.4em; }
.cookie-banner p { font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 1em; }
.cookie-banner p a { color: var(--accent); text-decoration: underline; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-actions button {
  flex: 1 1 auto;
  min-height: 44px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 999px;
  cursor: pointer;
  padding: 11px 16px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink);
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
}
.cookie-actions button[data-consent="accept"] { background: var(--ink); color: var(--surface); border-color: var(--ink); }
.cookie-actions button[data-consent="accept"]:hover { background: var(--accent); border-color: var(--accent); color: var(--surface); }
/* "Reddet" must read as an equally real choice, not a faint/disabled one (KVKK) */
.cookie-actions button[data-consent="reject"] { background: var(--surface-2); border-color: var(--line-strong); color: var(--ink); }
.cookie-actions button[data-consent="reject"]:hover { background: var(--surface); border-color: var(--accent); color: var(--ink); }
.cookie-actions button[data-consent="settings"]:hover { background: var(--surface-2); border-color: var(--accent); color: var(--ink); }

/* ============================================================
   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; }
  .hero-media img { animation: none; }
  .journey-figure:hover img, .member:hover, .value-card:hover, .price-card:hover { transform: none; }
}

/* loupe / magnifier decorative motif */
.loupe-deco {
  position: absolute;
  pointer-events: none;
  opacity: 0.16;
  color: var(--accent);
  z-index: 0;
}

/* 404 */
.error-wrap { text-align: center; padding-block: clamp(80px, 14vw, 160px); }
.error-wrap .code {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(5rem, 16vw, 11rem);
  color: var(--accent);
  line-height: 1;
}

/* thank you */
.thanks-wrap { text-align: center; padding-block: clamp(70px, 12vw, 150px); max-width: 620px; margin-inline: auto; }
.thanks-ico {
  width: 76px; height: 76px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--accent);
  display: grid; place-items: center;
  color: var(--accent);
}
.thanks-ico svg { width: 36px; height: 36px; }

/* ---------- small screens ---------- */
@media (max-width: 640px) {
  body { font-size: 1rem; }
  .section { padding-block: clamp(50px, 12vw, 70px); }
  .value-icon { width: 44px; height: 44px; }
  .channel-card, .value-card, .price-card { padding: 20px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; }
}

.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}
