/* Guinness World — design system */

:root {
  --bg: #0a0705;
  --bg-2: #110c07;
  --surface: #15100a;
  --surface-2: #1f1810;
  --line: rgba(201, 162, 90, 0.18);
  --line-strong: rgba(201, 162, 90, 0.4);
  --gold: #c9a25a;
  --gold-bright: #e8c578;
  --cream: #f5ecd7;
  --cream-muted: #d4c8a8;
  --text: #ece4d2;
  --text-dim: #9c9588;
  --ruby: #4a0a0a;
  --ruby-deep: #2a0606;

  --font-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", monospace;

  --max: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius: 2px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: 0.005em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(ellipse 80% 40% at 50% 0%, rgba(201, 162, 90, 0.04), transparent 70%),
    radial-gradient(ellipse 60% 30% at 80% 80%, rgba(74, 10, 10, 0.08), transparent 60%);
  background-attachment: fixed;
  min-height: 100vh;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--gold-bright); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--cream); }

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

/* TYPOGRAPHY */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--cream);
}

h1 { font-size: clamp(2.4rem, 6vw, 4.8rem); font-weight: 500; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.85rem); }
h4 { font-size: 1.2rem; font-weight: 600; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.lede {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  line-height: 1.45;
  color: var(--cream-muted);
  font-style: italic;
  font-weight: 400;
}

.kicker { color: var(--gold); }

/* LAYOUT */
.wrap { max-width: var(--max); margin: 0 auto; padding-inline: var(--gutter); }
.wrap-narrow { max-width: 760px; margin: 0 auto; padding-inline: var(--gutter); }

section { padding-block: clamp(60px, 9vw, 130px); }
.section-tight { padding-block: clamp(40px, 6vw, 80px); }

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 7, 5, 0.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px var(--gutter);
  max-width: var(--max); margin: 0 auto;
  gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.brand:hover { color: var(--gold-bright); }
.brand__mark {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--gold); border-radius: 50%;
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  background: radial-gradient(circle at 30% 30%, rgba(232, 197, 120, 0.15), transparent 70%);
}
.brand__logo {
  display: inline-block;
  height: clamp(60px, 7vw, 88px);
  width: auto;
  object-fit: contain;
  vertical-align: middle;
  margin: -16px 0;
}
.brand__sub {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  display: block;
  margin-top: 2px;
  text-transform: uppercase;
}
.brand__text { display: flex; flex-direction: column; line-height: 1; }

.nav-primary { display: flex; gap: 28px; align-items: center; }
.nav-primary a {
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
}
.nav-primary a:hover, .nav-primary a[aria-current="page"] {
  color: var(--gold-bright);
}
.nav-primary a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--gold);
}

.nav-toggle {
  display: none;
  background: none; border: 1px solid var(--line-strong);
  color: var(--cream); padding: 8px 12px;
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.15em;
  text-transform: uppercase; cursor: pointer;
  border-radius: var(--radius);
}

@media (max-width: 880px) {
  .nav-primary {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    padding: 8px 0;
  }
  .nav-primary[data-open="true"] { display: flex; }
  .nav-primary a { padding: 14px var(--gutter); width: 100%; border-top: 1px solid var(--line); }
  .nav-toggle { display: inline-block; }
}

/* HERO */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: flex-end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero__media {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,7,5,0.35) 0%, rgba(10,7,5,0.55) 55%, rgba(10,7,5,0.95) 100%),
    radial-gradient(ellipse at 70% 30%, rgba(74, 10, 10, 0.25), transparent 60%);
}
.hero__media img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero__content {
  position: relative; z-index: 2;
  padding: clamp(40px, 8vh, 90px) var(--gutter);
  max-width: var(--max); margin: 0 auto;
  width: 100%;
}
.hero__title {
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.02em;
  max-width: 14ch;
  color: var(--cream);
}
.hero__title em {
  font-style: italic;
  color: var(--gold-bright);
  font-weight: 400;
}
.hero__sub {
  margin-top: 28px;
  max-width: 56ch;
  font-size: 1.15rem;
  color: var(--cream-muted);
}
.hero__meta {
  margin-top: 36px;
  display: flex; gap: 40px; flex-wrap: wrap;
  align-items: center;
}
.hero__cta-row {
  margin-top: 32px;
  display: flex; gap: 16px; flex-wrap: wrap;
}

/* PLACEHOLDERS for images (until Grok fills them) */
.ph {
  position: relative;
  width: 100%; height: 100%;
  background:
    repeating-linear-gradient(45deg, var(--surface) 0 12px, var(--surface-2) 12px 24px);
  overflow: hidden;
}
.ph::after {
  content: attr(data-ph);
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  background: radial-gradient(circle at 50% 50%, rgba(201, 162, 90, 0.06), transparent 60%);
}
.ph > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
}
.ph:has(> img)::after { display: none; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold-bright);
  cursor: pointer;
  transition: all 0.2s;
  border-radius: var(--radius);
}
.btn:hover { background: var(--gold); color: var(--bg); }
.btn--solid { background: var(--gold); color: var(--bg); }
.btn--solid:hover { background: var(--gold-bright); color: var(--bg); }
.btn--ghost { border-color: var(--line-strong); color: var(--text); }
.btn--ghost:hover { border-color: var(--gold); background: transparent; color: var(--gold-bright); }
.btn__arrow { transition: transform 0.2s; }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* CARDS */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.card {
  display: flex; flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}
.card:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
}
.card__media { aspect-ratio: 4/3; position: relative; }
.card__body { padding: 26px 28px 30px; flex: 1; display: flex; flex-direction: column; gap: 14px; }
.card__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.card__title { font-size: 1.45rem; line-height: 1.15; }
.card__excerpt { font-size: 0.95rem; color: var(--text-dim); line-height: 1.55; }
.card__meta {
  margin-top: auto;
  font-family: var(--font-mono); font-size: 0.7rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); display: flex; gap: 14px; align-items: center;
  padding-top: 8px;
}

/* TIMELINE */
.timeline {
  position: relative;
  display: flex; flex-direction: column; gap: 0;
}
.timeline::before {
  content: ""; position: absolute;
  left: 16px; top: 0; bottom: 0;
  width: 1px; background: var(--line-strong);
}
.timeline__entry {
  position: relative;
  padding: 36px 0 36px 56px;
  border-bottom: 1px solid var(--line);
}
.timeline__entry:last-child { border-bottom: none; }
.timeline__entry::before {
  content: "";
  position: absolute; left: 12px; top: 50px;
  width: 9px; height: 9px;
  background: var(--gold);
  border: 2px solid var(--bg);
  border-radius: 50%;
}
.timeline__year {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold-bright);
  font-weight: 500;
  margin-bottom: 4px;
}
.timeline__title {
  font-size: 1.45rem; margin-bottom: 8px;
}
.timeline__body { color: var(--text-dim); max-width: 60ch; }

/* PROSE (article body) */
.prose {
  max-width: 70ch;
}
.prose > * + * { margin-top: 1.2em; }
.prose h2 { margin-top: 1.8em; font-size: clamp(1.6rem, 2.8vw, 2.2rem); }
.prose h3 { margin-top: 1.6em; font-size: 1.4rem; color: var(--gold-bright); }
.prose p { color: var(--text); font-size: 1.05rem; line-height: 1.75; }
.prose blockquote {
  border-left: 2px solid var(--gold);
  padding: 2px 0 2px 24px;
  font-family: var(--font-display); font-style: italic;
  color: var(--cream); font-size: 1.3rem; line-height: 1.5;
}
.prose ul, .prose ol { padding-left: 24px; color: var(--text); }
.prose li { margin: 6px 0; }
.prose img, .prose .figure {
  margin: 2em 0;
  width: 100%;
  aspect-ratio: 16/9;
}
.prose figure { margin: 2em 0; }
.prose figcaption {
  margin-top: 10px;
  font-family: var(--font-mono); font-size: 0.75rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); text-align: center;
}
.prose hr {
  border: none;
  border-top: 1px solid var(--line);
  margin: 2.5em 0;
}
.prose strong { color: var(--cream); }

/* TWO COLUMN */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.split--media-left { grid-template-columns: 1fr 1fr; }
.split__media { aspect-ratio: 4/5; }
.split__media--wide { aspect-ratio: 16/10; }
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; }
}

/* STATS */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 48px 0;
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--gold-bright);
  line-height: 1;
}
.stat__label {
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* PAGE HEADER (interior pages) */
.page-header {
  padding: clamp(80px, 14vh, 180px) 0 clamp(50px, 8vh, 90px);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-header__bg {
  position: absolute; inset: 0; z-index: 0;
}
.page-header__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,7,5,0.92) 0%, rgba(10,7,5,0.98) 100%),
    rgba(10,7,5,0.55);
}
.page-header__bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.55) saturate(0.85); }
.page-header__content { position: relative; z-index: 2; }
.page-header h1 { max-width: 18ch; text-shadow: 0 2px 24px rgba(0,0,0,0.85), 0 1px 2px rgba(0,0,0,0.9); }
.page-header .lede { text-shadow: 0 1px 14px rgba(0,0,0,0.75), 0 1px 2px rgba(0,0,0,0.85); }
.page-header .crumbs,
.page-header .eyebrow { text-shadow: 0 1px 8px rgba(0,0,0,0.8); }

.crumbs {
  font-family: var(--font-mono); font-size: 0.72rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 24px;
}
.crumbs a { color: var(--text-dim); }
.crumbs a:hover { color: var(--gold); }
.crumbs span { color: var(--gold); }

/* PROCESS STEPS */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 28px 24px;
  border: 1px solid var(--line);
  background: var(--surface);
  counter-increment: step;
}
.step::before {
  content: "0" counter(step);
  position: absolute; top: 14px; right: 18px;
  font-family: var(--font-mono); font-size: 0.75rem;
  letter-spacing: 0.18em; color: var(--gold);
}
.step__icon {
  width: 56px; height: 56px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  color: var(--gold-bright);
}
.step__title { font-size: 1.2rem; margin-bottom: 8px; }
.step__body { font-size: 0.95rem; color: var(--text-dim); line-height: 1.55; }

/* QUOTE BLOCK */
.pullquote {
  text-align: center;
  max-width: 32ch;
  margin: 0 auto;
}
.pullquote__mark {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  line-height: 0.5;
  display: block;
  margin-bottom: 12px;
}
.pullquote__text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-style: italic;
  line-height: 1.35;
  color: var(--cream);
}
.pullquote__cite {
  margin-top: 22px;
  font-family: var(--font-mono); font-size: 0.75rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
}

/* BEER SPEC TABLE */
.spec {
  border-top: 1px solid var(--line);
}
.spec__row {
  display: grid;
  grid-template-columns: 200px 1fr;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  gap: 24px;
}
.spec__label {
  font-family: var(--font-mono); font-size: 0.75rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold);
}
.spec__value { color: var(--cream); }
@media (max-width: 600px) {
  .spec__row { grid-template-columns: 1fr; gap: 4px; }
}

/* FOOTER */
.site-footer {
  margin-top: 80px;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 60px 0 30px;
}
.site-footer__inner {
  max-width: var(--max); margin: 0 auto; padding-inline: var(--gutter);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 880px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 520px) {
  .site-footer__grid { grid-template-columns: 1fr; }
}

.foot-col h4 {
  font-family: var(--font-mono);
  font-size: 0.74rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 20px;
}
.foot-col ul { list-style: none; }
.foot-col li { margin: 10px 0; }
.foot-col a {
  color: var(--text-dim); font-size: 0.93rem;
}
.foot-col a:hover { color: var(--cream); }

.foot-brand p {
  color: var(--text-dim); font-size: 0.93rem;
  max-width: 38ch; margin-top: 18px; line-height: 1.6;
}

.site-footer__bottom {
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-family: var(--font-mono); font-size: 0.72rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-dim);
}
.site-footer__bottom a { color: var(--text-dim); }
.site-footer__bottom a:hover { color: var(--gold); }

.disclaimer {
  margin-top: 22px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  font-size: 0.78rem; line-height: 1.55;
  color: var(--text-dim);
  background: rgba(0,0,0,0.3);
}
.disclaimer strong { color: var(--gold); }

.age-gate {
  margin-top: 24px;
  font-family: var(--font-mono); font-size: 0.72rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(10, 7, 5, 0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--gold);
  padding: 20px var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner__text {
  flex: 1; min-width: 240px;
  font-size: 0.92rem; color: var(--cream-muted);
  line-height: 1.55;
}
.cookie-banner__text a { color: var(--gold-bright); text-decoration: underline; }
.cookie-banner__actions {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.cookie-banner__actions button {
  font-family: var(--font-mono); font-size: 0.72rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 11px 18px;
  cursor: pointer;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--text);
  border-radius: var(--radius);
  transition: all 0.2s;
}
.cookie-banner__actions button:hover {
  border-color: var(--gold); color: var(--gold-bright);
}
.cookie-banner__actions button[data-consent="accept"] {
  background: var(--gold); color: var(--bg); border-color: var(--gold);
}
.cookie-banner__actions button[data-consent="accept"]:hover {
  background: var(--gold-bright); color: var(--bg);
}

/* COOKIE MODAL */
.cookie-modal[hidden] { display: none; }
.cookie-modal {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,0.7);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.cookie-modal__panel {
  background: var(--surface);
  border: 1px solid var(--gold);
  max-width: 520px; width: 100%;
  padding: 32px;
}
.cookie-modal h3 { margin-bottom: 8px; }
.cookie-modal p { color: var(--text-dim); margin-bottom: 22px; font-size: 0.92rem; }
.cookie-toggle {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  gap: 18px;
}
.cookie-toggle:last-of-type { border-bottom: 1px solid var(--line); margin-bottom: 22px; }
.cookie-toggle h4 { font-family: var(--font-body); font-size: 0.95rem; color: var(--cream); margin-bottom: 4px; }
.cookie-toggle p { font-size: 0.83rem; margin: 0; color: var(--text-dim); }
.cookie-toggle__switch {
  position: relative;
  width: 42px; height: 24px;
  background: var(--surface-2);
  border: 1px solid var(--line-strong);
  border-radius: 12px; cursor: pointer; flex-shrink: 0;
  margin-top: 2px;
}
.cookie-toggle__switch::after {
  content: "";
  position: absolute; top: 2px; left: 2px;
  width: 18px; height: 18px;
  background: var(--text-dim); border-radius: 50%;
  transition: all 0.2s;
}
.cookie-toggle__switch[data-on="true"] { background: var(--gold); border-color: var(--gold); }
.cookie-toggle__switch[data-on="true"]::after { left: 20px; background: var(--bg); }
.cookie-toggle__switch[data-disabled="true"] { opacity: 0.5; cursor: not-allowed; }

/* NEWSLETTER */
.newsletter {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: clamp(40px, 6vw, 72px);
  text-align: center;
}
.newsletter h2 { max-width: 18ch; margin: 0 auto 12px; }
.newsletter p { color: var(--text-dim); max-width: 50ch; margin: 0 auto 28px; }
.newsletter__form {
  display: flex; gap: 10px; max-width: 460px;
  margin: 0 auto; flex-wrap: wrap;
}
.newsletter__input {
  flex: 1; min-width: 200px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  color: var(--cream);
  padding: 13px 16px;
  font-family: var(--font-body); font-size: 0.95rem;
  border-radius: var(--radius);
}
.newsletter__input:focus { outline: 1px solid var(--gold); border-color: var(--gold); }

/* FORM */
.form { max-width: 580px; }
.form__row { margin-bottom: 22px; }
.form label {
  display: block;
  font-family: var(--font-mono); font-size: 0.74rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.form input, .form textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  color: var(--cream);
  padding: 13px 16px;
  font-family: var(--font-body); font-size: 1rem;
  border-radius: var(--radius);
}
.form textarea { min-height: 160px; resize: vertical; }
.form input:focus, .form textarea:focus { outline: 1px solid var(--gold); border-color: var(--gold); }

/* DECORATIVE */
.divider {
  display: flex; align-items: center; gap: 18px;
  margin: 0 auto;
  max-width: 240px;
  color: var(--gold);
}
.divider::before, .divider::after {
  content: ""; flex: 1; height: 1px; background: var(--line-strong);
}

/* RESPONSIVE TWEAKS */
@media (max-width: 600px) {
  .stats { gap: 24px; padding: 32px 0; }
  .timeline__entry { padding-left: 44px; }
}

/* PRINT */
@media print {
  .site-header, .site-footer, .cookie-banner { display: none; }
  body { background: white; color: black; }
}

/* MOTION-SAFE */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
