/* ═══════════════════════════════════════════════
   White Turkish Nail Studio — Editorial Style
   ═══════════════════════════════════════════════ */

:root {
  --bg: #FFF8F0;
  --surface: #F5E6D3;
  --surface-2: #EDD8C0;
  --ink: #3B2F2F;
  --ink-soft: #6B5B5B;
  --accent: #8B6914;
  --accent-2: #A67B5B;
  --line: rgba(59,47,47,0.12);
  --line-strong: rgba(59,47,47,0.28);
  --font-heading: 'Georgia', serif;
  --font-body: 'Georgia', serif;
  --header-h: 82px;
  --container-max: 1180px;
  interpolate-size: allow-keywords;
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

html, body { overflow-x: hidden; max-width: 100vw; margin: 0; }
body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.72;
  color: var(--ink);
  background: var(--bg);
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--ink); text-decoration: none; transition: color 240ms cubic-bezier(.4,0,.2,1); }
a:hover { color: var(--accent); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ─── Skip Link ─── */
.skip-link {
  position: fixed; top: -100%; left: 16px;
  background: var(--ink); color: var(--bg);
  padding: 10px 20px; border-radius: 0 0 8px 8px;
  z-index: 100000; font-size: 0.875rem;
  transition: top 200ms;
}
.skip-link:focus { top: 0; }

/* ─── Focus Ring ─── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ─── Layout ─── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: clamp(1.5rem, 5vw, 4rem);
  padding-right: clamp(1.5rem, 5vw, 4rem);
}

/* ─── Typography ─── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-style: italic;
  line-height: 1.15;
  color: var(--ink);
}
h1 { font-size: clamp(2.25rem, 5vw, 4.5rem); letter-spacing: -0.012em; }
h2 { font-size: clamp(2rem, 5vw, 3.25rem); letter-spacing: -0.008em; margin-bottom: 1.5rem; }
h3 { font-size: clamp(1.35rem, 3vw, 1.75rem); margin-bottom: 1rem; }
h4 { font-size: 1.15rem; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.gold-rule {
  display: block;
  width: 80px;
  height: 1px;
  background: var(--accent);
  border: none;
  margin: 0;
}
.gold-rule--center { margin: 1.5rem auto; }

/* ─── Header (sticky-with-morph) ─── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1080;
  background: rgba(255,248,240,0.88);
  transition: background 240ms ease, box-shadow 240ms ease, padding 240ms ease;
  padding: 0;
}
.site-header.is-scrolled {
  background: rgba(255,248,240,0.98);
  box-shadow: 0 8px 24px -16px rgba(59,47,47,0.18);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  transition: height 240ms ease;
}
.site-header.is-scrolled .header-inner { height: 66px; }

.scroll-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  background: var(--accent);
  width: 0;
  z-index: 2;
  transition: none;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  z-index: 2;
}
.logo:hover { color: var(--ink); }
.logo-mark {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--accent);
}
.logo-text {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  line-height: 1.35;
  color: var(--ink);
}

/* ─── Desktop Nav ─── */
.nav-desktop {
  display: none;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
}
@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
}
.nav-desktop a {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
  transition: color 240ms cubic-bezier(.4,0,.2,1);
}
.nav-desktop a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 320ms cubic-bezier(.2,.7,.2,1), left 320ms cubic-bezier(.2,.7,.2,1);
}
.nav-desktop a:not(.nav-cta):hover::after,
.nav-desktop a:not(.nav-cta).is-active::after {
  width: 100%; left: 0;
}
.nav-desktop a.is-active { color: var(--accent); }
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta {
  font-size: 0.8125rem;
  padding: 10px 24px;
  margin-left: 0.5rem;
}
.nav-desktop .nav-cta:hover { background: var(--accent); color: var(--bg); }

/* ─── Nav Toggle (hamburger → X) ─── */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px; height: 44px;
  z-index: 1100;
  position: relative;
  gap: 6px;
  padding: 0;
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0; transform: scaleX(0);
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ─── Mobile Drawer ─── */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}
.drawer-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.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) + 32px) 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
}
.drawer.is-open {
  transform: translateX(0);
}
.drawer a {
  display: block;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--ink);
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  transition: color 240ms, transform 240ms cubic-bezier(.4,0,.2,1);
}
.drawer a:hover { color: var(--accent); transform: translateX(4px); }
.drawer a.is-active { color: var(--accent); }
.drawer .drawer-cta {
  margin-top: 2rem;
  text-align: center;
  padding: 16px 28px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 6px;
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.06em;
  border-bottom: none;
}
.drawer .drawer-cta:hover { background: var(--accent); color: var(--bg); transform: none; }

/* ─── Buttons ─── */
.btn-primary {
  display: inline-block;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: 4px;
  border: 1px solid var(--ink);
  transition: background 240ms cubic-bezier(.4,0,.2,1), color 240ms, transform 180ms, box-shadow 240ms;
  position: relative;
  overflow: hidden;
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px -6px rgba(139,105,20,0.35);
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
  transition: left 600ms cubic-bezier(.2,.7,.2,1);
}
.btn-primary:hover::after { left: 100%; }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: 4px;
  border: 1px solid var(--line-strong);
  transition: background 240ms, color 240ms, border-color 240ms, transform 180ms;
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--accent-2);
  transform: translateY(-2px);
}

/* ─── Main ─── */
main { padding-top: var(--header-h); }
section[id] { scroll-margin-top: calc(var(--header-h) + 16px); }

/* ─── Hero ─── */
.hero {
  text-align: center;
  padding: clamp(4rem, 12vh, 8rem) 0 clamp(3rem, 8vh, 6rem);
  position: relative;
  overflow: hidden;
}
.hero .container { position: relative; z-index: 2; }
.hero-el {
  opacity: 0;
  transform: translateY(28px);
  animation: heroReveal 800ms cubic-bezier(.2,.7,.2,1) forwards;
  animation-delay: calc(var(--i, 0) * 180ms);
}
@keyframes heroReveal {
  to { opacity: 1; transform: none; }
}
.hero h1 {
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  line-height: 1.05;
  margin-bottom: 0;
  max-width: 14ch;
  margin-left: auto;
  margin-right: auto;
}
.hero .gold-rule { margin: clamp(1.5rem, 3vw, 2.5rem) auto; }
.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--ink-soft);
  max-width: 42ch;
  margin: 0 auto 2rem;
  line-height: 1.65;
}
.hero .btn-primary { margin-bottom: 2rem; }

/* Trust strip */
.trust-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-top: 0.5rem;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  background: var(--surface);
  padding: 8px 18px;
  border-radius: 100px;
}
.trust-pill svg {
  width: 16px; height: 16px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}

/* ─── Stats Bar ─── */
.stats {
  background: var(--ink);
  padding: clamp(2rem, 4vw, 3rem) 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--accent);
  line-height: 1.1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,248,240,0.7);
}
@media (max-width: 640px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

/* ─── Sections Common ─── */
.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
}
.section--surface { background: var(--surface); }
.section--ink { background: var(--ink); color: var(--bg); }
.section--ink h2, .section--ink h3 { color: var(--bg); }
.section--ink .eyebrow { color: var(--accent); }

.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-header h2 { margin-bottom: 0; }

/* ─── Drop Cap ─── */
.drop-cap::first-letter {
  float: left;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 700;
  font-size: 4.5em;
  line-height: 0.78;
  padding-right: 0.12em;
  margin-top: 0.06em;
  color: var(--accent);
}

/* ─── Manifesto (#manifesto) ─── */
.manifesto-text {
  max-width: 680px;
  margin: 0 auto;
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  line-height: 1.8;
  text-align: left;
}

/* ─── Hikaye / Editorial (#hikaye) ─── */
.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}
.editorial-col p { font-size: 1.0625rem; line-height: 1.78; }
.pull-quote {
  border-left: 2px solid var(--accent);
  padding-left: 1.5rem;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--accent-2);
  line-height: 1.45;
  margin: 2rem 0;
}
@media (max-width: 768px) {
  .editorial-grid { grid-template-columns: 1fr; }
}

/* ─── Malzeme / Ingredients (#malzeme) ─── */
.ingredients-list {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
}
.ingredient-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.25rem;
  align-items: start;
}
.ingredient-icon {
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  background: rgba(139,105,20,0.08);
  border-radius: 50%;
  flex-shrink: 0;
  animation: herbBreathe 6s ease-in-out infinite;
  animation-play-state: paused;
}
.ingredient-item:hover .ingredient-icon { animation-play-state: running; }
.ingredient-icon svg { width: 28px; height: 28px; }
.ingredient-item h4 { margin-bottom: 0.35rem; font-size: 1.1rem; }
.ingredient-item p { font-size: 0.95rem; color: var(--ink-soft); margin: 0; }

/* ─── Rituel / Services (#rituel) ─── */
.rituals-list {
  max-width: 760px;
  margin: 0 auto;
}
.ritual-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 2rem;
  padding: clamp(1.5rem, 3vw, 2.5rem) 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.ritual-item:last-child { border-bottom: none; }
.ritual-duration {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--accent);
  line-height: 1;
  white-space: nowrap;
}
.ritual-body h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.ritual-body p { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }
@media (max-width: 480px) {
  .ritual-item { grid-template-columns: 1fr; gap: 0.5rem; }
}

/* ─── Process Timeline (#surec) ─── */
.process-list {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding-left: 48px;
}
.process-list::before {
  content: '';
  position: absolute;
  left: 18px; top: 0; bottom: 0;
  width: 1px;
  background: var(--line-strong);
}
.process-step {
  position: relative;
  padding-bottom: 2.5rem;
}
.process-step:last-child { padding-bottom: 0; }
.process-dot {
  position: absolute;
  left: -48px; top: 2px;
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border: 2px solid var(--accent);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--accent);
  z-index: 1;
}
.process-step h4 { margin-bottom: 0.25rem; }
.process-time {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.5rem;
  display: block;
}
.process-step p { font-size: 0.95rem; color: var(--ink-soft); margin: 0; }

/* ─── Pricing (#fiyat) ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 2rem);
}
.price-card {
  background: var(--surface);
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.25rem, 2.5vw, 2rem);
  text-align: center;
  border: 1px solid var(--line);
  transition: transform 360ms cubic-bezier(.2,.7,.2,1), box-shadow 360ms cubic-bezier(.2,.7,.2,1);
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px -8px rgba(139,105,20,0.18);
}
.price-card--featured {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.price-card--featured h3 { color: var(--bg); }
.price-card--featured .price-amount { color: var(--accent); }
.price-card--featured .price-list li { color: rgba(255,248,240,0.8); }
.price-card--featured .price-list li::before { color: var(--accent); }
.price-card--featured .price-excluded li { color: rgba(255,248,240,0.5); }
.price-card h3 { font-size: 1.15rem; margin-bottom: 1rem; }
.price-amount {
  display: block;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--accent);
  margin-bottom: 0.25rem;
}
.price-unit {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  font-style: normal;
  color: var(--ink-soft);
}
.price-card--featured .price-unit { color: rgba(255,248,240,0.6); }
.price-divider {
  width: 40px;
  height: 1px;
  background: var(--line-strong);
  margin: 1.25rem auto;
}
.price-card--featured .price-divider { background: rgba(255,248,240,0.2); }

.price-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-2);
  margin-bottom: 0.75rem;
  display: block;
}
.price-card--featured .price-label { color: var(--accent); }
.price-list {
  text-align: left;
  margin-bottom: 1rem;
}
.price-list li {
  font-size: 0.9rem;
  padding: 4px 0;
  color: var(--ink-soft);
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.price-list li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}
.price-excluded {
  text-align: left;
  margin-bottom: 1.5rem;
}
.price-excluded li {
  font-size: 0.82rem;
  padding: 3px 0;
  color: var(--ink-soft);
  opacity: 0.6;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.price-excluded li::before {
  content: '—';
  flex-shrink: 0;
}
.price-disclaimer {
  text-align: center;
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-top: 2rem;
  font-style: italic;
}
@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

/* ─── Testimonials (#yorumlar) ─── */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.testimonial:first-child {
  grid-column: 1 / -1;
}
.testimonial {
  background: var(--surface);
  border-radius: 10px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid var(--line);
  position: relative;
}
.testimonial::before {
  content: '"';
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.25;
  position: absolute;
  top: 8px; left: 16px;
  line-height: 1;
}
.testimonial-text {
  font-size: 1rem;
  line-height: 1.72;
  color: var(--ink);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-2);
  letter-spacing: 0.02em;
}
@media (max-width: 640px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial:first-child { grid-column: 1; }
}

/* ─── FAQ Accordion (#sss) ─── */
.faq-list {
  max-width: 740px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  cursor: pointer;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
  list-style: none;
  transition: color 240ms;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; content: ''; }
.faq-item summary:hover { color: var(--accent); }
.faq-chevron {
  width: 20px; height: 20px;
  stroke: var(--ink-soft);
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
  transition: transform 360ms cubic-bezier(.4,0,.2,1);
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-body {
  height: 0;
  padding: 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] .faq-body {
  height: auto;
  padding-block-end: 1.5rem;
}
.faq-body p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--ink-soft);
}
@media (prefers-reduced-motion: reduce) {
  .faq-body { transition: none; }
}

/* ─── CTA / Davet (#davet) ─── */
.davet {
  background: var(--ink);
  color: var(--bg);
  text-align: center;
  padding: clamp(4rem, 10vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}
.davet h2 { color: var(--bg); margin-bottom: 1.5rem; }
.davet .pull-quote {
  color: rgba(255,248,240,0.6);
  border-left-color: var(--accent);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  text-align: left;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}
.davet .btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}
.davet .btn-primary:hover, .davet .btn-primary:focus-visible {
  background: var(--bg);
  color: var(--ink);
  border-color: var(--bg);
}

/* ─── Footer ─── */
.site-footer {
  background: var(--ink);
  color: rgba(255,248,240,0.75);
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  margin-bottom: 3rem;
}
.footer-col h4 {
  color: var(--bg);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}
.footer-brand .logo-mark { color: var(--accent); font-size: 1.8rem; }
.footer-brand .logo-text { color: rgba(255,248,240,0.75); }
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.65;
  margin-top: 1rem;
  color: rgba(255,248,240,0.55);
}
.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,248,240,0.65);
  padding: 5px 0;
  transition: color 240ms, transform 240ms;
}
.footer-col a:hover { color: var(--accent); transform: translateX(3px); }
.footer-contact-item {
  display: flex;
  align-items: start;
  gap: 10px;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}
.footer-contact-item svg {
  width: 16px; height: 16px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
  margin-top: 3px;
}
.footer-contact-item a { display: inline; padding: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,248,240,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: rgba(255,248,240,0.4);
}
.footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-legal a { font-size: 0.78rem; padding: 0; }
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ─── Contact Page ─── */
.contact-channels {
  display: grid;
  gap: 0;
}
.contact-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  transition: transform 240ms cubic-bezier(.4,0,.2,1), background 240ms;
  border-radius: 4px;
  cursor: default;
}
.contact-row:last-child { border-bottom: none; }
.contact-row:hover { transform: translateX(4px); }
.contact-row svg {
  width: 20px; height: 20px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-top: 2px;
  transition: transform 240ms cubic-bezier(.4,0,.2,1), color 240ms;
}
.contact-row:hover svg { transform: scale(1.08); }
.contact-label {
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
  margin-bottom: 2px;
}
.contact-value {
  font-size: 0.95rem;
  color: var(--ink-soft);
  word-break: break-word;
  overflow-wrap: anywhere;
}
.contact-value a { color: var(--ink-soft); }
.contact-value a:hover { color: var(--accent); }

/* ─── Forms ─── */
.form-block {
  max-width: 560px;
}
.field {
  margin-bottom: 1.25rem;
}
.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin-bottom: 6px;
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field textarea,
.field select {
  display: block;
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: var(--bg);
  color: var(--ink);
  font-size: 0.95rem;
  transition: border-color 240ms, box-shadow 240ms;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(139,105,20,0.12);
  outline: none;
}
.field textarea { min-height: 120px; resize: vertical; }
.field select { 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: 2px 0 0;
  accent-color: var(--accent);
}
.kvkk {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
}
.kvkk a { color: var(--accent); text-decoration: underline; }

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

/* ─── 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%; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }
table {
  border-collapse: collapse;
  width: 100%;
  font-size: 0.9rem;
}
th, td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
th {
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--surface);
  color: var(--ink);
}

/* ─── Cookie Banner ─── */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--ink);
  color: rgba(255,248,240,0.85);
  padding: 24px;
  border-radius: 12px;
  z-index: 9999;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  box-shadow: 0 12px 40px -8px rgba(0,0,0,0.35);
}
.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.cookie-title {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--bg);
  margin-bottom: 0.5rem;
}
.cookie-text {
  font-size: 0.82rem;
  line-height: 1.55;
  margin-bottom: 1.25rem;
  color: rgba(255,248,240,0.65);
}
.cookie-text a { color: var(--accent); text-decoration: underline; }
.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cookie-btn {
  flex: 1;
  min-width: 100px;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border: 1px solid rgba(255,248,240,0.2);
  transition: background 240ms, color 240ms, border-color 240ms;
}
.cookie-btn--accept {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.cookie-btn--accept:hover { background: #A07D18; border-color: #A07D18; color: var(--bg); }
.cookie-btn--reject {
  background: transparent;
  color: rgba(255,248,240,0.8);
}
.cookie-btn--reject:hover { background: rgba(255,248,240,0.1); color: var(--bg); border-color: rgba(255,248,240,0.4); }
.cookie-btn--settings {
  background: transparent;
  color: rgba(255,248,240,0.6);
}
.cookie-btn--settings:hover { background: rgba(255,248,240,0.08); color: rgba(255,248,240,0.9); border-color: rgba(255,248,240,0.3); }
@media (min-width: 640px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}

/* ─── Botanical Decorations ─── */
.leaf-decor {
  position: absolute;
  pointer-events: none;
  color: var(--accent);
  opacity: 0.09;
  will-change: transform;
  z-index: 0;
}
.leaf-decor--1 { width: 80px; top: 10%; right: -10px; }
.leaf-decor--2 { width: 60px; bottom: 8%; left: -5px; }
.leaf-decor--3 { width: 100px; top: 5%; left: -20px; }
.leaf-decor--4 { width: 70px; bottom: 15%; right: -8px; }
.leaf-decor--hero { width: 120px; top: 20%; right: 5%; opacity: 0.06; }
.leaf-decor--hero-l { width: 90px; bottom: 10%; left: 3%; opacity: 0.06; }

.leaf-decor path,
.leaf-decor ellipse {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  transition: stroke-dashoffset 1.8s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-in .leaf-decor path,
.reveal.is-in .leaf-decor ellipse,
.hero .leaf-decor path,
.hero .leaf-decor ellipse {
  stroke-dashoffset: 0;
}

/* ─── Reveal System ─── */
.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) * 100ms);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
html.no-js .reveal { opacity: 1; transform: none; }

/* ─── Niche Animations ─── */
@keyframes leafDrift {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-12px) rotate(3deg); }
  50% { transform: translateY(-6px) rotate(-2deg); }
  75% { transform: translateY(-18px) rotate(4deg); }
}

@keyframes herbBreathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

@keyframes goldenLineDraw {
  from { width: 0; }
  to { width: 80px; }
}
.gold-rule--animated {
  width: 0;
}
.reveal.is-in .gold-rule--animated,
.hero-el.gold-rule--animated,
.gold-rule--animated.is-in {
  animation: goldenLineDraw 800ms cubic-bezier(.2,.7,.2,1) forwards;
  animation-delay: 400ms;
}
.hero-el.gold-rule--animated {
  animation: heroReveal 800ms cubic-bezier(.2,.7,.2,1) forwards,
             goldenLineDraw 800ms cubic-bezier(.2,.7,.2,1) forwards;
  animation-delay: calc(var(--i, 0) * 180ms), calc(var(--i, 0) * 180ms + 200ms);
}

@keyframes dropCapBloom {
  from { opacity: 0.3; transform: scale(0.88) rotate(-2deg); }
  to { opacity: 1; transform: scale(1) rotate(0deg); }
}
.reveal.is-in.drop-cap::first-letter {
  animation: dropCapBloom 700ms cubic-bezier(.2,.7,.2,1) forwards;
}

@keyframes shimmerSweep {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.shimmer-accent {
  background: linear-gradient(120deg, var(--accent) 0%, #C4981C 40%, var(--accent) 60%, #C4981C 80%, var(--accent) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.shimmer-accent:hover {
  animation: shimmerSweep 1.5s ease-in-out;
}

/* ─── Card hover (accent shadow) ─── */
.card-hover {
  transition: transform 360ms cubic-bezier(.2,.7,.2,1), box-shadow 360ms cubic-bezier(.2,.7,.2,1);
}
.card-hover:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px -8px rgba(139,105,20,0.18);
}

/* ─── Legal / Content Pages ─── */
.legal-page { padding: clamp(3rem, 6vw, 5rem) 0; }
.legal-page h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}
.legal-page .gold-rule { margin-bottom: 2.5rem; }
.legal-content {
  max-width: 740px;
}
.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.legal-content h3 {
  font-size: 1.15rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}
.legal-content p { font-size: 0.95rem; line-height: 1.75; }
.legal-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content li {
  font-size: 0.95rem;
  line-height: 1.75;
  list-style: disc;
  margin-bottom: 0.3rem;
}

/* ─── Thank You Page ─── */
.thankyou {
  text-align: center;
  padding: clamp(5rem, 12vh, 10rem) 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.thankyou h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}
.thankyou p {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 440px;
  margin: 0 auto 2rem;
}

/* ─── 404 Page ─── */
.page-404 {
  text-align: center;
  padding: clamp(5rem, 12vh, 10rem) 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-404 .big-404 {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(6rem, 15vw, 12rem);
  color: var(--surface);
  line-height: 1;
  margin-bottom: 1rem;
}
.page-404 h1 { font-size: clamp(1.5rem, 3vw, 2.5rem); margin-bottom: 1rem; }
.page-404 p { color: var(--ink-soft); margin-bottom: 2rem; }

/* ─── Sitemap Page ─── */
.sitemap-list {
  max-width: 600px;
}
.sitemap-list li { margin-bottom: 0.5rem; }
.sitemap-list a {
  font-size: 1rem;
  color: var(--ink);
  transition: color 240ms;
  display: inline-block;
  padding: 4px 0;
}
.sitemap-list a:hover { color: var(--accent); }
.sitemap-list ul { padding-left: 1.5rem; margin-top: 0.3rem; }
.sitemap-list ul li { list-style: disc; color: var(--ink-soft); font-size: 0.9rem; }

/* ─── About Page ─── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.team-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--line);
  transition: transform 360ms cubic-bezier(.2,.7,.2,1), box-shadow 360ms;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px -8px rgba(139,105,20,0.15);
}
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--surface-2);
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--accent);
}
.team-card h3 { font-size: 1.15rem; margin-bottom: 0.25rem; }
.team-role {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}
.team-bio {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--ink-soft);
  text-align: left;
}
@media (max-width: 768px) {
  .team-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

/* ─── Contact Page Layout ─── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}
@media (max-width: 768px) {
  .contact-layout { grid-template-columns: 1fr; }
}

/* ─── Print ─── */
@media print {
  .site-header, .nav-toggle, .drawer, .drawer-backdrop, .cookie-banner, .skip-link { display: none !important; }
  main { padding-top: 0 !important; }
  body { color: #000; background: #fff; font-size: 11pt; }
  a { color: #000; text-decoration: underline; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ─── Reduced Motion ─── */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-el { animation: none !important; opacity: 1 !important; transform: none !important; }
  .leaf-decor { display: none !important; }
  .ingredient-icon { animation: none !important; }
  .gold-rule--animated { animation: none !important; width: 80px !important; }
  .card-hover:hover, .price-card:hover, .team-card:hover { transform: none !important; }
  .btn-primary:hover, .btn-ghost:hover { transform: none !important; }
  .faq-body { transition: none !important; }
}

/* ─── Responsive ─── */
@media (max-width: 1280px) {
  .footer-grid { gap: 2rem; }
}
@media (max-width: 1024px) {
  :root { --header-h: 72px; }
}
@media (max-width: 768px) {
  .hero { padding: clamp(3rem, 8vh, 5rem) 0 clamp(2rem, 5vh, 3rem); }
  .hero h1 { font-size: clamp(2rem, 7vw, 3.5rem); }
}
@media (max-width: 640px) {
  body { font-size: 1rem; }
  .section { padding: clamp(3rem, 6vw, 4.5rem) 0; }
  .ritual-item { grid-template-columns: 80px 1fr; gap: 1rem; }
  .ritual-duration { font-size: 1.5rem; }
  .ingredient-item { grid-template-columns: 48px 1fr; gap: 1rem; }
  .ingredient-icon { width: 48px; height: 48px; }
  .ingredient-icon svg { width: 24px; height: 24px; }
  .process-list { padding-left: 40px; }
  .process-dot { left: -40px; width: 32px; height: 32px; font-size: 0.78rem; }
  .process-list::before { left: 15px; }
  .trust-strip { gap: 0.5rem 1rem; }
  .trust-pill { font-size: 0.72rem; padding: 6px 14px; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: clamp(2.2rem, 8vw, 3rem); }
  .drop-cap::first-letter { font-size: 3.5em; }
  .ritual-item { grid-template-columns: 1fr; gap: 0.35rem; }
  .editorial-grid { gap: 1.5rem; }
  .contact-row { gap: 10px; }
}
@media (max-width: 390px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .hero h1 { font-size: 2rem; }
  .price-card { padding: 1.25rem 1rem; }
}
@media (max-width: 360px) {
  .trust-pill { font-size: 0.68rem; padding: 5px 10px; }
  .stat-number { font-size: 1.75rem; }
}
