:root {
  --color-deep: #35374B;
  --color-slate: #344955;
  --color-mist: #50727B;
  --color-sage: #78A083;
  --color-light: #f4f6f5;
  --color-white: #ffffff;
  --font-display: 'Syne', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --space-xs: 0.35rem;
  --space-sm: 0.65rem;
  --space-md: 1rem;
  --space-lg: 1.75rem;
  --space-xl: 2.75rem;
  --space-2xl: 4rem;
  --radius-sm: 0.35rem;
  --radius-md: 0.65rem;
  --radius-lg: 1.25rem;
  --shadow-sm: 0 0.15rem 0.5rem rgba(53, 55, 75, 0.12);
  --shadow-md: 0 0.5rem 1.5rem rgba(53, 55, 75, 0.18);
  --shadow-lg: 0 1rem 2.5rem rgba(53, 55, 75, 0.22);
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 3.5rem;
  --max-width: 72rem;
}

*,
*::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-deep);
  background: var(--color-light);
  overflow-x: hidden;
}

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

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

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

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

h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h2 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h3 { font-size: clamp(1rem, 2.5vw, 1.25rem); }

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

.site-header {
  position: absolute;
  top: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  width: 94%;
  max-width: 56rem;
  z-index: 100;
  transition: transform var(--transition-smooth), opacity var(--transition-smooth);
}

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(0.65rem);
  border-radius: var(--radius-lg);
  padding: var(--space-sm) var(--space-md);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(120, 160, 131, 0.25);
}

.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(0.62rem, 2.8vw, 0.85rem);
  color: var(--color-slate);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

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

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

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

.burger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.burger-icon-menu {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  align-items: center;
  justify-content: center;
}

.burger-line {
  display: block;
  width: 1.35rem;
  height: 2px;
  background: var(--color-slate);
  transition: opacity var(--transition-fast);
}

.burger-icon-close {
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--color-slate);
  line-height: 1;
}

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

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

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

.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  min-width: 100%;
  min-height: 100%;
  margin: 0;
  padding: var(--space-2xl) var(--space-md);
  padding-top: calc(var(--space-2xl) + var(--header-height));
  background: rgba(53, 55, 75, 0.98);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  z-index: 250;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: opacity var(--transition-smooth), visibility var(--transition-smooth);
}

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

.nav-mobile a {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--color-white);
  font-weight: 600;
}

.nav-mobile .close-nav {
  position: fixed;
  top: max(var(--space-md), env(safe-area-inset-top, 0px));
  right: max(var(--space-md), env(safe-area-inset-right, 0px));
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-md);
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.35rem;
  cursor: pointer;
  z-index: 251;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + var(--space-2xl)) 0 var(--space-2xl);
  overflow: hidden;
  background: linear-gradient(145deg, var(--color-deep) 0%, var(--color-slate) 45%, var(--color-mist) 100%);
}

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

.hero-content {
  position: relative;
  z-index: 2;
  width: min(92%, var(--max-width));
  max-width: var(--max-width);
  margin: 0 auto;
  padding-inline: 0;
}

.hero-tag {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-sage);
  margin-bottom: var(--space-sm);
  animation: fadeUp 0.8s ease forwards;
}

.hero h1 {
  color: var(--color-white);
  max-width: 100%;
  margin-bottom: var(--space-md);
  animation: fadeUp 0.8s 0.1s ease forwards;
  opacity: 0;
  animation-fill-mode: forwards;
}

.hero p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 100%;
  font-size: clamp(0.8rem, 2.5vw, 0.88rem);
  margin-bottom: var(--space-lg);
  animation: fadeUp 0.8s 0.2s ease forwards;
  opacity: 0;
  animation-fill-mode: forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  animation: fadeUp 0.8s 0.3s ease forwards;
  opacity: 0;
  animation-fill-mode: forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(1.25rem);
  }
  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-md);
  min-height: 2.5rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
  text-align: center;
}

.btn-primary {
  background: var(--color-sage);
  color: var(--color-white);
}

.btn-primary:hover {
  background: #6a9474;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--color-white);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

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

.btn-dark {
  background: var(--color-slate);
  color: var(--color-white);
}

.btn-dark:hover {
  background: var(--color-deep);
  color: var(--color-white);
}

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

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

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

.section-title {
  margin-bottom: var(--space-md);
  color: var(--color-slate);
}

.wellness-note {
  font-size: 0.72rem;
  color: var(--color-mist);
  margin-bottom: var(--space-md);
  padding: var(--space-sm) var(--space-md);
  background: rgba(120, 160, 131, 0.12);
  border-radius: var(--radius-sm);
  border-left: 2px solid var(--color-sage);
  line-height: 1.45;
}

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

.grid-cards-spaced {
  margin-top: var(--space-lg);
}

.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

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

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

.card h3 {
  margin-bottom: var(--space-xs);
  color: var(--color-deep);
}

.card p {
  font-size: 0.82rem;
  color: var(--color-mist);
}

.split-section {
  display: grid;
  gap: var(--space-lg);
  align-items: center;
  min-width: 0;
}

.split-section > * {
  min-width: 0;
}

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

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

.stat {
  flex: 1 1 5rem;
}

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

.stat span {
  font-size: 0.72rem;
  color: var(--color-mist);
}

.testimonial-slider {
  display: flex;
  gap: var(--space-md);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: var(--space-sm);
  -webkit-overflow-scrolling: touch;
  margin-inline: calc(var(--space-xs) * -1);
  padding-inline: var(--space-xs);
}

.testimonial {
  flex: 0 0 85%;
  scroll-snap-align: start;
  background: var(--color-white);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--color-sage);
  box-shadow: var(--shadow-sm);
}

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

.testimonial cite {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-slate);
  font-style: normal;
}

.cta-band {
  background: linear-gradient(120deg, var(--color-slate), var(--color-mist));
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
}

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

.cta-band p {
  font-size: 0.82rem;
  margin-bottom: var(--space-md);
  opacity: 0.9;
}

.page-hero {
  padding: calc(var(--header-height) + var(--space-2xl)) 0 var(--space-xl);
  background: var(--color-slate);
  color: var(--color-white);
  clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
}

.page-hero h1 {
  color: var(--color-white);
}

.page-hero p {
  font-size: 0.85rem;
  opacity: 0.9;
  max-width: 40ch;
}

.asymmetric-wrap {
  position: relative;
  padding: var(--space-xl) 0;
}

.float-block {
  position: relative;
  margin-bottom: var(--space-xl);
}

.angled-panel {
  background: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 1;
}

.angled-panel-offset {
  margin-top: var(--space-lg);
}

.product-tilt-b {
  margin-top: 0;
}

.thank-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.thank-actions .btn {
  width: 100%;
  margin: 0;
}

.overlap-img {
  position: relative;
  margin-top: calc(var(--space-lg) * -1);
  z-index: 2;
  width: 75%;
  margin-left: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.stagger-text {
  max-width: 28rem;
  padding: var(--space-md);
  background: rgba(120, 160, 131, 0.15);
  border-radius: var(--radius-md);
  margin-top: var(--space-md);
  transform: translateX(-5%);
}

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

.product-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-smooth);
}

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

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

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

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

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

.contact-visual {
  position: relative;
  min-height: 14rem;
  background: linear-gradient(160deg, var(--color-deep), var(--color-mist));
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  color: var(--color-white);
  overflow: hidden;
}

.contact-visual::before {
  content: '';
  position: absolute;
  width: 8rem;
  height: 8rem;
  border: 2px solid var(--color-sage);
  border-radius: 50%;
  top: -2rem;
  right: -2rem;
  opacity: 0.4;
}

.contact-visual h2 {
  color: var(--color-white);
  position: relative;
  z-index: 1;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  font-size: 0.82rem;
  position: relative;
  z-index: 1;
}

.contact-detail i {
  color: var(--color-sage);
  margin-top: 0.15rem;
}

.contact-form-wrap {
  background: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transform: rotate(0.5deg);
}

.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-slate);
}

.form-group input,
.form-group textarea {
  padding: var(--space-sm);
  border: 1px solid rgba(80, 114, 123, 0.35);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: max(1rem, 0.85rem);
  transition: border-color var(--transition-fast);
}

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

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

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

.checkbox-group input {
  margin-top: 0.2rem;
}

.checkbox-group a {
  text-decoration: underline;
}

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

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

.site-footer {
  background: var(--color-deep);
  color: rgba(255, 255, 255, 0.75);
  padding: var(--space-md) 0;
  font-size: 0.72rem;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
}

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

.cookie-popup {
  position: fixed;
  bottom: max(var(--space-md), env(safe-area-inset-bottom, 0px));
  left: max(var(--space-md), env(safe-area-inset-left, 0px));
  right: max(var(--space-md), env(safe-area-inset-right, 0px));
  max-width: 24rem;
  background: var(--color-white);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 300;
  transform: translateY(150%);
  transition: transform var(--transition-smooth);
  border: 1px solid rgba(120, 160, 131, 0.3);
}

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

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

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

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

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

.legal-page h2 {
  font-size: 1.1rem;
  margin: var(--space-lg) 0 var(--space-sm);
  color: var(--color-deep);
}

.legal-page p,
.legal-page li {
  font-size: 0.82rem;
  margin-bottom: var(--space-sm);
  color: var(--color-mist);
}

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

.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-card {
  background: var(--color-white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 28rem;
}

.thank-card i {
  font-size: 2.5rem;
  color: var(--color-sage);
  margin-bottom: var(--space-md);
}

.error-page {
  min-height: 85vh;
  min-height: 85svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--color-deep);
  color: var(--color-white);
  padding: var(--space-md);
}

.error-page .btn {
  margin-top: var(--space-xs);
}

.error-page h1 {
  font-size: 4rem;
  color: var(--color-sage);
}

.error-page p {
  margin: var(--space-md) 0;
  font-size: 0.9rem;
}

.fade-in {
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.bg-alt {
  background: rgba(80, 114, 123, 0.08);
}

.timeline {
  border-left: 2px solid var(--color-sage);
  padding-left: var(--space-md);
  margin-left: var(--space-sm);
}

.timeline-item {
  margin-bottom: var(--space-md);
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: calc(var(--space-md) * -1 - 5px);
  top: 0.35rem;
  width: 8px;
  height: 8px;
  background: var(--color-sage);
  border-radius: 50%;
}

@media (max-width: 47.9375rem) {
  .float-block:nth-child(odd),
  .float-block:nth-child(even) {
    transform: none;
    margin-left: 0;
    margin-right: 0;
  }

  .float-block .product-card {
    transform: none;
  }

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

  .stagger-text {
    transform: none;
    max-width: none;
    margin-left: 0;
  }

  .angled-panel-offset {
    margin-left: 0;
  }

  .contact-form-wrap {
    transform: none;
  }

  .page-hero {
    clip-path: none;
    padding-bottom: var(--space-2xl);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

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

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

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

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

  .footer-links {
    width: 100%;
    justify-content: flex-start;
  }

  .stat {
    flex: 1 1 100%;
  }

  .testimonial {
    flex: 0 0 92%;
  }

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

  .legal-page {
    padding-top: calc(var(--header-height) + var(--space-xl));
  }
}

@media (max-width: 20rem) {
  :root {
    --space-xl: 2rem;
    --space-2xl: 2.75rem;
    --header-height: 3rem;
  }

  html {
    font-size: 93.75%;
  }

  body {
    font-size: 0.82rem;
  }

  .container {
    width: 94%;
  }

  .site-header {
    top: var(--space-sm);
    width: 96%;
  }

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

  .logo {
    font-size: 0.58rem;
  }

  .burger-line {
    width: 1.15rem;
  }

  .hero {
    min-height: 100svh;
    padding-top: calc(var(--header-height) + var(--space-xl));
    padding-bottom: var(--space-xl);
  }

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

  .hero-tag {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }

  .btn {
    font-size: 0.72rem;
    padding: var(--space-sm);
    min-height: 2.35rem;
  }

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

  .section-label {
    font-size: 0.62rem;
  }

  .card,
  .angled-panel,
  .cta-band,
  .contact-form-wrap,
  .thank-card {
    padding: var(--space-md);
  }

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

  .page-hero h1 {
    font-size: 1.3rem;
  }

  .product-card img {
    height: 9rem;
  }

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

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

  .error-page h1 {
    font-size: 3rem;
  }

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

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

@media (min-width: 20.0625rem) and (max-width: 29.9375rem) {
  .logo {
    max-width: 65%;
  }

  .hero-content {
    width: 94%;
  }
}

@media (min-width: 30rem) {
  .hero h1 {
    max-width: 16ch;
  }

  .hero p {
    max-width: 34ch;
  }

  .hero-actions {
    flex-direction: row;
    align-items: center;
  }

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

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

  .testimonial {
    flex: 0 0 70%;
  }

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

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

@media (min-width: 36rem) {
  .container {
    width: 90%;
  }

  .site-header {
    width: 92%;
  }

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

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

  .product-tilt-b {
    margin-top: var(--space-lg);
  }

  .testimonial {
    flex: 0 0 55%;
  }

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

  .thank-actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

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

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

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

  .burger {
    display: none;
  }

  .logo {
    font-size: 0.85rem;
  }

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

  .hero p {
    max-width: 36ch;
  }

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

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

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

  .product-tilt-a {
    transform: rotate(-2deg);
  }

  .product-tilt-b {
    transform: rotate(1.5deg);
    margin-top: var(--space-xl);
  }

  .product-tilt-c {
    transform: rotate(-1deg);
  }

  .angled-panel-offset {
    margin-left: 12%;
  }

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

  .contact-form-wrap {
    transform: rotate(0.5deg);
  }

  .testimonial {
    flex: 0 0 32%;
  }

  .page-hero {
    clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
  }

  .float-block:nth-child(odd) {
    transform: rotate(-1.5deg);
    margin-right: 8%;
  }

  .float-block:nth-child(even) {
    transform: rotate(1deg);
    margin-left: 10%;
  }

  .overlap-img {
    width: 75%;
    margin-left: auto;
  }

  .stagger-text {
    transform: translateX(-5%);
    max-width: 28rem;
  }
}

@media (min-width: 62rem) {
  .hero-content {
    width: 88%;
  }

  .site-header {
    max-width: 60rem;
  }

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

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

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

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

  .product-card img {
    height: 12rem;
  }
}

@media (min-width: 75rem) {
  .container {
    width: 88%;
  }

  .hero {
    min-height: 92vh;
  }

  .testimonial {
    flex: 0 0 30%;
  }

  .contact-visual {
    min-height: 16rem;
  }
}

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

  :root {
    --max-width: 76rem;
  }

  .site-header {
    max-width: 64rem;
  }
}

@media (hover: none) and (pointer: coarse) {
  .card:hover,
  .product-card:hover,
  .btn-primary:hover,
  .btn-dark: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;
  }

  .fade-in {
    opacity: 1;
    transform: none;
  }

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