:root {
  /* Palette (Farbpalette.pdf) */
  --sand: #c8af95;
  --surface: #e8dccf;
  --ink: #2c241e;
  --primary: #5f7250;
  --green: #5f7250;
  --sage: #a4ae8b;
  --violet: #8a634c;
  --petrol: #70845e;
  --ink-2: rgba(43, 36, 31, 0.88);
  --ink-3: rgba(43, 36, 31, 0.72);
  --mist-brown-rgb: 200, 175, 149;
  --mist-ink-rgb: 44, 36, 30;
  --mist-alpha-header: 0.74;
  --mist-alpha-header-top: 0.66;
  --mist-alpha-sheet: 1;
  --mist-alpha-sheet-head: 1;
  --mist-alpha-dialog-head: 0.86;
  --font-ui: "Source Sans 3", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  --font-text: "Source Sans 3", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  --font-heading: "Source Serif 4", ui-serif, Georgia, serif;
  --motion-fast: 180ms;
  --motion-base: 240ms;
  --motion-slow: 295ms;
  --motion-ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
  --motion-ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
  --reveal-distance: 12px;
  --reveal-stagger-step: 44ms;
  --nav-stagger-step: 28ms;
  --section-space-sm: clamp(4rem, 8vw, 5.5rem);
  --section-space-lg: clamp(5.4rem, 10vw, 7.4rem);
  --radius-md: 14px;
  --radius-lg: 18px;
  --measure-prose: 68ch;
  --measure-compact: 52ch;
  --shadow-soft: 0 16px 30px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 18px 34px rgba(0, 0, 0, 0.1);
}

html {
  scroll-behavior: smooth;
}

.font-serif,
body.font-serif {
  font-family: var(--font-text) !important;
}

body.font-serif {
  font-weight: 500;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: rgba(33, 27, 22, 0.93);
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

p,
li,
dd,
dt,
label,
input,
select,
textarea,
button {
  font-family: var(--font-ui);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .site-header {
    transition: none;
    transform: none !important;
  }

  .site-menu-button,
  .site-menu-button svg {
    transition: none;
  }

  .nav-sheet-link {
    transition: none;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .nav-sheet[data-nav-animate="in"] .nav-stagger-item {
    animation: none;
  }

  .js [data-story-item] [data-story-copy] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

body {
  background-color: var(--sand);
  background-image:
    radial-gradient(1200px 900px at 18% -10%, rgba(255, 255, 255, 0.14), transparent 62%),
    radial-gradient(900px 700px at 82% 12%, rgba(255, 255, 255, 0.08), transparent 58%),
    radial-gradient(1100px 900px at 50% 115%, rgba(0, 0, 0, 0.08), transparent 60%),
    url("../img/paper-noise.svg");
  background-repeat: no-repeat, no-repeat, no-repeat, repeat;
  background-position: 0 0, 100% 0, 50% 100%, 0 0;
  background-size: auto, auto, auto, 220px 220px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-optical-sizing: auto;
}

:focus-visible {
  outline: 3px solid rgba(43, 36, 31, 0.46);
  outline-offset: 3px;
}

.site-section {
  border-top: 1px solid rgba(43, 36, 31, 0.12);
  padding-block: var(--section-space-sm);
}

@media (min-width: 768px) {
  .site-section {
    padding-block: var(--section-space-lg);
  }
}

.site-section--soft {
  background: rgba(255, 255, 255, 0.12);
}

.section-header {
  max-width: 58rem;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.32rem 0.78rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(43, 36, 31, 0.66);
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(43, 36, 31, 0.1);
}

.section-title {
  margin-top: 0.9rem;
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.section-lead {
  margin-top: 1rem;
  max-width: var(--measure-prose);
  font-size: clamp(1.01rem, 1.45vw, 1.19rem);
  line-height: 1.68;
  color: rgba(43, 36, 31, 0.74);
}

.body-copy {
  max-width: var(--measure-prose);
  font-size: clamp(1rem, 1.2vw, 1.11rem);
  line-height: 1.76;
  color: rgba(43, 36, 31, 0.86);
}

.body-copy p + p {
  margin-top: 0.85rem;
}

@media (min-width: 1024px) {
  .body-copy--desktop-columns {
    max-width: 100%;
    column-count: 2;
    column-gap: clamp(2.5rem, 5vw, 4.5rem);
  }

  .body-copy--desktop-columns p {
    break-inside: avoid;
  }
}

.about-editorial {
  max-width: 50rem;
}

.about-editorial__copy {
  margin-top: clamp(1.6rem, 3vw, 2.25rem);
  max-width: 48rem;
}

.about-editorial__copy p + p {
  margin-top: 1rem;
}

.about-editorial__actions {
  margin-top: clamp(1.8rem, 3.4vw, 2.65rem);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  border-bottom: 1px solid rgba(52, 39, 28, 0.12);
  background: rgba(var(--mist-brown-rgb), var(--mist-alpha-header));
  box-shadow:
    0 10px 24px rgba(33, 25, 18, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(0);
  transition:
    opacity 220ms ease,
    transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1),
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.site-header nav {
  font-family: var(--font-ui);
}

@supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .site-header {
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
  }
}

.site-header[data-header-state="top"] {
  background: rgba(var(--mist-brown-rgb), var(--mist-alpha-header-top));
  border-color: rgba(52, 39, 28, 0.08);
  box-shadow:
    0 4px 14px rgba(33, 25, 18, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.site-header[data-header-visibility="hidden"] {
  transform: translateY(-0.65rem);
}

.site-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  color: rgba(var(--mist-ink-rgb), 0.91);
  text-decoration: none;
  transition: color 160ms ease;
}

.site-brand__logo {
  width: auto;
  height: clamp(2.35rem, 5.4vw, 3.05rem);
  max-width: min(44vw, 12rem);
  object-fit: contain;
}

.site-brand:hover {
  color: rgba(var(--mist-ink-rgb), 1);
}

.hero-backdrop {
  background: transparent;
}

.site-menu-button {
  border-radius: 999px;
  background: transparent;
  border: none;
  box-shadow: none;
  color: rgba(var(--mist-ink-rgb), 0.74);
  -webkit-tap-highlight-color: transparent;
  transition:
    color 160ms ease,
    opacity 160ms ease;
}

.site-header[data-header-state="top"] .site-menu-button {
  color: rgba(var(--mist-ink-rgb), 0.7);
}

.site-menu-button:hover {
  color: rgba(var(--mist-ink-rgb), 0.9);
}

.site-menu-button:active {
  opacity: 0.82;
}

.site-menu-button svg {
  color: currentColor;
  opacity: 0.92;
  transition:
    color 160ms ease,
    opacity 160ms ease;
}

.site-menu-button:hover svg {
  opacity: 1;
}

.nav-sheet {
  background: rgba(var(--mist-brown-rgb), var(--mist-alpha-sheet));
  color: var(--ink-2);
  font-family: var(--font-ui);
}

.nav-sheet-panel {
  min-height: 100svh;
}

.nav-sheet-head {
  background: rgba(var(--mist-brown-rgb), var(--mist-alpha-sheet-head));
}

@supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .nav-sheet-head {
    -webkit-backdrop-filter: blur(9px);
    backdrop-filter: blur(9px);
  }
}

.nav-sheet-close {
  border: none;
  border-radius: 999px;
  background: transparent;
  color: rgba(var(--mist-ink-rgb), 0.75);
  transition:
    color 160ms ease,
    opacity 160ms ease;
}

.nav-sheet-close:hover {
  color: rgba(var(--mist-ink-rgb), 0.9);
}

.nav-sheet-close:active {
  opacity: 0.82;
}

.nav-sheet-close svg {
  color: currentColor;
}

.nav-sheet-list {
  --nav-divider-left: 2.5rem;
  --nav-divider-right: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-sheet-list > li {
  position: relative;
}

.nav-sheet-list > li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: var(--nav-divider-left);
  right: var(--nav-divider-right);
  bottom: 0;
  height: 1px;
  background: rgba(43, 36, 31, 0.085);
}

.nav-sheet-list--small {
  --nav-divider-left: 2.5rem;
  --nav-divider-right: 1.5rem;
}

.nav-sheet-link {
  position: relative;
  display: block;
  padding: 0.92rem 1.5rem 0.92rem 2.5rem;
  font-weight: 600;
  letter-spacing: -0.008em;
  font-size: 1.1rem;
  line-height: 1.3;
  color: rgba(43, 36, 31, 0.82);
  text-decoration: none;
  transition:
    background-color 160ms ease,
    color 160ms ease;
}

.nav-sheet-link:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--ink);
}

.nav-sheet-link[aria-current] {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(43, 36, 31, 0.95);
  font-weight: 640;
}

.nav-sheet-link[aria-current]:hover {
  background: rgba(255, 255, 255, 0.13);
}

.nav-sheet-link:focus-visible {
  outline: 3px solid rgba(43, 36, 31, 0.46);
  outline-offset: -3px;
}

.nav-sheet-link--small {
  padding-top: 0.78rem;
  padding-bottom: 0.78rem;
  font-size: 0.98rem;
  font-weight: 590;
}

@keyframes navLinkSlideIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-stagger-item {
  opacity: 1;
}

.nav-sheet[data-nav-animate="in"] .nav-stagger-item {
  animation: navLinkSlideIn var(--motion-base) var(--motion-ease-out) both;
  animation-delay: calc(var(--stagger-index, 0) * var(--nav-stagger-step) + 24ms);
}

.nav-sheet-link::before {
  content: "";
  position: absolute;
  left: 1.3rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 1.1rem;
  border-radius: 999px;
  background: rgba(112, 132, 94, 0.9);
  opacity: 0;
  transition: opacity 140ms ease;
}

.nav-sheet-link[aria-current]::before {
  opacity: 0.85;
}

.reveal {
  opacity: 0;
  transform: translateY(var(--reveal-distance));
  will-change: opacity, transform;
  transition:
    opacity var(--motion-base) var(--motion-ease-soft),
    transform var(--motion-base) var(--motion-ease-soft);
  transition-delay: calc(var(--reveal-index, 0) * var(--reveal-stagger-step));
}

.reveal--card {
  --reveal-distance: 14px;
}

.reveal--slow {
  transition-duration: var(--motion-slow), var(--motion-slow);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

.js [data-story-item] [data-story-copy] {
  opacity: 0;
  transform: translateY(var(--reveal-distance));
  will-change: opacity, transform;
  transition:
    opacity var(--motion-base) var(--motion-ease-soft),
    transform var(--motion-base) var(--motion-ease-soft);
}

.js [data-story-item].is-visible [data-story-copy] {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

.story-timeline-item [data-story-marker] {
  background: rgba(138, 99, 76, 0.44);
  transition:
    background-color var(--motion-base) ease,
    box-shadow var(--motion-base) ease;
}

.story-timeline-item.is-visible [data-story-marker] {
  background: rgba(138, 99, 76, 0.62);
  box-shadow: 0 0 0 3px rgba(112, 132, 94, 0.18);
}

[data-hero] {
  min-height: 100svh;
}

@supports (height: 100dvh) {
  [data-hero] {
    min-height: 100dvh;
  }
}

.hero-figure {
  min-height: 100dvh;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  padding-block: clamp(2rem, 6vh, 4rem);
}

.hero-visual {
  flex: 1;
  min-height: 0;
  width: min(calc(100vw - 3rem), 42rem);
  margin-inline: auto;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: clamp(0.7rem, 1.6vh, 1.05rem);
}

.hero-waldri {
  width: auto;
  max-width: min(72vw, 18.75rem);
  max-height: min(48svh, 26rem);
  object-fit: contain;
  filter: drop-shadow(0 24px 42px rgba(0, 0, 0, 0.15));
}

.hero-caption {
  width: min(100%, 52ch);
  text-align: center;
}

.hero-caption::before {
  content: "";
  display: block;
  width: min(8rem, 36vw);
  height: 1px;
  margin: 0 auto clamp(0.72rem, 1.6vh, 0.95rem);
  background: linear-gradient(90deg, transparent, rgba(43, 36, 31, 0.48), transparent);
}

.hero-caption__text {
  margin: 0 auto;
  max-width: 100%;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 640;
  letter-spacing: 0;
  line-height: 1.23;
  font-size: clamp(1.2rem, 1.85vw, 1.55rem);
  color: rgba(43, 36, 31, 0.9);
  text-wrap: normal;
  text-align: center;
}

@media (min-width: 768px) {
  .hero-figure {
    padding-block: clamp(2.5rem, 7vh, 5rem);
  }

  .hero-waldri {
    max-width: min(36vw, 30rem);
    max-height: min(60svh, 30rem);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--radius-md);
  font-family: var(--font-ui);
  font-weight: 650;
  text-decoration: none;
  line-height: 1.1;
  letter-spacing: 0.004em;
  padding: 0.76rem 1.08rem;
  transition:
    transform 140ms ease,
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease;
}

form label,
form input,
form select,
form textarea,
form button {
  font-family: var(--font-ui);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: rgba(112, 132, 94, 0.32);
  border: 1px solid rgba(86, 101, 73, 0.56);
  color: rgba(40, 32, 25, 0.93);
  box-shadow:
    0 1px 0 rgba(0, 0, 0, 0.12),
    0 11px 22px rgba(54, 66, 45, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.btn-primary:hover {
  background: rgba(112, 132, 94, 0.42);
  border-color: rgba(80, 97, 68, 0.66);
  box-shadow:
    0 1px 0 rgba(0, 0, 0, 0.14),
    0 13px 25px rgba(54, 66, 45, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.btn-primary:active {
  transform: translateY(0);
  background: rgba(112, 132, 94, 0.36);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(43, 36, 31, 0.24);
  color: var(--ink-2);
  box-shadow:
    0 1px 0 rgba(0, 0, 0, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(43, 36, 31, 0.3);
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(42, 36, 31, 0.26);
  color: var(--ink-2);
}

.btn-sm {
  padding: 0.5rem 0.8rem;
  font-size: 0.875rem;
  font-weight: 650;
}

.card {
  border-radius: var(--radius-md);
  background: rgba(232, 220, 207, 0.62);
  border: 1px solid rgba(0, 0, 0, 0.13);
  box-shadow: var(--shadow-soft);
}

.offer-card,
.offer-list > article {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(43, 36, 31, 0.12);
  box-shadow: var(--shadow-soft);
  padding-inline: clamp(1.2rem, 2vw, 1.7rem);
  transition:
    transform 180ms var(--motion-ease-out),
    box-shadow 180ms var(--motion-ease-out),
    border-color 180ms var(--motion-ease-out),
    background-color 180ms var(--motion-ease-out);
}

.offer-card:hover,
.offer-list > article:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
  border-color: rgba(95, 114, 80, 0.3);
  background: rgba(255, 255, 255, 0.22);
}

.offer-list > article > div:first-child {
  border-radius: 12px;
  overflow: hidden;
}

.offer-list > article.offer-list__article--text-only {
  max-width: 58rem;
}

.offer-list > article.offer-list__article--text-only > div:first-child {
  overflow: visible;
}

.offer-list > article h3 {
  font-size: clamp(1.35rem, 2vw, 1.72rem);
}

.offer-points,
.offer-list > article ul {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.48rem;
}

.offer-points li,
.offer-list > article ul li {
  position: relative;
  padding-left: 1.15rem;
  line-height: 1.58;
  color: rgba(43, 36, 31, 0.8);
}

.offer-points li::before,
.offer-list > article ul li::before {
  content: "";
  position: absolute;
  left: 0.08rem;
  top: 0.65em;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: rgba(95, 114, 80, 0.76);
}

.offer-detail-trigger {
  display: none;
}

.offers-detail-list > section {
  border-radius: var(--radius-md);
}

.story-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 999px;
  border: 1px solid rgba(43, 36, 31, 0.14);
  background: rgba(255, 255, 255, 0.28);
  color: rgba(43, 36, 31, 0.74);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.gallery-group {
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(43, 36, 31, 0.1);
  padding: 1.05rem;
}

.gallery-media {
  border-radius: 11px;
  overflow: hidden;
  border: 1px solid rgba(43, 36, 31, 0.08);
  background: rgba(255, 255, 255, 0.16);
  position: relative;
}

.gallery-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.13), rgba(0, 0, 0, 0) 52%);
  opacity: 0.7;
  pointer-events: none;
}

.trust-strip {
  margin-top: 2.4rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(43, 36, 31, 0.14);
  background: rgba(232, 220, 207, 0.68);
  box-shadow: var(--shadow-soft);
  padding: 1.3rem 1.15rem;
}

.trust-strip h3 {
  font-size: clamp(1.26rem, 2.2vw, 1.55rem);
}

.trust-grid {
  margin-top: 0.95rem;
  display: grid;
  gap: 0.7rem;
}

.trust-item {
  border-radius: 10px;
  border: 1px solid rgba(43, 36, 31, 0.1);
  background: rgba(255, 255, 255, 0.24);
  padding: 0.62rem 0.75rem;
  font-size: 0.95rem;
  color: rgba(43, 36, 31, 0.78);
}

.trust-item strong {
  color: rgba(43, 36, 31, 0.9);
}

@media (min-width: 768px) {
  .trust-strip {
    padding: 1.5rem 1.45rem;
  }

  .trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.site-footer {
  border-top: 1px solid rgba(43, 36, 31, 0.15);
  background: rgba(255, 255, 255, 0.1);
  padding-block: clamp(2.5rem, 5vw, 3.35rem);
}

.site-footer-inner {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(43, 36, 31, 0.11);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-soft);
  padding: clamp(1.2rem, 2vw, 1.75rem);
}

.legal-note {
  display: grid;
  gap: 0.75rem;
  margin-top: 2rem;
  padding: 1.25rem;
  border: 1px solid rgba(43, 36, 31, 0.14);
  border-radius: 0.375rem;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 24px rgba(43, 36, 31, 0.05);
}

.legal-note p,
.legal-card p {
  margin: 0;
}

.legal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
  color: rgba(43, 36, 31, 0.78);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-badge::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: rgba(138, 99, 76, 0.72);
  box-shadow: 0 0 0 4px rgba(138, 99, 76, 0.12);
}

.legal-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.legal-card {
  display: grid;
  gap: 0.85rem;
  padding: 1.3rem;
  border: 1px solid rgba(43, 36, 31, 0.12);
  border-radius: 0.375rem;
  background: rgba(255, 255, 255, 0.14);
}

.legal-card h2 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.25;
}

.legal-meta {
  display: grid;
  gap: 0.6rem;
}

.legal-label {
  display: block;
  margin-bottom: 0.16rem;
  color: rgba(43, 36, 31, 0.56);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-placeholder {
  color: rgba(43, 36, 31, 0.78);
  font-weight: 600;
}

.legal-footnote {
  margin-top: 1.5rem;
  color: rgba(43, 36, 31, 0.68);
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .legal-note {
    padding: 1.5rem;
  }

  .legal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .legal-card {
    padding: 1.5rem;
  }
}

@media (max-width: 430px) {
  :root {
    --section-space-sm: clamp(3.1rem, 11vw, 3.9rem);
    --radius-md: 12px;
    --radius-lg: 14px;
  }

  .hero-figure {
    padding-block: clamp(2rem, 7vh, 3.6rem) clamp(1.75rem, 6vh, 3rem);
  }

  .hero-visual {
    gap: 0.72rem;
  }

  .hero-waldri {
    max-width: min(72vw, 17rem);
    max-height: min(46svh, 20rem);
  }

  .hero-caption {
    width: calc(100vw - 2rem);
    max-width: 38ch;
  }

  .hero-caption__text {
    width: 100%;
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.24;
    text-wrap: normal;
  }

  .section-title {
    margin-top: 0.72rem;
    font-size: clamp(1.72rem, 8.8vw, 2.08rem);
    line-height: 1.1;
  }

  .section-lead {
    margin-top: 0.72rem;
    font-size: 0.97rem;
    line-height: 1.62;
  }

  .body-copy {
    font-size: 0.99rem;
    line-height: 1.68;
  }

  .offer-list {
    margin-top: 1.5rem !important;
    gap: 0.8rem !important;
  }

  .offer-list > article {
    padding-block: 1.28rem;
    padding-inline: 0.95rem;
    gap: 0.95rem;
  }

  .offer-list > article h3 {
    font-size: 1.28rem;
  }

  .offer-list > article .btn-sm {
    padding: 0.44rem 0.7rem;
    font-size: 0.8rem;
  }

  .offer-list > article > div:first-child {
    aspect-ratio: 16 / 10;
  }

  .offers-detail-list {
    margin-top: 1.4rem !important;
  }

  .offers-detail-list > section {
    padding: 1rem;
  }

  .offers-detail-list > section h2 {
    font-size: 1.35rem;
  }

  .offers-detail-list > section dl {
    margin-top: 0.75rem;
    gap: 0.45rem;
  }

  .offers-detail-list > section dd {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .offers-detail-list > section .space-y-3 {
    margin-top: 0.85rem !important;
  }

  .offers-detail-list > section .space-y-3 p {
    font-size: 0.97rem;
    line-height: 1.62;
  }

  .gallery-group {
    padding: 0.8rem;
  }

  .gallery-group h3 {
    font-size: 1.05rem;
  }

  .gallery-group > div {
    margin-top: 0.68rem !important;
  }

  .gallery-group > div,
  .gallery-group > div.grid-cols-2 {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    margin-top: 1.55rem;
    padding: 1rem 0.9rem;
  }

  .trust-grid {
    gap: 0.55rem;
  }

  .trust-item {
    font-size: 0.88rem;
    padding: 0.52rem 0.62rem;
  }

  #team .card + .body-copy {
    margin-top: 1rem;
  }

  #contact .card {
    padding: 1rem;
  }

  #contact .card .group {
    gap: 0.72rem;
    padding: 0.72rem 0.78rem;
  }

  #contact form {
    margin-top: 1rem;
  }

  #contact textarea {
    min-height: 8rem;
  }

  .site-footer {
    padding-block: 1.75rem;
  }

  .site-footer-inner {
    padding: 1rem;
  }
}

dialog {
  padding: 0;
  border: none;
  background: transparent;
}

dialog:not([open]) {
  display: none;
}

dialog[open] {
  position: fixed;
  inset: 0;
  z-index: 60;
  width: 100vw;
  height: 100vh;
  max-width: none;
  max-height: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 6vh 4vw;
  background: transparent;
  overscroll-behavior: contain;
}

dialog[open][data-dialog-mode="fallback"] {
  background: rgba(0, 0, 0, 0.78);
}

dialog[open] > div {
  width: min(92vw, 44rem);
  max-height: 88vh;
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  background: rgba(232, 220, 207, 0.96);
}

dialog[open] [data-dialog-header] {
  position: sticky;
  top: 0;
  z-index: 1;
  background: rgba(var(--mist-brown-rgb), var(--mist-alpha-dialog-head));
  box-shadow:
    inset 0 -1px 0 rgba(43, 36, 31, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

@supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  dialog[open] [data-dialog-header] {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }
}

dialog::backdrop {
  background: rgba(0, 0, 0, 0.78);
}
