/* ============================================================
   ReBi-Baude — style.css
   Palette: Wald (global) · Saison-Effekt: Dramatisch (fest)
   ============================================================ */

:root {
  --bg: #f3f1ea;
  --surface: #ffffff;
  --text: #23271e;
  --muted: #5f6450;
  --accent: #4a5b3c;
  --accent-soft: #e8ecdf;
  --line: #ddd9cd;
  --nav-bg: rgba(243, 241, 234, 0.85);
  --hero: #2c3526;
  --hero-text: #f3f1ea;
  --hero-muted: #bcc2ad;
  --hero-card: rgba(255, 255, 255, 0.06);
  --accent-on-hero: #c4d3a8;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Mulish', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, .serif { font-family: 'Cormorant Garamond', serif; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 28px);
  padding-right: clamp(16px, 4vw, 28px);
}

.kicker {
  margin: 0 0 14px;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}

/* ---------- Navigation ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--nav-bg);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-nav .container {
  padding-top: 15px;
  padding-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  text-decoration: none;
  color: var(--text);
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.brand-sub {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}
.nav-right { display: flex; align-items: center; gap: 26px; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}
.btn-pill {
  display: inline-block;
  text-decoration: none;
  color: var(--surface);
  background: var(--accent);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 100px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(to right, rgba(28,33,22,0.05) 0%, rgba(28,33,22,0.15) 45%, rgba(28,33,22,0.62) 100%),
    url('assets/hero_finnhuette.jpg');
  background-size: cover;
  background-position: center 42%;
  color: #ffffff;
}
.hero .container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.hero-content {
  max-width: 460px;
  padding: clamp(28px, 3vw, 40px);
  border-radius: 14px;
  background: rgba(28, 33, 22, 0.38);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.hero-kicker {
  margin: 0 0 18px;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0.9;
}
.hero h1 {
  font-weight: 700;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.04;
  margin: 0 0 18px;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}
.hero-lede {
  font-size: clamp(16px, 2.2vw, 18px);
  margin: 0 0 30px;
  opacity: 0.95;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  text-decoration: none;
  color: var(--surface);
  background: var(--accent);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 100px;
}
.btn-ghost {
  text-decoration: none;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 100px;
}

/* ---------- Highlights ---------- */
.highlights {
  padding-top: clamp(32px, 5vw, 48px);
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 40px);
}
.highlight-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.1;
}
.highlight-label {
  font-size: 14.5px;
  color: var(--muted);
  margin-top: 8px;
}

/* ---------- Über uns + Gästestimmen ---------- */
.about {
  padding-top: clamp(48px, 6vw, 60px);
  padding-bottom: clamp(48px, 6vw, 60px);
}
.about-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: clamp(28px, 5vw, 52px);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(28px, 4vw, 52px);
  align-items: center;
}
.about-card h2 {
  font-weight: 700;
  font-size: clamp(28px, 4vw, 38px);
  margin: 0 0 20px;
  line-height: 1.1;
}
.about-card p.body { font-size: 16px; color: var(--muted); margin: 0 0 16px; }
.about-card p.body:last-of-type { margin-bottom: 0; }
.about-sign {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  margin: 22px 0 0;
  color: var(--text);
}
.quote-box {
  padding: clamp(24px, 3vw, 30px);
  background: var(--accent-soft);
  border-radius: 10px;
  border-left: 3px solid var(--accent);
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.quote-inner { opacity: 1; transition: opacity 0.45s ease; }
.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 46px;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 8px;
}
.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(19px, 2.4vw, 23px);
  line-height: 1.4;
  margin: 0 0 16px;
  color: var(--text);
}
.quote-author { font-size: 13px; color: var(--muted); font-weight: 600; }
.quote-dots { display: flex; gap: 9px; margin-top: 22px; }
.quote-dots button {
  width: 8px;
  height: 8px;
  border-radius: 100px;
  border: none;
  padding: 0;
  cursor: pointer;
  background: var(--line);
  transition: all 0.35s ease;
}
.quote-dots button.active { width: 22px; background: var(--accent); }

/* ---------- Unterkunft (Saison-Effekt: Dramatisch) ---------- */
#unterkunft {
  --sec-bg: #f4f4e9;
  --sec-text: #262b1c;
  --sec-muted: #63694f;
  --sec-accent: #6f8a2e;
  --sec-soft: #e6ebd2;
  --sec-card: #ffffff;
  --sec-line: #dee2cd;
  background: var(--sec-bg);
  color: var(--sec-text);
  transition: background-color 0.6s ease, color 0.6s ease;
}
#unterkunft[data-season="winter"] {
  --sec-bg: #101a2e;
  --sec-text: #eaf1fb;
  --sec-muted: #9aabc4;
  --sec-accent: #8fc0f0;
  --sec-soft: rgba(255, 255, 255, 0.07);
  --sec-card: #1a2540;
  --sec-line: rgba(255, 255, 255, 0.12);
}
#unterkunft .container {
  padding-top: clamp(52px, 7vw, 84px);
  padding-bottom: clamp(52px, 7vw, 84px);
}
.unterkunft-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: end;
  margin-bottom: clamp(32px, 4vw, 44px);
}
.unterkunft-head .kicker { color: var(--sec-accent); transition: color 0.6s ease; }
.unterkunft-head h2 {
  font-weight: 700;
  font-size: clamp(30px, 4.6vw, 44px);
  margin: 0 0 16px;
  line-height: 1.06;
}
.unterkunft-intro {
  font-size: 17px;
  color: var(--sec-muted);
  margin: 0;
  transition: color 0.6s ease;
  max-width: 620px;
}
.season-switch {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.season-switch-label {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--sec-muted);
  font-weight: 700;
}
.season-toggle {
  display: inline-flex;
  padding: 5px;
  border-radius: 100px;
  background: var(--sec-soft);
  border: 1px solid var(--sec-line);
  transition: background-color 0.6s ease, border-color 0.6s ease;
}
.season-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  background: transparent;
  color: var(--sec-muted);
  transition: all 0.4s ease;
}
.season-btn.active { background: var(--sec-accent); color: #ffffff; }
.season-btn svg { flex: none; }

.group-label {
  margin: 0 0 18px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sec-muted);
  font-weight: 700;
}
.room-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.4vw, 24px);
}
.room-grid.spaced { margin-bottom: clamp(36px, 5vw, 52px); }
.room-card {
  background: var(--sec-card);
  border: 1px solid var(--sec-line);
  border-radius: 12px;
  overflow: hidden;
  transition: background-color 0.6s ease, border-color 0.6s ease;
}
.room-media {
  aspect-ratio: 3 / 2;
  position: relative;
  overflow: hidden;
  background: repeating-linear-gradient(135deg, var(--sec-soft), var(--sec-soft) 12px, var(--sec-bg) 12px, var(--sec-bg) 24px);
}
.room-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ph-name {
  position: absolute;
  left: 12px;
  bottom: 12px;
  font-family: ui-monospace, monospace;
  font-size: 11px;
  color: var(--sec-muted);
  background: var(--sec-card);
  padding: 5px 9px;
  border-radius: 5px;
}
.season-tag {
  position: absolute;
  right: 12px;
  top: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--sec-card);
  background: var(--sec-accent);
  padding: 4px 10px;
  border-radius: 100px;
  transition: background-color 0.6s ease;
}
.room-body { padding: 20px; }
.room-body h3 {
  font-weight: 700;
  font-size: 22px;
  margin: 0 0 9px;
  color: var(--sec-text);
}
.room-body p {
  font-size: 14.5px;
  color: var(--sec-muted);
  margin: 0;
  transition: color 0.6s ease;
}
[hidden] { display: none !important; }

/* ---------- Umgebung ---------- */
.env {
  background: var(--hero);
  color: var(--hero-text);
}
.env .container {
  padding-top: clamp(56px, 8vw, 80px);
  padding-bottom: clamp(56px, 8vw, 80px);
}
.env .kicker { color: var(--accent-on-hero); }
.env-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 52px);
  align-items: start;
}
.env-grid h2 {
  font-weight: 700;
  font-size: clamp(30px, 4.6vw, 42px);
  margin: 0 0 20px;
  line-height: 1.08;
}
.env-grid p.body { font-size: 17px; color: var(--hero-muted); margin: 0 0 16px; }
.env-grid p.body:last-of-type { margin-bottom: 0; }
.act-list { display: flex; flex-direction: column; gap: 16px; }
.act-card {
  background: var(--hero-card);
  border-radius: 10px;
  padding: 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.act-mark {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 100px;
  background: var(--accent-on-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--hero);
}
.act-card h3 {
  font-weight: 700;
  font-size: 22px;
  margin: 0 0 6px;
  color: var(--hero-text);
}
.act-card p { font-size: 14.5px; color: var(--hero-muted); margin: 0; }
.env-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 4vw, 48px);
  margin-top: clamp(40px, 5vw, 56px);
  padding-top: 40px;
  border-top: 1px solid var(--hero-card);
}
.env-stat { flex: 1; min-width: 180px; }
.env-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 46px;
  line-height: 1;
  color: var(--accent-on-hero);
}
.env-stat-unit { font-size: 18px; color: var(--hero-muted); margin-left: 5px; }
.env-stat-label { font-size: 14px; color: var(--hero-muted); margin-top: 10px; }

/* ---------- Entfernungen ---------- */
.distances {
  padding-top: clamp(56px, 7vw, 70px);
  padding-bottom: 30px;
}
.distances-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}
.distances h2 {
  font-weight: 700;
  font-size: clamp(28px, 4vw, 38px);
  margin: 0 0 14px;
  line-height: 1.1;
}
.distances .lede { font-size: 16px; color: var(--muted); margin: 0; }
.distance-row {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.distance-val {
  flex: none;
  width: 88px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 26px;
  color: var(--accent);
}
.distance-place { flex: 1; font-size: 16px; font-weight: 600; color: var(--text); }
.distance-note { font-size: 14px; color: var(--muted); }

/* ---------- Preise ---------- */
.prices {
  background: var(--hero);
  padding-top: clamp(56px, 7vw, 76px);
  padding-bottom: clamp(56px, 7vw, 76px);
}
.prices-head { max-width: 640px; margin: 0 auto 40px; text-align: center; }
.prices .kicker { color: var(--accent-on-hero); }
.prices-head h2 {
  font-weight: 700;
  font-size: clamp(28px, 4vw, 38px);
  margin: 0 0 14px;
  line-height: 1.1;
  color: var(--hero-text);
}
.prices-head .lede { font-size: 16px; color: var(--hero-muted); margin: 0; }
.price-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.price-card {
  background: var(--hero-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 24px 20px;
}
.price-card-val {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1;
  color: var(--accent-on-hero);
  margin-bottom: 12px;
}
.price-card-unit { font-family: 'Mulish', sans-serif; font-size: 13px; font-weight: 600; color: var(--hero-muted); margin-left: 4px; }
.price-card h3 {
  font-weight: 700;
  font-size: 16px;
  margin: 0 0 4px;
  color: var(--hero-text);
}
.price-card p { font-size: 13.5px; color: var(--hero-muted); margin: 0; }

/* ---------- Jahreszeiten ---------- */
.seasons {
  padding-top: clamp(40px, 5vw, 50px);
  padding-bottom: clamp(40px, 5vw, 50px);
}
.seasons-head { max-width: 620px; margin-bottom: 32px; }
.seasons h2 {
  font-weight: 700;
  font-size: clamp(28px, 4vw, 38px);
  margin: 0;
  line-height: 1.1;
}
.seasons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.season-card {
  background: var(--accent-soft);
  border-radius: 10px;
  padding: 26px 22px;
}
.season-card h3 {
  font-weight: 700;
  font-size: 24px;
  margin: 0 0 10px;
  color: var(--accent);
}
.season-card p { font-size: 14.5px; color: var(--muted); margin: 0; }

/* ---------- Tipps ---------- */
.tips {
  padding-top: clamp(56px, 7vw, 70px);
  padding-bottom: clamp(56px, 7vw, 70px);
}
.tips-head { max-width: 620px; margin-bottom: 36px; }
.tips h2 {
  font-weight: 700;
  font-size: clamp(28px, 4vw, 38px);
  margin: 0;
  line-height: 1.1;
}
.tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.tip-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 26px;
}
.tip-card h3 {
  font-weight: 700;
  font-size: 21px;
  margin: 0 0 8px;
  color: var(--accent);
}
.tip-card p { font-size: 15px; color: var(--muted); margin: 0; }

/* ---------- Buchung ---------- */
.booking { margin-bottom: clamp(56px, 8vw, 80px); }
.booking-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: clamp(28px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 4vw, 56px);
}
.booking-card h2 {
  font-weight: 700;
  font-size: clamp(30px, 4vw, 40px);
  margin: 0 0 18px;
  line-height: 1.08;
}
.booking-card .lede { font-size: 16px; color: var(--muted); margin: 0 0 28px; }
.contact-rows { display: flex; flex-direction: column; gap: 14px; }
.contact-row { display: flex; align-items: center; gap: 12px; }
.contact-key {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  width: 80px;
}
.contact-row a { color: var(--text); text-decoration: none; font-weight: 600; }
.contact-row span:last-child { color: var(--muted); }

.booking-form { display: flex; flex-direction: column; gap: 16px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.booking-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}
.booking-form input,
.booking-form textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg);
  color: var(--text);
}
.booking-form textarea { resize: vertical; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--hero);
  color: var(--hero-muted);
}
.site-footer .container {
  padding-top: 48px;
  padding-bottom: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--hero-text);
}
.footer-sub { font-size: 13px; margin-top: 4px; }
.footer-links {
  display: flex;
  gap: 26px;
  font-size: 14px;
  font-weight: 600;
  flex-wrap: wrap;
}
.footer-links a { color: var(--hero-muted); text-decoration: none; }
.credit {
  text-align: center;
  font-size: 12px;
  padding: 14px 0;
  color: var(--hero-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.credit a { color: var(--hero-muted); }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .highlights-grid,
  .about-card,
  .unterkunft-head,
  .room-grid,
  .env-grid,
  .distances-grid,
  .seasons-grid,
  .tips-grid,
  .booking-card,
  .form-row {
    grid-template-columns: 1fr;
  }
  .price-cards { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .hero { min-height: 68vh; }
  .hero .container { justify-content: center; }
  .hero-content { max-width: none; width: 100%; }
}

@media (max-width: 520px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }
  .hero { min-height: 74vh; }
  .hero-content { padding: 22px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas a { text-align: center; }
  .season-toggle { width: 100%; }
  .season-btn { flex: 1; justify-content: center; }
  .about-card,
  .booking-card {
    padding: 24px 20px;
  }
  .quote-box { min-height: 0; }
  .price-cards { grid-template-columns: 1fr; }
  .site-footer .container {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (min-width: 861px) and (max-width: 1080px) {
  .room-grid { grid-template-columns: repeat(2, 1fr); }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .seasons-grid { grid-template-columns: repeat(2, 1fr); }
  .price-cards { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Formular: Button, Honeypot, Consent, Status ---------- */
.booking-form button {
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  color: var(--surface);
  background: var(--accent);
  border: none;
  padding: 15px;
  border-radius: 100px;
  cursor: pointer;
  margin-top: 4px;
  transition: opacity 0.25s ease;
}
.booking-form button:disabled { opacity: 0.55; cursor: default; }

/* Honeypot – vom Bildschirm verbannt, nicht display:none (Bots umgehen das) */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.consent {
  flex-direction: row !important;
  align-items: flex-start;
  gap: 10px !important;
  font-weight: 500 !important;
  font-size: 13.5px !important;
  color: var(--muted) !important;
  line-height: 1.45;
}
.consent input {
  flex: none;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--accent);
  cursor: pointer;
}
.consent a { color: var(--accent); font-weight: 700; }

.form-status {
  margin: 4px 0 0;
  font-size: 14px;
  font-weight: 600;
  min-height: 1em;
}
.form-status.is-error { color: #a3402f; }
.form-status.is-ok { color: var(--accent); }

/* ---------- Rechtstexte (Impressum / Datenschutz) ---------- */
.legal {
  padding-top: clamp(40px, 6vw, 68px);
  padding-bottom: clamp(56px, 8vw, 96px);
  max-width: 820px;
}
.legal h1 {
  font-weight: 700;
  font-size: clamp(34px, 5vw, 50px);
  line-height: 1.05;
  margin: 0 0 8px;
}
.legal .legal-sub {
  color: var(--muted);
  font-size: 16px;
  margin: 0 0 clamp(32px, 4vw, 44px);
}
.legal h2 {
  font-weight: 700;
  font-size: clamp(23px, 3vw, 29px);
  margin: clamp(34px, 4vw, 44px) 0 12px;
  line-height: 1.15;
  color: var(--text);
}
.legal h3 {
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin: 22px 0 6px;
  color: var(--text);
}
.legal p, .legal li {
  font-size: 15.5px;
  color: var(--muted);
  margin: 0 0 14px;
}
.legal ul { padding-left: 22px; margin: 0 0 14px; }
.legal li { margin-bottom: 7px; }
.legal a { color: var(--accent); font-weight: 600; }
.legal strong { color: var(--text); font-weight: 700; }
.legal .legal-block {
  padding: clamp(22px, 3vw, 30px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  margin-bottom: 20px;
}
.legal .legal-block p:last-child { margin-bottom: 0; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
  margin-top: clamp(32px, 4vw, 44px);
}
