/* ============================================================
   Franco Grasso Haarsalon Koblenz — styles.css
   Design-Grundlage: BRANDING.md v1.0 (Mai 2026)
   Selbst-gehostet unter /assets/fonts/ — DSGVO-konform
   ============================================================ */

/* ── Fonts ────────────────────────────────────────────────── */

@font-face {
  font-family: 'Hanken Grotesk';
  src: url('../fonts/HankenGrotesk-Variable.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Hanken Grotesk';
  src: url('../fonts/HankenGrotesk-Italic-Variable.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans-Variable.woff2') format('woff2-variations');
  font-weight: 100 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans-Italic-Variable.woff2') format('woff2-variations');
  font-weight: 100 700;
  font-style: italic;
  font-display: swap;
}

/* ── CSS Custom Properties — Token-System ─────────────────── */

:root {
  /* Typography Tokens */
  --font-display:  'Hanken Grotesk', ui-sans-serif, system-ui, sans-serif;
  --font-body:     'DM Sans', ui-sans-serif, system-ui, sans-serif;

  /* Z-Index Tokens */
  --z-below:       -1;
  --z-base:        1;
  --z-content:     10;
  --z-overlay:     50;
  --z-navbar:      100;
  --z-cookie:      150;

  /* Dark Tones */
  --fg-ink:        218 14%  9%;    /* #121519 */
  --fg-graphite:   220 10% 15%;    /* #202328 */
  --fg-slate:      218  8% 24%;    /* #353840 */

  /* Light Tones */
  --fg-paper:      210 12% 97%;    /* #f5f6f8 */
  --fg-fog:        218  6% 94%;    /* #ededef */
  --fg-white:      218 18% 99%;    /* #fafbfc */

  /* Mid Tones */
  --fg-muted:      218  7% 48%;    /* #717479 */
  --fg-subtle:     218  6% 68%;    /* #aaadb3 */
  --fg-line:       218  8% 88%;    /* #dcdee3 */
  --fg-line-inv:   218  8% 22%;    /* #31343c */

  /* Accent — Teal */
  --fg-warm:       36  28% 94%;    /* #f4f1eb warm cream */
  --fg-teal:       185 62% 40%;    /* #259da8 */
  --fg-teal-dark:  185 65% 28%;    /* #176c74 */
  --fg-teal-soft:  185 45% 92%;    /* #dff2f4 */

  /* Spacing */
  --section-xl:    clamp(96px, 12vh, 160px);
  --section-lg:    clamp(80px, 10vh, 120px);
  --section-md:    clamp(56px,  7vh,  80px);
  --section-sm:    clamp(32px,  4vh,  48px);
  --container-px:  clamp(16px,  4vw,  64px);

  scroll-behavior: smooth;
}

/* ── Reset ────────────────────────────────────────────────── */

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

html {
  font-family: var(--font-body);
  background-color: hsl(var(--fg-paper));
  color: hsl(var(--fg-ink));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  font-feature-settings: 'kern' 1, 'liga' 1;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { background: none; border: none; cursor: pointer; font: inherit; }
blockquote, cite, q { font-style: normal; }

[id] { scroll-margin-top: 80px; }

::selection {
  background-color: hsl(var(--fg-teal));
  color: hsl(var(--fg-white));
}

/* ── Layout ───────────────────────────────────────────────── */

.container {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: var(--container-px);
}

.container--narrow { max-width: 1024px; }
.container--text   { max-width: 65ch; }

/* ── Typography ───────────────────────────────────────────── */

.fg-display-xl {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.fg-display-lg {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.fg-display-md {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.015em;
}

.fg-h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.fg-h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 2.8vw, 36px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.fg-h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 600;
  line-height: 1.2;
}

.fg-body-lg { font-size: 18px; line-height: 1.7; }
.fg-body-md { font-size: 16px; line-height: 1.65; }
.fg-body-sm { font-size: 14px; line-height: 1.6; letter-spacing: 0.01em; }
.fg-body-xs { font-size: 12px; line-height: 1.5; letter-spacing: 0.02em; }

.fg-eyebrow {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: hsl(var(--fg-muted));
  margin-bottom: 14px;
}

.fg-eyebrow--inv {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: hsl(var(--fg-subtle));
  margin-bottom: 14px;
}

@media (max-width: 767px) {
  .fg-eyebrow, .fg-eyebrow--inv { margin-bottom: 18px; }
}

.text-balance { text-wrap: balance; }

/* ── Teal Dash ────────────────────────────────────────────── */

.teal-dash {
  display: inline-block;
  width: 1rem;
  height: 2px;
  background-color: hsl(var(--fg-teal));
  border-radius: 1px;
  flex-shrink: 0;
}

.teal-dash--block {
  display: block;
  width: 1rem;
  height: 2px;
  background-color: hsl(var(--fg-teal));
  border-radius: 1px;
  margin-block: 14px 24px;
}

@media (max-width: 767px) {
  .teal-dash--block { margin-block: 18px 28px; }
}

/* ── Buttons (Refactored) ─────────────────────────────────── */

.btn {
  position: relative;
  font-family: var(--font-body);
  font-size: clamp(13px, 1.5vw, 15px);
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 0.8em;
  border: none;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.35s ease;
}

.btn span {
  position: relative;
  z-index: var(--z-content);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: clamp(0.65em, 1.5vw, 0.8em) clamp(1.2em, 2.5vw, 1.5em);
}

.btn:active { transform: scale(0.97); }

/* Skew-Reveal Animation Logic */
.btn--skew::before {
  content: '';
  position: absolute;
  top: 0; left: -10%;
  width: 120%;
  height: 100%;
  z-index: 0;
  transform: skew(30deg) translate3d(-110%, 0, 0);
  transition: transform 0.65s cubic-bezier(0.76, 0, 0.24, 1);
}
.btn--skew:hover::before { transform: skew(30deg) translate3d(0%, 0, 0); }

/* Modifiers */
.btn--primary {
  background: hsl(var(--fg-teal));
  color: hsl(var(--fg-white));
  box-shadow: 0 4px 14px hsl(var(--fg-ink) / 0.25), 0 0 28px hsl(var(--fg-teal) / 0.30);
}
.btn--primary::before { background: hsl(var(--fg-teal-dark)); }
.btn--primary:focus-visible { outline: 2px solid hsl(var(--fg-teal)); outline-offset: 3px; }

.btn--primary-inv {
  background: hsl(var(--fg-teal));
  color: hsl(var(--fg-white));
  box-shadow: 0 6px 20px hsl(var(--fg-ink) / 0.50), 0 0 40px hsl(var(--fg-teal) / 0.45);
}
.btn--primary-inv::before { background: hsl(var(--fg-teal-dark)); }
.btn--primary-inv:focus-visible { outline: 2px solid hsl(var(--fg-white)); outline-offset: 3px; }

.btn--ghost {
  border: 1.5px solid hsl(var(--fg-teal));
  background: transparent;
  color: hsl(var(--fg-ink));
}
.btn--ghost:hover { background: hsl(var(--fg-teal)); color: hsl(var(--fg-white)); border-color: hsl(var(--fg-teal)); }
.btn--ghost:focus-visible { outline: 2px solid hsl(var(--fg-teal)); outline-offset: 3px; }

.btn--ghost-inv {
  border: 1.5px solid hsl(var(--fg-white) / 0.5);
  background: transparent;
  color: hsl(var(--fg-white));
}
.btn--ghost-inv:hover { background: hsl(var(--fg-white) / 0.1); border-color: hsl(var(--fg-white) / 0.8); }
.btn--ghost-inv:focus-visible { outline: 2px solid hsl(var(--fg-white)); outline-offset: 3px; }

.btn--full { width: 100%; justify-content: center; text-align: center; }

/* ── Section Backgrounds & Paddings ───────────────────────── */

.section-light    { background-color: hsl(var(--fg-paper)); color: hsl(var(--fg-ink)); }
.section-fog      { background-color: hsl(var(--fg-fog)); color: hsl(var(--fg-ink)); }
.section-dark     { background-color: hsl(var(--fg-graphite)); color: hsl(var(--fg-white)); }
.section-darkest  { background-color: hsl(var(--fg-ink)); color: hsl(var(--fg-white)); }

.fg-section-padding-xl { padding-block: var(--section-xl); }
.fg-section-padding-lg { padding-block: var(--section-lg); }
.fg-section-padding-md { padding-block: var(--section-md); }
.fg-section-padding-sm { padding-block: var(--section-sm); }

/* ── Cards ────────────────────────────────────────────────── */

.card {
  background-color: hsl(var(--fg-fog));
  border: 1px solid hsl(var(--fg-line));
  border-radius: 0.8em;
  padding: clamp(24px, 3vw, 40px);
  transition: transform 200ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 200ms ease;
}
.card:hover { transform: translateY(-2px); box-shadow: 0 4px 12px hsl(var(--fg-ink) / 0.10); }

.card-dark {
  background-color: hsl(var(--fg-slate));
  border: 1px solid hsl(var(--fg-line-inv));
  border-radius: 0.8em;
  padding: clamp(24px, 3vw, 40px);
  transition: transform 200ms cubic-bezier(0.22, 1, 0.36, 1);
}
.card-dark:hover { transform: translateY(-2px); }

/* ── BG Components ────────────────────────────────────────── */

.grid-bg-dark { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 80% 60% at 50% 0%, #253035 0%, #121519 65%); z-index: var(--z-below); }
.grid-teal-glow { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(37, 157, 168, 0.12) 0%, transparent 65%); }
.grid-lines { position: absolute; inset: 0; background-image: linear-gradient(to right, rgba(245, 246, 248, 0.025) 1px, transparent 1px), linear-gradient(to bottom, rgba(245, 246, 248, 0.025) 1px, transparent 1px); background-size: 40px 40px; }
.grid-vignette { position: absolute; inset: 0; background: radial-gradient(ellipse 100% 100% at 50% 50%, transparent 50%, rgba(18, 21, 25, 0.6) 100%); }

/* ── GSAP Animation States ────────────────────────────────── */

.fg-fade { opacity: 0; transform: translateY(12px); }
.fg-reveal { opacity: 0; transform: scale(1.04); }

/* ── Reduced Motion ───────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  .fg-fade, .fg-reveal { opacity: 1; transform: none; }
  .reviews__track { animation: none !important; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ============================================================
   NAVIGATION
   ============================================================ */

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-navbar);
  color: hsl(var(--fg-white));
  transition: background-color 250ms ease, backdrop-filter 250ms ease, border-color 250ms ease;
}

.navbar.scrolled {
  background-color: hsl(var(--fg-graphite) / 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid hsl(var(--fg-line-inv));
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.navbar__logo img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: opacity 200ms ease;
}
.navbar__logo:hover img { opacity: 0.75; }

.navbar__nav {
  display: none;
  align-items: center;
  gap: 32px;
}

.navbar__link {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: hsl(var(--fg-white) / 0.7);
  transition: color 200ms ease;
}
.navbar__link:hover { color: hsl(var(--fg-white)); }

.navbar__cta { display: none; }

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.hamburger__bar {
  display: block;
  height: 1px;
  background-color: currentColor;
  transition: all 200ms ease;
}

.hamburger__bar:nth-child(1) { width: 24px; }
.hamburger__bar:nth-child(2) { width: 24px; }
.hamburger__bar:nth-child(3) { width: 16px; align-self: flex-end; }

.hamburger[aria-expanded="true"] .hamburger__bar:nth-child(1) { transform: translateY(6px) rotate(45deg); width: 24px; }
.hamburger[aria-expanded="true"] .hamburger__bar:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] .hamburger__bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); width: 24px; }

.mobile-menu {
  display: none;
  background-color: hsl(var(--fg-graphite));
  color: hsl(var(--fg-white));
}
.mobile-menu.open { display: block; }

.mobile-menu__inner {
  padding-block: 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.mobile-menu__link {
  font-family: var(--font-display);
  font-size: clamp(22px, 5vw, 28px);
  font-weight: 700;
  color: hsl(var(--fg-white));
  transition: color 200ms ease;
}
.mobile-menu__link:hover { color: hsl(var(--fg-teal)); }

@media (min-width: 1024px) {
  .navbar__nav  { display: flex; }
  .navbar__cta  { display: block; }
  .hamburger    { display: none; }
  .mobile-menu  { display: none !important; }
}

/* ============================================================
   SECTION 1 — HERO
   ============================================================ */

/* Initial state — GSAP animates hero-anim elements on load */
.hero-anim { opacity: 0; }

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-color: hsl(var(--fg-ink));
}

.hero__bg { position: absolute; inset: 0; }
.hero > .container { width: 100%; }

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 45% 20%;
}

/* Mobile: bottom heavy + left feather, image breathes at top/center */
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, hsl(var(--fg-ink) / 0.96) 0%, hsl(var(--fg-ink) / 0.72) 32%, hsl(var(--fg-ink) / 0.18) 58%, transparent 72%),
    linear-gradient(to right, hsl(var(--fg-ink) / 0.50) 0%, transparent 50%);
}

.hero__content {
  position: relative;
  z-index: var(--z-content);
  padding-block: clamp(96px, 13vh, 150px) clamp(32px, 5vh, 52px);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero__inner { max-width: 560px; }

@media (max-width: 479px) {
  .hero__inner { width: 100%; max-width: 100%; }
}

/* ── Eyebrow ─────────────────────────────────────────────── */
.hero__eyebrow { margin-bottom: 18px; display: block; }

/* ── Headline ────────────────────────────────────────────── */
.hero__headline {
  color: hsl(var(--fg-white));
  margin-bottom: 22px;
}

/* ── Subline ─────────────────────────────────────────────── */
.hero__subline {
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.72;
  color: hsl(var(--fg-white) / 0.65);
  max-width: 440px;
  margin-bottom: 36px;
}

/* ── CTA group ───────────────────────────────────────────── */
.hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 480px) {
  .hero__ctas { flex-direction: row; align-items: center; gap: 22px; }
}

.hero__cta-primary { width: 100%; }

@media (min-width: 480px) {
  .hero__cta-primary { width: auto; }
}

.hero__cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: hsl(var(--fg-white) / 0.70);
  text-decoration: underline;
  text-decoration-color: hsl(var(--fg-white) / 0.28);
  text-underline-offset: 3px;
  transition: color 260ms ease, text-decoration-color 260ms ease, gap 260ms ease;
}
.hero__cta-secondary:hover {
  color: hsl(var(--fg-white));
  text-decoration-color: hsl(var(--fg-white) / 0.65);
  gap: 10px;
}

/* ── Trust card ──────────────────────────────────────────── */
.hero__trust-card {
  display: flex;
  align-items: center;
  margin-top: 36px;
  background: hsl(var(--fg-graphite) / 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid hsl(var(--fg-white) / 0.10);
  border-radius: 14px;
  padding: 16px 20px;
}

.hero__trust-google-block {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.hero__trust-google-block > div,
.hero__trust-years-block > div {
  min-width: 0;
  overflow: hidden;
}

.hero__trust-g-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.hero__trust-score {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: hsl(var(--fg-white));
  line-height: 1.2;
}

.hero__trust-stars {
  color: hsl(40 100% 60%);
  font-size: 11px;
  letter-spacing: 0.5px;
}

.hero__trust-meta {
  font-size: 11px;
  color: hsl(var(--fg-white) / 0.52);
  margin-top: 2px;
  line-height: 1.4;
}

.hero__trust-sep {
  width: 1px;
  height: 38px;
  background: hsl(var(--fg-white) / 0.12);
  margin: 0 18px;
  flex-shrink: 0;
}

.hero__trust-years-block {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.hero__trust-laurel {
  flex-shrink: 0;
  color: hsl(var(--fg-white) / 0.65);
}

.hero__trust-years-num {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: hsl(var(--fg-white));
  line-height: 1.2;
}

.hero__trust-years-text {
  font-size: 11px;
  color: hsl(var(--fg-white) / 0.52);
  margin-top: 2px;
}

/* ── Desktop: Editorial Split Layout ──────────────────────── */

@media (min-width: 1024px) {
  .hero { align-items: center; }

  /* Portrait image fills right panel cleanly */
  .hero__img {
    position: absolute;
    top: 0; right: 0; left: auto;
    width: 50%;
    height: 100%;
    object-position: center 12%;
  }

  /* Sharp left-to-right fade: dark text zone → image */
  .hero__overlay {
    background: linear-gradient(
      to right,
      hsl(var(--fg-ink)) 40%,
      hsl(var(--fg-ink) / 0.80) 52%,
      hsl(var(--fg-ink) / 0.20) 70%,
      transparent 100%
    );
  }

  .hero__content { padding-block: clamp(120px, 15vh, 180px); }
  .hero__inner { max-width: 520px; }
  .hero__subline { max-width: 420px; }
  .hero__trust-card { max-width: 440px; }
}

/* ============================================================
   SECTION 2 — SOCIAL PROOF / TRUST BAR
   ============================================================ */

.trust-bar {
  background: hsl(var(--fg-white));
  padding-block: clamp(52px, 7vw, 88px);
}

.trust-bar__inner { display: grid; gap: clamp(24px, 4vw, 40px); }

.trust-bar__title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 600;
  line-height: 1.15;
  color: hsl(var(--fg-slate));
  text-align: center;
  letter-spacing: 0.01em;
}

.trust-bar__logos {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: clamp(120px, 9vw, 148px);
  gap: clamp(10px, 1.2vw, 14px);
}

.trust-bar__tile {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0; margin: 0;
  padding: clamp(24px, 2.5vw, 36px);
  grid-column: span 4;
  border-radius: 14px;
  background: hsl(var(--fg-white));
  border: 1px solid hsl(var(--fg-line) / 0.7);
  box-shadow: 0 2px 10px hsl(var(--fg-ink) / 0.04);
  overflow: hidden;
  position: relative;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 500ms cubic-bezier(0.22, 1, 0.36, 1), border-color 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.trust-bar__tile::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse 90% 70% at 50% 0%, hsl(var(--fg-teal) / 0.07) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 500ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.trust-bar__tile:hover {
  transform: scale(1.035);
  border-color: hsl(var(--fg-teal) / 0.28);
  box-shadow: 0 0 0 1px hsl(var(--fg-teal) / 0.1), 0 20px 56px hsl(var(--fg-ink) / 0.1);
}

.trust-bar__tile:hover::after { opacity: 1; }

.trust-bar__tile--third { grid-column: span 4; }
.trust-bar__tile--half { grid-column: span 6; }

.trust-bar__logo {
  width: min(100%, 230px);
  max-height: 68px;
  object-fit: contain;
  filter: brightness(0);
  opacity: 0.6;
  position: relative;
  z-index: 1;
  transition: opacity 500ms cubic-bezier(0.22, 1, 0.36, 1), transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.trust-bar__tile:hover .trust-bar__logo { opacity: 0.88; transform: scale(1.05); }

.trust-bar__logo--wide { width: min(100%, 320px); }
.trust-bar__logo--mark { width: min(100%, 168px); max-height: 82px; }
.trust-bar__logo--tailors { width: min(100%, 210px); max-height: 74px; }
.trust-bar__logo--invert { filter: brightness(0) invert(1) brightness(0); }
.trust-bar__tile:hover .trust-bar__logo--invert { opacity: 0.88; }
.trust-bar__logo--blend { mix-blend-mode: multiply; }

@media (max-width: 1023px) {
  .trust-bar__logos { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 120px; }
  .trust-bar__tile, .trust-bar__tile--third, .trust-bar__tile--half { grid-column: span 1; }
  .trust-bar__tile:first-child { grid-column: span 2; }
}

@media (max-width: 479px) {
  .trust-bar { padding-block: 48px; }
  .trust-bar__logos { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 96px; gap: 10px; }
  .trust-bar__tile, .trust-bar__tile--third, .trust-bar__tile--half, .trust-bar__tile:first-child { grid-column: span 1; }
  .trust-bar__logo { max-height: 40px; }
}

/* ============================================================
   SECTION 3 — LEISTUNGEN (EDITORIAL)
   ============================================================ */

.lei-section { background-color: hsl(var(--fg-ink)); color: hsl(var(--fg-white)); padding-block: var(--section-xl); }

.lei-top {
  display: grid; grid-template-columns: 1fr; gap: 48px;
  margin-bottom: clamp(48px, 6vw, 80px);
}

@media (min-width: 1024px) {
  .lei-top { grid-template-columns: 3fr 1px 2fr; gap: 0; align-items: start; }
}

.lei-top__left { padding-right: clamp(32px, 4vw, 72px); }
.lei-top__divider { display: none; background-color: hsl(var(--fg-line-inv)); width: 1px; align-self: stretch; }

@media (min-width: 1024px) { .lei-top__divider { display: block; } }

.lei-top__right { padding-left: clamp(32px, 4vw, 72px); }

@media (max-width: 1023px) { .lei-top__right { padding-left: 0; } }
.lei-top__headline { color: hsl(var(--fg-white)); margin-bottom: 20px; }

.lei-top__intro {
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.72;
  color: hsl(var(--fg-subtle));
  margin-bottom: 32px;
  max-width: 48ch;
}

.lei-promises__label { display: block; margin-bottom: 28px; }
.lei-promises { display: flex; flex-direction: column; gap: 22px; }
.lei-promise { display: flex; align-items: flex-start; gap: 14px; }

.lei-promise__icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border: 1px solid hsl(var(--fg-line-inv));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: hsl(var(--fg-teal));
}

.lei-promise__title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: hsl(var(--fg-white));
  margin-bottom: 3px;
}

.lei-promise__text { font-size: 13px; line-height: 1.5; color: hsl(var(--fg-subtle)); }

.lei-cards { display: grid; grid-template-columns: 1fr; gap: clamp(10px, 1.5vw, 16px); }

@media (min-width: 768px) {
  .lei-cards { grid-template-columns: 1fr 1fr; gap: clamp(14px, 1.5vw, 20px); }
}

@media (min-width: 1024px) {
  .lei-cards {
    grid-template-columns: 1fr 1fr 1.1fr;
    grid-template-rows: repeat(2, minmax(340px, 1fr));
    gap: clamp(16px, 1.5vw, 24px);
    align-items: stretch;
  }
  .lei-card:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
  .lei-card:nth-child(2) { grid-column: 2; grid-row: 1 / 3; }
  .lei-card:nth-child(3) { grid-column: 3; grid-row: 1; }
  .lei-card:nth-child(4) { grid-column: 3; grid-row: 2; }
}

.lei-card {
  position: relative; overflow: hidden; border-radius: 20px;
  background-color: hsl(var(--fg-graphite));
}

.lei-card:nth-child(1), .lei-card:nth-child(2) {
  aspect-ratio: 3 / 4;
  border: 1px solid hsl(var(--fg-white) / 0.13);
  background-color: hsl(var(--fg-ink));
}

@media (min-width: 768px) { .lei-card:nth-child(1), .lei-card:nth-child(2) { aspect-ratio: 2 / 3; } }
@media (min-width: 1024px) { .lei-card:nth-child(1), .lei-card:nth-child(2) { aspect-ratio: unset; height: 100%; } }

.lei-card:nth-child(1) .lei-card__media, .lei-card:nth-child(2) .lei-card__media {
  position: absolute; top: 0; left: 0; width: 100%; height: 55%; overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, black 52%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 52%, transparent 100%);
}

.lei-card__overlay { display: none; }

.lei-card:nth-child(1) .lei-card__overlay, .lei-card:nth-child(2) .lei-card__overlay {
  display: block; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, hsl(var(--fg-ink) / 0.00) 0%, hsl(var(--fg-ink) / 0.06) 34%, hsl(var(--fg-ink) / 0.22) 48%, hsl(var(--fg-ink) / 0.55) 62%, hsl(var(--fg-ink) / 0.82) 76%, hsl(var(--fg-ink) / 0.96) 90%, hsl(var(--fg-ink) / 1.00) 100%);
  pointer-events: none;
}

.lei-card__body { display: none; }

.lei-card:nth-child(1) .lei-card__body, .lei-card:nth-child(2) .lei-card__body {
  display: block; position: absolute; bottom: 0; left: 0; right: 0; padding: clamp(22px, 2.8vw, 36px); z-index: 2;
}

.lei-card:nth-child(3), .lei-card:nth-child(4) { display: flex; flex-direction: column; border: 1px solid hsl(var(--fg-line-inv)); }

.lei-card:nth-child(3) .lei-card__media, .lei-card:nth-child(4) .lei-card__media { overflow: hidden; aspect-ratio: 16 / 10; flex-shrink: 0; }

@media (min-width: 1024px) { .lei-card:nth-child(3) .lei-card__media, .lei-card:nth-child(4) .lei-card__media { flex: 1; min-height: 0; aspect-ratio: unset; } }

.lei-card__content { display: none; }

.lei-card:nth-child(3) .lei-card__content, .lei-card:nth-child(4) .lei-card__content { display: block; flex-shrink: 0; padding: clamp(16px, 1.8vw, 22px); background: hsl(var(--fg-graphite)); }

.lei-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1); }
.lei-card:hover .lei-card__img { transform: scale(1.025); }

.lei-card:nth-child(1) .lei-card__img { object-position: center center; }
.lei-card:nth-child(2) .lei-card__img { object-position: center 35%; }
.lei-card:nth-child(3) .lei-card__img { object-position: center 45%; }
.lei-card:nth-child(4) .lei-card__img { object-position: center center; }

@media (max-width: 767px) {
  .lei-card:nth-child(1) .lei-card__media,
  .lei-card:nth-child(2) .lei-card__media {
    height: 62%;
  }
  .lei-card:nth-child(1) .lei-card__img { object-position: center top; }
  .lei-card:nth-child(2) .lei-card__img { object-position: center 24%; }
}

.lei-card__meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }

.lei-card__icon {
  flex-shrink: 0; width: 32px; height: 32px; border: 1px solid hsl(var(--fg-teal) / 0.45);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: hsl(var(--fg-teal)); background: hsl(var(--fg-ink) / 0.4); backdrop-filter: blur(6px);
}

.lei-card__num { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; color: hsl(var(--fg-subtle)); }
.lei-card__rule { width: 20px; height: 1.5px; background-color: hsl(var(--fg-teal)); border-radius: 1px; margin-bottom: 10px; }

.lei-card__title {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 600;
  color: hsl(var(--fg-white));
  line-height: 1.2;
  margin-bottom: 8px;
}

.lei-card__desc { font-size: 13px; line-height: 1.65; color: hsl(var(--fg-white) / 0.72); }

/* Mobile: cards 3 & 4 become full-image overlay cards to match cards 1 & 2 */
@media (max-width: 767px) {
  .lei-card:nth-child(3), .lei-card:nth-child(4) {
    aspect-ratio: 3 / 4;
    display: block;
    border: 1px solid hsl(var(--fg-white) / 0.13);
    background-color: hsl(var(--fg-ink));
  }
  .lei-card:nth-child(3) .lei-card__media,
  .lei-card:nth-child(4) .lei-card__media {
    position: absolute; top: 0; left: 0; width: 100%; height: 55%;
    aspect-ratio: unset;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to bottom, black 52%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 52%, transparent 100%);
  }
  .lei-card:nth-child(3)::after,
  .lei-card:nth-child(4)::after {
    content: '';
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to bottom, hsl(var(--fg-ink) / 0.00) 0%, hsl(var(--fg-ink) / 0.06) 34%, hsl(var(--fg-ink) / 0.22) 48%, hsl(var(--fg-ink) / 0.55) 62%, hsl(var(--fg-ink) / 0.82) 76%, hsl(var(--fg-ink) / 0.96) 90%, hsl(var(--fg-ink) / 1.00) 100%);
    pointer-events: none;
  }
  .lei-card:nth-child(3) .lei-card__content,
  .lei-card:nth-child(4) .lei-card__content {
    position: absolute; bottom: 0; left: 0; right: 0;
    z-index: 2; padding: clamp(22px, 2.8vw, 36px);
    background: transparent; display: block;
  }
  /* Improve image focus so faces aren't cut off */
  .lei-card:nth-child(3) .lei-card__img { object-position: center 20%; }
  .lei-card:nth-child(4) .lei-card__img { object-position: center 15%; }
}

.lei-break { position: relative; overflow: hidden; height: clamp(520px, 48vw, 760px); background-color: hsl(var(--fg-graphite)); }

@media (max-width: 767px) { .lei-break { height: clamp(360px, 80vw, 520px); } }

.lei-break__img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; display: block; }

@media (max-width: 767px) { .lei-break__img { object-position: center 15%; } }

/* ============================================================
   SECTION — MEHR ALS EIN SALON
   ============================================================ */

.salon-intro { background: hsl(var(--fg-warm)); color: hsl(var(--fg-ink)); }

.salon-intro__inner { display: grid; grid-template-columns: 1fr; gap: clamp(40px, 6vw, 72px); align-items: center; }

@media (min-width: 1024px) {
  .salon-intro__inner { grid-template-columns: 0.85fr 1.15fr; gap: clamp(48px, 7vw, 110px); }
}

.salon-intro__text { display: flex; flex-direction: column; gap: 24px; }
.salon-intro__text .fg-eyebrow { color: hsl(var(--fg-teal)); }

.salon-intro__headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 700;
  color: hsl(var(--fg-ink));
  margin: 0;
}

.salon-intro__body {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.75;
  color: hsl(var(--fg-slate));
  max-width: 480px; margin: 0;
}

.salon-intro__image { border-radius: 16px; overflow: hidden; order: -1; }

@media (min-width: 1024px) { .salon-intro__image { order: unset; } }

.salon-intro__image img { width: 100%; height: clamp(280px, 42vw, 620px); object-fit: cover; object-position: center 35%; display: block; }

@media (max-width: 767px) { .salon-intro__image img { height: clamp(220px, 56vw, 320px); object-position: center 25%; } }

/* ============================================================
   SECTION 5 — ABLAUF
   ============================================================ */

.ablauf { background-color: hsl(var(--fg-graphite)); }

.ablauf__panel {
  background: hsl(var(--fg-ink));
  border: 1px solid hsl(var(--fg-white) / 0.10);
  border-radius: clamp(24px, 3.5vw, 44px);
  padding: clamp(32px, 5vw, 72px);
}

.ablauf__grid { display: grid; grid-template-columns: 1fr; gap: clamp(40px, 6vw, 80px); align-items: stretch; }

@media (min-width: 1024px) { .ablauf__grid { grid-template-columns: 1.05fr 0.95fr; } }

.ablauf__left { display: flex; flex-direction: column; gap: clamp(28px, 3.5vw, 48px); }
.ablauf__intro { display: flex; flex-direction: column; gap: 20px; }

.ablauf__eyebrow { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: hsl(var(--fg-teal)); margin: 0; }

.ablauf__headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: hsl(var(--fg-white));
  margin: 0;
}

.ablauf__body { font-size: clamp(0.9rem, 1.4vw, 1rem); line-height: 1.75; color: hsl(var(--fg-subtle)); max-width: 420px; margin: 0; }

.ablauf__image { border-radius: 18px; overflow: hidden; border: 1px solid hsl(var(--fg-white) / 0.10); }
.ablauf__image img { width: 100%; height: clamp(300px, 34vw, 520px); object-fit: cover; object-position: center 20%; display: block; }

.ablauf__steps { position: relative; display: flex; flex-direction: column; justify-content: space-between; height: 100%; padding-left: 72px; }

.ablauf__track {
  position: absolute; left: 23px; top: calc(100% / 6); bottom: calc(100% / 6); width: 2px;
  background: hsl(var(--fg-white) / 0.09); border-radius: 2px; overflow: hidden;
}

.ablauf__track-fill {
  position: absolute; top: 0; left: 0; width: 100%; height: 0%;
  background: linear-gradient(to bottom, hsl(var(--fg-teal)), hsl(var(--fg-teal) / 0.5));
  box-shadow: 0 0 10px hsl(var(--fg-teal) / 0.9), 0 0 28px hsl(var(--fg-teal) / 0.5), 0 0 56px hsl(var(--fg-teal) / 0.25);
}

.ablauf-step { position: relative; display: flex; flex-direction: column; justify-content: center; flex: 1; }

.ablauf-step__dot {
  position: absolute; left: -72px; top: 50%; transform: translateY(-50%); width: 48px; height: 48px;
  border-radius: 50%; background: hsl(var(--fg-graphite)); border: 1px solid hsl(var(--fg-teal) / 0.45);
  display: flex; align-items: center; justify-content: center; color: hsl(var(--fg-teal)); z-index: 2; transition: border-color 350ms, box-shadow 350ms;
}

.ablauf-step:hover .ablauf-step__dot { border-color: hsl(var(--fg-teal) / 0.9); box-shadow: 0 0 14px hsl(var(--fg-teal) / 0.35); }

.ablauf-step__card {
  background: hsl(var(--fg-graphite)); border: 1px solid hsl(var(--fg-white) / 0.08); border-radius: 16px;
  padding: clamp(18px, 2vw, 26px) clamp(20px, 2.2vw, 28px);
  transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1), border-color 560ms cubic-bezier(0.22, 1, 0.36, 1), background-color 560ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 560ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.ablauf-step:hover .ablauf-step__card {
  transform: translateY(-6px); border-color: hsl(var(--fg-teal) / 0.55); background-color: hsl(var(--fg-slate));
  box-shadow: 0 18px 45px hsl(var(--fg-ink) / 0.30), 0 0 0 1px hsl(var(--fg-teal) / 0.12), 0 0 28px hsl(var(--fg-teal) / 0.10);
}

.ablauf-step__label { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: hsl(var(--fg-teal)); margin: 0 0 8px; }

.ablauf-step__title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 600;
  color: hsl(var(--fg-white));
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

.ablauf-step__desc { font-size: 0.88rem; line-height: 1.7; color: hsl(var(--fg-subtle)); margin: 0; }

@media (max-width: 767px) {
  .ablauf__steps { padding-left: 0; gap: 16px; }
  .ablauf__track { display: none; }
  .ablauf-step__dot { display: none; }
  .ablauf-step__card { border-radius: 20px; }
}

/* ============================================================
   SECTION — TEAM SLIDER
   ============================================================ */

.team-section { background: hsl(var(--fg-ink)); color: hsl(var(--fg-white)); overflow: hidden; }

.team-section__header { text-align: center; max-width: 720px; margin: 0 auto clamp(48px, 6vw, 80px); }

.team-section__eyebrow { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: hsl(var(--fg-teal)); margin: 0 0 20px; }

.team-section__headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 700;
  color: hsl(var(--fg-white));
  margin: 0 0 24px;
}

.team-section__intro { font-size: clamp(0.9rem, 1.4vw, 1rem); line-height: 1.75; color: hsl(var(--fg-subtle)); max-width: 600px; margin: 0 auto; }

.team-slider { position: relative; }

.team-track {
  display: flex; gap: clamp(14px, 2vw, 22px); overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding-bottom: 4px; -ms-overflow-style: none; scrollbar-width: none;
}
.team-track::-webkit-scrollbar { display: none; }

.team-card {
  flex: 0 0 clamp(230px, 21vw, 295px); scroll-snap-align: start; border: 1px solid hsl(var(--fg-white) / 0.10);
  border-radius: 22px; padding: 14px; background: hsl(var(--fg-white) / 0.03);
  transition: border-color 500ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.team-card:hover { border-color: hsl(var(--fg-teal) / 0.45); box-shadow: 0 16px 40px hsl(var(--fg-ink) / 0.40), 0 0 0 1px hsl(var(--fg-teal) / 0.10); }

.team-card__image { border-radius: 14px; overflow: hidden; aspect-ratio: 4 / 5; background: hsl(var(--fg-graphite)); transform: translateZ(0); }

.team-card__image img {
  width: 100%; height: 100%; object-fit: cover; object-position: center center; display: block;
  -webkit-backface-visibility: hidden; backface-visibility: hidden; transform: translateZ(0);
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.team-card:hover .team-card__image img { transform: translateZ(0) scale(1.015); }

.team-card__info { padding: 16px 6px 6px; }

.team-card__name {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 600;
  color: hsl(var(--fg-white));
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}

.team-card__role { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: hsl(var(--fg-teal)); margin: 0; }

.team-nav { display: flex; align-items: center; gap: 10px; margin-top: clamp(24px, 3.5vw, 44px); justify-content: flex-end; }

.team-nav__btn {
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid hsl(var(--fg-white) / 0.14);
  background: transparent; color: hsl(var(--fg-white)); display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: border-color 400ms cubic-bezier(0.22, 1, 0.36, 1), background 400ms cubic-bezier(0.22, 1, 0.36, 1), color 400ms cubic-bezier(0.22, 1, 0.36, 1);
}

.team-nav__btn:hover { border-color: hsl(var(--fg-teal) / 0.65); background: hsl(var(--fg-teal) / 0.10); color: hsl(var(--fg-teal)); }
.team-nav__cta { margin-left: 12px; }

/* ============================================================
   SECTION 8 — BEWERTUNGEN / REVIEWS
   ============================================================ */

.reviews { background-color: hsl(var(--fg-ink)); padding-block: var(--section-lg); overflow: hidden; }

.reviews__header { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: end; margin-bottom: 64px; }

@media (min-width: 1024px) { .reviews__header { grid-template-columns: 1fr auto; } }

.reviews__headline { color: hsl(var(--fg-white)); }
.reviews__score-wrap { display: flex; align-items: center; gap: 12px; }

@media (min-width: 1024px) { .reviews__score-wrap { justify-content: flex-end; } }

.reviews__score-number { font-family: var(--font-display); font-size: clamp(36px, 4vw, 52px); font-weight: 700; color: hsl(var(--fg-white)); line-height: 1; }
.reviews__score-stars { color: hsl(var(--fg-teal)); font-size: 14px; letter-spacing: 2px; margin-bottom: 4px; }
.reviews__score-meta { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: hsl(var(--fg-white) / 0.58); }

.reviews__google-link {
  display: inline-flex; align-items: center; gap: 8px; font-size: 13px; letter-spacing: 0.03em;
  color: hsl(var(--fg-teal)); margin-top: 8px; transition: gap 200ms ease;
}

@media (min-width: 1024px) { .reviews__google-link { justify-content: flex-end; } }
.reviews__google-link:hover { gap: 12px; }

.reviews__cols {
  display: flex; gap: 20px; overflow: hidden; max-height: 680px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(to bottom, transparent, black 8%, black 92%, transparent);
}

.reviews__col { flex: 1; min-width: 0; overflow: hidden; }
.reviews__col--2 { display: none; }
.reviews__col--3 { display: none; }

@media (max-width: 479px) { .reviews__cols { max-height: 420px; } }

@media (min-width: 768px)  { .reviews__col--2 { display: block; } }
@media (min-width: 1024px) { .reviews__col--3 { display: block; } }

.reviews__track { animation: reviews-scroll-up var(--spd, 28s) linear infinite; will-change: transform; }
.reviews__track:hover, .reviews__track:focus-within { animation-play-state: paused; }

@keyframes reviews-scroll-up { from { transform: translateY(0); } to { transform: translateY(-50%); } }

.review-card {
  background-color: hsl(var(--fg-graphite)); border: 1px solid hsl(var(--fg-line-inv)); border-radius: 0.8em;
  padding: 28px; margin-bottom: 16px; transition: transform 200ms cubic-bezier(0.22, 1, 0.36, 1), border-color 200ms ease;
}

.review-card--alt { background-color: hsl(var(--fg-slate)); }
.reviews__track:hover .review-card:hover { transform: translateY(-3px); border-color: hsl(var(--fg-teal) / 0.35); }

.review-card__quote-mark { font-family: var(--font-display); font-size: 44px; font-weight: 700; color: hsl(var(--fg-teal)); line-height: 1; margin-bottom: 16px; user-select: none; }
.review-card__text { font-size: 15px; line-height: 1.7; color: hsl(var(--fg-white) / 0.80); }

.review-card__footer { display: flex; align-items: center; gap: 12px; margin-top: 20px; padding-top: 20px; border-top: 1px solid hsl(var(--fg-line-inv)); }
.review-card__avatar { width: 36px; height: 36px; background-color: hsl(var(--fg-slate)); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 600; color: hsl(var(--fg-teal)); border-radius: 2px; flex-shrink: 0; }
.review-card--alt .review-card__avatar { background-color: hsl(var(--fg-graphite)); }
.review-card__name { font-weight: 600; font-size: 14px; color: hsl(var(--fg-white)); display: block; }
.review-card__platform { font-size: 11px; letter-spacing: 0.06em; color: hsl(var(--fg-white) / 0.56); margin-top: 2px; display: block; }

/* ============================================================
   SECTION 9 — TERMIN / BOOKING
   ============================================================ */

.termin { background-color: hsl(var(--fg-paper)); }

.termin__header { max-width: 620px; margin: 0 auto clamp(56px, 8vh, 88px); text-align: center; }
.termin__eyebrow { margin-bottom: 16px; }
.termin__teal-dash { margin: 0 auto 28px; }

.termin__headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: hsl(var(--fg-ink));
  margin-bottom: 20px;
}

.termin__subline { font-size: clamp(0.92rem, 1.4vw, 1rem); line-height: 1.7; color: hsl(var(--fg-muted)); max-width: 520px; margin: 0 auto; }

.termin__cards { display: grid; grid-template-columns: 1fr; gap: clamp(16px, 2vw, 20px); }

@media (min-width: 768px) { .termin__cards { grid-template-columns: repeat(3, 1fr); } }

.termin-card {
  background-color: hsl(var(--fg-white)); border: 1px solid hsl(var(--fg-line)); border-radius: 20px;
  padding: clamp(28px, 3.5vw, 44px); display: flex; flex-direction: column;
  transition: border-color 480ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 480ms cubic-bezier(0.22, 1, 0.36, 1), transform 480ms cubic-bezier(0.22, 1, 0.36, 1);
}

.termin-card:hover { border-color: hsl(var(--fg-teal) / 0.35); box-shadow: 0 12px 36px hsl(var(--fg-ink) / 0.08); transform: translateY(-3px); }

.termin-card--featured { background-color: hsl(var(--fg-ink)); border-color: hsl(var(--fg-white) / 0.10); }

.termin-card--featured:hover {
  border-color: hsl(var(--fg-teal) / 0.55);
  box-shadow: 0 16px 48px hsl(var(--fg-ink) / 0.40), 0 0 0 1px hsl(var(--fg-teal) / 0.12), 0 0 32px hsl(var(--fg-teal) / 0.08);
  transform: translateY(-3px);
}

.termin-card__tag {
  display: inline-block; font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em;
  color: hsl(var(--fg-teal)); background-color: hsl(var(--fg-teal-soft)); padding: 4px 10px; border-radius: 3px; margin-bottom: 32px; width: fit-content;
}

.termin-card--featured .termin-card__tag { background-color: hsl(var(--fg-teal) / 0.14); color: hsl(var(--fg-teal)); }

.termin-card__icon { color: hsl(var(--fg-teal)); margin-bottom: 22px; }
.fg-booking-icon { width: 32px; height: 32px; flex-shrink: 0; display: block; }

.termin-card__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.termin-card--light .termin-card__title { color: hsl(var(--fg-ink)); }
.termin-card--featured .termin-card__title { color: hsl(var(--fg-white)); }

.termin-card__desc { font-size: 0.92rem; line-height: 1.68; flex-grow: 1; margin-bottom: 28px; }
.termin-card--light .termin-card__desc { color: hsl(var(--fg-muted)); }
.termin-card--featured .termin-card__desc { color: hsl(var(--fg-white) / 0.68); }

.termin-card__detail {
  display: flex; align-items: center; gap: 9px; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.02em;
  padding: 14px 0; border-top: 1px solid hsl(var(--fg-line)); margin-bottom: 22px;
}

.termin-card--featured .termin-card__detail { border-top-color: hsl(var(--fg-white) / 0.10); color: hsl(var(--fg-subtle)); }
.termin-card--light .termin-card__detail { color: hsl(var(--fg-muted)); }
.termin-card__detail-dot { width: 6px; height: 6px; border-radius: 50%; background-color: hsl(var(--fg-teal)); flex-shrink: 0; }

.termin__note { margin-top: 44px; text-align: center; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: hsl(var(--fg-muted)); }
.termin__note-tel { color: hsl(var(--fg-teal)); text-decoration: none; transition: color 300ms; }
.termin__note-tel:hover { color: hsl(var(--fg-teal-dark)); }

/* ============================================================
   SECTION 10 — FINAL CTA
   ============================================================ */

.final-cta {
  background-color: hsl(var(--fg-ink)); color: hsl(var(--fg-white));
  border-top: 1px solid hsl(var(--fg-line-inv)); border-bottom: 1px solid hsl(var(--fg-line-inv)); padding-block: var(--section-lg);
}

.final-cta__wrapper { max-width: 800px; margin: 0 auto; text-align: center; }
.final-cta .fg-eyebrow { color: hsl(var(--fg-subtle)); }
.final-cta__headline { color: hsl(var(--fg-white)); margin-bottom: 24px; }

.final-cta__steps { display: grid; grid-template-columns: 1fr; gap: 32px; margin-bottom: 56px; text-align: left; }

@media (min-width: 768px) { .final-cta__steps { grid-template-columns: repeat(3, 1fr); } }

.final-cta__step { display: flex; gap: 20px; }
.final-cta__step-num { font-family: var(--font-display); font-size: 30px; font-weight: 700; color: hsl(var(--fg-teal)); line-height: 1; flex-shrink: 0; }
.final-cta__step-title { font-size: 14px; font-weight: 600; color: hsl(var(--fg-white)); margin-bottom: 6px; }
.final-cta__step-desc { font-size: 14px; line-height: 1.6; color: hsl(var(--fg-white) / 0.72); }

.final-cta__buttons { display: flex; flex-direction: column; align-items: center; gap: 16px; margin-bottom: 32px; }

@media (min-width: 480px) { .final-cta__buttons { flex-direction: row; justify-content: center; } }

.final-cta__meta { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: hsl(var(--fg-white) / 0.58); }

/* ============================================================
   PRODUKTE (PARTNER-EMPFEHLUNG)
   ============================================================ */

.produkte { background-color: hsl(var(--fg-ink)); }
.produkte__header { text-align: center; max-width: 660px; margin: 0 auto 56px; }
.produkte__eyebrow { margin-bottom: 14px; }

.produkte__headline {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: hsl(var(--fg-white));
  margin: 18px 0 20px;
}

.produkte__desc { font-size: clamp(15px, 1.5vw, 17px); line-height: 1.65; color: hsl(var(--fg-white) / 0.60); margin-bottom: 32px; }
.produkte__affiliate-note { margin-top: 14px; font-size: 12px; }
.produkte__affiliate-link { color: hsl(var(--fg-white) / 0.30); text-decoration: none; transition: color 280ms ease; }
.produkte__affiliate-link:hover { color: hsl(var(--fg-teal) / 0.70); }
.produkte__salon-note { display: block; margin-top: 10px; font-size: 12.5px; line-height: 1.55; color: hsl(var(--fg-white) / 0.32); font-style: italic; }

.produkte__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

.produkte-card {
  display: block; position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 4 / 5;
  text-decoration: none; border: 1px solid hsl(var(--fg-white) / 0.08);
  transition: border-color 480ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 480ms cubic-bezier(0.22, 1, 0.36, 1);
}

.produkte-card:hover {
  border-color: hsl(var(--fg-teal) / 0.45);
  box-shadow: 0 12px 40px hsl(var(--fg-ink) / 0.45), 0 0 0 1px hsl(var(--fg-teal) / 0.14), 0 0 28px hsl(var(--fg-teal) / 0.10);
}

.produkte-card__media { position: absolute; inset: 0; overflow: hidden; }
.produkte-card__media img { width: 100%; height: 100%; object-fit: cover; transform: translateZ(0) scale(1); transition: transform 640ms cubic-bezier(0.22, 1, 0.36, 1); -webkit-backface-visibility: hidden; backface-visibility: hidden; }
.produkte-card:hover .produkte-card__media img { transform: translateZ(0) scale(1.06); }

.produkte-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, hsl(var(--fg-ink) / 0.95) 0%, hsl(var(--fg-ink) / 0.55) 42%, hsl(var(--fg-ink) / 0.12) 100%);
}

.produkte-card__content { position: absolute; bottom: 0; left: 0; right: 0; padding: 26px; }

.produkte-card__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 26px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: hsl(var(--fg-white));
  margin-bottom: 7px;
}

.produkte-card__text { font-size: 14px; line-height: 1.5; color: hsl(var(--fg-white) / 0.65); margin-bottom: 16px; }
.produkte-card__arrow { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: hsl(var(--fg-teal)); transition: gap 360ms cubic-bezier(0.22, 1, 0.36, 1); }
.produkte-card:hover .produkte-card__arrow { gap: 10px; }

@media (max-width: 767px) {
  .produkte__cards { grid-template-columns: 1fr; gap: 14px; }
  .produkte-card { aspect-ratio: 3 / 2; }
  .produkte__affiliate-note, .produkte__salon-note { text-align: center; }
  .produkte__affiliate-note { justify-content: center; }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .produkte__cards { gap: 14px; }
  .produkte-card { aspect-ratio: 3 / 4; }
}

/* ============================================================
   PREISLISTE (PRICING)
   ============================================================ */

.pricing { background-color: hsl(var(--fg-white)); padding-block: var(--section-lg); }
.pricing__header { margin-bottom: 48px; }
.pricing__headline { color: hsl(var(--fg-ink)); margin-bottom: 16px; }
.pricing__subline { font-size: 16px; line-height: 1.65; color: hsl(var(--fg-muted)); max-width: 480px; }

.pricing__tabs { display: flex; flex-wrap: wrap; gap: 0; border-bottom: 1px solid hsl(var(--fg-line)); margin-bottom: 40px; }

.pricing__tab {
  padding: 12px 24px; font-size: 13px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  color: hsl(var(--fg-muted)); border-bottom: 2px solid transparent; margin-bottom: -1px; cursor: pointer; transition: color 200ms ease, border-color 200ms ease; background: none; min-height: 44px;
}
.pricing__tab:hover { color: hsl(var(--fg-ink)); }
.pricing__tab.active { color: hsl(var(--fg-ink)); font-weight: 600; border-bottom-color: hsl(var(--fg-teal)); }

.pricing__panel { display: none; }
.pricing__panel.active { display: grid; grid-template-columns: 1fr; gap: 32px; }

@media (min-width: 768px)  { .pricing__panel.active { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pricing__panel.active { grid-template-columns: repeat(3, 1fr); } }

.pricing__group-title { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: hsl(var(--fg-ink)); padding-bottom: 12px; border-bottom: 1px solid hsl(var(--fg-line)); margin-bottom: 20px; }
.pricing__item { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding-block: 6px; }
.pricing__item-label { font-size: 14px; color: hsl(var(--fg-muted)); }
.pricing__item-price { font-size: 14px; font-weight: 600; color: hsl(var(--fg-ink)); white-space: nowrap; }

.pricing__footer { margin-top: 48px; padding-top: 40px; border-top: 1px solid hsl(var(--fg-line)); display: flex; flex-direction: column; gap: 24px; align-items: flex-start; }

@media (min-width: 768px) { .pricing__footer { flex-direction: row; align-items: center; justify-content: space-between; } }

.pricing__footer-note { font-size: 14px; line-height: 1.6; color: hsl(var(--fg-muted)); max-width: 480px; }

/* ============================================================
   FOOTER
   ============================================================ */

.footer { background-color: hsl(var(--fg-ink)); color: hsl(var(--fg-white)); }
.footer__main { padding-block: clamp(64px, 8vh, 80px); }

.footer__grid { display: grid; grid-template-columns: 1fr; gap: 48px; }

@media (min-width: 768px)  { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: 1fr 1fr 1fr 1fr; gap: 32px; } }

.footer__brand-logo { height: 36px; width: auto; filter: brightness(0) invert(1); margin-bottom: 24px; }
.footer__brand-desc { font-size: 14px; line-height: 1.6; color: hsl(var(--fg-white) / 0.64); max-width: 280px; }
.footer__brand-rating { display: flex; align-items: center; gap: 12px; margin-top: 24px; }

.footer__rating-number { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: hsl(var(--fg-white)); }
.footer__rating-stars  { color: hsl(var(--fg-teal)); font-size: 13px; letter-spacing: 1px; }
.footer__rating-meta   { font-size: 11px; color: hsl(var(--fg-white) / 0.58); margin-top: 2px; }

.footer__col-title { margin-bottom: 24px; }

.footer__contact-list { display: flex; flex-direction: column; gap: 16px; }
.footer__contact-item { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: hsl(var(--fg-white) / 0.66); transition: color 150ms ease; text-decoration: none; }
.footer__contact-item:hover { color: hsl(var(--fg-white)); }
.footer__contact-icon { width: 16px; height: 16px; flex-shrink: 0; color: hsl(var(--fg-teal)); margin-top: 1px; }

.footer__hours-list { display: flex; flex-direction: column; gap: 8px; }
.footer__hours-item { display: flex; justify-content: space-between; gap: 16px; font-size: 14px; }
.footer__hours-day  { color: hsl(var(--fg-white) / 0.64); }
.footer__hours-time { color: hsl(var(--fg-white) / 0.80); }
.footer__hours-time--closed { color: hsl(var(--fg-subtle)); }

.footer__nav-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.footer__nav-link { font-size: 14px; color: hsl(var(--fg-white) / 0.66); transition: color 150ms ease; text-decoration: none; }
.footer__nav-link:hover { color: hsl(var(--fg-white)); }

button.footer__nav-link { background: none; border: none; padding: 0; cursor: pointer; font: inherit; }
.footer__nav-link--gap { margin-right: 16px; }

.footer__bottom { border-top: 1px solid hsl(var(--fg-line-inv)); }

.footer__bottom-inner {
  padding-block: 20px; display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-size: 11px; color: hsl(var(--fg-subtle)); letter-spacing: 0.04em;
}

@media (min-width: 768px) { .footer__bottom-inner { flex-direction: row; justify-content: space-between; } }
/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-cookie);
  background: hsl(var(--fg-ink));
  border-top: 1px solid hsl(var(--fg-line-inv));
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 -8px 32px hsl(var(--fg-ink) / 0.60);
}

.cookie-banner--visible  { transform: translateY(0); }
.cookie-banner--hidden   { transform: translateY(100%); }

.cookie-banner__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px var(--container-px);
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner__text { flex: 1; min-width: 220px; }

.cookie-banner__title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: hsl(var(--fg-white));
  margin: 0 0 4px;
}

.cookie-banner__desc {
  font-size: 13px;
  line-height: 1.55;
  color: hsl(var(--fg-subtle));
  margin: 0;
}

.cookie-banner__link {
  color: hsl(var(--fg-teal));
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 150ms ease;
}
.cookie-banner__link:hover { color: hsl(var(--fg-teal-dark)); }

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-banner__actions .btn span {
  padding: 0.6em 1.1em;
}

.cookie-banner__toggle-btn {
  font-family: var(--font-body);
  font-size: 12px;
  color: hsl(var(--fg-muted));
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 0;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 200ms ease;
  white-space: nowrap;
}
.cookie-banner__toggle-btn:hover { color: hsl(var(--fg-subtle)); }

/* Settings Panel */
.cookie-settings-panel {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--container-px) 20px;
  border-top: 1px solid hsl(var(--fg-line-inv) / 0.5);
}

.cookie-setting {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid hsl(var(--fg-line-inv) / 0.4);
}

.cookie-setting__name {
  font-size: 13px;
  font-weight: 600;
  color: hsl(var(--fg-white));
  margin: 0 0 2px;
}

.cookie-setting__desc {
  font-size: 12px;
  color: hsl(var(--fg-muted));
  margin: 0;
}

.cookie-setting__badge {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: hsl(var(--fg-teal));
  flex-shrink: 0;
}

.cookie-settings-panel__footer {
  padding-top: 16px;
  display: flex;
  justify-content: flex-end;
}

.cookie-settings-panel__footer .btn span {
  padding: 0.6em 1.1em;
}

@media (max-width: 767px) {
  .cookie-banner {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .cookie-banner__inner {
    max-height: min(88vh, 720px);
    padding: 16px;
    gap: 14px;
    overflow-y: auto;
  }

  .cookie-banner__text {
    width: 100%;
    min-width: 0;
  }

  .cookie-banner__actions {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 10px;
  }

  .cookie-banner__toggle-btn {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .cookie-banner__actions .btn {
    width: 100%;
    min-width: 0;
  }

  .cookie-banner__actions .btn span {
    width: 100%;
    padding: 0.75em 0.45em;
    font-size: 12px;
    white-space: normal;
  }

  .cookie-settings-panel {
    padding-inline: 16px;
  }
}

/* Toggle Switch */
.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
  cursor: pointer;
}

.cookie-toggle input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle__track {
  position: absolute;
  inset: 0;
  background: hsl(var(--fg-slate));
  border-radius: 26px;
  transition: background 220ms ease;
}

.cookie-toggle__track::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  top: 4px;
  left: 4px;
  background: hsl(var(--fg-white));
  border-radius: 50%;
  transition: transform 220ms ease;
}

.cookie-toggle input:checked + .cookie-toggle__track {
  background: hsl(var(--fg-teal));
}

.cookie-toggle input:checked + .cookie-toggle__track::before {
  transform: translateX(22px);
}

.cookie-toggle input:focus-visible + .cookie-toggle__track {
  outline: 2px solid hsl(var(--fg-teal));
  outline-offset: 2px;
}

/* ============================================================
   PAGE — LINKTREE
   ============================================================ */

.linktree-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, hsl(var(--fg-teal) / 0.20), transparent 34rem),
    linear-gradient(145deg, hsl(var(--fg-ink)) 0%, hsl(210 18% 9%) 52%, hsl(var(--fg-graphite)) 100%);
  color: hsl(var(--fg-white));
}

.linktree-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(24px, 5vw, 56px) 18px;
}

.linktree-card {
  width: min(100%, 460px);
  text-align: center;
}

.linktree-hero {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  object-position: center 42%;
  border-radius: 6px;
  box-shadow: 0 24px 72px hsl(var(--fg-ink) / 0.42);
  margin: 0 0 30px;
}

.linktree-logo {
  display: block;
  width: 158px;
  height: auto;
  margin: 0 auto 18px;
  filter: brightness(0) invert(1);
}

.linktree-eyebrow {
  margin: 0 0 10px;
  color: hsl(var(--fg-teal));
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.linktree-title {
  margin: 0 auto 26px;
  max-width: 18rem;
  color: hsl(var(--fg-white));
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 7vw, 2.1rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.linktree-links {
  display: grid;
  gap: 14px;
}

.linktree-button {
  width: 100%;
  box-sizing: border-box;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-align: center;
  text-decoration: none;
  transition: transform 220ms ease, border-color 220ms ease, background-color 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.linktree-button:hover {
  transform: translateY(-2px);
}

.linktree-button--primary {
  background: hsl(var(--fg-white));
  color: hsl(var(--fg-ink));
  border: 1px solid hsl(var(--fg-teal) / 0.50);
  box-shadow: 0 14px 36px hsl(var(--fg-ink) / 0.24);
}

.linktree-button--light {
  background: hsl(var(--fg-teal));
  color: hsl(var(--fg-ink));
  border: 1px solid hsl(var(--fg-teal));
  box-shadow: 0 14px 36px hsl(var(--fg-teal) / 0.16);
}

.linktree-button--ghost {
  background: transparent;
  color: hsl(var(--fg-white));
  border: 1px solid hsl(var(--fg-white) / 0.20);
}

.linktree-socials {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 28px 0 16px;
}

.linktree-socials a {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--fg-white));
  border: 1px solid hsl(var(--fg-white) / 0.18);
  border-radius: 50%;
  background: hsl(var(--fg-white) / 0.05);
  transition: transform 220ms ease, border-color 220ms ease, color 220ms ease;
}

.linktree-socials a:hover {
  transform: translateY(-2px);
  border-color: hsl(var(--fg-teal) / 0.65);
  color: hsl(var(--fg-teal));
}

.linktree-socials svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.linktree-socials a:first-child svg {
  fill: currentColor;
  stroke: none;
}

.linktree-meta {
  margin: 0;
  color: hsl(var(--fg-muted));
  font-size: 0.82rem;
  line-height: 1.5;
}

@media (max-width: 520px) {
  .linktree-shell {
    align-items: start;
    padding-top: 28px;
  }

  .linktree-hero {
    margin-bottom: 24px;
  }

  .linktree-button {
    min-height: 56px;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
  }
}
