/* Inner Majesty™ — Stylesheet
   Palette · Typography · Layout
   ---------------------------------- */

:root {
  /* Marken-Palette */
  --cream:  #faf9f6;
  --beige:  #f1eee8;
  --ink:    #1f2326;
  --grey:   #4a545a;
  --gold:   #b08a3c;
  --rose:   #9e3a5d;

  /* Typo */
  --serif: "DM Serif Display", "Cormorant Garamond", Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  /* Größen */
  --maxw-narrow: 760px;
  --maxw: 1180px;
  --maxw-wide: 1320px;
  --radius: 4px;
  --gap: clamp(1rem, 2.5vw, 1.75rem);

  /* Schrift-Skala */
  --fs-hero: clamp(2.75rem, 6.2vw, 5rem);
  --fs-h1:   clamp(2.25rem, 4.8vw, 3.5rem);
  --fs-h2:   clamp(1.35rem, 2.6vw, 1.9rem);
  --fs-h3:   clamp(1.05rem, 1.6vw, 1.25rem);
  --fs-body: clamp(1.02rem, 1.18vw, 1.18rem);
  --fs-small: 0.875rem;
  --fs-tiny:  0.75rem;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--ink); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.2s, color 0.2s; }
a:hover { color: var(--gold); border-color: var(--gold); }

p { margin-bottom: 1.1rem; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--gold); color: var(--cream); }

/* --- Typografie --- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }

.eyebrow {
  font-family: var(--sans);
  font-size: var(--fs-tiny);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: inline-block;
  margin-bottom: 1rem;
}

.lead {
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--ink);
  font-weight: 500;
}

blockquote, .pullquote {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  line-height: 1.4;
  color: var(--rose);
  font-style: italic;
  margin: 2rem auto;
  max-width: 600px;
  text-align: center;
}

/* --- Layout & Sections --- */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}
.container-narrow {
  max-width: var(--maxw-narrow);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}
.container-wide {
  max-width: var(--maxw-wide);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

section {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}
section.tinted { background: var(--beige); }
section.rose-tinted {
  background: linear-gradient(180deg, var(--beige) 0%, #efe2e6 100%);
  border-top: 1px solid rgba(158, 58, 93, 0.12);
  border-bottom: 1px solid rgba(158, 58, 93, 0.12);
}
section.dark {
  background: var(--ink);
  color: var(--cream);
}
section.dark h1,
section.dark h2,
section.dark h3,
section.dark h4 { color: var(--cream); }
section.dark p { color: rgba(241, 238, 232, 0.82); }
section.dark .eyebrow { color: var(--gold); }
section.dark blockquote,
section.dark .pullquote { color: var(--gold); }
section.dark a { color: var(--gold); }
section.dark.rose-accent { border-top: 4px solid var(--rose); }

/* --- Split image+text layouts --- */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: stretch;
}
@media (min-width: 880px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split.flip > .split-media { order: 2; }
  .split.wide-text { grid-template-columns: 5fr 7fr; }
  .split.wide-text.flip { grid-template-columns: 7fr 5fr; }
  .split.tight-media { grid-template-columns: 3fr 9fr; gap: clamp(3rem, 7vw, 7rem); }
  .split.tight-media.flip { grid-template-columns: 9fr 3fr; }
  .split-media {
    aspect-ratio: auto;
    min-height: 100%;
    height: 100%;
    min-width: 0;
    max-width: 100%;
  }
  .split-text { min-width: 0; }
}
.split-media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: var(--beige);
  aspect-ratio: 4 / 5;
  box-shadow: 0 18px 50px -25px rgba(31, 35, 38, 0.35);
}
.split-media.landscape { aspect-ratio: 4 / 3; }
.split-media img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center;
}
.split-media.face-left img    { object-position: 30% center; }
.split-media.face-right img   { object-position: 70% center; }
.split-media.face-top img     { object-position: center 25%; }
.split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split-text h2 { font-size: var(--fs-h2); margin-bottom: 1.1rem; }
.split-text h2:first-child { margin-top: 0; }

.indent-right { margin-left: auto; transform: translateX(clamp(1rem, 5vw, 6rem)); }

/* Full-bleed image band */
.image-band {
  width: 100%;
  height: clamp(280px, 45vh, 480px);
  background-size: cover;
  background-position: center;
}

/* Diamond divider */
.diamond {
  text-align: center;
  margin: clamp(1rem, 2vw, 1.5rem) 0;
  color: var(--gold);
  font-size: clamp(1.4rem, 2vw, 1.75rem);
  letter-spacing: 0.4em;
  line-height: 1;
}
.diamond::before { content: "◇"; }

/* --- Header / Nav --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 249, 246, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid rgba(31, 35, 38, 0.06);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem clamp(1.25rem, 4vw, 3rem);
  max-width: var(--maxw-wide);
  margin: 0 auto;
}
.brand {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--ink);
  border: none;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
}
.brand:hover { color: var(--gold); }
.brand:hover .brand-mark { color: var(--ink); }
.brand sup { font-size: 0.55em; vertical-align: super; margin-left: 0.05em; }
.brand-mark {
  color: var(--gold);
  font-size: 0.85em;
  margin-right: 0.55em;
  line-height: 1;
  transition: color 0.2s;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-family: var(--sans);
  font-size: 1.5rem;
  color: var(--ink);
  cursor: pointer;
  line-height: 1;
}

.nav-list {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}
.nav-list a {
  font-size: var(--fs-small);
  letter-spacing: 0.05em;
  color: var(--ink);
  border: none;
  position: relative;
  padding: 0.25rem 0;
}
.nav-list a:hover,
.nav-list a.current {
  color: var(--gold);
}
.nav-list a.current::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--gold);
}

@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .nav-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--cream);
    padding: 0.5rem 0 1.25rem;
    border-bottom: 1px solid rgba(31, 35, 38, 0.08);
  }
  .nav-list.open { display: flex; }
  .nav-list a {
    padding: 0.85rem 1.5rem;
    width: 100%;
  }
  .nav-list a.current::after { display: none; }
}

/* --- Hero --- */
.hero {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(1.5rem, 3vw, 2.25rem) 0 clamp(1.5rem, 2.5vw, 2rem);
  position: relative;
  border-bottom: 3px solid var(--rose);
}
.hero .container {
  max-width: 980px;
  text-align: center;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  color: var(--cream);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 0.6rem;
}
.hero .hero-eyebrow {
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.hero .hero-sub-line {
  font-family: var(--sans);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  color: rgba(241, 238, 232, 0.85);
  margin: 0 auto clamp(1rem, 2vw, 1.35rem);
  max-width: 38ch;
}
.hero-rule {
  width: clamp(120px, 18vw, 200px);
  height: 1px;
  background: var(--gold);
  margin: 0 auto clamp(1rem, 2vw, 1.35rem);
}
.hero .btn.pill {
  border-radius: 999px;
  padding: 1rem 2.2rem;
  font-size: 0.95rem;
}
/* Legacy hero-image (now unused but kept for safety) */
.hero-image { display: none; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.95rem 1.85rem;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  background: var(--gold);
  color: var(--ink);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  text-align: center;
}
.btn:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
  transform: translateY(-1px);
}
.btn.rose { color: var(--cream); }
.btn.ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn.ghost:hover {
  background: var(--ink);
  color: var(--cream);
}
.btn.rose {
  background: var(--rose);
  border-color: var(--rose);
}
.btn.rose:hover {
  background: var(--gold);
  border-color: var(--gold);
}

/* --- Content sections --- */
.prose {
  max-width: var(--maxw-narrow);
  margin-left: auto;
  margin-right: auto;
}
.prose.full { max-width: none; }
.prose h2 {
  font-size: var(--fs-h2);
  margin-bottom: 1.25rem;
}
.prose h3 {
  font-size: var(--fs-h3);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.prose p + h2,
.prose p + h3 { margin-top: 1.75rem; }
.prose ul {
  list-style: none;
  padding-left: 0;
  margin: 1.25rem 0;
}
.prose ul li {
  padding-left: 1.75rem;
  position: relative;
  margin-bottom: 0.75rem;
}
.prose ul li::before {
  content: "◇";
  color: var(--gold);
  position: absolute;
  left: 0;
  top: 0.05em;
  font-size: 0.85em;
}

/* Three-Pillar grid */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  margin: clamp(2.5rem, 5vw, 4rem) 0 0;
}
@media (max-width: 820px) {
  .pillars { grid-template-columns: 1fr; gap: 3rem; }
}
.pillar {
  text-align: center;
  padding: 0 0.5rem;
}
.pillar .label {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--rose);
  letter-spacing: 0.01em;
  margin-bottom: 1rem;
  display: block;
  font-weight: 400;
  line-height: 1.1;
}
.pillar h3 {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 1.8vw, 1.65rem);
  color: var(--ink);
  margin-bottom: 0.85rem;
  line-height: 1.3;
}
.pillar p { color: var(--grey); font-size: var(--fs-body); line-height: 1.7; }
/* Pillars in dark sections */
section.dark .pillar h3 { color: var(--cream); }
section.dark .pillar p { color: rgba(241, 238, 232, 0.72); }
section.dark .pillar .label { color: var(--rose); }

/* Card / Format box */
.card {
  background: var(--cream);
  border: 1px solid rgba(31, 35, 38, 0.1);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  margin: 1.5rem 0;
}
.card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}
.card .price {
  font-family: var(--sans);
  font-size: var(--fs-small);
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
@media (min-width: 880px) {
  .card-grid .card .price { min-height: 2.8em; display: block; }
}
.card ul li { font-size: var(--fs-small); margin-bottom: 0.4rem; }
.card-addendum {
  margin-top: 1.25rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(176, 138, 60, 0.35);
  border-radius: 6px;
  background: rgba(176, 138, 60, 0.05);
}
.card-addendum p { margin: 0 0 0.85rem 0; font-size: 0.95rem; color: var(--grey); }
.card-addendum .btn { font-size: 0.9rem; padding: 0.45rem 1rem; }
@media (min-width: 880px) {
  .card-grid .card .card-addendum { margin-top: auto; }
}

/* Zwei Formate nebeneinander */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 2.5vw, 2rem);
  margin: clamp(1.5rem, 3vw, 2.25rem) 0;
}
@media (min-width: 880px) {
  .card-grid { grid-template-columns: 1fr 1fr; align-items: stretch; }
  .card-grid .card { margin: 0; display: flex; flex-direction: column; }
}

/* Angebote gestapelt über die volle Breite */
.card-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin: clamp(1.5rem, 3vw, 2.25rem) 0;
}
.card-stack .card {
  margin: 0;
  padding: clamp(1.75rem, 3vw, 2.5rem) clamp(1.75rem, 4vw, 3rem);
}

/* Preis-Highlight im dunklen Block — leiser */
.price-highlight {
  font-family: var(--serif);
  color: var(--gold);
  font-size: clamp(1.15rem, 1.7vw, 1.5rem);
  margin-top: 1.5rem;
  margin-bottom: 0.25rem;
}
.price-note {
  color: rgba(241, 238, 232, 0.65);
  font-size: var(--fs-small);
}

/* Disclaimer-Block: nur Innenabstand klein */
.disclaimer {
  padding: clamp(0.5rem, 1vw, 0.75rem) 0;
  font-size: var(--fs-small);
  color: var(--grey);
  line-height: 1.5;
  max-width: none !important;
  text-align: center;
}
.disclaimer.container-narrow { max-width: var(--maxw) !important; }
.disclaimer p { margin-bottom: 0; }

/* Leichter Right-Shift für „Spur nach rechts" auf inneren Seiten:
   verschiebt zentrierte Container leicht nach rechts. */
@media (min-width: 760px) {
  .page-inner .container,
  .page-inner .container-narrow {
    margin-left: auto;
    margin-right: auto;
    transform: translateX(clamp(0px, 1vw, 1.25rem));
  }
  .page-inner .page-head .container { transform: none; }
}

/* CTA stripe (now used as full-bleed band) */
.cta-band {
  background: var(--rose);
  color: var(--cream);
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  text-align: center;
}
.cta-band .container { max-width: 760px; }
.cta-band h2 { color: var(--cream); margin-bottom: 0.85rem; font-size: var(--fs-h2); }
.cta-band p { color: rgba(250, 249, 246, 0.92); margin-bottom: 1.75rem; font-size: 1.1rem; }
.cta-band .btn {
  background: var(--cream); border-color: var(--cream); color: var(--rose);
  border-radius: 999px; padding: 1.05rem 2.4rem;
}
.cta-band .btn:hover { background: var(--ink); border-color: var(--ink); color: var(--cream); }

.cta-stripe {
  text-align: center;
  padding: clamp(2.5rem, 5vw, 4rem) 1.5rem;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius);
  margin: 2rem 0;
  border-top: 3px solid var(--rose);
}
.cta-stripe h2 { margin-bottom: 0.75rem; color: var(--cream); }
.cta-stripe p { color: rgba(241, 238, 232, 0.78); margin-bottom: 1.5rem; }
.cta-stripe .btn { background: var(--rose); border-color: var(--rose); color: var(--cream); }
.cta-stripe .btn:hover { background: var(--gold); border-color: var(--gold); }

/* --- Forms --- */
.form-wrap {
  max-width: 640px;
  margin: 0 auto;
}
.form-section {
  margin: 2.5rem 0;
}
.form-section h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--ink);
}
.form-section .hint {
  font-size: var(--fs-small);
  color: var(--grey);
  margin-bottom: 1.5rem;
}
.field {
  margin-bottom: 1.25rem;
}
.field label {
  display: block;
  font-size: var(--fs-small);
  color: var(--ink);
  margin-bottom: 0.4rem;
  font-weight: 500;
}
.field .req { color: var(--rose); }
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="number"],
.field select,
.field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid rgba(31, 35, 38, 0.18);
  border-radius: var(--radius);
  padding: 0.75rem 0.9rem;
  transition: border-color 0.2s, background 0.2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
}
.field textarea { resize: vertical; min-height: 120px; }
.field .check {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: var(--fs-small);
  color: var(--grey);
  line-height: 1.5;
}
.field .check input { margin-top: 0.25em; }
.field .check a { color: var(--ink); border-bottom: 1px solid var(--gold); }
.field .check a:hover { color: var(--gold); }

/* Radio / checkbox groups */
.choices { display: flex; flex-direction: column; gap: 0.6rem; }
.choices label {
  display: flex; gap: 0.6rem; align-items: flex-start;
  font-size: var(--fs-small); color: var(--ink); font-weight: 400;
  cursor: pointer;
}

/* --- Footer --- */
.site-footer {
  background: var(--ink);
  color: var(--beige);
  padding: clamp(3rem, 5vw, 4.5rem) 1.5rem 2rem;
  margin-top: clamp(4rem, 8vw, 6rem);
  text-align: center;
}
.site-footer .footer-grid {
  max-width: var(--maxw-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 720px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    text-align: left;
  }
}
.site-footer h4 {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.site-footer .author {
  color: rgba(241, 238, 232, 0.7);
  font-size: var(--fs-small);
  margin-bottom: 0.4rem;
}
.site-footer a {
  color: rgba(241, 238, 232, 0.75);
  border: none;
  font-size: var(--fs-small);
}
.site-footer a:hover { color: var(--gold); }
.site-footer .footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.site-footer .footer-social {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
}
@media (min-width: 720px) {
  .site-footer .footer-social { justify-content: flex-start; }
}
.site-footer .footer-social a {
  display: inline-flex;
  width: 38px; height: 38px;
  border: 1px solid rgba(241, 238, 232, 0.25);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.site-footer .footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(176, 138, 60, 0.08);
}
.site-footer .footer-social svg {
  width: 16px; height: 16px;
  fill: currentColor;
}

.site-footer .footer-bottom {
  max-width: var(--maxw);
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(176, 138, 60, 0.2);
  font-size: var(--fs-tiny);
  color: var(--gold);
  line-height: 1.6;
}
.site-footer .footer-bottom p { color: var(--gold); }
.site-footer .footer-bottom .copyright {
  margin-top: 1rem;
  color: rgba(241, 238, 232, 0.5);
}

/* --- Cookie banner --- */
.cookie-banner {
  position: fixed;
  bottom: 1rem; left: 1rem; right: 1rem;
  max-width: 480px;
  margin: 0 auto;
  background: var(--ink);
  color: var(--beige);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  z-index: 100;
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-banner p {
  font-size: var(--fs-small);
  margin-bottom: 1rem;
  line-height: 1.5;
}
.cookie-banner a { color: var(--gold); border-bottom: 1px solid var(--gold); }
.cookie-banner .actions {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
}
.cookie-banner .btn {
  padding: 0.6rem 1rem;
  font-size: var(--fs-small);
}

/* --- Page header (inner pages) — hell und schlicht --- */
.page-head {
  background: #f1eee8;
  color: var(--ink);
  padding: clamp(2.75rem, 5vw, 4rem) 0 clamp(1.5rem, 3vw, 2.25rem);
  text-align: center;
}
.page-head .container { max-width: 760px; }
.page-head.wide .container { max-width: 1000px; }
.page-head .eyebrow { color: var(--gold); }
.page-head h1 {
  font-family: var(--serif);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 auto 0.75rem;
  max-width: 22ch;
}
.page-head .subtitle {
  color: var(--grey);
  font-family: var(--sans);
  font-style: italic;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  font-weight: 400;
  max-width: none;
  margin: 0 auto;
}
.page-head + .diamond { margin-top: clamp(1rem, 2vw, 1.5rem); }
.page-head::after {
  content: "";
  display: block;
  width: 80px;
  height: 1px;
  background: var(--gold);
  margin: clamp(1.75rem, 3.5vw, 2.5rem) auto 0;
}

/* Legal text styling */
.legal h2 {
  font-size: 1.4rem;
  margin-top: 2.25rem;
  margin-bottom: 0.5rem;
  color: var(--ink);
}
.legal h3 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 1.5rem;
  margin-bottom: 0.4rem;
}
.legal p { font-size: 0.95rem; color: var(--grey); margin-bottom: 0.8rem; }
.legal strong { color: var(--ink); }

/* --- Utilities --- */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mt-2 { margin-top: 2rem; }
.mt-4 { margin-top: 4rem; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
