/* ==========================================================================
   Grünberger Juwelier — Goldankauf & Silberankauf Grünberg
   Farben und Typografie sind 1:1 aus der bisherigen Wix-Seite uebernommen.
   ========================================================================== */

/* ---------- Design-Tokens -------------------------------------------------- */
:root {
  --black:       #000;
  --panel:       #0d0d0d;   /* leicht abgesetzte Flaechen auf Schwarz */
  --grey:        #404040;   /* Bildspalten der Wix-Vorlage */
  --beige:       #e7dfd8;   /* Lauftext-Leiste */
  --beige-warm:  #efe6d9;   /* helle Inhaltskaesten */
  --gold:        #d4af37;
  --gold-deep:   #a5842a;
  /* In der Wix-Vorlage liegt ein halbtransparentes Orange (#e35106, 50 %)
     ueber der beigen Leiste. Das Ergebnis ist dieser Ton - hier direkt als
     Vollfarbe, damit der Text nicht auf Schwarz durchschlaegt. */
  --strip:       #e5986f;

  --white:       #fff;
  --white-soft:  rgba(255, 255, 255, .82);
  --ink:         #14120f;   /* Text auf hellen Flaechen */
  --ink-soft:    #454039;
  --line:        rgba(255, 255, 255, .16);
  --line-dark:   rgba(20, 18, 15, .18);

  /* Typografie */
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans:    "Jost", "Century Gothic", "Futura", system-ui, -apple-system, sans-serif;
  --font-serif:   "Playfair Display", Georgia, serif;
  --font-offer:   "Fahkwang", "Trebuchet MS", sans-serif;

  /* Raster */
  --maxw: 1200px;
  --gutter: clamp(1.25rem, 4vw, 3.5rem);
  --radius: 4px;
  --shadow: 0 18px 48px rgba(0, 0, 0, .45);
}

/* ---------- Reset ---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 8rem;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-wrap: break-word;
}

img, picture, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }

h1, h2, h3, h4, h5, h6 { margin: 0 0 .5em; line-height: 1.15; font-weight: 400; }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.25rem; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* ---------- Hilfsklassen --------------------------------------------------- */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute;
  left: .5rem; top: -100px;
  z-index: 999;
  padding: .75rem 1.25rem;
  background: var(--beige);
  color: var(--ink);
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--radius);
  transition: top .18s ease;
}
.skip-link:focus { top: .5rem; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.mt-sm       { margin-top: .75rem; }
.m-0         { margin: 0; }
.section-pad { padding-block: clamp(2.5rem, 6vw, 4rem); }

/* ---------- Buttons -------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 48px;
  padding: .7rem 1.6rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

/* Heller Knopf auf schwarzem Grund - so wie in der Vorlage */
.btn--light {
  background: var(--beige);
  border-color: var(--beige);
  color: var(--ink);
}
.btn--light:hover, .btn--light:focus-visible { background: var(--white); border-color: var(--white); }

.btn--gold {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}
.btn--gold:hover, .btn--gold:focus-visible { background: var(--gold); color: var(--black); }

.btn--dark {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}
.btn--dark:hover, .btn--dark:focus-visible { background: var(--grey); border-color: var(--grey); }

/* ==========================================================================
   Kopfbereich
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { max-width: 1440px; }

.site-header__inner {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.25rem);
  min-height: 92px;
  padding-block: .85rem;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  flex: 0 0 auto;
  text-decoration: none;
  color: var(--white);
}
.brand img { width: clamp(160px, 22vw, 232px); height: auto; }
.brand__lines {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(.85rem, 1.5vw, 1.05rem);
  line-height: 1.3;
  text-align: center;
  color: var(--white);
}

/* Navigation */
.nav { margin-left: auto; }
.nav__list {
  display: flex;
  align-items: center;
  gap: clamp(.9rem, 2vw, 2rem);
  margin: 0; padding: 0;
  list-style: none;
}
.nav__link {
  display: inline-block;
  padding: .4rem .1rem;
  color: var(--white);
  font-size: .95rem;
  font-weight: 400;
  letter-spacing: .02em;
  white-space: nowrap;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color .18s ease, border-color .18s ease;
}
.nav__link:hover,
.nav__link[aria-current="page"] { color: var(--gold); border-bottom-color: var(--gold); }

.header__cta { flex: 0 0 auto; font-size: 1.05rem; }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  margin-left: auto;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  color: var(--white);
  cursor: pointer;
}
.nav-toggle svg { width: 24px; height: 24px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 1099px) {
  .site-header__inner { flex-wrap: wrap; min-height: 76px; }
  .brand { flex-direction: row; align-items: center; gap: .75rem; }
  .brand__lines { text-align: left; }
  .nav-toggle { display: inline-flex; }
  .header__cta { display: none; }

  .nav { flex-basis: 100%; margin-left: 0; display: none; padding-bottom: 1rem; }
  .nav.is-open { display: block; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__list > li { border-top: 1px solid var(--line); }
  .nav__link { width: 100%; padding: .9rem .25rem; font-size: 1.05rem; white-space: normal; border-bottom: 0; }
  .nav__cta-mobile { display: flex; margin-top: 1rem; }
}
@media (min-width: 1100px) {
  .nav__cta-mobile { display: none; }
}

/* ==========================================================================
   Lauftext + Angebotsband
   ========================================================================== */
.ticker {
  position: relative;
  overflow: hidden;
  background: var(--beige);
  color: var(--ink);
  padding-block: .55rem;
}
.ticker__track { display: flex; justify-content: center; padding-inline: var(--gutter); }
.ticker.is-ready .ticker__track {
  width: max-content;
  justify-content: flex-start;
  padding-inline: 0;
  animation: ticker-scroll var(--ticker-duration, 40s) linear infinite;
}
.ticker.is-ready:hover .ticker__track,
.ticker.is-paused .ticker__track { animation-play-state: paused; }

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ticker__group { display: flex; flex: 0 0 auto; font-size: 1.125rem; font-weight: 400; }
.ticker__item { flex: 0 0 auto; }
.ticker.is-ready .ticker__item { white-space: nowrap; }
.ticker.is-ready .ticker__item::after { content: "·"; margin-inline: clamp(.9rem, 2vw, 1.6rem); opacity: .45; }

.ticker.is-ready::before,
.ticker.is-ready::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: clamp(2rem, 6vw, 5rem);
  z-index: 1;
  pointer-events: none;
}
.ticker.is-ready::before { left: 0;  background: linear-gradient(to right, var(--beige) 20%, rgba(231, 223, 216, 0)); }
.ticker.is-ready::after  { right: 0; background: linear-gradient(to left,  var(--beige) 45%, rgba(231, 223, 216, 0)); }

.ticker__toggle {
  position: absolute;
  top: 50%; right: .5rem;
  transform: translateY(-50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  padding: 0;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  background: var(--beige);
  color: var(--ink);
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease;
}
.ticker__toggle:hover { background: var(--ink); color: var(--beige); }
.ticker__toggle svg { width: 12px; height: 12px; }
.ticker__toggle .icon-play { display: none; }
.ticker__toggle[aria-pressed="true"] .icon-pause { display: none; }
.ticker__toggle[aria-pressed="true"] .icon-play  { display: block; }

/* Angebotsband */
.offer {
  background: var(--strip);
  padding-block: clamp(1.25rem, 3vw, 2rem);
  text-align: center;
}
.offer p {
  margin: 0 auto;
  max-width: 54rem;
  font-family: var(--font-offer);
  font-size: clamp(1rem, 2.2vw, 1.5rem);
  line-height: 1.45;
  color: var(--ink);
  text-wrap: balance;
}

/* ==========================================================================
   Allgemeiner Sektionsrahmen
   ========================================================================== */
.section { padding-block: clamp(3.25rem, 7vw, 5.5rem); }

.section__eyebrow {
  margin: 0 0 .9rem;
  font-family: var(--font-sans);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
}
.section__eyebrow--dark { color: var(--ink-soft); }

.section__title {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3.375rem);
  letter-spacing: -.03em;
  line-height: 1.08;
  color: var(--white);
  text-wrap: balance;
}
.section__title--dark   { color: var(--ink); }
.section__title--center { text-align: center; margin-bottom: clamp(2rem, 4vw, 3rem); }

.lede { font-size: 1.125rem; font-weight: 400; color: var(--white); }
.lede--dark { color: var(--ink); }

/* ---------- FAQ ------------------------------------------------------------ */
.faq { padding-block: clamp(2.5rem, 6vw, 4rem); }
.faq__card {
  max-width: 62rem;
  margin-inline: auto;
  padding: clamp(1.5rem, 4vw, 2.75rem);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.faq h2 {
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  letter-spacing: .02em;
}

.faq__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin-bottom: 1.5rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--line);
}
.faq__tab {
  padding: .6rem 1rem;
  border: 0;
  border-bottom: 2px solid transparent;
  background: none;
  color: var(--white-soft);
  font: inherit;
  font-size: .95rem;
  cursor: pointer;
  transition: color .18s ease, border-color .18s ease;
}
.faq__tab:hover { color: var(--white); }
.faq__tab[aria-selected="true"] { color: var(--beige); border-bottom-color: var(--beige); }

.faq__panel[hidden] { display: none; }

.faq__item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .03);
}
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.35rem;
  font-size: 1.1rem;
  font-weight: 400;
  cursor: pointer;
  list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "";
  flex: 0 0 auto;
  width: 10px; height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform .2s ease;
}
.faq__item[open] summary::after { transform: rotate(-135deg) translate(-2px, -2px); }
.faq__item h3 { margin: 0; font-family: var(--font-sans); font-size: inherit; font-weight: 400; }
.faq__answer { padding: 0 1.35rem 1.35rem; color: var(--white-soft); }
.faq__answer p { margin: 0; }

/* ---------- Hero ----------------------------------------------------------- */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  background: var(--black);
}
/* Zwei Bilder nebeneinander - wie in der Vorlage ein breites und ein schmales */
.hero__media {
  position: relative;
  display: grid;
  grid-template-columns: 2fr 1fr;
  background: var(--grey);
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; }

.hero__body { padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1.5rem, 4vw, 3.5rem); align-self: center; }
.hero h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.1rem, 4.6vw, 3rem);
  letter-spacing: -.03em;
  line-height: 1.08;
  text-wrap: balance;
}
.hero__claim {
  margin: 0 0 1.75rem;
  font-size: 1.125rem;
  letter-spacing: .03em;
  color: var(--beige);
}
.hero__body p { color: var(--white-soft); }
.hero__body p:last-child { margin-bottom: 0; }

/* Goldpreis-Widget: laedt erst nach Klick (Verbindung zu goldbroker.com) */
.goldprice {
  margin-bottom: 2rem;
  padding: 1.1rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .04);
}
.goldprice__label {
  margin: 0 0 .75rem;
  font-size: 1.05rem;
  letter-spacing: .02em;
  color: var(--beige);
}
.goldprice__frame { min-height: 130px; }
.goldprice__frame iframe { width: 100%; height: 130px; border: 0; }
.goldprice__load {
  display: block;
  width: 100%;
  padding: .9rem 1rem;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: transparent;
  color: var(--white);
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.goldprice__load:hover { background: rgba(255, 255, 255, .06); }
.goldprice__load strong { display: block; font-weight: 500; }
.goldprice__load span { font-size: .85rem; color: var(--white-soft); }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero__media img { height: clamp(12rem, 45vw, 20rem); }
}

/* ---------- Ankauf-Raster -------------------------------------------------- */
.tiles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2.4vw, 1.75rem);
  margin: 0 auto;
  padding: 0;
  list-style: none;
  max-width: 64rem;
}
.tile { margin: 0; text-align: center; }
.tile__media {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--grey);
}
.tile__media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform .35s ease;
}
.tile:hover .tile__media img { transform: scale(1.05); }
.tile figcaption {
  margin-top: .8rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.35;
  color: var(--white);
}

@media (max-width: 900px) { .tiles { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 620px) {
  .tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tile figcaption { font-size: .9rem; }
}

/* ---------- Heller Inhaltsblock (Schmuck / Service) ------------------------ */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  background: var(--black);
}
.split--reverse .split__media { order: 2; }

.split__media { background: var(--grey); }
.split__media img { width: 100%; height: 100%; object-fit: cover; }

.split__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1.5rem, 4vw, 3.5rem);
  background: var(--beige-warm);
  color: var(--ink);
}
.split__body p { color: var(--ink-soft); }
.split__body p:last-child { margin-bottom: 0; }

.service-list { margin: 0 0 1.5rem; padding: 0; list-style: none; }
.service-list > li + li { margin-top: 1.35rem; }
.service-list h3 {
  margin: 0 0 .3rem;
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
}
.service-list p { margin: 0; }

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .split__media img { height: clamp(12rem, 45vw, 20rem); }
}

/* ---------- Über uns ------------------------------------------------------- */
.about { padding-block: clamp(3.5rem, 8vw, 6rem); text-align: center; }
.about p {
  max-width: 46rem;
  margin: 0 auto;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.5rem, 3.4vw, 2.5rem);
  line-height: 1.28;
  letter-spacing: -.02em;
  color: var(--white);
  text-wrap: pretty;
}

/* ---------- Goldankauf vor Ort --------------------------------------------- */
.local {
  display: grid;
  grid-template-columns: minmax(0, 33%) minmax(0, 1fr);
  background: var(--black);
}
.local__media { background: var(--grey); }
.local__media img { width: 100%; height: 100%; object-fit: cover; }

.local__body { padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 4rem); max-width: 46rem; }
.local h2 {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.6rem, 3.4vw, 2.1rem);
  line-height: 1.2;
}
.local h3 {
  margin: 2rem 0 .85rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.35rem, 2.6vw, 1.7rem);
}
.local p { font-size: 1.06rem; color: var(--white-soft); }
.local__orte { font-size: 1rem; }
.local__closing {
  margin-top: 1.75rem;
  font-family: var(--font-display) !important;
  font-weight: 600;
  font-size: clamp(1.2rem, 2.4vw, 1.55rem) !important;
  color: var(--white) !important;
}

@media (max-width: 900px) {
  .local { grid-template-columns: 1fr; }
  .local__media img { height: clamp(10rem, 40vw, 15rem); }
}

/* ==========================================================================
   Fussbereich
   ========================================================================== */
.site-footer { background: var(--black); border-top: 1px solid var(--line); }

.footer-grid {
  display: grid;
  /* 13rem statt 15rem, damit die vier Spalten auf dem Desktop in eine Reihe passen */
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  gap: clamp(2rem, 5vw, 3.5rem);
  padding-block: clamp(2.75rem, 6vw, 4rem);
  align-items: start;
}
.footer-col h2 {
  margin: 0 0 1rem;
  font-family: var(--font-sans);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer-col p, .footer-col address { margin: 0 0 .35rem; font-style: normal; font-size: .98rem; color: var(--white-soft); }
.footer-col a:not(.btn) { color: var(--white); }
.footer-col a:not(.btn):hover { color: var(--gold); }
.footer-col p a:not(.btn) { display: inline-block; padding-block: .3rem; }

.footer-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }
.footer-actions--center { justify-content: center; }

.hours { margin: 0; }
.hours div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .38rem 0;
  border-bottom: 1px dashed var(--line);
  font-size: .95rem;
}
.hours dt { font-weight: 400; color: var(--white); }
.hours dd { margin: 0; text-align: right; white-space: nowrap; color: var(--white-soft); }
.hours .is-closed dd { color: var(--gold); }

.map {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
}
.map iframe { width: 100%; height: 100%; border: 0; }
.map__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: 1.25rem;
  text-align: center;
  background: var(--panel);
  border: 0;
  color: var(--white);
  font: inherit;
  font-size: .88rem;
  cursor: pointer;
}
.map__placeholder strong { font-size: 1rem; font-weight: 500; }
.map__placeholder span { max-width: 26ch; color: var(--white-soft); }
.map__placeholder:hover { background: rgba(255, 255, 255, .06); }
.map__pin { width: 30px; height: 30px; fill: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-block: 1.25rem 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  font-size: .85rem;
  color: var(--white-soft);
}
.footer-bottom nav ul { display: flex; flex-wrap: wrap; gap: 1.25rem; margin: 0; padding: 0; list-style: none; }
/* Etwas Luft, damit die Links auf dem Handy komfortabel treffbar sind */
.footer-bottom a { display: inline-block; padding-block: .3rem; }
.credit { white-space: nowrap; }
.footer-bottom a:hover { color: var(--gold); }

/* ==========================================================================
   Inhaltsseiten (Impressum, 404)
   ========================================================================== */
.page-header {
  background: var(--panel);
  padding-block: clamp(2.5rem, 6vw, 4rem);
  border-bottom: 1px solid var(--line);
}
.page-header h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.9rem, 4.5vw, 2.75rem);
  letter-spacing: -.02em;
  text-wrap: balance;
}

.breadcrumb { margin-bottom: 1rem; font-size: .85rem; color: var(--white-soft); }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: .4rem; margin: 0; padding: 0; list-style: none; }
.breadcrumb li + li::before { content: "›"; margin-right: .4rem; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb [aria-current="page"] { color: var(--white); }

.prose { max-width: 44rem; margin-inline: auto; padding-block: clamp(2.5rem, 6vw, 4rem); }
.prose h2 {
  margin: 2.75rem 0 1rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 3.2vw, 1.9rem);
  color: var(--white);
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  margin: 2rem 0 .7rem;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--white);
}
.prose p, .prose li { color: var(--white-soft); }
.prose li { margin-bottom: .5rem; }
.prose a { color: var(--gold); text-underline-offset: .18em; }
.prose hr { margin: 3rem 0; border: 0; border-top: 1px solid var(--line); }

.callout {
  margin: 2.5rem 0;
  padding: 1.5rem 1.75rem;
  background: rgba(255, 255, 255, .04);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
}
.callout p:last-child { margin-bottom: 0; }

.error-page { text-align: center; padding-block: clamp(4rem, 12vw, 8rem); }
.error-page .code {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(4rem, 16vw, 8rem);
  line-height: 1;
  color: var(--gold);
}

@media print {
  .site-header, .site-footer, .ticker, .offer, .map, .btn { display: none !important; }
  body { background: #fff; color: #000; }
  .prose { max-width: none; }
  .prose p, .prose li, .prose h2, .prose h3 { color: #000; }
}
