


:root {
  
  --bg-page:     oklch(0.985 0.006 75);
  --bg-elevated: oklch(1 0 0);
  --bg-subtle:   oklch(0.963 0.009 75);
  --bg-dark:     oklch(0.245 0.014 55);
  --bg-dark-2:   oklch(0.295 0.016 55);

  
  --accent:               oklch(0.55 0.16 42);   
  --accent-hover:         oklch(0.48 0.15 42);
  --accent-ink:           oklch(0.44 0.13 42);   
  --accent-soft:          oklch(0.62 0.14 42 / 0.12);
  --accent-on-dark:       oklch(0.74 0.14 55);   

  
  --text:               oklch(0.26 0.012 55);
  --text-muted:         oklch(0.45 0.012 55);
  --text-soft:          oklch(0.50 0.012 55);
  --text-on-dark:       oklch(0.965 0.006 75);
  --text-on-dark-muted: oklch(0.80 0.012 65);

  
  --ring:          oklch(0.26 0.012 55 / 0.10);
  --ring-strong:   oklch(0.26 0.012 55 / 0.18);
  --ring-dark:        oklch(1 0 0 / 0.10);
  --ring-dark-strong: oklch(1 0 0 / 0.28);
  --shadow-sm:  0 1px 2px oklch(0.26 0.012 55 / 0.06);
  --shadow-md:  0 6px 24px oklch(0.26 0.012 55 / 0.08);
  --shadow-lg:  0 18px 48px oklch(0.26 0.012 55 / 0.12);

  
  --bg-error:   oklch(0.96 0.03 25);
  --text-error: oklch(0.45 0.16 25);
  --ring-error: oklch(0.55 0.18 25 / 0.30);
  --text-ok:    oklch(0.50 0.12 150);

  
  --font-display: "DM Sans", "DM Sans Fallback", system-ui, "Segoe UI", sans-serif;
  --font-sans:    "DM Sans", "DM Sans Fallback", system-ui, "Segoe UI", sans-serif;

  --text-xs:  0.79rem;
  --text-sm:  0.9rem;
  --text-md:  1.0625rem;   
  --text-lg:  clamp(1.2rem, 0.98rem + 0.9vw, 1.5rem);
  --text-xl:  clamp(1.55rem, 1.1rem + 1.8vw, 2.25rem);
  --text-2xl: clamp(2.1rem, 1.4rem + 3.1vw, 3.4rem);
  --text-hero:clamp(2.6rem, 1.6rem + 4.6vw, 4.9rem);

  
  --space-2xs: 4px;
  --space-xs:  8px;
  --space-sm:  12px;
  --space-md:  16px;
  --space-lg:  24px;
  --space-xl:  32px;
  --space-2xl: 48px;
  --space-3xl: 72px;
  --space-4xl: 112px;
  --space-5xl: 160px;
  
  --section-y: clamp(64px, 9vw, 132px);

  
  --radius:    6px;
  --r-card:    12px;
  --r-pill:    999px;
  --wrap:      1200px;
  --wrap-text: 70ch;

  
  --ease-lux: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 180ms;
  --dur-mid:  420ms;
  --dur-slow: 680ms;
}



@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/dm-sans-400.9d41aca018.woff2") format("woff2");
}
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/dm-sans-500.e335d80e26.woff2") format("woff2");
}
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/dm-sans-700.4332cccdfc.woff2") format("woff2");
}

@font-face {
  font-family: "DM Sans Fallback";
  src: local("Arial");
  size-adjust: 104.49%;
  ascent-override: 94.94%;
  descent-override: 29.67%;
  line-gap-override: 0%;
}


*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-sans);
  font-size: var(--text-md);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--accent-ink); text-decoration-thickness: 1px; text-underline-offset: 3px; }
ul, ol { padding-left: var(--space-lg); }
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: var(--radius);
}


.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--space-lg); }
.section { padding-block: var(--section-y); }
.section--tight { padding-block: var(--space-3xl); }
.section--dark { background: var(--bg-dark); color: var(--text-on-dark); }
.section--subtle { background: var(--bg-subtle); }

.skip-link {
  position: absolute; left: var(--space-sm); top: var(--space-sm);
  background: var(--bg-dark); color: var(--text-on-dark);
  padding: var(--space-xs) var(--space-md); border-radius: var(--radius);
  transform: translateY(-150%); transition: transform var(--dur-fast) var(--ease-out);
  z-index: 100;
}
.skip-link:focus { transform: translateY(0); }


.eyebrow {
  display: inline-flex; align-items: center; gap: var(--space-xs);
  font-size: var(--text-sm); font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--accent-ink);
}
.section--dark .eyebrow { color: var(--accent-on-dark); }
.eyebrow::before {
  content: ""; width: var(--space-lg); height: 2px; background: currentColor; border-radius: 2px;
}

.section-head { max-width: 46rem; margin-bottom: var(--space-2xl); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow::before { display: none; }


h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; color: inherit; }
h1 { font-size: var(--text-hero); }
h2 { font-size: var(--text-2xl); }
h3 { font-size: var(--text-xl); letter-spacing: -0.01em; }
h4 { font-size: var(--text-lg); letter-spacing: -0.01em; }
p { max-width: var(--wrap-text); }
.lead { font-size: var(--text-lg); line-height: 1.55; color: var(--text-muted); }
.section--dark .lead, .hero .lead { color: var(--text-on-dark-muted); }
.muted { color: var(--text-muted); }
.measure { max-width: var(--wrap-text); }


.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-xs);
  font-family: var(--font-sans); font-size: var(--text-md); font-weight: 700;
  line-height: 1; text-decoration: none; cursor: pointer;
  padding: var(--space-md) var(--space-lg); border-radius: var(--r-pill);
  border: 2px solid transparent; min-height: 48px;
  transition: background var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--accent); color: oklch(1 0 0); }
.btn-primary:hover { background: var(--accent-hover); }
.btn-secondary { background: transparent; color: var(--text); border-color: var(--ring-strong); }
.btn-secondary:hover { border-color: var(--text); }
.section--dark .btn-secondary,
.hero .btn-secondary { color: var(--text-on-dark); border-color: var(--ring-dark-strong); }
.section--dark .btn-secondary:hover,
.hero .btn-secondary:hover { border-color: var(--text-on-dark); }
.btn svg { width: 1.1em; height: 1.1em; flex: none; }
.btn-row { display: flex; flex-wrap: wrap; gap: var(--space-sm); }


.link-call { font-weight: 700; color: inherit; text-decoration: none; white-space: nowrap; }
.link-call:hover { color: var(--accent-ink); }


.site-header {
  position: sticky; top: 0; z-index: 50;
  background: oklch(0.985 0.006 75 / 0.88);
  backdrop-filter: saturate(1.1);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out),
              padding var(--dur-fast) var(--ease-out);
}
.site-header.is-condensed { border-bottom-color: var(--ring); box-shadow: var(--shadow-sm); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-lg);
  padding-block: var(--space-md);
}
.brand { display: inline-flex; align-items: center; gap: var(--space-sm); text-decoration: none; color: var(--text); min-height: 44px; }

a[href^="mailto:"] { overflow-wrap: anywhere; }
.brand-mark { width: 38px; height: 38px; flex: none; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: var(--text-lg); letter-spacing: -0.02em; line-height: 1; }
.brand-name span { display: block; font-size: var(--text-xs); font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-soft); }

.primary-nav { display: flex; align-items: center; gap: var(--space-xs); }
.primary-nav a {
  color: var(--text); text-decoration: none; font-weight: 500; font-size: var(--text-md);
  padding: var(--space-xs) var(--space-sm); border-radius: var(--radius);
  transition: color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.primary-nav a:hover { color: var(--accent-ink); }
.primary-nav a[aria-current="page"] { color: var(--accent-ink); background: var(--accent-soft); }

.primary-nav > .btn { display: none; }
.header-cta { display: flex; align-items: center; gap: var(--space-md); }
.header-cta .btn { padding-block: var(--space-sm); min-height: 44px; }


.nav-toggle {
  display: none; align-items: center; justify-content: center;
  width: 48px; height: 48px; background: transparent; border: 1px solid var(--ring-strong);
  border-radius: var(--radius); cursor: pointer; color: var(--text);
}
.nav-toggle svg { width: 24px; height: 24px; }

@media (max-width: 880px) {
  .nav-toggle { display: inline-flex; }
  .header-cta .btn { display: none; }
  .primary-nav {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg-elevated); border-bottom: 1px solid var(--ring);
    box-shadow: var(--shadow-md); padding: var(--space-sm);
    transform: translateY(-8px); opacity: 0; visibility: hidden; pointer-events: none;
    transition: transform var(--dur-fast) var(--ease-out), opacity var(--dur-fast) var(--ease-out), visibility var(--dur-fast);
  }
  .primary-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto; }
  .primary-nav a { padding: var(--space-md); font-size: var(--text-lg); }
  .primary-nav > .btn { display: inline-flex; margin-top: var(--space-xs); }
}


.hero { position: relative; background: var(--bg-dark); color: var(--text-on-dark); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; opacity: 0.5; pointer-events: none; }
.hero-bg svg { width: 100%; height: 100%; }
.hero-inner {
  position: relative; display: grid; gap: var(--space-2xl);
  padding-block: clamp(72px, 12vw, 150px);
  grid-template-columns: 1fr;
}
.hero-eyebrow { color: var(--accent-on-dark); }
.hero h1 { margin-top: var(--space-md); max-width: 16ch; }
.hero .lead { margin-top: var(--space-lg); max-width: 48ch; }
.hero .btn-row { margin-top: var(--space-2xl); }
.hero-meta {
  margin-top: var(--space-2xl); display: flex; flex-wrap: wrap; gap: var(--space-lg) var(--space-2xl);
  padding-top: var(--space-xl); border-top: 1px solid var(--ring-dark);
}
.hero-meta-item { display: flex; flex-direction: column; gap: var(--space-2xs); }
.hero-meta-item b { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 700; color: var(--text-on-dark); }
.hero-meta-item span { font-size: var(--text-sm); color: var(--text-on-dark-muted); }


.trust-strip { border-bottom: 1px solid var(--ring); }
.trust-row {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: var(--space-md) var(--space-2xl); padding-block: var(--space-xl);
  text-align: center;
}
.trust-item { display: inline-flex; align-items: center; gap: var(--space-xs); font-weight: 500; color: var(--text-muted); font-size: var(--text-sm); }
.trust-item svg { width: 20px; height: 20px; color: var(--accent-ink); flex: none; }


.grid { display: grid; gap: var(--space-lg); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 880px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }


.card {
  background: var(--bg-elevated); border: 1px solid var(--ring); border-radius: var(--r-card);
  padding: var(--space-xl);
}
.card-icon {
  width: 52px; height: 52px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--radius); background: var(--accent-soft); color: var(--accent-ink);
  margin-bottom: var(--space-md);
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { font-size: var(--text-lg); }
.card p { margin-top: var(--space-xs); color: var(--text-muted); font-size: var(--text-md); }
.card-link {
  display: inline-flex; align-items: center; gap: var(--space-2xs); margin-top: var(--space-md);
  font-weight: 700; font-size: var(--text-sm); color: var(--accent-ink); text-decoration: none;
}
.card-link svg { width: 16px; height: 16px; transition: transform var(--dur-fast) var(--ease-out); }
a.card:hover, .card.is-link:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card.is-link { transition: box-shadow var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out); text-decoration: none; color: inherit; display: block; }
.card.is-link:hover .card-link svg { transform: translateX(3px); }


.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: var(--space-3xl); align-items: center; }
.split--reverse .split-media { order: -1; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: var(--space-2xl); } .split--reverse .split-media { order: 0; } }
.split-body h2 { margin-bottom: var(--space-md); }
.split-body p + p { margin-top: var(--space-md); }
.split-body .btn-row { margin-top: var(--space-xl); }


.media-frame {
  border-radius: var(--r-card); overflow: hidden; background: var(--bg-subtle);
  border: 1px solid var(--ring); box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
}
.media-frame svg { width: 100%; height: 100%; }
.media-frame picture { display: block; width: 100%; height: 100%; }
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-frame--tall { aspect-ratio: 3 / 4; }


.feature-list { display: grid; gap: var(--space-md); list-style: none; padding: 0; margin-top: var(--space-lg); }
.feature-list li { display: flex; gap: var(--space-sm); align-items: flex-start; }
.feature-list svg { width: 22px; height: 22px; color: var(--accent-ink); flex: none; margin-top: 2px; }
.section--dark .feature-list svg { color: var(--accent-on-dark); }


.steps { counter-reset: step; display: grid; gap: var(--space-xl); }
.step { display: grid; grid-template-columns: auto 1fr; gap: var(--space-lg); align-items: start; }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--font-display); font-weight: 700; font-size: var(--text-xl);
  color: var(--accent-ink); line-height: 1;
}
.section--dark .step::before { color: var(--accent-on-dark); }
.step h3 { font-size: var(--text-lg); margin-bottom: var(--space-2xs); }
.step p { color: var(--text-muted); }
.section--dark .step p { color: var(--text-on-dark-muted); }


.quote {
  background: var(--bg-elevated); border: 1px solid var(--ring); border-radius: var(--r-card);
  padding: var(--space-xl);
}
.quote-mark { font-family: var(--font-display); font-size: var(--text-2xl); line-height: 0.5; color: var(--accent-soft); }
.quote p { font-size: var(--text-lg); line-height: 1.5; margin-top: var(--space-md); }
.quote footer { margin-top: var(--space-lg); display: flex; align-items: center; gap: var(--space-sm); }
.quote-avatar {
  width: 44px; height: 44px; border-radius: var(--r-pill); flex: none;
  background: var(--accent-soft); color: var(--accent-ink);
  display: inline-flex; align-items: center; justify-content: center; font-weight: 700;
}
.quote cite { font-style: normal; font-weight: 700; }
.quote cite span { display: block; font-weight: 500; font-size: var(--text-sm); color: var(--text-muted); }
.stars { display: inline-flex; gap: 2px; color: var(--accent-ink); margin-bottom: var(--space-xs); }
.stars svg { width: 18px; height: 18px; }


.cta-band { text-align: center; }
.cta-band .wrap { display: grid; gap: var(--space-lg); justify-items: center; }
.cta-band h2 { max-width: 18ch; }
.cta-band p { max-width: 50ch; }
.cta-band .btn-row { justify-content: center; margin-top: var(--space-sm); }


.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
@media (max-width: 880px) { .work-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .work-grid { grid-template-columns: 1fr; } }
.work-card { border-radius: var(--r-card); overflow: hidden; border: 1px solid var(--ring); background: var(--bg-elevated); }
.work-card .media-frame { border: 0; border-radius: 0; box-shadow: none; }
.work-card-body { padding: var(--space-lg); }
.work-card-tag { font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-ink); }
.work-card h2 { font-size: var(--text-lg); margin-top: var(--space-2xs); }
.work-card p { color: var(--text-muted); font-size: var(--text-sm); margin-top: var(--space-xs); }


.form-card {
  background: var(--bg-elevated); border: 1px solid var(--ring); border-radius: var(--r-card);
  padding: var(--space-2xl); box-shadow: var(--shadow-sm);
}
.field { display: grid; gap: var(--space-2xs); margin-bottom: var(--space-lg); }
.field label { font-weight: 700; font-size: var(--text-sm); }
.field .hint { font-size: var(--text-xs); color: var(--text-soft); font-weight: 400; }
.field input, .field select, .field textarea {
  font: inherit; font-size: var(--text-md); color: var(--text);
  background: var(--bg-page); border: 1px solid var(--ring-strong); border-radius: var(--radius);
  width: 100%; min-height: 48px;
  padding: var(--space-sm) var(--space-md);
  transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }
.field-error { color: var(--text-error); font-size: var(--text-sm); }
.form-note { font-size: var(--text-sm); color: var(--text-muted); margin-top: var(--space-md); }
.form-status { margin-top: var(--space-md); padding: var(--space-md); border-radius: var(--radius); display: none; }
.form-status.is-error { display: block; background: var(--bg-error); color: var(--text-error); }
.form-status.is-ok { display: block; background: var(--accent-soft); color: var(--accent-ink); }
.btn[aria-disabled="true"] { opacity: 0.6; pointer-events: none; }


.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: var(--space-3xl); align-items: start; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: var(--space-2xl); } }
.detail-list { list-style: none; padding: 0; display: grid; gap: var(--space-lg); }
.detail-list li { display: flex; gap: var(--space-md); align-items: flex-start; }
.detail-list .card-icon { margin-bottom: 0; width: 44px; height: 44px; }
.detail-list .card-icon svg { width: 22px; height: 22px; }
.detail-list b { display: block; font-size: var(--text-sm); color: var(--text-soft); font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; }
.detail-list a, .detail-list p { font-size: var(--text-lg); font-weight: 700; color: var(--text); text-decoration: none; }
.detail-list a:hover { color: var(--accent-ink); }


.site-footer { background: var(--bg-dark); color: var(--text-on-dark-muted); padding-block: var(--space-3xl) var(--space-xl); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: var(--space-2xl); }
@media (max-width: 880px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-top { grid-template-columns: 1fr; gap: var(--space-xl); } }
.footer-brand .brand-name { color: var(--text-on-dark); }
.footer-brand p { margin-top: var(--space-md); font-size: var(--text-sm); max-width: 34ch; }
.footer-col h3 { font-size: var(--text-sm); text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-on-dark); margin-bottom: var(--space-md); }
.footer-col ul { list-style: none; padding: 0; display: grid; gap: var(--space-sm); }
.footer-col a { color: var(--text-on-dark-muted); text-decoration: none; font-size: var(--text-sm); }
.footer-col a:hover { color: var(--text-on-dark); }
.footer-bottom {
  margin-top: var(--space-2xl); padding-top: var(--space-lg); border-top: 1px solid var(--ring-dark);
  display: flex; flex-wrap: wrap; gap: var(--space-sm); align-items: center; justify-content: space-between;
  font-size: var(--text-xs); color: var(--text-on-dark-muted);
}

.devalo-credit { color: var(--text-on-dark-muted); text-decoration: none; }
.devalo-credit:hover { color: oklch(0.78 0.13 85); }
@media (max-width: 600px) { .footer-bottom { justify-content: center; text-align: center; } }



.reveal { opacity: 0; transform: translateY(18px); transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 80ms; }
.reveal-d2 { transition-delay: 160ms; }
.reveal-d3 { transition-delay: 240ms; }



@view-transition { navigation: auto; }


::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: var(--dur-mid);
  animation-timing-function: var(--ease-out);
}


.brand { view-transition-name: vt-brand; }



.cv-auto { content-visibility: auto; contain-intrinsic-size: auto 600px; }



.legal-prose { max-width: var(--wrap-text); }
.legal-prose h2 { font-size: var(--text-xl); margin-top: var(--space-2xl); margin-bottom: var(--space-sm); }
.legal-prose h2:first-child { margin-top: 0; }
.legal-note + h2 { margin-top: var(--space-xs); }
.legal-prose h3 { font-size: var(--text-lg); margin-top: var(--space-lg); margin-bottom: var(--space-2xs); }
.legal-prose p { margin-bottom: var(--space-md); color: var(--text-muted); }
.legal-prose ul { margin-bottom: var(--space-md); display: grid; gap: var(--space-2xs); color: var(--text-muted); }
.legal-prose a { font-weight: 500; }
.legal-prose strong { color: var(--text); }
.legal-prose .legal-updated { font-size: var(--text-sm); color: var(--text-soft); margin-bottom: var(--space-2xl); }
.legal-note {
  border: 1px solid var(--ring-strong); border-radius: var(--r-card);
  background: var(--bg-subtle); padding: var(--space-lg); margin-bottom: var(--space-2xl); max-width: var(--wrap-text);
}
.legal-note .eyebrow { margin-bottom: var(--space-xs); }
.legal-note p { margin-bottom: 0; color: var(--text); }



.consent-banner {
  position: fixed; left: var(--space-md); right: var(--space-md); bottom: var(--space-md);
  max-width: 760px; margin-inline: auto; z-index: 200;
  display: flex; flex-wrap: wrap; gap: var(--space-md); align-items: center; justify-content: space-between;
  background: var(--bg-elevated); color: var(--text);
  border: 1px solid var(--ring); border-radius: var(--r-card);
  padding: var(--space-lg); box-shadow: var(--shadow-lg);
}
.consent-banner__text { font-size: var(--text-sm); margin: 0; max-width: 46ch; color: var(--text-muted); }
.consent-banner__actions { display: flex; gap: var(--space-sm); flex-shrink: 0; }
@media (max-width: 560px) {
  .consent-banner { flex-direction: column; align-items: stretch; }
  .consent-banner__actions { justify-content: stretch; }
  .consent-banner__actions .btn { flex: 1; }
}


.footer-legal-link { color: var(--text-on-dark-muted); text-decoration: underline; text-underline-offset: 3px; }
.footer-legal-link:hover { color: var(--text-on-dark); }


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