/* ============================================================
   Mühür Esans Atölyesi — imza parfüm tasarım atölyesi
   Design DNA: warm, tactile storytelling-longread
   ============================================================ */

:root {
  --bg: #FBF6F2;
  --surface: #F1E4DA;
  --surface-2: #EAD9CC;
  --ink: #2B211C;
  --ink-soft: #5B4E45;
  --accent: #C56A4E;        /* kavrulmuş bakır */
  --accent-deep: #A9583F;
  --accent-2: #5E6B4F;      /* adaçayı */
  --accent-2-deep: #47513C;
  --line: rgba(43, 33, 28, 0.14);
  --line-strong: rgba(43, 33, 28, 0.26);
  --gold: #B98F5B;
  --shadow: 0 24px 60px -34px rgba(43, 33, 28, 0.5);
  /* warm copper glow — theme-specific card lift */
  --glow: 0 26px 60px -32px rgba(43, 33, 28, 0.5), 0 10px 34px -20px rgba(197, 106, 78, 0.38);

  --maxw: 1180px;
  --pad: clamp(20px, 4vw, 56px);
  --header-h: 74px;

  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: 'Newsreader', Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-size: 1.06rem;
  line-height: 1.7;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, .display {
  font-family: 'Fraunces', 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-optical-sizing: auto;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.012em;
  margin: 0 0 0.5em;
}

p { margin: 0 0 1.1em; }
a { color: var(--accent-deep); text-decoration: none; }

img { max-width: 100%; height: auto; display: block; }

::selection { background: var(--accent); color: #fff; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.eyebrow {
  font-family: 'Newsreader', serif;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--accent);
}

.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; }

:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 3px;
}

/* ============================================================
   SCROLL-PROGRESS ESANS DAMLASI (theme signature)
   ============================================================ */
.drop-progress {
  position: fixed;
  top: 0;
  right: clamp(10px, 2.4vw, 26px);
  height: 100vh;
  width: 26px;
  z-index: 1200;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.drop-progress .rail {
  position: relative;
  width: 2px;
  height: min(60vh, 460px);
  background: var(--line);
  border-radius: 2px;
  overflow: visible;
}
.drop-progress .fill {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 0%;
  background: linear-gradient(var(--accent), var(--accent-2));
  border-radius: 2px;
}
.drop-progress .bead {
  position: absolute;
  left: 50%;
  top: 0%;
  width: 15px;
  height: 15px;
  transform: translate(-50%, -50%) rotate(45deg);
  background: var(--accent);
  border-radius: 60% 60% 60% 0;
  box-shadow: 0 6px 14px -4px rgba(197, 106, 78, 0.7);
}
.drop-progress .bead::after {
  content: "";
  position: absolute;
  top: 22%; left: 24%;
  width: 30%; height: 30%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
}
@media (max-width: 900px) { .drop-progress { display: none; } }

/* ============================================================
   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(251, 246, 242, 0.92);
  backdrop-filter: saturate(140%) blur(2px);
  border-bottom: 1px solid transparent;
  transition: background 240ms ease, box-shadow 240ms ease, height 240ms ease;
}
.site-header.is-scrolled {
  background: rgba(251, 246, 242, 0.98);
  box-shadow: 0 8px 24px -16px rgba(43, 33, 28, 0.28);
  border-bottom-color: var(--line);
  height: 64px;
}
.header-inner {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.16rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand:hover { color: var(--ink); }
.brand .mark {
  width: 30px; height: 30px;
  flex: 0 0 auto;
  color: var(--accent);
}
.brand small {
  display: block;
  font-family: 'Newsreader', serif;
  font-weight: 400;
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 1px;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
}
.nav-desktop a {
  position: relative;
  font-size: 0.94rem;
  color: var(--ink);
  padding: 6px 2px;
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -1px;
  height: 1.5px;
  background: var(--accent);
  transition: right 260ms cubic-bezier(.2,.7,.2,1);
}
.nav-desktop a:hover { color: var(--accent-deep); }
.nav-desktop a:hover::after,
.nav-desktop a.is-active::after { right: 0; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--bg);
  padding: 10px 20px;
  border-radius: 999px;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover,
.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 1100;
  width: 44px; height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  /* warm surface fill + soft lift so the control reads clearly against the header */
  background: var(--surface);
  box-shadow: 0 2px 10px -6px rgba(43, 33, 28, 0.4);
  cursor: pointer;
  padding: 0;
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}
.nav-toggle:hover { border-color: var(--accent); background: var(--surface-2); box-shadow: 0 4px 14px -6px rgba(197, 106, 78, 0.5); }
.nav-toggle:hover span { background: var(--accent-deep); }
.nav-toggle:active { transform: scale(0.96); }
.nav-toggle span {
  position: absolute;
  left: 11px; right: 11px;
  height: 1.8px;
  background: var(--ink);
  transition: transform 260ms cubic-bezier(.2,.7,.2,1), opacity 200ms ease, background 220ms 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 {
  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) + 20px) 30px 40px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: -30px 0 60px -40px rgba(43, 33, 28, 0.6);
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ink);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.drawer a:hover { color: var(--accent-deep); }
.drawer .drawer-cta {
  margin-top: 18px;
  background: var(--ink);
  color: var(--bg);
  text-align: center;
  border-radius: 999px;
  border: none;
  padding: 14px;
  font-size: 1rem;
}
.drawer .drawer-cta:hover { background: var(--accent); color: #fff; }
.drawer .drawer-note {
  margin-top: auto;
  font-size: 0.82rem;
  color: var(--ink-soft);
  border: none;
  padding-top: 20px;
}
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(43, 33, 28, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 240ms ease, visibility 240ms ease;
  z-index: 1040;
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: block; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease, border-color 220ms ease;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover, .btn-primary:focus-visible { background: var(--accent); color: #fff; transform: translateY(-2px); }
.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); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover, .btn-accent:focus-visible { background: var(--accent-deep); color: #fff; transform: translateY(-2px); }

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  color: var(--accent-deep);
}
.arrow-link svg { width: 16px; height: 16px; transition: transform 240ms ease; }
.arrow-link:hover svg { transform: translateX(5px); }

/* ============================================================
   MAIN + SECTIONS
   ============================================================ */
main { padding-top: var(--header-h); }

.section { padding-block: clamp(64px, 9vw, 130px); }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }
.section--ink { background: var(--ink); color: var(--bg); }
.section--ink h1, .section--ink h2, .section--ink h3, .section--ink h4 { color: #F6ECE3; }
.section--ink .eyebrow { color: #E7A78C; }
.section--ink .eyebrow::before { background: var(--accent); }
.section--surface { background: var(--surface); }

.lede { font-size: clamp(1.15rem, 2.4vw, 1.5rem); line-height: 1.55; color: var(--ink); max-width: 40ch; }

/* hand-drawn droplet route divider between sections */
.drop-route {
  display: block;
  margin: 0 auto;
  width: min(90%, 720px);
  height: 60px;
  color: var(--accent);
  opacity: 0.65;
}
.drop-route .dash { stroke-dasharray: 4 8; }

.gold-rule {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0;
}

/* ============================================================
   HERO — vertical stack
   ============================================================ */
.hero {
  position: relative;
  padding-block: clamp(48px, 8vw, 96px) 0;
  overflow: hidden;
}
.hero-head {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}
.hero-head .eyebrow { justify-content: center; }
.hero-head .eyebrow::after {
  content: "";
  width: 30px; height: 1px; background: var(--accent);
}
.hero h1 {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 600;
  margin: 0.35em 0 0.4em;
  letter-spacing: -0.02em;
}
.hero .word {
  display: inline-block;
  white-space: nowrap;
}
.hero-sub {
  font-size: clamp(1.1rem, 2.4vw, 1.42rem);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 30ch;
  margin: 0 auto 1.8em;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  justify-content: center;
  margin-top: 26px;
  list-style: none;
  padding: 0;
}
.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--ink-soft);
  font-family: 'Newsreader', serif;
}
.hero-trust svg { width: 16px; height: 16px; color: var(--accent-2); }

.hero-figure {
  position: relative;
  margin-top: clamp(40px, 6vw, 72px);
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
}
.hero-figure .frame {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 16 / 10;
  box-shadow: var(--shadow);
}
.hero-figure img {
  width: 100%;
  height: 118%;
  object-fit: cover;
  will-change: transform;
}
.hero-figure figcaption {
  position: absolute;
  left: 20px; bottom: 18px;
  background: rgba(43, 33, 28, 0.72);
  color: #F6ECE3;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  backdrop-filter: blur(2px);
}
.hero-stat {
  position: absolute;
  top: 24px; right: 24px;
  background: rgba(251, 246, 242, 0.92);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 20px;
  text-align: center;
  box-shadow: var(--shadow);
}
.hero-stat b {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1.9rem;
  color: var(--accent-deep);
  line-height: 1;
}
.hero-stat span { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); }

@media (max-width: 620px) {
  .hero-stat { top: 12px; right: 12px; padding: 10px 14px; }
  .hero-stat b { font-size: 1.4rem; }
}

/* ============================================================
   OPENING NARRATIVE — asymmetric two-column flow
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.split--reverse .split-media { order: -1; }
.split-body { min-width: 0; }
.split-body h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
.split-media { min-width: 0; position: relative; }
.split-media img {
  width: 100%;
  border-radius: 6px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.split-media .tag {
  position: absolute;
  bottom: -14px; left: -14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 18px;
  font-family: 'Fraunces', serif;
  font-size: 0.94rem;
  box-shadow: var(--shadow);
  max-width: 70%;
}
.drop-cap::first-letter {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 3.6em;
  float: left;
  line-height: 0.82;
  padding: 6px 12px 0 0;
  color: var(--accent-deep);
}

@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split--reverse .split-media { order: 0; }
  .split-media .tag { max-width: 60%; }
}

/* ============================================================
   SEANS YOLCULUĞU — long timeline
   ============================================================ */
.journey { display: flex; flex-direction: column; gap: clamp(48px, 8vw, 110px); }
.journey-step {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}
.journey-step:nth-child(even) .journey-media { order: -1; }
.journey-media { position: relative; min-width: 0; }
.journey-media img {
  width: 100%;
  border-radius: 6px;
  aspect-ratio: 5 / 6;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.journey-num {
  position: absolute;
  top: -26px; left: -10px;
  font-family: 'Fraunces', serif;
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 600;
  color: var(--accent);
  opacity: 0.28;
  line-height: 1;
  pointer-events: none;
}
.journey-body { min-width: 0; }
.journey-body .kicker {
  font-family: 'Newsreader', serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  color: var(--accent-2-deep);
  display: block;
  margin-bottom: 10px;
}
.journey-body h3 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); }
.journey-body .time-marker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 0.84rem;
  color: var(--ink-soft);
  font-style: italic;
}
.journey-body .time-marker svg { width: 15px; height: 15px; color: var(--accent); }

@media (max-width: 820px) {
  .journey-step { grid-template-columns: 1fr; }
  .journey-step:nth-child(even) .journey-media { order: 0; }
  .journey-num { top: -34px; }
}

/* ============================================================
   INGREDIENT MACRO ROW (distillation)
   ============================================================ */
.macro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 3vw, 30px);
  margin-top: 40px;
}
.macro-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg);
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms ease, border-color 300ms ease;
}
.macro-card .m-img { overflow: hidden; aspect-ratio: 1; }
.macro-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms cubic-bezier(.2,.7,.2,1); }
.macro-card:hover { transform: translateY(-5px); box-shadow: var(--glow); border-color: var(--line-strong); }
.macro-card:hover img { transform: scale(1.05); }
.macro-card .m-body { padding: 18px 20px 22px; }
.macro-card h4 { font-size: 1.16rem; margin-bottom: 4px; display: flex; align-items: center; gap: 8px; }
.macro-card h4 svg { width: 20px; height: 20px; color: var(--accent); flex: 0 0 auto; }
.macro-card p { font-size: 0.92rem; color: var(--ink-soft); margin: 0; }
.macro-card .note-type { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-2-deep); }
@media (max-width: 720px) { .macro-grid { grid-template-columns: 1fr; } }

/* ============================================================
   MANIFESTO QUOTE
   ============================================================ */
.manifesto { text-align: center; max-width: min(92vw, 42rem); margin-inline: auto; }
.manifesto blockquote {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-style: italic;
  font-size: clamp(1.35rem, 3.2vw, 2.55rem);
  line-height: 1.28;
  margin: 0;
  max-width: min(92vw, 28ch);
  margin-inline: auto;
  text-wrap: balance;
  overflow-wrap: break-word;
  hyphens: none;
}
.manifesto blockquote span { white-space: normal; }
.manifesto blockquote span { color: var(--accent); }

/* ============================================================
   TESTIMONIALS — editorial irregular grid
   ============================================================ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(18px, 3vw, 30px);
}
.testi {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 26px 26px 22px;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms ease, border-color 300ms ease;
}
.testi:hover { transform: translateY(-4px); box-shadow: var(--glow); border-color: var(--line-strong); }
.testi:nth-child(2) { background: var(--surface); }
.testi .quote-mark { font-family: 'Fraunces', serif; font-size: 2.6rem; line-height: 0.4; color: var(--accent); height: 22px; }
.testi p { font-size: 1.02rem; margin: 0; }
.testi .who { margin-top: auto; padding-top: 8px; border-top: 1px solid var(--line); }
.testi .who b { font-family: 'Fraunces', serif; font-weight: 600; display: block; font-size: 0.98rem; }
.testi .who span { font-size: 0.82rem; color: var(--ink-soft); }

/* ============================================================
   PRICING
   ============================================================ */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(18px, 3vw, 26px);
  align-items: stretch;
}
.price-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 30px 28px;
  background: var(--bg);
  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: var(--glow); border-color: var(--line-strong); }
.price-card.is-featured { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.price-card.is-featured h3, .price-card.is-featured .price { color: #F6ECE3; }
.price-card.is-featured .price small { color: #D8C7BA; }
.price-card.is-featured .incl li { color: #E7DACF; }
.price-card.is-featured .excl { color: #C7A99A; }
.price-card .badge {
  align-self: flex-start;
  font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--accent); color: #fff;
  padding: 4px 12px; border-radius: 999px; margin-bottom: 14px;
}
.price-card h3 { font-size: 1.4rem; margin-bottom: 6px; }
.price-card .price {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 2.2rem;
  color: var(--accent-deep);
  margin: 6px 0 4px;
}
.price-card .price small { display: block; font-size: 0.72rem; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); }
.price-card > p { font-size: 0.94rem; color: var(--ink-soft); }
.price-card.is-featured > p { color: #D8C7BA; }
.price-card .incl { list-style: none; padding: 0; margin: 16px 0; display: flex; flex-direction: column; gap: 9px; }
.price-card .incl li { display: flex; gap: 9px; font-size: 0.94rem; align-items: flex-start; }
.price-card .incl li svg { width: 16px; height: 16px; color: var(--accent-2); flex: 0 0 auto; margin-top: 4px; }
.price-card .excl { font-size: 0.84rem; color: var(--ink-soft); font-style: italic; margin: 0 0 18px; }
.price-card .btn { margin-top: auto; width: 100%; }
.price-note { text-align: center; margin-top: 24px; font-size: 0.86rem; color: var(--ink-soft); font-style: italic; }

/* ============================================================
   ATÖLYE NOTLARI (activity feed)
   ============================================================ */
.notes-list { list-style: none; padding: 0; margin: 30px 0 0; display: flex; flex-direction: column; gap: 4px; max-width: 760px; }
.notes-list li { display: grid; grid-template-columns: auto 1fr; gap: 18px; padding: 16px 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.notes-list time { font-family: 'Newsreader', serif; font-size: 0.82rem; letter-spacing: 0.06em; color: var(--accent-2-deep); white-space: nowrap; }
.notes-list b { font-family: 'Fraunces', serif; font-weight: 500; font-size: 1.04rem; }
@media (max-width: 560px) { .notes-list li { grid-template-columns: 1fr; gap: 3px; } }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band { text-align: center; }
.cta-band h2 { font-size: clamp(2rem, 5vw, 3.4rem); max-width: 16ch; margin-inline: auto; }
.cta-band p { max-width: 44ch; margin-inline: auto; color: #E7DACF; }
.cta-band .hero-actions { margin-top: 26px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-hero { padding-block: clamp(48px, 7vw, 92px) clamp(20px, 3vw, 40px); }
.channel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(16px, 2.6vw, 24px);
}
.channel {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px 24px;
  background: var(--bg);
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms ease, border-color 240ms ease;
  opacity: 0;
  transform: translateY(20px);
  transition-delay: calc(var(--i, 0) * 70ms);
}
.channel.is-in { opacity: 1; transform: none; }
.channel:hover { transform: translateY(-3px); box-shadow: var(--glow); border-color: var(--line-strong); }
.channel .ic {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--surface);
  color: var(--accent-deep);
  margin-bottom: 14px;
}
.channel .ic svg { width: 22px; height: 22px; }
.channel h3 { font-size: 1.1rem; margin-bottom: 4px; }
.channel a, .channel p { font-size: 0.98rem; margin: 0; color: var(--ink); word-break: break-word; overflow-wrap: anywhere; }
.channel a:hover { color: var(--accent-deep); }
.channel small { display: block; font-size: 0.8rem; color: var(--ink-soft); margin-top: 6px; }

.hours-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 10px; margin-top: 8px; }
.hours-row {
  display: flex; justify-content: space-between; gap: 10px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg);
  font-variant-numeric: tabular-nums;
  font-size: 0.94rem;
}
.hours-row.is-today { border-color: var(--accent); background: var(--surface); }
.hours-row span:first-child { font-weight: 500; }
.hours-row .cl { color: var(--ink-soft); }

/* ============================================================
   FORM
   ============================================================ */
.form-wrap {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(24px, 4vw, 44px);
  background: var(--bg);
  box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; }
.field { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.field.full { grid-column: 1 / -1; }
.field label, .field > span { font-size: 0.86rem; font-weight: 500; color: var(--ink); font-family: 'Newsreader', serif; }
.field input, .field select, .field textarea {
  font-family: 'Newsreader', serif;
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg);
  border: none;
  border-bottom: 2px solid var(--line-strong);
  padding: 10px 2px;
  border-radius: 0;
  transition: border-color 220ms ease;
  width: 100%;
}
.field textarea { border: 2px solid var(--line-strong); border-radius: 10px; padding: 12px 14px; min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.field.kvkk { flex-direction: row; align-items: flex-start; gap: 11px; grid-column: 1 / -1; }
.field.kvkk label { font-weight: 400; font-size: 0.9rem; color: var(--ink-soft); line-height: 1.4; }
.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-actions { grid-column: 1 / -1; display: flex; justify-content: flex-end; }
.form-actions .btn { width: 100%; }
@media (min-width: 640px) { .form-actions .btn { width: auto; } }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FAQ (pure CSS)
   ============================================================ */
.faq-list { max-width: 820px; margin-inline: auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 22px 4px;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(1.05rem, 2.4vw, 1.28rem);
  color: var(--ink);
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary .plus { position: relative; width: 18px; height: 18px; flex: 0 0 auto; }
.faq-item > summary .plus::before,
.faq-item > summary .plus::after {
  content: ""; position: absolute; background: var(--accent); border-radius: 2px;
  transition: transform 300ms cubic-bezier(.4,0,.2,1);
}
.faq-item > summary .plus::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq-item > summary .plus::after { top: 0; left: 8px; width: 2px; height: 18px; }
.faq-item[open] > summary .plus::after { transform: rotate(90deg); opacity: 0; }
.faq-item > .answer {
  height: 0;
  padding: 0 4px;
  overflow: hidden;
  color: var(--ink-soft);
  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; }
@media (prefers-reduced-motion: reduce) { .faq-item > .answer { transition: 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: 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: 13px 16px; border-bottom: 1px solid var(--line); font-size: 0.94rem; }
table th { font-family: 'Fraunces', serif; font-weight: 600; background: var(--surface); }
table tr:last-child td { border-bottom: none; }

/* ============================================================
   DOC / LEGAL PAGES
   ============================================================ */
.doc { max-width: 800px; }
.doc h2 { font-size: clamp(1.5rem, 3.2vw, 2.1rem); margin-top: 1.6em; }
.doc h3 { font-size: 1.2rem; margin-top: 1.4em; }
.doc ul, .doc ol { padding-left: 1.3em; }
.doc li { margin-bottom: 0.5em; }
.page-head { padding-block: clamp(40px, 6vw, 76px) clamp(20px, 3vw, 36px); }
.page-head h1 { font-size: clamp(2rem, 5.4vw, 3.6rem); }
.page-head p { color: var(--ink-soft); max-width: 52ch; }
.crumb { font-size: 0.82rem; color: var(--ink-soft); margin-bottom: 14px; letter-spacing: 0.04em; }
.crumb a { color: var(--ink-soft); }
.crumb a:hover { color: var(--accent-deep); }

/* thank you */
.thanks { text-align: center; padding-block: clamp(70px, 12vw, 150px); }
.thanks .ic { width: 76px; height: 76px; margin: 0 auto 24px; color: var(--accent); }
.thanks h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
.thanks p { max-width: 40ch; margin-inline: auto; color: var(--ink-soft); font-size: 1.1rem; }

/* 404 */
.err { text-align: center; padding-block: clamp(70px, 12vw, 150px); }
.err .code { font-family: 'Fraunces', serif; font-size: clamp(5rem, 18vw, 11rem); color: var(--accent); opacity: 0.5; line-height: 0.9; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); color: #E7DACF; padding-block: clamp(52px, 7vw, 88px) 30px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: clamp(28px, 4vw, 48px); }
.site-footer h4 { color: #F6ECE3; font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 16px; font-family: 'Newsreader', serif; font-weight: 500; }
.site-footer .brand { color: #F6ECE3; margin-bottom: 14px; }
.site-footer .brand small { color: #C7A99A; }
.footer-about p { font-size: 0.92rem; color: #C7B5A8; max-width: 34ch; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: #D8C7BA; font-size: 0.94rem; }
.footer-col a:hover { color: var(--accent); }
.footer-contact p { font-size: 0.92rem; color: #C7B5A8; margin: 0 0 8px; display: flex; gap: 9px; align-items: flex-start; }
.footer-contact svg { width: 16px; height: 16px; color: var(--accent); flex: 0 0 auto; margin-top: 4px; }
.footer-contact a { color: #D8C7BA; word-break: break-word; overflow-wrap: anywhere; }
.footer-contact a:hover { color: var(--accent); }
.footer-bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.12); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 0.82rem; color: #A88E7E; }
.footer-bottom .legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom a { color: #A88E7E; }
.footer-bottom a:hover { color: var(--accent); }
@media (max-width: 860px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-top { grid-template-columns: 1fr; } }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 20px 22px;
  box-shadow: 0 30px 60px -30px rgba(43,33,28,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; }
.cookie-banner h4 { font-size: 1.05rem; margin-bottom: 6px; }
.cookie-banner p { font-size: 0.88rem; color: var(--ink-soft); margin: 0 0 14px; }
.cookie-banner p a { color: var(--accent-deep); text-decoration: underline; }
.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: 'Fraunces', serif;
  font-size: 0.9rem;
  cursor: pointer;
  border: 1px solid var(--line-strong);
  background: var(--bg);
  color: var(--ink);
  transition: background 200ms ease, color 200ms ease;
}
.cookie-actions button[data-consent="accept"] { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.cookie-actions button[data-consent="accept"]:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
/* Reddet carries equal visual weight to Kabul et (consent parity) */
.cookie-actions button[data-consent="reject"] { border-color: var(--ink); color: var(--ink); font-weight: 500; }
.cookie-actions button[data-consent="reject"]:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
/* Ayarlar stays the quiet, tertiary option */
.cookie-actions button[data-consent="settings"] { flex: 0 1 auto; border-color: var(--line); color: var(--ink-soft); }
.cookie-actions button[data-consent="settings"]:hover { background: var(--surface); color: var(--ink); }
@media (min-width: 720px) { .cookie-banner { left: 24px; right: auto; max-width: 420px; } }

/* cookie settings modal */
.cookie-modal {
  position: fixed; inset: 0; z-index: 10000;
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
  background: rgba(43,33,28,0.55);
}
.cookie-modal.is-open { display: flex; }
.cookie-modal .box {
  background: var(--bg);
  border-radius: 16px;
  max-width: 460px; width: 100%;
  padding: 28px;
  box-shadow: var(--shadow);
  max-height: 90vh; overflow-y: auto;
}
.cookie-modal h3 { font-size: 1.4rem; margin-bottom: 8px; }
.cookie-modal .toggle-row { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.cookie-modal .toggle-row b { font-family: 'Fraunces', serif; font-weight: 500; display: block; }
.cookie-modal .toggle-row small { font-size: 0.82rem; color: var(--ink-soft); }
.cookie-modal .switch { position: relative; width: 46px; height: 26px; flex: 0 0 auto; }
.cookie-modal .switch input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.cookie-modal .switch .track { position: absolute; inset: 0; background: var(--line-strong); border-radius: 999px; transition: background 200ms ease; }
.cookie-modal .switch .track::after { content: ""; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; background: #fff; border-radius: 50%; transition: transform 200ms ease; }
.cookie-modal .switch input:checked + .track { background: var(--accent); }
.cookie-modal .switch input:checked + .track::after { transform: translateX(20px); }
.cookie-modal .switch input:disabled + .track { background: var(--accent-2); opacity: 0.6; }
.cookie-modal .box .btn { margin-top: 20px; width: 100%; }

/* ============================================================
   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, .channel { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-figure img { transform: none !important; }
  .drop-progress { display: none; }
  .macro-card, .testi, .price-card, .nav-toggle { transition: none !important; }
  .macro-card:hover, .testi:hover, .price-card:hover, .channel:hover, .nav-toggle:active { transform: none !important; }
}

/* ambient breathing on bead disabled for reduce handled above */
@keyframes breathe { 0%,100% { transform: translate(-50%,-50%) rotate(45deg) scale(1); } 50% { transform: translate(-50%,-50%) rotate(45deg) scale(1.12); } }
@media (prefers-reduced-motion: no-preference) { .drop-progress .bead { animation: breathe 4.5s ease-in-out infinite; } }

.section-title { max-width: 30ch; }
.section-head { margin-bottom: clamp(30px, 5vw, 56px); }
.section-head.center { text-align: center; margin-inline: auto; }
.section-head.center .eyebrow { justify-content: center; }
.section-head h2 { font-size: clamp(1.9rem, 4.4vw, 3.1rem); }
.section-head p { color: var(--ink-soft); max-width: 52ch; }
.section-head.center p { margin-inline: auto; }

.scroll-progress{position:fixed;top:0;left:0;height:3px;width:0;background:var(--accent);z-index:9998;transition:width 80ms linear;pointer-events:none}

/* header-cta-padding-guard v1 */
.nav-desktop a.nav-cta, header a.nav-cta, .site-header a.nav-cta {
  padding: 10px 18px;
}

/* ============================================================
   AWARD-LEVEL POLISH LAYER
   Atmosphere · editorial serif · tactile apothecary cards
   Mühür Esans Atölyesi — kişiye özel imza parfüm
   ============================================================ */

/* --- Variable-font fine tuning (loaded fonts now available) --- */
h1, h2, h3, h4, .display, .brand, .btn, .price, .journey-num,
.manifesto blockquote, .hero-stat b {
  font-optical-sizing: auto;
}
body {
  font-feature-settings: "kern" 1, "liga" 1, "onum" 1;
}
h1, h2, .hero h1, .cta-band h2, .manifesto blockquote {
  letter-spacing: -0.018em;
}

/* --- Atmospheric depth: warm apothecary light + fine paper grain --- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(58% 42% at 84% -8%, rgba(197, 106, 78, 0.11), transparent 62%),
    radial-gradient(46% 40% at -10% 30%, rgba(94, 107, 79, 0.09), transparent 64%),
    radial-gradient(58% 46% at 48% 112%, rgba(185, 143, 91, 0.08), transparent 60%);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.4;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.86' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* --- Editorial italic accents in display headings --- */
h1 em, h2 em, h3 em, h4 em,
.hero .word.is-ital {
  font-style: italic;
  font-weight: 500;
  color: var(--accent-deep);
}
.hero .word.is-ital { display: inline-block; }
.section--ink h1 em, .section--ink h2 em, .section--ink h3 em { color: #E7A78C; }

/* --- Section-head flourish: a distilled copper→sage rule --- */
.section-head.center h2 { position: relative; }
.section-head.center h2::after {
  content: "";
  display: block;
  width: 54px;
  height: 2px;
  margin: 20px auto 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 2px;
}

/* --- Ink sections: soft copper glow so dark panels feel lit --- */
.section--ink { position: relative; overflow: hidden; }
.section--ink::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(72% 100% at 82% -6%, rgba(197, 106, 78, 0.20), transparent 60%);
}
.section--ink > .container { position: relative; z-index: 1; }

/* --- Tactile cards: a copper hairline draws in on hover --- */
.macro-card, .testi, .channel { position: relative; }
.macro-card::before, .testi::before, .channel::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: right 520ms cubic-bezier(.2, .7, .2, 1);
  z-index: 2;
}
.macro-card:hover::before,
.testi:hover::before,
.channel:hover::before { right: 0; }

/* macro note-type as a small tactile chip */
.macro-card .note-type,
.macro-card .m-body h4 svg { position: relative; }
.macro-card .note-type {
  display: inline-block;
  margin-bottom: 6px;
  padding: 3px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
}

/* --- Featured price card: quiet accent ring + a touch more lift --- */
.price-card.is-featured {
  box-shadow: 0 30px 72px -34px rgba(43, 33, 28, 0.62),
              0 0 0 1px rgba(197, 106, 78, 0.30);
}
.price-card.is-featured .badge {
  box-shadow: 0 8px 20px -10px rgba(197, 106, 78, 0.7);
}
.price-card.is-featured:hover { box-shadow: var(--glow), 0 0 0 1px rgba(197, 106, 78, 0.4); }

/* --- Journey numbers: warmer, sculpted --- */
.journey-num {
  background: linear-gradient(160deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.42;
}

/* --- Buttons: warm shadow bloom on primary/accent --- */
.btn-primary:hover, .btn-primary:focus-visible,
.btn-accent:hover, .btn-accent:focus-visible {
  box-shadow: 0 16px 34px -16px rgba(197, 106, 78, 0.6);
}

/* --- Arrow link: an animated hairline underline --- */
.arrow-link { position: relative; }
.arrow-link::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -3px;
  height: 1.5px;
  background: var(--accent);
  transition: right 320ms cubic-bezier(.2, .7, .2, 1);
}
.arrow-link:hover::after { right: 22px; }

/* --- Manifesto: oversized apothecary quotation flourish --- */
.manifesto { position: relative; }
.manifesto::before {
  content: "\201C";
  position: absolute;
  top: -0.34em; left: 50%;
  transform: translateX(-50%);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(4rem, 12vw, 8rem);
  line-height: 1;
  color: var(--accent);
  opacity: 0.16;
  pointer-events: none;
}
.manifesto blockquote { position: relative; }

/* --- Drop cap: refined swash weight --- */
.drop-cap::first-letter {
  font-weight: 500;
  font-optical-sizing: auto;
}

/* --- Hairline rhythm: quiet dividers where sections meet surface --- */
.section--surface + .section:not(.section--ink)::before,
.section:not(.section--ink) + .section--surface::before { content: none; }

/* --- Reduced-motion: kill all decorative motion, keep static texture --- */
@media (prefers-reduced-motion: reduce) {
  .macro-card::before, .testi::before, .channel::before,
  .arrow-link::after { transition: none !important; }
}
