:root {
  --bg: #1A1A1A;
  --surface: #2C2C2C;
  --surface-2: #3A3A3A;
  --ink: #F5F0E8;
  --ink-soft: rgba(245,240,232,0.55);
  --accent: #C9A84C;
  --accent-2: #8B6F3A;
  --line: rgba(201,168,76,0.18);
  --line-strong: rgba(201,168,76,0.38);
  --header-h: 80px;
  --container: 1400px;
  --radius: 4px;
  --font-display: Georgia, 'Times New Roman', 'Palatino Linotype', 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; }
@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;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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; }

button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--accent); outline-offset: 2px;
}

ul, ol { list-style: none; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }

/* ── Skip Link ── */
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--accent); color: var(--bg);
  padding: 8px 18px; border-radius: var(--radius);
  font-weight: 700; font-size: 14px; z-index: 10000;
  transition: top 200ms;
}
.skip-link:focus { top: 12px; }

/* ── Layout ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 36px;
  background: var(--accent); color: var(--bg);
  font-family: var(--font-body); font-weight: 700; font-size: 14px;
  letter-spacing: 0.08em; text-transform: uppercase;
  border: 2px solid var(--accent); border-radius: var(--radius);
  cursor: pointer; transition: all 280ms cubic-bezier(.2,.7,.2,1);
  text-decoration: none; line-height: 1.2;
  box-shadow: 0 2px 8px rgba(201,168,76,0.15);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--ink); color: var(--bg); border-color: var(--ink);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.25);
}
.btn-primary--lg { padding: 18px 48px; font-size: 15px; }

.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px;
  background: transparent; color: var(--ink);
  font-family: var(--font-body); font-weight: 700; font-size: 14px;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: 1px solid var(--line-strong); border-radius: var(--radius);
  cursor: pointer; transition: all 240ms cubic-bezier(.4,0,.2,1);
  text-decoration: none; line-height: 1.2;
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface); color: var(--ink); border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.12);
}

/* ── Header ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1080;
  background: rgba(26,26,26,0.86);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  transition: background 240ms ease, box-shadow 240ms ease, padding 240ms ease;
}
.site-header.scrolled {
  background: rgba(26,26,26,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);
  transition: height 240ms ease;
}
.scrolled .header__inner { height: 64px; }

.scroll-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--accent);
  width: 0;
  z-index: 1;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) { .scroll-progress { display: none; } }

.header__logo { text-decoration: none; }
.logo-text {
  font-family: var(--font-display); font-weight: 700; font-style: italic;
  font-size: clamp(24px, 3vw, 32px); color: var(--ink);
  letter-spacing: -0.02em;
}
.logo-accent { color: var(--accent); }

/* ── Nav Desktop ── */
.nav-desktop { display: none; align-items: center; gap: 32px; }
@media (min-width: 1024px) { .nav-desktop { display: flex; } }

.nav__link {
  position: relative;
  font-family: var(--font-body); font-size: 13px; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-soft); text-decoration: none;
  padding: 4px 0;
  transition: color 240ms cubic-bezier(.4,0,.2,1);
}
.nav__link::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px; background: var(--accent);
  transition: width 320ms cubic-bezier(.2,.7,.2,1);
}
.nav__link:hover, .nav__link.is-active { color: var(--ink); }
.nav__link:hover::after, .nav__link.is-active::after { width: 100%; }

.nav-desktop .nav-cta { margin-left: 8px; padding: 10px 24px; font-size: 12px; }
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }

/* ── Nav Toggle (Hamburger) ── */
.nav-toggle {
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  gap: 6px; width: 48px; height: 48px;
  background: rgba(201,168,76,0.14); border: 1.5px solid rgba(201,168,76,0.35);
  border-radius: var(--radius); cursor: pointer;
  z-index: 1100; position: relative;
  padding: 0;
  transition: background 240ms, border-color 240ms, box-shadow 240ms;
}
.nav-toggle:hover, .nav-toggle:active {
  background: rgba(201,168,76,0.24);
  border-color: var(--accent);
  box-shadow: 0 0 12px rgba(201,168,76,0.2);
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }

.nav-toggle span {
  display: block; width: 24px; height: 2.5px;
  background: var(--ink); border-radius: 2px;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  transform-origin: center;
  box-shadow: 0 1px 2px rgba(0,0,0,0.25);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ── Mobile 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);
  display: flex; flex-direction: column;
  padding: calc(var(--header-h) + 32px) 32px 32px;
  gap: 4px;
}
.drawer.is-open { transform: translateX(0); }

.drawer__link {
  display: block; padding: 14px 0;
  font-family: var(--font-display); font-weight: 700; font-style: italic;
  font-size: 22px; color: var(--ink-soft);
  text-decoration: none; border-bottom: 1px solid var(--line);
  transition: color 240ms, padding-left 240ms;
}
.drawer__link:hover, .drawer__link.is-active { color: var(--accent); padding-left: 8px; }

.drawer__cta {
  margin-top: 24px;
  background: var(--accent); color: var(--bg) !important;
  text-align: center; border-radius: var(--radius);
  padding: 16px !important; border: none !important;
  font-family: var(--font-body) !important; font-weight: 700 !important;
  font-size: 14px !important; letter-spacing: 0.08em; text-transform: uppercase;
  font-style: normal !important;
}
.drawer__cta:hover { background: var(--ink); color: var(--bg) !important; }


.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; }

/* ── Main ── */
main { padding-top: var(--header-h); }
section[id] { scroll-margin-top: calc(var(--header-h) + 24px); }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero__media {
  position: absolute; inset: 0;
  animation: curl-reveal 1.2s cubic-bezier(.2,.7,.2,1) both;
  clip-path: none;
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.68) 0%, rgba(26,26,26,0.48) 50%, rgba(26,26,26,0.62) 100%);
}

@keyframes curl-reveal {
  0% {
    clip-path: circle(0% at 50% 50%);
    transform: scale(1.3) rotate(180deg);
    opacity: 0;
  }
  8% { opacity: 1; }
  35% {
    clip-path: circle(20% at 48% 53%);
    transform: scale(1.18) rotate(100deg);
  }
  65% {
    clip-path: circle(45% at 49% 51%);
    transform: scale(1.08) rotate(35deg);
  }
  100% {
    clip-path: none;
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

.hero__content {
  position: relative; z-index: 2;
  padding-top: clamp(80px, 14vh, 160px);
  padding-bottom: clamp(60px, 10vh, 120px);
}
.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-body); font-weight: 400;
  font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  opacity: 0; animation: fadeUp 600ms 0.3s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-style: italic;
  color: var(--ink);
  margin-bottom: 24px;
  line-height: 1.05;
  max-width: min(20ch, 90%);
  opacity: 0; animation: fadeUp 700ms 0.5s cubic-bezier(.2,.7,.2,1) forwards;
  text-shadow: 0 2px 24px rgba(0,0,0,0.3);
}
.hero__sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--ink-soft); max-width: 520px;
  margin-bottom: 40px;
  opacity: 0; animation: fadeUp 600ms 0.75s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero__cta-wrap {
  margin-bottom: 32px;
  opacity: 0; animation: fadeUp 500ms 0.95s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero__trust {
  display: flex; flex-wrap: wrap; gap: 12px;
  opacity: 0; animation: fadeUp 500ms 1.1s cubic-bezier(.2,.7,.2,1) forwards;
}
.trust-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--line);
  border-radius: 20px;
  font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--accent);
}
.trust-badge::before {
  content: ''; width: 5px; height: 5px;
  background: var(--accent); border-radius: 50%;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}

.hero__curl-deco {
  position: absolute; right: clamp(16px,6vw,80px); top: 15%;
  width: 60px; height: auto;
  opacity: 0; animation: fadeUp 800ms 1.4s cubic-bezier(.2,.7,.2,1) forwards;
  pointer-events: none;
}
@media (max-width: 768px) { .hero__curl-deco { display: none; } }

/* ── Stats Strip ── */
.stats {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(32px, 5vw, 56px) 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 3vw, 48px);
  text-align: center;
}
.stat__number {
  font-family: var(--font-display); font-weight: 700; font-style: italic;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--accent);
  line-height: 1.1;
}
.stat__label {
  font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-soft); margin-top: 6px;
}
@media (max-width: 640px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
}

/* ── Gold Divider ── */
.gold-divider {
  display: flex; align-items: center; justify-content: center;
  padding: clamp(24px, 4vw, 48px) 0;
}
.gold-divider svg { width: 120px; height: 24px; flex-shrink: 0; }

/* ── Section Common ── */
.section {
  padding: clamp(48px, 8vw, 96px) 0;
}
.section--surface { background: var(--surface); }
.section--dark { background: var(--bg); }
.section--accent-band { background: var(--accent); color: var(--bg); }

.section-eyebrow {
  font-family: var(--font-body); font-size: 11px; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px;
}
.section--accent-band .section-eyebrow { color: var(--bg); opacity: 0.6; }

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-style: italic; color: var(--ink);
  margin-bottom: 16px; line-height: 1.1;
}
.section--accent-band .section-title { color: var(--bg); }

.section-title .brush-line {
  display: block; width: 0; height: 2px;
  background: var(--accent); margin-top: 16px;
  transition: width 800ms cubic-bezier(.2,.7,.2,1);
}
.section--accent-band .section-title .brush-line { background: var(--bg); }
.section-title.is-in .brush-line,
.section-title.is-in .brush-line { width: 80px; }

.section-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--ink-soft); max-width: 560px;
  margin-bottom: clamp(32px, 5vw, 56px);
}

/* ── Gallery (Lookbook) ── */
.gallery__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(12px, 2vw, 24px);
}
.gallery__item {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
}
.gallery__item:nth-child(odd) { margin-top: 0; }
.gallery__item:nth-child(even) { margin-top: clamp(24px, 4vw, 64px); }
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.gallery__item:hover img { transform: scale(1.04); }

.gallery__caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: clamp(12px, 2vw, 24px);
  background: linear-gradient(to top, rgba(26,26,26,0.8), transparent);
  opacity: 0; transform: translateY(8px);
  transition: opacity 400ms, transform 400ms cubic-bezier(.2,.7,.2,1);
}
.gallery__item:hover .gallery__caption { opacity: 1; transform: none; }
.gallery__caption span {
  font-family: var(--font-display); font-style: italic;
  font-size: 15px; color: var(--ink);
}

@media (max-width: 640px) {
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item:nth-child(even) { margin-top: 0; }
}

/* ── Stylists ── */
.stylists__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 3vw, 32px);
}
@media (min-width: 1024px) { .stylists__grid { grid-template-columns: repeat(4, 1fr); } }

.stylist-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms;
}
.stylist-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -12px rgba(201,168,76,0.15);
}

.stylist-card__img {
  aspect-ratio: 3/4; overflow: hidden;
}
.stylist-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.stylist-card:hover .stylist-card__img img { transform: scale(1.04); }

.stylist-card__info {
  padding: clamp(16px, 2vw, 24px);
  border-top: 2px solid var(--accent);
}
.stylist-card__name {
  font-family: var(--font-display); font-weight: 700; font-style: italic;
  font-size: 18px; color: var(--ink); margin-bottom: 4px;
}
.stylist-card__role {
  font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--accent);
}

@media (max-width: 640px) {
  .stylists__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

/* ── Atmosphere (Scroll Strip) ── */
.atmosfer__strip {
  display: flex; gap: clamp(12px, 2vw, 20px);
  overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 clamp(16px, 4vw, 32px) 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-2) var(--surface);
}
.atmosfer__strip::-webkit-scrollbar { height: 4px; }
.atmosfer__strip::-webkit-scrollbar-track { background: var(--surface); }
.atmosfer__strip::-webkit-scrollbar-thumb { background: var(--accent-2); border-radius: 2px; }

.atmosfer__item {
  flex: 0 0 auto;
  width: clamp(280px, 35vw, 420px);
  scroll-snap-align: start;
  border-radius: var(--radius); overflow: hidden;
}
.atmosfer__item img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.atmosfer__item:hover img { transform: scale(1.04); }

/* ── Process Timeline ── */
.process__timeline {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding-left: 48px;
}
.process__timeline::before {
  content: ''; position: absolute;
  left: 16px; top: 0; bottom: 0;
  width: 1px; background: var(--line-strong);
}

.process__step {
  position: relative;
  padding-bottom: clamp(32px, 4vw, 48px);
}
.process__step:last-child { padding-bottom: 0; }

.process__dot {
  position: absolute; left: -40px; top: 4px;
  width: 18px; height: 18px;
  background: var(--bg); border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.process__dot::after {
  content: ''; width: 6px; height: 6px;
  background: var(--accent); border-radius: 50%;
}

.process__time {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 6px;
}
.process__step h3 {
  font-family: var(--font-display); font-weight: 700; font-style: italic;
  font-size: clamp(18px, 2.5vw, 22px); color: var(--ink);
  margin-bottom: 8px; line-height: 1.2;
}
.process__step p {
  font-size: 15px; color: var(--ink-soft); line-height: 1.7;
}

/* ── Pricing ── */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
@media (min-width: 1024px) { .pricing__grid { grid-template-columns: repeat(4, 1fr); } }

.price-card {
  position: relative; overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px) clamp(20px, 2.5vw, 28px);
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms, border-color 280ms;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px -16px rgba(201,168,76,0.12);
  border-color: var(--accent);
}

.price-card::before {
  content: '';
  position: absolute; top: 0; left: -100%; bottom: 0;
  width: 100%;
  background: linear-gradient(105deg, transparent 40%, rgba(201,168,76,0.07) 50%, transparent 60%);
  transition: left 700ms cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
.price-card:hover::before { left: 100%; }

.price-card__name {
  font-family: var(--font-display); font-weight: 700; font-style: italic;
  font-size: clamp(18px, 2vw, 22px); color: var(--ink);
  margin-bottom: 16px; line-height: 1.2;
}
.price-card__price {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(28px, 3.5vw, 38px); color: var(--accent);
  margin-bottom: 24px; line-height: 1;
}
.price-card__price small {
  font-size: 14px; font-weight: 400; color: var(--ink-soft);
  font-family: var(--font-body); display: block; margin-top: 4px;
}

.price-card__list { margin-bottom: 16px; }
.price-card__list-title {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 8px;
}
.price-card__list ul { display: flex; flex-direction: column; gap: 6px; }
.price-card__list li {
  font-size: 14px; color: var(--ink-soft); line-height: 1.5;
  padding-left: 16px; position: relative;
}
.price-card__list li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 5px; height: 1px; background: var(--accent);
}
.price-card__list--excluded li { color: rgba(245,240,232,0.35); }
.price-card__list--excluded li::before { background: rgba(245,240,232,0.25); }

.pricing__disclaimer {
  margin-top: clamp(24px, 3vw, 36px);
  font-size: 12px; color: var(--ink-soft);
  text-align: center; font-style: italic;
}

@media (max-width: 640px) {
  .pricing__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

/* ── Testimonials ── */
.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 3vw, 32px);
}
.testimonial:nth-child(3) { grid-column: 1 / -1; }

.testimonial {
  background: var(--surface);
  border-left: 3px solid var(--accent);
  padding: clamp(24px, 3vw, 36px);
  border-radius: 0 var(--radius) var(--radius) 0;
  position: relative;
}
.testimonial__quote-mark {
  position: absolute; top: 16px; right: 20px;
  font-family: var(--font-display); font-size: 72px;
  color: var(--accent); opacity: 0.12; line-height: 1;
  pointer-events: none;
}
.testimonial__text {
  font-size: 15px; color: var(--ink); line-height: 1.8;
  margin-bottom: 16px; font-style: italic;
}
.testimonial__author {
  font-size: 13px; color: var(--accent);
  letter-spacing: 0.04em;
}

@media (max-width: 768px) {
  .testimonials__grid { grid-template-columns: 1fr; }
  .testimonial:nth-child(3) { grid-column: auto; }
}

/* ── FAQ Accordion ── */
.faq__list {
  max-width: 760px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: clamp(16px, 2.5vw, 22px) 0;
  cursor: pointer;
  font-family: var(--font-display); font-weight: 700; font-style: italic;
  font-size: clamp(16px, 2vw, 19px); color: var(--ink);
  list-style: none; line-height: 1.3;
  transition: color 240ms;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent); }

.faq-item summary::after {
  content: '+';
  font-family: var(--font-body); font-weight: 300;
  font-size: 28px; color: var(--accent);
  flex-shrink: 0; width: 28px; text-align: center;
  transition: transform 360ms cubic-bezier(.16,.73,.3,1), color 240ms;
  line-height: 1; font-style: normal;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
  color: var(--ink);
}

.faq-item > .faq-answer {
  height: 0;
  padding: 0 clamp(18px, 3vw, 28px);
  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-answer {
  height: auto;
  padding-block-end: 26px;
}

.faq-answer p {
  font-size: 15px; color: var(--ink-soft); line-height: 1.8;
}

@media (prefers-reduced-motion: reduce) {
  .faq-item > .faq-answer { transition: none; }
}

/* ── Appointment ── */
.randevu { background: var(--bg); }
.randevu__inner { max-width: 680px; margin: 0 auto; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-grid .field--full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-soft);
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font-family: var(--font-body); font-size: 15px;
  transition: border-color 240ms, box-shadow 240ms;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
  outline: none;
}
.field textarea { resize: vertical; min-height: 100px; }
.field select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%23C9A84C' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.field--checkbox {
  flex-direction: row; align-items: flex-start; gap: 10px;
}
.field input[type="checkbox"] {
  appearance: auto; -webkit-appearance: auto;
  width: 22px; height: 22px;
  min-width: 22px; min-height: 22px;
  padding: 0; border: 0; margin: 1px 0 0;
  accent-color: var(--accent);
  cursor: pointer;
}
.field--checkbox label {
  font-size: 13px; text-transform: none; letter-spacing: 0;
  color: var(--ink-soft); line-height: 1.5;
  cursor: pointer;
}

.honeypot { position: absolute; left: -9999px; opacity: 0; }

.form-submit {
  margin-top: 24px;
  display: flex; justify-content: stretch;
}
.form-submit .btn-primary {
  width: 100%;
}

/* ── Footer ── */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: clamp(48px, 6vw, 80px) 0 clamp(36px, 4vw, 56px);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: clamp(24px, 4vw, 48px);
  padding-bottom: clamp(36px, 5vw, 56px);
}
.footer__brand .logo-text { margin-bottom: 16px; display: block; }
.footer__brand p { font-size: 14px; color: var(--ink-soft); line-height: 1.7; max-width: 320px; }
.footer__brand .footer__est {
  margin-top: 12px;
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent-2);
}

.footer__heading {
  font-family: var(--font-body); font-weight: 700;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: 14px; color: var(--ink-soft);
  transition: color 240ms, padding-left 240ms;
}
.footer__links a:hover { color: var(--ink); padding-left: 4px; }

.footer__contact-item {
  display: flex; align-items: start; gap: 10px;
  font-size: 14px; color: var(--ink-soft); margin-bottom: 10px;
  word-break: normal; overflow-wrap: break-word; hyphens: auto;
}
.footer__contact-item svg { flex-shrink: 0; width: 16px; height: 16px; color: var(--accent); margin-top: 3px; }

.footer__bottom {
  border-top: 1px solid var(--line);
  padding: 20px 0;
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 12px;
  font-size: 12px; color: rgba(245,240,232,0.35);
}
.footer__legal { display: flex; flex-wrap: wrap; gap: 16px; }
.footer__legal a { color: rgba(245,240,232,0.35); }
.footer__legal a:hover { color: var(--accent); }

@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ── 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: 8px;
  padding: clamp(20px, 3vw, 28px);
  transform: translateY(140%); opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  z-index: 9999;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }

@media (min-width: 768px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; bottom: 24px; }
}

.cookie-banner__title {
  font-family: var(--font-display); font-weight: 700; font-style: italic;
  font-size: 18px; color: var(--ink); margin-bottom: 8px;
}
.cookie-banner__text {
  font-size: 13px; color: var(--ink-soft); line-height: 1.6;
  margin-bottom: 16px;
}
.cookie-banner__text a { color: var(--accent); text-decoration: underline; }

.cookie-banner__actions {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.cookie-banner__actions button {
  flex: 1 1 auto; min-width: 100px; min-height: 44px;
  padding: 10px 18px;
  font-family: var(--font-body); font-weight: 700; font-size: 13px;
  letter-spacing: 0.04em; text-transform: uppercase;
  border-radius: var(--radius); cursor: pointer;
  transition: all 240ms cubic-bezier(.4,0,.2,1);
  border: 1px solid var(--line-strong);
}
.cookie-btn-accept {
  background: var(--accent); color: var(--bg); border-color: var(--accent) !important;
  font-size: 14px; font-weight: 700;
  box-shadow: 0 2px 12px rgba(201,168,76,0.25);
}
.cookie-btn-accept:hover { background: var(--ink); color: var(--bg); border-color: var(--ink) !important; box-shadow: 0 4px 16px rgba(201,168,76,0.35); }
.cookie-btn-reject {
  background: transparent; color: var(--ink);
  border-color: var(--ink-soft) !important;
  font-size: 14px; font-weight: 700;
}
.cookie-btn-reject:hover { background: rgba(245,240,232,0.1); color: var(--ink); border-color: var(--ink) !important; }
.cookie-btn-settings {
  background: transparent; color: var(--ink-soft);
  font-size: 13px;
}
.cookie-btn-settings:hover { background: rgba(245,240,232,0.06); color: var(--ink); border-color: var(--ink-soft) !important; }

/* ── Table Scroll ── */
.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%; }
th, td {
  padding: 12px 16px; text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
th {
  font-family: var(--font-body); font-weight: 700;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); background: rgba(201,168,76,0.05);
}
td { color: var(--ink-soft); }

/* ── Contact Page Grid ── */
.iletisim-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px); align-items: start;
}
@media (max-width: 768px) { .iletisim-grid { grid-template-columns: 1fr; } }

/* ── Contact Page ── */
.contact-channels {
  display: grid; grid-template-columns: 1fr;
  gap: 0;
}
.contact-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px; align-items: start;
  padding: clamp(14px, 2vw, 20px) clamp(12px, 2vw, 20px);
  border-bottom: 1px solid var(--line);
  transition: background 240ms cubic-bezier(.4,0,.2,1), transform 240ms;
  border-radius: var(--radius);
}
.contact-row:hover {
  background: var(--surface);
  transform: translateX(4px);
}
.contact-row__icon {
  width: 20px; height: 20px; color: var(--ink-soft);
  flex-shrink: 0; margin-top: 2px;
  transition: color 240ms, transform 240ms;
}
.contact-row:hover .contact-row__icon {
  color: var(--accent);
  transform: scale(1.08);
}
.contact-row__label {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 4px;
}
.contact-row__value {
  font-size: 15px; color: var(--ink); line-height: 1.6;
  word-break: normal; overflow-wrap: break-word;
}
.contact-row__value a { color: var(--ink); }
.contact-row__value a:hover { color: var(--accent); }

/* ── Thank You Page ── */
.thankyou {
  min-height: 60vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: clamp(48px, 8vw, 96px) 0;
}
.thankyou__icon {
  width: 64px; height: 64px; color: var(--accent);
  margin: 0 auto 24px;
}
.thankyou h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-style: italic; color: var(--ink);
  margin-bottom: 16px;
}
.thankyou p {
  font-size: 16px; color: var(--ink-soft);
  margin-bottom: 32px; max-width: 480px; margin-left: auto; margin-right: auto;
}

/* ── 404 Page ── */
.page-404 {
  min-height: 60vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: clamp(48px, 8vw, 96px) 0;
}
.page-404 h1 {
  font-size: clamp(5rem, 12vw, 10rem);
  font-style: italic; color: var(--accent); opacity: 0.3;
  line-height: 1;
}
.page-404 h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-style: italic; color: var(--ink);
  margin: 16px 0;
}
.page-404 p {
  font-size: 16px; color: var(--ink-soft);
  margin-bottom: 32px;
}

/* ── Policy Pages ── */
.policy { padding: clamp(48px, 8vw, 80px) 0; }
.policy__inner { max-width: 760px; margin: 0 auto; }
.policy h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-style: italic; color: var(--ink); margin-bottom: 32px;
}
.policy h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-style: italic; color: var(--ink);
  margin: clamp(28px, 4vw, 48px) 0 16px;
  padding-top: 16px; border-top: 1px solid var(--line);
}
.policy h3 {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--ink); margin: 20px 0 10px;
}
.policy p {
  font-size: 15px; color: var(--ink-soft); line-height: 1.8;
  margin-bottom: 16px;
}
.policy ul, .policy ol {
  margin: 12px 0 16px 20px;
  list-style: disc;
}
.policy ol { list-style: decimal; }
.policy li {
  font-size: 15px; color: var(--ink-soft); line-height: 1.7;
  margin-bottom: 6px;
}
.policy .last-update {
  font-size: 12px; color: var(--ink-soft); margin-bottom: 32px;
  letter-spacing: 0.04em;
}

/* ── Site Map Page ── */
.sitemap-list { max-width: 600px; margin: 0 auto; }
.sitemap-list li {
  padding: 10px 0; border-bottom: 1px solid var(--line);
}
.sitemap-list a {
  font-size: 15px; color: var(--ink);
  display: flex; align-items: center; gap: 8px;
  transition: color 240ms, padding-left 240ms;
}
.sitemap-list a:hover { color: var(--accent); padding-left: 8px; }
.sitemap-list a::before {
  content: ''; width: 6px; height: 1px;
  background: var(--accent); flex-shrink: 0;
}

/* ── Hakkimizda (About) ── */
.about-story { max-width: 780px; }
.about-story p {
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--ink-soft); line-height: 1.9;
  margin-bottom: 20px;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 3vw, 32px);
  margin-top: clamp(36px, 5vw, 56px);
}
.about-value {
  text-align: center;
  padding: clamp(24px, 3vw, 36px) clamp(16px, 2vw, 24px);
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.about-value__icon {
  width: 40px; height: 40px; color: var(--accent);
  margin: 0 auto 16px;
}
.about-value h3 {
  font-family: var(--font-display); font-weight: 700; font-style: italic;
  font-size: 18px; color: var(--ink); margin-bottom: 8px;
}
.about-value p {
  font-size: 14px; color: var(--ink-soft); line-height: 1.6;
}

@media (max-width: 640px) {
  .about-values { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
}

.team-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  margin-top: clamp(36px, 5vw, 56px);
}
.team-member {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(16px, 2vw, 24px);
  align-items: start;
}
.team-member__img {
  width: clamp(100px, 14vw, 160px);
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--line);
}
.team-member__img img { width: 100%; height: 100%; object-fit: cover; }
.team-member__name {
  font-family: var(--font-display); font-weight: 700; font-style: italic;
  font-size: clamp(18px, 2vw, 22px); color: var(--ink);
  margin-bottom: 4px;
}
.team-member__role {
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px;
}
.team-member__bio {
  font-size: 14px; color: var(--ink-soft); line-height: 1.8;
}

@media (max-width: 768px) {
  .team-detail { grid-template-columns: 1fr; }
  .team-member { grid-template-columns: 110px 1fr; }
}

/* ── Manifesto Quote ── */
.manifesto {
  padding: clamp(48px, 8vw, 96px) 0;
  text-align: center;
}
.manifesto__text {
  font-family: var(--font-display); font-weight: 700; font-style: italic;
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--ink); line-height: 1.2;
  max-width: 14ch; margin: 0 auto;
}
.manifesto__sub {
  font-size: 14px; color: var(--accent);
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-top: 20px;
}

/* ── Reveal Animation ── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 680ms cubic-bezier(.16,.73,.3,1), transform 680ms cubic-bezier(.16,.73,.3,1);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal[style*="--i"] { transition-delay: calc(var(--i) * 90ms); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
html.no-js .reveal { opacity: 1; transform: none; }

/* ── Niche Animations ── */

/* Hair strand float */
@keyframes strand-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  30% { transform: translateY(-10px) rotate(2.5deg); }
  70% { transform: translateY(5px) rotate(-1.5deg); }
}
.strand-deco {
  pointer-events: none;
  animation: strand-float 10s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 2s);
}

/* Scissors icon rotate on reveal */
@keyframes scissors-reveal {
  0% { transform: rotate(-30deg) scale(0.8); opacity: 0; }
  60% { transform: rotate(5deg) scale(1.05); }
  100% { transform: rotate(0deg) scale(1); opacity: 1; }
}
.scissors-icon.is-in {
  animation: scissors-reveal 800ms cubic-bezier(.2,.7,.2,1) forwards;
}

/* Hair curl ambient breathing */
@keyframes curl-breathe {
  0%, 100% { opacity: 0.12; transform: scale(1); }
  50% { opacity: 0.2; transform: scale(1.03); }
}
.curl-ambient {
  animation: curl-breathe 8s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 1.5s);
}

/* Counter number pop */
@keyframes num-pop {
  0% { transform: scale(0.7); opacity: 0; }
  60% { transform: scale(1.05); }
  100% { transform: scale(1); opacity: 1; }
}

/* ── Hair Salon Theme Micro-effects ── */

/* Warm gold glow on hero CTA */
.hero__cta-wrap .btn-primary {
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}
.hero__cta-wrap .btn-primary:hover {
  box-shadow: 0 8px 32px rgba(201,168,76,0.45);
}

/* Gallery item warm glow on hover */
.gallery__item::after {
  content: ''; position: absolute; inset: 0;
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 2px transparent;
  transition: box-shadow 400ms cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
}
.gallery__item:hover::after {
  box-shadow: inset 0 0 0 2px var(--accent);
}

/* Testimonial warm hover */
.testimonial {
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms;
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px -8px rgba(201,168,76,0.1);
}

/* Trust badge shimmer */
@keyframes badge-shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.trust-badge {
  transition: border-color 280ms, background 280ms;
}
.trust-badge:hover {
  border-color: var(--accent);
  background: rgba(201,168,76,0.18);
}

/* FAQ item hover accent */
.faq-item summary:hover::after {
  transform: scale(1.15);
}

/* About value card hover */
.about-value {
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms, border-color 280ms;
}
.about-value:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px -8px rgba(201,168,76,0.12);
  border-color: var(--accent);
}

/* Contact row gold line accent on hover */
.contact-row::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--accent);
  transition: width 400ms cubic-bezier(.2,.7,.2,1);
}
.contact-row { position: relative; }
.contact-row:hover::after { width: 100%; }

/* Footer link hover animation */
.footer__links a {
  position: relative;
}
.footer__links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px; background: var(--accent);
  transition: width 320ms cubic-bezier(.2,.7,.2,1);
}
.footer__links a:hover::after { width: 100%; }

/* Form input focus warm glow */
.field input:focus, .field select:focus, .field textarea:focus {
  box-shadow: 0 0 0 3px rgba(201,168,76,0.18), 0 4px 12px rgba(201,168,76,0.08);
}

/* Gold divider pulse on reveal */
.gold-divider.is-in svg {
  animation: divider-pulse 2s ease-in-out;
}
@keyframes divider-pulse {
  0% { opacity: 0.3; transform: scaleX(0.5); }
  60% { opacity: 1; transform: scaleX(1.05); }
  100% { opacity: 1; transform: scaleX(1); }
}

/* Manifesto text warm glow */
.manifesto__text {
  text-shadow: 0 0 40px rgba(201,168,76,0.08);
}

/* Nav link CTA warm pulse */
.nav-desktop .nav-cta {
  transition: all 280ms cubic-bezier(.2,.7,.2,1);
}
.nav-desktop .nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.25);
}

/* Atmosfer strip item hover */
.atmosfer__item {
  transition: transform 400ms cubic-bezier(.2,.7,.2,1);
}
.atmosfer__item:hover {
  transform: scale(1.02);
}

/* ── Salon Theme: Warm Shimmer on Price Cards ── */
.price-card__name::after {
  content: '';
  display: block;
  width: 0; height: 1px;
  background: linear-gradient(90deg, var(--accent), rgba(201,168,76,0.3));
  margin-top: 10px;
  transition: width 500ms cubic-bezier(.22,.61,.36,1);
}
.price-card:hover .price-card__name::after { width: 60%; }

/* Stylist card gold underline reveal */
.stylist-card__info::after {
  content: '';
  display: block;
  width: 0; height: 1px;
  background: var(--accent);
  margin-top: 12px;
  transition: width 500ms cubic-bezier(.22,.61,.36,1);
}
.stylist-card:hover .stylist-card__info::after { width: 40px; }

/* Section eyebrow letter-spacing animation on reveal */
.section-eyebrow {
  transition: letter-spacing 800ms cubic-bezier(.22,.61,.36,1), opacity 720ms cubic-bezier(.22,.61,.36,1), transform 720ms cubic-bezier(.22,.61,.36,1);
}
.section-eyebrow.is-in { letter-spacing: 0.28em; }

/* Process dot pulse on hover */
.process__step:hover .process__dot {
  box-shadow: 0 0 0 6px rgba(201,168,76,0.12);
  transition: box-shadow 300ms;
}

/* ── Responsive ── */
@media (max-width: 1280px) {
  :root { --header-h: 72px; }
}

@media (max-width: 1024px) {
  :root { --header-h: 68px; }
  .hero__title { font-size: clamp(2.5rem, 7vw, 4.5rem); }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .hero { min-height: 90vh; }
  .hero__trust { gap: 8px; }
  .trust-badge { font-size: 10px; padding: 5px 10px; }
}

@media (max-width: 640px) {
  body { font-size: 15px; }
  .section { padding: clamp(36px, 6vw, 56px) 0; }
  .process__timeline { padding-left: 40px; }
  .process__dot { left: -32px; width: 14px; height: 14px; }
  .process__dot::after { width: 4px; height: 4px; }
}

@media (max-width: 430px) {
  .hero__title { font-size: 2.2rem; }
  .btn-primary--lg { padding: 14px 32px; font-size: 13px; }
}

@media (max-width: 360px) {
  .container { padding-left: 16px; padding-right: 16px; }
  .hero__title { font-size: 2rem; }
  .stat__number { font-size: 1.8rem; }
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero__media { animation: none; clip-path: none; transform: none; opacity: 1; }
  .hero__eyebrow, .hero__title, .hero__sub, .hero__cta-wrap, .hero__trust, .hero__curl-deco {
    opacity: 1; animation: none; transform: none;
  }
  .hero::after { animation: none; opacity: 0; }
  .strand-deco, .curl-ambient { animation: none; }
  .btn-primary:hover, .btn-ghost:hover, .stylist-card:hover, .price-card:hover,
  .testimonial:hover, .about-value:hover, .atmosfer__item:hover, .team-member:hover {
    transform: none !important;
  }
  .gold-divider.is-in svg { animation: none; }
  .price-card__name::after, .stylist-card__info::after, .contact-row::after,
  .gallery__caption span::after { transition: none; }
  .process__step:hover .process__dot { box-shadow: none; }
  .process__step.is-in .process__dot { animation: none; }
  .stat.is-in .stat__number { animation: none; }
  .section-eyebrow { letter-spacing: 0.28em; }
  .testimonial:hover .testimonial__quote-mark { animation: none; }
  .drawer.is-open .drawer__link { animation: none; opacity: 1; transform: none; }
}

/* ── Print ── */
@media print {
  .site-header, .drawer, .drawer-backdrop, .cookie-banner, .nav-toggle,
  .hero__media, .hero__curl-deco, .strand-deco { display: none !important; }
  body { background: #fff; color: #1a1a1a; font-size: 12pt; }
  main { padding-top: 0; }
  .section { page-break-inside: avoid; }
  a { color: #1a1a1a; }
  .btn-primary, .btn-ghost { border: 1px solid #1a1a1a; background: none; color: #1a1a1a; }
}

/* ── No-JS ── */
html.no-js .reveal { opacity: 1; transform: none; }
html.no-js .hero__media { clip-path: none; transform: none; opacity: 1; }
html.no-js .hero__eyebrow, html.no-js .hero__title,
html.no-js .hero__sub, html.no-js .hero__cta-wrap,
html.no-js .hero__trust { opacity: 1; transform: none; animation: none; }
html.no-js .hero::after { animation: none; opacity: 0; }
html.no-js .drawer__link { opacity: 1; transform: none; }

/* Safety: guarantee hero text visible after animation duration */
@keyframes hero-safety {
  to { opacity: 1; transform: none; }
}
.hero__eyebrow, .hero__title, .hero__sub, .hero__cta-wrap, .hero__trust {
  animation-fill-mode: both;
}

/* ── Salon Theme: Warm Light Sweep on Hero ── */
@keyframes hero-warmglow {
  0% { opacity: 0; }
  50% { opacity: 0.06; }
  100% { opacity: 0; }
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 30% 60%, rgba(201,168,76,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  animation: hero-warmglow 6s ease-in-out 2s infinite;
}

/* ── Salon Theme: Drawer slide-in stagger ── */
.drawer.is-open .drawer__link {
  animation: drawerSlideIn 400ms cubic-bezier(.16,.73,.3,1) both;
}
.drawer.is-open .drawer__link:nth-child(1) { animation-delay: 60ms; }
.drawer.is-open .drawer__link:nth-child(2) { animation-delay: 120ms; }
.drawer.is-open .drawer__link:nth-child(3) { animation-delay: 180ms; }
.drawer.is-open .drawer__link:nth-child(4) { animation-delay: 240ms; }
.drawer.is-open .drawer__link:nth-child(5) { animation-delay: 300ms; }
.drawer.is-open .drawer__link:nth-child(6) { animation-delay: 360ms; }
@keyframes drawerSlideIn {
  from { opacity: 0; transform: translateX(24px); }
  to { opacity: 1; transform: none; }
}

/* ── Salon Theme: Gentle shine on price card hover ── */
@keyframes cardShine {
  0% { left: -100%; }
  100% { left: 200%; }
}
.price-card:hover::before {
  animation: cardShine 800ms cubic-bezier(.4,0,.2,1) forwards;
  left: -100%;
}

/* ── Salon Theme: Process dot warm pulse ── */
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0); }
  50% { box-shadow: 0 0 0 8px rgba(201,168,76,0.1); }
}
.process__step.is-in .process__dot {
  animation: dotPulse 3s ease-in-out 1s;
}

/* ── Salon Theme: Gallery caption warm underline ── */
.gallery__caption span::after {
  content: '';
  display: block;
  width: 0; height: 1px;
  background: var(--accent);
  margin-top: 4px;
  transition: width 500ms cubic-bezier(.16,.73,.3,1);
}
.gallery__item:hover .gallery__caption span::after { width: 100%; }

/* ── Salon Theme: Testimonial quote mark float ── */
@keyframes quoteFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.testimonial:hover .testimonial__quote-mark {
  animation: quoteFloat 2s ease-in-out infinite;
  opacity: 0.2;
}

/* ── Salon Theme: Stats counter pop on reveal ── */
.stat.is-in .stat__number {
  animation: num-pop 600ms cubic-bezier(.16,.73,.3,1) both;
  animation-delay: calc(var(--i, 0) * 120ms);
}

/* ── Mobile cookie banner safe area ── */
@media (max-width: 768px) {
  .cookie-banner {
    bottom: 12px;
    left: 12px;
    right: 12px;
    padding: 20px;
  }
  .cookie-banner__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .cookie-banner__actions button {
    min-height: 48px;
    font-size: 13px;
  }
}

/* ── Team member hover on about page ── */
.team-member {
  transition: transform 280ms cubic-bezier(.16,.73,.3,1);
  border-radius: var(--radius);
  padding: 8px;
  margin: -8px;
}
.team-member:hover {
  transform: translateY(-3px);
}
.team-member__img {
  transition: box-shadow 280ms cubic-bezier(.16,.73,.3,1), border-color 280ms;
}
.team-member:hover .team-member__img {
  border-color: var(--accent);
  box-shadow: 0 8px 24px -8px rgba(201,168,76,0.15);
}
