/* ==========================================================================
   Hafenschnitt – Barbershop für Männer & Jungs, Greifswald
   Stylesheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Fonts (lokal eingebunden – keine Verbindung zu Google-Servern, DSGVO-konform)
   -------------------------------------------------------------------------- */

@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url('../fonts/fraunces-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url('../fonts/fraunces-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 500 700;
  font-display: swap;
  src: url('../fonts/fraunces-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 500 700;
  font-display: swap;
  src: url('../fonts/fraunces-italic-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* --------------------------------------------------------------------------
   2. Design-Tokens
   -------------------------------------------------------------------------- */

:root {
  /* Basis – kühles, modernes Hellgrau (Barbershop-Look) */
  --c-cream: #f4f5f6;
  --c-nude: #e9eaec;
  --c-sand: #dcdee1;
  --c-sand-deep: #c7cace;

  /* Akzent – warmes Messing/Bronze (klassische Barber-Anmutung).
     Variablennamen (rose*) bleiben aus Kompatibilitätsgründen erhalten,
     tragen aber die neue Messing-Farbfamilie. */
  --c-rose: #a4813d;        /* Messing – Ränder, Unterstriche, Fokus */
  --c-rose-deep: #7c5e22;   /* dunkles Messing – Textakzente (≥ 4,5:1 auf Hellgrau) */
  --c-rose-soft: #e6dcc4;   /* helle Messing-Tönung – Auswahl, Glanz */
  --c-champagne: #c9ad6f;   /* warmes Gold – Akzent auf dunklen Flächen */

  /* Kontrast – kühles Graphit statt Espresso-Braun */
  --c-espresso: #1e2124;
  --c-espresso-mid: #4a4f55;
  --c-espresso-soft: #676c73;

  --c-white: #ffffff;

  /* Typo */
  --font-display: 'Fraunces', 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* Maße */
  --wrap: 1180px;
  --wrap-narrow: 780px;
  --radius-sm: 6px;
  --radius: 14px;
  --radius-lg: 26px;

  --header-h: 78px;

  --shadow-sm: 0 2px 10px rgba(30, 33, 36, 0.06);
  --shadow: 0 10px 34px rgba(30, 33, 36, 0.1);
  --shadow-lg: 0 24px 60px rgba(30, 33, 36, 0.16);

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

/* --------------------------------------------------------------------------
   3. Reset & Basis
   -------------------------------------------------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  background: var(--c-cream);
  color: var(--c-espresso);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img,
picture,
video,
canvas {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button {
  font: inherit;
  color: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 0.5em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.6rem, 7vw, 5rem);
}
h2 {
  font-size: clamp(2rem, 4.4vw, 3.1rem);
}
h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
}

p {
  margin: 0 0 1.1em;
  text-wrap: pretty;
}

p:last-child {
  margin-bottom: 0;
}

::selection {
  background: var(--c-rose-soft);
  color: var(--c-espresso);
}

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

.visually-hidden {
  position: absolute !important;
  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: 12px;
  top: -100px;
  z-index: 999;
  background: var(--c-espresso);
  color: var(--c-cream);
  padding: 0.7rem 1.2rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: top 0.2s var(--ease);
}

.skip-link:focus {
  top: 12px;
}

/* --------------------------------------------------------------------------
   4. Layout-Helfer
   -------------------------------------------------------------------------- */

.wrap {
  width: min(100% - 2.5rem, var(--wrap));
  margin-inline: auto;
}

.wrap-narrow {
  width: min(100% - 2.5rem, var(--wrap-narrow));
  margin-inline: auto;
}

.section {
  padding: clamp(4rem, 9vw, 7.5rem) 0;
  position: relative;
}

.section--tint {
  background: var(--c-nude);
}

.section--dark {
  background: var(--c-espresso);
  color: var(--c-cream);
}

.section--dark h2,
.section--dark h3 {
  color: var(--c-cream);
}

.section-head {
  max-width: 44rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  position: relative;
}

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

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-rose-deep);
  margin-bottom: 1rem;
}

.section--dark .eyebrow {
  color: var(--c-champagne);
}

.lead {
  font-size: clamp(1.08rem, 1.6vw, 1.25rem);
  color: var(--c-espresso-mid);
  line-height: 1.75;
}

.section--dark .lead {
  color: rgba(244, 245, 246, 0.78);
}

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */

.btn {
  --btn-bg: var(--c-espresso);
  --btn-fg: var(--c-cream);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.9rem;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  isolation: isolate;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    background-color 0.3s var(--ease), color 0.3s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn:active {
  transform: translateY(0);
}

.btn--light {
  --btn-bg: var(--c-white);
  --btn-fg: var(--c-espresso);
  border-color: var(--c-sand);
}

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--c-espresso);
  border-color: rgba(30, 33, 36, 0.25);
}

.btn--ghost:hover {
  background: rgba(30, 33, 36, 0.05);
}

.section--dark .btn--ghost {
  --btn-fg: var(--c-cream);
  border-color: rgba(244, 245, 246, 0.35);
}

.section--dark .btn--ghost:hover {
  background: rgba(244, 245, 246, 0.08);
}

/* Der Hero liegt auf der dunklen GridMotion-Vignette. Der Ghost-Button bekommt
   deshalb – wie in dunklen Sektionen – helle Schrift/Kante, plus eine leichte
   Blur-Füllung, damit er auch über den Bildkacheln gut lesbar bleibt. */
.hero .btn--ghost {
  --btn-fg: var(--c-cream);
  border-color: rgba(244, 245, 246, 0.55);
  background: rgba(30, 33, 36, 0.28);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.hero .btn--ghost:hover {
  background: rgba(30, 33, 36, 0.42);
  border-color: rgba(244, 245, 246, 0.75);
}

.btn--rose {
  --btn-bg: var(--c-rose);
  --btn-fg: var(--c-white);
}

.btn--sm {
  padding: 0.6rem 1.15rem;
  min-height: 40px;
  font-size: 0.86rem;
}

.btn svg {
  flex: none;
  width: 1.05em;
  height: 1.05em;
}

/* CSS-Fallback-Glanz für die Haupt-CTAs.
   Bleibt auch dann sichtbar, wenn der WebGL-Spekular-Effekt nicht startet. */
.btn[data-specular] {
  background-image: linear-gradient(
    115deg,
    rgba(201, 173, 111, 0) 20%,
    rgba(201, 173, 111, 0.45) 48%,
    rgba(201, 173, 111, 0) 76%
  );
  background-size: 260% 100%;
  background-position: 130% 0;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    background-position 0.85s var(--ease);
}

.btn[data-specular]:hover {
  background-position: -30% 0;
}

.btn[data-specular]::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    140deg,
    rgba(201, 173, 111, 0.9),
    rgba(230, 220, 196, 0.15) 45%,
    rgba(201, 173, 111, 0.75)
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0.75;
  pointer-events: none;
}

/* Wenn das WebGL-Modul erfolgreich übernimmt, wird der CSS-Verlauf
   zurückgenommen und der Canvas darf über den Buttonrand hinausragen. */
.btn[data-specular].is-webgl {
  background-image: none;
  overflow: visible;
}

.btn[data-specular].is-webgl::after {
  display: none;
}

/* Canvas ragt 20px über den Button hinaus, damit der Rand-Glow außen
   ausbluten kann (PAD im JS-Modul). */
.specular-fx {
  position: absolute;
  inset: -20px;
  pointer-events: none;
  z-index: 1;
}

.specular-fx canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.specular-label {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

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

.btn-row--center {
  justify-content: center;
}

/* --------------------------------------------------------------------------
   6. Header
   -------------------------------------------------------------------------- */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 245, 246, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(30, 33, 36, 0.08);
  transition: box-shadow 0.3s var(--ease), background-color 0.3s var(--ease);
}

.header.is-scrolled {
  box-shadow: var(--shadow-sm);
  background: rgba(244, 245, 246, 0.95);
}

/* min-height statt height: verhindert Umbruch-/Stapelprobleme bei mittleren Breiten */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h);
  flex-wrap: nowrap;
}

.brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.1;
  flex: none;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.brand__sub {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-espresso-soft);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: nowrap;
}

.nav a {
  position: relative;
  font-size: 0.94rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  padding: 0.25rem 0;
  color: var(--c-espresso-mid);
  transition: color 0.25s var(--ease);
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--c-rose);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

.nav a:hover,
.nav a[aria-current='page'] {
  color: var(--c-espresso);
}

.nav a:hover::after,
.nav a[aria-current='page']::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex: none;
}

.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(30, 33, 36, 0.16);
  color: var(--c-espresso-mid);
  text-decoration: none;
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease),
    border-color 0.25s var(--ease);
}

.icon-link:hover {
  background: var(--c-espresso);
  border-color: var(--c-espresso);
  color: var(--c-cream);
}

.icon-link svg {
  width: 19px;
  height: 19px;
}

.burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(30, 33, 36, 0.16);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.burger__lines,
.burger__lines::before,
.burger__lines::after {
  display: block;
  width: 19px;
  height: 1.5px;
  background: var(--c-espresso);
  border-radius: 2px;
  transition: transform 0.32s var(--ease), opacity 0.2s var(--ease);
}

.burger__lines::before,
.burger__lines::after {
  content: '';
  position: absolute;
}

.burger__lines::before {
  transform: translateY(-6px);
}

.burger__lines::after {
  transform: translateY(6px);
}

.burger[aria-expanded='true'] .burger__lines {
  background: transparent;
}

.burger[aria-expanded='true'] .burger__lines::before {
  transform: rotate(45deg);
}

.burger[aria-expanded='true'] .burger__lines::after {
  transform: rotate(-45deg);
}

/* Mobile-Menü */
.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: 99;
  background: var(--c-cream);
  padding: 2rem 0 3rem;
  overflow-y: auto;
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease),
    visibility 0.3s;
}

.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-nav a {
  display: block;
  font-family: var(--font-display);
  font-size: 1.65rem;
  text-decoration: none;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(30, 33, 36, 0.08);
}

.mobile-nav .btn {
  margin-top: 1.8rem;
  width: 100%;
}

.mobile-nav__meta {
  margin-top: 2.2rem;
  font-size: 0.92rem;
  color: var(--c-espresso-soft);
}

body.nav-open {
  overflow: hidden;
}

@media (max-width: 940px) {
  .nav {
    display: none;
  }
  .burger {
    display: inline-flex;
    position: relative;
  }
  .header-actions .btn--desktop {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   7. Hero mit GridMotion
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  height: min(100vh, 900px);
  min-height: 560px;
  overflow: hidden;
  background: var(--c-nude);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Der gedrehte Bild-Teppich. Auch ohne JS voll sichtbar. */
.grid-motion {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.grid-motion__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 170%;
  transform: translate(-50%, -50%) rotate(-15deg);
  transform-origin: center;
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  gap: 1rem;
}

.grid-motion__row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1rem;
  will-change: transform;
}

/* Startversatz der Reihen: sorgt schon ohne GSAP für ein lebendiges Bild */
.grid-motion__row:nth-child(1) {
  transform: translateX(-3%);
}
.grid-motion__row:nth-child(2) {
  transform: translateX(4%);
}
.grid-motion__row:nth-child(3) {
  transform: translateX(-5%);
}
.grid-motion__row:nth-child(4) {
  transform: translateX(2%);
}

.grid-motion__tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--c-sand);
}

.grid-motion__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Warme Espresso-Vignette über dem Grid */
.grid-motion__veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(30, 33, 36, 0.5) 0%,
    rgba(30, 33, 36, 0.72) 55%,
    rgba(30, 33, 36, 0.88) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--c-cream);
  padding: 2rem 1.5rem;
  max-width: 46rem;
}

.hero__title {
  color: var(--c-cream);
  margin-bottom: 0.3em;
  text-shadow: 0 2px 30px rgba(30, 33, 36, 0.4);
}

.hero__sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.15rem, 2.6vw, 1.7rem);
  color: var(--c-champagne);
  margin-bottom: 1rem;
}

.hero__claim {
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  color: rgba(244, 245, 246, 0.85);
  max-width: 34rem;
  margin: 0 auto 2.2rem;
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 1.7rem;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(244, 245, 246, 0.65);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hero__scroll::after {
  content: '';
  width: 1px;
  height: 34px;
  background: linear-gradient(rgba(244, 245, 246, 0.6), transparent);
}

@media (max-width: 760px) {
  .grid-motion__inner {
    width: 200%;
    height: 190%;
  }
  .grid-motion__row,
  .grid-motion__inner {
    gap: 0.6rem;
  }
}

/* --------------------------------------------------------------------------
   8. ShapeBlur-Container (dezente WebGL-Akzente)
   -------------------------------------------------------------------------- */

.shape-blur {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.6s var(--ease);
}

.shape-blur canvas {
  width: 100%;
  height: 100%;
}

/* Deckkraft kommt pro Akzent aus data-opacity (vom JS-Modul gesetzt). */
.shape-blur.is-active {
  opacity: var(--shape-blur-opacity, 1);
}

.section-head {
  z-index: 1;
}

.section-head > * {
  position: relative;
  z-index: 1;
}

/* --- Aura-Effekte hinter Bildern ---------------------------------------
   Die Shader zeichnen ihre Form relativ zur KÜRZEREN Containerseite:
     VAR 2 (Kreis-Stroke): Ringradius  = 0.29 × kürzere Seite
     VAR 3 (Dreieck):      Flanke bis  = 0.35 × kürzere Seite
   u_shapeSize wird von beiden Variationen ignoriert. Damit die Form hinter
   dem Bild hervorschimmert, muss also der CONTAINER größer sein als das Bild –
   daher die kräftigen negativen Insets. Feinjustierung nur hier.
   ---------------------------------------------------------------------- */

/* Rechteck-Aura (VAR 0) hinter dem großen Gruppen-Foto.
   Der Container ist nur leicht größer als das Foto; der Ring läuft dadurch als
   schmale Kontur direkt an den Bildkanten entlang. Das Seitenverhältnis
   übernimmt das JS-Modul automatisch aus der Containergröße. */
.shape-blur--aura {
  /* Großzügiger Puffer nach außen: der Ring liegt bei ~11 % / ~89 % der
     Containerseiten, der Rest ist Auslaufzone. Nötig, weil der Stroke in der
     Nähe des Cursors deutlich breiter und weicher wird (sdfCircle steuert im
     Shader die Kantenweichheit) – ohne Puffer endet dieser Schein hart an der
     Canvas-Kante. */
  inset: -16%;
  width: auto;
  height: auto;

  /* Weiches Ausblenden zu allen vier Seiten.
     Bewusst zwei lineare Verläufe mit "intersect" statt eines radialen
     Ellipsen-Verlaufs: der Ring ist ein Rechteck, seine Ecken liegen radial
     deutlich weiter außen als seine Kantenmitten (bei gleicher Ellipsen-
     Position ~80 % gegenüber ~57 %). Eine Ellipsen-Maske würde die Ringecken
     also wegblenden, während die Kanten noch voll sichtbar sind. Die beiden
     linearen Verläufe blenden dagegen an allen vier Seiten gleichmäßig aus. */
  -webkit-mask-image: linear-gradient(
      to right,
      transparent 0%,
      #000 8%,
      #000 92%,
      transparent 100%
    ),
    linear-gradient(
      to bottom,
      transparent 0%,
      #000 8%,
      #000 92%,
      transparent 100%
    );
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(
      to right,
      transparent 0%,
      #000 8%,
      #000 92%,
      transparent 100%
    ),
    linear-gradient(
      to bottom,
      transparent 0%,
      #000 8%,
      #000 92%,
      transparent 100%
    );
  mask-composite: intersect;
}

/* Dreieck-Aura hinter der mittleren Team-Karte.
   Foto ca. 374 × 499 → Container ca. 592 × 679 → Flanken ragen seitlich
   rund 20 px über die Bildkanten hinaus. */
.shape-blur--aura-card {
  inset: -18% -29%;
  width: auto;
  height: auto;
}

/* Akzent hinter Team-Fotos (Hover) */
.shape-blur--card {
  inset: -12%;
  width: auto;
  height: auto;
}

/* --------------------------------------------------------------------------
   9. Über den Salon
   -------------------------------------------------------------------------- */

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.about__media {
  position: relative;
}

.about__media img {
  /* position/z-index: liegt über der ShapeBlur-Aura, verdeckt also deren Mitte */
  position: relative;
  z-index: 1;
  width: 100%;
  /* height: auto ist nötig, sonst gewinnt das height-Attribut des <img>
     und aspect-ratio wird ignoriert. */
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.about__badge {
  position: absolute;
  /* z-index: 2 – muss über dem Bild liegen. Das <img> hat z-index: 1 (wegen der
     Aura dahinter); ohne eigenen z-index läge das Badge als "auto" auf Ebene 0
     und verschwände hinter dem Foto. */
  z-index: 2;
  right: -1.2rem;
  bottom: -1.2rem;
  background: var(--c-espresso);
  color: var(--c-cream);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  box-shadow: var(--shadow);
  max-width: 14rem;
}

.about__badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.2;
}

.about__badge span {
  font-size: 0.8rem;
  color: rgba(244, 245, 246, 0.7);
}

.quote {
  border-left: 2px solid var(--c-rose);
  padding-left: 1.4rem;
  margin: 2rem 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.5;
  color: var(--c-espresso);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.8rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.42rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--c-sand-deep);
  background: var(--c-white);
  font-size: 0.84rem;
  color: var(--c-espresso-mid);
}

@media (max-width: 860px) {
  .about {
    grid-template-columns: 1fr;
  }
  .about__badge {
    right: 1rem;
    bottom: -1rem;
  }
}

/* --------------------------------------------------------------------------
   10. Leistungen
   -------------------------------------------------------------------------- */

/* Feste Spaltenzahl statt auto-fit: 3 auf Desktop, 2 auf Tablet, 1 auf Mobile.
   Damit gibt es keine wechselnden 4+3- oder 3+3+1-Reihen mehr. */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 1.4rem;
}

@media (max-width: 900px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--c-white);
  border: 1px solid rgba(30, 33, 36, 0.07);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease),
    border-color 0.4s var(--ease);
}

.service-card::before {
  content: '';
  position: absolute;
  inset: auto auto 0 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--c-rose), var(--c-champagne));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--c-nude);
  color: var(--c-rose-deep);
  margin-bottom: 1.2rem;
}

.service-card__icon svg {
  width: 22px;
  height: 22px;
}

.service-card h3 {
  margin-bottom: 0.5rem;
}

.service-card p {
  color: var(--c-espresso-mid);
  font-size: 0.97rem;
}

/* Jede Preisangabe steht in einem eigenen span und bekommt eine eigene Zeile.
   nowrap verhindert, dass eine einzelne Angabe in sich selbst umbricht. */
.service-card__price {
  margin-top: auto;
  padding-top: 1.3rem;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--c-rose-deep);
}

.service-card__price span {
  display: block;
  white-space: nowrap;
}

.service-card__price span + span {
  margin-top: 0.2rem;
}

/* Volle Breite als Abschlusszeile des Rasters. Auf Desktop liegen Icon, Text
   und Preis nebeneinander, damit die Karte nicht wie eine gedehnte Kachel wirkt. */
.service-card--wide {
  grid-column: 1 / -1;
}

@media (min-width: 700px) {
  .service-card--wide {
    flex-direction: row;
    align-items: center;
    gap: 1.8rem;
  }

  .service-card--wide .service-card__icon {
    margin-bottom: 0;
    flex: none;
  }

  .service-card--wide .service-card__body {
    flex: 1;
  }

  .service-card--wide .service-card__body h3 {
    margin-bottom: 0.3rem;
  }

  .service-card--wide .service-card__price {
    margin-top: 0;
    padding-top: 0;
    flex: none;
    text-align: right;
  }
}

/* Preisliste */
.price-block + .price-block {
  margin-top: 2.6rem;
}

.price-block h3 {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1rem;
}

.price-block h3::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--c-sand-deep);
}

.price-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.price-list li {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  padding: 0.62rem 0;
  border-bottom: 1px dashed rgba(30, 33, 36, 0.14);
  font-size: 1rem;
}

.price-list li:last-child {
  border-bottom: 0;
}

.price-list .price-list__dots {
  flex: 1;
  border-bottom: 1px dotted rgba(30, 33, 36, 0.22);
  transform: translateY(-4px);
}

.price-list .price-list__value {
  font-weight: 600;
  white-space: nowrap;
  color: var(--c-espresso);
}

.price-note {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--c-espresso-soft);
}

/* --------------------------------------------------------------------------
   11. Team
   -------------------------------------------------------------------------- */

/* Zwischenüberschrift innerhalb der zusammengeführten Salon-&-Team-Sektion */
.subhead {
  text-align: center;
  margin: clamp(3.5rem, 8vw, 5.5rem) auto clamp(2rem, 4vw, 3rem);
  max-width: 40rem;
}

.subhead h3 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin-bottom: 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 1.8rem;
}

.team-card {
  position: relative;
  text-align: center;
}

.team-card__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
  margin-bottom: 1.2rem;
}

.team-card__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  /* height: auto ist nötig, sonst gewinnt das height-Attribut des <img>
     und aspect-ratio wird ignoriert. */
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.team-card:hover .team-card__media img {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.team-card h3 {
  margin-bottom: 0.15rem;
}

.team-card__role {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-rose-deep);
  margin-bottom: 0.7rem;
}

.team-card p {
  font-size: 0.95rem;
  color: var(--c-espresso-mid);
}

/* --------------------------------------------------------------------------
   12. Galerie
   -------------------------------------------------------------------------- */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
  gap: 1rem;
}

.gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--c-sand);
}

.gallery img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.gallery figure:hover img {
  transform: scale(1.05);
}

.gallery figure:nth-child(1),
.gallery figure:nth-child(6) {
  grid-row: span 2;
}

.gallery figure:nth-child(1) img,
.gallery figure:nth-child(6) img {
  aspect-ratio: 1 / 2.06;
}

@media (max-width: 620px) {
  .gallery figure:nth-child(1),
  .gallery figure:nth-child(6) {
    grid-row: span 1;
  }
  .gallery figure:nth-child(1) img,
  .gallery figure:nth-child(6) img {
    aspect-ratio: 1;
  }
}

/* --------------------------------------------------------------------------
   13. Testimonials
   -------------------------------------------------------------------------- */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 1.4rem;
}

.testimonial {
  background: rgba(244, 245, 246, 0.06);
  border: 1px solid rgba(244, 245, 246, 0.14);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
}

.testimonial__stars {
  color: var(--c-champagne);
  letter-spacing: 0.18em;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.testimonial blockquote {
  margin: 0 0 1.2rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--c-cream);
}

.testimonial figcaption {
  font-size: 0.86rem;
  color: rgba(244, 245, 246, 0.65);
}

/* --------------------------------------------------------------------------
   14. Öffnungszeiten & Status
   -------------------------------------------------------------------------- */

.hours-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

@media (max-width: 860px) {
  .hours-layout {
    grid-template-columns: 1fr;
  }
}

.hours {
  list-style: none;
  margin: 0;
  padding: 0;
  background: var(--c-white);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.8rem;
  box-shadow: var(--shadow-sm);
}

.hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(30, 33, 36, 0.08);
  font-size: 1rem;
}

.hours li:last-child {
  border-bottom: 0;
}

.hours li.is-today {
  font-weight: 700;
  color: var(--c-rose-deep);
}

.hours__day {
  color: var(--c-espresso-mid);
}

.hours li.is-today .hours__day {
  color: inherit;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  background: var(--c-white);
  border: 1px solid var(--c-sand-deep);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.4rem;
}

.status-badge__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--c-espresso-soft);
  flex: none;
}

.status-badge[data-state='open'] .status-badge__dot {
  background: #4f9a63;
  box-shadow: 0 0 0 4px rgba(79, 154, 99, 0.18);
}

.status-badge[data-state='soon'] .status-badge__dot {
  background: #d29a3d;
  box-shadow: 0 0 0 4px rgba(210, 154, 61, 0.18);
}

.status-badge[data-state='closed'] .status-badge__dot {
  background: #b45a4b;
  box-shadow: 0 0 0 4px rgba(180, 90, 75, 0.16);
}

/* --------------------------------------------------------------------------
   15. Kontakt
   -------------------------------------------------------------------------- */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

.contact-list {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
}

.contact-list li {
  display: flex;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(30, 33, 36, 0.09);
}

.contact-list li:last-child {
  border-bottom: 0;
}

.contact-list svg {
  flex: none;
  width: 20px;
  height: 20px;
  margin-top: 4px;
  color: var(--c-rose-deep);
}

.contact-list a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease);
}

.contact-list a:hover {
  border-color: currentColor;
}

.contact-list strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-espresso-soft);
  font-weight: 600;
}

/* Formular */
.form {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 4vw, 2.4rem);
  box-shadow: var(--shadow-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 560px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.field {
  margin-bottom: 1.1rem;
}

.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-espresso-mid);
  margin-bottom: 0.45rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--c-sand-deep);
  border-radius: var(--radius-sm);
  background: var(--c-cream);
  font: inherit;
  font-size: 1rem;
  color: var(--c-espresso);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--c-rose);
  box-shadow: 0 0 0 3px rgba(164, 129, 61, 0.16);
}

.field--check {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}

.field--check input {
  width: auto;
  margin-top: 0.35rem;
  accent-color: var(--c-rose);
}

.field--check label {
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.55;
  margin: 0;
}

.form__note {
  margin-top: 1.2rem;
  font-size: 0.82rem;
  color: var(--c-espresso-soft);
}

.form__status {
  margin-top: 1rem;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-sm);
  background: var(--c-nude);
  font-size: 0.92rem;
  display: none;
}

.form__status.is-visible {
  display: block;
}

/* Honeypot gegen Spam-Bots */
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   16. Karte (DSGVO-freundliches Click-to-load)
   -------------------------------------------------------------------------- */

/* Anfahrt-Block innerhalb der Kontakt-Sektion */
.contact-map {
  margin-top: clamp(2.5rem, 6vw, 4rem);
}

.contact-map > h3 {
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  margin-bottom: 0.4rem;
}

.contact-map > .lead {
  margin-bottom: 1.6rem;
  max-width: 44rem;
}

.map-consent__inner h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 0.6rem;
}

.map-consent {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--c-nude);
  min-height: 380px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2.5rem 1.5rem;
  border: 1px solid var(--c-sand-deep);
}

.map-consent__inner {
  max-width: 30rem;
}

.map-consent p {
  font-size: 0.94rem;
  color: var(--c-espresso-mid);
}

.map-consent iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
}

.map-consent.is-loaded {
  display: block;
  padding: 0;
  min-height: 0;
}

/* --------------------------------------------------------------------------
   17. CTA-Band
   -------------------------------------------------------------------------- */

.cta-band {
  position: relative;
  text-align: center;
  background: var(--c-espresso);
  color: var(--c-cream);
  border-radius: var(--radius-lg);
  padding: clamp(2.8rem, 7vw, 5rem) clamp(1.5rem, 5vw, 4rem);
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: -40% -10% auto auto;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(164, 129, 61, 0.45),
    transparent 70%
  );
  pointer-events: none;
}

.cta-band h2 {
  color: var(--c-cream);
  position: relative;
}

.cta-band p {
  position: relative;
  color: rgba(244, 245, 246, 0.78);
  max-width: 34rem;
  margin-inline: auto;
}

.cta-band .btn-row {
  position: relative;
  margin-top: 2rem;
}

/* --------------------------------------------------------------------------
   18. Footer
   -------------------------------------------------------------------------- */

.footer {
  background: var(--c-nude);
  padding: clamp(3rem, 6vw, 4.5rem) 0 2rem;
  border-top: 1px solid rgba(30, 33, 36, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (max-width: 760px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-espresso-soft);
  margin-bottom: 1rem;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: var(--c-espresso-mid);
}

.footer a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease);
}

.footer a:hover {
  border-color: currentColor;
}

.footer__social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(30, 33, 36, 0.1);
  font-size: 0.85rem;
  color: var(--c-espresso-soft);
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.footer-bottom a {
  text-decoration: none;
}

/* --------------------------------------------------------------------------
   19. Schwebende Aktionen (Mobile)
   -------------------------------------------------------------------------- */

.float-actions {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  display: none;
  flex-direction: column;
  gap: 0.6rem;
}

@media (max-width: 940px) {
  .float-actions {
    display: flex;
  }
}

.float-actions a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--c-espresso);
  color: var(--c-cream);
  box-shadow: var(--shadow);
  text-decoration: none;
}

.float-actions a.is-whatsapp {
  background: #25d366;
  color: #fff;
}

.float-actions svg {
  width: 23px;
  height: 23px;
}

/* --------------------------------------------------------------------------
   20. Reveal-Animationen
   Wichtig: Inhalte sind per Default sichtbar. Erst wenn JS erfolgreich lief,
   setzt es html.js-ready und die Reveal-Startzustände greifen.
   -------------------------------------------------------------------------- */

html.js-ready [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

html.js-ready [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

html.js-ready [data-reveal][data-reveal-delay='1'] {
  transition-delay: 0.09s;
}
html.js-ready [data-reveal][data-reveal-delay='2'] {
  transition-delay: 0.18s;
}
html.js-ready [data-reveal][data-reveal-delay='3'] {
  transition-delay: 0.27s;
}

/* --------------------------------------------------------------------------
   21. Reduced Motion
   -------------------------------------------------------------------------- */

@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;
    scroll-behavior: auto !important;
  }

  html.js-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .shape-blur {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   22. Druck
   -------------------------------------------------------------------------- */

@media print {
  .header,
  .footer,
  .float-actions,
  .grid-motion,
  .shape-blur,
  .hero__scroll {
    display: none !important;
  }
  body {
    background: #fff;
  }
}

/* --------------------------------------------------------------------------
   23. Rechtstexte (Impressum / Datenschutz)
   -------------------------------------------------------------------------- */

.legal {
  padding: clamp(3rem, 7vw, 6rem) 0;
}

.legal h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  margin-bottom: 1.5rem;
}

.legal h2 {
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  margin-top: 2.6rem;
}

.legal h3 {
  font-size: 1.15rem;
  margin-top: 1.8rem;
}

.legal p,
.legal li {
  color: var(--c-espresso-mid);
  font-size: 1rem;
}

.legal ul {
  padding-left: 1.2rem;
}

.legal li {
  margin-bottom: 0.4rem;
}

.legal a {
  color: var(--c-rose-deep);
}

.page-hero {
  background: var(--c-nude);
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid rgba(30, 33, 36, 0.08);
}

.page-hero h1 {
  margin-bottom: 0.4rem;
}

.page-hero p {
  color: var(--c-espresso-mid);
  max-width: 40rem;
}
