:root {
  --color-bg: #212121;
  --color-surface: #323232;
  --color-accent: #0D7377;
  --color-highlight: #14FFEC;
  --color-text: #f0f0f0;
  --color-muted: #a8a8a8;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Outfit', sans-serif;
  --space-xs: 0.35rem;
  --space-sm: 0.65rem;
  --space-md: 1rem;
  --space-lg: 1.6rem;
  --space-xl: 2.4rem;
  --space-2xl: 3.5rem;
  --radius-sm: 0.35rem;
  --radius-md: 0.65rem;
  --radius-lg: 1.2rem;
  --shadow-sm: 0 0.15rem 0.5rem rgba(0, 0, 0, 0.25);
  --shadow-md: 0 0.35rem 1.2rem rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 1.5rem rgba(20, 255, 236, 0.15);
  --transition-fast: 0.2s ease;
  --transition-med: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  --max-width: 72rem;
  --header-height: 3.2rem;
}

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

html {
  scroll-behavior: smooth;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
  min-width: 20rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

a {
  color: var(--color-highlight);
  text-decoration: none;
  transition: color var(--transition-fast), opacity var(--transition-fast);
}

a:hover {
  color: var(--color-text);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
}

h1 { font-size: clamp(1.75rem, 4vw, 2.6rem); }
h2 { font-size: clamp(1.35rem, 3vw, 1.9rem); }
h3 { font-size: clamp(1.1rem, 2.2vw, 1.35rem); }

p { margin-bottom: var(--space-sm); }

ul { list-style: none; }

.shell {
  width: min(calc(100% - 2 * var(--space-md)), var(--max-width));
  margin-inline: auto;
  padding-inline: var(--space-sm);
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  padding: var(--space-md) 0;
  pointer-events: none;
}

.header-inner {
  width: min(calc(100% - 2 * var(--space-sm)), var(--max-width));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  background: rgba(33, 33, 33, 0.72);
  backdrop-filter: blur(0.65rem);
  -webkit-backdrop-filter: blur(0.65rem);
  border: 1px solid rgba(20, 255, 236, 0.12);
  border-radius: var(--radius-lg);
  padding: var(--space-sm) var(--space-md);
  pointer-events: auto;
  transform: translateY(0);
  transition: transform var(--transition-med), opacity var(--transition-med);
  min-width: 0;
}

.site-header.is-hidden .header-inner {
  transform: translateY(-120%);
  opacity: 0;
}

.brand-logo {
  font-family: var(--font-display);
  font-size: clamp(0.7rem, 2.8vw, 1.05rem);
  font-weight: 700;
  color: var(--color-highlight);
  letter-spacing: 0.02em;
  line-height: 1.15;
  min-width: 0;
  flex: 1 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: calc(100% - 3rem);
}

.brand-logo span {
  color: var(--color-text);
  font-weight: 500;
}

.nav-desktop {
  display: none;
  gap: var(--space-lg);
  align-items: center;
}

.nav-desktop a {
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-muted);
}

.nav-desktop a:hover {
  color: var(--color-highlight);
}

.menu-toggle {
  background: transparent;
  border: 1px solid rgba(20, 255, 236, 0.35);
  color: var(--color-highlight);
  width: 2.75rem;
  height: 2.75rem;
  min-width: 2.75rem;
  min-height: 2.75rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.menu-toggle:hover {
  background: rgba(13, 115, 119, 0.35);
}

.menu-toggle[aria-expanded="true"] {
  background: var(--color-accent);
}

.menu-icon-open,
.menu-icon-close {
  pointer-events: none;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.menu-icon-close {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-icon-open {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-icon-close {
  display: block;
}

.site-header.is-menu-active {
  z-index: 70;
}

.site-header.is-menu-active .header-inner {
  pointer-events: auto;
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  background: rgba(13, 13, 13, 0.97);
  z-index: 55;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-2xl) var(--space-md);
  overflow-y: auto;
}

.nav-overlay.is-open {
  display: flex;
}

.nav-overlay ul {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  width: 100%;
  max-width: 20rem;
}

.nav-overlay a {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 5vw, 1.6rem);
  color: var(--color-text);
  display: block;
  padding: var(--space-sm) 0;
}

.nav-overlay a:hover {
  color: var(--color-highlight);
}

.nav-close {
  position: fixed;
  top: var(--space-lg);
  right: var(--space-lg);
  z-index: 56;
  background: rgba(50, 50, 50, 0.9);
  border: 1px solid rgba(20, 255, 236, 0.35);
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-md);
  color: var(--color-highlight);
  font-size: 1.25rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
}

.nav-overlay.is-open .nav-close {
  display: inline-flex;
}

.hero {
  position: relative;
  min-height: 120vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--space-2xl);
  overflow: hidden;
}

.hero-canvas-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-height: 100%;
}

.hero-canvas-wrap canvas {
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: block;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(165deg, rgba(33, 33, 33, 0.35) 0%, rgba(33, 33, 33, 0.85) 55%, var(--color-bg) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 2 * var(--space-md)), var(--max-width));
  margin-inline: auto;
  padding: 5rem var(--space-sm) 0;
}

.hero-tag {
  display: inline-block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-highlight);
  border: 1px solid rgba(20, 255, 236, 0.4);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
  animation: fadeUp 0.8s var(--transition-slow) both;
}

.hero h1 {
  max-width: 100%;
  margin-bottom: var(--space-md);
  animation: fadeUp 0.9s 0.1s both;
  overflow-wrap: break-word;
}

.hero-lead {
  max-width: 38ch;
  color: var(--color-muted);
  font-size: 0.85rem;
  margin-bottom: var(--space-lg);
  animation: fadeUp 1s 0.2s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  animation: fadeUp 1.1s 0.3s both;
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-lg);
  min-height: 2.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  text-align: center;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-text);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-0.12rem);
  background: #0a5c5f;
  color: var(--color-text);
}

.btn-ghost {
  background: transparent;
  color: var(--color-highlight);
  border: 1px solid rgba(20, 255, 236, 0.45);
}

.btn-ghost:hover {
  background: rgba(20, 255, 236, 0.08);
  color: var(--color-highlight);
}

.section {
  padding: var(--space-2xl) 0;
}

.section-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  margin-bottom: var(--space-xs);
}

.section-head {
  margin-bottom: var(--space-lg);
  max-width: 32ch;
}

.card-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
}

.card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: transform var(--transition-med), box-shadow var(--transition-med);
}

.card:hover {
  transform: translateY(-0.2rem);
  box-shadow: var(--shadow-md);
}

.card i {
  color: var(--color-highlight);
  font-size: 1.2rem;
  margin-bottom: var(--space-sm);
}

.card h3 {
  margin-bottom: var(--space-xs);
  font-size: 1rem;
}

.card p {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-bottom: 0;
}

.split-block {
  display: grid;
  gap: var(--space-lg);
  align-items: center;
}

.split-block img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.steps {
  display: grid;
  gap: var(--space-md);
}

.step-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.step-num {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-text);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-strip {
  display: grid;
  gap: var(--space-md);
}

.quote-card {
  background: linear-gradient(135deg, var(--color-surface) 0%, rgba(13, 115, 119, 0.2) 100%);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--color-highlight);
}

.quote-card p {
  font-style: italic;
  font-size: 0.82rem;
  margin-bottom: var(--space-sm);
}

.quote-card cite {
  font-size: 0.72rem;
  color: var(--color-highlight);
  font-style: normal;
}

.faq-list details {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
  padding: var(--space-md);
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.faq-list details[open] {
  border-color: rgba(20, 255, 236, 0.2);
  box-shadow: var(--shadow-sm);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::marker {
  display: none;
  content: '';
}

.faq-summary-text {
  flex: 1;
  min-width: 0;
  padding-right: var(--space-xs);
}

.faq-icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--color-highlight);
  background: rgba(13, 115, 119, 0.35);
  border-radius: 50%;
  transition: transform var(--transition-med), background var(--transition-fast), color var(--transition-fast);
}

.faq-list details[open] summary .faq-icon {
  transform: rotate(180deg);
  background: rgba(20, 255, 236, 0.15);
  color: var(--color-highlight);
}

.faq-list summary:hover .faq-icon {
  background: rgba(20, 255, 236, 0.2);
}

.faq-list p {
  margin-top: var(--space-sm);
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-bottom: 0;
  padding-right: 2rem;
}

.contact-zone {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  position: relative;
  overflow: hidden;
}

.contact-zone::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 50%;
  height: 80%;
  background: radial-gradient(circle, rgba(20, 255, 236, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.contact-layout {
  display: grid;
  gap: var(--space-xl);
  position: relative;
  z-index: 1;
}

.contact-form {
  display: grid;
  gap: var(--space-md);
}

.form-group label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-xs);
  color: var(--color-muted);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  background: var(--color-bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.85rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-highlight);
  box-shadow: 0 0 0 2px rgba(20, 255, 236, 0.15);
}

.form-group textarea {
  min-height: 6rem;
  resize: vertical;
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 0.75rem;
  color: var(--color-muted);
}

.consent-row input {
  margin-top: 0.2rem;
  accent-color: var(--color-accent);
}

.contact-info p {
  font-size: 0.82rem;
  margin-bottom: var(--space-xs);
}

.contact-info i {
  color: var(--color-highlight);
  width: 1rem;
  margin-right: var(--space-xs);
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: var(--space-lg);
  border: 1px solid rgba(20, 255, 236, 0.15);
}

.map-wrap iframe {
  width: 100%;
  height: 14rem;
  border: 0;
  display: block;
}

.site-footer {
  padding: var(--space-lg) 0 var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: var(--space-xl);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  font-size: 0.72rem;
  color: var(--color-muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-links a {
  color: var(--color-muted);
}

.footer-links a:hover {
  color: var(--color-highlight);
}

.cookie-banner {
  position: fixed;
  bottom: var(--space-sm);
  left: var(--space-sm);
  right: var(--space-sm);
  width: auto;
  max-width: 24rem;
  margin-inline: auto;
  background: var(--color-surface);
  border: 1px solid rgba(20, 255, 236, 0.25);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  z-index: 60;
  box-shadow: var(--shadow-md);
  transform: translateY(150%);
  transition: transform var(--transition-med);
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner p {
  font-size: 0.75rem;
  margin-bottom: var(--space-sm);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.cookie-actions .btn {
  padding: var(--space-xs) var(--space-md);
  font-size: 0.7rem;
  flex: 1 1 auto;
  min-width: min(100%, 6rem);
}

.page-hero-compact {
  padding: 5.5rem 0 var(--space-xl);
  background: linear-gradient(180deg, var(--color-surface) 0%, var(--color-bg) 100%);
}

.asym-layout .slant-panel {
  transform: none;
  margin: var(--space-xl) 0;
  padding: var(--space-lg);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.asym-layout .overlap-card {
  position: relative;
  margin-top: var(--space-md);
  margin-left: 0;
  max-width: 100%;
  z-index: 2;
}

.asym-layout .offset-img {
  margin-right: 0;
  transform: none;
  border-radius: var(--radius-lg);
  width: 100%;
}

.asym-layout .zigzag-row {
  display: grid;
  gap: var(--space-lg);
}

.asym-layout .zigzag-row:nth-child(even) {
  direction: ltr;
}

.asym-layout .zigzag-row:nth-child(even) > * {
  direction: ltr;
}

.product-grid {
  display: grid;
  gap: var(--space-lg);
}

.product-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(20, 255, 236, 0.1);
  transition: transform var(--transition-med);
}

.product-card:hover {
  transform: scale(1.02);
}

.product-card img {
  width: 100%;
  height: 10rem;
  object-fit: cover;
}

.product-body {
  padding: var(--space-lg);
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--color-highlight);
  margin: var(--space-sm) 0;
}

.legal-page {
  padding: 5rem 0 var(--space-2xl);
}

.legal-page h1 {
  margin-bottom: var(--space-lg);
}

.legal-page h2 {
  font-size: 1.15rem;
  margin: var(--space-xl) 0 var(--space-md);
  color: var(--color-highlight);
}

.legal-page h3 {
  font-size: 0.95rem;
  margin: var(--space-lg) 0 var(--space-sm);
}

.legal-page p,
.legal-page li {
  font-size: 0.82rem;
  color: var(--color-muted);
}

.legal-page ul {
  list-style: disc;
  padding-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.legal-page li {
  margin-bottom: var(--space-xs);
}

.thank-you-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-2xl) var(--space-md);
}

.thank-you-inner {
  max-width: 32rem;
}

.thank-you-inner i {
  font-size: 2.5rem;
  color: var(--color-highlight);
  margin-bottom: var(--space-lg);
}

.error-page {
  min-height: 75vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-2xl);
}

.error-code {
  font-family: var(--font-display);
  font-size: clamp(4rem, 15vw, 8rem);
  color: var(--color-accent);
  line-height: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(1.2rem);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

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

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(1.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 20rem) {
  html {
    font-size: 87.5%;
  }

  :root {
    --space-2xl: 2.5rem;
    --space-xl: 1.8rem;
    --space-lg: 1.2rem;
  }

  .site-header {
    padding: var(--space-sm) 0;
  }

  .header-inner {
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-md);
  }

  .brand-logo {
    font-size: 0.62rem;
    max-width: calc(100% - 2.85rem);
  }

  .brand-logo span {
    display: inline;
  }

  .menu-toggle {
    width: 2.5rem;
    height: 2.5rem;
    min-width: 2.5rem;
    min-height: 2.5rem;
  }

  .hero {
    min-height: 100svh;
    min-height: 100vh;
    padding-bottom: var(--space-xl);
  }

  .hero-content {
    padding-top: 4.25rem;
  }

  .hero-tag {
    font-size: 0.58rem;
    letter-spacing: 0.08em;
    padding: 0.25rem 0.45rem;
  }

  h1 {
    font-size: 1.45rem;
  }

  h2 {
    font-size: 1.15rem;
  }

  .hero-lead {
    font-size: 0.78rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .section {
    padding: var(--space-xl) 0;
  }

  .section-head {
    max-width: 100%;
  }

  .card {
    padding: var(--space-md);
  }

  .contact-zone {
    padding: var(--space-md);
  }

  .consent-row {
    font-size: 0.68rem;
  }

  .nav-overlay a {
    font-size: 1.15rem;
  }

  .nav-close {
    top: var(--space-md);
    right: var(--space-md);
  }

  .cookie-banner {
    left: var(--space-xs);
    right: var(--space-xs);
    bottom: var(--space-xs);
    max-width: none;
    padding: var(--space-sm);
  }

  .cookie-actions {
    flex-direction: column;
  }

  .cookie-actions .btn {
    width: 100%;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .footer-links {
    gap: var(--space-sm);
  }

  .product-body {
    padding: var(--space-md);
  }

  .product-price {
    font-size: 1.2rem;
  }

  .page-hero-compact {
    padding-top: 4.5rem;
  }

  .legal-page {
    padding-top: 4.25rem;
  }

  .map-wrap iframe {
    height: 11rem;
  }

  .error-page {
    padding: var(--space-xl) var(--space-sm);
  }
}

@media (min-width: 20.01rem) and (max-width: 23.4375rem) {
  .brand-logo {
    font-size: 0.72rem;
  }

  .hero-content {
    padding-top: 4.75rem;
  }

  .hero-actions .btn {
    flex: 1 1 calc(50% - var(--space-sm));
    min-width: 0;
  }
}

@media (min-width: 23.44rem) {
  .shell {
    padding-inline: var(--space-md);
  }

  .hero-content {
    padding-top: 5.25rem;
  }
}

@media (max-width: 48rem) {
  .form-group input,
  .form-group textarea {
    font-size: 1rem;
  }

  .form-group textarea {
    min-height: 5.5rem;
  }
}

@media (min-width: 30rem) {
  .shell {
    width: min(94%, var(--max-width));
    padding-inline: var(--space-md);
  }

  .hero-content {
    padding-top: 5.5rem;
  }

  .hero h1 {
    max-width: 20ch;
  }

  .hero-actions .btn {
    width: auto;
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cookie-banner {
    left: var(--space-md);
    right: auto;
    max-width: 22rem;
  }

  .footer-inner {
    flex-direction: row;
  }
}

@media (min-width: 36rem) {
  body {
    font-size: 0.92rem;
  }

  .hero {
    min-height: 85vh;
    min-height: 85svh;
  }

  .hero-content {
    padding-top: 6rem;
  }

  .section {
    padding: var(--space-2xl) 0;
  }

  .contact-zone {
    padding: var(--space-xl);
  }

  .map-wrap iframe {
    height: 15rem;
  }

  .nav-overlay a {
    font-size: 1.5rem;
  }
}

@media (min-width: 40rem) {
  .shell {
    width: min(92%, var(--max-width));
  }

  .header-inner {
    width: min(94%, var(--max-width));
  }

  .hero-content {
    width: min(92%, var(--max-width));
    padding-inline: 0;
  }

  .brand-logo {
    max-width: none;
    flex: 0 1 auto;
  }
}

@media (min-width: 48rem) {
  .nav-desktop {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
  }

  .menu-toggle {
    display: none;
  }

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

  .split-block {
    grid-template-columns: 1fr 1fr;
  }

  .testimonial-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-layout {
    grid-template-columns: 1fr 1.1fr;
  }

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

  .asym-layout .zigzag-row {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .asym-layout .zigzag-row:nth-child(even) {
    direction: rtl;
  }

  .asym-layout .zigzag-row:nth-child(even) > * {
    direction: ltr;
  }

  .asym-layout .slant-panel {
    transform: rotate(-1.5deg);
    padding: var(--space-xl);
  }

  .asym-layout .overlap-card {
    margin-top: -2.5rem;
    margin-left: 8%;
    max-width: 85%;
  }

  .asym-layout .offset-img {
    margin-right: -5%;
    transform: rotate(2deg);
  }

  .product-card:hover {
    transform: scale(1.02);
  }

  .cookie-banner {
    max-width: 24rem;
  }
}

@media (min-width: 64rem) {
  html {
    font-size: 100%;
  }

  body {
    font-size: 0.9rem;
  }

  .hero {
    min-height: 92vh;
    min-height: 92svh;
  }

  .hero h1 {
    max-width: 18ch;
  }

  .map-wrap iframe {
    height: 18rem;
  }

  .nav-desktop {
    gap: var(--space-lg);
  }

  .page-hero-compact {
    padding-top: 5.5rem;
  }
}

@media (min-width: 80rem) {
  :root {
    --max-width: 76rem;
    --space-2xl: 4rem;
  }

  .hero-content {
    padding-top: 7rem;
  }

  .section-head {
    max-width: 36ch;
  }

  .hero-lead {
    max-width: 42ch;
    font-size: 0.9rem;
  }

  .map-wrap iframe {
    height: 20rem;
  }

  .legal-page .shell {
    max-width: 52rem;
  }
}

@media (min-width: 90rem) {
  :root {
    --max-width: 80rem;
  }

  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2rem;
  }
}

@media (hover: none) and (pointer: coarse) {
  .card:hover {
    transform: none;
    box-shadow: none;
  }

  .product-card:hover {
    transform: none;
  }

  .btn-primary:hover {
    transform: none;
  }
}

@media (max-height: 28rem) and (orientation: landscape) {
  .hero {
    min-height: 95vh;
    padding-bottom: var(--space-lg);
  }

  .hero-content {
    padding-top: 3.5rem;
  }

  .thank-you-page,
  .error-page {
    min-height: auto;
    padding-block: var(--space-xl);
  }
}

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

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

  .hero-tag,
  .hero h1,
  .hero-lead,
  .hero-actions {
    animation: none;
  }

  .btn,
  .card,
  .product-card,
  .header-inner,
  .cookie-banner,
  .faq-icon,
  .faq-list details {
    transition: none;
  }
}
