:root {
  --c-brand: #d40020;
  --c-brand-deep: #b0001a;
  --c-rose: #fbedef;
  --c-rose-line: #f3d2d8;
  --c-rose-deep: #fff0f0;
  --c-ink: #17090c;
  --c-ink-strong: #000000;
  --c-ink-calc: #232323;
  --c-muted: #7d6b6f;
  --c-muted-calc: #595959;
  --c-hint: #b0b0b0;
  --c-track: #e9e9e9;
  --c-surface: #ffffff;
  --c-footer: #fafafa;
  --c-footer-text: #000000;
  --c-footer-muted: #8f7d81;
  --c-line: rgba(0, 0, 0, 0.12);
  --c-on-brand: #ffffff;
  --c-on-brand-muted: rgba(255, 255, 255, 0.85);
  --c-on-brand-glass: rgba(255, 255, 255, 0.14);
  --c-on-brand-edge: rgba(255, 255, 255, 0.35);
  --c-error: #b3261e;
  --c-success: #1f7a45;

  --font-display: 'Montserrat', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Montserrat', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;

  --fs-hero: clamp(2.1rem, 1.4rem + 2.6vw, 3.25rem);
  --fs-h2: clamp(1.6rem, 1.2rem + 1.4vw, 2.5rem);
  --fs-h3: 1.0625rem;
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-eyebrow: 0.75rem;

  --radius-s: 10px;
  --radius-m: 16px;
  --radius-l: 24px;

  --container: 1072px;
  --gutter: clamp(16px, 4vw, 40px);
  --section-y: clamp(56px, 6vw, 96px);

  --shadow-card: 0 18px 50px rgba(16, 14, 14, 0.12);
  --shadow-soft: 0 6px 24px rgba(16, 14, 14, 0.06);

  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

html.is-modal-open {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

body {
  margin: 0;
  background: var(--c-surface);
  color: var(--c-ink);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  font-variant-numeric: lining-nums tabular-nums;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

p {
  margin: 0;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: 0;
  background: none;
  padding: 0;
}

:focus-visible {
  outline: 3px solid var(--c-brand);
  outline-offset: 3px;
}

.on-brand :focus-visible {
  outline-color: var(--c-on-brand);
}

.container {
  width: min(var(--container), 100% - 2 * var(--gutter));
  margin-inline: auto;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  width: max-content;
  padding: 8px 16px;
  border-radius: 999px;
  color: var(--c-brand);
  font-family: var(--font-display);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--c-rose);
}

.section--rose .eyebrow {
  background: var(--c-surface);
}

.on-brand .eyebrow {
  color: var(--c-on-brand);
  background: rgba(255, 255, 255, 0.15);
}

.eyebrow--plain {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  font-size: var(--fs-small);
  border: 1px solid var(--c-on-brand-edge);
  background: var(--c-on-brand-glass);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: var(--radius-s);
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: var(--c-brand);
  color: var(--c-on-brand);
}

.btn--primary:hover {
  background: var(--c-brand-deep);
}

.btn--light {
  background: var(--c-surface);
  color: var(--c-brand);
}

.btn--light:hover {
  background: var(--c-rose);
}

.btn--block {
  width: 100%;
}

.btn[disabled],
.btn[aria-busy='true'] {
  opacity: 0.65;
  cursor: progress;
  transform: none;
}

.section {
  padding-block: var(--section-y);
}

.section--rose {
  background: var(--c-rose);
}

.section--brand {
  background: var(--c-brand);
  color: var(--c-on-brand);
}

.section__head {
  display: grid;
  gap: 14px;
  max-width: 64rem;
  margin-bottom: clamp(28px, 3vw, 44px);
}

.section__head h2 {
  font-size: var(--fs-h2);
}

.section__lead {
  color: var(--c-muted);
  max-width: 40rem;
}

.on-brand .section__lead {
  color: var(--c-on-brand-muted);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--c-brand);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.375rem;
  letter-spacing: -0.03em;
  line-height: 1;
}

.logo img {
  width: 104px;
  height: 34px;
}

.logo--light {
  color: var(--c-on-brand);
}

.tbd {
  outline: 1px dashed currentColor;
  outline-offset: 2px;
  opacity: 0.72;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
