@import url('https://fonts.googleapis.com/css2?family=Saira:wght@400;500;600;700;800&display=swap');

:root {
  --type-body: 1.06rem;
  --type-small: .9rem;
  --type-eyebrow: .74rem;
  --type-h1: clamp(2.2rem, 4.5vw, 3rem);
  --type-h2: 1.9rem;
  --type-h3: 1.4rem;
  --section-pad: clamp(4rem, 7vw, 6rem);
}
* { border-radius: 0 !important; box-shadow: none !important; }
html { scroll-behavior: smooth; }
body { background: var(--color-background); color: var(--color-text-primary); font-family: 'Saira', sans-serif; font-size: var(--type-body); line-height: 1.55; }
h1,h2,h3,h4 { font-family: 'Saira', sans-serif; font-weight: 700; line-height: 1.05; text-wrap: balance; }
h1 { font-size: var(--type-h1); letter-spacing: -.025em; }
h2 { font-size: var(--type-h2); }
h3 { font-size: var(--type-h3); }
p { text-wrap: pretty; }
section { padding-block: var(--section-pad); }
.section-rule { width: 60%; border: 0; border-top: 1px solid var(--color-secondary); margin: 0 auto; opacity: .8; }
.eyebrow { font-size: var(--type-eyebrow); text-transform: uppercase; letter-spacing: .08em; font-weight: 700; color: var(--color-primary-dark); }
.motif::before { content: '['; color: var(--color-accent); margin-right: .18em; }
.motif::after { content: ']'; color: var(--color-accent); margin-left: .18em; }
.btn-sharp { display:inline-flex; align-items:center; justify-content:center; border: 1.5px solid var(--color-primary); color: var(--color-primary); background: transparent; padding: .7rem 1rem; font-weight: 700; text-decoration:none; transition: background-color .18s ease,color .18s ease; }
.btn-sharp:hover { background: var(--color-primary); color: white; }
.input-sharp { width:100%; border:1px solid var(--color-text-secondary); background: var(--color-surface); padding:.7rem .8rem; color:var(--color-text-primary); }
.input-sharp:focus { outline:2px solid var(--color-secondary); outline-offset:2px; }
.tile { border:1px solid var(--color-primary); background:var(--color-surface); padding:1.25rem; display:flex; flex-direction:column; min-height:180px; }
.tile a { margin-top:auto; color:var(--color-primary-dark); font-weight:700; text-decoration:underline; text-underline-offset:3px; }
.cookie-banner { position:fixed; inset:auto 1rem 1rem 1rem; z-index:50; border:1px solid var(--color-text-primary); background:var(--color-surface); padding:1rem; }
@media (min-width: 768px) { .cookie-banner { left:auto; max-width: 30rem; width: 30rem; } }
.cookie-banner[hidden], .form-confirmation[hidden] { display:none; }
.form-confirmation { border-left:4px solid var(--color-secondary); background:var(--color-surface); padding:1rem; margin-top:1rem; }
.tabular { font-variant-numeric: tabular-nums; }
footer a { text-decoration: underline; text-underline-offset: 3px; }
.hero-grid { display:grid; gap:2rem; align-items:center; }
.hero-mosaic { display:grid; grid-template-columns:repeat(2,1fr); gap:.5rem; }
.hero-mosaic img { width:100%; height:220px; object-fit:cover; border:1px solid var(--color-primary); }
@media (min-width: 768px) { .hero-grid { grid-template-columns: 1fr 1fr; } .hero-mosaic img { height:260px; } }
