@font-face {
  font-family: 'Hanson';
  src: url('../assets/fonts/Hanson-Bold.otf') format('opentype'),
       url('../assets/fonts/Hanson-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {

  --teal:        #005A4F;
  --teal-deep:   #003F36;
  --teal-accent: #006B5E;
  --mint:        #D0EBE4;
  --mint-rule:   #A8D5C2;

  --tint:        #E6F4F1;
  --tint-2:      #D0EBE4;
  --surface:     #F5F9F8;
  --white:       #FFFFFF;

  --ink:         #1A1A1A;
  --ink-muted:   #464F5C;
  --border:      #4A5562;
  --rule:        #C5DBD6;

  --focus:       #1A1A1A;
  --focus-inset: #FFFFFF;

  --f-xs:   0.8125rem;
  --f-sm:   0.9375rem;
  --f-base: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  --f-lg:   clamp(1.125rem, 1.05rem + 0.35vw, 1.3125rem);
  --f-h4:   clamp(1.125rem, 1.05rem + 0.4vw, 1.375rem);
  --f-h3:   clamp(1.375rem, 1.2rem + 0.8vw, 1.875rem);
  --f-h2:   clamp(1.75rem, 1.45rem + 1.4vw, 2.75rem);
  --f-h1:   clamp(2.125rem, 1.6rem + 2.6vw, 4rem);

  --font-sans: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
               Helvetica, Arial, sans-serif;
  --font-brand: 'Hanson', var(--font-sans);

  --s1: 0.25rem;  --s2: 0.5rem;   --s3: 0.75rem;  --s4: 1rem;
  --s5: 1.5rem;   --s6: 2rem;     --s7: 3rem;     --s8: 4rem;
  --s9: 6rem;

  --container: 78rem;
  --measure: 68ch;
  --header-h: 4.5rem;
}

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

html {
  font-size: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + var(--s4));
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: var(--f-base);
  font-weight: 400;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  text-align: left;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
  text-wrap: balance;
  color: var(--ink);
}

h1 { font-size: var(--f-h1); }
h2 { font-size: var(--f-h2); }
h3 { font-size: var(--f-h3); }
h4 { font-size: var(--f-h4); }

p { max-width: var(--measure); }
p + p { margin-top: var(--s4); }

img { max-width: 100%; height: auto; display: block; }
picture { display: block; min-width: 0; }

ul, ol { list-style: none; }

a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-thickness: 0.08em;
}
a:hover { text-decoration-thickness: 0.16em; }

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  box-shadow: 0 0 0 2px var(--focus-inset);
  border-radius: 1px;
}
.on-dark :focus-visible,
.footer :focus-visible {
  outline-color: var(--white);
  box-shadow: 0 0 0 2px var(--teal-deep);
}

::selection { background: var(--teal); color: var(--white); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js .reveal { opacity: 1 !important; transform: none !important; }
}

@media (forced-colors: active) {
  .btn, .card, .panel { border: 1px solid ButtonText; }
  :focus-visible { outline: 3px solid Highlight; }
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--s5);
}
@media (min-width: 60rem) { .container { padding-inline: var(--s6); } }

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

.skip-link {
  position: absolute; left: var(--s4); top: -100%;
  z-index: 200;
  background: var(--teal-deep); color: var(--white);
  padding: var(--s3) var(--s5);
  font-weight: 600; text-decoration: none;
  transition: top 0.15s ease;
}
.skip-link:focus { top: var(--s4); }

.eyebrow {
  display: block;
  font-size: var(--f-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: var(--s3);
}
.on-dark .eyebrow,
.hero .eyebrow,
.page-banner .eyebrow,
.section--deep .eyebrow,
.footer .eyebrow { color: var(--mint); }

.lede { font-size: var(--f-lg); line-height: 1.6; color: var(--ink-muted); }
.on-dark .lede, .hero .lede, .page-banner .lede, .section--deep .lede { color: var(--mint); }

.brand-name { font-family: var(--font-brand); letter-spacing: 0.04em; }

.section { padding-block: var(--s8); }
@media (min-width: 60rem) { .section { padding-block: var(--s9); } }

.section--tint { background: var(--tint); }
.section--surface { background: var(--surface); }
.section--deep { background: var(--teal-deep); color: var(--white); }
.section--deep h1, .section--deep h2, .section--deep h3, .section--deep h4 { color: var(--white); }
.section--deep p { color: var(--mint); }

.section-head { max-width: var(--measure); margin-bottom: var(--s6); }
.section-head p { margin-top: var(--s4); color: var(--ink-muted); }
.on-dark .section-head p, .hero .section-head p, .page-banner .section-head p,
.section--deep .section-head p { color: var(--mint); }

.ruled { border-top: 1px solid var(--rule); padding-top: var(--s5); }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--rule);
}
.site-header__inner {
  display: flex; align-items: center; flex-wrap: wrap; gap: var(--s3) var(--s5);
  min-height: var(--header-h);
  padding-block: var(--s2);
}
.site-logo {
  display: inline-flex; align-items: center; flex-wrap: wrap; gap: var(--s1);
  min-height: 44px;
  max-width: 100%;
  text-decoration: none;
}
.site-logo img { height: clamp(1.5rem, 1.25rem + 0.9vw, 2rem); width: auto; max-width: 52vw; }
.site-logo__sub {
  font-family: var(--font-brand);
  font-size: var(--f-xs);
  white-space: nowrap;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  border-left: 1px solid var(--teal-accent);
  margin-left: var(--s3);
  padding-left: var(--s3);
}

.nav-toggle {
  margin-left: auto;
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s2);
  min-width: 44px; min-height: 44px;
  background: none; border: 1px solid var(--border);
  color: var(--ink); font: inherit; font-size: var(--f-sm); font-weight: 600;
  padding-inline: var(--s3);
  cursor: pointer;
}
.nav-toggle__bars {
  display: block; flex: 0 0 18px;
  width: 18px; height: 2px; background: currentColor; position: relative;
}
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: ''; position: absolute; left: 0; width: 18px; height: 2px; background: currentColor;
}
.nav-toggle__bars::before { top: -6px; }
.nav-toggle__bars::after { top: 6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after { top: 0; transform: rotate(-45deg); }

.site-nav { margin-left: auto; }
.site-nav ul { display: flex; align-items: center; gap: var(--s1); flex-wrap: wrap; }
.site-nav a {
  display: inline-flex; align-items: center;
  min-height: 44px; padding-inline: var(--s3);
  font-size: var(--f-sm); font-weight: 500;
  color: var(--ink); text-decoration: none;
  border-bottom: 2px solid transparent;
}
.site-nav a:hover { color: var(--teal); border-bottom-color: var(--teal-accent); }

.site-nav a[aria-current="page"] {
  color: var(--teal); font-weight: 700; border-bottom-color: var(--teal);
}
.site-nav .nav-cta {
  margin-left: var(--s3);
  background: var(--teal); color: var(--white);
  padding-inline: var(--s5); border-bottom: 2px solid var(--teal);
  font-weight: 600;
}
.site-nav .nav-cta:hover { background: var(--teal-deep); color: var(--white); border-bottom-color: var(--teal-deep); }

@media (max-width: 63.999rem) {
  .site-nav {
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--white);
    border-bottom: 1px solid var(--rule);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    padding: var(--s3) var(--s5) var(--s5);
  }
  .site-nav[hidden] { display: none; }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .site-nav a {
    width: 100%; padding: var(--s3) 0;
    border-bottom: 1px solid var(--rule);
  }
  .site-nav a[aria-current="page"] { border-left: 2px solid var(--teal); padding-left: var(--s3); }
  .site-nav .nav-cta {
    margin: var(--s4) 0 0; justify-content: center;
    border: none; padding-block: var(--s3);
  }
}
@media (min-width: 64rem) {
  .nav-toggle { display: none; }
  .site-nav[hidden] { display: block; }
}

.hero { background: var(--teal-deep); color: var(--white); position: relative; overflow: hidden; }
.hero__grid { display: grid; gap: var(--s7); align-items: center; padding-block: var(--s8); }
@media (min-width: 64rem) {
  .hero__grid { grid-template-columns: 1.05fr 0.95fr; padding-block: var(--s9); }
}
.hero h1 { color: var(--white); margin-bottom: var(--s5); }
.hero p { color: var(--mint); font-size: var(--f-lg); line-height: 1.6; }
.hero__media img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-left: 1px solid var(--teal-accent);
}
.hero__accent { height: 2px; background: var(--mint-rule); }

.page-banner { background: var(--teal-deep); color: var(--white); padding-block: var(--s7); }
.page-banner h1 { color: var(--white); }
.page-banner p { color: var(--mint); margin-top: var(--s4); font-size: var(--f-lg); }

.crumbs { padding-block: var(--s4); border-bottom: 1px solid var(--rule); }
.crumbs ol { display: flex; flex-wrap: wrap; gap: var(--s2); font-size: var(--f-sm); }
.crumbs li + li::before { content: '/'; margin-right: var(--s2); color: var(--ink-muted); }
.crumbs a { color: var(--teal); }
.crumbs [aria-current="page"] { color: var(--ink-muted); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s2);
  min-height: 48px; min-width: 48px;
  padding: var(--s3) var(--s6);
  font: inherit; font-size: var(--f-sm); font-weight: 600; line-height: 1.3;
  text-decoration: none; text-align: center;
  border: 1px solid transparent; cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn--primary { background: var(--teal); color: var(--white); border-color: var(--teal); }
.btn--primary:hover { background: var(--teal-deep); border-color: var(--teal-deep); color: var(--white); }
.btn--secondary { background: transparent; color: var(--teal); border-color: var(--teal); }

.on-dark .btn--primary, .hero .btn--primary,
.page-banner .btn--primary, .section--deep .btn--primary {
  background: var(--white); color: var(--teal-deep); border-color: var(--white);
}
.on-dark .btn--primary:hover, .hero .btn--primary:hover,
.page-banner .btn--primary:hover, .section--deep .btn--primary:hover {
  background: var(--mint); color: var(--teal-deep); border-color: var(--mint);
}
.btn--secondary:hover { background: var(--teal); color: var(--white); }
.on-dark .btn--secondary, .section--deep .btn--secondary, .hero .btn--secondary {
  color: var(--white); border-color: var(--white);
}
.on-dark .btn--secondary:hover, .section--deep .btn--secondary:hover, .hero .btn--secondary:hover {
  background: var(--white); color: var(--teal-deep);
}
.btn--block { width: 100%; }
.btn[hidden] { display: none; }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--s4); margin-top: var(--s6); }

.grid > *, .split > *, .hero__grid > *, .form__row > *,
.card, .panel, .quote, .step > * { min-width: 0; }
h1, h2, h3, h4, h5, h6, p, li, td, th, a { overflow-wrap: break-word; }
.pill { max-width: 100%; }

.footer a, .data-table a, .card__meta a { overflow-wrap: anywhere; }

.grid { display: grid; gap: var(--s5); }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }
@media (min-width: 40rem) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 64rem) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.split { display: grid; gap: var(--s7); align-items: center; }
@media (min-width: 64rem) { .split { grid-template-columns: 1fr 1fr; } }
.split img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }

.card {
  background: var(--white);
  border-top: 1px solid var(--teal-accent);
  border-bottom: 1px solid var(--rule);
  padding: var(--s5);
  height: 100%;
  display: flex; flex-direction: column;
}
.section--tint .card, .section--surface .card { background: var(--white); }
.card h3, .card h4 { margin-bottom: var(--s3); font-size: var(--f-h4); }
.card p { color: var(--ink-muted); max-width: none; }
.card__meta {
  margin-top: auto; padding-top: var(--s4);
  font-size: var(--f-xs); color: var(--ink-muted);
}
.card--flat { border-top-color: var(--rule); }

.steps { counter-reset: step; display: grid; gap: 0; }
.step {
  counter-increment: step;
  display: grid; gap: var(--s4);
  grid-template-columns: auto minmax(0, 1fr);
  padding-block: var(--s5);
  border-top: 1px solid var(--rule);
}
.step:last-child { border-bottom: 1px solid var(--rule); }
.step::before {
  content: counter(step, decimal-leading-zero);
  font-size: var(--f-h3); font-weight: 700; color: var(--teal-accent);
  line-height: 1; font-variant-numeric: tabular-nums;
}
.step h3 { font-size: var(--f-h4); margin-bottom: var(--s2); }
.step p { color: var(--ink-muted); }

.pill {
  display: inline-block; vertical-align: middle;
  font-size: var(--f-xs); font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.15rem 0.6rem; margin-left: var(--s2);
  border-radius: 2px;
}
.pill--live { background: var(--teal); color: var(--white); }
.pill--soon { background: var(--tint-2); color: var(--teal-deep); border: 1px solid var(--teal); }

.panel {
  background: var(--tint);
  border-left: 1px solid var(--teal);
  padding: var(--s5);
}
.panel h2, .panel h3 { font-size: var(--f-h4); margin-bottom: var(--s3); }
.panel p { color: var(--ink-muted); }
.panel--notice { background: var(--tint-2); border-left-color: var(--teal-deep); }

.panel--notice p, .panel--notice li,
.panel--notice .checklist li { color: var(--ink); }

.mantra { text-align: center; }
.mantra blockquote {
  font-size: var(--f-h3); font-weight: 600; font-style: italic;
  line-height: 1.4; max-width: 44ch; margin-inline: auto; color: var(--white);
}
.mantra cite {
  display: block; margin-top: var(--s4);
  font-size: var(--f-sm); font-style: normal; color: var(--mint);
  letter-spacing: 0.08em; text-transform: uppercase;
}

.checklist { display: grid; gap: var(--s3); max-width: var(--measure); }
.checklist li {
  display: grid; grid-template-columns: auto minmax(0, 1fr); gap: var(--s3);
  align-items: start; color: var(--ink-muted);
}
.checklist li::before {
  content: ''; flex-shrink: 0;
  width: 0.65rem; height: 1.15rem;
  border: solid var(--teal); border-width: 0 3px 3px 0;
  transform: rotate(45deg) translate(-1px, 1px);
}
.on-dark .checklist li, .section--deep .checklist li { color: var(--mint); }
.on-dark .checklist li::before, .section--deep .checklist li::before { border-color: var(--mint); }

.data-table { width: 100%; border-collapse: collapse; font-size: var(--f-sm); }
.data-table caption { text-align: left; font-weight: 700; margin-bottom: var(--s3); font-size: var(--f-base); }
.data-table th, .data-table td {
  padding: var(--s3) var(--s4); text-align: left; vertical-align: top;
  border: 1px solid var(--rule);
}
.data-table thead th { background: var(--teal-deep); color: var(--white); font-weight: 600; }
.data-table tbody th { background: var(--tint); color: var(--teal); font-weight: 600; width: 34%; }
.data-table tbody tr:nth-child(even) td { background: var(--surface); }
.table-scroll { overflow-x: auto; }

.logo-wall {
  display: grid; gap: 1px;
  background: var(--rule); border: 1px solid var(--rule);
}
@media (min-width: 30rem) { .logo-wall { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 64rem) { .logo-wall { grid-template-columns: repeat(4, 1fr); } }

.logo-wall__cell {
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  padding: var(--s5) var(--s4);
  min-height: 6.5rem;
}
.logo-wall__cell img {
  max-height: var(--logo-h, 2rem);
  max-width: 82%;
  width: auto; height: auto;
  object-fit: contain;
}

.logo--csb   { --logo-h: 3rem; }
.logo--ceg   { --logo-h: 2.1rem; }
.logo--omnos { --logo-h: 1.9rem; }
.logo--bsb   { --logo-h: 1.6rem; }

.quote { background: var(--white); border-top: 1px solid var(--teal-accent); padding: var(--s5); height: 100%; }
.quote blockquote { font-size: var(--f-lg); line-height: 1.5; font-weight: 600; }
.quote p { color: var(--ink-muted); margin-top: var(--s3); }
.quote footer { margin-top: var(--s4); font-size: var(--f-sm); color: var(--ink-muted); font-style: normal; }

.accordion { border-top: 1px solid var(--rule); max-width: 60rem; }
.accordion__item { border-bottom: 1px solid var(--rule); }
.accordion__trigger {
  width: 100%; min-height: 56px;
  display: flex; align-items: center; justify-content: space-between; gap: var(--s4);
  background: none; border: none; cursor: pointer;
  font: inherit; font-size: var(--f-h4); font-weight: 600; text-align: left;
  color: var(--ink); padding: var(--s4) 0;
}
.accordion__trigger:hover { color: var(--teal); }
.accordion__trigger > span:first-child { min-width: 0; }
.accordion__icon { flex-shrink: 0; width: 1rem; height: 1rem; position: relative; }
.accordion__icon::before,
.accordion__icon::after {
  content: ''; position: absolute; background: var(--teal);
  top: 50%; left: 0; width: 100%; height: 2px; transform: translateY(-50%);
}
.accordion__icon::after { transform: translateY(-50%) rotate(90deg); transition: transform 0.2s ease; }
.accordion__trigger[aria-expanded="true"] .accordion__icon::after { transform: translateY(-50%) rotate(0deg); }
.accordion__panel { padding-bottom: var(--s5); }
.accordion__panel p { color: var(--ink-muted); }
.accordion__panel[hidden] { display: none; }

.form { max-width: 44rem; }
.form__row { display: grid; gap: var(--s5); }
@media (min-width: 40rem) { .form__row--2 { grid-template-columns: 1fr 1fr; } }
.field { margin-bottom: var(--s5); }
.field > label {
  display: block; font-size: var(--f-sm); font-weight: 600;
  margin-bottom: var(--s2); color: var(--ink);
}
.field__hint {
  display: block; font-size: var(--f-xs); color: var(--ink-muted); margin-bottom: var(--s2);
}
.req { color: var(--teal); font-weight: 700; }
.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit; font-size: var(--f-base);
  color: var(--ink); background: var(--white);
  border: 1px solid var(--border);
  padding: var(--s3) var(--s4);
  min-height: 48px;
}
.field textarea { min-height: 10rem; resize: vertical; line-height: 1.6; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--teal); }
.field [aria-invalid="true"] { border-color: #8C2F1E; border-width: 2px; }
.field__error {
  display: block; margin-top: var(--s2);
  font-size: var(--f-sm); font-weight: 600; color: #8C2F1E;
}
.field__error:empty { display: none; }
fieldset { border: none; }
legend {
  font-size: var(--f-sm); font-weight: 600; margin-bottom: var(--s2); padding: 0;
}
.choices { display: grid; gap: var(--s2); }
@media (min-width: 40rem) { .choices { grid-template-columns: repeat(2, 1fr); } }
.choice {
  display: flex; align-items: center; gap: var(--s3);
  min-height: 44px; padding: var(--s2) var(--s3);
  border: 1px solid var(--rule); cursor: pointer;
}
.choice:hover { border-color: var(--teal); background: var(--tint); }
.choice input { width: 1.35rem; height: 1.35rem; min-height: 0; accent-color: var(--teal); flex-shrink: 0; }
.choice span { font-size: var(--f-sm); }

.form-status {
  margin-top: var(--s5); padding: var(--s4) var(--s5);
  font-weight: 600; border-left: 1px solid;
}
.form-status:empty { display: none; padding: 0; border: none; }
.form-status--ok { background: var(--tint); border-color: var(--teal); color: var(--teal-deep); }
.form-status--error { background: #FBEAE6; border-color: #8C2F1E; color: #7A2E12; }

.footer { background: var(--teal-deep); color: var(--mint); padding-block: var(--s8) var(--s5); }
.footer h2, .footer h3 { color: var(--white); font-size: var(--f-sm); letter-spacing: 0.08em;
  text-transform: uppercase; padding-bottom: var(--s3); margin-bottom: var(--s4);
  border-bottom: 1px solid var(--mint-rule); }
.footer p { color: var(--mint); max-width: none; }
.footer ul { display: grid; gap: var(--s3); }
.footer a { color: var(--mint); }
.footer a:hover { color: var(--white); }
.footer__brand .brand-name { color: var(--white); font-size: var(--f-lg); display: block; margin-bottom: var(--s4); }
.footer__quote { font-style: italic; margin-top: var(--s4); color: var(--white); }
.footer__bottom {
  margin-top: var(--s7); padding-top: var(--s5);
  border-top: 1px solid var(--mint-rule);
  display: flex; flex-wrap: wrap; gap: var(--s4); justify-content: space-between;
  font-size: var(--f-sm);
}

.page-progress {
  position: fixed; inset-block-start: 0; inset-inline-start: 0;
  z-index: 300; height: 3px; width: 0;
  background: var(--teal-accent);
  opacity: 0; pointer-events: none;
}
.page-progress.is-active {
  opacity: 1; width: 90%;
  transition: width 10s cubic-bezier(0.1, 0.75, 0.2, 1), opacity 0.1s;
}
.page-progress.is-done {
  opacity: 0; width: 100%;
  transition: width 0.2s ease, opacity 0.35s ease 0.15s;
}

.btn__spinner {
  display: none; flex-shrink: 0;
  width: 1em; height: 1em;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
}
.btn[aria-busy="true"] .btn__spinner { display: inline-block; animation: cin-spin 0.7s linear infinite; }
@keyframes cin-spin { to { transform: rotate(360deg); } }

@media (prefers-reduced-motion: reduce) {
  .page-progress.is-active { width: 100%; transition: none; }
  .page-progress.is-done { opacity: 0; transition: none; }
  .btn[aria-busy="true"] .btn__spinner { animation: none; border-top-color: currentColor; opacity: 0.5; }
}

.to-top {
  position: fixed; right: var(--s5); bottom: var(--s5); z-index: 90;
  width: 48px; height: 48px;
  display: none; align-items: center; justify-content: center;
  background: var(--teal); color: var(--white);
  border: 1px solid var(--white); text-decoration: none;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}
.to-top.is-visible { display: inline-flex; }
.to-top:hover { background: var(--teal-deep); }
.to-top svg { width: 20px; height: 20px; }

.js .reveal { opacity: 0; transform: translateY(12px); transition: opacity 0.5s ease, transform 0.5s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }

.consent {
  position: fixed; inset-inline: 0; inset-block-end: 0;
  z-index: 400;
  background: var(--teal-deep);
  border-top: 2px solid var(--teal-accent);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
  color: var(--white);
}
.consent[hidden] { display: none; }
.consent__inner {
  width: 100%; max-width: var(--container);
  margin-inline: auto; padding: var(--s5) var(--s5) var(--s5);
}
@media (min-width: 60rem) { .consent__inner { padding-inline: var(--s6); } }

.consent__title { font-size: var(--f-h4); color: var(--white); margin-bottom: var(--s2); }
.consent__text { color: var(--mint); font-size: var(--f-sm); max-width: 78ch; }
.consent a { color: var(--mint); }
.consent a:hover { color: var(--white); }

.consent__options { margin-top: var(--s4); }
.consent__options .choice {
  border-color: rgba(208, 235, 228, 0.35);
  color: var(--mint);
  margin-bottom: var(--s2);
  align-items: flex-start; padding: var(--s3);
}
.consent__options .choice:hover { background: rgba(255, 255, 255, 0.06); border-color: var(--mint); }
.consent__options .choice span { font-size: var(--f-sm); line-height: 1.5; }
.consent__options .choice strong { color: var(--white); }
.consent__options input { margin-top: 0.15rem; accent-color: var(--mint); }
.consent__options input:disabled + span { opacity: 0.85; }

.consent__actions {
  display: flex; flex-wrap: wrap; gap: var(--s3);
  margin-top: var(--s5);
}
.btn--ghost {
  background: transparent; color: var(--white);
  border-color: transparent; text-decoration: underline;
  text-underline-offset: 0.18em;
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.1); color: var(--white); }

.footer .consent-reopen {
  background: none; border: none; padding: 0;
  font: inherit; color: var(--mint);
  text-decoration: underline; text-underline-offset: 0.18em;
  cursor: pointer; min-height: 44px;
}
.footer .consent-reopen:hover { color: var(--white); }

@media print {
  .site-header, .to-top, .nav-toggle, .skip-link, .consent { display: none !important; }
  body { color: #000; background: #fff; }
  a::after { content: ' (' attr(href) ')'; font-size: 0.8em; }
}
