:root {
  --green: #2e7c43;
  --green-dark: #226536;
  --green-soft: #78ad58;
  --text: #333335;
  --muted: #4c4c50;
  --panel: #e9e9e9;
  --white: #ffffff;
  --max: 1180px;
  --title-size: clamp(34px, 3.08vw, 45px);
  --body-size: 18px;
  --body-line: 1.2;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

svg {
  display: block;
  max-width: 100%;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 34px;
  border-radius: 12px;
  background: var(--green-dark);
  color: var(--white);
  font-size: var(--body-size);
  font-weight: 800;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease;
}

.button:hover {
  background: #1c572e;
  transform: translateY(-2px);
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 130px);
  height: 112px;
  margin: 0 auto;
}

.brand img {
  width: 162px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.main-nav a:not(.instagram-link) {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.main-nav a:not(.instagram-link):hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.main-nav a:not(.instagram-link):focus-visible,
.instagram-link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.86);
  outline-offset: 4px;
}

.main-nav .nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.main-nav .nav-cta:hover {
  background: var(--white);
  color: var(--green-dark);
  transform: translateY(-1px);
}

.instagram-link svg,
.footer-instagram svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.instagram-link {
  color: #232323;
  margin-left: 160px;
  transition: color 180ms ease, transform 180ms ease;
}

.instagram-link:hover {
  color: var(--green-dark);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background: var(--green-dark);
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.hero {
  position: relative;
  height: max(640px, 56.95vw);
  margin-bottom: 56px;
  overflow: visible;
}

.hero-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  object-position: center top;
  opacity: 0;
  transition: opacity 700ms ease;
}

.hero-bg.is-active {
  opacity: 1;
}

.hero-copy {
  position: absolute;
  top: 36.2%;
  left: clamp(82px, 8.35vw, 132px);
  z-index: 2;
  width: clamp(330px, 27vw, 410px);
  transition: opacity 260ms ease, transform 260ms ease;
}

.hero-copy.is-changing {
  opacity: 0;
  transform: translateY(8px);
}

.hero h1,
.install-copy h2,
.section-heading h2,
.reasons h2,
.business h2,
.contact h2 {
  margin: 0;
  font-size: var(--title-size);
  font-style: italic;
  font-weight: 400;
  line-height: 1.14;
}

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

.hero h1 span,
.business h2 strong,
.contact h2 strong {
  display: block;
}

.hero h1 strong,
.business h2 strong,
.contact h2 strong {
  font-weight: 800;
}

.hero-copy p {
  width: min(375px, 100%);
  margin: clamp(42px, 4vw, 54px) 0 24px;
  color: #474747;
  font-size: var(--body-size);
  font-weight: 500;
  line-height: var(--body-line);
}

.hero-copy .button {
  gap: 10px;
  width: max-content;
  min-height: 48px;
  max-width: 100%;
  padding: 0 26px;
  border-radius: 10px;
  font-size: 16px;
}

.hero-copy .button::after {
  content: "";
  flex: 0 0 auto;
  width: 18px;
  height: 12px;
  background: currentColor;
  clip-path: polygon(0 42%, 70% 42%, 70% 0, 100% 50%, 70% 100%, 70% 58%, 0 58%);
}

.slider-dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: -34px;
  display: flex;
  gap: 18px;
  transform: translateX(-50%);
}

.slider-dots button {
  width: 15px;
  height: 15px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #c6c6c6;
  cursor: pointer;
}

.slider-dots button.is-active {
  background: #9f9f9f;
}

.install-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(720px, 52vw) minmax(430px, 520px);
  align-items: center;
  justify-content: start;
  gap: clamp(46px, 5vw, 88px);
  width: 100%;
  min-height: 700px;
  margin: 0;
  padding: 50px 0 118px;
}

.install-section::before {
  content: none;
}

.install-media {
  position: relative;
  z-index: 1;
  justify-self: start;
  width: min(840px, 54vw);
  margin-left: 0;
  overflow: visible;
}

.video-trigger {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.video-trigger img {
  width: 100%;
  height: auto;
  transition: transform 180ms ease, filter 180ms ease;
}

.video-trigger picture {
  display: block;
}

.video-trigger:hover img {
  filter: brightness(0.98);
  transform: translateY(-2px);
}

.install-copy {
  position: relative;
  z-index: 1;
  max-width: 520px;
}

.install-copy h2,
.section-heading h2,
.reasons h2 {
  margin: 0;
  color: var(--green);
  font-style: italic;
  font-weight: 400;
  line-height: 1.12;
}

.install-copy h2 strong,
.section-heading h2 strong,
.reasons h2 strong {
  font-weight: 800;
}

.install-copy h2 span,
.install-copy h2 strong,
.reasons h2 span {
  display: block;
}

.install-copy p,
.install-copy li {
  color: var(--text);
  font-size: var(--body-size);
  font-weight: 500;
  line-height: var(--body-line);
}

.install-copy p {
  margin: 30px 0 0;
}

.install-copy .install-detail {
  margin-top: 22px;
}

.install-cta {
  display: flex;
  width: max-content;
  max-width: 100%;
  margin-top: 28px;
}

.install-copy ul,
.collection-info ul,
.business-panel ul {
  margin: 22px 0 0;
  padding-left: 26px;
}

.collections {
  position: relative;
  padding: 72px 24px 92px;
  overflow: hidden;
}

.collections::before {
  content: none;
}

.section-heading {
  width: min(980px, 100%);
  margin: 0 auto 50px;
  text-align: center;
}

.section-heading h2 {
  white-space: nowrap;
}

.section-heading p {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: var(--body-size);
  font-weight: 500;
  line-height: var(--body-line);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 440px));
  justify-content: center;
  gap: clamp(48px, 5vw, 64px);
}

.collection-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  overflow: visible;
}

.collection-image {
  width: 100%;
  height: 360px;
  border-radius: 7px 7px 0 0;
  object-fit: cover;
  object-position: center center;
}

.collection-card h3,
.collection-image + .collection-info::before {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  margin: 0;
  background: var(--green);
  color: var(--white);
  font-size: clamp(22px, 1.75vw, 26px);
  font-weight: 800;
  line-height: 1;
  text-align: center;
}

.collection-image + .collection-info::before {
  display: none;
}

.collection-info {
  min-height: 282px;
  padding: 20px 42px 24px;
  background: var(--panel);
}

.collection-info p {
  max-width: 360px;
  margin: 0 auto 16px;
  color: #303033;
  font-size: var(--body-size);
  font-weight: 800;
  line-height: var(--body-line);
  text-align: center;
}

.collection-info li {
  font-size: var(--body-size);
  font-weight: 500;
  line-height: 1.14;
}

.swatches {
  display: grid;
  grid-template-columns: 28px repeat(3, minmax(72px, 1fr)) 28px;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}

.swatch {
  display: grid;
  justify-items: center;
  border: 0;
  background: transparent;
  padding: 0;
  color: #555;
  font-family: inherit;
  text-align: center;
  cursor: pointer;
}

.swatch.is-hidden {
  display: none;
}

.swatch img {
  width: 82px;
  height: 82px;
  max-width: 100%;
  margin: 0 auto 8px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.swatch:hover img {
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
  transform: translateY(-2px);
}

.swatch span {
  font-size: 10px;
  font-weight: 500;
}

.arrow {
  width: 24px;
  height: 24px;
  border: 0;
  border-right: 4px solid #707070;
  border-bottom: 4px solid #707070;
  background: transparent;
  transform: rotate(135deg);
  cursor: pointer;
}

.arrow-next {
  transform: rotate(-45deg);
}

.budget-button {
  display: flex;
  width: min(340px, 100%);
  margin: 42px auto 0;
  font-size: var(--body-size);
}

.reasons {
  position: relative;
  padding: 52px 34px 104px;
  overflow: hidden;
}

.reasons::after {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -165px;
  width: 720px;
  height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
}

.reasons h2 {
  text-align: center;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(10, minmax(78px, 1fr));
  gap: clamp(12px, 1.45vw, 24px);
  width: min(100%, 1420px);
  margin: 72px auto 0;
}

.reason-grid article {
  display: grid;
  grid-template-rows: 62px auto;
  justify-items: center;
  align-items: start;
  min-width: 0;
}

.reason-grid img {
  width: 56px;
  height: 62px;
  object-fit: contain;
}

.reason-grid p {
  margin: 18px 0 0;
  color: #161616;
  font-size: var(--body-size);
  font-weight: 500;
  line-height: var(--body-line);
  text-align: center;
}

.business {
  position: relative;
  min-height: clamp(470px, 43vw, 620px);
  overflow: hidden;
  background: #dfe7e4;
}

.business-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.business-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.business-panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(690px, 49vw);
  min-height: clamp(470px, 43vw, 620px);
  padding: clamp(60px, 6vw, 90px) 112px clamp(60px, 6vw, 90px) clamp(76px, 8.6vw, 132px);
  background: transparent;
  clip-path: none;
}

.business h2 {
  max-width: 620px;
  color: var(--white);
  line-height: 1.12;
}

.business h2 strong {
  white-space: nowrap;
}

.business-panel li,
.business-panel p {
  color: var(--white);
  font-size: var(--body-size);
  font-weight: 500;
  line-height: var(--body-line);
}

.business-panel p strong {
  color: var(--white);
}

.business-panel ul {
  max-width: 500px;
  margin-top: 24px;
  list-style: none;
  padding-left: 0;
}

.business-panel li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-left: 0;
}

.business-panel li::before {
  content: "";
  flex: 0 0 auto;
  width: 14px;
  height: 25px;
  margin-top: -4px;
  border-right: 5px solid #9dc86b;
  border-bottom: 5px solid #9dc86b;
  transform: rotate(45deg);
}

.business-panel p {
  max-width: 500px;
  margin: 28px 0 0;
}

.contact {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(360px, 640px);
  align-items: center;
  gap: 34px;
  width: min(100% - 92px, 1140px);
  min-height: 520px;
  margin: 0 auto;
  padding: 46px 0 0;
}

.contact-copy {
  padding-top: 28px;
}

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

.contact p {
  max-width: 510px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: var(--body-size);
  font-weight: 500;
  line-height: var(--body-line);
}

.contact .button {
  margin-top: 42px;
  min-height: 55px;
  border-radius: 12px;
  font-size: var(--body-size);
}

.phone {
  align-self: end;
  width: min(590px, 100%);
  margin: 0 auto;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 1.35fr) minmax(130px, 0.7fr) minmax(220px, 1fr) minmax(170px, 0.8fr);
  align-items: start;
  gap: clamp(26px, 5vw, 76px);
  min-height: 260px;
  padding: 48px clamp(34px, 6vw, 86px) 24px;
  background: var(--green);
  color: rgba(255, 255, 255, 0.86);
}

.footer-brand img {
  width: 244px;
}

.footer-brand p {
  max-width: 420px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
}

.site-footer h2 {
  margin: 8px 0 16px;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-nav,
.footer-contact,
.footer-social {
  display: grid;
  align-content: start;
  gap: 10px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
  transition: color 180ms ease;
}

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

.footer-instagram {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: start;
}

.footer-credit {
  grid-column: 1 / -1;
  justify-self: center;
  width: 100%;
  margin: 10px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 500;
  text-align: center;
}

.texture-modal,
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 34px;
  background: rgba(0, 0, 0, 0.42);
}

.texture-modal.is-open,
.video-modal.is-open {
  display: flex;
}

.texture-modal figure {
  position: relative;
  margin: 0;
}

.texture-modal img {
  width: min(560px, calc(100vw - 68px));
  max-height: min(820px, calc(100vh - 100px));
  object-fit: cover;
  background: #ddd;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.36);
}

.texture-modal figcaption {
  margin-top: 10px;
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
}

.texture-modal__close,
.video-modal__close {
  position: absolute;
  top: 22px;
  right: 24px;
  z-index: 1;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #222;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.video-modal video {
  width: min(920px, calc(100vw - 68px));
  max-height: calc(100vh - 100px);
  background: #000;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.36);
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 70;
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 18px 42px rgba(37, 211, 102, 0.34);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 52px rgba(37, 211, 102, 0.42);
}

.whatsapp-float svg {
  width: 36px;
  height: 36px;
  fill: currentColor;
}

@media (max-width: 1180px) {
  .site-header {
    width: calc(100% - 44px);
  }

  .install-section {
    grid-template-columns: minmax(560px, 50vw) minmax(380px, 470px);
    gap: 38px;
  }

  .install-media {
    width: min(720px, 52vw);
  }

  .instagram-link {
    margin-left: 0;
  }

  .reason-grid {
    grid-template-columns: repeat(5, minmax(120px, 1fr));
    width: min(720px, 100%);
  }

  .site-footer {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }
}

@media (max-width: 880px) {
  .site-header {
    --header-top: 14px;
    --header-height: 82px;
    --menu-size: 56px;
    position: fixed;
    top: var(--header-top);
    left: 16px;
    right: 16px;
    width: auto;
    height: var(--header-height);
    margin: 0;
    padding: 0 14px 0 18px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(10px);
  }

  .brand img {
    width: 146px;
  }

  .menu-toggle {
    display: flex !important;
    position: absolute;
    top: 50%;
    right: 14px;
    flex: 0 0 var(--menu-size);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 90;
    transform: translateY(-50%);
    width: var(--menu-size);
    height: var(--menu-size);
    border-radius: 11px;
    background: var(--green-dark);
    padding: 0;
    gap: 7px;
  }

  .menu-toggle span {
    width: 28px;
    height: 3px;
    margin: 0;
    background: var(--white);
    opacity: 1;
  }

  .main-nav {
    position: absolute;
    top: 96px;
    right: 0;
    display: none;
    width: min(280px, calc(100vw - 44px));
    padding: 20px;
    border-radius: 8px;
    background: rgba(34, 101, 54, 0.97);
    color: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
  }

  .main-nav a:not(.instagram-link) {
    width: 100%;
    justify-content: space-between;
  }

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

  .instagram-link {
    color: var(--white);
    margin-left: 0;
  }

  .hero {
    height: 100svh;
    min-height: 760px;
    margin-bottom: 52px;
    overflow: hidden;
    background: #1f1f1f;
  }

  .hero-bg {
    object-fit: cover;
    object-position: center top;
  }

  .hero::after {
    content: "";
    position: absolute;
    inset: 36% 0 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.55) 58%, rgba(0, 0, 0, 0.62) 100%);
    pointer-events: none;
  }

  .hero-copy {
    top: auto;
    bottom: 112px;
    left: 50%;
    width: min(100% - 72px, 430px);
    text-align: center;
    transform: translateX(-50%);
  }

  .hero-copy.is-changing {
    transform: translateX(-50%) translateY(8px);
  }

  .hero-copy p {
    width: 100%;
    margin: 24px auto 28px;
    color: var(--white);
    font-size: clamp(18px, 3.2vw, 24px);
    font-weight: 400;
    line-height: 1.48;
  }

  .hero h1 {
    color: var(--white);
    font-size: clamp(34px, 6vw, 48px);
    line-height: 1.16;
  }

  .hero h1 span {
    display: block;
  }

  .hero-copy .button {
    width: min(100%, 280px);
    min-height: 56px;
    margin: 0 auto;
    border-radius: 18px;
    font-size: clamp(17px, 3.2vw, 21px);
    line-height: 1.12;
    white-space: normal;
  }

  .slider-dots {
    bottom: 32px;
    gap: 22px;
  }

  .slider-dots button {
    width: 16px;
    height: 16px;
    background: rgba(255, 255, 255, 0.68);
  }

  .slider-dots button.is-active {
    background: var(--white);
  }

  .install-section,
  .contact {
    grid-template-columns: 1fr;
    width: min(100% - 42px, 680px);
  }

  .install-section {
    min-height: 0;
    width: 100%;
    padding-top: 42px;
    padding-bottom: 92px;
  }

  .install-media {
    height: auto;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  .install-media img {
    width: 100vw;
    max-width: none;
  }

  .install-copy {
    text-align: center;
  }

  .install-copy ul {
    display: inline-block;
    text-align: left;
  }

  .collection-grid {
    grid-template-columns: minmax(280px, 520px);
  }

  .section-heading h2 {
    white-space: normal;
  }

  .business-panel {
    width: min(100%, 680px);
    padding-right: 72px;
    clip-path: none;
  }

  .contact {
    gap: 0;
    min-height: 0;
    padding-top: 72px;
    text-align: center;
  }

  .contact p {
    margin-left: auto;
    margin-right: auto;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
    text-align: left;
  }

  .footer-instagram {
    justify-self: start;
  }

  .footer-credit {
    grid-column: 1 / -1;
    margin-top: 0;
    text-align: left;
  }
}

@media (max-width: 620px) {
  .site-header {
    --header-height: 92px;
    --menu-size: 62px;
    top: var(--header-top);
    left: 16px;
    right: 16px;
    width: auto;
    height: var(--header-height);
    margin: 0;
    padding: 0 14px 0 18px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(10px);
  }

  .brand img {
    width: 164px;
  }

  .menu-toggle {
    flex-basis: var(--menu-size);
    width: var(--menu-size);
    height: var(--menu-size);
    border-radius: 11px;
    padding: 0;
  }

  .menu-toggle span {
    height: 3px;
    width: 30px;
    margin: 0;
  }

  .main-nav {
    top: 104px;
    right: 0;
  }

  .button {
    width: 100%;
    min-height: 50px;
    padding: 0 18px;
  }

  .hero {
    height: 100svh;
    min-height: 780px;
    margin-bottom: 50px;
    overflow: hidden;
    background: #1f1f1f;
  }

  .hero-bg {
    object-fit: cover;
    object-position: center top;
    opacity: 0;
  }

  .hero-bg.is-active {
    opacity: 1;
  }

  .hero::after {
    content: "";
    position: absolute;
    inset: 36% 0 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.55) 58%, rgba(0, 0, 0, 0.62) 100%);
    pointer-events: none;
  }

  .hero-copy {
    top: auto;
    bottom: 104px;
    left: 50%;
    width: min(100% - 72px, 370px);
    text-align: center;
    transform: translateX(-50%);
  }

  .hero-copy.is-changing {
    transform: translateX(-50%) translateY(8px);
  }

  .hero h1 {
    color: var(--white);
    font-size: clamp(27px, 7.8vw, 34px);
    line-height: 1.16;
  }

  .hero h1 span {
    display: block;
  }

  .hero-copy p {
    width: 100%;
    margin: 22px auto 26px;
    color: var(--white);
    font-size: clamp(15px, 4.4vw, 19px);
    font-weight: 400;
    line-height: 1.46;
  }

  .hero-copy .button {
    width: min(100%, 250px);
    min-height: 52px;
    margin: 0 auto;
    border-radius: 16px;
    font-size: clamp(16px, 4.6vw, 19px);
    line-height: 1.12;
    white-space: normal;
  }

  .slider-dots {
    bottom: 32px;
    gap: 22px;
  }

  .slider-dots button {
    width: 16px;
    height: 16px;
    background: rgba(255, 255, 255, 0.68);
  }

  .slider-dots button.is-active {
    background: var(--white);
  }

  .install-copy p,
  .install-copy li,
  .collection-info li,
  .section-heading p,
  .contact p {
    font-size: var(--body-size);
  }

  .collections {
    padding-left: 18px;
    padding-right: 18px;
  }

  .collection-info {
    min-height: 0;
    padding: 24px 24px 28px;
  }

  .collection-image {
    height: 360px;
  }

  .collection-info p {
    font-size: var(--body-size);
  }

  .swatches {
    grid-template-columns: 24px repeat(3, minmax(56px, 1fr)) 24px;
    gap: 8px;
  }

  .arrow {
    width: 24px;
    height: 24px;
  }

  .budget-button {
    font-size: var(--body-size);
  }

  .reasons {
    padding-top: 46px;
  }

  .reason-grid {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    gap: 30px 18px;
    margin-top: 54px;
  }

  .reason-grid article {
    grid-template-rows: 58px auto;
  }

  .reason-grid img {
    width: 52px;
    height: 58px;
  }

  .business {
    min-height: 780px;
  }

  .business-bg img {
    object-position: 63% center;
  }

  .business-panel {
    justify-content: flex-end;
    min-height: 780px;
    padding: 0 24px 138px;
    clip-path: none;
  }

  .business h2 strong {
    white-space: normal;
  }

  .contact {
    width: min(100% - 36px, 520px);
  }

  .footer-brand img {
    width: 230px;
  }

  .whatsapp-float {
    right: 18px;
    bottom: 18px;
    width: 58px;
    height: 58px;
  }

  .whatsapp-float svg {
    width: 32px;
    height: 32px;
  }
}
