:root {
  --ink: oklch(25% 0.075 247);
  --ink-soft: oklch(40% 0.045 245);
  --navy: oklch(34% 0.115 246);
  --navy-deep: oklch(25% 0.09 247);
  --blue: oklch(57% 0.13 237);
  --blue-bright: oklch(72% 0.135 224);
  --ice: oklch(97% 0.018 232);
  --cloud: oklch(99% 0.006 232);
  --line: oklch(88% 0.026 237);
  --white: oklch(99.5% 0.004 230);
  --success: oklch(73% 0.205 148);
  --shadow: 0 22px 55px oklch(28% 0.08 244 / 0.13);
  --shell: min(1180px, calc(100% - 48px));
  --radius: 10px;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--cloud);
  font-family: "Figtree", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--blue-bright);
  outline-offset: 4px;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding-block: clamp(72px, 8vw, 112px);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  border-radius: 6px;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-150%);
  transition: transform 180ms var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .085em;
  line-height: 1.2;
  text-transform: uppercase;
}

.title-rule {
  width: 54px;
  height: 3px;
  margin-block: 20px;
  border-radius: 99px;
  background: var(--blue);
}

.title-rule.centered {
  margin-inline: auto;
  margin-block: 14px 0;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 12px 22px;
  border: 1.5px solid transparent;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .035em;
  line-height: 1.1;
  text-transform: uppercase;
  transition: color 220ms var(--ease), background-color 220ms var(--ease), border-color 220ms var(--ease), transform 220ms var(--ease), box-shadow 220ms var(--ease);
}

.button svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 10px 28px oklch(28% 0.1 245 / .22);
}

.button-primary:hover {
  background: var(--navy-deep);
  box-shadow: 0 14px 34px oklch(25% 0.1 245 / .28);
}

.button-secondary {
  color: var(--navy-deep);
  border-color: var(--navy);
  background: oklch(99% .006 230 / .72);
}

.button-secondary:hover {
  color: var(--white);
  background: var(--navy);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 720ms var(--ease), transform 720ms var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: 104px;
  border-bottom: 1px solid transparent;
  background: oklch(99.5% .004 230 / .96);
  transition: height 260ms var(--ease), border-color 260ms var(--ease), box-shadow 260ms var(--ease);
}

.site-header.is-scrolled {
  height: 82px;
  border-color: var(--line);
  box-shadow: 0 8px 30px oklch(25% .06 245 / .09);
}

.header-inner {
  display: grid;
  height: 100%;
  grid-template-columns: 230px 1fr auto;
  align-items: center;
  gap: 30px;
}

.brand {
  display: block;
  width: 220px;
  height: 72px;
}

.brand-logo-frame {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: multiply;
  transition: transform 260ms var(--ease);
}

.brand:hover img {
  transform: translateY(-2px);
}

.site-header.is-scrolled .brand-logo-frame {
  transform: scale(.86);
  transform-origin: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(21px, 2.4vw, 40px);
}

.site-nav a {
  position: relative;
  padding-block: 13px;
  color: var(--ink);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .025em;
  text-transform: uppercase;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 250ms var(--ease);
}

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

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-contact {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 9px;
  color: var(--white);
  background: var(--navy);
  font-size: .94rem;
  font-weight: 800;
  box-shadow: 0 9px 24px oklch(30% .1 245 / .16);
  transition: transform 220ms var(--ease), background-color 220ms var(--ease);
}

.header-contact:hover {
  background: var(--navy-deep);
  transform: translateY(-2px);
}

.header-contact svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 0;
  border-radius: 7px;
  color: var(--navy);
  background: transparent;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  border-radius: 3px;
  background: currentColor;
  transition: transform 220ms var(--ease), opacity 180ms var(--ease);
}

.menu-toggle[aria-expanded="true"] > span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] > span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: 780px;
  padding-top: 104px;
  overflow: hidden;
  background: var(--ice);
}

.hero-photo,
.hero-shade {
  position: absolute;
  inset: 104px 0 0;
  width: 100%;
  height: calc(100% - 104px);
}

.hero-photo {
  object-fit: cover;
  object-position: 55% center;
}

.hero-shade {
  background: linear-gradient(90deg, oklch(97% .018 232 / .98) 0%, oklch(97% .018 232 / .93) 31%, oklch(97% .018 232 / .5) 48%, transparent 68%), linear-gradient(0deg, oklch(96% .02 232 / .32), transparent 34%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 676px;
}

.hero-copy {
  width: min(590px, 55%);
  padding-top: clamp(66px, 7vw, 98px);
}

.hero-copy .eyebrow {
  display: none;
}

.hero h1 {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(2.8rem, 4.25vw, 4.3rem);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: .99;
}

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

.hero-description {
  max-width: 570px;
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: clamp(.98rem, 1.3vw, 1.08rem);
  font-weight: 500;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-actions .button-primary {
  padding-inline: 18px 22px;
}

.hero-actions .button-primary svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
}

.hero-actions .button-primary span {
  display: grid;
  gap: 2px;
  text-align: left;
}

.hero-actions small {
  color: inherit;
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .03em;
}

.coverage-badge {
  position: absolute;
  right: 0;
  bottom: 153px;
  display: flex;
  min-width: 300px;
  align-items: center;
  gap: 16px;
  padding: 19px 24px;
  border-radius: 11px;
  color: var(--white);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.coverage-badge svg {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.4;
}

.coverage-badge span {
  display: grid;
  font-size: 1rem;
  line-height: 1.25;
}

.coverage-badge strong {
  font-size: 1.15rem;
}

.hero-proof {
  position: absolute;
  bottom: 72px;
  left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(24px, 4.2vw, 62px);
  color: var(--ink);
  font-size: .84rem;
  font-weight: 600;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-proof svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: var(--blue);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

.hero-wave {
  position: absolute;
  z-index: 3;
  right: -1px;
  bottom: -1px;
  left: -1px;
  width: calc(100% + 2px);
  height: 94px;
}

/* Services */
.services {
  position: relative;
  background: linear-gradient(180deg, var(--ice), var(--cloud));
}

.section-heading {
  max-width: 780px;
  margin: 0 auto clamp(38px, 5vw, 58px);
  text-align: center;
}

.section-heading .eyebrow {
  margin-bottom: 9px;
}

.section-heading h2,
.about h2,
.location-copy h2,
.contact-copy h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(1.85rem, 3.4vw, 3rem);
  font-weight: 850;
  letter-spacing: -.035em;
  line-height: 1.08;
}

.services .section-heading h2,
.advantages .section-heading h2 {
  font-size: clamp(1.7rem, 2.7vw, 2.55rem);
  text-transform: uppercase;
}

.service-rail {
  display: grid;
  overflow: hidden;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 20px 58px oklch(30% .06 240 / .09);
}

.service-item {
  position: relative;
  min-height: 390px;
  padding: 39px 30px 30px;
  text-align: center;
}

.service-item + .service-item {
  border-left: 1px solid var(--line);
}

.service-item:nth-child(2),
.service-item:nth-child(4) {
  background: var(--ice);
}

.service-number {
  position: absolute;
  top: 17px;
  left: 20px;
  color: var(--blue);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .14em;
}

.service-icon {
  display: grid;
  width: 86px;
  height: 86px;
  margin: 7px auto 24px;
  place-items: center;
  border: 2px solid var(--blue);
  border-radius: 50%;
  color: var(--navy);
  transition: color 260ms var(--ease), background-color 260ms var(--ease), transform 260ms var(--ease);
}

.service-item:hover .service-icon {
  color: var(--white);
  background: var(--navy);
  transform: rotate(-4deg) scale(1.04);
}

.service-icon svg {
  width: 45px;
  height: 45px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.service-item h3 {
  margin-bottom: 12px;
  font-size: 1.05rem;
  font-weight: 850;
  letter-spacing: .01em;
  text-transform: uppercase;
}

.service-item p {
  min-height: 80px;
  margin-bottom: 22px;
  color: var(--ink-soft);
  font-size: .91rem;
}

.service-item > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 800;
}

.service-item > a svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform 220ms var(--ease);
}

.service-item > a:hover svg {
  transform: translateX(4px);
}

/* About */
.about {
  overflow: hidden;
  background: var(--cloud);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(420px, 1.15fr);
  align-items: start;
  gap: clamp(55px, 9vw, 130px);
}

.about-intro {
  position: relative;
}

.about-intro::after {
  position: absolute;
  top: 10px;
  right: clamp(-65px, -5vw, -28px);
  width: 1px;
  height: calc(100% - 12px);
  background: var(--line);
  content: "";
}

.about-copy > p {
  max-width: 66ch;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  line-height: 1.72;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-tags span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  background: var(--ice);
  font-size: .78rem;
  font-weight: 750;
}

.about-tags span::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-bright);
  content: "";
}

/* Location */
.location {
  background: var(--ice);
}

.location-grid {
  display: grid;
  min-height: 520px;
  overflow: hidden;
  grid-template-columns: minmax(380px, .88fr) minmax(0, 1.12fr);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 22px 62px oklch(30% .06 240 / .1);
}

.location-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 5.4vw, 70px);
}

.location-copy h2 {
  max-width: 14ch;
  margin-bottom: 22px;
}

.location-intro {
  max-width: 56ch;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: .98rem;
}

.location-details {
  display: grid;
  gap: 18px;
  margin-bottom: 34px;
}

.location-details p,
.location-details a {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 13px;
  margin: 0;
}

.location-details svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: var(--blue);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.location-details span {
  display: grid;
  gap: 1px;
}

.location-details small {
  color: var(--ink-soft);
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.location-details strong {
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: .93rem;
}

.location-details a strong {
  color: var(--blue);
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 17px;
}

.location-actions .button {
  padding-inline: 18px;
}

.location-whatsapp {
  position: relative;
  padding-block: 10px;
  color: var(--navy);
  font-size: .8rem;
  font-weight: 800;
}

.location-whatsapp::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(.35);
  transform-origin: left;
  transition: transform 220ms var(--ease);
}

.location-whatsapp:hover::after {
  transform: scaleX(1);
}

.location-map {
  position: relative;
  min-height: 520px;
  background: var(--line);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
}

.location-map > span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 8px 20px oklch(29% .05 240 / .14);
  font-size: .71rem;
  font-weight: 750;
}

/* Advantages */
.advantages {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-deep);
}

.advantages::before,
.advantages::after {
  position: absolute;
  width: 420px;
  height: 420px;
  border: 1px solid oklch(73% .12 230 / .12);
  border-radius: 50%;
  content: "";
}

.advantages::before {
  top: -310px;
  left: -140px;
}

.advantages::after {
  right: -220px;
  bottom: -320px;
  box-shadow: 0 0 0 32px oklch(73% .12 230 / .04), 0 0 0 64px oklch(73% .12 230 / .03);
}

.advantages .shell {
  position: relative;
  z-index: 1;
}

.section-heading.light {
  margin-bottom: 48px;
}

.section-heading.light h2 {
  color: var(--white);
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.advantage-grid article {
  display: grid;
  min-height: 142px;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 19px;
  padding-inline: 28px;
}

.advantage-grid article:first-child {
  padding-left: 0;
}

.advantage-grid article:last-child {
  padding-right: 0;
}

.advantage-grid article + article {
  border-left: 1px solid oklch(91% .02 230 / .25);
}

.advantage-grid article > svg {
  width: 43px;
  height: 43px;
  fill: none;
  stroke: var(--white);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.advantage-grid h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: .9rem;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.advantage-grid p {
  margin: 0;
  color: oklch(90% .026 232);
  font-size: .88rem;
  line-height: 1.5;
}

/* Contact banner */
.contact-banner {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  background: var(--ice);
}

.contact-banner > img,
.contact-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.contact-banner > img {
  object-fit: cover;
  object-position: center 67%;
}

.contact-overlay {
  background: linear-gradient(90deg, transparent 0%, oklch(98% .01 230 / .24) 31%, oklch(98% .01 230 / .95) 52%, oklch(98% .01 230 / .98) 100%);
}

.contact-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 320px;
  align-items: center;
  justify-content: flex-end;
}

.contact-copy {
  width: min(62%, 650px);
  padding-block: 46px;
}

.contact-copy h2 {
  margin-bottom: 24px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Footer */
.site-footer {
  color: oklch(92% .02 230);
  background: var(--navy-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr .82fr .82fr 1.2fr;
  gap: clamp(35px, 6vw, 80px);
  padding-block: 58px 48px;
}

.footer-logo-frame {
  display: grid;
  width: min(100%, 310px);
  height: 104px;
  padding: 10px 14px;
  margin-bottom: 19px;
  border-radius: 7px;
  background: var(--white);
  place-items: center;
}

.footer-logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-brand p {
  max-width: 29ch;
  margin-bottom: 18px;
  color: oklch(88% .025 232);
  font-size: .88rem;
}

.footer-brand a,
.footer-contact a,
.footer-contact p {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.footer-brand a {
  font-weight: 700;
}

.footer-brand svg,
.footer-contact svg {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.footer-column h2 {
  margin-bottom: 22px;
  color: var(--white);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.footer-column > a:not(.footer-contact a) {
  display: block;
  width: fit-content;
  margin-bottom: 10px;
  color: oklch(89% .025 232);
  font-size: .87rem;
  transition: color 180ms var(--ease), transform 180ms var(--ease);
}

.footer-column > a:not(.footer-contact a)::before {
  margin-right: 8px;
  color: var(--blue-bright);
  content: "›";
}

.footer-column > a:hover {
  color: var(--blue-bright);
  transform: translateX(3px);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-contact p,
.footer-contact a {
  margin-bottom: 15px;
  font-size: .92rem;
  font-weight: 650;
}

.footer-contact small {
  color: oklch(78% .025 232);
  font-size: .78rem;
}

.footer-bottom {
  padding-block: 20px 24px;
  border-top: 1px solid oklch(91% .02 230 / .18);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: oklch(77% .025 232);
  font-size: .76rem;
}

.floating-whatsapp {
  position: fixed;
  z-index: 98;
  right: clamp(16px, 2.4vw, 30px);
  bottom: max(18px, calc(env(safe-area-inset-bottom) + 12px));
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 2.5px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: var(--success);
  box-shadow: 0 14px 34px oklch(29% .11 155 / .3), 0 0 0 6px oklch(73% .205 148 / .1);
  transition: transform 220ms var(--ease), background-color 220ms var(--ease), box-shadow 220ms var(--ease);
}

.floating-whatsapp:hover {
  background: oklch(69% .205 148);
  box-shadow: 0 18px 40px oklch(29% .11 155 / .36), 0 0 0 7px oklch(73% .205 148 / .13);
  transform: translateY(-4px) scale(1.025);
}

.floating-whatsapp svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
  stroke: none;
}

@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 38px, 1000px);
  }

  .header-inner {
    grid-template-columns: 188px 1fr auto;
    gap: 18px;
  }

  .brand {
    width: 200px;
  }

  .site-nav {
    gap: 20px;
  }

  .site-nav a {
    font-size: .74rem;
  }

  .header-contact {
    padding-inline: 13px;
    font-size: .82rem;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 5.6vw, 3.8rem);
  }

  .service-item {
    padding-inline: 22px;
  }

  .advantage-grid article {
    grid-template-columns: 1fr;
    gap: 13px;
  }
}

@media (max-width: 900px) {
  :root {
    --shell: min(100% - 34px, 760px);
  }

  html {
    scroll-padding-top: 78px;
  }

  .site-header,
  .site-header.is-scrolled {
    height: 78px;
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
  }

  .brand {
    position: relative;
    z-index: 103;
    width: 210px;
    height: 68px;
  }

  .menu-toggle {
    position: relative;
    z-index: 103;
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    padding: 86px 11vw 40px;
    background: var(--cloud);
    opacity: 0;
    transform: translateY(-14px);
    transition: opacity 260ms var(--ease), transform 260ms var(--ease), visibility 260ms;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav a {
    width: 100%;
    padding-block: 12px;
    font-size: clamp(1.5rem, 8vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -.03em;
    text-transform: none;
  }

  .site-nav a::after {
    right: auto;
    width: 54px;
  }

  .header-contact {
    display: none;
  }

  .hero {
    min-height: 880px;
    padding-top: 78px;
  }

  .hero-photo,
  .hero-shade {
    inset: 78px 0 0;
    height: calc(100% - 78px);
  }

  .hero-photo {
    object-position: 67% top;
  }

  .hero-shade {
    background: linear-gradient(180deg, oklch(97% .018 232 / .18) 0%, oklch(97% .018 232 / .45) 26%, oklch(97% .018 232 / .98) 51%, oklch(97% .018 232) 100%);
  }

  .hero-inner {
    display: flex;
    min-height: 785px;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 142px;
  }

  .hero-copy {
    width: 100%;
    padding-top: 0;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 8.3vw, 3.55rem);
  }

  .hero-description {
    max-width: 640px;
  }

  .coverage-badge {
    top: 42px;
    right: 0;
    bottom: auto;
    min-width: 260px;
    padding: 13px 18px;
  }

  .coverage-badge svg {
    width: 38px;
    height: 38px;
  }

  .coverage-badge span {
    font-size: .82rem;
  }

  .coverage-badge strong {
    font-size: .97rem;
  }

  .hero-proof {
    bottom: 73px;
    gap: 17px 30px;
  }

  .service-rail {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-item + .service-item {
    border-left: 0;
  }

  .service-item:nth-child(even) {
    border-left: 1px solid var(--line);
  }

  .service-item:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .location-copy h2 {
    max-width: 18ch;
  }

  .location-map,
  .location-map iframe {
    min-height: 410px;
  }

  .about-intro::after {
    top: auto;
    right: auto;
    bottom: -18px;
    left: 0;
    width: 54px;
    height: 3px;
    border-radius: 99px;
    background: var(--blue);
  }

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

  .advantage-grid article {
    grid-template-columns: auto 1fr;
    padding: 28px;
  }

  .advantage-grid article:first-child {
    padding-left: 28px;
  }

  .advantage-grid article:last-child {
    padding-right: 28px;
  }

  .advantage-grid article + article {
    border-left: 0;
  }

  .advantage-grid article:nth-child(even) {
    border-left: 1px solid oklch(91% .02 230 / .25);
  }

  .advantage-grid article:nth-child(n + 3) {
    border-top: 1px solid oklch(91% .02 230 / .25);
  }

  .contact-banner {
    min-height: 480px;
  }

  .contact-banner > img {
    object-position: 21% center;
  }

  .contact-overlay {
    background: linear-gradient(180deg, transparent 0%, oklch(98% .01 230 / .28) 28%, oklch(98% .01 230 / .96) 61%, oklch(98% .01 230) 100%);
  }

  .contact-inner {
    min-height: 480px;
    align-items: flex-end;
    justify-content: flex-start;
  }

  .contact-copy {
    width: 100%;
    padding-block: 0 42px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: calc(100% - 30px);
  }

  .section {
    padding-block: 68px;
  }

  .hero {
    min-height: 920px;
  }

  .hero-photo {
    height: 49%;
    object-position: 66% top;
  }

  .hero-shade {
    background: linear-gradient(180deg, transparent 0%, oklch(97% .018 232 / .38) 28%, oklch(97% .018 232 / .98) 48%, oklch(97% .018 232) 100%);
  }

  .hero-inner {
    min-height: 824px;
    padding-bottom: 146px;
  }

  .hero-copy .eyebrow {
    display: block;
  }

  .hero h1 {
    font-size: clamp(2.17rem, 10.8vw, 3rem);
    line-height: 1.02;
  }

  .hero-description {
    font-size: .94rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .coverage-badge {
    top: 24px;
    right: 0;
    min-width: 232px;
    padding: 10px 14px;
  }

  .coverage-badge svg {
    width: 31px;
    height: 31px;
  }

  .hero-proof {
    right: 0;
    bottom: 70px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding-right: 76px;
    font-size: .66rem;
    line-height: 1.2;
  }

  .hero-proof span {
    display: grid;
    justify-items: start;
    gap: 5px;
  }

  .hero-proof svg {
    width: 23px;
    height: 23px;
  }

  .hero-wave {
    height: 58px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .service-rail {
    grid-template-columns: 1fr;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .service-item {
    display: grid;
    min-height: 0;
    grid-template-columns: 74px 1fr;
    column-gap: 20px;
    padding: 28px 0;
    text-align: left;
    background: transparent !important;
  }

  .service-item + .service-item,
  .service-item:nth-child(even),
  .service-item:nth-child(n + 3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .service-number {
    top: 24px;
    left: auto;
    right: 0;
  }

  .service-icon {
    width: 72px;
    height: 72px;
    grid-row: 1 / span 4;
    margin: 0;
  }

  .service-icon svg {
    width: 38px;
    height: 38px;
  }

  .service-item h3 {
    padding-right: 38px;
    margin-bottom: 7px;
  }

  .service-item p {
    min-height: 0;
    margin-bottom: 12px;
    font-size: .88rem;
  }

  .about-grid {
    gap: 37px;
  }

  .about-tags span {
    font-size: .73rem;
  }

  .location-grid {
    border-radius: 9px;
  }

  .location-copy {
    padding: 36px 24px 40px;
  }

  .location-intro {
    font-size: .92rem;
  }

  .location-actions {
    display: grid;
    justify-items: start;
  }

  .location-actions .button {
    width: 100%;
  }

  .location-map,
  .location-map iframe {
    min-height: 360px;
  }

  .advantages .section-heading {
    text-align: left;
  }

  .advantages .title-rule.centered {
    margin-left: 0;
  }

  .advantage-grid {
    grid-template-columns: 1fr;
  }

  .advantage-grid article,
  .advantage-grid article:first-child,
  .advantage-grid article:last-child {
    min-height: 0;
    padding: 25px 0;
  }

  .advantage-grid article:nth-child(even),
  .advantage-grid article:nth-child(n + 3),
  .advantage-grid article + article {
    border-top: 1px solid oklch(91% .02 230 / .25);
    border-left: 0;
  }

  .contact-banner,
  .contact-inner {
    min-height: 530px;
  }

  .contact-banner > img {
    height: 62%;
    object-position: 30% center;
  }

  .contact-copy h2 br {
    display: none;
  }

  .contact-actions {
    display: grid;
  }

  .contact-actions .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px 24px;
  }

  .footer-brand,
  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-brand p {
    max-width: 38ch;
  }

  .footer-bottom {
    padding-right: 60px;
    text-align: left;
  }

  .floating-whatsapp {
    width: 68px;
    height: 68px;
  }

  .floating-whatsapp svg {
    width: 38px;
    height: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
