:root {
  --color-deep: #222831;
  --color-mid: #393E46;
  --color-accent: #948979;
  --color-light: #DFD0B8;
  --color-white: #f8f6f2;
  --font-display: "Fraunces", serif;
  --font-body: "Outfit", sans-serif;
  --space-xs: 0.35rem;
  --space-sm: 0.65rem;
  --space-md: 1.1rem;
  --space-lg: 1.75rem;
  --space-xl: 2.5rem;
  --space-2xl: 4rem;
  --radius-sm: 0.35rem;
  --radius-md: 0.75rem;
  --radius-lg: 1.5rem;
  --shadow-sm: 0 0.15rem 0.5rem rgba(34, 40, 49, 0.12);
  --shadow-md: 0 0.5rem 1.5rem rgba(34, 40, 49, 0.2);
  --shadow-lg: 0 1rem 2.5rem rgba(34, 40, 49, 0.28);
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 3.25rem;
  --max-width: 72rem;
  --bp-xs: 20rem;
  --bp-sm: 30rem;
  --bp-md: 50rem;
  --bp-nav: 800px;
  --bp-lg: 62rem;
  --bp-xl: 75rem;
}

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

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

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

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

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

h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h2 { font-size: clamp(1.35rem, 3vw, 1.85rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.35rem); }

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

ul { list-style: none; }

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

.site-header {
  position: relative;
  width: 100%;
  background: var(--color-deep);
  border-bottom: 1px solid rgba(148, 137, 121, 0.35);
  z-index: 100;
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  min-height: var(--header-height);
  padding: var(--space-sm) 0;
}

.brand-mark {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-light);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

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

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 110;
  color: var(--color-light);
  font-size: 1.15rem;
}

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

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

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

.site-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--color-deep);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  padding: var(--space-xl) var(--space-md);
  z-index: 105;
  overflow-y: auto;
}

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

.site-nav a {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-light);
  padding: var(--space-sm) var(--space-md);
  min-height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

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

@media (min-width: 800px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    display: flex;
    position: static;
    top: auto;
    left: auto;
    width: auto;
    height: auto;
    min-height: 0;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
    gap: var(--space-lg);
    background: transparent;
    flex: 1;
    overflow: visible;
  }

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

  .site-nav a {
    font-size: 0.8rem;
  }
}

@media (max-width: 799px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav:not(.is-open) {
    display: none;
  }
}

.hero-zone {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--space-2xl);
  overflow: hidden;
  background: var(--color-deep);
}

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

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

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

.hero-content h1 {
  color: var(--color-light);
  max-width: 18ch;
  margin-bottom: var(--space-md);
  animation: fadeUp 0.8s 0.1s ease forwards;
  opacity: 0;
}

.hero-content p {
  color: rgba(223, 208, 184, 0.85);
  max-width: 36ch;
  font-size: 0.8rem;
  animation: fadeUp 0.8s 0.2s ease forwards;
  opacity: 0;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  animation: fadeUp 0.8s 0.35s ease forwards;
  opacity: 0;
}

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

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

.btn-primary,
.btn-ghost {
  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-size: 0.75rem;
  font-weight: 500;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: transform var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
  font-family: var(--font-body);
}

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

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

.btn-ghost {
  background: transparent;
  color: var(--color-light);
  border: 1px solid rgba(223, 208, 184, 0.4);
}

.btn-ghost:hover {
  border-color: var(--color-light);
  color: var(--color-light);
}

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

.section-block.alt-bg {
  background: linear-gradient(165deg, rgba(223, 208, 184, 0.25) 0%, transparent 55%);
}

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

.section-head h2 {
  margin-bottom: var(--space-xs);
}

.section-head p {
  font-size: 0.8rem;
  color: var(--color-mid);
  max-width: 42ch;
}

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

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

.feature-card {
  padding: var(--space-md);
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(148, 137, 121, 0.2);
  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-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
}

.media-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transform: rotate(-1.5deg);
  transition: transform var(--transition-smooth);
}

.media-frame:hover {
  transform: rotate(0deg) scale(1.02);
}

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

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

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

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

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

.quote-card {
  padding: var(--space-md);
  background: var(--color-deep);
  color: var(--color-light);
  border-radius: var(--radius-md);
  position: relative;
  transform: translateX(0);
  transition: transform var(--transition-smooth);
}

.quote-card:nth-child(even) {
  margin-left: 0;
  background: var(--color-mid);
}

.quote-card:hover {
  transform: translateX(0.35rem);
}

.quote-card cite {
  display: block;
  margin-top: var(--space-sm);
  font-size: 0.7rem;
  font-style: normal;
  color: var(--color-accent);
}

.cta-band {
  text-align: center;
  padding: var(--space-xl);
  background: var(--color-mid);
  border-radius: var(--radius-lg);
  color: var(--color-light);
}

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

.cta-band a:not(.btn-primary) {
  color: var(--color-light);
  text-decoration: underline;
}

.page-hero {
  padding: var(--space-xl) 0;
  background: var(--color-deep);
  color: var(--color-light);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -15%;
  top: 20%;
  width: 45%;
  height: 70%;
  background: var(--color-accent);
  opacity: 0.12;
  transform: rotate(12deg);
  border-radius: var(--radius-lg);
}

.page-hero .shell {
  position: relative;
  z-index: 1;
}

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

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

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

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

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

.asym-content {
  padding: var(--space-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--color-accent);
  transition: transform var(--transition-smooth);
}

.asym-content:hover {
  transform: rotate(0deg) translateY(-0.35rem);
}

.asym-float-img {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-bottom: var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  z-index: 2;
  transform: none;
}

.asym-block:nth-child(odd) .asym-float-img,
.asym-block:nth-child(even) .asym-float-img {
  right: auto;
  left: auto;
  top: auto;
  bottom: auto;
}

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

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

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

.product-card {
  display: grid;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: linear-gradient(135deg, rgba(223, 208, 184, 0.35), rgba(255, 255, 255, 0.9));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
}

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

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

.product-card ul {
  font-size: 0.75rem;
  margin: var(--space-sm) 0;
}

.product-card ul li {
  padding: var(--space-xs) 0;
  padding-left: 1rem;
  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: 0.6rem;
}

.contact-stage {
  display: grid;
  gap: var(--space-xl);
  padding: var(--space-2xl) 0;
}

.contact-panel {
  padding: var(--space-lg);
  background: var(--color-deep);
  color: var(--color-light);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.contact-panel::before {
  content: "";
  position: absolute;
  width: 8rem;
  height: 8rem;
  background: var(--color-accent);
  opacity: 0.15;
  border-radius: 50%;
  right: -2rem;
  top: -2rem;
}

.contact-panel h2 {
  color: var(--color-light);
  margin-bottom: var(--space-md);
}

.contact-panel .media-frame {
  margin-top: var(--space-md);
  max-width: 14rem;
}

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

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

.form-stack label {
  display: block;
  font-size: 0.7rem;
  margin-bottom: var(--space-xs);
  color: var(--color-mid);
}

.form-stack input,
.form-stack textarea {
  width: 100%;
  max-width: 100%;
  padding: var(--space-sm);
  margin-bottom: var(--space-md);
  border: 1px solid rgba(148, 137, 121, 0.35);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.8rem;
  background: var(--color-white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-stack .btn-primary {
  width: 100%;
}

.form-stack input:focus,
.form-stack textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 2px rgba(148, 137, 121, 0.2);
}

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

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  font-size: 0.7rem;
}

.consent-row input {
  margin-top: 0.2rem;
  width: auto;
  flex-shrink: 0;
  min-width: 1rem;
  min-height: 1rem;
}

.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 12rem;
}

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

.site-footer {
  padding: var(--space-md) 0;
  background: var(--color-deep);
  color: rgba(223, 208, 184, 0.7);
  font-size: 0.65rem;
}

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

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

.footer-links a {
  color: rgba(223, 208, 184, 0.75);
}

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

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

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

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

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

.legal-page ul {
  margin: var(--space-sm) 0 var(--space-md) 1.25rem;
  list-style: disc;
}

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

.thank-card {
  max-width: 28rem;
  padding: var(--space-xl);
  background: linear-gradient(160deg, var(--color-deep), var(--color-mid));
  color: var(--color-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  animation: fadeUp 0.6s ease;
}

.thank-card h1 {
  color: var(--color-light);
  margin-bottom: var(--space-md);
}

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

.error-code {
  font-family: var(--font-display);
  font-size: clamp(4rem, 15vw, 8rem);
  color: var(--color-accent);
  line-height: 1;
}

.cookie-banner {
  position: fixed;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%) translateY(150%);
  width: min(94%, 36rem);
  padding: var(--space-md);
  background: var(--color-deep);
  color: var(--color-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 200;
  font-size: 0.75rem;
  transition: transform var(--transition-smooth);
}

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

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

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

.cookie-actions button {
  padding: var(--space-xs) var(--space-sm);
  font-size: 0.7rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}

.cookie-accept {
  background: var(--color-accent);
  color: var(--color-deep);
}

.cookie-decline {
  background: transparent;
  color: var(--color-light);
  border: 1px solid rgba(223, 208, 184, 0.35);
}

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

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

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

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

  :root {
    --header-height: 2.85rem;
    --space-2xl: 2.5rem;
    --space-xl: 1.75rem;
  }

  .shell,
  .hero-content,
  .angled-strip .strip-inner {
    width: min(94%, 100% - 0.75rem);
  }

  .brand-mark {
    font-size: 0.9rem;
  }

  .nav-toggle {
    width: 1.75rem;
    height: 1.75rem;
  }

  .hero-zone {
    min-height: 100svh;
    padding-bottom: var(--space-xl);
  }

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

  .hero-content p {
    max-width: 100%;
    font-size: 0.75rem;
  }

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

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

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

  .media-frame {
    transform: none;
  }

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

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

  .page-hero::after {
    display: none;
  }

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

  .angled-strip {
    padding: var(--space-md) var(--space-sm);
    margin: var(--space-md) 0;
  }

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

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

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

  .contact-panel .media-frame {
    max-width: 100%;
  }

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

  .cookie-banner {
    width: min(96%, 100% - 0.5rem);
    padding: var(--space-sm);
    bottom: var(--space-sm);
  }

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

  .cookie-actions button {
    width: 100%;
    min-height: 2.25rem;
  }

  .thank-card {
    padding: var(--space-md);
    margin-inline: var(--space-xs);
  }

  .error-zone {
    padding: var(--space-xl) var(--space-sm);
  }

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

  .consent-row label {
    font-size: 0.65rem;
  }
}

@media (min-width: 20.01rem) and (max-width: 29.99rem) {
  .hero-content h1 {
    max-width: 100%;
  }

  .shell {
    width: min(93%, 100% - 1rem);
  }
}

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

  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    width: auto;
  }

  .form-stack .btn-primary {
    width: auto;
  }

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

  .footer-links {
    justify-content: center;
  }

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

@media (min-width: 36rem) {
  .shell {
    width: min(90%, 100% - 2rem);
  }

  .hero-content {
    width: min(90%, 100% - 2rem);
    padding-top: var(--space-xl);
  }

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

  .quote-card:nth-child(even) {
    margin-left: 5%;
  }

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

  .cookie-banner {
    width: min(92%, 34rem);
  }
}

@media (min-width: 48rem) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }

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

  .quote-card:nth-child(even) {
    margin-left: 8%;
  }

  .asym-block:nth-child(odd) .asym-content {
    margin-right: 10%;
    transform: rotate(-0.6deg);
  }

  .asym-block:nth-child(even) .asym-content {
    margin-left: 10%;
    transform: rotate(0.5deg);
  }

  .asym-float-img {
    position: absolute;
    width: 36%;
    max-width: 14rem;
    margin-bottom: 0;
  }

  .asym-block:nth-child(odd) .asym-float-img {
    right: 4%;
    top: -1rem;
    transform: rotate(3deg);
  }

  .asym-block:nth-child(even) .asym-float-img {
    left: 2%;
    bottom: -0.75rem;
    transform: rotate(-2deg);
  }

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

  .product-card:nth-child(2) {
    margin-left: 8%;
    transform: rotate(0.4deg);
  }

  .product-card:nth-child(3) {
    margin-right: 3%;
    transform: rotate(-0.3deg);
  }

  .product-card {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .site-nav a {
    font-size: 0.8rem;
  }

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

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

@media (min-width: 56rem) {
  .contact-stage {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }
}

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

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

  .hero-zone {
    min-height: 100vh;
  }

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

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

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

  .quote-card:nth-child(even) {
    margin-left: 0;
  }

  .asym-block:nth-child(odd) .asym-content {
    margin-right: 12%;
  }

  .asym-block:nth-child(even) .asym-content {
    margin-left: 14%;
  }

  .product-card:nth-child(1) {
    margin-right: 6%;
  }

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

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

@media (min-width: 75rem) {
  .shell {
    width: 92%;
  }

  .hero-content {
    width: 92%;
  }

  h1 {
    font-size: 2.5rem;
  }

  .section-head p {
    font-size: 0.85rem;
  }

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

@media (hover: none) and (pointer: coarse) {
  .feature-card:hover,
  .media-frame:hover,
  .asym-content:hover,
  .quote-card:hover {
    transform: none;
  }

  .btn-primary:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
