:root {
  --color-dark: #454040;
  --color-mid: #605B51;
  --color-accent: #D8D365;
  --color-light: #E6F082;
  --color-bg: #f5f4f0;
  --color-surface: #ffffff;
  --color-text: #454040;
  --color-text-muted: #605B51;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --space-xs: 0.375rem;
  --space-sm: 0.75rem;
  --space-md: 1.25rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4.5rem;
  --radius-sm: 0.375rem;
  --radius-md: 0.75rem;
  --radius-lg: 1.25rem;
  --radius-pill: 3rem;
  --shadow-sm: 0 0.125rem 0.5rem rgba(69, 64, 64, 0.08);
  --shadow-md: 0 0.5rem 1.5rem rgba(69, 64, 64, 0.12);
  --shadow-lg: 0 1rem 2.5rem rgba(69, 64, 64, 0.16);
  --transition-fast: 0.2s ease;
  --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 72rem;
  --header-height: 3.5rem;
}

*,
*::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.875rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  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-dark);
}

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

h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.375rem, 3vw, 2rem); }
h3 { font-size: clamp(1.125rem, 2.5vw, 1.5rem); }
h4 { font-size: 1rem; }

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

ul, ol { padding-left: var(--space-md); margin-bottom: var(--space-sm); }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(0.75rem, 3vw, 1.25rem);
}

.main-header {
  position: sticky;
  top: 0;
  z-index: 203;
  background: var(--color-surface);
  border-bottom: 0.0625rem solid rgba(69, 64, 64, 0.1);
  box-shadow: var(--shadow-sm);
  width: 100%;
}

.main-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: var(--space-md);
}

.main-header-logo {
  font-family: var(--font-display);
  font-size: clamp(0.4rem, 2.8vw, 1.0625rem);
  font-weight: 800;
  color: var(--color-dark);
  letter-spacing: -0.02em;
  flex: 1;

}

.main-header-logo:hover {
  color: var(--color-mid);
}

.main-header-nav {
  display: none;
  align-items: center;
  gap: var(--space-lg);
  margin-left: auto;
}

.main-header-nav a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text-muted);
  padding: var(--space-xs) 0;
  border-bottom: 0.125rem solid transparent;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

.main-header-nav a:hover {
  color: var(--color-dark);
  border-bottom-color: var(--color-accent);
}

.main-header-burger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  background: none;
  border: 0.0625rem solid rgba(69, 64, 64, 0.15);
  border-radius: var(--radius-sm);
  cursor: pointer;
  margin-left: auto;
  flex-shrink: 0;
  position: relative;
  z-index: 202;
}

.main-header-burger-icon {
  font-size: 1rem;
  color: var(--color-dark);
  line-height: 1;
  pointer-events: none;
}

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

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

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

.main-header-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 201;
  background: var(--color-dark);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--space-sm);
  padding: calc(var(--header-height) + var(--space-lg)) var(--space-lg) var(--space-lg);
  overflow-y: auto;
}

.main-header-drawer.is-open {
  display: flex;
}

.main-header-drawer a {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-accent);
  padding: var(--space-sm) var(--space-md);
  width: 100%;
  max-width: 16rem;
  text-align: center;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.main-header-drawer a:hover {
  background: rgba(216, 211, 101, 0.12);
  color: var(--color-light);
}

.main-header-scrim {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(69, 64, 64, 0.4);
}

.main-header-scrim.is-open {
  display: block;
}


.hero-section {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-dark);
}

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

.hero-content {
  position: relative;
  z-index: 2;
  padding: var(--space-2xl) var(--space-md);
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.hero-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-light);
  background: rgba(230, 240, 130, 0.12);
  border: 0.0625rem solid rgba(230, 240, 130, 0.3);
  border-radius: var(--radius-pill);
  padding: var(--space-xs) var(--space-sm);
  margin-bottom: var(--space-md);
  animation: fadeSlideUp 0.8s ease forwards;
}

.hero-title {
  color: var(--color-surface);
  max-width: 20ch;
  margin-bottom: var(--space-md);
  animation: fadeSlideUp 0.8s 0.15s ease forwards;
  opacity: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8125rem;
  max-width: 38ch;
  margin-bottom: var(--space-lg);
  animation: fadeSlideUp 0.8s 0.3s ease forwards;
  opacity: 0;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
  max-width: 100%;
  text-align: center;
}

.btn:hover {
  transform: translateY(-0.125rem);
}

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

.btn-primary:hover {
  background: var(--color-light);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--color-surface);
  border: 0.0625rem solid rgba(255, 255, 255, 0.4);
}

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

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

.btn-dark:hover {
  background: var(--color-mid);
  color: var(--color-light);
}

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

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

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

.section-intro {
  color: var(--color-text-muted);
  font-size: 0.8125rem;
  max-width: 50ch;
  margin-bottom: var(--space-lg);
}

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

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

.grid-two {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

@media (min-width: 48rem) {
  .grid-two {
    grid-template-columns: 1fr 1fr;
  }
}

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

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

.feature-icon {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-accent), var(--color-light));
  border-radius: var(--radius-md);
  color: var(--color-dark);
  font-size: 0.875rem;
  margin-bottom: var(--space-sm);
}

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

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

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

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

.stat-item {
  flex: 1;
  min-width: 7rem;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.6875rem;
  color: var(--color-text-muted);
  margin-top: var(--space-xs);
}

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

.image-frame img {
  width: 100%;
  object-fit: cover;
}

.testimonial-slider {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.testimonial-card {
  background: var(--color-surface);
  border-left: 0.25rem solid var(--color-accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
}

.testimonial-text {
  font-size: 0.8125rem;
  font-style: italic;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.testimonial-author {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-dark);
}

.cta-band {
  background: linear-gradient(135deg, var(--color-dark), var(--color-mid));
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  color: var(--color-surface);
  text-align: center;
}

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

.cta-band p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8125rem;
  margin-bottom: var(--space-md);
}

.page-hero {
  background: linear-gradient(160deg, var(--color-dark) 0%, var(--color-mid) 100%);
  padding: var(--space-xl) var(--space-md);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -3rem;
  right: -3rem;
  width: 12rem;
  height: 12rem;
  background: var(--color-accent);
  opacity: 0.15;
  border-radius: 50%;
  transform: rotate(25deg);
}

.page-hero h1 {
  color: var(--color-surface);
  position: relative;
  z-index: 1;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8125rem;
  max-width: 45ch;
  position: relative;
  z-index: 1;
}

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

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

.asym-block:nth-child(odd) {
  transform: rotate(-1deg);
  margin-right: 5%;
}

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

.asym-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  position: relative;
}

.asym-card--offset {
  margin-top: -2rem;
  z-index: 2;
}

.asym-image-wrap {
  position: relative;
  z-index: 1;
}

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

.angled-section {
  background: var(--color-accent);
  padding: var(--space-xl) var(--space-md);
  transform: skewY(-2deg);
  margin: var(--space-xl) 0;
}

.angled-section-inner {
  transform: skewY(2deg);
  max-width: var(--max-width);
  margin: 0 auto;
}

.angled-section a {
  color: var(--color-dark);
  font-weight: 600;
  text-decoration: underline;
}

.angled-section a:hover {
  color: var(--color-mid);
}

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

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

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

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

.product-card:hover {
  transform: translateY(-0.375rem) rotate(-0.5deg);
  box-shadow: var(--shadow-lg);
}

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

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

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

.product-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-dark);
  margin: var(--space-sm) 0;
}

.product-features {
  list-style: none;
  padding: 0;
  margin: var(--space-sm) 0 var(--space-md);
  flex: 1;
}

.product-features li {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  padding: var(--space-xs) 0;
  border-bottom: 0.0625rem solid rgba(96, 91, 81, 0.1);
}

.product-features li i {
  color: var(--color-accent);
  margin-right: var(--space-xs);
  font-size: 0.625rem;
}

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

@media (min-width: 48rem) {
  .contact-zone {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

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

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.info-card {
  background: var(--color-dark);
  color: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  transform: rotate(0.75deg);
}

.info-card:nth-child(2) {
  transform: rotate(-0.75deg);
  background: var(--color-mid);
}

.info-card h3 {
  color: var(--color-light);
  font-size: 0.875rem;
  margin-bottom: var(--space-xs);
}

.info-card p,
.info-card a {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.info-card i {
  color: var(--color-accent);
  margin-right: var(--space-xs);
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-sm);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  border: 0.0625rem solid rgba(96, 91, 81, 0.2);
  border-radius: var(--radius-sm);
  background: var(--color-bg);
  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 0.1875rem rgba(216, 211, 101, 0.25);
}

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

.form-check {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 0.6875rem;
  color: var(--color-text-muted);
}

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

.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;
  display: block;
}

.site-footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.6);
  padding: var(--space-lg) 0 var(--space-md);
  font-size: 0.6875rem;
}

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

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-accent);
  font-size: 0.8125rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm) var(--space-md);
  list-style: none;
  padding: 0;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.6875rem;
}

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

.footer-copy {
  width: 100%;
  text-align: center;
  padding-top: var(--space-sm);
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.1);
  margin-top: var(--space-sm);
}

.cookie-banner {
  position: fixed;
  bottom: var(--space-md);
  left: var(--space-md);
  right: var(--space-md);
  max-width: 28rem;
  background: var(--color-dark);
  color: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-lg);
  z-index: 300;
  transform: translateY(150%);
  transition: transform var(--transition-base);
}

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

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

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

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

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

.legal-content {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  max-width: 50rem;
  margin: 0 auto;
}

.legal-content h1 {
  margin-bottom: var(--space-md);
}

.legal-content h2 {
  font-size: 1.125rem;
  margin: var(--space-lg) 0 var(--space-sm);
}

.legal-content h3 {
  font-size: 0.9375rem;
  margin: var(--space-md) 0 var(--space-xs);
}

.legal-content p,
.legal-content li {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.thankyou-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--color-dark), var(--color-mid));
  text-align: center;
  padding: var(--space-lg);
}

.thankyou-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  max-width: 28rem;
  box-shadow: var(--shadow-lg);
  animation: fadeSlideUp 0.8s ease forwards;
}

.thankyou-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, var(--color-accent), var(--color-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  font-size: 1.5rem;
  color: var(--color-dark);
}

.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg);
  padding: var(--space-lg);
}

.error-content {
  text-align: center;
  max-width: 24rem;
}

.error-code {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

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

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-top: var(--space-sm);
}

.badge {
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: var(--space-xs) var(--space-sm);
  background: rgba(216, 211, 101, 0.2);
  color: var(--color-mid);
  border-radius: var(--radius-pill);
}

.compliance-note {
  font-size: 0.625rem;
  color: var(--color-text-muted);
  margin-top: var(--space-md);
  line-height: 1.5;
  max-width: 55ch;
}

.section-surface {
  background: var(--color-surface);
}

.form-intro {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.info-card-accent {
  transform: rotate(0.5deg);
  background: var(--color-accent);
  color: var(--color-dark);
}

.info-card-accent h3 {
  color: var(--color-dark);
}

.info-card-accent i {
  color: var(--color-dark);
}

.cookie-decline {
  color: var(--color-surface);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-stack {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  margin-top: var(--space-md);
}

.thankyou-date {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

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

.asym-card-w72 {
  max-width: 72%;
}

.asym-card-w65 {
  max-width: 65%;
}

.asym-card-w55 {
  max-width: 55%;
  margin-top: -3rem;
}

.asym-card-w50 {
  max-width: 50%;
  margin-left: auto;
  margin-top: -2.5rem;
}

.asym-card-mr10 {
  margin-right: 10%;
}

.asym-card-ml8 {
  margin-left: 8%;
  transform: rotate(0.75deg);
}

.asym-image-w70 {
  max-width: 70%;
  margin-left: auto;
}

.asym-image-w65 {
  max-width: 65%;
}

.asym-image-w85 {
  max-width: 85%;
}

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

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

.tilt-slight-left {
  transform: rotate(-1.5deg);
}

.asym-card-mt {
  margin-top: 2rem;
  transform: rotate(1deg);
}

.stats-row-compact {
  padding-top: var(--space-md);
}

@media (max-width: 47.9375rem) {
  :root {
    --header-height: 3.25rem;
    --space-xl: 2.25rem;
    --space-2xl: 3rem;
  }

  .main-header-row {
    gap: var(--space-sm);
  }

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

  .asym-card,
  .asym-card-w72,
  .asym-card-w65,
  .asym-card-w55,
  .asym-card-w50,
  .asym-card-mr10,
  .asym-card-ml8,
  .asym-card-mt,
  .asym-image-w70,
  .asym-image-w65,
  .asym-image-w85 {
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-top: var(--space-md) !important;
    transform: none !important;
  }

  .asym-card--offset {
    margin-top: var(--space-md) !important;
  }

  .asym-image-wrap {
    max-width: 100% !important;
    margin-left: 0 !important;
  }

  .image-frame,
  .tilt-left,
  .tilt-right,
  .tilt-slight-left {
    max-width: 100% !important;
    transform: none !important;
  }

  .contact-form-wrap,
  .info-card,
  .info-card-accent {
    transform: none !important;
  }

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

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

  .hero-content {
    padding: var(--space-xl) clamp(0.75rem, 3vw, 1.25rem);
  }

  .hero-title {
    max-width: 100%;
  }

  .hero-desc {
    max-width: 100%;
  }

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

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

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

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

  .angled-section {
    padding: var(--space-lg) clamp(0.75rem, 3vw, 1.25rem);
    margin: var(--space-lg) 0;
  }

  .page-hero {
    padding: var(--space-lg) clamp(0.75rem, 3vw, 1.25rem);
  }

  .page-hero::after {
    width: 8rem;
    height: 8rem;
    bottom: -2rem;
    right: -2rem;
  }

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

  .stat-item {
    min-width: calc(50% - var(--space-sm));
    flex: 1 1 calc(50% - var(--space-sm));
  }

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

  .stat-number {
    font-size: 1.5rem;
  }

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

  .footer-links {
    width: 100%;
    gap: var(--space-xs) var(--space-sm);
  }

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

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

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

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

  .thankyou-card {
    padding: var(--space-lg);
    width: 100%;
  }

  .thankyou-card .btn {
    width: 100%;
  }

  .error-code {
    font-size: 3.5rem;
  }

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

  .product-body .btn {
    width: 100%;
  }

  .cta-band .btn {
    width: 100%;
  }

  .form-check {
    font-size: 0.625rem;
  }

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

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

@media (max-width: 20rem) {
  :root {
    --header-height: 3rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
  }

  html {
    font-size: 93.75%;
  }

  body {
    font-size: 0.8125rem;
  }

  .main-header-logo {
    font-size: 0.625rem;
  }

  .main-header-burger {
    width: 2rem;
    height: 2rem;
  }

  .main-header-burger-icon {
    font-size: 0.875rem;
  }

  .main-header-drawer a {
    font-size: 1rem;
  }

  .hero-tag {
    font-size: 0.5625rem;
    letter-spacing: 0.1em;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

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

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

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

  .badge {
    font-size: 0.5625rem;
  }

  .footer-brand {
    font-size: 0.75rem;
  }

  .footer-links a {
    font-size: 0.625rem;
  }
}

@media (min-width: 30rem) and (max-width: 47.9375rem) {
  .hero-actions {
    flex-direction: row;
  }

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

  .stat-item {
    min-width: 6rem;
    flex: 1 1 40%;
  }
}

@media (min-width: 48rem) {
  .hero-content {
    padding: var(--space-2xl) var(--space-md);
  }

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

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

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

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

@media (min-width: 56rem) {
  .main-header-nav {
    display: flex;
    gap: var(--space-sm);
  }

  .main-header-nav a {
    font-size: 0.75rem;
  }

  .main-header-burger {
    display: none;
  }

  .main-header-drawer,
  .main-header-scrim {
    display: none !important;
  }
}

@media (min-width: 56rem) and (max-width: 61.9375rem) {
  .main-header-logo {
    font-size: 0.8125rem;
  }
}

@media (min-width: 62rem) {
  .main-header-nav {
    gap: var(--space-lg);
  }

  .main-header-nav a {
    font-size: 0.8125rem;
  }

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

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

@media (min-width: 75rem) {
  .container {
    padding: 0 var(--space-lg);
  }

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

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

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

  h1 {
    font-size: 2.875rem;
  }

  .hero-desc {
    font-size: 0.875rem;
  }
}

@media (hover: none) {
  .btn:hover {
    transform: none;
  }

  .feature-card:hover {
    transform: none;
    box-shadow: var(--shadow-sm);
  }

  .product-card:hover {
    transform: none;
    box-shadow: var(--shadow-sm);
  }
}

