:root {
  --radius-card: 10px;
  --radius-button: 8px;
  --radius-input: 6px;
  --shadow-card: 0 1px 2px rgba(0, 0, 0, 0.05);
  --size-h1: clamp(2rem, 4vw, 2.5rem);
  --size-h2: 1.6rem;
  --size-h3: 1.25rem;
  --size-body: 1rem;
  --size-small: .875rem;
  --size-eyebrow: .72rem;
  --section-space: clamp(3rem, 6vw, 5rem);
}
html { scroll-behavior: smooth; }
body { background: var(--color-background); color: var(--color-text-primary); font-family: "DM Sans", sans-serif; font-size: var(--size-body); line-height: 1.65; }
h1, h2, h3 { font-family: "DM Sans", sans-serif; font-weight: 600; letter-spacing: -.025em; line-height: 1.15; text-wrap: balance; }
h1 { font-size: var(--size-h1); }
h2 { font-size: var(--size-h2); }
h3 { font-size: var(--size-h3); }
p { text-wrap: pretty; }
.section-space { padding-block: var(--section-space); }
.eyebrow { font-size: var(--size-eyebrow); letter-spacing: .08em; text-transform: uppercase; font-weight: 700; color: var(--color-accent); }
.prose-measure { max-width: 68ch; }
.small-text { font-size: var(--size-small); }
.card { border-radius: var(--radius-card); box-shadow: var(--shadow-card); background: var(--color-surface); }
.btn-primary, .btn-secondary { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: .68rem 1rem; border-radius: var(--radius-button); font-weight: 600; transition: background-color .18s ease, color .18s ease, transform .18s ease; }
.btn-primary { background: var(--color-primary); color: #fff; border: 0; }
.btn-primary:hover { background: var(--color-primary-dark); }
.btn-secondary { background: transparent; color: var(--color-primary); border: 1px solid #d7d7d7; }
.btn-secondary:hover { background: #f1f1f1; }
button, a { transition: color .18s ease, background-color .18s ease, opacity .18s ease; }
input, select, textarea { width: 100%; border: 1px solid #d4d4d4; border-radius: var(--radius-input); background: #fff; padding: .7rem .8rem; color: var(--color-text-primary); }
input:focus, select:focus, textarea:focus { outline: 2px solid var(--color-accent); outline-offset: 2px; }
.hero-tile { border-radius: 8px; overflow: hidden; background: #ececec; }
.hero-tile img { width: 100%; height: 100%; object-fit: cover; }
.nav-link:hover, .footer-link:hover { color: var(--color-accent); }
.icon-line { width: 1.75rem; height: 1.75rem; fill: none; stroke: currentColor; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.cookie-banner { position: fixed; z-index: 60; left: 1rem; right: 1rem; bottom: 1rem; max-width: 44rem; margin-inline: auto; border-radius: var(--radius-card); background: #fff; box-shadow: 0 8px 30px rgba(0,0,0,.12); padding: 1rem; }
.cookie-banner[hidden] { display: none; }
.form-status { min-height: 1.5rem; color: var(--color-secondary); }
.tabular { font-variant-numeric: tabular-nums; }
.legal-copy h2 { margin-top: 2.5rem; margin-bottom: .75rem; }
.legal-copy h3 { margin-top: 1.75rem; margin-bottom: .5rem; }
.legal-copy p, .legal-copy ul { margin-bottom: 1rem; }
.legal-copy ul { list-style: disc; padding-left: 1.25rem; }
@media (max-width: 767px) {
  #mobile-menu[hidden] { display: none; }
}
