:root {
  --color-deep: #3E3232;
  --color-mid: #503C3C;
  --color-soft: #7E6363;
  --color-accent: #A87C7C;
  --color-light: #F5F0EE;
  --color-white: #FFFCFA;
  --font-display: "Bricolage Grotesque", sans-serif;
  --font-body: "Figtree", 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 0.15rem 0.5rem rgba(62, 50, 50, 0.12);
  --shadow-md: 0 0.35rem 1.2rem rgba(62, 50, 50, 0.18);
  --shadow-lg: 0 0.6rem 2rem rgba(62, 50, 50, 0.22);
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  --text-xs: 0.72rem;
  --text-sm: 0.82rem;
  --text-base: 0.92rem;
  --text-md: 1.05rem;
  --text-lg: 1.35rem;
  --text-xl: 1.85rem;
  --text-2xl: 2.35rem;
  --header-height: 3.5rem;
}

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

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

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.55;
  color: var(--color-deep);
  background: var(--color-light);
  overflow-x: hidden;
  min-width: 20rem;
}

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(var(--text-xl), 4vw, var(--text-2xl)); overflow-wrap: break-word; }
h2 { font-size: clamp(var(--text-lg), 3vw, var(--text-xl)); overflow-wrap: break-word; }
h3 { font-size: var(--text-md); overflow-wrap: break-word; }

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

ul { list-style: none; }

.container {
  width: min(92%, 68rem);
  max-width: 100%;
  margin-inline: auto;
  padding-inline: var(--space-sm);
}

.shell {
  width: min(94%, 72rem);
  max-width: 100%;
  margin-inline: auto;
  padding-inline: var(--space-sm);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-lg);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

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

.btn-primary:hover {
  background: var(--color-deep);
  transform: translateY(-0.1rem);
  box-shadow: var(--shadow-md);
  color: var(--color-white);
}

.btn-outline {
  background: transparent;
  color: var(--color-mid);
  border: 0.12rem solid var(--color-soft);
}

.btn-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.site-header {
  position: relative;
  width: 100%;
  background: var(--color-white);
  border-bottom: 0.06rem solid rgba(126, 99, 99, 0.25);
  box-shadow: var(--shadow-sm);
  z-index: 100;
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  width: min(94%, 72rem);
  margin-inline: auto;
  min-height: var(--header-height);
  padding: var(--space-sm) var(--space-md);
}

.logo {
  font-family: var(--font-display);
  font-size: var(--text-md);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-deep);
  flex-shrink: 0;
}

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

.main-nav {
  display: flex;
  align-items: center;
}

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

.nav-menu a {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-deep);
}

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

.nav-toggle {
  display: none;
  width: 2.25rem;
  height: 2.25rem;
  border: 0.06rem solid rgba(126, 99, 99, 0.35);
  background: var(--color-white);
  color: var(--color-deep);
  border-radius: var(--radius-sm);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  line-height: 1;
  transition: background var(--transition-fast), border-color var(--transition-fast);
  z-index: 999999999999999999999;
}

.nav-toggle .nav-icon-open,
.nav-toggle .nav-icon-close {
  pointer-events: none;
}

.nav-toggle:hover {
  background: var(--color-light);
  border-color: var(--color-accent);
}

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

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

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

body.nav-open {
  overflow: hidden;
}

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

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

.hero-content {
  position: relative;
  z-index: 2;
  width: min(92%, 68rem);
  margin-inline: auto;
  color: var(--color-white);
}

.hero-content h1 {
  color: var(--color-white);
  max-width: min(14ch, 100%);
  margin-bottom: var(--space-md);
  animation: fadeUp 0.9s ease forwards;
  overflow-wrap: break-word;
}

.hero-content p {
  max-width: 36ch;
  font-size: var(--text-sm);
  opacity: 0.92;
  margin-bottom: var(--space-lg);
  animation: fadeUp 0.9s 0.15s ease forwards;
  opacity: 0;
}

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

.hero .btn-outline {
  border-color: rgba(255, 252, 250, 0.5);
  color: var(--color-white);
}

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

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

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

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

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

.section-title p {
  font-size: var(--text-sm);
  color: var(--color-soft);
  max-width: 40ch;
}

.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: var(--space-md);
}

.card {
  background: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  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: var(--text-lg);
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

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

.card p {
  font-size: var(--text-sm);
  color: var(--color-soft);
  margin-bottom: 0;
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  justify-content: space-between;
}

.metric {
  flex: 1 1 8rem;
  text-align: center;
  padding: var(--space-md);
}

.metric strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-accent);
}

.metric span {
  font-size: var(--text-xs);
  color: var(--color-soft);
}

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

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

.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: var(--space-md);
}

.quote {
  background: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  border-left: 0.2rem solid var(--color-accent);
  font-size: var(--text-sm);
}

.quote cite {
  display: block;
  margin-top: var(--space-sm);
  font-style: normal;
  font-weight: 600;
  font-size: var(--text-xs);
  color: var(--color-mid);
}

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

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

.cta-band p {
  font-size: var(--text-sm);
  margin-bottom: var(--space-lg);
  opacity: 0.9;
}

.page-hero {
  padding: var(--space-2xl) var(--space-md) var(--space-xl);
  background: var(--color-deep);
  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: var(--text-sm);
  max-width: 42ch;
  opacity: 0.88;
}

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

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

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

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

.asym-inner {
  background: var(--color-white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.asym-float {
  position: absolute;
  width: 40%;
  max-width: 14rem;
  z-index: 2;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.asym-block:nth-child(odd) .asym-float {
  right: -2%;
  top: -12%;
  transform: rotate(4deg);
}

.asym-block:nth-child(even) .asym-float {
  left: -3%;
  bottom: -10%;
  transform: rotate(-3deg);
}

.product-stack {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.product-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-lg);
  align-items: center;
  background: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.product-card:nth-child(2) {
  margin-left: 6%;
}

.product-card:nth-child(3) {
  margin-right: 5%;
}

.product-price {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-accent);
  margin: var(--space-sm) 0;
}

.product-card ul {
  font-size: var(--text-sm);
  color: var(--color-soft);
}

.product-card ul li {
  padding: var(--space-xs) 0;
  padding-left: var(--space-md);
  position: relative;
}

.product-card ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-size: var(--text-xs);
}

.product-card .btn {
  margin-top: var(--space-md);
  grid-column: 1 / -1;
  justify-self: start;
}

.contact-zone {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-panel {
  background: var(--color-white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transform: rotate(-0.8deg);
}

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

.info-tile {
  background: var(--color-mid);
  color: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  transform: rotate(1.2deg);
  font-size: var(--text-sm);
}

.info-tile:nth-child(2) {
  background: var(--color-soft);
  transform: rotate(-1deg);
  margin-left: var(--space-lg);
}

.info-tile h3 {
  color: var(--color-white);
  font-size: var(--text-sm);
  margin-bottom: var(--space-xs);
}

.info-tile p {
  margin-bottom: 0;
  opacity: 0.92;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-sm);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  border: 0.08rem solid rgba(126, 99, 99, 0.35);
  border-radius: var(--radius-sm);
  background: var(--color-light);
  transition: border-color var(--transition-fast);
}

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

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

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: var(--text-xs);
}

.checkbox-row input {
  margin-top: 0.15rem;
}

.map-frame {
  width: 100%;
  height: 12rem;
  border: none;
  border-radius: var(--radius-md);
  margin-top: var(--space-md);
}

.site-footer {
  padding: var(--space-lg) var(--space-md);
  background: var(--color-deep);
  color: rgba(255, 252, 250, 0.75);
  font-size: var(--text-xs);
}

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

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

.footer-links a {
  color: rgba(255, 252, 250, 0.8);
}

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

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

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

.legal-page h2 {
  font-size: var(--text-md);
  margin: var(--space-lg) 0 var(--space-sm);
}

.legal-page p,
.legal-page li {
  font-size: var(--text-sm);
  color: var(--color-mid);
}

.legal-page ul {
  list-style: disc;
  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-2xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 28rem;
  animation: fadeUp 0.8s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

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

.error-page h1 {
  font-size: clamp(2.5rem, 12vw, 4rem);
  color: var(--color-accent);
  line-height: 1;
}

.cookie-banner {
  position: fixed;
  bottom: var(--space-md);
  left: var(--space-md);
  right: var(--space-md);
  z-index: 300;
  background: var(--color-white);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  transform: translateY(150%);
  transition: transform var(--transition-smooth);
  border: 0.06rem solid rgba(168, 124, 124, 0.3);
}

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

.cookie-banner p {
  font-size: var(--text-xs);
  margin: 0;
  flex: 1 1 12rem;
}

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

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

.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-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
}

.step p {
  font-size: var(--text-sm);
  margin: 0;
}

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

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

.note-link {
  margin-top: var(--space-lg);
  font-size: var(--text-sm);
}

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

.thank-card .btn-outline {
  display: inline-flex;
}

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

@media (max-width: 1200px) {
  .header-wrap {
    width: min(96%, 72rem);
  }

  .hero-content {
    width: min(94%, 68rem);
  }
}

@media (max-width: 992px) {
  .split {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .split img {
    order: -1;
    max-height: 20rem;
    object-fit: cover;
    width: 100%;
  }

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

  .product-card {
    grid-template-columns: 1fr;
  }

  .grid-cards {
    grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  }

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

  .metric {
    flex: 1 1 calc(50% - var(--space-md));
    min-width: 7rem;
  }
}

@media (max-width: 768px) {
  :root {
    --space-xl: 2rem;
    --space-2xl: 3rem;
  }

  .container,
  .shell {
    width: 100%;
    padding-inline: var(--space-md);
  }

  .header-wrap {
    width: 100%;
    padding-inline: var(--space-md);
  }

  .split,
  .contact-zone,
  .product-card {
    grid-template-columns: 1fr;
  }

  .product-card:nth-child(2),
  .product-card:nth-child(3) {
    margin-left: 0;
    margin-right: 0;
  }

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

  .asym-float {
    position: relative;
    width: 100%;
    max-width: none;
    margin-bottom: var(--space-md);
    transform: none !important;
    right: auto !important;
    left: auto !important;
    top: auto !important;
    bottom: auto !important;
  }

  .asym-block {
    margin-bottom: var(--space-lg);
  }

  .info-tile:nth-child(2) {
    margin-left: 0;
  }

  .contact-panel {
    transform: none;
    padding: var(--space-lg);
  }

  .hero {
    min-height: 75vh;
    padding: var(--space-xl) var(--space-md);
  }

  .hero-content {
    width: 100%;
  }

  .hero-content p {
    max-width: 100%;
  }

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

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

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

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

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

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

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

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

  .footer-links {
    width: 100%;
  }

  .nav-toggle {
    display: flex;
    min-width: 2.75rem;
    min-height: 2.75rem;
  }

  .main-nav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 250;
    width: 100%;
    height: 100%;
    max-height: none;
    margin: 0;
    padding: var(--space-2xl) var(--space-md);
    background: var(--color-white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
  }

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

  .nav-menu {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    width: 100%;
    max-width: 20rem;
    padding: 0;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    min-height: 3rem;
    font-size: var(--text-md);
    border-radius: var(--radius-md);
    text-align: center;
  }

  .nav-menu a:hover {
    background: var(--color-light);
  }

  .site-header {
    z-index: 300;
  }

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

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

  .map-frame {
    height: 14rem;
  }

  .product-card .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  :root {
    --space-lg: 1.35rem;
    --space-xl: 1.75rem;
    --space-2xl: 2.5rem;
    --header-height: 3.25rem;
  }

  .nav-menu {
    gap: 0;
  }

  .nav-menu a {
    font-size: var(--text-xs);
    padding: var(--space-sm);
  }

  .hero {
    min-height: 70vh;
  }

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

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

  .metrics {
    flex-direction: column;
  }

  .metric {
    flex: 1 1 100%;
    width: 100%;
  }

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

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

  .product-price {
    font-size: var(--text-lg);
  }

  .cookie-banner {
    left: var(--space-sm);
    right: var(--space-sm);
    bottom: var(--space-sm);
    flex-direction: column;
    align-items: stretch;
  }

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

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

  .error-page .btn,
  .thank-card .btn {
    width: 100%;
    justify-content: center;
  }

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

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

@media (max-width: 480px) {
  :root {
    --text-2xl: 2rem;
    --text-xl: 1.65rem;
    --text-lg: 1.2rem;
    --space-2xl: 2.25rem;
  }

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

  .logo {
    font-size: var(--text-sm);
    max-width: 55%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .container,
  .shell {
    padding-inline: var(--space-sm);
  }

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

  .asym-wrap {
    padding: var(--space-lg) var(--space-sm);
  }

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

  .page-hero {
    padding: var(--space-lg) var(--space-sm);
  }

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

  .thank-you-page,
  .error-page {
    padding: var(--space-lg) var(--space-sm);
  }

  .site-footer {
    padding: var(--space-md) var(--space-sm);
  }

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

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

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

  .map-frame {
    height: 11rem;
  }

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

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

  .step-num {
    width: 1.75rem;
    height: 1.75rem;
    font-size: var(--text-xs);
  }
}

@media (max-width: 375px) {
  :root {
    --space-md: 0.85rem;
    --space-lg: 1.15rem;
    --space-xl: 1.5rem;
    --space-2xl: 2rem;
    --header-height: 3rem;
  }

  html {
    font-size: 97%;
  }

  .hero-content h1 {
    max-width: 100%;
  }

  .section-title p {
    max-width: 100%;
  }

  .page-hero p {
    max-width: 100%;
  }

  .info-tile {
    padding: var(--space-md);
    transform: none;
  }

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

  .cta-band h2 {
    font-size: var(--text-md);
  }

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

@media (max-width: 320px) {
  :root {
    --text-2xl: 1.75rem;
    --text-xl: 1.45rem;
    --text-md: 0.95rem;
    --text-sm: 0.78rem;
    --text-xs: 0.68rem;
    --text-base: 0.85rem;
    --space-xs: 0.28rem;
    --space-sm: 0.5rem;
    --space-md: 0.75rem;
    --space-lg: 1rem;
    --space-xl: 1.35rem;
    --space-2xl: 1.75rem;
    --header-height: 2.85rem;
    --radius-lg: 1rem;
  }

  html {
    font-size: 93%;
  }

  body {
    min-width: 18rem;
  }

  .header-wrap {
    padding: var(--space-xs);
    min-height: var(--header-height);
  }

  .logo {
    font-size: var(--text-xs);
    max-width: 50%;
  }

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

  .container,
  .shell {
    padding-inline: 0.65rem;
  }

  .hero {
    min-height: auto;
    padding: var(--space-lg) 0.65rem;
  }

  .hero-content h1 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-sm);
  }

  .hero-content p {
    font-size: var(--text-xs);
    margin-bottom: var(--space-md);
  }

  .hero-actions {
    gap: var(--space-xs);
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: var(--space-sm);
  }

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

  .asym-wrap {
    padding: var(--space-lg) 0.65rem;
  }

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

  .page-hero {
    padding: var(--space-lg) 0.65rem;
    clip-path: none;
  }

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

  .card i {
    font-size: var(--text-md);
  }

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

  .product-price {
    font-size: var(--text-md);
  }

  .metric strong {
    font-size: var(--text-lg);
  }

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

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

  .cookie-banner {
    left: 0.4rem;
    right: 0.4rem;
    bottom: 0.4rem;
    padding: var(--space-sm);
    border-radius: var(--radius-sm);
  }

  .cookie-banner p {
    font-size: 0.65rem;
    flex: 1 1 100%;
  }

  .thank-card {
    padding: var(--space-lg) var(--space-sm);
    border-radius: var(--radius-md);
  }

  .thank-card i {
    font-size: 2rem;
  }

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

  .error-page h2 {
    font-size: var(--text-md);
  }

  .legal-page h1 {
    font-size: var(--text-lg);
  }

  .legal-page h2 {
    font-size: var(--text-sm);
  }

  .legal-page p,
  .legal-page li {
    font-size: var(--text-xs);
  }

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

  .map-frame {
    height: 9rem;
    margin-top: var(--space-sm);
  }

  .form-group input,
  .form-group textarea {
    font-size: var(--text-xs);
    padding: var(--space-xs) var(--space-sm);
  }

  .checkbox-row {
    font-size: 0.62rem;
    gap: var(--space-xs);
  }

  .nav-menu a {
    padding: var(--space-xs) var(--space-sm);
    min-height: 2.5rem;
    font-size: 0.7rem;
  }

  .site-footer {
    padding: var(--space-sm) 0.65rem;
    font-size: 0.65rem;
  }

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

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

  .quote-grid {
    gap: var(--space-sm);
  }

  .process-steps {
    gap: var(--space-sm);
  }

  .info-tile p {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

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

@media (min-width: 769px) {
  .main-nav {
    display: flex !important;
  }
}

@media (min-width: 993px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }

  .contact-zone {
    grid-template-columns: 1.1fr 0.9fr;
  }

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