:root {
  --color-deep: #142850;
  --color-mid: #27496D;
  --color-teal: #0C7B93;
  --color-accent: #00A8CC;
  --color-light: #E8F4F8;
  --color-white: #FFFFFF;
  --color-text: #1A2B3C;
  --color-muted: #5A7080;
  --font-display: 'Syne', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --space-xs: 0.375rem;
  --space-sm: 0.625rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2.25rem;
  --space-2xl: 3.5rem;
  --radius-sm: 0.375rem;
  --radius-md: 0.75rem;
  --radius-lg: 1.25rem;
  --radius-pill: 3rem;
  --shadow-sm: 0 0.125rem 0.5rem rgba(20, 40, 80, 0.08);
  --shadow-md: 0 0.5rem 1.5rem rgba(20, 40, 80, 0.12);
  --shadow-lg: 0 1rem 2.5rem rgba(20, 40, 80, 0.18);
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  --max-width: 72rem;
  --header-height: 3.25rem;
  --shell-gutter: clamp(0.75rem, 3vw, 1.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.55;
  color: var(--color-text);
  background: var(--color-light);
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

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

a {
  color: var(--color-teal);
  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.75rem); }
h2 { font-size: clamp(1.35rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }

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

ul { list-style: none; }

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

.site-top {
  position: relative;
  z-index: 300;
  background: var(--color-white);
  border-bottom: 1px solid rgba(20, 40, 80, 0.1);
  box-shadow: var(--shadow-sm);
}

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

.text-logo {
  font-family: var(--font-display);
  font-size: clamp(0.62rem, 2.5vw, 0.85rem);
  font-weight: 800;
  color: var(--color-deep);
  letter-spacing: -0.02em;
  flex-shrink: 1;
  min-width: 0;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

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

.menu-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(20, 40, 80, 0.12);
  background: var(--color-white);
  color: var(--color-deep);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 1.1rem;
  transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
  position: relative;
  z-index: 201;
}

.menu-trigger:hover {
  background: var(--color-light);
  border-color: var(--color-teal);
}

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

.menu-trigger.is-active {
  background: var(--color-deep);
  border-color: var(--color-deep);
  color: var(--color-white);
}

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

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

.top-menu ul {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.top-menu a {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-deep);
  padding: var(--space-xs) 0;
  transition: color var(--transition-fast);
}

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

@media (max-width: 47.99rem) {
  .menu-trigger {
    display: flex;
  }

  .top-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    background: linear-gradient(165deg, var(--color-deep) 0%, var(--color-mid) 55%, var(--color-teal) 100%);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: calc(var(--header-height) + var(--space-lg)) var(--shell-gutter) var(--space-2xl);
    overflow-y: auto;
  }

  .top-menu.is-open {
    display: flex;
  }

  .top-menu ul {
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
    max-width: 18rem;
  }

  .top-menu li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
  }

  .top-menu li:last-child {
    border-bottom: none;
  }

  .top-menu a {
    display: block;
    padding: var(--space-md) var(--space-sm);
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-white);
  }

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

@media (min-width: 48rem) {
  .menu-trigger {
    display: none;
  }

  .top-menu {
    display: block;
  }
}

.hero-canvas-wrap {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(160deg, var(--color-deep) 0%, var(--color-mid) 45%, var(--color-teal) 100%);
  overflow: hidden;
}

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

.hero-fallback {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 40%, rgba(0, 168, 204, 0.25) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 60%, rgba(12, 123, 147, 0.2) 0%, transparent 50%);
  animation: drift 12s ease-in-out infinite alternate;
}

@keyframes drift {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.05) translate(-2%, 1%); }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: var(--space-xl) var(--shell-gutter);
}

.hero-content h1 {
  color: var(--color-white);
  max-width: 18ch;
  margin-bottom: var(--space-md);
  animation: rise 0.8s ease forwards;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 42ch;
  font-size: clamp(0.8rem, 2.5vw, 0.9rem);
  animation: rise 0.8s 0.15s ease forwards;
  opacity: 0;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-lg);
  background: var(--color-accent);
  color: var(--color-deep);
  font-family: var(--font-display);
  font-size: clamp(0.72rem, 2vw, 0.8rem);
  font-weight: 700;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-spring), box-shadow var(--transition-fast);
  box-shadow: var(--shadow-md);
  text-align: center;
  max-width: 100%;
}

.btn-primary:hover {
  background: var(--color-white);
  transform: translateY(-2px);
  color: var(--color-deep);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-lg);
  background: transparent;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: clamp(0.72rem, 2vw, 0.8rem);
  font-weight: 700;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: border-color var(--transition-fast), background var(--transition-fast);
  text-align: center;
  max-width: 100%;
}

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

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

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

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

.section-intro {
  max-width: 38ch;
  color: var(--color-muted);
  font-size: 0.85rem;
}

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

.grid-duo > * {
  min-width: 0;
}

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

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

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

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

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

.feature-card h3 {
  font-size: 0.9rem;
  margin-bottom: var(--space-xs);
}

.feature-card p {
  font-size: 0.75rem;
  color: var(--color-muted);
  margin-bottom: 0;
}

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

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

.img-offset {
  transform: rotate(-2deg);
  margin-top: var(--space-lg);
}

.img-offset-alt {
  transform: rotate(2.5deg) translateX(-5%);
}

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

.route-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--color-white);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-accent);
  transition: transform var(--transition-smooth);
}

.route-item:hover {
  transform: translateX(0.5rem);
}

.route-item h3 {
  font-size: 0.95rem;
}

.route-item p {
  font-size: 0.75rem;
  color: var(--color-muted);
  margin-bottom: 0;
}

.route-meta {
  font-size: 0.7rem;
  color: var(--color-teal);
  font-weight: 600;
}

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

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

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

.quote-card {
  padding: var(--space-md);
  background: var(--color-white);
  border-radius: var(--radius-md);
  position: relative;
}

.quote-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--color-accent);
  opacity: 0.3;
  line-height: 1;
  position: absolute;
  top: var(--space-xs);
  left: var(--space-sm);
}

.quote-card p {
  font-size: 0.8rem;
  font-style: italic;
  padding-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.quote-author {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-deep);
}

.steps-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  counter-reset: step;
}

.step-block {
  text-align: center;
  padding: var(--space-md);
}

.step-block::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin: 0 auto var(--space-sm);
  background: var(--color-teal);
  color: var(--color-white);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
}

.step-block h3 {
  font-size: 0.85rem;
  margin-bottom: var(--space-xs);
}

.step-block p {
  font-size: 0.72rem;
  color: var(--color-muted);
  margin-bottom: 0;
}

.contact-zone {
  background: var(--color-deep);
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
}

.contact-zone::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 50%;
  height: 160%;
  background: var(--color-teal);
  transform: rotate(-12deg);
  opacity: 0.15;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  position: relative;
  z-index: 1;
}

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

.contact-info h2 {
  color: var(--color-white);
}

.contact-info p {
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
}

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

.form-panel {
  background: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transform: rotate(1deg);
  min-width: 0;
}

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

.form-group input,
.form-group textarea {
  padding: var(--space-sm);
  border: 1px solid rgba(20, 40, 80, 0.15);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.8rem;
  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(0, 168, 204, 0.15);
}

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

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 0.72rem;
  color: var(--color-muted);
}

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

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

.map-embed iframe {
  width: 100%;
  height: 12rem;
  border: 0;
}

.site-footer {
  padding: var(--space-lg) 0;
  background: var(--color-mid);
  color: rgba(255,255,255,0.7);
  font-size: 0.7rem;
}

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

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

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

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

.cookie-banner {
  position: fixed;
  bottom: var(--shell-gutter);
  left: var(--shell-gutter);
  right: var(--shell-gutter);
  z-index: 300;
  background: var(--color-white);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transform: translateY(120%);
  transition: transform var(--transition-smooth);
  max-width: 28rem;
  margin-inline: auto;
}

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

.cookie-banner p {
  font-size: 0.75rem;
  margin-bottom: 0;
  color: var(--color-muted);
}

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

.btn-small {
  padding: var(--space-xs) var(--space-md);
  font-size: 0.72rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  transition: background var(--transition-fast);
}

.btn-accept {
  background: var(--color-teal);
  color: var(--color-white);
}

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

.btn-decline {
  background: transparent;
  color: var(--color-muted);
  border: 1px solid rgba(20,40,80,0.15);
}

.page-hero {
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, var(--color-deep), var(--color-mid));
  color: var(--color-white);
  position: relative;
}

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

.page-hero p {
  color: rgba(255,255,255,0.8);
  max-width: 40ch;
  font-size: 0.85rem;
}

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

.asym-float {
  position: relative;
}

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

.asym-float .text-blob {
  position: relative;
  margin-top: -3rem;
  margin-right: 10%;
  padding: var(--space-lg);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transform: rotate(-1.5deg);
  z-index: 2;
}

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

.angled-band .shell {
  transform: skewY(2deg);
}

.angled-band h2,
.angled-band p {
  color: var(--color-white);
}

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

.overlap-stack > * {
  min-width: 0;
}

@media (min-width: 48rem) {
  .overlap-stack {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
  }

  .overlap-card {
    margin-top: -4rem;
    margin-left: -2rem;
  }
}

.overlap-card {
  padding: var(--space-lg);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transform: rotate(1deg);
}

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

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

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

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

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

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

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

.product-card p {
  font-size: 0.75rem;
  color: var(--color-muted);
  flex: 1;
}

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

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

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

.legal-page h3 {
  font-size: 0.95rem;
  margin: var(--space-lg) 0 var(--space-sm);
}

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

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

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

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

.thanks-inner {
  max-width: 32rem;
  animation: rise 0.6s ease forwards;
}

.thanks-inner i {
  font-size: 3rem;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
}

.error-wrap {
  min-height: 80vh;
  display: flex;
  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);
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  opacity: 0.3;
}

.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-white-section {
  background: var(--color-white);
}

.bg-gradient-section {
  background: linear-gradient(180deg, var(--color-light) 0%, var(--color-white) 100%);
}

.footer-inner .text-logo {
  color: var(--color-white);
}

.error-actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-lg);
}

.error-wrap .btn-outline {
  color: var(--color-deep);
  border-color: var(--color-deep);
}

.error-wrap .btn-outline:hover {
  background: var(--color-light);
  color: var(--color-deep);
}

.inner-header-space {
  padding-top: calc(var(--header-height) + var(--space-lg));
}

@media (max-width: 47.99rem) {
  .img-offset,
  .img-offset-alt,
  .form-panel,
  .overlap-card,
  .asym-float .text-blob {
    transform: none;
  }

  .img-offset-alt {
    margin-left: 0;
  }

  .asym-float .img-frame {
    width: 100%;
    margin-left: 0;
  }

  .asym-float .text-blob {
    margin-top: var(--space-md);
    margin-right: 0;
  }

  .overlap-card {
    margin-top: 0;
    margin-left: 0;
  }

  .angled-band {
    transform: none;
    margin: var(--space-lg) 0;
  }

  .angled-band .shell {
    transform: none;
  }

  .contact-zone::before {
    display: none;
  }

  .product-card {
    min-width: 0;
  }

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

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

@media (max-width: 20rem) {
  :root {
    --header-height: 3rem;
    --space-2xl: 2.5rem;
    --space-xl: 1.75rem;
    --shell-gutter: 0.625rem;
  }

  html {
    font-size: 93.75%;
  }

  .top-row {
    min-height: var(--header-height);
    gap: var(--space-xs);
  }

  .menu-trigger {
    width: 2rem;
    height: 2rem;
    font-size: 1rem;
    flex-shrink: 0;
  }

  .top-menu ul {
    max-width: 100%;
  }

  .top-menu a {
    font-size: 1rem;
    padding: var(--space-sm);
  }

  .hero-canvas-wrap {
    min-height: 85vh;
    min-height: 85dvh;
  }

  .hero-content h1 {
    max-width: 100%;
    font-size: 1.5rem;
  }

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

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

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

  .img-offset,
  .img-offset-alt,
  .form-panel,
  .overlap-card,
  .asym-float .text-blob {
    transform: none;
  }

  .img-offset-alt {
    margin-left: 0;
  }

  .asym-float .img-frame {
    width: 100%;
    margin-left: 0;
  }

  .asym-float .text-blob {
    margin-top: var(--space-md);
    margin-right: 0;
    padding: var(--space-md);
  }

  .angled-band {
    transform: none;
    margin: var(--space-lg) 0;
    padding: var(--space-lg) 0;
  }

  .angled-band .shell {
    transform: none;
  }

  .contact-zone::before {
    display: none;
  }

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

  .feature-card,
  .route-item,
  .quote-card,
  .step-block {
    padding: var(--space-sm);
  }

  .steps-row {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    left: var(--shell-gutter);
    right: var(--shell-gutter);
    bottom: var(--shell-gutter);
    padding: var(--space-sm);
  }

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

  .cookie-actions .btn-small {
    width: 100%;
    text-align: center;
  }

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

  .thanks-wrap,
  .error-wrap {
    padding: var(--space-xl) var(--shell-gutter);
    min-height: 70vh;
  }

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

  .error-actions .btn-primary,
  .error-actions .btn-outline {
    width: 100%;
  }

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

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

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

@media (min-width: 20.01rem) and (max-width: 23.4375rem) {
  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    flex: 1 1 auto;
    min-width: min(100%, 9rem);
  }

  .img-offset,
  .img-offset-alt {
    transform: none;
  }

  .form-panel {
    transform: none;
  }
}

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

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

  .hero-canvas-wrap {
    min-height: 92vh;
    min-height: 92dvh;
  }

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

  .section-intro {
    max-width: 42ch;
  }
}

@media (min-width: 36rem) {
  .feature-strip {
    grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
  }
}

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

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

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

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

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

  .overlap-stack {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
  }

  .overlap-card {
    margin-top: -4rem;
    margin-left: -2rem;
  }

  .hero-canvas-wrap {
    min-height: 100vh;
    min-height: 100dvh;
  }

  .hero-content h1 {
    max-width: 14ch;
  }

  .top-menu ul {
    gap: var(--space-sm);
  }

  .top-menu a {
    font-size: 0.72rem;
  }
}

@media (min-width: 48rem) and (max-width: 63.99rem) {
  .top-menu ul {
    gap: var(--space-xs);
  }

  .top-menu a {
    font-size: 0.68rem;
  }
}

@media (min-width: 64rem) {
  .feature-strip {
    grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
  }

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

  .top-menu ul {
    gap: var(--space-md);
  }

  .top-menu a {
    font-size: 0.78rem;
  }

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

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

@media (min-width: 80rem) {
  .hero-content p {
    max-width: 38ch;
  }

  .section-intro {
    max-width: 48ch;
  }

  .asym-float .img-frame {
    width: 80%;
  }
}

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

  h1 {
    font-size: 2.85rem;
  }

  h2 {
    font-size: 2.1rem;
  }
}

@media (hover: none) and (pointer: coarse) {
  .btn-primary:hover,
  .btn-outline:hover,
  .feature-card:hover,
  .route-item:hover,
  .product-card:hover {
    transform: none;
  }

  .menu-trigger,
  .btn-primary,
  .btn-outline,
  .btn-small {
    min-height: 2.75rem;
  }
}
