:root {
  --color-deep: #092635;
  --color-mid: #1B4242;
  --color-accent: #5C8374;
  --color-light: #9EC8B9;
  --color-surface: #f4f9f7;
  --color-text: #0d1f1a;
  --color-muted: #3d5a52;
  --font-display: "Bricolage Grotesque", sans-serif;
  --font-body: "Outfit", sans-serif;
  --space-xs: 0.35rem;
  --space-sm: 0.65rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2.25rem;
  --space-2xl: 3.5rem;
  --radius-sm: 0.35rem;
  --radius-md: 0.65rem;
  --radius-lg: 1.25rem;
  --radius-pill: 2rem;
  --shadow-sm: 0 2px 8px rgba(9, 38, 53, 0.08);
  --shadow-md: 0 8px 24px rgba(9, 38, 53, 0.12);
  --shadow-lg: 0 16px 40px rgba(9, 38, 53, 0.18);
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 72rem;
  --header-height: 3.25rem;
}

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

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

body {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--color-text);
  background: var(--color-surface);
  overflow-x: hidden;
}

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

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

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

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

h1 { font-size: clamp(1.75rem, 4vw, 2.65rem); }
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; }

.container {
  width: min(94%, var(--max-width));
  margin-inline: auto;
  padding-inline: 0;
}

.site-header {
  position: relative;
  z-index: 100;
  padding: var(--space-md) 0;
}

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  background: linear-gradient(135deg, rgba(255,255,255,0.92), rgba(244,249,247,0.95));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(156, 200, 185, 0.35);
  border-radius: var(--radius-pill);
  padding: var(--space-sm) var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.site-header.is-compact .header-inner {
  transform: scale(0.97);
  box-shadow: var(--shadow-md);
}

.logo {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-deep);
  letter-spacing: -0.02em;
}

.logo span {
  color: var(--color-accent);
}

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

.nav-desktop a {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.burger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  min-width: 2.75rem;
  min-height: 2.75rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 302;
  -webkit-tap-highlight-color: transparent;
}

.burger i {
  font-size: 1.2rem;
  color: var(--color-deep);
  line-height: 1;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

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

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

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

.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  background: rgba(9, 38, 53, 0.97);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

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

.nav-overlay ul {
  text-align: center;
  width: 100%;
  padding: var(--space-xl) var(--space-md);
}

.nav-overlay li {
  margin: var(--space-xl) 0;
}

.nav-overlay a {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 5vw, 2rem);
  color: var(--color-light);
  font-weight: 600;
  padding: var(--space-sm) var(--space-md);
}

.nav-overlay a:hover {
  color: #fff;
}

.hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  margin-bottom: var(--space-2xl);
}

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

.hero-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, var(--color-deep), var(--color-mid) 50%, var(--color-accent));
  z-index: 0;
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: var(--space-2xl) var(--space-md);
  color: #fff;
  max-width: 36rem;
}

.hero-content h1 {
  color: #fff;
  margin-bottom: var(--space-md);
  animation: fadeUp 0.8s ease forwards;
}

.hero-content p {
  font-size: 0.95rem;
  animation: fadeUp 0.8s 0.15s ease forwards;
  opacity: 0;
}

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

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

.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.8rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
  font-family: var(--font-body);
  -webkit-tap-highlight-color: transparent;
}

.btn-primary {
  background: var(--color-light);
  color: var(--color-deep);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--color-deep);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.6);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

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

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

.section-header {
  margin-bottom: var(--space-xl);
  max-width: 32rem;
}

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

.card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(156, 200, 185, 0.25);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

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

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

.card h3 {
  margin-bottom: var(--space-sm);
}

.steps {
  display: grid;
  gap: var(--space-lg);
  counter-reset: step;
}

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

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

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

.media-block img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  object-fit: cover;
}

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

.testimonial {
  background: #fff;
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-accent);
  box-shadow: var(--shadow-sm);
}

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

.cta-band {
  background: linear-gradient(120deg, var(--color-mid), var(--color-accent));
  color: #fff;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  text-align: center;
  margin: var(--space-xl) 0;
}

.cta-band h2 {
  color: #fff;
  margin-bottom: var(--space-sm);
}

.cta-band p {
  opacity: 0.9;
  font-size: 0.85rem;
}

.site-footer {
  background: var(--color-deep);
  color: var(--color-light);
  padding: var(--space-lg) 0;
  margin-top: var(--space-2xl);
  font-size: 0.75rem;
}

.footer-disclaimer {
  font-size: 0.68rem;
  line-height: 1.5;
  opacity: 0.8;
  margin-bottom: var(--space-md);
  max-width: 40rem;
}

.testimonial-note {
  font-size: 0.72rem;
  color: var(--color-muted);
  margin-top: var(--space-md);
  margin-bottom: 0;
  line-height: 1.5;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: space-between;
  align-items: center;
}

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

.footer-links a {
  color: var(--color-light);
  opacity: 0.85;
}

.footer-links a:hover {
  opacity: 1;
  color: #fff;
}

.asym-hero {
  padding: var(--space-2xl) 0 var(--space-xl);
  position: relative;
}

.asym-hero h1 {
  transform: rotate(-1.5deg);
  max-width: 18ch;
}

.asym-hero .slant-bg {
  position: absolute;
  top: 0;
  right: -10%;
  width: 55%;
  height: 70%;
  background: linear-gradient(160deg, var(--color-light) 0%, transparent 70%);
  transform: skewY(-6deg);
  opacity: 0.35;
  z-index: -1;
  border-radius: var(--radius-lg);
}

.overlap-row {
  display: grid;
  gap: var(--space-xl);
  position: relative;
}

.float-card {
  background: #fff;
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  transform: rotate(1.2deg);
}

.float-card.alt {
  transform: rotate(-2deg);
  margin-top: -2rem;
  margin-left: 8%;
}

.angled-section {
  background: var(--color-mid);
  color: #fff;
  padding: var(--space-2xl) var(--space-md);
  clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
  margin: var(--space-2xl) 0;
}

.angled-section h2,
.angled-section h3 {
  color: #fff;
}

.offset-image {
  position: relative;
  margin: var(--space-xl) 0;
}

.offset-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.offset-image::after {
  content: "";
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 60%;
  height: 40%;
  background: var(--color-accent);
  opacity: 0.25;
  border-radius: var(--radius-lg);
  z-index: -1;
}

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

.product-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1fr;
}

.product-card:nth-child(2) {
  transform: translateX(4%);
}

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

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

.product-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-accent);
  font-weight: 800;
}

.product-body ul {
  list-style: disc;
  padding-left: var(--space-lg);
  margin-bottom: var(--space-md);
  font-size: 0.85rem;
}

.product-body li {
  margin-bottom: var(--space-xs);
}

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

.contact-visual {
  background: linear-gradient(135deg, var(--color-deep), var(--color-mid));
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.contact-visual::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 50%;
  bottom: -20%;
  left: -10%;
  background: var(--color-accent);
  opacity: 0.2;
  transform: rotate(-8deg);
}

.contact-visual h2 {
  color: #fff;
  position: relative;
}

.contact-detail {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  margin-bottom: var(--space-md);
  font-size: 0.85rem;
  position: relative;
}

.contact-detail i {
  color: var(--color-light);
  margin-top: 3px;
}

.form-panel {
  background: #fff;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(156, 200, 185, 0.3);
}

.form-group {
  margin-bottom: var(--space-md);
}

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

.form-group input,
.form-group textarea {
  padding: var(--space-sm) var(--space-md);
  border: 1px solid rgba(92, 131, 116, 0.35);
  border-radius: var(--radius-sm);
  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-accent);
  box-shadow: 0 0 0 3px rgba(92, 131, 116, 0.15);
}

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

.checkbox-group {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  font-size: 0.75rem;
}

.checkbox-group input {
  margin-top: 3px;
  flex-shrink: 0;
  min-width: 1rem;
  min-height: 1rem;
}

.contact-detail p {
  word-break: break-word;
  overflow-wrap: anywhere;
}

.map-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-top: var(--space-lg);
}

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

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

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

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

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

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

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

.thank-icon {
  font-size: 3rem;
  color: var(--color-accent);
  margin-bottom: var(--space-lg);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

.error-page {
  min-height: 65vh;
  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;
  opacity: 0.4;
}

.error-page .btn-outline {
  margin-top: var(--space-md);
  color: var(--color-mid);
  border-color: var(--color-accent);
}

.cookie-popup {
  position: fixed;
  bottom: var(--space-md);
  left: var(--space-md);
  right: var(--space-md);
  max-width: 24rem;
  background: var(--color-deep);
  color: var(--color-light);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 300;
  transform: translateY(120%);
  transition: transform var(--transition-smooth);
  font-size: 0.8rem;
}

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

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

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

.cookie-actions .btn {
  font-size: 0.7rem;
  padding: var(--space-xs) var(--space-md);
}

.cookie-actions .btn-outline {
  border-color: var(--color-light);
  color: var(--color-light);
}

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

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

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

.float-card,
.float-card.alt {
  transform: none;
  margin-top: 0;
  margin-left: 0;
}

.asym-hero h1 {
  transform: none;
  max-width: 100%;
}

.asym-hero .slant-bg {
  width: 70%;
  right: -20%;
}

.offset-image::after {
  width: 50%;
  height: 30%;
  bottom: -8px;
  right: -8px;
}

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

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

  body {
    font-size: 0.82rem;
  }

  .container {
    width: min(96%, var(--max-width));
  }

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

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

  .logo {
    font-size: 0.72rem;
    line-height: 1.25;
    word-break: break-word;
  }

  .burger {
    width: 2.5rem;
    height: 2.5rem;
    min-width: 2.5rem;
    min-height: 2.5rem;
    flex-shrink: 0;
  }

  .burger i {
    font-size: 1rem;
  }

  .hero {
    min-height: 62vh;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    margin-bottom: var(--space-xl);
  }

  .hero-content {
    padding: var(--space-xl) var(--space-sm);
  }

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

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

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }

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

  .section-header {
    margin-bottom: var(--space-lg);
  }

  .card,
  .float-card,
  .form-panel,
  .contact-visual,
  .cta-band {
    padding: var(--space-md);
  }

  .cta-band {
    margin: var(--space-lg) 0;
  }

  .btn {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.75rem;
  }

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

  .nav-overlay li {
    margin: var(--space-md) 0;
  }

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

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

  .angled-section {
    padding: var(--space-xl) var(--space-sm);
    clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
    margin: var(--space-xl) 0;
  }

  .asym-hero {
    padding: var(--space-xl) 0 var(--space-lg);
  }

  .asym-hero .slant-bg {
    display: none;
  }

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

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

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

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

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }

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

  .thank-page,
  .error-page {
    padding: var(--space-xl) var(--space-sm);
    min-height: 55vh;
  }

  .thank-icon {
    font-size: 2.25rem;
  }

  .legal-page {
    padding: var(--space-lg) 0 var(--space-xl);
  }

  .legal-page h2 {
    font-size: 1rem;
  }

  .checkbox-group {
    font-size: 0.7rem;
  }
}

@media (min-width: 20.01rem) and (max-width: 29.99rem) {
  .container {
    width: min(93%, var(--max-width));
  }

  .logo {
    font-size: 0.82rem;
    max-width: 11rem;
  }

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

  .hero-content {
    padding: var(--space-xl) var(--space-md);
  }

  .hero-cta .btn {
    flex: 1 1 auto;
    min-width: 0;
  }

  .cookie-popup {
    left: var(--space-sm);
    right: var(--space-sm);
  }
}

@media (min-width: 30rem) {
  .hero-cta {
    flex-direction: row;
    align-items: center;
  }

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

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

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

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

  .footer-inner {
    flex-direction: row;
    align-items: center;
  }

  .cookie-popup {
    max-width: 22rem;
  }

  .asym-hero h1 {
    transform: rotate(-1deg);
    max-width: 22ch;
  }

  .float-card {
    transform: rotate(0.8deg);
  }

  .float-card.alt {
    transform: rotate(-1deg);
    margin-top: -1rem;
    margin-left: 5%;
  }
}

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

  body {
    font-size: 0.9rem;
  }

  .container {
    width: min(92%, var(--max-width));
  }

  .logo {
    font-size: 0.9rem;
    max-width: none;
  }

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

  .hero {
    min-height: 68vh;
  }

  .hero-content {
    padding: var(--space-2xl) var(--space-md);
  }

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

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

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

  .asym-hero h1 {
    transform: rotate(-1.5deg);
    max-width: 20ch;
  }

  .asym-hero .slant-bg {
    display: block;
    width: 60%;
    right: -12%;
  }

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

@media (min-width: 48rem) {
  .nav-desktop {
    display: flex;
  }

  .burger {
    display: none;
  }

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

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

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

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

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

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

  .overlap-row {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }

  .float-card.alt {
    margin-top: 2rem;
    margin-left: -10%;
    transform: rotate(-1.5deg);
  }

  .float-card {
    transform: rotate(1deg);
  }

  .map-frame iframe {
    height: 14rem;
  }

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

  .hero {
    min-height: 72vh;
  }

  .angled-section {
    clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
  }
}

@media (min-width: 62rem) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
  }

  .media-block {
    gap: var(--space-2xl);
  }

  .contact-wrap {
    gap: var(--space-2xl);
  }

  .overlap-row {
    gap: var(--space-2xl);
  }

  .float-card.alt {
    margin-top: 3rem;
    margin-left: -12%;
  }

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

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

@media (min-width: 64rem) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
  }

  .float-card.alt {
    margin-left: -15%;
    transform: rotate(-2deg);
  }

  .float-card {
    transform: rotate(1.2deg);
  }

  .asym-hero .slant-bg {
    width: 55%;
    right: -10%;
  }
}

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

  .container {
    width: min(90%, var(--max-width));
  }

  .hero {
    min-height: 78vh;
  }

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

  .section {
    padding: calc(var(--space-xl) + 0.5rem) 0;
  }

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

  .product-grid {
    gap: var(--space-2xl);
  }
}

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

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

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

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

  .btn-primary: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;
  }
}
