/* ---------- VIAW · Swiss-style ---------- */

:root {
  --bg: oklch(0.985 0.004 80);
  --bg-alt: oklch(0.96 0.005 80);
  --fg: oklch(0.18 0.008 60);
  --fg-muted: oklch(0.45 0.008 60);
  --border: oklch(0.88 0.006 80);
  --border-strong: oklch(0.78 0.008 70);
  --accent: oklch(0.55 0.16 25);
  --accent-fg: oklch(0.98 0.005 80);

  --maxw: 1320px;
  --gutter: clamp(20px, 4vw, 56px);
  --col-gap: clamp(16px, 2vw, 32px);

  --fs-xs: 12px;
  --fs-sm: 14px;
  --fs-base: 16px;
  --fs-lg: 18px;
  --fs-xl: clamp(22px, 2.2vw, 28px);
  --fs-2xl: clamp(28px, 3.4vw, 44px);
  --fs-3xl: clamp(40px, 6vw, 84px);
  --fs-4xl: clamp(56px, 8.5vw, 128px);

  --font-sans: "Helvetica Neue", Helvetica, "Arial", sans-serif;
  --font-serif: "Source Serif 4", "Source Serif Pro", Georgia, serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  color: var(--fg);
  background: var(--bg);
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: -0.005em;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
img { display: block; max-width: 100%; height: auto; }
hr { border: 0; border-top: 1px solid var(--border); margin: 0; }

/* ---------- Layout ---------- */
.shell {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(60px, 8vw, 120px); }
.section--tight { padding-block: clamp(40px, 5vw, 72px); }

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--col-gap);
}

@media (max-width: 720px) {
  .grid-12 { grid-template-columns: repeat(6, 1fr); }
}

/* ---------- Typography ---------- */
.h-display {
  font-family: var(--font-sans);
  font-size: var(--fs-3xl);
  line-height: 0.95;
  letter-spacing: -0.035em;
  font-weight: 500;
  margin: 0;
}

.h-mega {
  font-size: var(--fs-4xl);
  line-height: 0.92;
  letter-spacing: -0.04em;
  font-weight: 500;
  margin: 0;
}

.h-section {
  font-size: var(--fs-2xl);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 500;
  margin: 0;
}

.h-sub {
  font-size: var(--fs-xl);
  line-height: 1.15;
  letter-spacing: -0.015em;
  font-weight: 500;
  margin: 0;
}

.serif-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.eyebrow {
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 500;
}

.lede {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.4;
  letter-spacing: -0.012em;
  color: var(--fg);
  max-width: 60ch;
}

.body-lg { font-size: var(--fs-lg); line-height: 1.55; }
.muted { color: var(--fg-muted); }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  background-color: color-mix(in oklab, var(--bg) 88%, transparent);
}

.header__inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  letter-spacing: -0.04em;
  font-weight: 500;
  font-size: 22px;
}
.logo__img {
  height: 28px;
  width: auto;
  display: block;
}
@media (max-width: 720px) {
  .logo__img { height: 24px; }
}
.logo__sub {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

@media (max-width: 720px) {
  .logo__sub { display: none; }
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 28px);
  font-size: 14px;
}

.nav__link {
  position: relative;
  padding: 6px 2px;
  color: var(--fg);
  letter-spacing: -0.005em;
  transition: color 120ms ease;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 2px; right: 2px; bottom: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms ease;
}
.nav__link:hover::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--accent); }
.nav__link.is-active::after { transform: scaleX(1); }

.header__right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.lang-switcher {
  display: inline-flex;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.lang-switcher button {
  padding: 6px 8px;
  color: var(--fg-muted);
  border-bottom: 1px solid transparent;
  transition: color 120ms ease, border-color 120ms ease;
}
.lang-switcher button[aria-current="true"] {
  color: var(--fg);
  border-bottom-color: var(--accent);
}
.lang-switcher button:hover { color: var(--fg); }

/* ---------- Mobile nav ---------- */
.menu-toggle {
  display: none;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
}
.menu-toggle span {
  display: block;
  width: 16px;
  height: 1px;
  background: var(--fg);
  position: relative;
}
.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: var(--fg);
}
.menu-toggle span::before { top: -5px; }
.menu-toggle span::after { top: 5px; }

@media (max-width: 920px) {
  .nav__primary { display: none; }
  .menu-toggle { display: inline-flex; }
}

.mobile-menu {
  position: fixed;
  inset: 72px 0 0 0;
  /* Hex-Fallback damit das Menü auf Browsern ohne oklch()-Support nicht durchscheinend wird */
  background: #faf9f7;
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 24px var(--gutter);
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}
.mobile-menu.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 24px;
  letter-spacing: -0.02em;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a.is-active { color: var(--accent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: var(--fg);
  color: var(--bg);
}
.btn--primary:hover { background: var(--accent); }

.btn--ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--border-strong);
}
.btn--ghost:hover { border-color: var(--fg); }

.btn--accent {
  background: var(--accent);
  color: var(--accent-fg);
}
.btn--accent:hover { background: color-mix(in oklab, var(--accent) 80%, black); }

.btn .arrow {
  display: inline-block;
  width: 18px; height: 1px;
  background: currentColor;
  position: relative;
  transition: transform 200ms ease;
}
.btn .arrow::after {
  content: "";
  position: absolute;
  right: 0; top: -3px;
  width: 7px; height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Hero ---------- */
.hero {
  padding-top: clamp(40px, 6vw, 80px);
  padding-bottom: clamp(48px, 6vw, 88px);
}
.hero__eyebrow-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: clamp(36px, 5vw, 72px);
  flex-wrap: wrap;
}
.hero__title {
  font-size: clamp(44px, 8vw, 128px);
  line-height: 0.93;
  letter-spacing: -0.04em;
  font-weight: 500;
  margin: 0;
}
.hero__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.hero__meta {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--col-gap);
  margin-top: clamp(36px, 5vw, 64px);
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.hero__meta-lede { grid-column: span 7; }
.hero__meta-cta { grid-column: span 5; display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }

@media (max-width: 920px) {
  .hero__meta-lede, .hero__meta-cta { grid-column: 1 / -1; }
}

.hero__image {
  margin-top: clamp(36px, 5vw, 64px);
  aspect-ratio: 16 / 7;
  background: var(--bg-alt);
  overflow: hidden;
  position: relative;
}
.hero__image img { width: 100%; height: 100%; object-fit: cover; }

.hero__image-caption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 10px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--fg-muted);
}

/* ---------- Marquee / running facts ---------- */
.facts {
  border-block: 1px solid var(--border);
  padding-block: clamp(28px, 3.5vw, 48px);
}
.facts__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--col-gap);
}
.facts__item .n {
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1;
  letter-spacing: -0.035em;
  font-weight: 500;
}
.facts__item .label {
  margin-top: 10px;
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
  max-width: 24ch;
}

@media (max-width: 720px) {
  .facts__grid { grid-template-columns: repeat(2, 1fr); row-gap: 28px; }
}

/* ---------- Generic section header ---------- */
.section-head {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--col-gap);
  align-items: end;
  margin-bottom: clamp(36px, 4.5vw, 72px);
}
.section-head__eyebrow { grid-column: span 3; }
.section-head__title { grid-column: span 6; }
.section-head__cta { grid-column: span 3; text-align: right; }

@media (max-width: 920px) {
  .section-head__eyebrow,
  .section-head__title,
  .section-head__cta { grid-column: 1 / -1; text-align: left; }
}

/* ---------- Mission columns ---------- */
.mission {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--col-gap);
}
.mission__card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--fg);
}
.mission__num {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--fg-muted);
}
.mission__card h3 {
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 500;
  margin: 0;
}
.mission__card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg-muted);
}

@media (max-width: 920px) {
  .mission { grid-template-columns: 1fr; }
}

/* ---------- Events ---------- */
.events__list { border-top: 1px solid var(--fg); }

.event {
  display: grid;
  grid-template-columns: 1fr 2fr 1.4fr 1fr auto;
  gap: var(--col-gap);
  padding: clamp(20px, 2.5vw, 32px) 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
  transition: padding-inline 200ms ease, background 200ms ease;
}
.event:hover { background: var(--bg-alt); padding-inline: 16px; }

.event__date {
  font-size: clamp(15px, 1.4vw, 18px);
  letter-spacing: -0.01em;
}
.event__date .y { color: var(--fg-muted); }

.event__title {
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: -0.02em;
  font-weight: 500;
  line-height: 1.1;
}
.event__loc, .event__tag {
  font-size: 14px;
  color: var(--fg-muted);
  letter-spacing: -0.005em;
}
.event__tag span {
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  color: var(--fg);
}
.event__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  transition: background 200ms ease, color 200ms ease, transform 200ms ease;
}
.event:hover .event__arrow {
  background: var(--accent);
  color: var(--accent-fg);
  border-color: var(--accent);
  transform: translateX(4px);
}

@media (max-width: 920px) {
  .event { grid-template-columns: auto 1fr auto; row-gap: 8px; }
  .event__date { grid-column: 1; }
  .event__title { grid-column: 1 / -1; order: 3; }
  .event__loc { grid-column: 1 / -1; order: 4; }
  .event__tag { grid-column: 2; }
  .event__arrow { grid-column: 3; }
}

/* ---------- Event hero card (home) ---------- */
.event-spotlight {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
}
.event-spotlight__media {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-alt);
}
.event-spotlight__media img { width: 100%; height: 100%; object-fit: cover; }
.event-spotlight__body {
  padding: clamp(24px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: space-between;
}
@media (max-width: 920px) {
  .event-spotlight { grid-template-columns: 1fr; }
}

/* ---------- Board / Vorstand ---------- */
.board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--fg);
}
.board__person {
  padding: clamp(20px, 2.4vw, 32px) clamp(20px, 2.4vw, 28px) clamp(24px, 3vw, 40px);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.board__person:nth-child(3n) { border-right: 0; }

.board__person--noportrait {
  padding-block: clamp(28px, 3vw, 44px);
  gap: 6px;
}
.board__person--noportrait .board__role { order: -1; }
.board__portrait::before {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(135deg, transparent 0 12px, oklch(0.9 0.005 80) 12px 13px);
}
.board__portrait .badge {
  position: absolute;
  bottom: 12px; left: 12px;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--bg);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
}
.board__name {
  font-size: clamp(20px, 2vw, 24px);
  letter-spacing: -0.02em;
  font-weight: 500;
  line-height: 1.05;
}
.board__role {
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
}

@media (max-width: 920px) {
  .board { grid-template-columns: repeat(2, 1fr); }
  .board__person:nth-child(3n) { border-right: 1px solid var(--border); }
  .board__person:nth-child(2n) { border-right: 0; }
}
@media (max-width: 560px) {
  .board { grid-template-columns: 1fr; }
  .board__person { border-right: 0 !important; }
}

/* ---------- Two-col text block ---------- */
.twocol {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: var(--col-gap);
  align-items: start;
}
.twocol__h { font-size: clamp(22px, 2.6vw, 36px); letter-spacing: -0.025em; line-height: 1.05; font-weight: 500; margin: 0; }
.twocol__body { display: flex; flex-direction: column; gap: 18px; font-size: var(--fs-lg); line-height: 1.6; color: var(--fg); max-width: 60ch; }
.twocol__body p { margin: 0; }

@media (max-width: 920px) { .twocol { grid-template-columns: 1fr; } }

/* ---------- Quote ---------- */
.quote {
  padding-block: clamp(40px, 6vw, 80px);
  text-align: left;
}
.quote__text {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 22ch;
}
.quote__cite {
  margin-top: 20px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* ---------- Forms ---------- */
.form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.field input, .field textarea, .field select {
  font: inherit;
  font-size: 16px;
  padding: 14px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--border-strong);
  color: var(--fg);
  transition: border-color 160ms ease;
  border-radius: 0;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-bottom-color: var(--accent);
}
.field textarea { min-height: 120px; resize: vertical; }
.field--check { flex-direction: row; align-items: flex-start; gap: 12px; }
.field--check input { width: 18px; height: 18px; padding: 0; accent-color: var(--accent); }
.field--check label { text-transform: none; letter-spacing: 0; font-size: 14px; color: var(--fg); line-height: 1.4; }

.form-success {
  padding: 24px;
  border: 1px solid var(--accent);
  background: color-mix(in oklab, var(--accent) 6%, var(--bg));
  color: var(--fg);
}

.form-error {
  padding: 14px 16px;
  border: 1px solid #c0392b;
  background: color-mix(in oklab, #c0392b 6%, var(--bg));
  color: #8a1f17;
  font-size: 14px;
  border-radius: 6px;
}

button[disabled] { opacity: 0.6; cursor: not-allowed; }

@media (max-width: 720px) { .form { grid-template-columns: 1fr; } }

/* ---------- Download list ---------- */
.downloads { border-top: 1px solid var(--fg); }
.download {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: var(--col-gap);
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
  transition: padding-inline 200ms ease, background 200ms ease;
}
.download:hover { background: var(--bg-alt); padding-inline: 16px; }
.download__title { font-size: clamp(17px, 1.6vw, 20px); letter-spacing: -0.015em; }
.download__meta { font-size: 13px; color: var(--fg-muted); letter-spacing: 0.04em; text-transform: uppercase; }
.download__action {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase;
}
.download__action .arrow-down {
  width: 12px; height: 12px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
}

/* ---------- Footer ---------- */
.footer {
  margin-top: clamp(60px, 8vw, 120px);
  padding-block: clamp(48px, 6vw, 80px) 28px;
  border-top: 1px solid var(--fg);
  color: var(--fg);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--col-gap);
  margin-bottom: 64px;
}
.footer__brand h2 {
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 500;
  margin: 0 0 16px 0;
}
.footer__brand h2 em { font-family: var(--font-serif); font-style: italic; color: var(--accent); font-weight: 400; }
.footer__brand p { margin: 0; max-width: 36ch; color: var(--fg-muted); }

.footer__col h4 {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 500;
  margin: 0 0 16px 0;
}
.footer__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.footer__col a { transition: color 160ms ease; }
.footer__col a:hover { color: var(--accent); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--fg-muted);
}

@media (max-width: 920px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer__top { grid-template-columns: 1fr; }
}

/* ---------- Page hero (subpage) ---------- */
.page-hero {
  padding-top: clamp(40px, 6vw, 80px);
  padding-bottom: clamp(40px, 5vw, 64px);
  border-bottom: 1px solid var(--border);
}
.page-hero__crumb {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 24px;
}
.page-hero__title {
  font-size: clamp(40px, 6.5vw, 96px);
  line-height: 0.94;
  letter-spacing: -0.04em;
  font-weight: 500;
  margin: 0;
}
.page-hero__title em { font-family: var(--font-serif); font-style: italic; color: var(--accent); font-weight: 400; }
.page-hero__sub {
  margin-top: 28px;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.4;
  letter-spacing: -0.01em;
  max-width: 56ch;
  color: var(--fg);
}

/* ---------- Membership / pricing-ish ---------- */
.tiers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--col-gap);
}
.tier {
  border: 1px solid var(--border);
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.tier--featured { border-color: var(--fg); background: var(--bg-alt); }
.tier__name { font-size: clamp(22px, 2vw, 28px); letter-spacing: -0.02em; font-weight: 500; }
.tier__price { font-size: clamp(36px, 4vw, 56px); letter-spacing: -0.03em; line-height: 1; font-weight: 500; }
.tier__price .per { font-size: 14px; color: var(--fg-muted); letter-spacing: 0.02em; margin-left: 8px; }
.tier ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; font-size: 15px; }
.tier ul li { display: flex; gap: 10px; align-items: baseline; }
.tier ul li::before {
  content: "";
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  transform: translateY(2px);
}
@media (max-width: 720px) { .tiers { grid-template-columns: 1fr; } }

/* ---------- Contact block ---------- */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--col-gap);
}
.contact__info { display: flex; flex-direction: column; gap: 28px; }
.contact__info-block h4 {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin: 0 0 8px 0;
  font-weight: 500;
}
.contact__info-block p { margin: 0; font-size: 17px; line-height: 1.5; }
.contact__info-block a:hover { color: var(--accent); }

@media (max-width: 920px) { .contact { grid-template-columns: 1fr; } }

/* ---------- Big CTA strip ---------- */
.cta-strip {
  margin-block: clamp(48px, 6vw, 80px);
  padding: clamp(40px, 5vw, 72px);
  background: var(--fg);
  color: var(--bg);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  align-items: end;
  gap: var(--col-gap);
}
.cta-strip h3 {
  font-size: clamp(32px, 4.5vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  font-weight: 500;
  margin: 0;
}
.cta-strip h3 em { font-family: var(--font-serif); font-style: italic; color: var(--accent); font-weight: 400; }
.cta-strip .actions { display: flex; gap: 12px; justify-content: flex-end; flex-wrap: wrap; }
@media (max-width: 720px) {
  .cta-strip { grid-template-columns: 1fr; }
  .cta-strip .actions { justify-content: flex-start; }
}

/* ---------- Utilities ---------- */
.stack-sm > * + * { margin-top: 12px; }
.stack-md > * + * { margin-top: 24px; }
.stack-lg > * + * { margin-top: 48px; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

.tag-row { display: flex; gap: 8px; flex-wrap: wrap; }

/* Fade-in on route change */
.page-fade {
  animation: fadeUp 380ms ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

::selection { background: var(--accent); color: var(--accent-fg); }
