:root {
  --color-bg: #eef1f6;
  --color-surface: #ffffff;
  --color-ink: #1a2230;
  --color-muted: #546174;
  --color-accent: #234c6e;
  --color-accent-2: #3d5f56;
  --color-accent-3: #355a9a;
  --color-line: #cfd6e2;
  --color-cookie: #161b24;
  --font-sans: "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-display: Georgia, "Times New Roman", serif;
  --text-xs: clamp(0.7rem, 0.65rem + 0.25vw, 0.8rem);
  --text-sm: clamp(0.8rem, 0.78rem + 0.2vw, 0.9rem);
  --text-base: clamp(0.95rem, 0.9rem + 0.25vw, 1.05rem);
  --text-md: clamp(1.05rem, 1rem + 0.35vw, 1.2rem);
  --text-lg: clamp(1.25rem, 1.1rem + 0.8vw, 1.6rem);
  --text-xl: clamp(1.6rem, 1.3rem + 1.4vw, 2.25rem);
  --shadow-sm: 0 1px 2px rgba(26, 31, 36, 0.06);
  --shadow-md: 0 8px 24px rgba(26, 31, 36, 0.08);
  --shadow-lg: 0 20px 50px rgba(26, 31, 36, 0.12);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-8: 3rem;
  --space-10: 4rem;
  --header-h: 3.5rem;
  --max-w: 72rem;
  --transition: 0.22s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.55;
  color: var(--color-ink);
  background: var(--color-bg);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-accent-3);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  transition: color var(--transition), text-decoration-color var(--transition);
}

a:hover {
  color: var(--color-accent-2);
}

a:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: var(--space-2);
  background: var(--color-surface);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-sm);
  z-index: 200;
}

.skip-link:focus {
  left: var(--space-4);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(238, 241, 246, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-line);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-3) var(--space-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  min-height: var(--header-h);
}

.brand {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-ink);
  text-decoration: none;
}

.brand:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.brand:hover {
  color: var(--color-accent);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
}

.nav-toggle:hover {
  background: #e4eaf3;
  border-color: var(--color-accent);
}

.nav-toggle-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle-lines span {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: var(--color-ink);
  border-radius: 1px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-panel {
  display: flex;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  align-items: center;
}

.nav-list a {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-muted);
  text-decoration: none;
  padding: var(--space-1);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.nav-list a:hover {
  color: var(--color-accent);
  background: rgba(35, 76, 110, 0.1);
}

main {
  overflow-x: hidden;
}

.section {
  padding: var(--space-8) var(--space-4);
  scroll-margin-top: calc(var(--header-h) + var(--space-3));
}

.section--tight {
  padding: var(--space-6) var(--space-4);
}

.section > .wrap + .wrap {
  margin-top: var(--space-6);
}

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-inline: 0;
}

.section-head {
  max-width: 40rem;
  margin-bottom: var(--space-6);
}

.section-kicker {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent-2);
  margin: 0 0 var(--space-2);
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  line-height: 1.15;
  margin: 0 0 var(--space-3);
}

.section-lead {
  margin: 0;
  color: var(--color-muted);
  font-size: var(--text-md);
}

.hero {
  scroll-margin-top: calc(var(--header-h) + var(--space-3));
  padding: var(--space-10) var(--space-4) var(--space-8);
  background:
    radial-gradient(110% 75% at 12% 8%, rgba(35, 76, 110, 0.14), transparent 52%),
    radial-gradient(95% 65% at 88% 18%, rgba(61, 95, 86, 0.11), transparent 48%),
    linear-gradient(168deg, #e4eaf2, #eef1f6 48%);
}

.hero-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-6);
  align-items: center;
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.4rem + 2.5vw, 3rem);
  line-height: 1.1;
  margin: 0 0 var(--space-4);
}

.hero-copy p {
  margin: 0 0 var(--space-5);
  color: var(--color-muted);
  font-size: var(--text-md);
  max-width: min(42rem, 100%);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.hero-figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-line);
  background: var(--color-surface);
}

.hero-figure img {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  box-sizing: border-box;
  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    transform 0.15s ease;
}

.btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.btn--primary {
  background: var(--color-accent);
  color: #f2f6fa;
}

.btn--primary:hover {
  background: #1a3d58;
  color: #ffffff;
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  background: var(--color-surface);
  color: var(--color-ink);
  border-color: var(--color-line);
}

.btn--ghost:hover {
  border-color: var(--color-accent-3);
  color: var(--color-accent-3);
  background: #e8eef7;
}

.btn--accent {
  background: var(--color-accent-2);
  color: #f4faf7;
}

.btn--accent:hover {
  background: #2f4a43;
  color: #ffffff;
}

a.btn:hover,
a.btn:focus {
  text-decoration: none;
}

.intro-block {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-line);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0;
  overflow: hidden;
}

.intro-text {
  padding: var(--space-6);
}

.intro-text p {
  margin: 0 0 var(--space-4);
  color: var(--color-muted);
}

.intro-text p:last-child {
  margin-bottom: 0;
}

.intro-visual {
  margin: 0;
  min-height: 220px;
}

.intro-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pill-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-4);
}

.pill-card {
  background: linear-gradient(148deg, #ffffff, #e8ecf3);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.pill-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.pill-card h3 {
  margin: 0 0 var(--space-2);
  font-size: var(--text-md);
  color: var(--color-ink);
}

.pill-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: var(--text-sm);
}

.stripe-section {
  background: linear-gradient(135deg, #1e3d58 0%, #2a4f6d 100%);
  color: #dde6f0;
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-lg);
}

.stripe-section .section-kicker {
  color: #a8c4dc;
}

.stripe-section .section-title {
  color: #fff;
}

.stripe-section p {
  margin: 0;
  max-width: min(52ch, 100%);
  opacity: 0.95;
  line-height: 1.6;
}

.split-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-5);
}

.split-list article {
  background: var(--color-surface);
  border-left: 4px solid var(--color-accent);
  padding: var(--space-5);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  box-shadow: var(--shadow-sm);
}

.split-list article:nth-child(2) {
  border-left-color: var(--color-accent-2);
}

.split-list article:nth-child(3) {
  border-left-color: var(--color-accent-3);
}

.split-list h3 {
  margin: 0 0 var(--space-2);
  font-size: var(--text-md);
  color: var(--color-ink);
  font-family: var(--font-sans);
}

.split-list p {
  margin: 0;
  color: var(--color-muted);
  font-size: var(--text-sm);
}

.timeline-section {
  background: #e2e8f0;
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}

.steps {
  display: grid;
  gap: var(--space-4);
  max-width: 40rem;
}

.step {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  background: var(--color-surface);
  padding: var(--space-4);
  border-radius: var(--radius-md);
  border: 1px dashed var(--color-line);
}

.step-num {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--color-accent-3);
  color: #fff;
  font-weight: 700;
  font-size: var(--text-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.step h3 {
  margin: 0 0 var(--space-1);
  font-size: var(--text-sm);
}

.step p {
  margin: 0;
  color: var(--color-muted);
  font-size: var(--text-sm);
}

.faq-block details {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  margin-bottom: var(--space-3);
}

.faq-block summary {
  cursor: pointer;
  font-weight: 600;
  font-size: var(--text-sm);
}

.faq-block p {
  margin: var(--space-3) 0 0;
  color: var(--color-muted);
  font-size: var(--text-sm);
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-4);
  align-items: stretch;
}

.quote-card {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: var(--space-5);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-line);
  background: var(--color-surface);
  transition: box-shadow var(--transition), border-color var(--transition);
}

.quote-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
}

.quote-grid > .quote-card:nth-of-type(1) {
  border-top: 3px solid var(--color-accent);
}

.quote-grid > .quote-card:nth-of-type(2) {
  background: #e8f0ed;
  border-top: 3px solid var(--color-accent-2);
}

.quote-grid > .quote-card:nth-of-type(2):hover {
  border-color: var(--color-accent-2);
  border-top-color: var(--color-accent-2);
}

.quote-grid > .quote-card:nth-of-type(3) {
  background: #e9edf7;
  border-top: 3px solid var(--color-accent-3);
}

.quote-grid > .quote-card:nth-of-type(3):hover {
  border-color: var(--color-accent-3);
  border-top-color: var(--color-accent-3);
}

.quote-card blockquote {
  flex: 1 1 auto;
  margin: 0 0 var(--space-4);
  padding: 0 0 0 var(--space-4);
  border-left: 3px solid rgba(35, 76, 110, 0.35);
  font-family: var(--font-display);
  font-size: var(--text-md);
  font-style: normal;
  line-height: 1.5;
}

.quote-grid > .quote-card:nth-of-type(2) blockquote {
  border-left-color: rgba(61, 95, 86, 0.45);
}

.quote-grid > .quote-card:nth-of-type(3) blockquote {
  border-left-color: rgba(53, 90, 154, 0.45);
}

.quote-card blockquote p {
  margin: 0;
}

.quote-card figcaption {
  margin-top: auto;
  padding-top: var(--space-3);
  border-top: 1px solid var(--color-line);
  font-size: var(--text-xs);
  color: var(--color-muted);
  font-weight: 600;
  font-style: normal;
}

.section-figure-spacer {
  margin-top: var(--space-6);
  margin-bottom: 0;
}

.section-figure-spacer img {
  width: 100%;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-line);
}

.cta-band {
  text-align: center;
  padding: var(--space-8) var(--space-4);
  background: linear-gradient(95deg, rgba(35, 76, 110, 0.12), rgba(61, 95, 86, 0.1));
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  margin: 0 0 var(--space-3);
}

.cta-band p {
  margin: 0 auto var(--space-5);
  max-width: 42ch;
  color: var(--color-muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-6);
  align-items: stretch;
}

.contact-card {
  background: var(--color-surface);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-sm);
}

.contact-card > p {
  margin: 0 0 var(--space-3);
  color: var(--color-muted);
  font-size: var(--text-sm);
}

.contact-card > p:last-of-type {
  margin-bottom: 0;
}

.contact-card strong {
  color: var(--color-ink);
}

.contact-card--with-map {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
}

.contact-card__map {
  margin-top: auto;
  width: 100%;
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-line);
}

.contact-card__map-heading {
  margin: 0 0 var(--space-3);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-ink);
}

.contact-card__map .map-embed {
  box-shadow: none;
}

form.contact-card .btn[type="submit"] {
  margin-top: var(--space-3);
  width: 100%;
}

@media (min-width: 481px) {
  form.contact-card .btn[type="submit"] {
    width: auto;
  }
}

.field {
  margin-bottom: var(--space-4);
}

.field label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.field input,
.field textarea {
  width: 100%;
  padding: var(--space-3);
  font: inherit;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  background: #f8fafc;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(35, 76, 110, 0.22);
}

.field textarea {
  min-height: 8rem;
  resize: vertical;
}

.field-error {
  display: block;
  font-size: var(--text-xs);
  color: #a32f2f;
  margin-top: var(--space-2);
}

.checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: flex-start;
}

.checkbox input {
  margin-top: 0.35rem;
  flex-shrink: 0;
}

.field-error--checkbox {
  flex-basis: 100%;
  margin-left: calc(1rem + var(--space-3));
  margin-top: var(--space-2);
}

.map-embed {
  width: 100%;
  max-width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-sm);
  position: relative;
  aspect-ratio: 4 / 3;
  min-height: 14rem;
  background: var(--color-line);
}

.map-embed iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  border: 0;
}

@media (max-width: 640px) {
  .map-embed {
    aspect-ratio: 3 / 4;
    min-height: 16rem;
  }
}

.disclaimer {
  background: #e8eef5;
  border: 1px solid #b8c5d6;
  border-radius: var(--radius-md);
  padding: var(--space-5);
  font-size: var(--text-sm);
  color: var(--color-muted);
}

.disclaimer strong {
  color: var(--color-ink);
}

.disclaimer .disclaimer__title,
.disclaimer .section-title {
  font-size: var(--text-md);
  margin-top: 0;
  margin-bottom: var(--space-4);
  color: var(--color-ink);
}

.disclaimer p {
  margin: 0 0 var(--space-3);
  line-height: 1.6;
}

.disclaimer p:last-child {
  margin-bottom: 0;
}

.site-footer {
  background: #141a24;
  color: #c4cad4;
  padding: var(--space-8) var(--space-4) var(--space-6);
  margin-top: var(--space-6);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  gap: var(--space-6);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.footer-brand {
  font-family: var(--font-display);
  font-size: var(--text-md);
  color: #fff;
  margin: 0 0 var(--space-2);
}

.footer-meta {
  font-size: var(--text-xs);
  margin: var(--space-3) 0 0;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-links a {
  color: #a8b8ce;
  text-decoration: none;
  font-size: var(--text-sm);
}

.footer-links a:hover {
  color: #ffffff;
}

.legal-back {
  margin-bottom: var(--space-5);
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: var(--space-4) 0;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-line);
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
  min-width: 480px;
}

.legal-content th,
.legal-content td {
  border: 1px solid var(--color-line);
  padding: var(--space-3);
  text-align: left;
  vertical-align: top;
}

.legal-content th {
  background: #e4eaf2;
}

.legal-page {
  padding: var(--space-8) var(--space-4);
}

.legal-inner {
  max-width: 52rem;
  margin: 0 auto;
  background: var(--color-surface);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-sm);
}

.legal-inner h1 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  margin-top: 0;
}

.legal-inner h2 {
  font-size: var(--text-md);
  margin-top: var(--space-6);
}

.legal-inner p,
.legal-inner li {
  color: var(--color-muted);
  font-size: var(--text-sm);
}

.cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 300;
  background: var(--color-cookie);
  color: #e2e6eb;
  padding: var(--space-4);
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.25);
}

.cookie-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 1fr auto;
  align-items: center;
}

.cookie-bar p {
  margin: 0;
  font-size: var(--text-sm);
  line-height: 1.5;
}

.cookie-bar .btn--primary {
  background: #3d6a9a;
  color: #fff;
}

.cookie-bar .btn--primary:hover {
  background: #2f5580;
  color: #fff;
}

.cookie-bar .btn--ghost {
  background: transparent;
  color: #e8edf5;
  border-color: rgba(232, 237, 245, 0.45);
}

.cookie-bar .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: flex-end;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(26, 31, 36, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
}

.cookie-modal[hidden] {
  display: none !important;
}

.cookie-dialog {
  background: var(--color-surface);
  max-width: 28rem;
  width: 100%;
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow-lg);
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-dialog h2 {
  margin: 0 0 var(--space-3);
  font-size: var(--text-md);
}

.cookie-dialog .section-lead {
  margin-top: 0;
  margin-bottom: var(--space-3);
  font-size: var(--text-sm);
}

.cookie-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-line);
  font-size: var(--text-sm);
}

.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-5);
  justify-content: flex-end;
}

.thankyou {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-8) var(--space-4);
}

.thankyou-card {
  max-width: 32rem;
  text-align: center;
  background: var(--color-surface);
  padding: var(--space-8) var(--space-6);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-md);
}

.thankyou-card h1 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  margin: 0 0 var(--space-3);
}

.thankyou-card p {
  color: var(--color-muted);
  margin: 0 0 var(--space-5);
}

@media (max-width: 1000px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-panel {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--header-h);
    background: rgba(238, 241, 246, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-line);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition:
      max-height 0.35s ease,
      opacity 0.25s ease,
      visibility 0.25s;
    margin: 0;
  }

  .nav-panel.is-open {
    max-height: 100vh;
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    padding: var(--space-4);
    gap: var(--space-1);
  }

  .nav-list a {
    font-size: var(--text-sm);
    padding: var(--space-3);
  }

  .cookie-bar-inner {
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;
  }

  .cookie-actions .btn {
    width: 100%;
  }

  .cookie-modal-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-modal-actions .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }
}
