@font-face {
  font-family: Jakarta;
  src: url("/assets/plus-jakarta-sans-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}
:root {
  --navy: #082c49;
  --blue: #087db7;
  --blue-deep: #00699e;
  --text: #4e6576;
  --line: #dce5eb;
  --light: #f3f7f9;
  --ice: #e9f5fb;
  --white: #fff;
  --green: #087c4d;
  --radius: 20px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 105px;
}
body {
  margin: 0;
  background: var(--white);
  color: var(--navy);
  font-family: Jakarta, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
button,
summary {
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1.16;
  letter-spacing: -0.045em;
}
p {
  color: var(--text);
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 6px;
  border-radius: 4px;
}
.container {
  width: min(1216px, calc(100% - 96px));
  margin-inline: auto;
}
.icon-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  padding: 12px 24px;
  z-index: 100;
  background: var(--navy);
  color: white;
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #ecf0f3;
  position: sticky;
  top: 0;
  z-index: 30;
}
.nav-bar {
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand img {
  border-radius: 50%;
  width: 50px;
  height: 50px;
}
.brand-type {
  font-size: 27px;
  font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1.15;
}
.brand-type > span {
  color: var(--blue);
}
.brand-type small {
  display: block;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 2.2px;
  margin-top: 5px;
}
.desktop-nav {
  display: flex;
  gap: 32px;
  margin-left: auto;
  margin-right: 18px;
  font-size: 14px;
  font-weight: 600;
}
.desktop-nav a {
  padding: 14px 0;
  position: relative;
}
.desktop-nav a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 100%;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s;
}
.desktop-nav a:hover:after {
  transform: scaleX(1);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 16px 22px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  background: #0d456c;
  transform: translateY(-2px);
}
.button:active {
  transform: translateY(0);
}
.button-small {
  min-height: 46px;
  padding: 13px 18px;
  font-size: 13px;
}
.button-small .icon {
  width: 18px;
  height: 18px;
}
.button-arrow {
  margin-left: 8px;
  width: 19px;
  height: 19px;
}
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  width: 46px;
  height: 46px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}
.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  background: var(--navy);
  transition: transform 0.2s;
}
.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}
.mobile-nav[hidden] {
  display: none;
}
.mobile-nav {
  padding: 12px 24px 20px;
  border-top: 1px solid var(--line);
  background: white;
}
.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-weight: 600;
}
.hero {
  display: grid;
  grid-template-columns: 1.03fr 1fr;
  gap: 62px;
  align-items: center;
  padding-top: 48px;
  padding-bottom: 48px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.9px;
  line-height: 1.5;
  color: var(--blue-deep);
}
.location {
  background: var(--ice);
  padding: 7px 11px;
  border-radius: 5px;
  font-size: 10px;
  letter-spacing: 1.65px;
}
.location .icon {
  width: 14px;
  height: 14px;
}
.hero h1 {
  font-size: clamp(48px, 5.1vw, 72px);
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: -0.062em;
  margin: 25px 0 23px;
}
.hero h1 span {
  color: var(--blue);
}
.hero-copy > p {
  max-width: 420px;
  font-size: 16px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 30px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 0;
  transition: color 0.2s;
}
.text-link .icon {
  width: 17px;
  height: 17px;
  transition: transform 0.2s;
}
.text-link:hover {
  color: var(--blue);
}
.text-link:hover .icon {
  transform: translateX(3px);
}
.hero-note {
  margin-top: 25px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 10px;
  color: var(--text);
}
.check-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--ice);
  color: var(--blue);
}
.check-circle .icon {
  width: 11px;
  height: 11px;
  stroke-width: 2.5;
}
.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 536px;
  margin-bottom: 14px;
}
.hero-photo {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: 65% center;
  border-radius: var(--radius);
}
.season-tag {
  position: absolute;
  top: 21px;
  left: 21px;
  right: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid white;
  padding: 12px 15px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 600;
  color: var(--navy);
}
.season-tag .icon {
  width: 17px;
  height: 17px;
}
.season-tag .icon:nth-of-type(2) {
  color: var(--blue);
}
.tag-divider {
  height: 16px;
  width: 1px;
  background: var(--line);
}
.season-tag > span:last-child {
  margin-left: 2px;
}
.comfort-label {
  position: absolute;
  bottom: 30px;
  left: -27px;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid #e6edf3;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 12px 28px #062b4010;
}
.comfort-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ice);
  color: var(--blue);
}
.comfort-icon .icon {
  width: 28px;
  height: 28px;
}
.comfort-label small {
  font-size: 8px;
  letter-spacing: 1.8px;
  color: var(--text);
  font-weight: 600;
}
.comfort-label strong {
  display: block;
  margin-top: 6px;
  font-size: 16px;
  letter-spacing: -0.4px;
  line-height: 1.4;
  font-weight: 650;
}
.image-caption {
  position: absolute;
  bottom: -22px;
  right: 3px;
  font-size: 9px;
  color: #667986;
}
.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 22px 0 35px;
}
.benefits > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  position: relative;
  font-size: 12px;
  line-height: 1.65;
  color: var(--text);
}
.benefits > div + div:before {
  content: "";
  position: absolute;
  left: 0;
  height: 35px;
  width: 1px;
  background: var(--line);
}
.benefits .icon {
  color: var(--blue);
  width: 27px;
  height: 27px;
}
.benefits strong {
  color: var(--navy);
  font-weight: 600;
}
.section {
  padding: 88px 0;
}
.services {
  background: var(--light);
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 35px;
}
h2 {
  font-size: 38px;
  font-weight: 650;
  line-height: 1.2;
}
.section-heading h2 {
  margin-top: 14px;
}
.section-heading h2 span {
  color: var(--text);
  font-weight: 500;
}
.section-heading > p {
  max-width: 295px;
  font-size: 14px;
  padding-bottom: 5px;
  line-height: 1.8;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  padding: 28px 26px 20px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.2s,
    border-color 0.2s;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: #91b4c8;
}
.service-card.featured {
  background: #e9f4fa;
  border-color: #c4e0ef;
}
.service-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.service-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--ice);
  color: var(--blue-deep);
}
.featured .service-icon {
  background: white;
}
.service-icon .icon {
  width: 25px;
  height: 25px;
}
.service-number {
  color: #728896;
  font-size: 12px;
}
.service-card h3 {
  font-size: 20px;
  letter-spacing: -0.6px;
  font-weight: 650;
  margin-bottom: 14px;
}
.service-card > p {
  font-size: 13px;
  line-height: 1.85;
}
.service-card ul {
  padding: 0;
  margin: 22px 0 26px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-card li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 11px;
  line-height: 1.65;
  color: var(--text);
}
.service-card li .icon {
  width: 15px;
  height: 15px;
  margin-top: 2px;
  color: var(--blue);
}
.service-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 9px;
  padding: 17px 0 0;
  border-top: 1px solid var(--line);
  font-size: 11px;
  font-weight: 700;
  margin-top: auto;
  min-height: 47px;
  transition: color 0.2s;
}
.service-link .icon {
  width: 18px;
  height: 18px;
}
.service-link:hover {
  color: var(--blue);
}
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: center;
}
.brand-panel {
  border-radius: 16px;
  min-height: 400px;
  background: #eaf6fd;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 38px;
  gap: 24px;
}
.brand-panel img {
  width: 286px;
  max-width: 90%;
  height: auto;
  border-radius: 50%;
  mix-blend-mode: multiply;
}
.brand-panel > span {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--blue-deep);
  text-align: center;
}
.about-copy h2 {
  margin: 16px 0 24px;
}
.about-copy h2 span {
  color: var(--blue);
}
.about-copy p {
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 15px;
}
.about-values {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 25px;
  border-top: 1px solid var(--line);
  padding-top: 23px;
  margin-top: 25px;
}
.about-values span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 600;
}
.about-values .icon {
  width: 18px;
  height: 18px;
  color: var(--blue);
}
.faq {
  padding-top: 16px;
  padding-bottom: 80px;
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
}
.faq h2 {
  font-size: 31px;
  margin: 14px 0 20px;
}
.faq-grid > div > p {
  font-size: 13px;
  line-height: 1.9;
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  font-size: 13px;
  font-weight: 600;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary .icon {
  width: 18px;
  height: 18px;
  transition: transform 0.2s;
}
.faq details[open] summary .icon {
  transform: rotate(45deg);
}
.faq details[open] summary {
  color: var(--blue-deep);
}
.faq details p {
  font-size: 13px;
  line-height: 1.9;
  padding-bottom: 22px;
  max-width: 530px;
}
.contact {
  padding: 0 0 70px;
}
.contact-panel {
  border-radius: 18px;
  background: var(--navy);
  color: white;
  padding: 57px 55px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 64px;
  position: relative;
  overflow: hidden;
}
.contact-panel:after {
  content: "";
  width: 320px;
  height: 320px;
  border: 1px solid #ffffff0d;
  border-radius: 50%;
  position: absolute;
  right: -130px;
  top: -190px;
  pointer-events: none;
}
.contact-panel .eyebrow {
  color: #a1d4f1;
  font-size: 9px;
  letter-spacing: 1.8px;
}
.contact-panel .eyebrow .icon {
  width: 13px;
  height: 13px;
}
.contact h2 {
  font-size: 34px;
  margin: 18px 0;
}
.contact p {
  color: #c5d4de;
  font-size: 12px;
  margin-bottom: 25px;
}
.button-light {
  background: white;
  color: var(--navy);
}
.button-light:hover {
  background: #d9f1ff;
}
.contact-details {
  display: grid;
  gap: 9px;
}
.contact-details > a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid #ffffff25;
}
.contact-details > a:last-child {
  border: 0;
}
.contact-details > a > .icon {
  color: #8fcdf0;
  width: 22px;
  height: 22px;
}
.contact-details > a > .icon:last-child {
  margin-left: auto;
  width: 16px;
  height: 16px;
}
.contact-details small {
  display: block;
  color: #a8c2d5;
  font-size: 8px;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}
.contact-details strong {
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.3px;
}
.contact-details a:hover strong {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 28px;
}
.footer .brand-type {
  font-size: 24px;
}
.footer .brand img {
  width: 46px;
  height: 46px;
}
.footer .brand-type small {
  font-size: 7px;
  letter-spacing: 1.8px;
}
.footer-main p {
  font-size: 11px;
}
.back-top {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 11px;
}
.back-top .icon {
  width: 16px;
  height: 16px;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 22px 0 27px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 9px;
  color: var(--text);
}
.floating-whatsapp {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 25;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: white;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 4px 18px #082c4925;
  transition:
    transform 0.2s,
    background 0.2s;
}
.floating-whatsapp .icon {
  width: 29px;
  height: 29px;
}
.floating-whatsapp:hover {
  transform: translateY(-3px);
  background: #096a43;
}
@media (min-width: 1500px) {
  .hero {
    gap: 80px;
    padding-top: 60px;
    padding-bottom: 55px;
  }
  .hero-visual {
    min-height: 580px;
  }
  .hero h1 {
    font-size: 78px;
  }
  .hero-copy > p {
    font-size: 17px;
  }
  .hero-note {
    font-size: 11px;
  }
}
@media (max-width: 1150px) {
  .container {
    width: calc(100% - 64px);
  }
  .desktop-nav {
    gap: 20px;
    margin-right: 0;
  }
  .hero {
    gap: 42px;
  }
  .hero-actions {
    gap: 12px;
  }
  .hero-visual {
    min-height: 518px;
  }
  .hero h1 {
    font-size: 60px;
  }
  .text-link {
    font-size: 12px;
  }
  .service-card {
    padding: 24px 20px 18px;
  }
  .service-card h3 {
    font-size: 18px;
  }
  .about-grid,
  .faq-grid {
    gap: 48px;
  }
  .about-values {
    flex-direction: column;
  }
  .contact-panel {
    padding: 45px 38px;
    gap: 30px;
  }
  .contact h2 {
    font-size: 30px;
  }
  .contact-details strong {
    font-size: 15px;
  }
  .header-cta {
    font-size: 11px;
  }
  .brand-type {
    font-size: 25px;
  }
  .brand-type small {
    font-size: 7px;
  }
}
@media (max-width: 900px) {
  .container {
    width: calc(100% - 48px);
  }
  .nav-bar {
    height: 80px;
  }
  .desktop-nav {
    gap: 18px;
    font-size: 12px;
  }
  .header-cta {
    display: none;
  }
  .hero {
    gap: 30px;
    padding-top: 34px;
  }
  .hero h1 {
    font-size: 52px;
  }
  .hero-copy > p {
    font-size: 14px;
  }
  .hero-visual {
    min-height: 490px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .hero-note {
    font-size: 9px;
    max-width: 220px;
    line-height: 1.8;
  }
  .season-tag {
    padding: 10px;
    left: 15px;
    top: 15px;
    gap: 7px;
    font-size: 8px;
  }
  .comfort-label {
    left: -15px;
    bottom: 27px;
    padding: 16px;
    gap: 12px;
  }
  .comfort-label strong {
    font-size: 14px;
  }
  .comfort-icon {
    width: 40px;
    height: 40px;
  }
  .benefits > div {
    font-size: 10px;
    gap: 12px;
  }
  .section {
    padding: 64px 0;
  }
  h2 {
    font-size: 32px;
  }
  .section-heading > p {
    max-width: 250px;
    font-size: 12px;
  }
  .service-grid {
    gap: 13px;
  }
  .service-card {
    padding: 22px 17px 17px;
  }
  .service-card h3 {
    font-size: 17px;
  }
  .service-card > p {
    font-size: 12px;
  }
  .service-card li {
    font-size: 10px;
  }
  .service-link {
    font-size: 10px;
  }
  .brand-panel {
    min-height: 330px;
    padding: 24px;
  }
  .brand-panel > span {
    font-size: 8px;
  }
  .about-copy p {
    font-size: 12px;
  }
  .about-grid,
  .faq-grid {
    gap: 36px;
  }
  .faq {
    padding-top: 0;
  }
  .faq h2 {
    font-size: 27px;
  }
  .contact {
    padding-top: 0;
  }
  .contact-panel {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .contact-details {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .contact-details > a {
    border: 0;
  }
  .footer-main p {
    display: none;
  }
}
@media (max-width: 640px) {
  html {
    scroll-padding-top: 88px;
  }
  .container {
    width: calc(100% - 40px);
  }
  .nav-bar {
    height: 76px;
    gap: 12px;
  }
  .brand img {
    width: 42px;
    height: 42px;
  }
  .brand-type {
    font-size: 25px;
  }
  .brand-type small {
    font-size: 7px;
    letter-spacing: 1.8px;
  }
  .desktop-nav {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 34px;
    padding-top: 32px;
    padding-bottom: 26px;
  }
  .location {
    font-size: 9px;
    padding: 7px 10px;
  }
  .hero h1 {
    font-size: clamp(47px, 11.8vw, 69px);
    margin: 23px 0 21px;
    line-height: 1.07;
    letter-spacing: -0.055em;
  }
  .hero h1 br:nth-of-type(2) {
    display: none;
  }
  .hero h1 span:before {
    content: " ";
  }
  .hero-copy > p {
    font-size: 15px;
    max-width: 470px;
    line-height: 1.8;
  }
  .hero-actions {
    margin-top: 25px;
    align-items: flex-start;
    gap: 11px;
  }
  .hero-actions .button {
    font-size: 14px;
    min-height: 55px;
    padding: 16px 19px;
  }
  .hero-actions .text-link {
    font-size: 13px;
  }
  .hero-note {
    font-size: 10px;
    max-width: none;
    margin-top: 12px;
  }
  .hero-visual {
    min-height: 370px;
    height: 105vw;
    max-height: 460px;
    margin: 0 0 14px 9px;
    align-self: stretch;
  }
  .hero-photo {
    border-radius: 16px;
  }
  .season-tag {
    left: 15px;
    top: 15px;
    font-size: 9px;
    padding: 10px 13px;
  }
  .comfort-label {
    left: -9px;
    bottom: 20px;
    gap: 12px;
    padding: 16px 19px;
    border-radius: 10px;
  }
  .comfort-label strong {
    font-size: 15px;
  }
  .comfort-label small {
    font-size: 8px;
  }
  .image-caption {
    font-size: 8px;
  }
  .benefits {
    grid-template-columns: 1fr;
    padding: 6px 0 28px;
    gap: 0;
  }
  .benefits > div {
    justify-content: flex-start;
    font-size: 12px;
    padding: 16px 7px;
    gap: 15px;
  }
  .benefits > div > span br {
    display: none;
  }
  .benefits > div > span strong:before {
    content: " ";
  }
  .benefits > div + div:before {
    left: 0;
    top: 0;
    width: 100%;
    height: 1px;
    background: #e8eef2;
  }
  .benefits .icon {
    width: 23px;
    height: 23px;
  }
  .section {
    padding: 54px 0;
  }
  .section-heading {
    display: block;
    margin-bottom: 26px;
  }
  .eyebrow {
    font-size: 10px;
    letter-spacing: 1.65px;
  }
  h2 {
    font-size: 32px;
  }
  .section-heading > p {
    margin-top: 18px;
    font-size: 14px;
    max-width: 370px;
  }
  .service-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .service-card {
    padding: 26px 24px 22px;
  }
  .service-top {
    margin-bottom: 20px;
  }
  .service-card h3 {
    font-size: 22px;
  }
  .service-card > p {
    font-size: 14px;
  }
  .service-card li {
    font-size: 12px;
  }
  .service-link {
    font-size: 12px;
    padding-top: 19px;
  }
  .service-card ul {
    margin: 22px 0 24px;
  }
  .about-grid {
    display: flex;
    flex-direction: column-reverse;
    gap: 30px;
  }
  .about-copy h2 {
    font-size: 31px;
  }
  .about-copy p {
    font-size: 14px;
    line-height: 1.85;
  }
  .about-values {
    gap: 13px;
  }
  .about-values span {
    font-size: 12px;
  }
  .brand-panel {
    width: 100%;
    min-height: 0;
    padding: 28px;
    gap: 19px;
  }
  .brand-panel img {
    width: 220px;
  }
  .brand-panel > span {
    font-size: 8px;
    letter-spacing: 1.8px;
  }
  .faq {
    padding-top: 4px;
  }
  .faq-grid {
    display: block;
  }
  .faq h2 {
    font-size: 29px;
  }
  .faq-grid > div > p {
    font-size: 14px;
    margin-bottom: 22px;
  }
  .faq summary {
    font-size: 14px;
    line-height: 1.7;
    min-height: 70px;
  }
  .faq details p {
    font-size: 14px;
  }
  .contact {
    padding: 0 0 45px;
  }
  .contact-panel {
    padding: 31px 24px;
    border-radius: 14px;
    gap: 21px;
  }
  .contact h2 {
    font-size: 29px;
    line-height: 1.22;
  }
  .contact p {
    font-size: 14px;
    line-height: 1.8;
  }
  .contact .button {
    font-size: 12px;
    gap: 9px;
    padding: 15px 14px;
    width: 100%;
  }
  .contact .button .icon {
    width: 21px;
    height: 21px;
  }
  .contact .button-arrow {
    margin-left: 0;
  }
  .contact-details {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact-details > a {
    padding: 17px 0;
    gap: 13px;
  }
  .contact-details > a:first-child {
    border-bottom: 1px solid #ffffff25;
  }
  .contact-details strong {
    font-size: 15px;
  }
  .contact-details small {
    font-size: 8px;
  }
  .footer-main {
    align-items: flex-start;
    gap: 20px;
    flex-direction: column;
    padding-bottom: 24px;
  }
  .footer .brand-type {
    font-size: 25px;
  }
  .footer .back-top {
    font-size: 12px;
    min-height: 35px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 7px;
    font-size: 10px;
    padding-bottom: 86px;
    padding-right: 25px;
  }
  .floating-whatsapp {
    bottom: max(16px, env(safe-area-inset-bottom));
    right: 16px;
    width: 54px;
    height: 54px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}

/* Readable type across all viewports. */
.hero-note,
.benefits > div,
.service-number,
.footer-bottom,
.image-caption {
  font-size: 0.75rem;
}
.eyebrow,
.location,
.season-tag,
.brand-panel > span {
  font-size: 0.75rem;
}
.text-link,
.button-small,
.service-link,
.back-top {
  font-size: 0.875rem;
}
.section-heading > p,
.service-card > p,
.about-copy p,
.faq details p,
.faq-grid > div > p,
.contact p {
  font-size: 1rem;
}
.service-card li,
.about-values span,
.faq summary,
.footer-main p {
  font-size: 0.875rem;
}
.service-card h3 {
  font-size: 1.35rem;
}
.contact-details small {
  font-size: 0.75rem;
}
.contact-details strong {
  font-size: 1rem;
}
.comfort-label small {
  font-size: 0.625rem;
}
.image-caption {
  font-size: 0.625rem;
}
.contact-panel .eyebrow {
  font-size: 0.75rem;
}
.hero-note {
  max-width: none;
}
.service-link {
  line-height: 1.6;
}
.brand-panel > span {
  letter-spacing: 1.4px;
}
.hero-copy > p {
  font-size: 1rem;
}
@media (max-width: 900px) and (min-width: 641px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 25px;
  }
  .service-top {
    grid-column: 1/-1;
  }
  .service-card h3 {
    grid-column: 1;
  }
  .service-card > p {
    grid-column: 1;
    grid-row: 3;
  }
  .service-card ul {
    grid-column: 2;
    grid-row: 2/4;
    margin: 0;
  }
  .service-link {
    grid-column: 1/-1;
    margin-top: 22px;
  }
  .season-tag {
    font-size: 0.65rem;
  }
}
@media (max-width: 640px) {
  .hero-note {
    font-size: 0.7rem;
  }
  .season-tag {
    font-size: 0.7rem;
  }
  .contact .button {
    font-size: 0.875rem;
  }
  .contact-panel {
    padding: 30px 22px;
  }
  .contact-details strong {
    font-size: 0.9rem;
  }
  .brand-panel > span {
    font-size: 0.65rem;
  }
  .benefits > div {
    font-size: 0.875rem;
  }
  .hero-visual {
    min-height: 355px;
  }
  .contact .button-arrow {
    width: 17px;
    height: 17px;
  }
}
