:root {
  --bg: #f7f5f0;
  --surface: #ffffff;
  --ink: #17191c;
  --muted: #5d6670;
  --line: #ded9cf;
  --blue: #145f8f;
  --blue-dark: #0b3f63;
  --aqua: #58a7bf;
  --gold: #b08a52;
  --shadow: 0 20px 55px rgba(23, 25, 28, 0.12);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  background: var(--ink);
  color: white;
  left: 1rem;
  padding: 0.75rem 1rem;
  position: fixed;
  top: -5rem;
  z-index: 50;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(247, 245, 240, 0.88);
  border-bottom: 1px solid rgba(222, 217, 207, 0.86);
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  left: 0;
  padding: 0.9rem clamp(1rem, 4vw, 3.5rem);
  position: sticky;
  top: 0;
  z-index: 30;
}

.brand {
  align-items: center;
  display: flex;
  font-weight: 700;
  gap: 0.75rem;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  align-items: center;
  background: var(--ink);
  color: white;
  display: inline-flex;
  font-size: 0.76rem;
  height: 2.45rem;
  justify-content: center;
  width: 2.45rem;
}

.brand-name {
  display: inline-flex;
}

.brand-partner {
  align-items: center;
  border-left: 1px solid var(--line);
  color: var(--blue);
  display: inline-flex;
  font-size: 0.86rem;
  gap: 0.42rem;
  font-weight: 800;
  padding-left: 0.75rem;
}

.fenesta-lockup {
  align-items: center;
  display: inline-flex;
}

.fenesta-logo {
  height: 1.18rem;
  object-fit: contain;
  width: auto;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: clamp(0.8rem, 2vw, 1.75rem);
  color: var(--muted);
  font-size: 0.94rem;
}

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

.nav-cta,
.button {
  border: 0;
  cursor: pointer;
  min-height: 2.9rem;
}

.nav-cta {
  background: var(--blue-dark);
  border-radius: 999px;
  color: white;
  padding: 0.72rem 1.05rem;
}

.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 700;
  justify-content: center;
  padding: 0.9rem 1.3rem;
}

.button.primary {
  background: var(--blue);
  color: white;
}

.button.secondary {
  background: white;
  border: 1px solid var(--line);
  color: var(--ink);
}

.button.text-button {
  background: transparent;
  color: var(--blue);
  padding-left: 0;
  padding-right: 0;
}

.hero {
  align-items: stretch;
  background: linear-gradient(135deg, #f8f5ee 0%, #eef3f4 100%);
  display: grid;
  gap: clamp(1.5rem, 4vw, 4rem);
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  min-height: calc(100svh - 4.35rem);
  padding: clamp(1.4rem, 3vw, 3rem) clamp(1rem, 5vw, 5rem);
}

.hero-media {
  align-self: stretch;
  min-height: 0;
}

.hero-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  height: 100%;
  width: 100%;
}

.hero-copy {
  align-self: center;
  color: var(--ink);
  max-width: 700px;
  padding: clamp(1rem, 3vw, 2rem) 0;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin: 0 0 0.85rem;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.45rem, 5.2vw, 5.75rem);
  font-weight: 500;
  line-height: 0.96;
  margin-bottom: 1.25rem;
  max-width: 820px;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 3.5vw, 3.8rem);
  font-weight: 500;
  line-height: 1.02;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.1rem;
  margin-bottom: 0.45rem;
}

.hero-subtitle {
  color: var(--muted);
  font-size: clamp(0.98rem, 1.25vw, 1.08rem);
  max-width: 640px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.8rem 0;
}

.trust-strip {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1.05rem 2.2rem;
  margin-top: 1.3rem;
  max-width: 920px;
  width: 100%;
}

.trust-strip span {
  align-items: center;
  color: var(--muted);
  display: inline-flex;
  font-size: 0.95rem;
  gap: 0.5rem;
  white-space: nowrap;
}

.trust-strip svg {
  color: var(--blue);
  fill: currentColor;
  flex: 0 0 auto;
  height: 1.18rem;
  width: 1.18rem;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 5vw, 5rem);
}

.section-head {
  margin-bottom: 2.2rem;
  max-width: 860px;
}

.section-head.split {
  align-items: end;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.55fr);
  max-width: none;
}

.section-head.split > p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.problem-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.problem-grid article,
.space-list article,
.testimonial-card,
.lead-form {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(222, 217, 207, 0.9);
  border-radius: var(--radius);
  box-shadow: 0 8px 22px rgba(23, 25, 28, 0.04);
}

.problem-grid article {
  min-height: 190px;
  padding: 1.35rem;
}

.problem-grid span {
  color: var(--blue);
  display: block;
  font-weight: 800;
  margin-bottom: 1.4rem;
}

.problem-grid p,
.product-card p,
.space-list p,
.testimonial-card blockquote,
.contact-copy p,
.about-copy p {
  color: var(--muted);
}

.products-section {
  background: white;
}

.product-carousel {
  overflow: hidden;
}

.product-viewport {
  overflow: hidden;
}

.product-track {
  display: flex;
  gap: 1rem;
  transition: transform 520ms cubic-bezier(0.22, 0.8, 0.26, 1);
  will-change: transform;
}

.product-card {
  background: #f9f7f2;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  flex: 0 0 calc((100% - 2rem) / 3);
  overflow: hidden;
}

.product-card img {
  aspect-ratio: 16 / 9;
  max-height: 240px;
  width: 100%;
}

.product-card div {
  padding: 0.95rem 1rem 1rem;
}

.product-card h3 {
  font-size: 1rem;
  margin-bottom: 0.32rem;
}

.product-card p {
  font-size: 0.88rem;
  line-height: 1.42;
  margin-bottom: 0;
}

.product-controls {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.2rem;
}

.carousel-button {
  align-items: center;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: inline-flex;
  font-size: 1.65rem;
  height: 2.75rem;
  justify-content: center;
  line-height: 1;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
  width: 2.75rem;
}

.carousel-button:hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-2px);
}

.carousel-dots {
  align-items: center;
  display: flex;
  gap: 0.45rem;
}

.carousel-dot {
  background: #c8d1d3;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  height: 0.55rem;
  padding: 0;
  transition: background-color 180ms ease, width 180ms ease;
  width: 0.55rem;
}

.carousel-dot.is-active {
  background: var(--blue);
  width: 1.7rem;
}

.estimate-band {
  align-items: center;
  background: var(--ink);
  border-radius: var(--radius);
  color: white;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: 1rem;
  padding: clamp(1.5rem, 4vw, 3rem);
}

.estimate-band h2 {
  margin-bottom: 0.7rem;
}

.estimate-band p {
  color: rgba(255, 255, 255, 0.76);
  margin-bottom: 0;
  max-width: 760px;
}

.estimate-band .button {
  min-width: 12.5rem;
  white-space: nowrap;
}

.about-section,
.contact-section {
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
}

.about-copy,
.contact-copy {
  align-self: center;
}

.about-carousel {
  align-self: center;
  min-width: 0;
}

.about-carousel-frame {
  background: transparent;
  border: 0;
  border-radius: var(--radius);
  box-shadow: none;
  height: clamp(440px, 48vw, 620px);
  overflow: hidden;
  position: relative;
}

.about-slide {
  background: white;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  box-shadow: none;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  inset: clamp(1.05rem, 2.4vw, 1.55rem) clamp(2.1rem, 5vw, 3.15rem);
  margin: 0;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  transform: translateX(96%) scale(0.92);
  transform-origin: center;
  transition: transform 720ms cubic-bezier(0.22, 0.9, 0.24, 1), opacity 420ms ease, box-shadow 720ms ease;
  will-change: transform, opacity;
  z-index: 1;
}

.about-slide.is-active {
  box-shadow: none;
  opacity: 1;
  transform: translateX(0) scale(1);
  z-index: 4;
}

.about-slide.is-prev {
  opacity: 1;
  transform: translateX(-7.5%) scale(0.92);
  z-index: 2;
}

.about-slide.is-next {
  opacity: 1;
  transform: translateX(7.5%) scale(0.92);
  z-index: 2;
}

.about-slide img {
  height: 100%;
  min-height: 0;
  transition: filter 720ms ease, transform 720ms ease;
  width: 100%;
}

.about-slide.is-prev img,
.about-slide.is-next img {
  filter: blur(5px) saturate(0.82);
  opacity: 0.44;
  transform: scale(1.04);
}

.about-slide.is-prev figcaption,
.about-slide.is-next figcaption {
  opacity: 0;
}

.about-slide figcaption {
  align-items: end;
  background: linear-gradient(135deg, #17191c 0%, #23313a 100%);
  color: white;
  display: grid;
  gap: 0.8rem;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  min-height: 8.4rem;
  padding: clamp(1rem, 2.4vw, 1.45rem);
}

.about-slide figcaption span,
.about-slide figcaption strong {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  display: flex;
  min-height: 5.6rem;
  padding: 0.85rem;
}

.about-slide figcaption span {
  align-items: center;
  color: var(--aqua);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-slide figcaption strong {
  align-items: flex-end;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.3vw, 1.8rem);
  font-weight: 500;
  line-height: 1.05;
}

.about-carousel-controls {
  align-items: center;
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  margin-top: 1rem;
}

.about-arrow {
  align-items: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  font-size: 1.45rem;
  height: 2.35rem;
  justify-content: center;
  line-height: 1;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
  width: 2.35rem;
}

.about-arrow:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}

.about-dots {
  align-items: center;
  display: flex;
  gap: 0.42rem;
}

.about-dot {
  background: #c7d0d2;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  height: 0.5rem;
  padding: 0;
  transition: background-color 180ms ease, width 180ms ease;
  width: 0.5rem;
}

.about-dot.is-active {
  background: var(--blue);
  width: 1.55rem;
}

.about-stats {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.5rem;
}

.about-stats span {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
  padding-top: 0.85rem;
}

.about-stats strong {
  color: var(--blue);
  display: block;
  font-size: 1rem;
}

.spaces-section {
  background: #eef3f4;
}

.space-list {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.space-list article {
  min-height: 220px;
  padding: 1.25rem;
}

.faq-section {
  background: var(--bg);
}

.faq-list {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.faq-list article {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(222, 217, 207, 0.9);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.faq-list p {
  color: var(--muted);
  margin-bottom: 0;
}

.testimonials-section {
  background: white;
}

.placeholder-note {
  font-size: 0.88rem;
}

.testimonial-marquee {
  overflow: hidden;
  position: relative;
}

.testimonial-marquee::before,
.testimonial-marquee::after {
  content: "";
  height: 100%;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 5rem;
  z-index: 2;
}

.testimonial-marquee::before {
  background: linear-gradient(90deg, white, rgba(255, 255, 255, 0));
  left: 0;
}

.testimonial-marquee::after {
  background: linear-gradient(270deg, white, rgba(255, 255, 255, 0));
  right: 0;
}

.testimonial-track {
  animation: testimonialScroll 46s linear infinite;
  display: flex;
  gap: 1rem;
  width: max-content;
}

.testimonial-marquee:hover .testimonial-track {
  animation-play-state: paused;
}

.testimonial-card {
  flex: 0 0 calc((100vw - clamp(2rem, 10vw, 10rem) - 2rem) / 3);
  margin: 0;
  min-height: 260px;
  padding: 1.5rem;
}

.testimonial-card blockquote {
  font-size: 1rem;
  margin: 0 0 1.35rem;
}

.testimonial-card figcaption {
  align-items: center;
  color: var(--ink);
  display: flex;
  gap: 0.85rem;
  font-weight: 700;
}

.testimonial-card img {
  border-radius: 50%;
  flex: 0 0 auto;
  height: 3.6rem;
  object-fit: cover;
  width: 3.6rem;
}

.testimonial-card small {
  color: var(--muted);
  display: inline;
  font-size: 0.88rem;
  font-weight: 700;
}

.testimonial-card small::before {
  content: ", ";
}

@keyframes testimonialScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 0.5rem));
  }
}

.contact-section {
  background: var(--bg);
}

.contact-facts {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-facts div {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.contact-facts dt {
  color: var(--blue);
  font-weight: 800;
}

.contact-facts dd {
  color: var(--muted);
  margin: 0.25rem 0 0;
}

.map-link {
  color: var(--blue);
  display: inline-flex;
  font-weight: 800;
  margin-top: 0.45rem;
  text-decoration: underline;
  text-underline-offset: 0.18rem;
}

.showroom-map {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: block;
  height: 210px;
  margin-top: 0.85rem;
  width: 100%;
}

.lead-form {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: clamp(1.25rem, 3vw, 2rem);
}

.lead-form h2,
.lead-form .eyebrow,
.lead-form .form-intro,
.lead-form .form-success {
  grid-column: 1 / -1;
}

.form-intro {
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.lead-form label,
.phone-field {
  color: var(--muted);
  display: grid;
  font-size: 0.9rem;
  font-weight: 700;
  gap: 0.4rem;
}

.phone-field {
  border: 0;
  margin: 0;
  padding: 0;
}

.phone-field legend {
  padding: 0;
}

.phone-row {
  align-items: stretch;
  background: white;
  border: 1px solid var(--line);
  border-radius: 6px;
  display: grid;
  grid-template-columns: 7.35rem minmax(0, 1fr);
  overflow: hidden;
}

.phone-row:focus-within {
  border-color: var(--blue);
  outline: 3px solid rgba(20, 95, 143, 0.14);
}

.phone-row select,
.phone-row input {
  background: transparent;
  border: 0;
  border-color: transparent;
  border-radius: 0;
  box-shadow: none;
  min-height: 3rem;
  outline: 0;
}

.phone-row select {
  background: #f8f7f3;
  border-right: 1px solid var(--line);
  padding-right: 1.35rem;
}

.lead-form .phone-row input,
.lead-form .phone-row select {
  border: 0;
  border-radius: 0;
  outline: 0;
}

.lead-form .phone-row select {
  border-right: 1px solid var(--line);
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  background: white;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  min-height: 3rem;
  padding: 0.8rem 0.9rem;
  width: 100%;
}

.lead-form label > input:focus,
.lead-form label > select:focus,
.lead-form textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(20, 95, 143, 0.14);
}

.lead-form .phone-row input:focus,
.lead-form .phone-row select:focus {
  border: 0;
  outline: 0;
}

.lead-form .was-touched:invalid {
  border-color: #b54747;
}

.full-field {
  grid-column: 1 / -1;
}

.form-success {
  color: var(--blue-dark);
  font-weight: 800;
  margin: 0;
  min-height: 1.5rem;
}

.privacy-note {
  color: var(--muted);
  font-size: 0.78rem;
  margin: -0.2rem 0 0;
}

.honeypot-field {
  height: 1px;
  left: -9999px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

.site-footer {
  align-items: center;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.76);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: 1.5rem clamp(1rem, 5vw, 5rem);
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-end;
}

.site-footer a:hover {
  color: white;
}

.whatsapp-float {
  align-items: center;
  animation: whatsappIntro 3s ease-out 0.35s 1;
  background: #0f7f65;
  border-radius: 50%;
  bottom: 1.15rem;
  box-shadow: var(--shadow);
  color: white;
  display: inline-flex;
  height: 3.6rem;
  justify-content: center;
  padding: 0;
  position: fixed;
  right: 1.15rem;
  width: 3.6rem;
  z-index: 25;
}

.whatsapp-float svg {
  fill: currentColor;
  height: 2.45rem;
  width: 2.45rem;
}

@media (hover: hover) and (pointer: fine) {
  .whatsapp-float {
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
  }

  .whatsapp-float:hover {
    background: #108a6d;
    box-shadow: 0 0 0 7px rgba(15, 127, 101, 0.14), 0 22px 48px rgba(15, 127, 101, 0.3);
    transform: translateY(-3px) scale(1.04);
  }
}

@keyframes whatsappIntro {
  0% {
    box-shadow: var(--shadow);
    transform: scale(1);
  }

  18% {
    box-shadow: 0 0 0 9px rgba(15, 127, 101, 0.16), var(--shadow);
    transform: scale(1.04);
  }

  38% {
    box-shadow: var(--shadow);
    transform: scale(1);
  }

  58% {
    box-shadow: 0 0 0 7px rgba(15, 127, 101, 0.13), var(--shadow);
    transform: scale(1.03);
  }

  100% {
    box-shadow: var(--shadow);
    transform: scale(1);
  }
}

.lead-dialog {
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 780px;
  padding: 0;
  width: min(calc(100% - 2rem), 780px);
}

.lead-dialog::backdrop {
  background: rgba(10, 15, 20, 0.62);
}

.dialog-close {
  background: transparent;
  border: 0;
  color: var(--muted);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  position: absolute;
  right: 1rem;
  top: 0.75rem;
}

.modal-form {
  border: 0;
  box-shadow: none;
}

.seo-hero {
  background: var(--ink);
  color: white;
  padding: clamp(5rem, 10vw, 8rem) clamp(1rem, 5vw, 5rem) clamp(3rem, 6vw, 5rem);
}

.seo-hero h1 {
  max-width: 900px;
}

.seo-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.15rem;
  max-width: 760px;
}

.seo-content {
  max-width: 920px;
}

.seo-content p {
  color: var(--muted);
  font-size: 1.05rem;
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    overflow-x: auto;
    width: 100%;
  }

  .section-head.split,
  .hero,
  .about-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 420px;
  }

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

  .testimonial-card {
    flex-basis: calc((100vw - 3rem) / 2);
  }

  .product-card {
    flex-basis: calc((100% - 1rem) / 2);
  }

  .product-card img {
    max-height: 220px;
  }

  .about-carousel-frame {
    height: 520px;
  }

  .space-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-list {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .estimate-band,
  .site-footer {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 0.8rem 1rem;
  }

  .brand-name {
    max-width: 165px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand-partner {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    gap: 1.1rem;
    padding-top: 1.2rem;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero-media {
    min-height: 300px;
  }

  .trust-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .problem-grid,
  .space-list,
  .faq-list,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .about-carousel-frame {
    height: 430px;
  }

  .about-slide {
    inset: 0.8rem 1.25rem;
  }

  .about-slide figcaption {
    gap: 0.55rem;
    grid-template-columns: 1fr;
    min-height: 10rem;
  }

  .about-slide figcaption span,
  .about-slide figcaption strong {
    min-height: auto;
  }

  .testimonial-card {
    flex-basis: 82vw;
  }

  .testimonial-marquee::before,
  .testimonial-marquee::after {
    width: 2rem;
  }

  .product-card {
    flex-basis: 86%;
  }

  .product-card img {
    aspect-ratio: 5 / 3;
    max-height: 210px;
  }

  .product-card div {
    padding: 0.9rem;
  }

  .phone-row {
    grid-template-columns: 7.35rem minmax(0, 1fr);
  }

  .button {
    width: 100%;
  }

  .whatsapp-float {
    bottom: 0.8rem;
    right: 0.8rem;
  }
}
