/* ==========================================================================
   Kosmetik Körper Kassel: Design System
   Brand tokens preserved from the previous site: gold #ab8948, warm neutrals,
   Zen Antique (display) + Manrope (everything else).
   ========================================================================== */

@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/manrope-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/manrope-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-024F, U+0304, U+0308, U+0329, U+1E00-1EFF, U+2020, U+20A0-20AB;
}
@font-face {
  font-family: 'Zen Antique';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/zenantique-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122;
}

:root {
  color-scheme: light;

  /* ---- Brand color (preserved) ---- */
  --gold: #ab8948;
  --gold-light: #cfae72;
  --gold-dark: #8a6c34;
  --gold-wash: #f4ecdd;

  /* ---- Neutrals (cool, not warm-cream) ---- */
  --ink: #1c1a17;
  --ink-soft: #5a564f;
  --ink-faint: #8a857c;
  --paper: #ffffff;
  --paper-alt: #f9f2e2;
  --surface-dark: #17150f;
  --surface-dark-soft: #262119;
  --line: #e5e2da;
  --line-dark: rgba(255, 255, 255, 0.14);

  /* ---- Radii (one system: pill buttons, soft cards) ---- */
  --r-pill: 999px;
  --r-lg: 28px;
  --r-md: 18px;
  --r-sm: 10px;

  /* ---- Shadows (tinted, never pure black) ---- */
  --shadow-soft: 0 20px 50px -24px rgba(28, 24, 16, 0.28);
  --shadow-lift: 0 30px 70px -28px rgba(28, 24, 16, 0.38);
  --shadow-gold: 0 16px 36px -14px rgba(171, 137, 72, 0.45);

  /* ---- Motion ---- */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 0.25s;
  --dur: 0.55s;
  --dur-slow: 0.9s;

  /* ---- Type ---- */
  --font-display: 'Zen Antique', 'Iowan Old Style', serif;
  --font-sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --fs-hero: clamp(2.6rem, 5.4vw, 4.4rem);
  --fs-h1: clamp(2.2rem, 3.6vw, 3.2rem);
  --fs-h2: clamp(1.8rem, 2.4vw, 2.5rem);
  --fs-h3: clamp(1.25rem, 1.2vw + 0.8rem, 1.5rem);
  --fs-lead: clamp(1.05rem, 0.4vw + 1rem, 1.25rem);
  --fs-body: 1.05rem;
  --fs-small: 0.9rem;
  --fs-micro: 0.78rem;

  /* ---- Layout ---- */
  --container: 1240px;
  --container-narrow: 860px;
  --section-py: clamp(4.5rem, 8vw, 8rem);
  --section-py-sm: clamp(3rem, 5vw, 5rem);
  --nav-h: 84px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture { max-width: 100%; display: block; }
/* <picture> has no intrinsic height of its own, so a percentage height on
   the <img> inside it can't resolve against it (classic circular percentage
   bug) and the image silently falls back to its natural aspect ratio,
   leaving a gap. display:contents removes picture from the box entirely so
   the img sizes directly against its real container (figure/card/etc). */
picture { display: contents; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, p, figure { margin: 0; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, textarea { font: inherit; }
svg { display: block; }

::selection { background: var(--gold); color: #fff; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }
.container--narrow { max-width: var(--container-narrow); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 1rem; top: -60px; z-index: 200;
  background: var(--ink); color: #fff; padding: 0.75rem 1.25rem; border-radius: var(--r-sm);
  transition: top var(--dur-fast) var(--ease);
}
.skip-link:focus { top: 1rem; }

/* ---- Typography ---- */
.eyebrow {
  display: inline-flex; align-items: center;
  font-size: var(--fs-micro); font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold-dark);
}

h1, .h1 { font-family: var(--font-sans); font-size: var(--fs-h1); font-weight: 800; line-height: 1.08; letter-spacing: -0.01em; overflow-wrap: break-word; hyphens: none; }
h2, .h2 { font-family: var(--font-sans); font-size: var(--fs-h2); font-weight: 800; line-height: 1.12; letter-spacing: -0.01em; overflow-wrap: break-word; hyphens: none; }
h3, .h3 { font-family: var(--font-sans); font-size: var(--fs-h3); font-weight: 700; line-height: 1.3; }

.display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
}

.lead { font-size: var(--fs-lead); color: var(--ink-soft); line-height: 1.65; max-width: 60ch; }
address.lead { font-style: normal; }
.body-text { color: var(--ink-soft); line-height: 1.75; max-width: 68ch; }
.body-text + .body-text { margin-top: 1.1em; }

.section-head { max-width: 44rem; }
.section-head + * { margin-top: clamp(2.5rem, 5vw, 3.75rem); }
.section-head h2 { margin-top: 0.6rem; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  white-space: nowrap;
  padding: 1rem 1.75rem;
  border-radius: var(--r-pill);
  font-weight: 700; font-size: 0.98rem;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), background-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
  will-change: transform;
}
.btn:active { transform: scale(0.97); }
.btn svg { width: 1.15em; height: 1.15em; flex-shrink: 0; }

.btn--gold {
  background: var(--gold); color: #fff; box-shadow: var(--shadow-gold);
}
.btn--gold:hover { background: var(--gold-dark); box-shadow: var(--shadow-lift); transform: translateY(-2px); }

.btn--dark {
  background: var(--ink); color: #fff;
}
.btn--dark:hover { background: #000; transform: translateY(-2px); box-shadow: var(--shadow-soft); }

.btn--ghost {
  background: transparent; color: var(--ink); border: 1.5px solid var(--line);
}
.btn--ghost:hover { border-color: var(--ink); background: var(--ink); color: #fff; }

.btn--ghost-light {
  background: rgba(255,255,255,0.08); color: #fff; border: 1.5px solid rgba(255,255,255,0.55);
  backdrop-filter: blur(6px);
}
.btn--ghost-light:hover { background: #fff; color: var(--ink); border-color: #fff; }

.btn--sm { padding: 0.72rem 1.3rem; font-size: 0.88rem; }

.text-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-weight: 700; color: var(--ink); border-bottom: 1.5px solid var(--gold);
  padding-bottom: 0.1rem; transition: color var(--dur-fast) var(--ease), gap var(--dur-fast) var(--ease);
}
.text-link:hover { color: var(--gold-dark); gap: 0.6rem; }
.text-link svg { width: 1em; height: 1em; }

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
#top-sentinel { position: absolute; top: 0; height: 1px; width: 1px; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: transparent;
  transition: background-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; width: 100%; }

.site-header.is-scrolled,
.site-header.is-solid {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 30px -22px rgba(28,24,16,0.4);
}

.brand { display: flex; align-items: center; gap: 0.65rem; }
.brand img { height: 46px; width: auto; }
.brand-word { font-family: var(--font-display); font-size: 1.05rem; letter-spacing: 0.02em; color: var(--ink); }

.nav-desktop { display: none; }
@media (min-width: 1024px) {
  .nav-desktop { display: flex; align-items: center; gap: 2.1rem; }
}
.nav-desktop > li { position: relative; }
.nav-link {
  font-weight: 600; font-size: 0.96rem; color: var(--ink);
  padding: 0.5rem 0.1rem; display: inline-flex; align-items: center; gap: 0.3rem;
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px;
  background: var(--gold); transition: right var(--dur-fast) var(--ease);
}
.nav-link:hover::after, .nav-link.is-active::after { right: 0; }
.nav-link.is-active { color: var(--gold-dark); }
.nav-link svg { width: 0.75em; height: 0.75em; transition: transform var(--dur-fast) var(--ease); }

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.has-dropdown:hover .nav-link svg { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: 100%; left: 50%; transform: translate(-50%, 6px);
  min-width: 240px; padding: 0.6rem;
  background: var(--paper); border-radius: var(--r-md); box-shadow: var(--shadow-lift);
  opacity: 0; visibility: hidden; transition: opacity var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease), visibility var(--dur-fast);
}
.dropdown a {
  display: block; padding: 0.7rem 0.9rem; border-radius: var(--r-sm);
  font-weight: 600; font-size: 0.94rem; color: var(--ink-soft);
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.dropdown a:hover { background: var(--gold-wash); color: var(--gold-dark); }

.header-cta { display: none; }
@media (min-width: 1024px) { .header-cta { display: inline-flex; } }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: var(--r-pill);
  border: 1px solid var(--line);
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.nav-toggle svg { width: 20px; height: 20px; }

/* Mobile drawer */
.mobile-drawer {
  position: fixed; inset: 0; z-index: 150;
  visibility: hidden; pointer-events: none;
}
.mobile-drawer.is-open { visibility: visible; pointer-events: auto; }
.mobile-drawer__backdrop {
  position: absolute; inset: 0; background: rgba(23,21,15,0.5);
  opacity: 0; transition: opacity var(--dur) var(--ease);
}
.mobile-drawer.is-open .mobile-drawer__backdrop { opacity: 1; }
.mobile-drawer__panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(92vw, 400px);
  background: var(--paper); box-shadow: var(--shadow-lift);
  padding: 1.5rem 1.75rem 2.5rem;
  transform: translateX(100%);
  transition: transform var(--dur-slow) var(--ease);
  display: flex; flex-direction: column;
  overflow-y: auto;
}
.mobile-drawer.is-open .mobile-drawer__panel { transform: translateX(0); }
.mobile-drawer__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; }
.mobile-drawer__close { width: 42px; height: 42px; border-radius: var(--r-pill); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; }
.mobile-drawer__close svg { width: 18px; height: 18px; }
.mobile-nav { display: flex; flex-direction: column; gap: 0.2rem; }
.mobile-nav > li { border-bottom: 1px solid var(--line); }
.mobile-nav .nav-link { display: flex; width: 100%; padding: 1rem 0.1rem; font-size: 1.05rem; justify-content: space-between; }
.mobile-nav .nav-link::after { display: none; }
.mobile-submenu { max-height: 0; overflow: hidden; transition: max-height var(--dur) var(--ease); }
.mobile-submenu.is-open { max-height: 200px; }
.mobile-submenu a { display: block; padding: 0.75rem 0.1rem 0.75rem 1.25rem; color: var(--ink-soft); font-weight: 600; }
.mobile-drawer__foot { margin-top: auto; padding-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.mobile-drawer__foot .btn { width: 100%; }

/* ==========================================================================
   Reveal / scroll-in animation utility
   ========================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
  transition-delay: calc(var(--reveal-i, 0) * 90ms);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal="fade"] { transform: none; }
[data-reveal="scale"] { transform: scale(0.94); }
[data-reveal="scale"].is-visible { transform: scale(1); }
[data-reveal="left"] { transform: translateX(-32px); }
[data-reveal="left"].is-visible { transform: translateX(0); }
[data-reveal="right"] { transform: translateX(32px); }
[data-reveal="right"].is-visible { transform: translateX(0); }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ==========================================================================
   Hero (home): asymmetric split
   ========================================================================== */
.hero {
  position: relative;
  padding-top: clamp(2rem, 5vw, 4rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}
@media (max-width: 640px) {
  .hero { padding-bottom: 0.5rem; }
}
.hero .container {
  display: grid; gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}
@media (min-width: 960px) {
  .hero .container { grid-template-columns: 1.05fr 0.95fr; }
}
.hero-copy .eyebrow { margin-bottom: 1.1rem; }
.hero-copy h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--fs-hero);
  color: var(--ink);
}
.hero-copy h1 em { font-style: normal; color: var(--gold-dark); }
.hero-copy .lead { margin-top: 1.4rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.2rem; }

.hero-visual { position: relative; }
.hero-visual figure {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  aspect-ratio: 5 / 4;
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); }

/* Sub-page hero (full-bleed image) */
.page-hero {
  position: relative; margin-top: calc(var(--nav-h) * -1);
  min-height: min(78vh, 620px);
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.page-hero__media { position: absolute; inset: 0; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(43,30,10,0.12) 0%, rgba(43,30,10,0.05) 30%, rgba(38,26,9,0.9) 100%);
}
.page-hero .container { position: relative; z-index: 2; width: 100%; min-width: 0; padding-bottom: clamp(2.5rem, 6vw, 4.5rem); padding-top: calc(var(--nav-h) + 3rem); }
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; font-size: var(--fs-small); color: rgba(255,255,255,0.75); margin-bottom: 1.25rem; overflow-wrap: break-word; max-width: 100%; }
.breadcrumb a { font-weight: 600; color: rgba(255,255,255,0.9); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb svg { width: 0.8em; height: 0.8em; opacity: 0.6; }
.page-hero h1 { font-family: var(--font-display); font-weight: 400; font-size: var(--fs-hero); color: #fff; max-width: 18ch; }
.page-hero .lead { color: rgba(255,255,255,0.82); margin-top: 1rem; }
@media (max-width: 640px) {
  /* The source photos are wide (21:9). Forcing them into a tall vh-based
     box on a narrow portrait screen zooms in far too much, and the extra
     height above the text just becomes a flat dark gradient. A near-square
     ratio keeps the crop sane and leaves the photo visible. */
  .page-hero { min-height: 0; aspect-ratio: 1 / 1; }
  .page-hero .container { padding-top: calc(var(--nav-h) + 1rem); padding-bottom: 1.75rem; }
  .page-hero h1 { font-size: clamp(1.9rem, 8.5vw, 2.6rem); max-width: 100%; }
  .page-hero__media::after {
    background: linear-gradient(180deg, rgba(43,30,10,0) 0%, rgba(43,30,10,0) 42%, rgba(38,26,9,0.94) 100%);
  }
}

/* Simple content-page hero (legal / kontakt / galerie) */
.simple-hero {
  padding-top: clamp(6.5rem, 12vw, 9rem);
  padding-bottom: var(--section-py-sm);
}
.simple-hero h1 { font-family: var(--font-display); font-weight: 400; font-size: clamp(2.4rem, 4.4vw, 3.6rem); }
.simple-hero .lead { margin-top: 1.1rem; }

/* ==========================================================================
   Sections / generic
   ========================================================================== */
.section { padding-block: var(--section-py); }
.section--sm { padding-block: var(--section-py-sm); }
.section--alt { background: var(--paper-alt); }
.section--dark { background: var(--surface-dark); color: rgba(255,255,255,0.92); }
.section--dark .body-text, .section--dark .lead { color: rgba(255,255,255,0.68); }
.section--dark .eyebrow { color: var(--gold-light); }
.section--tight-top { padding-top: 0; }

.center { text-align: center; margin-inline: auto; }

/* ---- Intro / about (editorial, text-only) ---- */
.about-block { max-width: 46rem; }
.about-block .display { font-size: clamp(1.5rem, 2vw, 1.9rem); color: var(--ink); margin-bottom: 1.4rem; }

/* ---- Treatment teaser cards (home) ---- */
.teaser-grid { display: grid; gap: 1.75rem; }
@media (min-width: 720px) { .teaser-grid { grid-template-columns: 1fr 1fr; } }

.teaser-card {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
  display: block;
}
.teaser-card:hover { box-shadow: var(--shadow-lift); transform: translateY(-6px); }
.teaser-card__media { aspect-ratio: 4 / 5; overflow: hidden; }
.teaser-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease); }
.teaser-card:hover .teaser-card__media img { transform: scale(1.06); }
.teaser-card__body {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.75rem;
  background: linear-gradient(180deg, transparent 0%, rgba(16,14,9,0.86) 78%);
  color: #fff;
}
.teaser-card__body h3 { color: #fff; }
.teaser-card__body p { color: rgba(255,255,255,0.82); margin-top: 0.4rem; font-size: 0.95rem; }
.teaser-card__link {
  margin-top: 1rem; display: inline-flex; align-items: center; gap: 0.4rem;
  font-weight: 700; font-size: 0.9rem; color: var(--gold-light);
}
.teaser-card__link svg { width: 1em; height: 1em; transition: transform var(--dur-fast) var(--ease); }
.teaser-card:hover .teaser-card__link svg { transform: translateX(4px); }

/* ---- Studio bento preview ---- */
.bento {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 140px;
}
.bento a { border-radius: var(--r-md); overflow: hidden; position: relative; display: block; }
.bento img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease); }
.bento a:hover img { transform: scale(1.08); }
.bento .b1 { grid-column: span 2; grid-row: span 3; }
.bento .b2 { grid-column: span 2; grid-row: span 2; }
.bento .b3 { grid-column: span 1; grid-row: span 2; }
.bento .b4 { grid-column: span 1; grid-row: span 2; }
@media (max-width: 720px) {
  .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 130px; }
  .bento .b1 { grid-column: span 2; grid-row: span 2; }
  .bento .b2, .bento .b3, .bento .b4 { grid-column: span 1; grid-row: span 2; }
}

/* ---- Contact rows ---- */
.contact-layout { display: grid; gap: clamp(2.5rem, 5vw, 4rem); }
@media (min-width: 900px) { .contact-layout { grid-template-columns: 0.8fr 1.2fr; } }
.contact-rows { display: flex; flex-direction: column; }
.contact-row {
  display: flex; align-items: center; gap: 1.5rem;
  padding-block: 1.75rem; border-top: 1px solid var(--line);
}
.contact-rows .contact-row:last-child { border-bottom: 1px solid var(--line); }
.contact-row__icon {
  width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0;
  background: var(--gold-wash); color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
}
.contact-row__icon svg { width: 24px; height: 24px; }
.contact-row__body { flex: 1; min-width: 0; }
.contact-row__body h3 { margin-bottom: 0.3rem; }
.contact-row__body p { color: var(--ink-soft); font-size: 0.95rem; max-width: 42ch; }
.contact-row .btn { flex-shrink: 0; }
@media (max-width: 640px) {
  .contact-row { flex-wrap: wrap; }
  .contact-row .btn { width: 100%; margin-top: 0.5rem; }
}

/* ---- Map ---- */
.map-frame {
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-soft);
  aspect-ratio: 16 / 7; min-height: 320px;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.15) contrast(1.03); }

/* ==========================================================================
   Treatment pages
   ========================================================================== */
.intro-split { display: grid; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: center; }
@media (min-width: 900px) { .intro-split { grid-template-columns: 1fr 1fr; } }
.intro-split figure { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-soft); aspect-ratio: 16/11; }
.intro-split img { width: 100%; height: 100%; object-fit: cover; }
.intro-split--reverse { direction: rtl; }
.intro-split--reverse > * { direction: ltr; }

.treatment-grid { display: grid; gap: 1.5rem; }
@media (min-width: 760px) { .treatment-grid { grid-template-columns: 1fr 1fr; } }

.treatment-card {
  padding: clamp(1.75rem, 2.5vw, 2.25rem);
  border-radius: var(--r-lg);
  background: var(--paper-alt);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
}
.treatment-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); background: var(--paper); }
.treatment-card__num {
  font-family: var(--font-display); font-size: 1.1rem; color: var(--gold);
  margin-bottom: 0.75rem; display: block;
}
.treatment-card h3 { margin-bottom: 0.7rem; }
.treatment-card p { color: var(--ink-soft); font-size: 0.96rem; margin-bottom: 1.25rem; }
.treatment-card__meta { display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem; padding-top: 1.1rem; border-top: 1px solid var(--line); }
.treatment-card__meta div { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.84rem; color: var(--ink-soft); }
.treatment-card__meta svg { width: 1rem; height: 1rem; color: var(--gold-dark); flex-shrink: 0; margin-top: 0.15rem; }
.treatment-card__meta strong { color: var(--ink); font-weight: 700; }

/* ---- CTA banner ---- */
.cta-banner {
  border-radius: var(--r-lg);
  background: var(--surface-dark);
  color: #fff;
  padding: clamp(2.5rem, 5vw, 4rem);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 2rem;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(680px 320px at 88% 20%, rgba(171,137,72,0.35), transparent 70%);
  pointer-events: none;
}
.cta-banner__text { position: relative; max-width: 30rem; }
.cta-banner__text .eyebrow { color: var(--gold-light); }
.cta-banner__text h2 { color: #fff; margin-top: 0.6rem; }
.cta-banner__text p { color: rgba(255,255,255,0.7); margin-top: 0.8rem; }
.cta-banner__actions { position: relative; display: flex; flex-wrap: wrap; gap: 0.85rem; }

/* ==========================================================================
   Galerie page
   ========================================================================== */
.gallery-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 760px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 260px; } }
.gallery-item { border-radius: var(--r-md); overflow: hidden; position: relative; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0; background: rgba(23,21,15,0);
  transition: background var(--dur-fast) var(--ease);
}
.gallery-item:hover::after { background: rgba(23,21,15,0.12); }
.gallery-item__zoom {
  position: absolute; right: 0.9rem; bottom: 0.9rem; width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.92); display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(0.8); transition: all var(--dur-fast) var(--ease); color: var(--ink);
}
.gallery-item:hover .gallery-item__zoom { opacity: 1; transform: scale(1); }
.gallery-item__zoom svg { width: 17px; height: 17px; }
@media (min-width: 760px) {
  .gallery-grid .g1 { grid-column: span 2; grid-row: span 2; }
  .gallery-grid .g2 { grid-column: span 2; grid-row: span 1; }
  .gallery-grid .g3 { grid-column: span 1; grid-row: span 1; }
  .gallery-grid .g4 { grid-column: span 1; grid-row: span 1; }
}

.lightbox {
  position: fixed; inset: 0; z-index: 300;
  display: flex; align-items: center; justify-content: center;
  visibility: hidden; opacity: 0;
  transition: opacity var(--dur) var(--ease), visibility var(--dur);
  padding: 1.5rem;
}
.lightbox.is-open { visibility: visible; opacity: 1; }
.lightbox__backdrop { position: absolute; inset: 0; background: rgba(15,13,8,0.92); }
.lightbox__figure { position: relative; max-width: min(90vw, 1100px); max-height: 88vh; z-index: 2; }
.lightbox__figure img { max-width: 100%; max-height: 88vh; border-radius: var(--r-md); object-fit: contain; }
.lightbox__close, .lightbox__prev, .lightbox__next {
  position: absolute; width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.12); color: #fff; display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.3); transition: background var(--dur-fast) var(--ease);
  z-index: 3;
}
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover { background: var(--gold); border-color: var(--gold); }
.lightbox__close { top: -1.5rem; right: -1.5rem; }
.lightbox__prev { left: -1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: -1.5rem; top: 50%; transform: translateY(-50%); }
@media (max-width: 720px) {
  .lightbox__close { top: -3.2rem; right: 0; }
  .lightbox__prev { left: 0.25rem; }
  .lightbox__next { right: 0.25rem; }
}
.lightbox__close svg, .lightbox__prev svg, .lightbox__next svg { width: 20px; height: 20px; }

/* Instagram teaser */
.insta-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(2, 1fr); max-width: 640px; margin-inline: auto; }
.insta-card { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 1; position: relative; box-shadow: var(--shadow-soft); }
.insta-card img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease); }
.insta-card:hover img { transform: scale(1.08); }
.insta-card__badge {
  position: absolute; left: 1rem; bottom: 1rem; display: inline-flex; align-items: center; gap: 0.45rem;
  background: rgba(255,255,255,0.94); padding: 0.5rem 0.85rem; border-radius: var(--r-pill);
  font-size: 0.82rem; font-weight: 700; color: var(--ink);
}
.insta-card__badge svg { width: 15px; height: 15px; color: var(--gold-dark); }

/* ==========================================================================
   Legal pages
   ========================================================================== */
.legal-content { max-width: 74ch; }
.legal-content h2 { font-size: 1.3rem; margin-top: 2.5rem; margin-bottom: 0.9rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { color: var(--ink-soft); line-height: 1.8; margin-bottom: 1.1rem; }
.legal-content ul { margin: 1rem 0 1.5rem; padding-left: 0; }
.legal-content ul li {
  color: var(--ink-soft); padding: 0.55rem 0 0.55rem 1.6rem; position: relative;
  border-top: 1px solid var(--line);
}
.legal-content ul li:last-child { border-bottom: 1px solid var(--line); }
.legal-content ul li::before {
  content: ''; position: absolute; left: 0.1rem; top: 1.05rem; width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
}
.legal-content strong { color: var(--ink); }
.legal-content a { color: var(--gold-dark); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--surface-dark); color: rgba(255,255,255,0.7); }
.footer-top { padding-block: clamp(3.5rem, 6vw, 5.5rem); display: grid; gap: 3rem; }
@media (min-width: 860px) { .footer-top { grid-template-columns: 1.3fr 1fr 1fr 1fr; } }
.footer-brand img { height: 52px; margin-bottom: 1.1rem; }
.footer-brand p { max-width: 32ch; font-size: 0.92rem; line-height: 1.7; }
.footer-social {
  margin-top: 1.4rem; display: inline-flex; align-items: center; justify-content: center; gap: 0.7rem;
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2);
  transition: background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.footer-social:hover { background: var(--gold); border-color: var(--gold); }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h4 { color: #fff; font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1.25rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.85rem; }
.footer-col a, .footer-col address { font-size: 0.94rem; font-style: normal; line-height: 1.6; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-block: 1.5rem;
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between;
  font-size: 0.82rem; color: rgba(255,255,255,0.5);
}
.footer-bottom a:hover { color: #fff; }
.footer-legal { display: flex; gap: 1.5rem; }

/* ==========================================================================
   Cookie consent
   ========================================================================== */
.cookie-bar {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 250;
  max-width: 560px; margin-inline: auto;
  background: var(--paper); border-radius: var(--r-md); box-shadow: var(--shadow-lift);
  padding: 1.5rem; border: 1px solid var(--line);
  transform: translateY(140%); transition: transform var(--dur-slow) var(--ease);
}
.cookie-bar.is-visible { transform: translateY(0); }
.cookie-bar p { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.6; }
.cookie-bar a { color: var(--gold-dark); font-weight: 700; text-decoration: underline; }
.cookie-bar__actions { display: flex; gap: 0.75rem; margin-top: 1.1rem; flex-wrap: wrap; }
.cookie-bar__actions .btn { flex: 1; min-width: 120px; }

/* ---- Back to top ---- */
.to-top {
  position: fixed; right: 1.5rem; bottom: 1.5rem; z-index: 90;
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--ink); color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-soft);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease), visibility var(--dur-fast), background var(--dur-fast) var(--ease);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--gold); }
.to-top svg { width: 20px; height: 20px; }

/* ---- Utility ---- */
.mt-0 { margin-top: 0 !important; }
.stack { display: flex; flex-direction: column; gap: 1rem; }
