:root {
  --text: #707070;
  --heading: #404040;
  --blue: #4c98c9;
  --red: #d85b5b;
  --mint: #74c8b3;
  --paper: #f5f7fa;
  --dark: #272727;
  --footer: #2b2b2b;
  --home-heading-size: 24px;
  --home-heading-line: 32px;
  --home-text-size: 12pt;
  --home-text-line: 26px;
}

@font-face {
  font-family: "Slimicons";
  src: url("type/slimicons/Slimicons.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="si-"],
[class*=" si-"] {
  font-family: "Slimicons" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.si-building_home-2:before { content: "\ea3e"; }
.si-cafe_open-shop:before { content: "\eaa8"; }
.si-cafe_chairs-table:before { content: "\ea85"; }
.si-ecommerce_shopping-cart:before { content: "\ec50"; }
.si-building_large-factory:before { content: "\ea56"; }
.si-building_resident-block:before { content: "\ea66"; }
.si-design_quick-tool:before { content: "\ebff"; }
.si-energy_recycling:before { content: "\ed73"; }
.si-ui_users:before { content: "\f597"; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Rubik", Arial, sans-serif;
  color: var(--text);
  background: #fff;
  font-size: 14px;
  line-height: 26px;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(1170px, calc(100% - 40px)); margin: 0 auto; }
.narrow { max-width: 760px; }
.center { text-align: center; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
  border-top: 4px solid #6d348f;
  box-shadow: 0 2px 9px rgba(0,0,0,.08);
}
.site-header .container {
  width: min(1868px, calc(100% - 180px));
}
.nav-wrap {
  min-height: 136px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
}
.brand {
  flex: 0 0 auto;
}
.brand img {
  width: clamp(180px, 12.8vw, 260px);
  height: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(26px, 3.22vw, 66px);
  flex: 0 1 auto;
  margin-left: clamp(248px, 17.25vw, 353px);
}
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}
.main-nav > a,
.nav-item > a {
  color: #3b3b3b;
  font-size: clamp(14px, .98vw, 20px);
  font-weight: 500;
  line-height: 1.1;
  padding: 50px 0;
  white-space: nowrap;
}
.nav-item > a {
  display: block;
}
.main-nav > a.active,
.nav-item > a.active,
.main-nav > a:hover,
.nav-item > a:hover { color: var(--blue); }
.submenu {
  position: absolute;
  top: 100%;
  left: -20px;
  min-width: 230px;
  background: #2b2b2b;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
}
.has-dropdown:hover .submenu,
.has-dropdown:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.submenu a {
  display: block;
  color: #ccc;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.35;
  padding: 10px 20px;
  white-space: nowrap;
}
.submenu a:hover { color: #fff; background: rgba(255,255,255,.04); }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 9px;
}
.menu-toggle span {
  display: block;
  height: 3px;
  background: #3d3d3d;
  margin: 6px 0;
}

.hero {
  min-height: calc(100vh - 140px);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #eef0f3;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transition: opacity 900ms ease;
}
.hero-slide-a { background-image: linear-gradient(rgba(0,0,0,.2), rgba(0,0,0,.15)), url("assets/hkslide1.jpg"); }
.hero-slide-b { background-image: linear-gradient(rgba(255,255,255,.2), rgba(255,255,255,.2)), url("assets/hkslide2.jpg"); }
.hero-slide.is-active { opacity: 1; }
.hero-content {
  position: relative;
  z-index: 1;
  width: min(900px, calc(100% - 40px));
  text-align: center;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,.38);
}
.eyebrow {
  font-size: 24px;
  font-weight: 400;
  margin: 0 0 12px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(38px, 5vw, 74px);
  line-height: 1.08;
  font-weight: 500;
  margin: 0 auto 24px;
}
.rotator {
  min-height: 42px;
  margin: 0 0 30px;
  font-size: 34px;
  font-weight: 300;
}
.rotator span { display: none; }
.rotator span.is-current { display: inline; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 47px;
  padding: 15px 25px 14px;
  border-radius: 4px;
  background: var(--blue);
  color: #fff;
  font-weight: 500;
  line-height: 1;
  box-shadow: inset 0 1px rgba(255,255,255,.25);
}
.btn.light {
  background: #f5f5f5;
  color: #555;
}

.section { padding: 90px 0; }
.section.light { background: var(--paper); }
.intro { background: var(--paper); }
.detail-hero {
  padding: 76px 0;
  background: var(--paper);
  text-align: center;
}
.detail-hero h1 {
  font-size: 34px;
  line-height: 44px;
  font-weight: 300;
}
.detail-kicker {
  margin: 0 0 10px;
  color: var(--blue);
  font-weight: 500;
}
.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 55px;
  align-items: start;
}
.detail-content img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  margin-bottom: 30px;
}
.detail-content p {
  font-size: 16px;
  line-height: 30px;
  margin: 0 0 18px;
}
.detail-subtitle {
  font-size: 24px;
  line-height: 32px;
  font-weight: 300;
  color: var(--heading);
  margin: 34px 0 16px;
}
.detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.detail-list li {
  position: relative;
  padding-left: 18px;
  font-size: 16px;
  line-height: 28px;
}
.detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}
.detail-sidebar {
  background: #fff;
  border: 1px solid #eee;
  padding: 28px;
}
.detail-sidebar h3 {
  font-size: 19px;
  margin: 0 0 12px;
}
.detail-sidebar h3:not(:first-child) { margin-top: 28px; }
.detail-sidebar a {
  display: block;
  color: var(--text);
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}
.detail-sidebar a:hover { color: var(--blue); }
h1, h2, h3 { color: var(--heading); margin: 0; font-weight: 400; }
h2 {
  font-size: 34px;
  line-height: 44px;
  font-weight: 300;
  margin-bottom: 15px;
}
.lead {
  font-size: 18px;
  line-height: 34px;
  margin: 0 auto;
}
.services-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 56px;
  margin-top: 118px;
  text-align: center;
}
.services-mini article { padding: 0 4px; }
.svc-home { order: 1; }
.svc-restaurant { order: 2; }
.svc-factory { order: 3; }
.svc-work { order: 4; }
.svc-market { order: 5; }
.svc-hotel { order: 6; }
.services-mini h3 {
  font-size: 26px;
  line-height: 32px;
  margin: 22px 0 21px;
  font-weight: 400;
}
.services-mini p {
  margin: 0;
  color: #707070;
  font-size: 21px;
  line-height: 39px;
  font-weight: 400;
}
.service-icon {
  display: block;
  height: 70px;
  margin: 0 auto;
  font-size: 68px;
  line-height: 1;
}
.service-icon.blue { color: #4c98c9; }
.service-icon.red { color: #e45050; }
.service-icon.mint { color: #3fbfae; }
.service-icon.gold { color: #f1bd69; }
.service-icon.coral { color: #ee7757; }
.service-icon.pink { color: #df739b; }

.cta-band {
  padding: 90px 0;
  background: var(--footer);
  color: #d5d5d5;
}
.cta-band h2 { color: #fff; }
.cta-band p { margin: 0 0 28px; font-size: 16px; }
.section-title {
  font-size: 25px;
  line-height: 32px;
  font-weight: 400;
  margin-bottom: 45px;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: left;
}
.pests { grid-template-columns: repeat(4, 1fr); }
.card {
  background: #fff;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(0,0,0,.05);
}
.card img {
  width: 100%;
  aspect-ratio: 44 / 30;
  object-fit: cover;
}
.card-body { padding: 28px 28px 30px; }
.card-body span {
  display: inline-block;
  color: #fff;
  background: var(--red);
  border-radius: 2px;
  padding: 3px 9px;
  font-size: 11px;
  line-height: 17px;
  margin-bottom: 14px;
}
.card-body h3 {
  font-size: 19px;
  line-height: 26px;
  margin-bottom: 10px;
}
.card-body p { margin: 0; }
.policy {
  background: var(--paper);
}
.policy-title {
  text-align: center;
  margin-bottom: 70px;
}
.policy-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}
.policy-left > h3,
.policy-right > h3 {
  font-size: 27px;
  line-height: 34px;
  margin: 0 0 24px;
  font-weight: 400;
}
.policy-left > p {
  margin: 0 0 54px;
  font-size: 20px;
  line-height: 38px;
}
.feature-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 28px;
  align-items: start;
  margin-bottom: 42px;
}
.feature-icon {
  color: #d00000;
  font-size: 58px;
  line-height: 1;
  display: block;
  padding-top: 4px;
}
.feature-row h4 {
  color: var(--heading);
  font-size: 26px;
  line-height: 32px;
  font-weight: 400;
  margin: 0 0 18px;
}
.feature-row p {
  margin: 0;
  font-size: 20px;
  line-height: 38px;
}
.accordion {
  display: grid;
  gap: 24px;
}
.accordion-panel {
  border: 1px solid #d9dde1;
  border-radius: 6px;
  background: transparent;
  overflow: hidden;
}
.accordion-trigger {
  width: 100%;
  min-height: 76px;
  border: 0;
  background: transparent;
  color: var(--heading);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 36px;
  font-family: inherit;
  font-size: 22px;
  line-height: 1;
  font-weight: 500;
  text-align: left;
}
.accordion-trigger::after {
  content: "›";
  font-size: 34px;
  font-weight: 300;
  transform: rotate(0deg);
}
.accordion-panel.is-open .accordion-trigger::after {
  transform: rotate(90deg);
}
.accordion-body {
  display: none;
  border-top: 1px solid #d9dde1;
  padding: 31px 36px 0;
}
.accordion-panel.is-open .accordion-body {
  display: block;
}
.accordion-body p {
  margin: 0 0 28px;
  font-size: 20px;
  line-height: 38px;
}

.site-footer {
  background: var(--dark);
  color: #d5d5d5;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 45px;
  padding: 70px 0;
}
.footer-logo {
  width: 190px;
  background: #fff;
  padding: 8px 10px;
  margin-bottom: 20px;
}
.site-footer h3 {
  color: #fff;
  font-size: 19px;
  line-height: 26px;
  margin-bottom: 18px;
}
.site-footer a {
  display: block;
  color: #d5d5d5;
  margin-bottom: 8px;
}
.site-footer a:hover { color: #fff; }
.site-footer p { margin: 0 0 12px; }
.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-contact li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: #d5d5d5;
  line-height: 24px;
  margin-bottom: 12px;
}
.footer-contact a {
  display: inline;
  margin: 0;
}
.footer-icon {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  color: #d00000;
  font-size: 18px;
  line-height: 1;
}
.footer-contact li:last-child .footer-icon {
  font-size: 24px;
}
.footer-location {
  position: relative;
}
.footer-location::before {
  content: "";
  width: 13px;
  height: 13px;
  border: 2px solid #d00000;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}
.footer-location::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #d00000;
}
.copyright {
  border-top: 1px solid rgba(255,255,255,.08);
  text-align: center;
  padding: 22px 20px;
  color: #aaa;
}
.references-page {
  background: #fff;
}
.about-page {
  background: #fff;
}
.about-intro {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: stretch;
  margin-top: 42px;
}
.about-intro img {
  width: 100%;
  max-height: 100%;
  object-fit: contain;
  max-width: none;
  align-self: end;
  justify-self: center;
}
.about-intro h3,
.about-value-grid h3,
.mindset-grid h3 {
  color: var(--heading);
  font-size: 24px;
  line-height: 32px;
  font-weight: 300;
  margin: 0 0 16px;
}
.about-intro p,
.about-value-grid p,
.mindset-grid p {
  font-size: 16px;
  line-height: 30px;
  margin: 0 0 16px;
}
.about-values {
  padding-top: 20px;
}
.about-value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px;
}
.about-value-grid article {
  border-top: 2px solid #e9eef3;
  padding-top: 24px;
}
.mindset-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px;
  margin-top: 48px;
  text-align: center;
}
.mindset-circle {
  width: 132px;
  height: 132px;
  margin: 0 auto 22px;
  border: 8px solid #ee7757;
  border-bottom-color: #eef1f4;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ee7757;
  font-size: 28px;
  font-weight: 300;
}
.mindset-circle.pink {
  border-color: #df739b;
  border-bottom-color: #eef1f4;
  color: #df739b;
}
.mindset-circle.purple {
  border-color: #c78ed7;
  border-bottom-color: #eef1f4;
  color: #c78ed7;
}
.mindset-circle.brown {
  border-color: #9c7c6f;
  border-bottom-color: #eef1f4;
  color: #9c7c6f;
}
.contact-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 140px);
  background: #fff;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 650px;
  border: 0;
  display: block;
}
.contact-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px min(90px, 7vw);
}
.contact-content .section-title {
  text-align: left;
  margin-bottom: 24px;
}
.contact-content p {
  font-size: 16px;
  line-height: 30px;
  margin: 0 0 22px;
}
.contact-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}
.contact-list li {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  font-size: 15px;
  line-height: 25px;
  margin-bottom: 10px;
}
.contact-list span {
  color: var(--heading);
  font-weight: 500;
}
.contact-list a {
  color: var(--text);
}
.contact-list a:hover {
  color: var(--blue);
}
.contact-form {
  margin-top: 8px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 20px;
}
.contact-form label {
  display: block;
}
.contact-form label > span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 0;
  background: #fff;
  color: var(--text);
  font: inherit;
  font-size: 14px;
  line-height: 24px;
  padding: 12px 14px;
  outline: none;
}
.contact-form input,
.contact-form select {
  height: 50px;
}
.contact-form textarea {
  min-height: 160px;
  resize: vertical;
  margin-top: 14px;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
}
.contact-form .btn {
  border: 0;
  margin-top: 18px;
  cursor: pointer;
}
.reference-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
}
.reference-card {
  border: 1px solid #eee;
  background: #fff;
  min-height: 180px;
  display: grid;
  place-items: center;
  padding: 22px;
}
.reference-card img {
  width: 100%;
  max-width: 180px;
  height: auto;
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .nav-wrap { gap: 30px; }
  .main-nav { gap: 26px; }
}

@media (max-width: 1024px) {
  .site-header {
    position: relative;
  }
  .site-header .container {
    width: 100%;
  }
  .nav-wrap {
    min-height: 170px;
    padding: 0 clamp(24px, 5.4vw, 54px);
    justify-content: space-between;
  }
  .brand img { width: clamp(180px, 55vw, 255px); }
  .menu-toggle {
    display: block;
    position: relative;
    width: 58px;
    height: 58px;
    padding: 8px;
  }
  .menu-toggle span {
    height: 5px;
    margin: 9px 0;
    background: #3b3b3b;
    transition: transform 180ms ease, opacity 180ms ease;
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(14px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-14px) rotate(-45deg);
  }
  .main-nav {
    position: absolute;
    top: 170px;
    left: 0;
    right: 0;
    display: none;
    background: #252525;
    padding: 20px clamp(24px, 6.6vw, 66px) 24px;
    box-shadow: none;
    margin-left: 0;
    width: 100%;
  }
  .main-nav.is-open { display: grid; gap: 0; }
  .nav-item { display: block; }
  .main-nav > a,
  .nav-item > a {
    display: block;
    color: #d7d7d7;
    font-size: 18px;
    line-height: 1.15;
    font-weight: 500;
    padding: 13px 0 15px;
    border-bottom: 1px solid #4a4a4a;
  }
  .main-nav > a.active,
  .nav-item > a.active,
  .main-nav > a:hover,
  .nav-item > a:hover {
    color: var(--blue);
  }
  .has-dropdown > a {
    position: relative;
    padding-right: 44px;
  }
  .has-dropdown > a::after {
    content: "";
    position: absolute;
    right: 6px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-65%) rotate(45deg);
  }
  .submenu {
    display: none;
  }
  .submenu a {
    color: #bfbfbf;
    font-size: 18px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .hero { min-height: calc(100vh - 170px); }
  .hero-content { text-align: center; }
  .eyebrow { font-size: 18px; }
  .rotator { font-size: 25px; }
  .services-mini,
  .card-grid,
  .pests,
  .detail-layout,
  .about-intro,
  .about-value-grid,
  .mindset-grid,
  .reference-grid,
  .policy-layout,
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-page { grid-template-columns: 1fr; }
  .contact-map iframe { min-height: 360px; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 44px, 1110px); }
  .section { padding: 74px 0; }
  .hero-content {
    width: calc(100% - 44px);
    padding: 0;
  }
  .hero h1 {
    font-size: 34px;
    line-height: 1.14;
    max-width: 340px;
  }
  .hero .btn {
    min-width: 100px;
    max-width: 180px;
  }
  h2 { font-size: 28px; line-height: 38px; }
  .lead { font-size: 17px; line-height: 32px; }
  .services-mini,
  .card-grid,
  .pests,
  .detail-layout,
  .detail-list,
  .about-intro,
  .about-value-grid,
  .mindset-grid,
  .reference-grid,
  .form-grid,
  .policy-layout,
  .footer-grid { grid-template-columns: 1fr; }
  .contact-content { padding: 64px 22px; }
  .contact-list li { grid-template-columns: 1fr; gap: 2px; }
  .policy-layout { gap: 44px; }
  .feature-row { grid-template-columns: 58px 1fr; gap: 20px; }
  .feature-icon { font-size: 46px; }
  .policy-left > p,
  .feature-row p,
  .accordion-body p { font-size: 16px; line-height: 30px; }
  .policy-left > h3,
  .policy-right > h3,
  .feature-row h4 { font-size: 23px; line-height: 30px; }
  .accordion-trigger { min-height: 66px; padding: 0 22px; font-size: 19px; }
  .accordion-body { padding: 24px 22px 0; }
  .footer-grid { gap: 28px; padding: 58px 0; }
}

.home-page main h1,
.home-page main h2,
.home-page main h3,
.home-page main h4,
.home-page main h5,
.home-page main h6,
.home-page .section-title,
.home-page .services-mini h3,
.home-page .card-body h3,
.home-page .policy-left > h3,
.home-page .policy-right > h3,
.home-page .feature-row h4,
.home-page .accordion-trigger {
  font-family: "Rubik", Arial, sans-serif;
  font-size: var(--home-heading-size);
  line-height: var(--home-heading-line);
  font-weight: 300;
}

.home-page main p,
.home-page .lead,
.home-page .eyebrow,
.home-page .rotator,
.home-page .services-mini p,
.home-page .cta-band p,
.home-page .card-body p,
.home-page .policy-left > p,
.home-page .feature-row p,
.home-page .accordion-body p {
  font-family: "Rubik", Arial, sans-serif;
  font-size: var(--home-text-size);
  line-height: var(--home-text-line);
  font-weight: 400;
}

.home-page .hero-content {
  text-shadow:
    0 2px 0 rgba(0,0,0,.42),
    0 6px 18px rgba(0,0,0,.68),
    0 0 2px rgba(0,0,0,.72);
}

.home-page .hero .eyebrow {
  font-size: clamp(16px, 1.25vw, 21px);
  line-height: 1.25;
  font-weight: 400;
}

.home-page .hero h1 {
  font-size: clamp(32px, 3.35vw, 50px);
  line-height: 1.08;
  font-weight: 500;
  max-width: 820px;
}

.home-page .hero .rotator {
  font-size: clamp(20px, 1.75vw, 27px);
  line-height: 1.2;
  font-weight: 400;
}

.home-page .hero .btn {
  text-shadow: none;
}

@media (max-width: 640px) {
  .home-page .hero .eyebrow {
    font-size: 19px;
  }

  .home-page .hero h1 {
    font-size: 28px;
    line-height: 1.14;
    max-width: 360px;
  }

  .home-page .hero .rotator {
    font-size: 20px;
  }
}
