/* Praxis homepage – calm, accessible palette */
:root {
  --color-bg: #f7f5f2;
  --color-bg-alt: #eef3ef;
  --color-surface: #ffffff;
  --color-text: #2c322e;
  --color-muted: #5c6560;
  --color-accent: #3d5c4a;
  --color-accent-hover: #2d4536;
  --color-border: #d8ded9;
  --color-notice-bg: #f0ebe3;
  --color-notice-border: #c4b8a8;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Source Sans 3", system-ui, sans-serif;
  --shadow-soft: 0 4px 24px rgba(44, 50, 46, 0.08);
  --radius: 10px;
  --header-h: 4rem;
  /* Abstand für Anker-Sprünge (#): Sticky-Banner + Kopfzeile, etwas Luft */
  --site-scroll-padding: max(7.5rem, calc(var(--header-h) + 3.25rem));
  --max: 72rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--site-scroll-padding);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--color-accent-hover);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--color-surface);
  color: var(--color-text);
  font-weight: 600;
}

.skip-link:focus {
  left: 0;
  outline: 2px solid var(--color-accent);
}

/* Hinweis: Seite im Aufbau / Leistung noch nicht angeboten */
.site-build-banner {
  margin: 0;
  padding: 0.6rem 1.25rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  text-align: center;
  color: #1e2d3d;
  background: linear-gradient(180deg, #e3edf5 0%, #d0e0ed 100%);
  border-bottom: 1px solid #8aa9be;
}

.site-build-banner strong {
  color: #0f1b26;
}

.demo-site-banner {
  margin: 0;
  padding: 0.55rem 1.25rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  text-align: center;
  color: #3d2e12;
  background: linear-gradient(180deg, #f5e6c8 0%, #edd9a8 100%);
  border-bottom: 1px solid #c9a962;
}

.demo-site-banner a {
  color: #2a4a3a;
  font-weight: 600;
}

.demo-site-banner a:hover {
  color: var(--color-accent-hover);
}

.demo-inline-label {
  font-weight: 600;
  color: var(--color-accent);
}

/* Sticky top: Demo-Banner + Kopfzeile gemeinsam (sonst falscher offset fürs Mobile-Menü) */
.site-sticky {
  position: sticky;
  top: 0;
  z-index: 100;
  overflow: visible;
}

/* Header */
.site-header {
  position: relative;
  z-index: 1;
  overflow: visible;
  background: rgba(247, 245, 242, 0.92);
  border-bottom: 1px solid var(--color-border);
}

@media (min-width: 769px) {
  .site-header {
    backdrop-filter: blur(10px);
  }
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
}

.logo span {
  color: var(--color-accent);
}

.logo-with-img {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.logo-img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--color-border);
}


.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--color-text);
  border-radius: 1px;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 1.5rem;
}

.site-nav a {
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--color-accent);
}

.nav-cta {
  padding: 0.45rem 1rem;
  background: var(--color-accent);
  color: #fff !important;
  border-radius: 999px;
}

.nav-cta:hover {
  background: var(--color-accent-hover);
  color: #fff !important;
}

@media (max-width: 768px) {
  :root {
    /* Schmaler Viewport: Banner bricht eher um */
    --site-scroll-padding: max(9.5rem, calc(var(--header-h) + 4.75rem));
  }

  .nav-toggle {
    display: flex;
  }

  /*
   * top: --nav-overlay-top wird per JS aus der sichtbaren Unterkante von .site-header gesetzt
   * (Banner + Kopfzeile), damit nichts überlappt — unabhängig von Zeilenumbruch im Demo-Banner
   * und ohne backdrop-filter-Clipping (Safari) bei position:absolute-Kindern.
   */
  .site-nav {
    position: fixed;
    top: var(--nav-overlay-top, 5.5rem);
    left: 0;
    right: 0;
    z-index: 200;
    max-height: calc(100vh - var(--nav-overlay-top, 5.5rem));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    padding: 1rem 1.25rem 1.25rem;
    box-shadow: 0 12px 24px rgba(44, 50, 46, 0.12);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease, visibility 0.2s;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  .site-nav a {
    display: block;
    padding: 0.5rem 0;
  }
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: min(85vh, 720px);
  max-width: var(--max);
  margin: 0 auto;
}

.hero-media {
  position: relative;
  min-height: 280px;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media--logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--color-bg-alt) 0%, var(--color-surface) 100%);
  padding: clamp(1rem, 3vw, 2rem);
}

.hero-media--logo img {
  width: min(100%, 42rem);
  height: auto;
  max-height: min(78vh, 44rem);
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--color-surface);
}

.hero-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin: 0 0 0.75rem;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 1rem;
  color: var(--color-text);
}

.hero-lead {
  margin: 0 0 1.75rem;
  color: var(--color-muted);
  max-width: 36ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 220px;
    max-height: 40vh;
  }

  .hero-media--logo {
    min-height: min(52vh, 28rem);
    max-height: none;
  }

  .hero-media--logo img {
    width: min(92vw, 36rem);
    max-height: min(62vh, 34rem);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.35rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--color-accent);
  border-color: var(--color-border);
}

.btn-ghost:hover {
  border-color: var(--color-accent);
  color: var(--color-accent-hover);
}

/* Notice */
.notice-banner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 1.25rem;
  background: var(--color-notice-bg);
  border-left: 4px solid var(--color-notice-border);
  font-size: 0.95rem;
}

.notice-banner a {
  font-weight: 600;
}

/* Sections */
.section {
  padding: clamp(3rem, 6vw, 5rem) 1.25rem;
}

.section-alt {
  background: var(--color-bg-alt);
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-inner.narrow {
  max-width: 42rem;
}

.section-header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.5rem;
}

.section-header h2,
.section h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3vw, 2.35rem);
  font-weight: 600;
  margin: 0 0 0.75rem;
}

.section-intro {
  margin: 0;
  color: var(--color-muted);
}

.lead {
  font-size: 1.125rem;
  color: var(--color-muted);
}

.muted {
  color: var(--color-muted);
}

.small {
  font-size: 0.9rem;
}

.h-sub {
  font-size: 1rem;
  font-weight: 600;
  margin: 1.5rem 0 0.5rem;
}

/* Split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.split-reverse .split-media {
  order: 1;
}

.split-reverse .split-text {
  order: 0;
}

.split-media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.split-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.split-media--contain img {
  object-fit: contain;
  aspect-ratio: 1;
  background: var(--color-surface);
  padding: 1rem;
}

.prose-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}

@media (max-width: 768px) {
  .prose-columns {
    grid-template-columns: 1fr;
  }
}

.split-reverse .split-media img {
  aspect-ratio: 3 / 2;
}

.credentials {
  padding-left: 1.25rem;
  margin: 1rem 0 1.25rem;
  color: var(--color-muted);
}

@media (max-width: 768px) {
  .split,
  .split.split-reverse {
    grid-template-columns: 1fr;
  }

  .split-reverse .split-media {
    order: 0;
  }
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.card {
  background: var(--color-surface);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
}

.card h3 {
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
}

.card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.98rem;
}

@media (max-width: 768px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

/* Steps */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--color-border);
}

.steps li:last-child {
  border-bottom: none;
}

.step-num {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  color: #fff;
  font-weight: 700;
  border-radius: 50%;
  font-size: 1rem;
}

.steps h3 {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
}

.steps p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.98rem;
}

/* Practice */
.practice-address {
  font-style: normal;
  margin: 0 0 0.5rem;
  line-height: 1.7;
}

.map-link {
  font-weight: 600;
}

.hours-table {
  width: 100%;
  max-width: 20rem;
  border-collapse: collapse;
  font-size: 0.98rem;
}

.hours-table th {
  text-align: left;
  font-weight: 600;
  padding: 0.35rem 1rem 0.35rem 0;
  border-bottom: 1px solid var(--color-border);
}

.hours-table td {
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-muted);
}

/* Contact */
.section-contact {
  background: linear-gradient(180deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 2.5rem;
  align-items: start;
  width: 100%;
  max-width: 60rem;
  margin-inline: auto;
}

.contact-grid > * {
  min-width: 0;
}

/* Früher einspaltig: schmale Formularspalte neben Sidebar wirkt „verschoben“ */
@media (max-width: 960px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-form {
  background: var(--color-surface);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  width: 100%;
  max-width: 100%;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
  width: 100%;
}

.contact-form > .form-field {
  margin-bottom: 1rem;
}

.contact-form .form-field > label {
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.35;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  margin: 0;
  padding: 0.65rem 0.85rem;
  font: inherit;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  background: var(--color-bg);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 1px;
}

.form-row {
  margin-bottom: 1rem;
}

.form-row.two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: end;
}

@media (max-width: 500px) {
  .form-row.two {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
}

.form-fieldset {
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 0.75rem 1rem 1rem;
  margin: 0 0 1rem;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}

.form-fieldset legend {
  font-weight: 600;
  padding: 0 0.35rem;
}

.radio-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-right: 1.25rem;
  font-weight: 500;
  cursor: pointer;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin: 1rem 0;
  font-size: 0.95rem;
  cursor: pointer;
}

.checkbox-label input {
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.req {
  color: var(--color-accent);
}

.form-hint {
  margin: 0 0 1rem;
}

.form-status {
  margin-top: 1rem;
  min-height: 1.5rem;
  font-weight: 600;
  color: var(--color-accent);
}

.booking-status--error {
  color: #8b2e2e;
}

.booking-app {
  max-width: 60rem;
  margin: 0 auto;
}

.booking-fallback {
  background: var(--color-notice-bg);
  border: 1px solid var(--color-notice-border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

@media (max-width: 960px) {
  .booking-layout {
    grid-template-columns: 1fr;
  }
}

.booking-slots-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.booking-picker-intro {
  margin: 0;
}

.booking-picker-title {
  margin: 0 0 0.35rem;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-text);
}

.booking-picker-meta {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 0.02em;
}

.booking-picker-hint {
  margin: 0;
  font-size: 0.92rem;
  color: var(--color-muted);
  line-height: 1.5;
}

.booking-slots {
  max-height: min(32rem, 70vh);
  overflow-y: auto;
  padding: 0.15rem 0.35rem 0.5rem 0;
  scroll-padding-bottom: 0.5rem;
  transition: opacity 0.2s ease;
}

.booking-slots[aria-busy="true"] {
  opacity: 0.55;
  pointer-events: none;
}

.booking-days {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.booking-day-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: var(--shadow-soft);
  padding: 1rem 1.1rem 1.1rem;
}

.booking-day-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--color-border);
}

.booking-day-titles {
  min-width: 0;
}

.booking-day-dow {
  margin: 0;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-text);
  line-height: 1.25;
}

.booking-day-date {
  margin: 0.2rem 0 0;
  font-size: 0.92rem;
  color: var(--color-muted);
}

.booking-day-badge {
  flex-shrink: 0;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-accent);
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
  line-height: 1;
}

.booking-slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(5.25rem, 1fr));
  gap: 0.5rem;
}

.booking-slot-pill {
  position: relative;
  font: inherit;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  min-height: 2.65rem;
  padding: 0.5rem 0.65rem;
  border-radius: 12px;
  border: 2px solid var(--color-border);
  background: var(--color-bg);
  color: var(--color-text);
  cursor: pointer;
  transition:
    border-color 0.15s ease,
    background 0.15s ease,
    color 0.15s ease,
    box-shadow 0.15s ease;
}

.booking-slot-pill:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  box-shadow: 0 2px 10px rgba(61, 92, 74, 0.12);
}

.booking-slot-pill:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.booking-slot-pill.is-selected {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
  box-shadow: 0 2px 12px rgba(61, 92, 74, 0.25);
}

.booking-slot-pill.is-selected:hover {
  color: #fff;
  border-color: var(--color-accent-hover);
  background: var(--color-accent-hover);
}

.booking-slot-time {
  display: block;
}

.booking-slot-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.booking-empty {
  background: var(--color-notice-bg);
  border: 1px solid var(--color-notice-border);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
}

.booking-empty-title {
  margin: 0 0 0.5rem;
  font-weight: 700;
  font-size: 1.05rem;
}

.booking-empty-text {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.55;
}

.booking-selected-card {
  margin: 0 0 1.25rem;
  padding: 1rem 1.15rem;
  background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-surface) 100%);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.booking-selected-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-muted);
  margin-bottom: 0.35rem;
}

.booking-selected-main {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-text);
}

.booking-selected-sub {
  margin: 0.4rem 0 0;
  font-size: 0.92rem;
  color: var(--color-muted);
}

.booking-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.booking-form {
  position: relative;
}

.contact-aside {
  padding-top: 0.5rem;
  width: 100%;
  max-width: 100%;
}

.contact-aside h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.download-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.download-list li {
  margin-bottom: 0.5rem;
}

.download-placeholder {
  color: var(--color-muted);
  cursor: not-allowed;
  text-decoration: line-through;
  text-decoration-color: var(--color-border);
}

/* Footer */
.site-footer {
  background: var(--color-text);
  color: #e8ebe9;
  padding: 2rem 1.25rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-brand {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.15rem;
}

.footer-nav {
  display: flex;
  gap: 1.25rem;
}

.footer-nav a {
  color: #e8ebe9;
  text-decoration: none;
}

.footer-nav a:hover {
  text-decoration: underline;
}

.footer-copy {
  width: 100%;
  margin: 0.5rem 0 0;
}

.site-footer .muted {
  color: #9aa39a;
}

/* Legal pages */
.legal-page {
  max-width: 42rem;
  margin: 0 auto;
  padding: calc(var(--header-h) + 2rem) 1.25rem 4rem;
}

.legal-page h1 {
  font-family: var(--font-serif);
  font-size: 2rem;
}

.legal-page h2 {
  font-size: 1.15rem;
  margin-top: 2rem;
}
