/* ═══════════════════════════════════════════════════════════════════
   MG SIGNATURE SALES — EDITORIAL SAFFRON DESIGN SYSTEM
   Inspired by Kinfolk × Monocle × Stripe Sessions
   ═══════════════════════════════════════════════════════════════════ */

:root {
  /* Palette */
  --charcoal:        #121214;
  --charcoal-2:      #1A1A1C;
  --charcoal-3:      #242428;
  --ink:             #F4F1EB;
  --ink-dim:         #B5B0A4;
  --ink-soft:        #A19B8E;
  --saffron:         #E8B02C;   /* "Sonniges Gelb" */
  --saffron-dim:     rgba(232,176,44,.18);
  --saffron-glow:    rgba(232,176,44,.35);
  --hairline:        #2A2A2C;
  --hairline-soft:   rgba(244,241,235,.08);

  /* Typography scale */
  --font-display:    'Fraunces', 'Times New Roman', serif;
  --font-body:       'Source Serif 4', Georgia, serif;
  --font-meta:       'Inter', system-ui, -apple-system, sans-serif;

  /* Layout */
  --max-w:           1240px;
  --gutter:          clamp(1.25rem, 4vw, 2.5rem);
  --radius-sm:       4px;
  --radius-md:       8px;
}

/* ─── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--charcoal);
  color: var(--ink);
  font-family: var(--font-body);
  font-feature-settings: "onum" 1, "kern" 1;
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body::before {
  /* Subtle film-grain overlay */
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' seed='5'/><feColorMatrix values='0 0 0 0 0.96  0 0 0 0 0.94  0 0 0 0 0.92  0 0 0 .08 0'/></filter><rect width='180' height='180' filter='url(%23n)' opacity='0.35'/></svg>");
  mix-blend-mode: overlay;
  opacity: .55;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; color: inherit; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }

/* ─── Typography ────────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.018em;
  line-height: 1.08;
  -webkit-hyphens: auto; hyphens: auto;
  overflow-wrap: break-word;
}
h1 { font-size: clamp(2.6rem, 6vw, 5.2rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 4.5vw, 3.6rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.85rem); font-weight: 500; }
h4 { font-size: 1.15rem; font-weight: 500; letter-spacing: -0.01em; }

.font-display  { font-family: var(--font-display); }
.font-body     { font-family: var(--font-body); }
.font-meta     { font-family: var(--font-meta); }
.italic-serif  { font-family: var(--font-display); font-style: italic; font-weight: 300; }

.small-caps {
  font-family: var(--font-meta);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 11px;
  font-weight: 500;
}
.plate-number {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  color: var(--saffron);
  letter-spacing: 0.1em;
}
.byline {
  font-family: var(--font-meta);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 10px;
  font-weight: 500;
  color: var(--ink-soft);
}

.text-saffron { color: var(--saffron); }
.text-ink-dim { color: var(--ink-dim); }
.text-ink-soft { color: var(--ink-soft); }
.highlight { color: var(--saffron); font-style: italic; font-weight: 400; }

/* Drop-cap for editorial feel */
.dropcap::first-letter {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  float: left;
  font-size: 4.5rem;
  line-height: 0.85;
  margin: 0.15em 0.12em 0 0;
  color: var(--saffron);
}

/* Pull quote */
.pull-quote {
  border-left: 2px solid var(--saffron);
  padding: 1.25rem 1.75rem;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  line-height: 1.4;
  color: var(--ink);
  margin: 2rem 0;
}

/* ─── Layout containers ─────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section { padding: clamp(3.5rem, 8vw, 7rem) 0; position: relative; z-index: 2; }
.section-tight { padding: clamp(2rem, 5vw, 4rem) 0; }

.hairline-t { border-top: 1px solid var(--hairline); }
.hairline-b { border-bottom: 1px solid var(--hairline); }

/* ─── Letterbox / Top stripe ────────────────────────────────────── */
.letterbox-top {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--saffron);
  z-index: 100;
}

/* ─── Masthead / Header ─────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(18, 18, 20, .85);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border-bottom: 1px solid var(--hairline);
}
.masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1rem;
  min-height: 64px;
}
.brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  min-width: 0;
  flex: 1 1 auto;
}
.brand-logo {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--ink);
  display: grid;
  place-items: center;
  overflow: hidden;
  flex-shrink: 0;
}
@media (min-width: 640px) {
  .brand-logo { width: 46px; height: 46px; }
  .masthead { padding: 1.15rem 0; gap: 1.5rem; }
}
.brand-logo img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.brand > span:not(.brand-logo) { min-width: 0; flex: 1 1 auto; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}
@media (min-width: 640px) {
  .brand-name { font-size: 15px; letter-spacing: 0.18em; }
}
.brand-tag {
  display: none;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 11px;
  color: var(--ink-dim);
  letter-spacing: 0.05em;
  margin-top: 1px;
}
@media (min-width: 480px) {
  .brand-tag { display: block; }
}

.nav-main { display: none; gap: 2rem; align-items: center; }
.nav-main a {
  font-family: var(--font-meta);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-dim);
  transition: color .2s ease;
  position: relative;
}
.nav-main a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--saffron);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav-main a:hover, .nav-main a.is-active { color: var(--ink); }
.nav-main a:hover::after, .nav-main a.is-active::after { transform: scaleX(1); }

.burger {
  width: 44px; height: 44px;
  border: 1px solid var(--hairline);
  display: grid; place-items: center;
  border-radius: var(--radius-sm);
  transition: border-color .2s;
  flex-shrink: 0;
}
.burger:hover { border-color: var(--saffron); }
.burger-icon, .burger-icon::before, .burger-icon::after {
  content: '';
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--ink);
  transition: all .25s ease;
  position: relative;
}
.burger-icon::before { position: absolute; top: -6px; left: 0; }
.burger-icon::after  { position: absolute; top:  6px; left: 0; }
.burger.is-open .burger-icon { background: transparent; }
.burger.is-open .burger-icon::before { top: 0; transform: rotate(45deg); }
.burger.is-open .burger-icon::after  { top: 0; transform: rotate(-45deg); }

@media (min-width: 900px) {
  .nav-main { display: flex; }
  .burger { display: none; }
}

/* Mobile menu drawer */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--charcoal);
  z-index: 80;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.85rem;
  letter-spacing: -0.015em;
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--saffron); }
.mobile-menu .btn { margin-top: 1rem; }

/* ─── Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: 14px 28px;
  font-family: var(--font-meta);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--saffron);
  background: transparent;
  color: var(--ink);
  transition: all .25s cubic-bezier(.4,0,.2,1);
  cursor: pointer;
  border-radius: 0;
  white-space: nowrap;
}
.btn:hover { background: var(--saffron); color: var(--charcoal); }
.btn-filled { background: var(--saffron); color: var(--charcoal); }
.btn-filled:hover {
  background: transparent;
  color: var(--ink);
  box-shadow: 0 0 0 1px var(--saffron), 0 0 24px var(--saffron-glow);
}
.btn-ghost { border-color: var(--hairline); }
.btn-ghost:hover { border-color: var(--saffron); background: transparent; color: var(--saffron); }

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-meta);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--saffron);
  padding-bottom: 3px;
  transition: color .2s ease, gap .25s ease;
}
.btn-text:hover { color: var(--saffron); gap: .75rem; }
.btn-text::after { content: '→'; transition: transform .25s ease; }
.btn-text:hover::after { transform: translateX(4px); }

/* ─── Hero ──────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  padding: clamp(5rem, 10vw, 8rem) 0 clamp(4rem, 8vw, 6rem);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(.35) contrast(1.05);
  opacity: .28;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 40%, transparent, var(--charcoal) 75%),
              linear-gradient(180deg, rgba(18,18,20,.3) 0%, var(--charcoal) 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.15fr 1fr; }
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: 1.5rem;
  color: var(--saffron);
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px; height: 1px;
  background: var(--saffron);
}
.hero-title {
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  line-height: 1.02;
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--saffron);
}
.hero-sub {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--ink-dim);
  max-width: 32em;
  margin-bottom: 2.25rem;
  line-height: 1.55;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  align-items: center;
}
.hero-portrait {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--charcoal-2);
  border: 1px solid var(--hairline);
}
.hero-portrait img { width: 100%; height: 100%; object-fit: cover; }
.hero-portrait::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(18,18,20,.5));
  pointer-events: none;
}
.hero-caption {
  position: absolute;
  bottom: 1.25rem; left: 1.25rem; right: 1.25rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  color: var(--ink);
  opacity: .85;
  z-index: 2;
}

/* ─── Page-Header (for non-home pages) ──────────────────────────── */
.page-header {
  padding: clamp(5rem, 10vw, 8rem) 0 clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--hairline);
}
.page-header h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  margin-top: 1rem;
  max-width: 18ch;
}
.page-header .lead {
  max-width: 52ch;
  color: var(--ink-dim);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  margin-top: 1.5rem;
  line-height: 1.55;
}

/* ─── Feature cards (Leistungen) ────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 700px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }

.card {
  position: relative;
  padding: 2.25rem 2rem;
  background: var(--charcoal-2);
  border: 1px solid var(--hairline);
  transition: border-color .3s, transform .3s, background .3s;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 280px;
}
.card:hover {
  border-color: var(--saffron);
  background: var(--charcoal-3);
  transform: translateY(-3px);
}
.card-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  color: var(--saffron);
  letter-spacing: 0.12em;
}
.card h3 { margin-bottom: .25rem; }
.card p { color: var(--ink-dim); font-size: 15px; }
.card-list {
  list-style: none;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.card-list li {
  font-family: var(--font-meta);
  font-size: 13px;
  color: var(--ink-dim);
  padding-left: 1.2rem;
  position: relative;
}
.card-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--saffron);
}

/* ─── Split section (image / text) ──────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split.reverse > :first-child { order: 2; }
}
.split-img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--charcoal-2);
}
.split-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
.split-img:hover img { transform: scale(1.04); }
.split-cap {
  margin-top: .75rem;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 13px;
  color: var(--ink-dim);
}

/* ─── Signature key-visual grid ─────────────────────────────────── */
.signature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 700px) {
  .signature-grid { grid-template-columns: repeat(3, 1fr); }
}
.signature-tile {
  margin: 0;
  border: 1px solid var(--hairline);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--charcoal);
  transition: border-color .3s, transform .4s;
}
.signature-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}
.signature-tile:hover {
  border-color: var(--saffron);
  transform: translateY(-3px);
}
.signature-tile:hover img { transform: scale(1.04); }

/* ─── Gallery strip (MICE / Locations) ──────────────────────────── */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 700px)  { .gallery { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }
@media (min-width: 1024px) { .gallery { grid-template-columns: repeat(4, 1fr); } }
.gallery-item {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--charcoal-2);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease, filter .6s ease;
  filter: saturate(.88) contrast(1.05);
}
.gallery-item:hover img { transform: scale(1.05); filter: saturate(1) contrast(1.08); }
.gallery-item.tall { aspect-ratio: 3 / 5; }

/* ─── Quote strip (full-bleed portraits with headline) ──────────── */
.quote-strip {
  padding: clamp(3rem, 6vw, 5rem) 0;
  text-align: center;
}
.quote-strip blockquote {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.25;
  max-width: 26ch;
  margin: 0 auto;
  color: var(--ink);
}
.quote-strip blockquote em {
  font-style: normal;
  color: var(--saffron);
}
.quote-strip cite {
  display: block;
  margin-top: 1.75rem;
  font-family: var(--font-meta);
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 11px;
  color: var(--ink-dim);
}

/* ─── CTA band ──────────────────────────────────────────────────── */
.cta-band {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: linear-gradient(180deg, var(--charcoal) 0%, var(--charcoal-2) 100%);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.cta-band-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 800px) {
  .cta-band-inner { grid-template-columns: 1fr auto; gap: 3rem; }
}
.cta-band h2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); max-width: 20ch; }

/* ─── Contact form ──────────────────────────────────────────────── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 700px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .full { grid-column: 1 / -1; }
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.form-field label {
  font-family: var(--font-meta);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 10px;
  font-weight: 500;
  color: var(--ink-soft);
}
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 12px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--hairline);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  transition: border-color .25s;
  border-radius: 0;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-bottom-color: var(--saffron);
}
.form-field textarea { resize: vertical; min-height: 140px; }
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--ink-soft);
  font-style: italic;
}
.honeypot { position: absolute; left: -9999px; opacity: 0; }

.form-status {
  font-family: var(--font-meta);
  font-size: 14px;
  padding: 1rem 1.25rem;
  border: 1px solid var(--hairline);
  margin-top: 1.5rem;
  display: none;
}
.form-status.is-visible { display: block; }
.form-status.is-success { border-color: var(--saffron); color: var(--saffron); }
.form-status.is-error   { border-color: #cc4f4f; color: #e88a8a; }

/* ─── Footer ────────────────────────────────────────────────────── */
.site-footer {
  padding: clamp(3rem, 6vw, 4.5rem) 0 2rem;
  border-top: 1px solid var(--hairline);
  background: var(--charcoal-2);
  position: relative;
  z-index: 2;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; }
}
.footer-grid h4,
.footer-grid .footer-label {
  font-family: var(--font-meta);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 10px;
  font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}
.footer-grid ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-grid a {
  font-size: 14px;
  color: var(--ink-dim);
  transition: color .2s;
}
.footer-grid a:hover { color: var(--saffron); }
.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--hairline);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-meta);
  font-size: 12px;
  color: var(--ink-soft);
}
.footer-bottom a:hover { color: var(--saffron); }

/* ─── Reveal animations ─────────────────────────────────────────── */
/* Transform-only: keeps content accessible for screen-readers, Lighthouse, no-JS fallback. */
.reveal {
  transform: translateY(22px);
  transition: transform 1s cubic-bezier(.16,1,.3,1);
  will-change: transform;
}
.reveal.is-visible { transform: translateY(0); }

.stagger > * {
  transform: translateY(14px);
  transition: transform .8s ease;
}
.stagger.is-visible > * { transform: translateY(0); }
.stagger.is-visible > *:nth-child(1){ transition-delay: .06s }
.stagger.is-visible > *:nth-child(2){ transition-delay: .14s }
.stagger.is-visible > *:nth-child(3){ transition-delay: .22s }
.stagger.is-visible > *:nth-child(4){ transition-delay: .30s }
.stagger.is-visible > *:nth-child(5){ transition-delay: .38s }
.stagger.is-visible > *:nth-child(6){ transition-delay: .46s }

@media (prefers-reduced-motion: reduce) {
  .reveal, .stagger > * { opacity: 1 !important; transform: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ─── Legal pages (impressum / datenschutz) ─────────────────────── */
.legal {
  max-width: 72ch;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) 0;
}
/* Centered page-header variant for legal pages */
.page-header.center-legal { text-align: center; }
.page-header.center-legal h1 { margin-left: auto; margin-right: auto; }
.page-header.center-legal .lead { margin-left: auto; margin-right: auto; }
.legal h1 { font-size: clamp(2rem, 4vw, 2.75rem); margin-bottom: 2rem; }
.legal h2 { font-size: 1.3rem; margin: 2.5rem 0 .75rem; color: var(--saffron); }
.legal h3 { font-size: 1.05rem; margin: 1.5rem 0 .5rem; }
.legal p, .legal ul { color: var(--ink-dim); font-size: 15px; margin-bottom: 1rem; line-height: 1.7; }
.legal ul { padding-left: 1.25rem; }
.legal a { color: var(--saffron); border-bottom: 1px solid transparent; }
.legal a:hover { border-bottom-color: var(--saffron); }

/* ─── Utility ───────────────────────────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.mt-0 { margin-top: 0; }
.mt-s { margin-top: 1rem; }
.mt-m { margin-top: 2rem; }
.mt-l { margin-top: 3rem; }
.flex { display: flex; }
.center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 700px){ .grid-2 { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
