:root {
  --color-bg: #212121;
  --color-surface: #323232;
  --color-accent: #0D7377;
  --color-highlight: #14FFEC;
  --color-text: #f0f0f0;
  --color-muted: #a8a8a8;
  --font-display: "Syne", sans-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.75rem;
  --radius-lg: 1.25rem;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 20px rgba(20, 255, 236, 0.15);
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 3.5rem;
  --max-width: 72rem;
  --shell-gutter: clamp(0.75rem, 4vw, 3.2rem);
  --touch-min: 2.75rem;
}

*,
*::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: clamp(0.8125rem, 2.5vw, 0.9rem);
  line-height: 1.55;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
  min-width: 20rem;
}

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

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

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

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

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

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

ul { list-style: none; }

.shell {
  width: min(100% - var(--shell-gutter) * 2, var(--max-width));
  margin-inline: auto;
  padding-inline: 0;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-sm) var(--shell-gutter);
  padding-top: max(var(--space-sm), env(safe-area-inset-top));
  transform: translateY(0);
  transition: transform var(--transition-smooth), opacity var(--transition-smooth);
}

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  background: rgba(50, 50, 50, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(20, 255, 236, 0.12);
  border-radius: var(--radius-lg);
  padding: var(--space-sm) var(--space-md);
  box-shadow: var(--shadow-sm);
}

.brand-logo {
  font-family: var(--font-display);
  font-size: clamp(0.68rem, 2vw, 0.95rem);
  font-weight: 800;
  color: var(--color-highlight);
  letter-spacing: -0.02em;
  line-height: 1.25;
  word-break: break-word;
  flex-shrink: 1;
  min-width: 0;
}

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

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

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

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

.burger-btn {
  background: transparent;
  border: 1px solid rgba(20, 255, 236, 0.3);
  border-radius: var(--radius-sm);
  color: var(--color-highlight);
  width: var(--touch-min);
  height: var(--touch-min);
  min-width: var(--touch-min);
  flex-shrink: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.burger-btn:hover {
  background: rgba(13, 115, 119, 0.3);
  border-color: var(--color-highlight);
}

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

.burger-btn.is-active .burger-icon-open {
  display: none;
}

.burger-btn.is-active .burger-icon-close {
  display: block;
}

.site-header.has-menu-open {
  z-index: 250;
}

.site-header.has-menu-open .burger-btn {
  border-color: var(--color-highlight);
  background: rgba(13, 115, 119, 0.35);
}

.nav-mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  min-width: 100vw;
  min-height: 100vh;
  min-height: 100dvh;
  background: rgba(33, 33, 33, 0.98);
  z-index: 200;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  padding: max(var(--space-xl), env(safe-area-inset-top)) var(--shell-gutter) max(var(--space-xl), env(safe-area-inset-bottom));
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.nav-mobile.is-open {
  display: flex;
  opacity: 1;
}

.nav-mobile a {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-text);
}

.nav-close {
  position: absolute;
  top: max(var(--space-lg), env(safe-area-inset-top));
  right: max(var(--space-lg), env(safe-area-inset-right));
  background: transparent;
  border: none;
  color: var(--color-highlight);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 210;
  width: var(--touch-min);
  height: var(--touch-min);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-block {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + var(--space-xl)) var(--shell-gutter) var(--space-xl);
  padding-bottom: max(var(--space-xl), env(safe-area-inset-bottom));
  overflow: hidden;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 36rem;
}

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

.hero-content h1 {
  margin-bottom: var(--space-md);
  animation: fadeUp 0.8s 0.1s ease both;
}

.hero-content p {
  color: var(--color-muted);
  font-size: 0.85rem;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  animation: fadeUp 0.8s 0.3s ease both;
}

.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-md);
  min-height: var(--touch-min);
  font-size: clamp(0.75rem, 2.2vw, 0.8rem);
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
  text-align: center;
}

.btn-stack {
  width: 100%;
}

.mt-sm {
  margin-top: var(--space-sm);
}

.mt-md {
  margin-top: var(--space-md);
}

.checklist {
  margin-top: var(--space-md);
  color: var(--color-muted);
  font-size: clamp(0.75rem, 2.2vw, 0.82rem);
}

.checklist li {
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
}

.checklist li:last-child {
  margin-bottom: 0;
}

.checklist i {
  color: var(--color-highlight);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

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

.btn-primary:hover {
  background: #0a5c5f;
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
  color: var(--color-text);
}

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

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

.section-block {
  padding: clamp(2rem, 6vw, var(--space-2xl)) 0;
}

.section-head {
  margin-bottom: var(--space-xl);
}

.section-head p {
  color: var(--color-muted);
  font-size: 0.82rem;
  max-width: 32rem;
}

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

.card-item {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.card-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

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

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

.visual-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}

.visual-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 115, 119, 0.25), transparent);
  pointer-events: none;
}

.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.stat-unit strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-highlight);
}

.stat-unit span {
  font-size: 0.75rem;
  color: var(--color-muted);
}

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

.review-card {
  background: var(--color-surface);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-accent);
}

.review-card cite {
  display: block;
  margin-top: var(--space-sm);
  font-size: 0.75rem;
  color: var(--color-muted);
  font-style: normal;
}

.contact-zone {
  background: linear-gradient(160deg, var(--color-surface) 0%, rgba(13, 115, 119, 0.2) 100%);
  border-radius: var(--radius-lg);
  padding: clamp(var(--space-md), 4vw, var(--space-xl));
  position: relative;
  overflow: hidden;
}

.contact-zone::before {
  content: "";
  position: absolute;
  width: 12rem;
  height: 12rem;
  background: radial-gradient(circle, rgba(20, 255, 236, 0.12), transparent);
  top: -3rem;
  right: -3rem;
  border-radius: 50%;
}

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

.form-stack label {
  display: block;
  font-size: 0.75rem;
  margin-bottom: var(--space-xs);
  color: var(--color-muted);
}

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

.form-stack input:focus,
.form-stack textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

.form-stack 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);
  margin-bottom: var(--space-md);
}

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

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

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

.map-embed iframe {
  width: 100%;
  height: clamp(10rem, 35vw, 18rem);
  border: 0;
}

.site-footer {
  padding: var(--space-lg) 0;
  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);
  font-size: 0.72rem;
}

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

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

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

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

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

.cookie-actions button {
  flex: 1;
  padding: var(--space-xs) var(--space-sm);
  font-size: 0.75rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}

.cookie-accept {
  background: var(--color-accent);
  color: var(--color-text);
}

.cookie-decline {
  background: transparent;
  color: var(--color-muted);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-hero-mini {
  padding: calc(var(--header-height) + var(--space-2xl)) var(--shell-gutter) var(--space-xl);
  background: linear-gradient(180deg, rgba(13, 115, 119, 0.15), transparent);
}

.page-hero-mini.shell {
  width: min(100% - var(--shell-gutter) * 2, var(--max-width));
}

.asym-layout {
  position: relative;
  padding: clamp(2rem, 6vw, var(--space-2xl)) var(--shell-gutter);
}

.asym-panel {
  position: relative;
  margin-bottom: var(--space-2xl);
}

.asym-panel:nth-child(odd) .asym-inner {
  margin-left: 0;
  margin-right: 8%;
  transform: rotate(-1deg);
}

.asym-panel:nth-child(even) .asym-inner {
  margin-left: 10%;
  margin-right: 0;
  transform: rotate(1deg);
}

.asym-inner {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-smooth);
}

.asym-inner:hover {
  transform: rotate(0deg) scale(1.01);
}

.asym-float-img {
  position: relative;
  z-index: 2;
  margin-top: calc(var(--space-xl) * -1);
  margin-left: 15%;
  width: 70%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 3px solid var(--color-accent);
}

.asym-overlap {
  padding: var(--space-lg);
  background: rgba(13, 115, 119, 0.25);
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
  width: 85%;
}

.angled-strip {
  clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
  background: var(--color-surface);
  padding: clamp(2rem, 6vw, var(--space-2xl)) var(--shell-gutter);
  margin: var(--space-xl) 0;
}

@media (max-width: 29.9375rem) {
  .angled-strip {
    clip-path: none;
  }
}

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

.product-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-smooth);
}

.product-card:hover {
  transform: translateY(-6px) rotate(-0.5deg);
}

.product-card:nth-child(2) {
  transform: none;
}

.product-card:nth-child(2):hover {
  transform: translateY(-6px);
}

.product-body-spaced {
  padding-top: var(--space-xl);
}

.asym-intro-tilt {
  margin-bottom: var(--space-2xl);
  max-width: 100%;
  transform: none;
  margin-left: 0;
}

.asym-shift-right {
  margin-left: 0;
  transform: none;
}

.asym-shift-left {
  margin-right: 0;
  transform: none;
}

.product-body {
  padding: var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--color-highlight);
  margin-top: auto;
  padding-top: var(--space-md);
}

.legal-page {
  padding: calc(var(--header-height) + var(--space-2xl)) var(--shell-gutter) var(--space-2xl);
  max-width: 48rem;
  margin: 0 auto;
  width: min(100% - var(--shell-gutter) * 2, 48rem);
}

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

.legal-page h2 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  font-size: 1.1rem;
}

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

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

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

.thanks-block {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
}

.thanks-block h1 {
  color: var(--color-highlight);
  margin-bottom: var(--space-md);
}

.thanks-icon {
  font-size: clamp(2rem, 8vw, 2.5rem);
  color: var(--color-highlight);
  margin-bottom: var(--space-md);
  display: block;
}

.error-block {
  min-height: 70vh;
  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(3rem, 18vw, 5rem);
  color: var(--color-accent);
  line-height: 1;
}

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

.reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (max-width: 20rem) {
  :root {
    --space-lg: 1.25rem;
    --space-xl: 1.75rem;
    --space-2xl: 2.25rem;
    --header-height: 3rem;
    --shell-gutter: 0.65rem;
  }

  html {
    font-size: 93.75%;
  }

  .header-inner {
    padding: var(--space-xs) var(--space-sm);
    gap: var(--space-xs);
  }

  .brand-logo {
    font-size: 0.6rem;
  }

  .brand-logo span {
    display: block;
    font-size: 0.55rem;
  }

  .hero-block {
    min-height: auto;
    padding-top: calc(var(--header-height) + var(--space-lg));
    padding-bottom: var(--space-lg);
  }

  .hero-content h1 {
    font-size: 1.35rem;
  }

  .hero-tag {
    font-size: 0.6rem;
    letter-spacing: 0.06em;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

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

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

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

  .card-item,
  .review-card,
  .asym-inner {
    padding: var(--space-sm);
  }

  .cookie-banner {
    left: var(--space-xs);
    right: var(--space-xs);
    bottom: max(var(--space-xs), env(safe-area-inset-bottom));
    max-width: none;
  }

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

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

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

  .map-embed iframe {
    height: 10rem;
  }

  .error-block,
  .thanks-block {
    padding: var(--space-lg) var(--shell-gutter);
  }

  .nav-mobile a {
    font-size: 1.05rem;
  }

  .angled-strip {
    clip-path: none;
    padding: var(--space-lg) var(--shell-gutter);
  }
}

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

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

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

  .asym-panel:nth-child(odd) .asym-inner,
  .asym-panel:nth-child(even) .asym-inner {
    margin-left: 0;
    margin-right: 0;
    transform: none;
  }

  .asym-float-img {
    width: 100%;
    margin-left: 0;
    margin-top: var(--space-md);
  }

  .asym-overlap {
    width: 100%;
    margin-top: var(--space-md);
  }

  .product-card:nth-child(2) {
    transform: none;
  }
}

@media (max-width: 29.9375rem) {
  .asym-panel:nth-child(odd) .asym-inner,
  .asym-panel:nth-child(even) .asym-inner {
    margin-left: 0;
    margin-right: 0;
    transform: none;
  }

  .asym-inner:hover {
    transform: none;
  }

  .asym-float-img {
    width: 100%;
    margin-left: 0;
    margin-top: var(--space-md);
  }

  .asym-overlap {
    width: 100%;
    margin-top: var(--space-md);
    padding: var(--space-md);
  }

  .asym-layout {
    padding: var(--space-xl) var(--shell-gutter);
  }

  .page-hero-mini {
    padding-left: var(--shell-gutter);
    padding-right: var(--shell-gutter);
  }

  .legal-page {
    padding-left: var(--shell-gutter);
    padding-right: var(--shell-gutter);
  }

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

  .stats-row {
    gap: var(--space-md);
  }

  .stat-unit strong {
    font-size: 1.25rem;
  }

  .product-card:hover,
  .product-card:nth-child(2):hover {
    transform: none;
  }

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

  .btn-stack {
    width: 100%;
  }

  .contact-form .btn-primary {
    width: 100%;
  }

  .contact-details p {
    word-break: break-word;
  }
}

@media (min-width: 30rem) and (max-width: 35.9375rem) {
  .grid-cards {
    grid-template-columns: 1fr;
  }

  .review-slider {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    flex: 1 1 auto;
    min-width: min(100%, 12rem);
  }
}

@media (min-width: 36rem) and (max-width: 47.9375rem) {
  .grid-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-cards .card-item:last-child {
    grid-column: 1 / -1;
  }

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

  .review-slider .review-card:last-child {
    grid-column: 1 / -1;
  }

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

  .product-grid .product-card:last-child {
    grid-column: 1 / -1;
    max-width: 100%;
    width: 100%;
  }

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

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

  .asym-float-img {
    width: 85%;
    margin-left: 7%;
  }
}

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

  .burger-btn {
    display: none;
  }

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

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

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

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

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

  .product-grid .product-card:last-child {
    grid-column: auto;
    max-width: none;
    margin-inline: 0;
  }

  .product-card:nth-child(2) {
    transform: translateY(1.5rem);
  }

  .product-card:nth-child(2):hover {
    transform: translateY(0.5rem);
  }

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

  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    width: auto;
  }

  .btn-stack {
    width: auto;
  }

  .map-embed iframe {
    height: 16rem;
  }

  .cookie-banner {
    left: var(--space-lg);
    right: auto;
  }
}

@media (min-width: 48rem) and (max-width: 61.9375rem) {

  .nav-desktop a {
    font-size: 0.72rem;
  }
}

@media (min-width: 62rem) {
  .asym-panel:nth-child(odd) .asym-inner {
    margin-right: 12%;
    transform: rotate(-1deg);
  }

  .asym-panel:nth-child(even) .asym-inner {
    margin-left: 10%;
    transform: rotate(1deg);
  }

  .asym-float-img {
    width: 70%;
    margin-left: 15%;
  }

  .asym-overlap {
    width: 85%;
    margin-top: calc(var(--space-xl) * -1.5);
  }

  .asym-intro-tilt {
    max-width: 90%;
    margin-left: 3%;
    transform: rotate(-1deg);
  }

  .asym-shift-right {
    margin-left: 18%;
    transform: rotate(1deg);
  }

  .asym-shift-left {
    margin-right: 15%;
    transform: rotate(-0.8deg);
  }

  .product-card:nth-child(2) {
    transform: translateX(3%) translateY(1.5rem);
  }

  .product-card:nth-child(2):hover {
    transform: translateX(3%) translateY(0.5rem);
  }
}

@media (min-width: 64rem) {
  .asym-panel:nth-child(odd) .asym-inner {
    margin-right: 20%;
  }

  .asym-panel:nth-child(even) .asym-inner {
    margin-left: 18%;
  }

  .hero-content {
    max-width: 40rem;
  }

  .section-head p {
    max-width: 36rem;
  }
}

@media (min-width: 75rem) {
  :root {
    --max-width: 76rem;
  }

  .hero-block {
    padding-top: calc(var(--header-height) + var(--space-2xl));
    padding-bottom: var(--space-2xl);
  }

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

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

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

  h1 {
    font-size: clamp(2.25rem, 3vw, 2.75rem);
  }

  .hero-content p {
    font-size: 0.95rem;
  }
}

@media (hover: none) and (pointer: coarse) {
  .card-item:hover,
  .product-card:hover,
  .asym-inner:hover {
    transform: none;
  }

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

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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

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

@media print {
  .site-header,
  .nav-mobile,
  .cookie-banner,
  .hero-canvas,
  .burger-btn {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  a {
    color: #000;
    text-decoration: underline;
  }
}
