@import url("fonts.css");
@import url("../design-system/design-tokens.css");

/* ============================================================
   Base & layout (reference/site.css)
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--surface-page);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
}

/* Kein blaues Tipp-Highlight auf Touch-Geräten — Druck-Feedback
   kommt stattdessen von den :active-Zuständen der Buttons */
a,
button {
  -webkit-tap-highlight-color: transparent;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.wrap {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-inline: clamp(20px, 5vw, 44px);
}

.wrap--narrow {
  max-width: 760px;
}

.section {
  padding-block: clamp(52px, 9vw, 96px);
}

.section--tight {
  padding-block: clamp(40px, 6vw, 64px);
}

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

.section--card {
  background: var(--surface-card);
}

.section--dark {
  background: var(--neutral-900);
  color: var(--neutral-300);
}

/* --- Headings --- */

.eyebrow {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--text-brand);
  font-weight: 600;
  margin: 0 0 0.7rem;
}

.eyebrow svg {
  vertical-align: -2px;
  margin-right: 5px;
}

.h1 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
  font-size: clamp(2.15rem, 6vw, 2.75rem);
  line-height: var(--leading-tight);
  color: var(--text-strong);
  margin: 0 0 1.1rem;
}

/* Subpage H1 (Leistungen, Über mich, Kontakt) — handoff: clamp(2.1rem, 5.5vw, 2.75rem) */
.h1--sub {
  font-size: clamp(2.1rem, 5.5vw, 2.75rem);
}

.h2 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
  font-size: clamp(1.7rem, 4vw, 2rem);
  line-height: var(--leading-snug);
  color: var(--text-strong);
  margin: 0 0 0.9rem;
}

.h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-xl);
  color: var(--text-strong);
  margin: 0;
}

.lead {
  font-size: var(--text-lg);
  line-height: var(--leading-normal);
  color: var(--text-body);
  margin: 0;
  max-width: 54ch;
}

.lead--center {
  margin-inline: auto;
}

.prose p {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--text-body);
}

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

.section-intro {
  max-width: 50ch;
  margin-bottom: var(--space-8);
}

.section-intro--narrow {
  max-width: 48ch;
}

.section-intro--wide {
  max-width: 52ch;
  margin-bottom: var(--space-7);
}

/* --- Grids --- */

.cols-3 {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: 1fr;
}

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

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

.split {
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  grid-template-columns: 1fr;
  align-items: center;
}

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

  .split--text-wide {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .split--media-first .media {
    order: -1;
  }
}

@media (max-width: 879px) {
  .split--media-first .media {
    order: -1;
  }
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

@media (max-width: 460px) {
  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-row > * {
    width: 100%;
  }
}

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

/* --- Trust strip --- */

.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.6rem;
  margin-top: 2.2rem;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--text-body);
  font-size: var(--text-base);
  font-weight: 600;
  font-family: var(--font-body);
}

.trust-item svg {
  color: var(--rose-600);
  flex: none;
}

/* --- Photo panels --- */

.photo {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background: linear-gradient(160deg, var(--rose-100), var(--rose-50));
  border: 1px solid var(--rose-100);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo--hero {
  aspect-ratio: 4 / 5;
}

.photo--portrait {
  aspect-ratio: 4 / 5;
  max-width: 440px;
  margin-inline: auto;
}

.photo-logo {
  height: 56%;
  width: auto;
  max-width: 62%;
  opacity: 0.9;
}

/* --- Logo mark (transparent SVG, adapts to context) --- */

.logo-mark {
  display: block;
  flex: none;
  background: transparent;
  border: 0;
  box-shadow: none;
  object-fit: contain;
}

.brand-logo.logo-mark {
  height: 46px;
  width: auto;
}

.logo-mark--on-dark {
  height: 42px;
  width: auto;
}

.logo-mark--soft {
  height: 56%;
  width: auto;
  max-width: 62%;
}

.brand-logo {
  height: 46px;
  width: auto;
}

.photo-note {
  position: absolute;
  bottom: 16px;
  font-size: var(--text-xs);
  color: var(--rose-700);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-display);
  font-weight: 600;
  background: rgba(255, 255, 255, 0.7);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

/* --- Header --- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(250, 250, 250, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.7rem clamp(20px, 5vw, 44px);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

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

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.18rem;
  color: var(--text-strong);
  letter-spacing: -0.01em;
  line-height: 1.05;
}

.brand-sub {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav-desktop {
  display: none;
  gap: 1.5rem;
  margin-left: auto;
}

.nav-link {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-base);
  color: var(--text-body);
  text-decoration: none;
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
  transition: color var(--dur-fast);
}

.nav-link:hover {
  color: var(--rose-700);
}

.nav-link.active {
  color: var(--rose-700);
  border-bottom-color: var(--rose-400);
}

.header-cta {
  display: none;
  text-decoration: none;
}

.burger {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border-default);
  background: var(--surface-card);
  border-radius: var(--radius-md);
  color: var(--text-strong);
  cursor: pointer;
  padding: 0;
}

.burger svg {
  display: block;
}

.mobile-menu {
  border-top: 1px solid var(--border-subtle);
  background: var(--surface-page);
  padding: 0.5rem clamp(20px, 5vw, 44px) 1.2rem;
  display: none;
  flex-direction: column;
}

.mobile-menu.open {
  display: flex;
}

.mobile-link {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-lg);
  color: var(--text-body);
  text-decoration: none;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.mobile-link.active {
  color: var(--rose-700);
}

.mobile-menu-phone {
  margin-top: 1rem;
  text-decoration: none;
}

@media (min-width: 860px) {
  .nav-desktop {
    display: flex;
  }

  .header-cta {
    display: inline-flex;
  }

  .burger {
    display: none;
  }

  .mobile-menu {
    display: none !important;
  }
}

/* --- Footer --- */

.footer-grid {
  display: grid;
  gap: var(--space-7);
  grid-template-columns: 1fr;
}

@media (min-width: 680px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.footer-brand-row img,
.footer-brand-row .logo-mark {
  height: 42px;
  width: auto;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  line-height: 1.1;
}

.footer-desc {
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--neutral-400);
  margin: 0 0 1.1rem;
  max-width: 34ch;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  color: var(--neutral-400);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: var(--text-base);
  transition: color var(--dur-fast);
}

.footer-link:hover {
  color: var(--rose-300);
}

.footer-link--phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--rose-300);
  font-weight: 600;
}

.footer-heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-base);
  color: #fff;
  margin: 0 0 0.9rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-areas {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.2rem;
  color: var(--neutral-400);
  font-size: var(--text-base);
}

.footer-bottom {
  border-top: 1px solid var(--neutral-700);
  margin-top: var(--space-7);
  padding-top: var(--space-5);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
  color: var(--neutral-500);
  font-size: var(--text-sm);
}

.footer-legal {
  display: flex;
  gap: 1.2rem;
}

.footer-bottom .footer-link {
  font-size: var(--text-sm);
}

/* --- Mobile call bar --- */

.mobile-callbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  padding: 0.6rem clamp(14px, 4vw, 20px);
  padding-bottom: calc(0.6rem + env(safe-area-inset-bottom, 0px));
  background: rgba(250, 250, 250, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-subtle);
  box-shadow: 0 -4px 20px rgba(31, 28, 29, 0.06);
}

.mobile-callbar a {
  text-decoration: none;
}

@media (min-width: 860px) {
  .mobile-callbar {
    display: none;
  }
}

@media (max-width: 859px) {
  body {
    padding-bottom: 88px;
  }
}

body.nav-open {
  overflow: hidden;
}

/* --- Components: Buttons --- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-base);
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--dur-fast), border-color var(--dur-fast),
    box-shadow var(--dur-fast), transform var(--dur-fast);
  -webkit-tap-highlight-color: transparent;
  line-height: 1.2;
}

.btn svg {
  flex: none;
}

.btn-lg {
  min-height: 56px;
  padding: 0.85rem 1.75rem;
  font-size: var(--text-base);
}

.btn-full {
  width: 100%;
}

.btn-primary {
  background: var(--action-primary);
  color: var(--text-on-brand);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--action-primary-hover);
  box-shadow: var(--shadow-md);
  color: var(--text-on-brand);
}

.btn-primary:active {
  background: var(--action-primary-press);
  transform: scale(0.97);
}

.btn-outline {
  background: transparent;
  color: var(--rose-700);
  border-color: var(--rose-300);
}

.btn-outline:hover {
  background: var(--rose-50);
  color: var(--rose-700);
}

.btn-secondary {
  background: var(--rose-100);
  color: var(--rose-700);
}

.btn-secondary:hover {
  background: var(--rose-200);
  color: var(--rose-700);
}

/* --- Components: Cards --- */

.card {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  padding: var(--space-6);
}

.card--lg {
  padding: var(--space-6);
}

.card--xl {
  padding: var(--space-7);
}

.card--tint {
  background: var(--surface-tint);
}

.card--interactive {
  transition: transform var(--dur-base), box-shadow var(--dur-base);
}

.card--interactive:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

a.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* --- Icon chip --- */

.icon-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  background: var(--rose-100);
  color: var(--rose-600);
  flex: none;
}

.icon-chip--60 {
  width: 60px;
  height: 60px;
}

.icon-chip--76 {
  width: 76px;
  height: 76px;
  margin-bottom: 1.4rem;
}

.icon-chip--brand {
  background: var(--rose-600);
  color: #fff;
}

/* --- Steps --- */

.steps {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: 1fr;
}

@media (min-width: 680px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.step {
  text-align: center;
}

.step-badge-wrap {
  position: relative;
  display: inline-flex;
  margin-bottom: 1.2rem;
}

.step-num-circle {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--surface-card);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.6rem;
  color: var(--rose-600);
}

.step-icon-badge {
  position: absolute;
  bottom: -6px;
  right: -6px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--rose-600);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.step p {
  margin: 0 auto;
  max-width: 30ch;
  font-size: var(--text-base);
  color: var(--text-body);
  line-height: var(--leading-normal);
}

/* --- Area chips --- */

.area-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.area-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  padding: 0.6rem 1.1rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-base);
  color: var(--text-strong);
  box-shadow: var(--shadow-xs);
}

.area-chip svg {
  color: var(--rose-600);
  flex: none;
}

/* --- CTA band --- */

.cta-band-inner {
  text-align: center;
  max-width: 720px;
}

.cta-band-inner .h2 {
  margin-bottom: 0.6rem;
}

.cta-band-inner .lead {
  margin-bottom: 1.8rem;
  margin-inline: auto;
}

/* --- Leistungen page --- */

.leistung-lead {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-xl);
  color: var(--text-brand);
  line-height: var(--leading-snug);
  margin: 0;
  max-width: 26ch;
}

.leistung-body {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--text-body);
  margin: 0;
  max-width: 44ch;
}

.kosten-inner {
  max-width: 760px;
  text-align: center;
}

.kosten-inner .lead {
  margin-bottom: 2rem;
  margin-inline: auto;
}

/* --- Kontakt page --- */

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-card-inner {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.contact-label {
  display: block;
  font-size: var(--text-sm);
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-value {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-strong);
  line-height: 1.1;
}

.contact-value--phone {
  font-size: var(--text-2xl);
}

.contact-value--email {
  font-size: var(--text-lg);
  line-height: 1.2;
  word-break: break-word;
}

/* --- Form --- */

.form-stack {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

.form-field label {
  display: block;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text-strong);
  font-family: var(--font-display);
  margin-bottom: 0.5rem;
}

.form-field input,
.form-field textarea {
  width: 100%;
  min-height: 56px;
  padding: 0.85rem 1rem;
  font-size: var(--text-base);
  font-family: var(--font-body);
  color: var(--text-strong);
  background: var(--surface-card);
  border: 1.5px solid var(--border-default);
  border-radius: var(--radius-md);
  outline: none;
  line-height: var(--leading-normal);
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}

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

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--rose-400);
  box-shadow: var(--shadow-focus);
}

.form-note {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--text-muted);
  text-align: center;
}

.alert {
  background: var(--success-soft);
  border-radius: var(--radius-md);
  padding: var(--space-5);
}

.alert-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-lg);
  color: var(--success-ink);
  margin: 0 0 0.5rem;
}

.alert p {
  margin: 0;
  color: var(--text-body);
  font-size: var(--text-base);
}

/* --- Legal pages --- */

.legal-page {
  padding-block: clamp(52px, 9vw, 96px);
}

.legal-page .h1 {
  margin-bottom: 0.75rem;
}

.legal-page h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--text-strong);
  margin: 1.5rem 0 0.65rem;
}

.legal-page p,
.legal-page li {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--text-body);
  margin-bottom: 0.65rem;
}

.legal-page a {
  color: var(--text-link);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-page a:hover {
  color: var(--rose-800);
}

.legal-placeholder {
  background: var(--warning-soft);
  border: 1px solid var(--warning);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin: 1rem 0;
  color: var(--warning-ink);
}

/* --- Cookie banner --- */

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 200;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 1rem;
  display: none;
}

.cookie-banner.show {
  display: block;
}

@media (max-width: 859px) {
  .cookie-banner.show {
    bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
  }
}

.cookie-banner p {
  color: var(--text-body);
  font-size: var(--text-base);
  margin: 0 0 0.75rem;
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

/* --- SVG icon utility --- */

[hidden] {
  display: none !important;
}

.icon {
  display: inline-block;
  flex: none;
  vertical-align: middle;
}

/* ============================================================
   DARK MODE — folgt automatisch der System-/Browser-Einstellung.
   Erweiterung über das Design-Handoff hinaus (dort nicht
   spezifiziert): warme Schwarztöne, auf die Rosé-Palette
   abgestimmt. Helle Ansicht bleibt unverändert der Soll-Zustand.
   ============================================================ */

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;

    /* Flächen — warme Schwarztöne */
    --surface-page:    #1C181A;
    --surface-card:    #2A2528;
    --surface-raised:  #2F2A2D;
    --surface-sunken:  #171416;
    --surface-tint:    #271F24;
    --surface-inverse: #FAFAFA;

    /* Text — hell, warm abgetönt */
    --text-strong:   #F7F3F5;
    --text-body:     #E7E1E4;
    --text-muted:    #B8AFB4;
    --text-subtle:   #9A9095;
    --text-brand:    #E5A1BA;
    --text-link:     #ECC8D8;

    /* Linien */
    --border-subtle:  #3A3438;
    --border-default: #4B4448;
    --border-strong:  #655D61;
    --border-brand:   #974E6B;

    /* Aktionen — Primärbutton bleibt Marken-Rosé */
    --action-primary-hover:  #C57089;
    --action-primary-press:  #974E6B;

    /* Status — gedämpft dunkel */
    --success-soft: #1F3529;
    --success-ink:  #8FCDAB;
    --warning-soft: #392E1B;
    --warning-ink:  #DDB877;
    --error-soft:   #3B2327;
    --error-ink:    #E7A0AC;
    --info-soft:    #1F2C33;
    --info-ink:     #93BCD1;

    --focus-ring: #E5A1BA;
  }

  .site-header {
    background: rgba(28, 24, 26, 0.85);
  }

  .mobile-callbar {
    background: rgba(28, 24, 26, 0.92);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.35);
  }

  .photo {
    background: linear-gradient(160deg, #3B2C34, #271F24);
    border-color: #3B2C34;
  }

  .photo-note {
    background: rgba(28, 24, 26, 0.72);
    color: var(--rose-300);
  }

  .trust-item svg,
  .area-chip svg {
    color: var(--rose-400);
  }

  .step-num-circle {
    color: var(--rose-400);
  }

  .icon-chip {
    background: #3B2C34;
    color: var(--rose-300);
  }

  .icon-chip--brand {
    background: var(--rose-600);
    color: #fff;
  }

  .nav-link:hover,
  .nav-link.active,
  .mobile-link.active {
    color: var(--rose-300);
  }

  .btn-outline {
    color: var(--rose-200);
    border-color: var(--rose-700);
  }

  .btn-outline:hover {
    background: #332831;
    color: var(--rose-100);
  }

  .btn-secondary {
    background: #3B2C34;
    color: var(--rose-200);
  }

  .btn-secondary:hover {
    background: #4A3841;
    color: var(--rose-100);
  }

  .legal-page a:hover {
    color: var(--rose-200);
  }

  .section--dark {
    background: #151114;
  }

  /* Logo: dunkler Rosé-Strich wird auf dunklem Grund leicht aufgehellt */
  img.logo-mark {
    filter: brightness(1.45) saturate(0.9);
  }
}
