/* =========================================================================
   Ju Aesthetics Berlin
   Hell und roségold. Weiss als Basis, Rosé grossflaechig, Schwarz sparsam
   (Schwarz bleibt der Akademie vorbehalten).
   Leitmotiv: das Konstruktionsraster der Fuchs-Bildmarke.
   ========================================================================= */

/* --- Tokens ------------------------------------------------------------ */
:root {
  /* Papier */
  --paper:      #FFFFFF;
  --paper-warm: #FDFAFA;

  /* Rosé-Skala: von Hauch bis Tiefton */
  --rose-050:   #FCF5F5;
  --rose-100:   #F7E9EA;
  --rose-200:   #EFD7DA;
  --rose-300:   #E3BFC4;
  --rose-400:   #CE969E;
  --rose-500:   #B76E79;  /* Markenton aus dem Logo */
  --rose-600:   #A65E6A;
  --rose-800:   #7E4551;
  --rose-900:   #5E3039;

  /* Schrift */
  --ink:        #241C1E;
  /* Gedecktes Grau, dunkel genug fuer 4,5:1 auch auf Rosé-100 (4,8:1);
     das weichere Grau erreicht auf Rosé-050 noch 4,7:1. */
  --muted:      #716466;
  --muted-soft: #7A6C6E;

  /* Linien */
  --line:       rgba(183, 110, 121, 0.30);
  --line-soft:  rgba(36, 28, 30, 0.11);

  /* Auf gesaettigtem Rosé */
  --on-rose:        #FFFFFF;
  --on-rose-muted:  rgba(255, 255, 255, 0.80);
  --on-rose-line:   rgba(255, 255, 255, 0.28);

  /* Jost ist die Schrift der AFAM-Akademieseite. Gemeinsame Stimme fuer den
     Fliesstext, waehrend die Serifenschrift beide Seiten unterscheidet:
     hier Marcellus, dort Cormorant Garamond. */
  --display: 'Marcellus', 'Iowan Old Style', Georgia, serif;
  --body:    'Jost', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  --wrap:   1180px;
  --frame:  1440px;  /* Buehne fuer randlose Bilder (Hero), Branchenstandard */
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --section: clamp(4.5rem, 10vw, 9rem);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* --- Reset ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: clamp(1.02rem, 0.98rem + 0.22vw, 1.11rem);
  font-weight: 350;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 400; line-height: 1.06; margin: 0; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }
a { color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
address { font-style: normal; }
button { font: inherit; color: inherit; }

:focus-visible {
  outline: 2px solid var(--rose-800);
  outline-offset: 3px;
  border-radius: 1px;
}

.skip-link {
  position: absolute; left: 0; top: 0; z-index: 200;
  transform: translateY(-120%);
  background: var(--rose-800); color: #fff;
  padding: 0.7rem 1.2rem; font-weight: 600;
}
.skip-link:focus { transform: none; }

/* --- Layout ------------------------------------------------------------ */
.wrap { width: min(var(--wrap), 100%); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section); }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }

/* Flaechen. Rosé traegt die Seite, nicht nur die Linien. */
.section--blush { background: var(--rose-050); }
.section--rose  { background: var(--rose-100); }

/* --- Typo-Bausteine ---------------------------------------------------- */

/* Das Rautenzeichen stammt aus der Bildmarke. */
.eyebrow {
  display: flex; align-items: center; gap: 0.85rem;
  margin: 0 0 1.6rem;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--rose-800);
}
.eyebrow::before {
  content: ''; flex: none;
  width: 6px; height: 6px;
  border: 1px solid currentColor;
  transform: rotate(45deg);
}
.eyebrow::after {
  content: ''; width: 3.5rem; height: 1px; background: var(--line);
}
.eyebrow--center { justify-content: center; }

.h-xl { font-size: clamp(2.55rem, 6.4vw, 5.1rem); letter-spacing: -0.012em; }
/* Sehr kleine Telefone (320 px): sonst laeuft "675 Nanometer." ueber den Rand. */
@media (max-width: 359px) { .h-xl { font-size: 2.3rem; } }
.h-lg { font-size: clamp(1.95rem, 4.2vw, 3.1rem); letter-spacing: -0.008em; }
.h-md { font-size: clamp(1.3rem, 2.2vw, 1.75rem); }

.lede { font-size: clamp(1.08rem, 1rem + 0.45vw, 1.3rem); line-height: 1.62; }
.muted { color: var(--muted); }
.measure { max-width: 62ch; }
.measure-sm { max-width: 48ch; }

/* --- Buttons ----------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 1rem 1.9rem;
  border: 1px solid transparent; border-radius: 2px;
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.13em; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  transition: background-color 0.35s var(--ease), color 0.35s var(--ease),
              border-color 0.35s var(--ease), transform 0.35s var(--ease);
}
.btn--sm { padding: 0.72rem 1.25rem; font-size: 0.72rem; letter-spacing: 0.11em; }

/* Vollton-Rosé, dunkel genug fuer weisse Schrift (Kontrast rund 5,6:1) */
.btn--rose { background: var(--rose-800); color: #fff; }
.btn--rose:hover { background: var(--rose-900); transform: translateY(-2px); }

.btn--ghost { border-color: var(--rose-300); color: var(--rose-800); background: transparent; }
.btn--ghost:hover { border-color: var(--rose-800); background: var(--rose-050); transform: translateY(-2px); }

/* Auf gesaettigtem Rosé kehrt sich das um. */
.btn--on-deep { background: #fff; color: var(--rose-800); }
.btn--on-deep:hover { background: var(--rose-050); transform: translateY(-2px); }
.btn--ghost-deep { border-color: var(--on-rose-line); color: var(--on-rose); }
.btn--ghost-deep:hover { border-color: #fff; background: rgba(255,255,255,0.12); transform: translateY(-2px); }

/* Das bisschen Schwarz. Bewusst selten. */
.btn--ink { background: var(--ink); color: #fff; }
.btn--ink:hover { background: #3A2E30; transform: translateY(-2px); }

.textlink {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--rose-800); text-decoration: none;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.13em; text-transform: uppercase;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid var(--rose-300);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.textlink:hover { color: var(--rose-900); border-color: var(--rose-800); }
.textlink__arrow { transition: transform 0.35s var(--ease); }
.textlink:hover .textlink__arrow { transform: translateX(4px); }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.85rem; }

/* --- Masthead ---------------------------------------------------------- */
.masthead {
  position: fixed; inset: 0 0 auto; z-index: 100;
  transition: background-color 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
/* Heller Schleier unter der Kopfleiste. Ohne ihn verschwindet die Navigation
   auf hellen Stellen des Hero-Fotos. Verschwindet, sobald die Leiste klebt. */
.masthead::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(252,245,245,0.96) 0%, rgba(252,245,245,0.72) 55%, rgba(252,245,245,0) 100%);
  transition: opacity 0.4s var(--ease);
}
.masthead.is-stuck::before { opacity: 0; }
.masthead.is-stuck {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border-bottom-color: var(--line-soft);
}
.masthead__inner {
  width: min(var(--wrap), 100%); margin-inline: auto;
  padding: 1.05rem var(--gutter);
  display: flex; align-items: center; gap: 2rem;
}

.brand {
  display: inline-flex; align-items: center; gap: 0.7rem;
  text-decoration: none; color: var(--ink);
  margin-right: auto;
}
/* Die Bildmarke in Schwarz - so, wie sie fuer die privaten Leistungen gilt. */
.brand__mark { width: 26px; height: 28px; color: var(--ink); flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name {
  font-family: var(--display);
  font-size: 1.02rem; letter-spacing: 0.16em; text-transform: uppercase;
}
.brand__place {
  font-size: 0.58rem; font-weight: 600;
  letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--rose-800);
}

/* Fuenf Punkte plus Knopf brauchen Platz: unter 1100 px uebernimmt das
   Burger-Menue (Grenze in main.js angepasst), darueber wird die Laufweite
   der Liste mit der Breite schmaler. Nichts darf umbrechen. */
.nav__list { display: flex; gap: clamp(1.3rem, 2.4vw, 2rem); }
.nav__link {
  position: relative;
  white-space: nowrap;
  text-decoration: none;
  font-size: 0.79rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted);
  padding-block: 0.4rem;
  transition: color 0.3s var(--ease);
}
.nav__link::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--rose-800);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav__link:hover { color: var(--ink); }
.nav__link:hover::after, .nav__link.is-current::after { transform: scaleX(1); }
.nav__link.is-current { color: var(--ink); }

.masthead__cta { white-space: nowrap; }
.burger { display: none; }

@media (max-width: 1099px) {
  .nav, .masthead__cta { display: none; }
  .burger {
    display: inline-flex; align-items: center; gap: 0.6rem;
    background: none; border: 0; cursor: pointer; padding: 0.5rem 0;
    font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--ink);
  }
  .burger__box { display: flex; flex-direction: column; gap: 5px; width: 22px; }
  .burger__box span {
    display: block; height: 1.5px; background: var(--rose-800);
    transition: transform 0.35s var(--ease), opacity 0.25s var(--ease);
  }
  .burger[aria-expanded="true"] .burger__box span:first-child { transform: translateY(3.25px) rotate(45deg); }
  .burger[aria-expanded="true"] .burger__box span:last-child  { transform: translateY(-3.25px) rotate(-45deg); }
}

/* --- Mobiles Menü ------------------------------------------------------ */
.drawer {
  position: fixed; inset: 0; z-index: 90;
  background: var(--rose-050);
  padding: 7rem var(--gutter) 3rem;
  display: flex; flex-direction: column; justify-content: space-between;
  overflow-y: auto;
}
.drawer[hidden] { display: none; }
.drawer__nav ul { display: flex; flex-direction: column; }
.drawer__link {
  display: block;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: 1.7rem;
  text-decoration: none;
  color: var(--ink);
}
.drawer__link.is-current { color: var(--rose-800); }
.drawer__foot { margin-top: 2.5rem; }
body.menu-open { overflow: hidden; }

/* =========================================================================
   HERO - grosses Rosé-Feld, Portraet hell
   ========================================================================= */
.hero {
  position: relative;
  min-height: min(94svh, 900px);
  display: flex; align-items: center;
  padding-block: clamp(8rem, 16vh, 11rem) clamp(3rem, 7vh, 5rem);
  overflow: hidden;
  background: var(--rose-100);
}

.hero__figure {
  position: absolute; inset: 0 0 0 auto;
  /* Auf breiten Schirmen endet das Bild am 1440er-Rahmen statt am Fensterrand. */
  right: max(0px, (100% - var(--frame)) / 2);
  width: min(56%, 760px);
  z-index: 0;
}
.hero__figure img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%;
  /* Nur ein Hauch Korrektur - das Bild soll hell bleiben. */
  filter: saturate(0.95) contrast(1.02) brightness(1.03);
}
/* Das Rosé-Feld laeuft ins Bild hinein, damit die Typo ruhig sitzt.
   Die Maske spart das Gesicht in einer weichen Kurve aus - sonst wirkt
   Juliane unter dem Schleier blass. Position passt zu object-position 50% 20%. */
.hero__figure::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, var(--rose-100) 2%, rgba(247,233,234,0.9) 20%, rgba(247,233,234,0.5) 40%, rgba(247,233,234,0.2) 62%, rgba(247,233,234,0) 80%),
    linear-gradient(0deg, rgba(247,233,234,0.6) 0%, transparent 32%);
  -webkit-mask-image: radial-gradient(ellipse 24% 24% at 50% 32%, transparent 55%, #000 100%);
          mask-image: radial-gradient(ellipse 24% 24% at 50% 32%, transparent 55%, #000 100%);
}

/* Jenseits des Rahmens laeuft das Bild auch rechts weich ins Rosé aus. */
@media (min-width: 1441px) {
  .hero__figure img {
    -webkit-mask-image: linear-gradient(270deg, transparent 0, #000 16%);
            mask-image: linear-gradient(270deg, transparent 0, #000 16%);
  }
}

.hero__inner { position: relative; z-index: 2; width: min(var(--wrap), 100%); }
.hero__copy { max-width: 40rem; }

.hero__title { margin-bottom: 1.6rem; }
.hero__title em { font-style: normal; color: var(--rose-800); }
.hero__sub { color: var(--muted); max-width: 34rem; margin-bottom: 2.4rem; }

/* --- Signatur: das Konstruktionsraster der Bildmarke -------------------- */
.armature {
  position: absolute;
  z-index: 1;
  top: 50%; left: calc(max(0px, (100% - var(--wrap)) / 2) + clamp(-16rem, -12vw, -6rem));
  transform: translateY(-48%);
  width: clamp(26rem, 46vw, 44rem);
  color: var(--rose-500);
  pointer-events: none;
  opacity: 0.4;
}
.armature line, .armature polyline, .armature polygon, .armature path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  vector-effect: non-scaling-stroke;
}
.armature .arm-axis { opacity: 0.4; stroke-dasharray: 5 9; }
.armature .arm-phi  { opacity: 0.45; stroke-dasharray: 3 7; }
.armature .arm-node { fill: currentColor; stroke: none; }
.armature text {
  fill: currentColor;
  font-family: var(--body);
  font-size: 30px; font-weight: 600;
  letter-spacing: 5px;
  opacity: 0.8;
}

/* Einzeichnen beim Laden */
.armature .draw {
  stroke-dasharray: var(--len, 2400);
  stroke-dashoffset: var(--len, 2400);
  animation: draw 1.5s var(--ease) forwards;
}
.armature .d1 { animation-delay: 0.15s; }
.armature .d2 { animation-delay: 0.45s; }
.armature .d3 { animation-delay: 0.75s; }
.armature .fade { opacity: 0; animation: fadein 0.9s var(--ease) 1.3s forwards; }
.armature .arm-node.fade { animation-name: fadenode; }

@keyframes draw    { to { stroke-dashoffset: 0; } }
@keyframes fadein  { to { opacity: 0.45; } }
@keyframes fadenode{ to { opacity: 0.9; } }

.hero__credentials {
  display: flex; flex-wrap: wrap; gap: 0 2.2rem;
  margin-top: clamp(3rem, 7vh, 4.5rem);
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  position: relative; z-index: 2;
}
.hero__credentials li {
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.17em; text-transform: uppercase;
  color: var(--muted);
  padding: 0.4rem 0;
}
.hero__credentials b { color: var(--rose-800); font-weight: 700; }

/* Bis 1099 px (Grenze des Burger-Menues) untereinander: Auf Tablet quer
   liefe die Ueberschrift sonst ins Foto. */
@media (max-width: 1099px) {
  /* .hero__figure ist ein Geschwister von .hero__inner, kein Kind davon.
     Deshalb muss .hero selbst zur Spalte werden - sonst stehen Bild und
     Text nebeneinander und quetschen sich gegenseitig. */
  .hero {
    display: block;
    min-height: 0;
    padding-block: 7rem 3.5rem;
  }
  .hero__figure {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 8 / 7;
    max-height: 80svh;
    margin-bottom: clamp(2rem, 7vw, 3rem);
  }
  .hero__figure img { object-position: 50% 16%; }
  .hero__figure::after {
    background: linear-gradient(0deg, var(--rose-100) 1.5%, rgba(247,233,234,0.28) 31.5%, transparent 55%);
    -webkit-mask-image: none;
            mask-image: none;
  }
  .hero__copy { max-width: none; }
  .hero__credentials { margin-top: 2.5rem; }
  /* Auf schmalen Schirmen laege das Raster quer ueber Julianes Gesicht.
     Die Signatur bleibt eine Desktop-Geste. */
  .armature { display: none; }
}

@media (max-width: 620px) {
  .eyebrow { align-items: flex-start; gap: 0.7rem; }
  .eyebrow::before { margin-top: 0.42em; }
  .eyebrow::after { display: none; }
  .hero__figure { aspect-ratio: 1 / 1; }
  .btn { padding: 0.95rem 1.4rem; }
  /* Buttons nebeneinander statt gestapelt: gleich breit, lange Labels brechen im Button um. */
  .btn-row { flex-wrap: nowrap; gap: 0.6rem; }
  .btn-row > .btn {
    flex: 1 1 0; min-width: 0;
    padding: 0.9rem 0.7rem;
    font-size: 0.72rem; letter-spacing: 0.09em;
    text-align: center;
  }
}

/* =========================================================================
   Seitenkopf der Unterseiten
   ========================================================================= */
.pagehead {
  position: relative;
  padding-block: clamp(8.5rem, 18vh, 12rem) clamp(2.5rem, 6vw, 4rem);
  background: var(--rose-100);
  overflow: hidden;
}
.pagehead__inner { position: relative; z-index: 2; }
.pagehead__title { margin-bottom: 1.2rem; }
.pagehead__lede { color: var(--muted); max-width: 46rem; }
.pagehead--image::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background-image: var(--bg);
  background-size: cover; background-position: center;
  filter: saturate(0.75) brightness(1.08);
}
.pagehead--image::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, var(--rose-100) 8%, rgba(247,233,234,0.9) 48%, rgba(247,233,234,0.55));
}

/* =========================================================================
   Inhaltsbausteine
   ========================================================================= */
.split {
  display: grid; gap: clamp(2.5rem, 6vw, 5rem);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 860px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--wide-text { grid-template-columns: 1.15fr 0.85fr; }
  .split--flip .split__media { order: -1; }
}
.split__media { position: relative; }
.split__media img { width: 100%; border-radius: 2px; }
/* Versetzte Roségold-Kante, wie ein Passepartout */
.split__media::before {
  content: ''; position: absolute; z-index: -1;
  inset: -14px -14px 14px 14px;
  border: 1px solid var(--rose-300);
  border-radius: 2px;
}
.split__body h2 { margin-bottom: 1.4rem; }

/* Behandlungen: Editorial-Zeilen, durch Haarlinien getrennt */
.treatments { border-top: 1px solid var(--line); }
.treatment {
  display: grid; gap: 0.8rem clamp(2rem, 5vw, 4.5rem);
  grid-template-columns: 1fr;
  padding-block: clamp(2.2rem, 4vw, 3.2rem);
  border-bottom: 1px solid var(--line-soft);
}
@media (min-width: 800px) {
  .treatment { grid-template-columns: minmax(14rem, 0.85fr) 1.6fr; align-items: start; }
}
.treatment__name {
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.12;
}
.treatment__zone {
  display: block; margin-top: 0.7rem;
  font-family: var(--body);
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--rose-800);
}
.treatment__text { color: var(--muted); }
.treatment__link { margin-top: 0.9rem; font-size: 0.72rem; }
@media (min-width: 800px) { .treatment__link { grid-column: 2; justify-self: start; margin-top: 0; } }

/* Sprungziele (Menuepunkt "Behandlungen", Preisgruppen, "Lehre") landen
   sonst unter der fixen Kopfleiste. */
[id] { scroll-margin-top: 5.5rem; }

/* Qualifikationen */
/* Fest 2x2 statt auto-fit: Bei vier Spalten laeuft "Ernaehrungsberaterin"
   ueber den Kachelrand, bei drei bliebe eine graue Leerflaeche stehen. */
.creds {
  display: grid; gap: 1px;
  grid-template-columns: 1fr;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}
@media (min-width: 700px) { .creds { grid-template-columns: repeat(2, 1fr); } }
.creds__item { background: var(--paper); padding: clamp(1.8rem, 3.5vw, 2.6rem); }
.creds__title { font-family: var(--display); font-size: 1.5rem; margin-bottom: 0.4rem; }
.creds__note {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--rose-800);
}
/* Seitenblock neben einem Text, z. B. der Lehre-Vorgriff auf der Startseite.
   Haarlinie oben statt Kasten, wie der Rest der Seite. */
.aside { border-top: 1px solid var(--line); padding-top: 1.6rem; }
.aside__caption {
  margin: 0 0 0.9rem;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--rose-800);
}
.aside__title { font-family: var(--display); font-size: clamp(1.45rem, 2.4vw, 2rem); line-height: 1.12; margin: 0 0 1rem; }
.aside__text { color: var(--muted); margin-bottom: 1.6rem; }

/* Ohne Kasten - nur Haarlinien */
.creds--plain {
  grid-template-columns: 1fr;
  gap: 0; background: none; border: 0;
  border-top: 1px solid var(--line);
}
.creds--plain .creds__item {
  background: none;
  padding: clamp(1.3rem, 3vw, 1.8rem) 0;
  border-bottom: 1px solid var(--line-soft);
}

.card {
  background: var(--rose-050);
  border: 1px solid var(--line-soft);
  border-radius: 2px;
  padding: clamp(1.8rem, 4vw, 2.8rem);
}
.card h3 { margin-bottom: 0.9rem; }

/* Aufzählung mit Rauten-Marker */
.ticks li {
  position: relative;
  padding-left: 1.9rem;
  margin-bottom: 0.85rem;
  color: var(--muted);
}
.ticks li::before {
  content: ''; position: absolute; left: 0; top: 0.62em;
  width: 6px; height: 6px;
  border: 1px solid var(--rose-500);
  transform: rotate(45deg);
}
.ticks b, .ticks strong { color: var(--ink); font-weight: 600; }

/* --- Preistabelle ------------------------------------------------------ */
/* Schmal: eine Spalte in der Reihenfolge der Preisliste. Die Spalten-Huellen
   treten zurueck (display: contents), die Gruppen sortieren sich per order. */
.pricing {
  border-top: 1px solid var(--rose-300); max-width: 52rem;
  display: flex; flex-direction: column; gap: clamp(2.5rem, 5vw, 3.5rem);
}
.pricing__col { display: contents; }

/* Ab Desktop zweispaltig. Welche Gruppe in welche Spalte kommt, entscheidet
   preise-and-termine/index.php so, dass beide etwa gleich lang sind. */
@media (min-width: 900px) {
  .pricing {
    max-width: none;
    display: grid; grid-template-columns: 1fr 1fr; align-items: start;
    gap: 0 clamp(2.5rem, 5vw, 4.5rem);
  }
  .pricing__col { display: flex; flex-direction: column; gap: clamp(2.5rem, 5vw, 3.5rem); }
}
.pricing__caption {
  display: flex; align-items: baseline; gap: 0.9rem;
  padding-block: 1.4rem 0.9rem;
  font-family: var(--display);
  font-size: 1.35rem;
  color: var(--rose-800);
}
.pricing__caption::after { content: ''; flex: 1; height: 1px; background: var(--line); }
.price {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.3rem 1.5rem;
  align-items: baseline;
  padding-block: 0.95rem;
  border-bottom: 1px solid var(--line-soft);
}
.price__name { font-size: 1.02rem; }
.price__note { grid-column: 1 / -1; font-size: 0.85rem; color: var(--muted-soft); margin-top: -0.15rem; }
.price__value {
  font-family: var(--display);
  font-size: 1.2rem;
  color: var(--rose-800);
  white-space: nowrap;
}
.price__value small { font-family: var(--body); font-size: 0.78em; color: var(--muted); margin-left: 0.1em; }

/* --- Karte mit Zwei-Klick-Ladung --------------------------------------- */
.mapbox {
  position: relative;
  border: 1px solid var(--rose-200);
  border-radius: 2px;
  overflow: hidden;
  background: var(--rose-050);
  aspect-ratio: 16 / 10;
}
@media (max-width: 640px) { .mapbox { aspect-ratio: 4 / 5; } }
.mapbox iframe { width: 100%; height: 100%; border: 0; }

.mapgate {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1.1rem;
  padding: clamp(1.5rem, 5vw, 3rem);
  text-align: center;
  /* Selbst gezeichnetes Raster - es wird nichts von Dritten geladen. */
  background-color: var(--rose-050);
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 44px 44px, 44px 44px;
}
.mapgate__pin { width: 30px; height: 32px; color: var(--rose-800); }
.mapgate__addr { font-family: var(--display); font-size: 1.25rem; }
.mapgate__note { font-size: 0.82rem; color: var(--muted); max-width: 42ch; }
.mapgate__note a { color: var(--rose-800); }

/* Karte und Aussenfoto nebeneinander; auf schmalen Schirmen untereinander. */
.anfahrt { display: grid; gap: clamp(1.5rem, 3vw, 2.5rem); grid-template-columns: 1fr; }
@media (min-width: 900px) {
  .anfahrt { grid-template-columns: 1.25fr 0.75fr; align-items: stretch; }
  .anfahrt .mapbox { aspect-ratio: auto; min-height: 26rem; }
}
.anfahrt__foto { margin: 0; display: flex; flex-direction: column; }
.anfahrt__foto img {
  width: 100%; flex: 1; object-fit: cover; object-position: 50% 50%;
  border-radius: 2px; border: 1px solid var(--rose-200);
}
@media (max-width: 899px) { .anfahrt__foto img { aspect-ratio: 4 / 5; flex: none; } }
.anfahrt__cap { margin-top: 0.8rem; font-size: 0.85rem; color: var(--muted); }

/* --- Kontaktdaten ------------------------------------------------------ */
.contact-list li {
  display: grid; gap: 0.15rem;
  padding-block: 1.15rem;
  border-bottom: 1px solid var(--line-soft);
}
.contact-list li:first-child { border-top: 1px solid var(--line); }
.contact-list dt, .contact-list__label {
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--rose-800);
}
.contact-list__value { font-size: 1.08rem; }
.contact-list__value a { text-decoration: none; border-bottom: 1px solid var(--rose-300); padding-bottom: 1px; }
.contact-list__value a:hover { color: var(--rose-800); border-color: var(--rose-800); }

/* --- Aufruf zum Termin ------------------------------------------------- */
.cta {
  position: relative;
  background: var(--rose-100);
  text-align: center;
  padding-block: clamp(4rem, 9vw, 7rem);
}
.cta h2 { margin-bottom: 1.1rem; }
/* :not(.eyebrow) - sonst erbt die Augenbraue die schmale Textbreite und bricht um. */
.cta p:not(.eyebrow) { color: var(--muted); max-width: 46ch; margin-inline: auto; margin-bottom: 2.2rem; }

/* --- Rechtstexte ------------------------------------------------------- */
/* Laengere Fliesstexte laufen etwas schmaler und ruhiger als der Rest. */
.legal { max-width: 72ch; color: var(--muted); }
.legal h2 { font-size: 1.5rem; margin: 2.8rem 0 0.9rem; color: var(--rose-800); }
.legal h2:first-child { margin-top: 0; }
.legal h3 {
  font-family: var(--body);
  font-size: 0.95rem; font-weight: 600; letter-spacing: 0.02em;
  color: var(--ink);
  margin: 1.9rem 0 0.7rem;
}
.legal p { margin-bottom: 1.05em; }
.legal__liste { margin: 0 0 1.4rem; }
.legal__liste li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.4rem;
}
.legal__liste li::before {
  content: ''; position: absolute; left: 0; top: 0.68em;
  width: 5px; height: 5px;
  border: 1px solid var(--rose-500);
  transform: rotate(45deg);
}
.legal__anschrift { font-size: 1.08rem; color: var(--ink); line-height: 1.7; margin-bottom: 1.4rem; }
/* Der Widerspruchs-Abschnitt steht in der Vorlage in Versalien. Wir behalten
   das bei, nehmen ihm aber mit kleinerem Grad und Sperrung die Schreierei. */
.legal__versal {
  margin: 1.2rem 0 1.6rem;
  padding: 1.4rem 1.6rem;
  background: var(--rose-050);
  border-left: 2px solid var(--rose-300);
  border-radius: 2px;
}
.legal__versal p { font-size: 0.88rem; letter-spacing: 0.02em; line-height: 1.6; }
.legal__versal p:last-child { margin-bottom: 0; }
.legal__stand {
  margin-top: 2.4rem; padding-top: 1.2rem;
  border-top: 1px solid var(--line-soft);
  font-size: 0.88rem; color: var(--muted-soft);
}
.legal a { overflow-wrap: anywhere; }
.legal dl { display: grid; gap: 0; margin: 0; }
.legal dt {
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--rose-800);
  padding-top: 1.4rem;
}
.legal dd {
  margin: 0.3rem 0 0;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--line-soft);
}
.legal a { color: var(--rose-800); }

/* --- Footer: grosser Rosé-Block ---------------------------------------- */
.footer {
  padding-block: clamp(3.5rem, 7vw, 5rem) 2rem;
  background: var(--rose-800);
  color: var(--on-rose);
  /* Auf dem dunkleren Ton braucht der Sekundaertext mehr Deckkraft. */
  --on-rose-muted: rgba(255, 255, 255, 0.88);
}
.footer__top {
  display: grid; gap: clamp(2.5rem, 5vw, 4rem);
  grid-template-columns: 1fr;
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
@media (min-width: 860px) { .footer__top { grid-template-columns: auto 1fr; } }
.brand--footer { color: var(--on-rose); align-items: center; }
.brand--footer .brand__mark { width: 32px; height: 35px; color: var(--on-rose); }
.brand--footer .brand__text { flex-direction: row; align-items: baseline; gap: 0.5em; }
.brand--footer .brand__name { font-size: 1.24rem; letter-spacing: 0.18em; text-transform: none; }
.brand--footer .brand__place {
  font-family: var(--display); font-size: 1.24rem; font-weight: 400;
  letter-spacing: 0.18em; text-transform: none;
  color: var(--on-rose-muted);
}
.footer__cols {
  display: grid; gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
}
/* Fusszeile nach dem Vorbild der Akademieseite: Spaltenkopf klein und
   gesperrt in der Grotesk, die Eintraege darunter in der Serifenschrift mit
   weiter Laufweite. Gleiche Handschrift, andere Schnitte. */
.footer__head {
  font-family: var(--body);
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--on-rose);
  margin-bottom: 1.1rem;
  min-height: 2.2rem;
  display: flex; align-items: flex-end;
}
.footer__col, .footer__list { color: var(--on-rose-muted); }
.footer__list li { margin-bottom: 0.1rem; }
/* Alles im Fussbereich in derselben Schrift und Groesse wie die Anschrift.
   Die Verwandtschaft zur Akademieseite traegt hier der gesperrte Spaltenkopf,
   nicht der Schriftwechsel. */
.footer__anschrift,
.footer__list a,
.footer__legal a,
.footer__telefon {
  font-family: var(--body);
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  line-height: 1.6;
  text-decoration: none;
}
.footer__list a,
.footer__legal a,
.footer__telefon {
  display: block;
  padding-block: 0.28rem;
  transition: color 0.25s var(--ease);
}
.footer__list a:hover, .footer__telefon:hover { color: #fff; }
.footer__hint {
  font-size: 0.95rem; letter-spacing: 0.03em;
  color: var(--on-rose-muted);
  margin-top: 0.6rem;
}
.footer .btn--ghost { border-color: var(--on-rose-line); color: var(--on-rose); }
.footer .btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,0.12); }
.footer__bottom {
  display: flex; flex-wrap: wrap; gap: 1rem 2rem;
  justify-content: space-between; align-items: center;
  padding-top: 1.8rem;
  border-top: 1px solid var(--on-rose-line);
  font-size: 0.82rem; color: var(--on-rose-muted);
}
.footer__copy { margin: 0; }
.footer__legal { display: flex; gap: 1.8rem; }
.footer__legal a { padding-block: 0; }
.footer__legal a:hover { color: #fff; }
.footer__copy { letter-spacing: 0.03em; }

/* --- Auftauchen beim Scrollen ------------------------------------------ */
/* Nur wenn JavaScript laeuft (head.php setzt die Klasse js am html-Element).
   Ohne Skript bleibt alles sichtbar - sonst staenden leere Abschnitte da. */
.js .reveal { opacity: 0; transform: translateY(18px); }
.reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

/* =========================================================================
   Der Praxisraum - das warme Foto bekommt Platz
   ========================================================================= */
.room { position: relative; background: var(--rose-050); }
.room__grid {
  display: grid; grid-template-columns: 1fr; align-items: stretch;
  /* Wie der Hero: auf breiten Schirmen im 1440er-Rahmen statt randlos. */
  max-width: var(--frame); margin-inline: auto;
}
@media (min-width: 900px) { .room__grid { grid-template-columns: 48% 52%; } }

.room__figure { position: relative; margin: 0; min-height: clamp(26rem, 76vh, 44rem); overflow: hidden; }
.room__figure img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: 52% 46%;
  filter: saturate(1.04) contrast(1.01);
}
/* Weiche Kante nach rechts, damit das Foto ins Rosé laeuft. */
.room__figure::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 72%, rgba(252,245,245,0.9) 100%);
}
/* Das Aussenfoto zeigt oben das Schild und unten die Tuer - beides soll
   stehen bleiben, also mittig statt leicht nach oben beschnitten. */
.room__figure--aussen img { object-position: 50% 50%; filter: none; }
/* Jenseits des Rahmens laeuft das Foto links weich ins Rosé aus. */
@media (min-width: 1441px) {
  .room__figure img {
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 16%);
            mask-image: linear-gradient(90deg, transparent 0, #000 16%);
  }
}
@media (max-width: 899px) {
  /* Tablet: quadratisch, sonst fuellt das Foto den ganzen Schirm.
     Handy (unter 620 px): Hochformat, siehe unten. */
  .room__figure { min-height: 0; aspect-ratio: 1 / 1; }
  .room__figure::after {
    background: linear-gradient(0deg, rgba(252,245,245,0.92) 1%, transparent 22%);
  }
}
@media (max-width: 620px) { .room__figure { aspect-ratio: 4 / 5; } }
.room__body {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(3rem, 7vw, 6.5rem) var(--gutter);
  max-width: 42rem;
}

/* =========================================================================
   RedTouch Pro - der eine gesaettigte Rosé-Block
   Rosé-600 statt des Markentons: Auf Rosé-500 kaeme selbst reines Weiss nur
   auf 3,8:1. Auf Rosé-600 sind es 4,7:1 - deshalb steht hier auch der
   Fliesstext in vollem Weiss und nicht in der abgeschwaechten Stufe.
   ========================================================================= */
.laser {
  padding-block: clamp(3.5rem, 7vw, 6rem) var(--section);
  background: var(--rose-600);
  color: var(--on-rose);
  --on-rose-muted: #FFFFFF;
}
.laser h2, .laser h3 { color: var(--on-rose); }
.laser .lede, .laser .muted { color: var(--on-rose-muted); }
.laser .eyebrow { color: var(--on-rose); }
.laser .eyebrow::after { background: var(--on-rose-line); }
.laser .ticks li { color: var(--on-rose-muted); }
.laser .ticks li::before { border-color: var(--on-rose); }
.laser .ticks b, .laser .ticks strong { color: var(--on-rose); font-weight: 600; }
.laser .btn--ghost { border-color: var(--on-rose-line); color: var(--on-rose); }
.laser .btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,0.12); }
.laser .btn--rose { background: #fff; color: var(--rose-800); }
.laser .btn--rose:hover { background: var(--rose-050); }

.laser__grid { display: grid; gap: clamp(2.5rem, 6vw, 5rem); grid-template-columns: 1fr; align-items: center; }
@media (min-width: 900px) { .laser__grid { grid-template-columns: 1.12fr 0.88fr; } }

.laser__figure { margin: 0; position: relative; }
.laser__figure img {
  width: 100%; max-width: 27rem; margin-inline: auto;
  /* Der graue Studiohintergrund wird weich ausgeblendet, sodass nur das
     Geraet stehen bleibt - kein aufgeklebtes Rechteck auf dem Rosé. */
  -webkit-mask-image: radial-gradient(ellipse 58% 66% at 52% 50%, #000 40%, transparent 80%);
  mask-image: radial-gradient(ellipse 58% 66% at 52% 50%, #000 40%, transparent 80%);
}

/* Untereinander waere das Hochformat-Geraet fast bildschirmhoch. */
@media (max-width: 899px) { .laser__figure img { max-width: 12rem; } }

/* Die Wellenlaengen-Skala: das Alleinstellungsmerkmal, sichtbar gemacht. */
.spectrum {
  margin: clamp(2.2rem, 5vw, 3rem) 0 0;
  padding: 1.9rem 0 1.5rem;
  border-top: 1px solid var(--rose-300);
  border-bottom: 1px solid var(--line-soft);
  max-width: 30rem;
}
.spectrum__svg { width: 100%; height: auto; overflow: visible; }
.spectrum__axis,
.spectrum__ticks line { stroke: var(--rose-800); stroke-width: 1; opacity: 0.55; }
.spectrum__stem { stroke: var(--rose-800); stroke-width: 1; opacity: 0.85; }
.spectrum__dot  { fill: var(--rose-800); }
.spectrum__mark {
  fill: var(--rose-800); font-family: var(--body);
  font-size: 19px; font-weight: 700; letter-spacing: 0.06em;
}
.spectrum__end {
  fill: var(--muted); font-family: var(--body);
  font-size: 13px; letter-spacing: 0.14em;
}
.spectrum__cap { margin: 1rem 0 0; font-size: 0.87rem; color: var(--muted); }

/* Auf dem gesaettigten Block dreht sich die Skala auf Weiss. */
.laser .spectrum { border-top-color: var(--on-rose-line); border-bottom-color: rgba(255,255,255,0.16); }
.laser .spectrum__axis, .laser .spectrum__ticks line { stroke: #fff; opacity: 0.5; }
.laser .spectrum__stem { stroke: #fff; opacity: 0.9; }
.laser .spectrum__dot  { fill: #fff; }
.laser .spectrum__mark { fill: #fff; }
.laser .spectrum__end  { fill: var(--on-rose-muted); }
.laser .spectrum__cap  { color: var(--on-rose-muted); }

/* =========================================================================
   Formular
   ========================================================================= */
.form { margin-top: 2.2rem; max-width: 34rem; }
.form__row { margin-bottom: 1.4rem; }
.form__label {
  display: block; margin-bottom: 0.5rem;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--rose-800);
}
.form__input, .form__area {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--paper);
  border: 1px solid var(--rose-200);
  border-radius: 2px;
  color: var(--ink);
  font: inherit;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.form__area { resize: vertical; min-height: 8rem; }
.form__input:focus, .form__area:focus {
  border-color: var(--rose-800);
  box-shadow: 0 0 0 3px var(--rose-100);
  outline: none;
}
.form__datenschutz { font-size: 0.88rem; color: var(--muted); line-height: 1.55; margin-bottom: 1.2rem; }
.form__hint { font-size: 0.8rem; color: var(--muted); margin-bottom: 1.6rem; }
.form__error { color: #B3261E; font-size: 0.85rem; margin-top: 0.4rem; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .armature .draw { stroke-dashoffset: 0; }
  .armature .fade { opacity: 0.45; }
  .armature .arm-node.fade { opacity: 0.9; }
}

/* --- Formular: Ergaenzungen fuer das uebernommene Kontaktformular ------- */

/* Der Honigtopf. Nicht display:none - manche Roboter ueberspringen genau das.
   Er steht ausserhalb des Bildes und ist fuer die Tastatur nicht erreichbar. */
.honigtopf {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}

.form__optional {
  font-weight: 400; letter-spacing: 0.12em;
  color: var(--muted-soft);
}
.form__select {
  appearance: none;
  cursor: pointer;
  padding-right: 2.6rem;
  /* Der Pfeil als Hintergrundbild, damit kein Zeichensatz noetig ist. */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%237E4551' stroke-width='1.4' d='M1 1.5 6 6.5l5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px 8px;
}
.form__datenschutz a { color: var(--rose-800); }

.form__meldung {
  margin-top: 1.4rem;
  padding: 1rem 1.2rem;
  border-left: 2px solid var(--rose-500);
  background: var(--rose-050);
  font-size: 0.95rem;
}
.form__meldung--fehler {
  border-left-color: #B3261E;
  background: #FBEFEE;
  color: #7A1F19;
}

/* =========================================================================
   Aktuelles — Instagram, ohne wie Instagram auszusehen
   Kein Quadratraster, keine Kacheln mit Rahmen: Hochformat 4:5 wie
   room__figure, Haarlinien wie treatments und pricing, drei Beitraege statt
   neun. Die Seite gliedert mit Linien, nicht mit Kaesten.
   ========================================================================= */
.news__kopf { max-width: 44rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }

.news__liste {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
}
@media (min-width: 700px) {
  .news__liste { grid-template-columns: repeat(3, 1fr); }
}

/* Unter 700 px nebeneinander zum Wischen. Der Streifen laeuft bis an beide
   Kanten, damit am Rand ein angeschnittener Beitrag steht — das ist der
   Hinweis, dass es weitergeht, und er kommt ohne Pfeile aus. */
@media (max-width: 699px) {
  .news__liste {
    grid-auto-flow: column;
    grid-auto-columns: min(76%, 20rem);
    grid-template-columns: none;
    gap: 1.4rem;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    margin-inline: calc(var(--gutter) * -1);
    padding-inline: var(--gutter);
    padding-bottom: 0.5rem;
    scrollbar-width: none;
  }
  .news__liste::-webkit-scrollbar { display: none; }
  .news__item { scroll-snap-align: start; }
}

.news__item {
  border-top: 1px solid var(--line);
  padding-top: 1.15rem;
}

.news__link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.4s var(--ease);
}
.news__link:hover { transform: translateY(-2px); }

.news__figur {
  position: relative;
  margin: 0 0 1.15rem;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
  background: var(--rose-100);
}
.news__figur img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.news__link:hover .news__figur img { transform: scale(1.035); }

/* Das Standbild eines Reels bekommt ein kleines Zeichen, mehr nicht —
   ein Instagram-Player waere wieder ein Skript von Meta. */
.news__play {
  position: absolute;
  left: 0.9rem; bottom: 0.9rem;
  width: 2.1rem; height: 2.1rem;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
}
.news__play svg { width: 1.15rem; height: 1.15rem; fill: var(--rose-800); }
.news__art {
  position: absolute;
  left: -9999px;              /* nur fuer Vorleseprogramme */
}

.news__datum {
  margin: 0 0 0.55rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-soft);
}

/* Die Unterschrift in der Serifenschrift der Seite — dieselbe Stimme wie die
   Ueberschriften, nicht die eines Posts. */
.news__text {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.02rem, 1.5vw, 1.16rem);
  line-height: 1.45;
  color: var(--ink);
}

.news__fuss { margin: clamp(2.4rem, 5vw, 3.4rem) 0 0; }
