:root {
  --bg: #1A1714;
  --surface: #2A2520;
  --surface-2: #342F29;
  --ink: #E8DFD0;
  --ink-soft: #B8AFA3;
  --accent: #C4956A;
  --accent-2: #8B6F4E;
  --line: rgba(196, 149, 106, 0.25);
  --line-strong: rgba(196, 149, 106, 0.5);
  --header-h: 80px;
  --font-heading: Georgia, 'Times New Roman', serif;
  --font-body: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  interpolate-size: allow-keywords;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}
@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-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--accent); text-decoration: none; transition: color 240ms cubic-bezier(.4,0,.2,1); }
a:hover { color: var(--ink); }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-style: italic;
  color: var(--ink);
  line-height: 1.15;
}

.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--accent); color: var(--bg);
  padding: 8px 16px; border-radius: 4px;
  font-weight: 600; z-index: 10000;
}
.skip-link:focus { top: 12px; }

/* Container */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

.container--narrow {
  max-width: 720px;
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

/* ===================== HEADER ===================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1080;
  background: rgba(26, 23, 20, 0.88);
  backdrop-filter: blur(2px);
  transition: background 240ms ease, box-shadow 240ms ease, padding 240ms ease;
  padding: 0 clamp(16px, 4vw, 32px);
}
.site-header.scrolled {
  background: rgba(26, 23, 20, 0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,.18);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  max-width: 1080px;
  margin: 0 auto;
  transition: height 240ms ease;
}
.site-header.scrolled .header-inner {
  height: 60px;
}
.site-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.site-logo span { color: var(--accent); }

/* Nav desktop */
.nav-desktop {
  display: none;
  visibility: hidden;
}
@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
    visibility: visible;
    align-items: center;
    gap: 32px;
  }
  .nav-desktop a {
    color: var(--ink-soft);
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    transition: color 240ms cubic-bezier(.4,0,.2,1);
  }
  .nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--accent);
    transition: width 320ms cubic-bezier(.2,.7,.2,1);
  }
  .nav-desktop a:hover { color: var(--ink); }
  .nav-desktop a:hover::after { width: 100%; }
  .nav-desktop a.is-active { color: var(--accent); }
  .nav-desktop a.is-active::after { width: 100%; }
  .nav-desktop .nav-cta {
    background: var(--accent);
    color: var(--bg);
    padding: 10px 24px;
    border-radius: 2px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.8rem;
  }
  .nav-desktop .nav-cta::after { display: none; }
  .nav-desktop .nav-cta:hover {
    background: var(--ink);
    color: var(--bg);
    box-shadow: 0 4px 16px rgba(196, 149, 106, 0.2);
  }
}

/* Nav toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 48px; height: 48px;
  background: none; border: none;
  cursor: pointer;
  z-index: 1100;
  position: relative;
  -webkit-tap-highlight-color: transparent;
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }
@media (max-width: 1023px) {
  .nav-toggle {
    border: 1.5px solid var(--accent);
    border-radius: 4px;
    background: rgba(196, 149, 106, 0.06);
  }
}
.nav-toggle span {
  display: block;
  width: 26px; height: 3px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), opacity 240ms, background 240ms;
  margin: 3px 0;
}
.nav-toggle:hover span { background: var(--accent); }
.nav-toggle:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* 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;
}
.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%);
  visibility: hidden;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), visibility 0ms 320ms;
  padding: calc(var(--header-h) + 32px) 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.drawer.is-open {
  transform: translateX(0);
  visibility: visible;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), visibility 0ms 0ms;
}
.drawer a {
  color: var(--ink);
  font-size: 1.125rem;
  font-family: var(--font-heading);
  font-style: italic;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  display: block;
  transition: color 240ms, transform 240ms;
}
.drawer a:hover { color: var(--accent); transform: translateX(4px); }
.drawer a.is-active { color: var(--accent); }
.drawer .drawer-cta {
  margin-top: 24px;
  background: var(--accent);
  color: var(--bg);
  text-align: center;
  padding: 14px 24px;
  border-radius: 2px;
  border-bottom: none;
  font-weight: 600;
}
.drawer .drawer-cta:hover { background: var(--ink); color: var(--bg); transform: none; }

/* Drawer close button */

/* Scroll progress bar */
.scroll-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  width: 0;
  background: var(--accent);
  transition: none;
  z-index: 1;
  pointer-events: none;
}

/* ===================== MAIN ===================== */
main { padding-top: var(--header-h); }
section[id] { scroll-margin-top: calc(var(--header-h) + 16px); }

/* ===================== HERO ===================== */
.hero {
  padding: clamp(80px, 16vh, 160px) 0 clamp(60px, 12vh, 120px);
  position: relative;
  overflow: hidden;
}
.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero__title {
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.012em;
  margin-bottom: 24px;
  white-space: pre-line;
}
.hero__title .line {
  display: block;
  opacity: 0;
  transform: translateY(32px);
  animation: heroLineIn 600ms cubic-bezier(.16,1,.3,1) forwards;
}
.hero__title .line:nth-child(2) { animation-delay: 120ms; }
@keyframes heroLineIn {
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__title .line,
  .hero__rule,
  .hero__sub,
  .hero__cta { opacity: 1 !important; transform: none !important; animation: none !important; }
}
.hero__rule {
  width: 80px; height: 1px;
  background: var(--accent);
  margin: 32px 0;
  opacity: 0;
  animation: ruleIn 400ms 200ms cubic-bezier(.16,1,.3,1) forwards;
}
@keyframes ruleIn { to { opacity: 1; } }
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 500ms 280ms cubic-bezier(.16,1,.3,1) forwards;
}
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

.hero__cta {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  padding: 14px 36px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 240ms, color 240ms, transform 180ms;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 500ms 380ms cubic-bezier(.16,1,.3,1) forwards;
}
.hero__cta:hover { background: var(--ink); color: var(--bg); transform: translateY(-2px); }
.hero__cta:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* Hero image */
.hero__img {
  width: 100%;
  border-radius: 8px;
  margin-top: 48px;
}

/* Razor SVG in hero */
.hero__razor {
  position: absolute;
  right: clamp(20px, 8vw, 120px);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(60px, 12vw, 160px);
  height: auto;
  opacity: 0.12;
  pointer-events: none;
}
.hero__razor .razor-line {
  stroke: var(--accent);
  stroke-width: 1.5;
  fill: none;
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  transition: stroke-dashoffset 0ms;
}

/* ===================== SECTIONS ===================== */
section {
  padding: clamp(60px, 10vh, 120px) 0;
}

.section-rule {
  display: block;
  width: 60px; height: 1px;
  background: var(--accent);
  margin-bottom: 32px;
}

.section-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 12px;
}

.section-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 40px;
}

/* Manifesto */
.manifesto__text {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  line-height: 1.85;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto;
}
.manifesto__text::first-letter {
  font-family: var(--font-heading);
  font-size: 4.5em;
  float: left;
  line-height: 0.8;
  margin: 4px 16px 0 0;
  color: var(--accent);
  font-weight: 700;
  font-style: italic;
}
.manifesto__quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  color: var(--ink);
  margin-top: 48px;
  padding-left: 24px;
  border-left: 2px solid var(--accent);
}

/* Ustalik - 2 columns */
.ustalik__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px) {
  .ustalik__grid { grid-template-columns: 1fr 1fr; gap: 60px; }
}
.ustalik__col p {
  color: var(--ink-soft);
  margin-bottom: 20px;
  line-height: 1.8;
}
.ustalik__col p:first-of-type::first-letter {
  font-family: var(--font-heading);
  font-size: 2.5em;
  float: left;
  line-height: 0.85;
  margin: 2px 10px 0 0;
  color: var(--accent-2);
  font-weight: 700;
  font-style: italic;
}

/* Rituel - steps with vertical line */
.rituel__steps {
  position: relative;
  padding-left: 48px;
  max-width: 640px;
}
.rituel__steps::before {
  content: '';
  position: absolute;
  left: 16px; top: 0; bottom: 0;
  width: 1px;
  background: var(--line-strong);
}
.rituel__step {
  position: relative;
  margin-bottom: 48px;
}
.rituel__step:last-child { margin-bottom: 0; }
.rituel__num {
  position: absolute;
  left: -48px; top: 0;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-style: italic;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 50%;
  background: var(--bg);
}
.rituel__step h4 {
  font-size: 1.125rem;
  margin-bottom: 8px;
  font-style: italic;
}
.rituel__step p {
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Tarife */
.tarife__list {
  list-style: none;
  max-width: 640px;
}
.tarife__item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), padding-left 240ms cubic-bezier(.2,.7,.2,1);
}
.tarife__item:first-child { border-top: 1px solid var(--line); }
.tarife__item:hover { transform: translateX(6px); padding-left: 4px; }
.tarife__item:hover .tarife__name { color: var(--accent); }
.tarife__item:hover .tarife__price { color: var(--ink); }
.tarife__name {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.1rem;
  transition: color 240ms cubic-bezier(.2,.7,.2,1);
}
.tarife__price {
  font-family: 'Courier New', Courier, monospace;
  font-size: 1rem;
  color: var(--accent);
  white-space: nowrap;
  transition: color 240ms cubic-bezier(.2,.7,.2,1);
}
.tarife__includes {
  list-style: none;
  margin-top: 8px;
  padding-left: 0;
}
.tarife__includes li {
  font-size: 0.85rem;
  color: var(--ink-soft);
  padding: 2px 0;
}
.tarife__includes li::before {
  content: '—';
  margin-right: 8px;
  color: var(--accent-2);
}
.tarife__excludes li {
  color: var(--ink-soft);
  opacity: 0.6;
}
.tarife__excludes li::before {
  content: '×';
  color: var(--accent-2);
}
.tarife__disclaimer {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-top: 32px;
  font-style: italic;
}

/* Testimonials */
.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px) {
  .testimonials__grid { grid-template-columns: 1fr 1fr; gap: 48px; }
}
.testimonial {
  border-left: 2px solid var(--accent-2);
  padding-left: 24px;
  transition: border-color 240ms cubic-bezier(.2,.7,.2,1), transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms cubic-bezier(.2,.7,.2,1);
}
.testimonial:hover { border-color: var(--accent); transform: translateY(-6px); }
.testimonial:hover .testimonial__text { color: var(--ink); }
.testimonial__text {
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 16px;
  transition: color 240ms cubic-bezier(.2,.7,.2,1);
}
.testimonial__author {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--accent);
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  padding: 20px 0;
  cursor: pointer;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 240ms;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-body);
  font-style: normal;
  font-size: 1.25rem;
  color: var(--accent);
  transition: transform 320ms cubic-bezier(.4,0,.2,1);
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item summary:hover { color: var(--accent); }
.faq-item > .faq-answer {
  height: 0;
  padding: 0 0;
  overflow: hidden;
  transition: height 320ms cubic-bezier(.2,.7,.2,1),
              padding-block-end 320ms cubic-bezier(.2,.7,.2,1);
}
.faq-item[open] > .faq-answer {
  height: auto;
  padding-block-end: 24px;
}
.faq-answer p {
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 0.95rem;
}
@media (prefers-reduced-motion: reduce) {
  .faq-item > .faq-answer { transition: none; }
}

/* Randevu form */
.form-section {
  background: var(--surface);
  padding: clamp(40px, 8vw, 80px);
  border-radius: 4px;
  max-width: 640px;
}
.field {
  margin-bottom: 24px;
}
.field label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 16px;
  border-radius: 2px;
  transition: border-color 240ms;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--accent);
}
.field textarea { min-height: 120px; resize: vertical; }
.field select { cursor: pointer; }

.field-checkbox {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
}
.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);
}
.field-checkbox span {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.btn-submit {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  padding: 14px 40px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 240ms, color 240ms, transform 180ms;
  font-family: var(--font-body);
}
.btn-submit:hover { background: var(--ink); color: var(--bg); transform: translateY(-2px); }
.btn-submit:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* ===================== FOOTER ===================== */
.site-footer {
  background: var(--surface);
  padding: clamp(40px, 8vw, 80px) 0 32px;
  border-top: 1px solid var(--line);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px) {
  .footer-inner { grid-template-columns: 2fr 1fr 1fr; gap: 60px; }
}
.footer-brand {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.footer-brand span { color: var(--accent); }
.footer-desc {
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 320px;
}
.footer-col h5 {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  font-style: normal;
}
.footer-col a {
  display: block;
  color: var(--ink-soft);
  font-size: 0.9rem;
  padding: 4px 0;
  transition: color 240ms;
}
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--ink-soft);
}
.footer-bottom a { color: var(--ink-soft); }
.footer-bottom a:hover { color: var(--accent); }

/* ===================== REVEAL ===================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms cubic-bezier(.2,.7,.2,1), transform 600ms cubic-bezier(.2,.7,.2,1);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal[style*="--i"] {
  transition-delay: calc(var(--i) * 80ms);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
html.no-js .reveal { opacity: 1; transform: none; }
html.no-js .hero__title .line,
html.no-js .hero__rule,
html.no-js .hero__sub,
html.no-js .hero__cta { opacity: 1; transform: none; animation: none; }
.hero--loaded .hero__title .line,
.hero--loaded .hero__rule,
.hero--loaded .hero__sub,
.hero--loaded .hero__cta { opacity: 1; transform: none; }

/* ===================== COUNTER UP ===================== */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 32px;
  text-align: center;
  padding: 48px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat__number {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.stat__label {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ===================== NICHE ANIMATIONS ===================== */
/* Steam/smoke rising */
@keyframes steamRise {
  0% { transform: translateY(0) scaleX(1); opacity: 0.6; }
  50% { transform: translateY(-20px) scaleX(1.2); opacity: 0.3; }
  100% { transform: translateY(-40px) scaleX(0.8); opacity: 0; }
}
.steam-particle {
  position: absolute;
  width: 3px; height: 3px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0;
  animation: steamRise 3s infinite;
  pointer-events: none;
}
.steam-particle:nth-child(2) { animation-delay: 1s; left: 8px; }
.steam-particle:nth-child(3) { animation-delay: 2s; left: 16px; }
@media (prefers-reduced-motion: reduce) {
  .steam-particle { animation: none; display: none; }
}

/* Gold rule extend on reveal */
@keyframes ruleExtend {
  from { width: 0; }
  to { width: 60px; }
}
.reveal.is-in .section-rule {
  animation: ruleExtend 600ms cubic-bezier(.2,.7,.2,1) forwards;
}
@media (prefers-reduced-motion: reduce) {
  .reveal.is-in .section-rule { animation: none; width: 60px; }
}

/* Razor blade glint on CTA */
@keyframes razorGlint {
  0% { left: -40%; opacity: 0; }
  50% { opacity: 0.6; }
  100% { left: 140%; opacity: 0; }
}
.hero__cta { position: relative; overflow: hidden; }
.hero__cta::before {
  content: '';
  position: absolute;
  top: 0; left: -40%;
  width: 30%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: skewX(-15deg);
  pointer-events: none;
}
.hero__cta:hover::before {
  animation: razorGlint 600ms ease forwards;
}
@media (prefers-reduced-motion: reduce) {
  .hero__cta::before { display: none; }
}

/* Drop cap breathing */
@keyframes dropCapBreath {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}
.manifesto__text::first-letter {
  animation: dropCapBreath 8s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .manifesto__text::first-letter { animation: none; }
}

/* ===================== 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);
  border-radius: 6px;
  padding: 24px;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 360ms cubic-bezier(.2,.7,.2,1), opacity 300ms;
  z-index: 9999;
  box-shadow: 0 12px 48px rgba(0,0,0,0.5), 0 0 0 1px rgba(196,149,106,0.08);
}
.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}
@media (min-width: 768px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; bottom: 24px; }
}
@media (max-width: 480px) {
  .cookie-banner { left: 8px; right: 8px; bottom: 8px; padding: 18px 16px; }
}
.cookie-banner h4 {
  font-size: 1rem;
  margin-bottom: 10px;
  font-style: normal;
}
.cookie-banner p {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 16px;
}
.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-banner__actions button {
  padding: 12px 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1px solid var(--line);
  border-radius: 2px;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 240ms cubic-bezier(.4,0,.2,1), color 240ms, border-color 240ms, transform 180ms;
  min-height: 44px;
  min-width: 44px;
}
.cookie-banner__actions button:focus-visible {
  outline: 2px solid var(--accent); outline-offset: 2px;
}
.cookie-banner__actions .btn-accept {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.cookie-banner__actions .btn-accept:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); transform: translateY(-1px); }
.cookie-banner__actions .btn-reject {
  background: transparent;
  color: var(--ink-soft);
  border-color: var(--line);
}
.cookie-banner__actions .btn-reject:hover { background: var(--surface-2); color: var(--ink); border-color: var(--accent); }
.cookie-banner__actions .btn-settings {
  background: transparent;
  color: var(--ink-soft);
  border-color: var(--line);
}
.cookie-banner__actions .btn-settings:hover { background: var(--surface-2); color: var(--ink); }

/* ===================== CONTACT PAGE ===================== */
.contact-channels {
  display: grid;
  gap: 0;
}
.contact-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), background 240ms cubic-bezier(.2,.7,.2,1);
}
.contact-row:hover { transform: translateX(4px); }
.contact-row svg {
  width: 20px; height: 20px;
  color: var(--ink-soft);
  transition: color 240ms;
  margin-top: 2px;
}
.contact-row:hover svg { color: var(--accent); }
.contact-row__label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 4px;
}
.contact-row__value {
  color: var(--ink);
  font-size: 1rem;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.contact-row__value a { color: var(--ink); }
.contact-row__value a:hover { color: var(--accent); }

/* ===================== PAGE CONTENT ===================== */
.page-header {
  padding: clamp(60px, 10vh, 100px) 0 40px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 48px;
}
.page-header h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.page-content h2 {
  font-size: 1.5rem;
  margin: 48px 0 16px;
}
.page-content h3 {
  font-size: 1.2rem;
  margin: 32px 0 12px;
}
.page-content p {
  color: var(--ink-soft);
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 72ch;
}
.page-content ul, .page-content ol {
  color: var(--ink-soft);
  margin: 12px 0 24px 20px;
  line-height: 1.8;
}
.page-content a { color: var(--accent); text-decoration: underline; }

/* Table scroll wrapper */
.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 {
  width: 100%;
  border-collapse: collapse;
}
th, td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}
th {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
td { color: var(--ink-soft); }

/* ===================== THANK YOU ===================== */
.thankyou {
  text-align: center;
  padding: clamp(100px, 20vh, 200px) 0;
}
.thankyou h1 { margin-bottom: 16px; font-size: clamp(2rem, 4vw, 3rem); }
.thankyou p { color: var(--ink-soft); margin-bottom: 32px; }

/* ===================== 404 ===================== */
.page-404 {
  text-align: center;
  padding: clamp(100px, 20vh, 200px) 0;
}
.page-404 h1 {
  font-size: clamp(5rem, 15vw, 10rem);
  color: var(--accent);
  margin-bottom: 16px;
}
.page-404 p { color: var(--ink-soft); margin-bottom: 32px; }

/* ===================== PROCESS STEPS ===================== */
.process-timeline {
  position: relative;
  padding-left: 48px;
  max-width: 720px;
}
.process-timeline::before {
  content: '';
  position: absolute;
  left: 16px; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--accent), var(--line));
}
.process-step {
  position: relative;
  margin-bottom: 48px;
}
.process-step:last-child { margin-bottom: 0; }
.process-step__marker {
  position: absolute;
  left: -48px; top: 2px;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-style: italic;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 50%;
  background: var(--bg);
}
.process-step__time {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 6px;
}
.process-step h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.process-step p {
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===================== TEAM ===================== */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 768px) {
  .team-grid { grid-template-columns: 1fr 1fr; gap: 56px; }
}
.team-member {
  border-left: 2px solid var(--accent-2);
  padding-left: 24px;
  transition: border-color 240ms cubic-bezier(.2,.7,.2,1), transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms cubic-bezier(.2,.7,.2,1);
}
.team-member:hover { border-color: var(--accent); transform: translateY(-6px); }
.team-member h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.team-member .team-role {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.team-member p {
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 0.9rem;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 640px) {
  .hero__title { font-size: clamp(2rem, 8vw, 2.75rem); }
  .stats { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .form-section { padding: 24px; }
  .tarife__item { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (max-width: 480px) {
  .hero { padding: 60px 0 48px; }
  .testimonials__grid { gap: 32px; }
  section { padding: clamp(40px, 8vh, 80px) 0; }
}

/* ===================== TABLE SCROLL HINT ===================== */
@media (max-width: 640px) {
  .table-scroll { position: relative; }
  .table-scroll::after {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 32px;
    background: linear-gradient(to right, transparent, var(--bg));
    pointer-events: none;
    opacity: 1;
    transition: opacity 300ms;
    border-radius: 0 6px 6px 0;
  }
  .table-scroll.scrolled-end::after { opacity: 0; }
}

/* ===================== ENHANCED HOVER / MICRO-EFFECTS ===================== */
.hero__img {
  transition: box-shadow 500ms cubic-bezier(.4,0,.2,1);
}
.hero__img:hover {
  box-shadow: 0 20px 60px -12px rgba(196, 149, 106, 0.15);
}

.rituel__step { transition: transform 240ms cubic-bezier(.2,.7,.2,1); }
.rituel__step:hover { transform: translateX(4px); }
.rituel__num { transition: background 240ms cubic-bezier(.2,.7,.2,1), color 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms cubic-bezier(.2,.7,.2,1); }
.rituel__step:hover .rituel__num {
  background: var(--accent);
  color: var(--bg);
  box-shadow: 0 0 16px rgba(196, 149, 106, 0.25);
}

.process-step { transition: transform 240ms cubic-bezier(.2,.7,.2,1); }
.process-step:hover { transform: translateX(4px); }
.process-step__marker { transition: background 240ms cubic-bezier(.2,.7,.2,1), color 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms cubic-bezier(.2,.7,.2,1); }
.process-step:hover .process-step__marker {
  background: var(--accent);
  color: var(--bg);
  box-shadow: 0 0 16px rgba(196, 149, 106, 0.25);
}

.stat { transition: transform 240ms cubic-bezier(.2,.7,.2,1); }
.stat:hover { transform: translateY(-4px); }
.stat:hover .stat__number {
  text-shadow: 0 0 24px rgba(196, 149, 106, 0.3);
}
.stat__number { transition: text-shadow 400ms; }

.faq-item summary { transition: color 240ms, transform 200ms; }
.faq-item summary:hover { transform: translateX(4px); }

.contact-row { transition: transform 240ms cubic-bezier(.2,.7,.2,1), background 240ms cubic-bezier(.2,.7,.2,1); border-radius: 4px; }

img[loading="lazy"] {
  transition: box-shadow 500ms cubic-bezier(.4,0,.2,1), transform 500ms cubic-bezier(.4,0,.2,1);
}
img[loading="lazy"]:hover {
  box-shadow: 0 16px 48px -8px rgba(196, 149, 106, 0.12);
}

/* ===================== WARM GLOW - BARBER THEME ===================== */
@keyframes warmPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(196, 149, 106, 0); }
  50% { box-shadow: 0 0 20px 2px rgba(196, 149, 106, 0.08); }
}
.section-rule {
  transition: width 600ms cubic-bezier(.2,.7,.2,1), box-shadow 600ms;
}
.reveal.is-in .section-rule {
  box-shadow: 0 0 12px rgba(196, 149, 106, 0.2);
}

@keyframes goldShimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.hero__cta:hover {
  box-shadow: 0 4px 20px rgba(196, 149, 106, 0.25);
}
.btn-submit:hover {
  box-shadow: 0 4px 20px rgba(196, 149, 106, 0.25);
}
.drawer .drawer-cta:hover {
  box-shadow: 0 4px 16px rgba(196, 149, 106, 0.2);
}

/* Stagger reveal improvements */
.reveal { transition-timing-function: cubic-bezier(.16, 1, .3, 1); }
.reveal[style*="--i:1"] { transition-delay: 100ms; }
.reveal[style*="--i:2"] { transition-delay: 200ms; }
.reveal[style*="--i:3"] { transition-delay: 300ms; }
.reveal[style*="--i:4"] { transition-delay: 400ms; }
.reveal[style*="--i:5"] { transition-delay: 500ms; }
.reveal[style*="--i:6"] { transition-delay: 600ms; }

/* ===================== REDUCED MOTION ===================== */
@media (prefers-reduced-motion: reduce) {
  .tarife__item,
  .testimonial,
  .team-member,
  .rituel__step,
  .process-step,
  .stat,
  .contact-row,
  .faq-item summary,
  img[loading="lazy"],
  .hero__img {
    transition: none !important;
  }
  .tarife__item:hover,
  .testimonial:hover,
  .team-member:hover,
  .rituel__step:hover,
  .process-step:hover,
  .stat:hover,
  .faq-item summary:hover {
    transform: none !important;
  }
}

/* ===================== BARBER WARM ATMOSPHERE ===================== */
@keyframes ctaWarmBreath {
  0%, 100% { box-shadow: 0 2px 12px rgba(196, 149, 106, 0.1); }
  50% { box-shadow: 0 4px 24px rgba(196, 149, 106, 0.22); }
}
.hero__cta:not(:hover) {
  animation: fadeUp 500ms 380ms cubic-bezier(.16,1,.3,1) forwards, ctaWarmBreath 3.5s 1s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .hero__cta:not(:hover) { animation: none !important; box-shadow: 0 2px 12px rgba(196, 149, 106, 0.12); }
}

.testimonial:hover {
  box-shadow: 0 12px 32px -8px rgba(196, 149, 106, 0.18);
}

.team-member:hover {
  box-shadow: 0 12px 32px -8px rgba(196, 149, 106, 0.18);
}

.rituel__step:hover {
  background: linear-gradient(90deg, rgba(196, 149, 106, 0.03) 0%, transparent 60%);
  border-radius: 4px;
  padding-left: 8px;
  margin-left: -8px;
}

.process-step:hover {
  background: linear-gradient(90deg, rgba(196, 149, 106, 0.03) 0%, transparent 60%);
  border-radius: 4px;
  padding-left: 8px;
  margin-left: -8px;
}

.hero__img {
  box-shadow: 0 12px 48px -12px rgba(196, 149, 106, 0.08);
}

.nav-desktop .nav-cta {
  transition: background 240ms, color 240ms, box-shadow 280ms, transform 180ms;
}
.nav-desktop .nav-cta:hover {
  transform: translateY(-1px);
}

.drawer .drawer-cta {
  transition: background 240ms, color 240ms, box-shadow 280ms, transform 180ms;
}

.btn-submit {
  transition: background 240ms, color 240ms, transform 180ms, box-shadow 280ms;
}

.contact-row:hover {
  background: linear-gradient(90deg, rgba(196, 149, 106, 0.03) 0%, transparent 60%);
  padding-left: 8px;
}

.tarife__item:hover {
  background: linear-gradient(90deg, rgba(196, 149, 106, 0.02) 0%, transparent 50%);
}


/* Print */
@media print {
  .site-header, .drawer, .drawer-backdrop, .cookie-banner, .nav-toggle { display: none; }
  main { padding-top: 0; }
  body { color: #000; background: #fff; }
}
