/* Lokale Schriftarten: identisches Schriftbild ohne externen Google-Fonts-Abruf */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/fonts/inter-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/fonts/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "DM Serif Display";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/dm-serif-display-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "DM Serif Display";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/dm-serif-display-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bg: #fcf8f2;
  --paper: #fffdfa;
  --card: rgba(255,255,255,0.86);
  --line: rgba(13, 82, 97, 0.10);
  --teal: #123f4f;
  --teal-soft: #0e5c69;
  --coral: #f56e4a;
  --coral-dark: #e15d38;
  --green: #2d9c88;
  --gold: #f6d37f;
  --text: #25343b;
  --muted: #66767c;
  --shadow: 0 20px 50px rgba(82, 60, 41, 0.10);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at left top, rgba(245,110,74,0.08), transparent 25%),
    radial-gradient(circle at right top, rgba(45,156,136,0.08), transparent 25%),
    var(--bg);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.wrap { width: min(1200px, calc(100% - 32px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(252,248,242,0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand, .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  font-size: 25px;
}
.brand-text strong, .footer-brand strong {
  display: block;
  font-size: 21px;
  color: var(--teal);
}
.brand-text strong span, .footer-brand strong span { color: var(--coral); }
.brand-text small, .footer-brand small {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-top: 3px;
}
.flag-mini {
  display: inline-block;
  width: 18px;
  height: 12px;
  vertical-align: -1px;
  margin-right: 4px;
  border: 1px solid rgba(0,0,0,0.06);
  background: linear-gradient(90deg, #0f47af 0 45%, #fff 45% 55%, #d8262f 55% 100%);
}
.main-nav, .footer-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.main-nav a, .footer-nav a {
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}
.main-nav a:hover, .footer-nav a:hover { color: var(--teal-soft); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.2s ease;
  border: none;
  cursor: pointer;
}
.btn-top, .btn-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 14px 28px rgba(245,110,74,0.23);
}
.btn-top:hover, .btn-primary:hover { background: var(--coral-dark); }
.btn-outline {
  background: #fff;
  color: var(--green);
  border: 2px solid rgba(45,156,136,0.45);
}
.btn-outline:hover { background: rgba(255,255,255,0.92); }

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 42px 0 20px;
  align-items: center;
}
h1, h2 {
  font-family: "DM Serif Display", Georgia, serif;
  color: var(--teal);
  margin: 0;
  line-height: 1.04;
}
h1 { font-size: clamp(42px, 5vw, 72px); }
h2 { font-size: clamp(28px, 3vw, 38px); }
.hero-text {
  font-size: 21px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 620px;
}
.brush {
  width: 160px;
  height: 8px;
  margin: 18px 0 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--coral), #f49a5c);
}
.brush.small { width: 86px; height: 6px; margin-top: 10px; }
.brush.small.left { margin-left: 0; }
.section-head.center { text-align: center; }
.section-head.center .brush.small { margin-left: auto; margin-right: auto; }
.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0 18px;
}
.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.90);
  border: 1px solid var(--line);
  color: var(--muted);
  font-weight: 600;
}
.hero-note { color: var(--teal-soft); font-weight: 600; }

.scene-card {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: 38px;
  border: 1px solid rgba(255,255,255,0.65);
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, rgba(255,255,255,0.55), rgba(255,255,255,0.9));
}
.scene-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 15%, rgba(255,237,173,0.92), transparent 10%),
    linear-gradient(180deg, #b9e4fb 0 38%, #56b7d8 38% 62%, #ddb686 62% 100%);
}
.scene-ocean {
  position: absolute;
  right: 0;
  top: 36%;
  width: 45%;
  height: 44%;
  background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0) 10%), linear-gradient(180deg, #3db5d7, #6fd8de 60%, rgba(255,255,255,0.35));
  border-top-left-radius: 80px;
}
.scene-palm {
  position: absolute;
  right: 10px;
  top: 20px;
  width: 170px;
  height: 190px;
}
.scene-palm::before, .scene-palm::after {
  content: "";
  position: absolute;
  background: #74b35a;
  border-radius: 100% 0 100% 0;
}
.scene-palm::before {
  width: 92px;
  height: 24px;
  right: 10px;
  top: 10px;
  transform: rotate(20deg);
  box-shadow: -34px 22px 0 0 #74b35a, -58px 42px 0 -2px #74b35a, -14px 44px 0 -2px #74b35a;
}
.scene-palm::after {
  width: 7px;
  height: 110px;
  right: 52px;
  top: 46px;
  background: #8e6437;
  border-radius: 10px;
  transform: rotate(7deg);
}
.scene-table {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 160px;
  background: linear-gradient(180deg, #8e5a35, #7a4b29);
}
.karl-photo {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72%;
  height: auto;
  object-fit: cover;
  object-position: left bottom;
  filter: saturate(1.02) contrast(1.02);
  border-bottom-left-radius: 38px;
}
.paper-stack {
  position: absolute;
  left: 49%;
  bottom: 76px;
  width: 190px;
  height: 220px;
}
.paper {
  position: absolute;
  width: 150px;
  height: 28px;
  background: #fff7eb;
  border-radius: 4px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 8px 14px rgba(0,0,0,0.08);
}
.p1 { top: 16px; left: 22px; transform: rotate(3deg); }
.p2 { top: 56px; left: 6px; transform: rotate(-4deg); }
.p3 { top: 98px; left: 18px; transform: rotate(2deg); }
.p4 { top: 140px; left: 10px; transform: rotate(-1deg); }
.paper-note {
  position: absolute;
  left: 20px;
  display: inline-block;
  padding: 4px 10px;
  background: #f1df97;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  color: #5d4a1d;
  font-size: 15px;
  font-weight: 600;
}
.n1 { top: 18px; }
.n2 { top: 58px; left: 9px; }
.n3 { top: 99px; left: 20px; }
.n4 { top: 140px; left: 13px; }
.n5 { top: 180px; left: 36px; }
.sticky-karl {
  position: absolute;
  right: 20px;
  top: 270px;
  width: 142px;
  padding: 14px 12px;
  background: #ffe9a8;
  box-shadow: 0 12px 22px rgba(0,0,0,0.12);
  color: var(--teal-soft);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  transform: rotate(-3deg);
}
.sticky-karl small { font-size: 15px; color: #47575d; }
.mug {
  position: absolute;
  right: 118px;
  bottom: 30px;
  width: 88px;
  height: 88px;
  border-radius: 0 0 18px 18px;
  background: #f6e8d4;
  border: 4px solid #c98f58;
  color: #855935;
  font-weight: 700;
  display: grid;
  place-items: center;
  text-align: center;
  transform: rotate(-2deg);
}
.dr-flag {
  position: absolute;
  right: 30px;
  bottom: 28px;
  width: 44px;
  height: 82px;
}
.dr-flag::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 4px;
  height: 82px;
  background: #9c7245;
}
.dr-flag::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 8px;
  width: 34px;
  height: 24px;
  background: linear-gradient(90deg, #0f47af 0 45%, #fff 45% 55%, #d8262f 55% 100%);
  border: 1px solid rgba(0,0,0,0.08);
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 24px;
}
.feature-card, .process-card, .faq-item, .faq-extra, .form-panel, .contact-side, .trust-box {
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.feature-card, .process-card, .form-panel, .contact-side, .trust-box { border-radius: var(--radius); }
.feature-card {
  padding: 28px 24px;
  text-align: center;
}
.feature-visual {
  width: 110px;
  height: 80px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: linear-gradient(180deg, #fff8f1, #fdf0e3);
  font-size: 42px;
}
.feature-card h2 {
  font-size: 28px;
  margin-bottom: 10px;
}
.feature-card p { color: var(--muted); line-height: 1.6; }

.process-section { padding-top: 72px; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 30px;
}
.process-card {
  position: relative;
  padding: 32px 24px 24px;
  text-align: center;
}
.step {
  position: absolute;
  left: 16px;
  top: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--coral);
  font-weight: 800;
}
.process-icon {
  width: 104px;
  height: 104px;
  margin: 8px auto 18px;
  border-radius: 26px;
  background: linear-gradient(180deg, #fffaf6, #fef0e5);
  display: grid;
  place-items: center;
  font-size: 54px;
  overflow: hidden;
}
.karl-mini img { width: 100%; height: 100%; object-fit: cover; }
.process-card h3 { color: var(--teal); margin: 0 0 10px; font-size: 30px; font-family: "DM Serif Display", Georgia, serif; font-weight: 400; }
.process-card p { color: var(--muted); line-height: 1.55; }

.lower-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  padding-top: 72px;
}
.faq-item {
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 12px;
}
.faq-item summary {
  padding: 18px 20px;
  font-weight: 700;
  color: var(--teal);
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { margin: 0; padding: 0 20px 18px; color: var(--muted); }
.faq-extra {
  padding: 18px 20px;
  border-radius: 18px;
  color: var(--muted);
}
.contact-block {
  display: grid;
  grid-template-columns: 1fr 278px;
  gap: 20px;
}
.form-panel { padding: 28px; }
.contact-form {
  display: grid;
  gap: 16px;
}
.double-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-form label {
  display: grid;
  gap: 8px;
}
.contact-form span {
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(18,63,79,0.12);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
  background: #fff;
}
.contact-form textarea { resize: vertical; min-height: 160px; }
.submit-btn { width: 100%; }
.form-status { margin: 0; color: var(--teal-soft); font-size: 14px; min-height: 20px; }
.contact-side {
  padding: 22px;
  background: rgba(234,244,243,0.76);
}
.contact-side h3 {
  margin: 0 0 14px;
  color: var(--teal);
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
  font-size: 28px;
}
.side-box {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(18,63,79,0.08);
  border-radius: 20px;
  padding: 16px;
  margin-top: 14px;
}
.side-box strong { display: block; color: var(--teal); margin-bottom: 6px; }
.side-box p { color: var(--muted); margin: 0 0 4px; }
.side-box small, .side-box a { color: var(--teal-soft); }

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 56px 0 72px;
}
.trust-box {
  padding: 22px 18px;
}
.trust-box {
  display: flex;
  gap: 14px;
}
.trust-icon { font-size: 30px; line-height: 1; }
.trust-box h4 {
  margin: 0 0 8px;
  color: var(--teal);
}
.trust-box p { margin: 0; color: var(--muted); line-height: 1.55; }
.site-footer {
  background: #0f5662;
  color: #fff;
  padding: 18px 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
}
.footer-nav a { color: rgba(255,255,255,0.86); }
.footer-copy { color: rgba(255,255,255,0.74); }

@media (max-width: 1100px) {
  .hero,
  .features,
  .process-grid,
  .lower-grid,
  .contact-block,
  .trust-strip,
  .footer-inner { grid-template-columns: 1fr; }
  .main-nav { display: none; }
  .hero { padding-top: 24px; }
  .scene-card { min-height: 560px; }
  .karl-photo { width: 76%; }
  .footer-inner { text-align: center; }
}
@media (max-width: 760px) {
  .wrap { width: min(100% - 24px, 1200px); }
  .header-inner { min-height: 74px; }
  h1 { font-size: 42px; }
  h2 { font-size: 30px; }
  .hero-text { font-size: 18px; }
  .double-fields { grid-template-columns: 1fr; }
  .scene-card { min-height: 500px; }
  .karl-photo { width: 84%; }
  .paper-stack { left: 52%; width: 150px; }
  .sticky-karl { right: 12px; top: 238px; width: 126px; font-size: 16px; }
  .mug { right: 96px; width: 74px; height: 74px; font-size: 14px; }
  .dr-flag { right: 18px; }
}


/* VERSION 4: saubere Bild-Assets statt improvisierter Mischgrafiken */
.hero-image-card {
  position: relative;
  overflow: hidden;
  border-radius: 38px;
  border: 1px solid rgba(255,255,255,0.72);
  box-shadow: var(--shadow);
  background: #fffaf4;
}
.hero-image-card > img {
  width: 100%;
  height: auto;
  display: block;
}
.hero-paper-labels {
  position: absolute;
  right: 44px;
  bottom: 160px;
  display: grid;
  gap: 8px;
  pointer-events: none;
  transform: rotate(-1deg);
}
.hero-paper-labels span {
  display: inline-flex;
  width: max-content;
  padding: 6px 12px;
  border-radius: 7px;
  background: #f7dd83;
  color: #5d461d;
  font-weight: 800;
  font-size: clamp(12px, 1.15vw, 15px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}
.hero-paper-labels span:nth-child(2) { margin-left: -12px; }
.hero-paper-labels span:nth-child(3) { margin-left: 8px; }
.hero-paper-labels span:nth-child(4) { margin-left: -8px; }
.hero-paper-labels span:nth-child(5) { margin-left: 34px; }
.hero-sticky {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 148px;
  padding: 14px;
  border-radius: 3px;
  background: #ffe9a8;
  color: var(--teal-soft);
  font-size: 20px;
  line-height: 1.12;
  font-weight: 800;
  transform: rotate(3deg);
  box-shadow: 0 14px 24px rgba(0,0,0,0.15);
}
.hero-sticky span {
  display: inline-block;
  margin-top: 4px;
  color: #40545a;
  font-size: 15px;
}

.asset-visual {
  width: 100%;
  height: 190px;
  margin: 0 auto 18px;
  background: transparent;
  box-shadow: none;
}
.asset-visual img {
  max-height: 185px;
  width: auto;
  object-fit: contain;
  border-radius: 22px;
}

.asset-process {
  position: relative;
  width: 200px;
  height: 200px;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}
.asset-process img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 24px;
}
.speech-text {
  position: absolute;
  top: 34px;
  right: 22px;
  width: 112px;
  color: var(--teal-soft);
  font-weight: 900;
  font-size: 12px;
  line-height: 1.18;
  text-align: center;
  pointer-events: none;
}

@media (max-width: 1100px) {
  .hero-paper-labels { right: 30px; bottom: 130px; }
}
@media (max-width: 760px) {
  .hero-paper-labels { display: none; }
  .hero-sticky {
    top: 16px;
    right: 16px;
    width: 126px;
    font-size: 16px;
  }
  .hero-sticky span { font-size: 12px; }
  .asset-visual { height: 160px; }
  .asset-visual img { max-height: 155px; }
  .asset-process { width: 170px; height: 170px; }
  .speech-text {
    top: 28px;
    right: 18px;
    width: 92px;
    font-size: 10px;
  }
}


/* VERSION 5: Feinschliff Grafiken und klare Sprechblase */
.asset-visual {
  height: 165px !important;
  margin: 0 auto 16px !important;
  background: transparent !important;
  box-shadow: none !important;
}
.asset-visual img {
  max-height: 160px !important;
  max-width: 92% !important;
  object-fit: contain !important;
  border-radius: 20px !important;
}
.asset-process {
  width: 185px !important;
  height: 185px !important;
  margin: 6px auto 18px !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}
.asset-process img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  border-radius: 24px !important;
}
.process-card:first-child .asset-process {
  width: 195px !important;
  height: 195px !important;
}
.karl-process {
  position: relative !important;
  overflow: visible !important;
}
.karl-process .speech-text {
  position: absolute !important;
  top: 10px !important;
  right: -34px !important;
  width: 150px !important;
  padding: 11px 13px !important;
  border-radius: 24px !important;
  background: rgba(255,253,246,0.99) !important;
  border: 2px solid rgba(14,92,105,0.38) !important;
  color: #123f4f !important;
  font-family: Inter, system-ui, sans-serif !important;
  font-weight: 900 !important;
  font-size: 13.5px !important;
  line-height: 1.18 !important;
  text-align: center !important;
  letter-spacing: -0.01em !important;
  text-shadow: none !important;
  box-shadow: 0 10px 24px rgba(18,63,79,0.14) !important;
  z-index: 6 !important;
  pointer-events: none !important;
}
.karl-process .speech-text::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: -10px;
  width: 20px;
  height: 20px;
  background: rgba(255,253,246,0.99);
  border-right: 2px solid rgba(14,92,105,0.38);
  border-bottom: 2px solid rgba(14,92,105,0.38);
  transform: rotate(45deg);
  border-bottom-right-radius: 4px;
}
.hero-paper-labels { gap: 7px !important; }
.hero-paper-labels span {
  padding: 5px 10px !important;
  font-size: clamp(11px,1.05vw,14px) !important;
  border-radius: 6px !important;
}
.hero-sticky {
  background: #ffe9a8 !important;
  color: #0e5c69 !important;
  font-weight: 900 !important;
}
.hero-sticky span { color: #30464d !important; }
.faq-item,.faq-extra,.form-panel,.contact-side,.feature-card,.process-card,.trust-box {
  background: rgba(255,255,255,0.93) !important;
}
@media (max-width:760px) {
  .asset-visual { height: 150px !important; }
  .asset-visual img { max-height: 145px !important; }
  .asset-process,.process-card:first-child .asset-process { width: 165px !important; height: 165px !important; }
  .karl-process .speech-text {
    top: 4px !important;
    right: -22px !important;
    width: 118px !important;
    padding: 8px 9px !important;
    font-size: 10.5px !important;
    line-height: 1.15 !important;
  }
  .karl-process .speech-text::after { left: 16px; bottom: -8px; width: 16px; height: 16px; }
}


/* Rechtstexte */
.legal-page {
  max-width: 920px;
  padding: 52px 0 72px;
}
.legal-back {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--teal-soft);
  font-weight: 700;
}
.legal-intro {
  max-width: 820px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}
.legal-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.93);
  box-shadow: var(--shadow);
}
.legal-card h2 {
  margin: 34px 0 12px;
  font-size: 28px;
  line-height: 1.2;
}
.legal-card h2:first-child { margin-top: 0; }
.legal-card p,
.legal-card li {
  line-height: 1.75;
}
.legal-card p { margin: 0 0 16px; }
.legal-card a {
  color: var(--teal-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-updated {
  margin: 24px 0;
  color: var(--muted);
  font-size: 14px;
}
@media (max-width: 760px) {
  .legal-page { padding: 32px 0 52px; }
  .legal-card { padding: 24px 18px; }
  .legal-card h2 { font-size: 25px; }
}
