@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@600;700;800&display=swap");
:root {
  --brown: #29150b;
  --dark: #1a0d07;
  --orange: #f97316;
  --cream: #fff8f3;
  --paper: #f7f3f0;
  --ink: #30251f;
  --muted: #75675f;
  --line: #e8ddd6;
  --green: #25d366;
  --blue: #74c9e8;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  line-height: 1.65;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-family: Manrope, sans-serif;
  line-height: 1.1;
}
.shell {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fffffff2;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(15px);
}
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-right: auto;
}
.brand img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
}
.brand span {
  display: grid;
  line-height: 1.2;
}
.brand small {
  margin-top: 4px;
  color: #a85a27;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.nav nav {
  display: flex;
  gap: 21px;
  font-size: 13px;
  font-weight: 600;
}
.nav nav a:hover {
  color: var(--orange);
}
.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 12px 18px;
  color: #fff;
  background: linear-gradient(135deg, #ff8b2d, #df5808);
  font-weight: 700;
}
.nav-cta {
  font-size: 13px;
}
.menu {
  display: none;
}
.hero {
  position: relative;
  height: 720px;
  color: #fff;
  background: #180d08;
}
.slides,
.slide {
  position: absolute;
  inset: 0;
}
.slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s;
}
.slide.active {
  opacity: 1;
  visibility: visible;
}
.slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #160c08ee 0%,
    #211008bd 43%,
    #1e0e0730 78%
  );
}
.hero-copy {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 128px;
}
.kicker,
.eyebrow {
  display: block;
  margin-bottom: 20px;
  color: var(--orange);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.hero h1,
.hero h2 {
  max-width: 790px;
  margin-bottom: 25px;
  font-size: clamp(44px, 5.5vw, 72px);
  letter-spacing: -0.05em;
}
.hero p {
  max-width: 650px;
  margin-bottom: 32px;
  color: #e2d6cf;
  font-size: 17px;
}
.actions {
  display: flex;
  align-items: center;
  gap: 25px;
}
.btn {
  padding: 15px 22px;
}
.ghost {
  padding: 13px 0;
  border-bottom: 1px solid #ffffff78;
  font-weight: 600;
}
.slide-nav {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 35px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 16px;
}
.slide-nav button {
  border: 0;
  color: #fff;
  background: none;
  font-size: 19px;
  cursor: pointer;
}
.dots {
  display: flex;
  gap: 7px;
}
.dots button {
  width: 30px;
  height: 3px;
  padding: 0;
  background: #ffffff4d;
}
.dots button.on {
  background: var(--orange);
}
.count {
  font-size: 11px;
  letter-spacing: 0.1em;
}
.quick {
  color: #fff;
  background: var(--brown);
}
.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.quick-grid > div {
  display: grid;
  padding: 21px 25px;
  border-right: 1px solid #ffffff16;
}
.quick small {
  color: #af9a8d;
  font-size: 8px;
  letter-spacing: 0.13em;
}
.quick b {
  font-size: 13px;
}
.section {
  padding: 110px 0;
}
.head {
  display: grid;
  grid-template-columns: 1.15fr 0.7fr;
  gap: 100px;
  align-items: end;
  margin-bottom: 50px;
}
.head h2,
.engineering h2,
.cost h2,
.app-title h2,
.faq h2,
.cta h2 {
  margin-bottom: 0;
  font-size: clamp(35px, 4.3vw, 56px);
  letter-spacing: -0.045em;
}
.head p {
  margin: 0;
  color: var(--muted);
}
.meaning {
  background: #fff;
}
.meaning-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}
.meaning-grid article {
  position: relative;
  min-height: 320px;
  padding: 30px;
  border: 1px solid var(--line);
}
.meaning-grid article > b {
  position: absolute;
  right: 25px;
  color: #b6a69d;
  font-size: 11px;
}
.meaning-grid h3 {
  margin-top: 65px;
  font-size: 21px;
}
.meaning-grid strong {
  display: block;
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 16px;
}
.meaning-grid p {
  color: var(--muted);
  font-size: 13px;
}
.meaning-grid .accent {
  color: #fff;
  background: var(--brown);
  border-color: var(--brown);
}
.meaning-grid .accent p {
  color: #cfbfb6;
}
.note {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 30px;
  margin-top: 20px;
  padding: 20px 25px;
  color: #78431f;
  background: #fff1e7;
  border-left: 3px solid var(--orange);
}
.note span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
}
.note p {
  margin: 0;
  font-size: 12px;
}
.engineering {
  padding: 105px 0;
  color: #fff;
  background: linear-gradient(125deg, #1b0d07, #482007);
}
.engineering-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 90px;
  align-items: center;
}
.eyebrow.light {
  color: #ff9d59;
}
.eng-copy > p {
  color: #d3c2b8;
}
.eng-copy ul {
  padding: 0;
  margin: 35px 0 0;
  list-style: none;
}
.eng-copy li {
  display: flex;
  gap: 17px;
  padding: 15px 0;
  border-top: 1px solid #ffffff1b;
}
.eng-copy li > i {
  color: var(--orange);
  font-style: normal;
  font-size: 10px;
}
.eng-copy li span {
  display: grid;
}
.eng-copy li small {
  color: #ad9c92;
}
.diagram {
  position: relative;
  min-height: 550px;
  padding: 55px 45px 70px;
  background: #fff9f5;
  color: var(--ink);
  overflow: hidden;
}
.room {
  position: relative;
  height: 330px;
  margin-top: 30px;
  border: 3px solid #48362c;
  background: repeating-linear-gradient(90deg, #fff 0, #fff 60px, #eee5df 61px);
}
.room:before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px dashed #b9aaa1;
}
.dimension {
  position: absolute;
  color: #8b776b;
  font-size: 8px;
  letter-spacing: 0.13em;
}
.dimension.top {
  top: 27px;
  left: 65px;
  right: 65px;
  border-top: 1px solid #9f8b7f;
  text-align: center;
}
.dimension.top span {
  position: relative;
  top: -8px;
  padding: 0 9px;
  background: #fff9f5;
}
.dimension.side {
  left: 16px;
  top: 105px;
  height: 250px;
  border-left: 1px solid #9f8b7f;
}
.dimension.side span {
  display: block;
  transform: rotate(-90deg) translate(-150px, -11px);
  width: 120px;
}
.evap {
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  width: 185px;
  height: 55px;
  padding: 10px;
  background: #ddd3cc;
  border: 2px solid #47352c;
}
.evap i {
  width: 31px;
  border-radius: 50%;
  background: repeating-conic-gradient(#433128 0 10deg, #b4a8a0 11deg 20deg);
}
.evap span {
  position: absolute;
  top: -18px;
  left: 0;
  font-size: 7px;
}
.racks {
  position: absolute;
  left: 36px;
  bottom: 30px;
  display: flex;
  gap: 8px;
}
.racks i {
  width: 55px;
  height: 125px;
  border: 4px solid #8d7464;
  background: repeating-linear-gradient(
    0deg,
    transparent 0 25px,
    #8d7464 26px 30px
  );
}
.door {
  position: absolute;
  right: 22px;
  bottom: 0;
  width: 100px;
  height: 190px;
  border: 5px solid #574238;
  background: #eee6e1;
}
.door span {
  position: absolute;
  left: 26px;
  top: 75px;
  font-size: 8px;
}
.sensor {
  position: absolute;
  right: 145px;
  top: 115px;
  color: #35a96c;
}
.sensor span {
  margin-left: 4px;
  color: #61736a;
  font-size: 8px;
}
.air {
  position: absolute;
  color: #58b7da;
  font-size: 28px;
}
.a1 {
  top: 90px;
  left: 140px;
}
.a2 {
  top: 155px;
  left: 210px;
}
.snow {
  position: absolute;
  right: 35px;
  top: 25px;
  color: #7fc8e3;
}
.machine {
  position: absolute;
  right: 50px;
  bottom: 55px;
  display: grid;
  width: 230px;
  padding: 17px 17px 17px 70px;
  color: #fff;
  background: #2d1b12;
}
.machine i {
  position: absolute;
  left: 15px;
  top: 13px;
  width: 42px;
  height: 42px;
  border: 4px solid #beaaa0;
  border-radius: 50%;
  background: repeating-conic-gradient(#fff 0 10deg, #5c473b 11deg 20deg);
}
.machine b {
  font-size: 9px;
}
.machine small {
  color: #bdaaa0;
  font-size: 7px;
}
.pipe {
  position: absolute;
  right: 95px;
  bottom: 105px;
  width: 3px;
  height: 80px;
  background: var(--orange);
}
.legend {
  position: absolute;
  left: 45px;
  bottom: 22px;
  display: flex;
  gap: 15px;
  color: #7e6b60;
  font-size: 7px;
}
.legend i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 4px;
  border-radius: 50%;
}
.legend .orange {
  background: var(--orange);
}
.legend .blue {
  background: var(--blue);
}
.legend .green {
  background: #35a96c;
}
.specs {
  background: var(--paper);
}
.spec-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 22px;
}
.spec-table {
  border: 1px solid var(--line);
  background: #fff;
}
.table-head,
.spec-table > div {
  display: grid;
  grid-template-columns: 0.85fr 0.7fr 1.2fr;
  gap: 15px;
  padding: 17px 22px;
  border-top: 1px solid var(--line);
  align-items: center;
}
.table-head {
  border: 0 !important;
  color: #8d796e;
  background: #eee7e2;
  font-size: 8px;
  letter-spacing: 0.12em;
}
.spec-table b {
  font-size: 12px;
}
.spec-table strong {
  color: var(--orange);
  font-size: 12px;
}
.spec-table p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}
.spec-card {
  padding: 29px;
  color: #fff;
  background: var(--brown);
}
.spec-card > span {
  color: #ff9a54;
  font-size: 8px;
  letter-spacing: 0.14em;
}
.spec-card h3 {
  margin: 14px 0 25px;
  font-size: 25px;
}
.spec-card ol {
  padding: 0;
  list-style: none;
}
.spec-card li {
  display: flex;
  gap: 12px;
  padding: 11px 0;
  border-top: 1px solid #ffffff18;
  color: #cfbeb4;
  font-size: 11px;
}
.spec-card li b {
  color: var(--orange);
}
.spec-card a {
  display: flex;
  justify-content: space-between;
  margin-top: 22px;
  padding: 13px;
  color: var(--brown);
  background: #fff;
  font-size: 11px;
  font-weight: 700;
}
.cost {
  padding: 110px 0;
  color: #fff;
  background: #211007;
}
.cost-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
  align-items: center;
}
.cost-copy > p {
  color: #cfbdb3;
}
.cost-factors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 35px;
}
.cost-factors span {
  padding: 12px 0;
  border-top: 1px solid #ffffff19;
  color: #c8b6ab;
  font-size: 11px;
}
.cost-factors b {
  margin-right: 9px;
  color: var(--orange);
}
.estimator {
  padding: 32px;
  color: var(--ink);
  background: #fff;
}
.estimator-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
  color: #8e7c71;
  font-size: 8px;
  letter-spacing: 0.1em;
}
.estimator-head b {
  color: var(--orange);
}
.estimator label {
  display: grid;
  gap: 8px;
  margin: 18px 0;
  font-size: 11px;
  font-weight: 700;
}
.estimator select {
  padding: 12px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: #fff;
}
.estimator input {
  accent-color: var(--orange);
}
.range-value {
  display: flex;
  align-items: baseline;
  gap: 5px;
  color: var(--orange);
}
.range-value b {
  font-size: 20px;
}
.range-value small {
  color: var(--muted);
}
.result {
  padding: 17px;
  margin-top: 22px;
  background: var(--cream);
}
.result small {
  font-size: 8px;
  letter-spacing: 0.12em;
}
.result strong {
  display: block;
  color: var(--orange);
  font:
    700 22px Manrope,
    sans-serif;
}
.result p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 10px;
}
.estimator > a {
  display: flex;
  justify-content: space-between;
  margin-top: 18px;
  padding: 14px;
  color: #fff;
  background: var(--orange);
  font-size: 11px;
  font-weight: 700;
}
.rent {
  background: var(--cream);
}
.rent-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 85px;
  align-items: center;
}
.rent-copy > p {
  color: var(--muted);
}
.rent-note {
  display: grid;
  gap: 5px;
  margin-top: 28px;
  padding: 18px;
  border-left: 3px solid var(--orange);
  background: #fff;
}
.rent-note b {
  font-size: 12px;
}
.rent-note span {
  color: var(--muted);
  font-size: 11px;
}
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  background: #fff;
}
.compare article {
  min-height: 320px;
  padding: 28px;
}
.compare .owned {
  color: #fff;
  background: var(--brown);
}
.compare article > span {
  color: var(--orange);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}
.compare h3 {
  margin: 55px 0 20px;
  font-size: 20px;
}
.compare ul {
  padding: 0;
  list-style: none;
}
.compare li {
  padding: 9px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}
.compare .owned li {
  border-color: #ffffff19;
  color: #cdbbb0;
}
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.steps article {
  min-height: 260px;
  padding: 25px;
  border: 1px solid var(--line);
  border-right: 0;
}
.steps article:last-child {
  border-right: 1px solid var(--line);
}
.steps article > b {
  display: grid;
  place-items: center;
  width: 37px;
  height: 37px;
  margin-bottom: 45px;
  border-radius: 50%;
  color: var(--orange);
  background: #fff0e5;
  font-size: 10px;
}
.steps span {
  color: #a45b2c;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.steps h3 {
  margin: 7px 0 11px;
  font-size: 17px;
}
.steps p {
  color: var(--muted);
  font-size: 10px;
}
.applications {
  padding: 100px 0;
  color: #fff;
  background: linear-gradient(120deg, #3f1b08, #1c0e08);
}
.app-title {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  gap: 70px;
  align-items: end;
}
.app-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 45px;
}
.app-grid article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid #ffffff1c;
  border-right: 0;
}
.app-grid article:last-child {
  border-right: 1px solid #ffffff1c;
}
.app-grid > article > span {
  color: var(--orange);
  font-size: 10px;
}
.app-grid h3 {
  margin-top: 65px;
  font-size: 17px;
}
.app-grid p {
  color: #bda99d;
  font-size: 10px;
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 100px;
}
.faq-grid > div:first-child p {
  color: var(--muted);
}
.accordion details {
  border-top: 1px solid var(--line);
}
.accordion details:last-child {
  border-bottom: 1px solid var(--line);
}
.accordion summary {
  display: flex;
  justify-content: space-between;
  padding: 21px 0;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
}
.accordion summary b {
  color: var(--orange);
  font-size: 20px;
  transition: 0.2s;
}
.accordion details[open] summary b {
  transform: rotate(45deg);
}
.accordion p {
  padding-right: 40px;
  color: var(--muted);
  font-size: 12px;
}
.cta {
  padding: 85px 0;
  color: #fff;
  background: linear-gradient(120deg, #dc5709, #ff8f3b);
}
.cta-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr;
  gap: 100px;
  align-items: end;
}
.cta p {
  color: #fff5ed;
}
.cta a {
  display: flex;
  justify-content: space-between;
  padding: 15px 18px;
  color: var(--brown);
  background: #fff;
  font-weight: 700;
}
footer {
  padding: 65px 0 20px;
  color: #d5c2b6;
  background: #180c07;
}
.foot {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr 0.9fr;
  gap: 70px;
}
.foot > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.foot p {
  max-width: 470px;
  color: #a79286;
}
.foot > div > b {
  color: #fff;
}
.foot a,
.foot span {
  font-size: 12px;
}
.copy {
  margin-top: 40px;
  padding-top: 17px;
  border-top: 1px solid #ffffff14;
  color: #89766b;
  font-size: 10px;
}
.wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: flex;
  align-items: center;
  width: 60px;
  height: 60px;
  padding: 8px;
  overflow: hidden;
  border-radius: 30px;
  color: #fff;
  background: var(--green);
  box-shadow: 0 14px 35px #145f3840;
  transition:
    width 0.3s,
    box-shadow 0.3s;
}
.wa svg {
  width: 44px;
  height: 44px;
  padding: 7px;
  flex: 0 0 44px;
  fill: currentColor;
  background: #ffffff17;
  border-radius: 50%;
}
.wa span {
  display: grid;
  width: 126px;
  flex: 0 0 126px;
  margin-left: 10px;
  line-height: 1.2;
  opacity: 0;
  transform: translateX(8px);
  transition: 0.25s;
}
.wa span b {
  font-size: 12px;
}
.wa span small {
  font-size: 10px;
}
.wa:hover,
.wa:focus-visible {
  width: 200px;
  box-shadow: 0 18px 44px #145f3860;
}
.wa:hover span,
.wa:focus-visible span {
  opacity: 1;
  transform: none;
}
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition:
    opacity 0.65s,
    transform 0.65s;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 960px) {
  .nav nav {
    display: none;
  }
  .engineering-grid,
  .cost-grid,
  .rent-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .diagram {
    margin-top: 20px;
  }
  .spec-layout {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
  .steps article:nth-child(3) {
    border-right: 1px solid var(--line);
  }
  .app-grid {
    grid-template-columns: 1fr 1fr;
  }
  .app-grid article:nth-child(2) {
    border-right: 1px solid #ffffff1c;
  }
  .foot {
    grid-template-columns: 1fr 1fr;
  }
  .foot > div:first-child {
    grid-column: 1/-1;
  }
}
@media (max-width: 640px) {
  .shell {
    width: calc(100% - 28px);
  }
  .nav {
    min-height: 70px;
  }
  .brand small,
  .nav-cta {
    display: none;
  }
  .menu {
    display: grid;
    gap: 6px;
    padding: 10px;
    border: 0;
    background: none;
  }
  .menu i {
    width: 24px;
    height: 2px;
    background: var(--brown);
  }
  .nav.open nav {
    position: absolute;
    top: 69px;
    left: 0;
    right: 0;
    display: grid;
    padding: 10px 20px;
    background: #fff;
    border-bottom: 1px solid var(--line);
  }
  .nav.open nav a {
    padding: 10px;
  }
  .hero {
    height: 690px;
  }
  .hero-copy {
    padding-top: 95px;
  }
  .hero h1,
  .hero h2 {
    font-size: 42px;
  }
  .actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .quick-grid {
    grid-template-columns: 1fr 1fr;
  }
  .section {
    padding: 75px 0;
  }
  .head,
  .app-title,
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .meaning-grid {
    grid-template-columns: 1fr;
  }
  .compare {
    grid-template-columns: 1fr;
  }
  .compare article {
    min-height: auto;
  }
  .note {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .engineering {
    padding: 75px 0;
  }
  .engineering-grid {
    gap: 45px;
  }
  .diagram {
    min-height: 460px;
    padding: 45px 25px 60px;
  }
  .room {
    height: 280px;
  }
  .racks i {
    width: 38px;
    height: 100px;
  }
  .machine {
    right: 25px;
  }
  .legend {
    left: 25px;
    gap: 8px;
  }
  .table-head {
    display: none;
  }
  .spec-table > div {
    grid-template-columns: 1fr;
    padding: 16px;
    gap: 5px;
  }
  .cost {
    padding: 75px 0;
  }
  .cost-grid {
    gap: 45px;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .steps article,
  .steps article:nth-child(3) {
    min-height: auto;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }
  .steps article:last-child {
    border-bottom: 1px solid var(--line);
  }
  .steps article > b {
    margin-bottom: 20px;
  }
  .applications {
    padding: 75px 0;
  }
  .app-grid {
    grid-template-columns: 1fr;
  }
  .app-grid article,
  .app-grid article:nth-child(2) {
    min-height: auto;
    border-right: 1px solid #ffffff1c;
    border-bottom: 0;
  }
  .app-grid article:last-child {
    border-bottom: 1px solid #ffffff1c;
  }
  .app-grid h3 {
    margin-top: 35px;
  }
  .faq-grid {
    gap: 45px;
  }
  .foot {
    grid-template-columns: 1fr;
  }
  .foot > div:first-child {
    grid-column: auto;
  }
  .wa,
  .wa:hover,
  .wa:focus-visible {
    right: 14px;
    bottom: 14px;
    width: 60px;
  }
  .wa span {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .slide,
  .wa,
  .wa span,
  .reveal {
    transition: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
