:root {
  --ink: #172b31;
  --muted: #59676b;
  --blue: #0879c8;
  --green: #138447;
  --green-hover: #0c6836;
  --yellow: #ffe164;
  --line: #e1e7e7;
  --pale: #f4f7f7;
  --font: Manrope, Arial, sans-serif;
}
* {
  box-sizing: border-box;
  letter-spacing: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}
body {
  margin: 0;
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 800;
  line-height: 1.2;
}
h2 {
  font-size: 36px;
}
h3 {
  font-size: 19px;
}
button {
  color: inherit;
}
a,
button {
  touch-action: manipulation;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 5px;
}
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}
[hidden] {
  display: none !important;
}
.container {
  width: calc(100% - 96px);
  max-width: 1200px;
  margin-inline: auto;
}
.section {
  padding: 92px 0;
}
.eyebrow {
  font-size: 11px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1.5;
}
.icon {
  display: inline-block;
  flex: 0 0 auto;
  width: 21px;
  height: 21px;
  background: currentColor;
  mask: var(--icon) center/contain no-repeat;
  -webkit-mask: var(--icon) center/contain no-repeat;
  vertical-align: middle;
}
.icon-tag {
  --icon: url("../icons/tag.svg");
}
.icon-arrow-up-right {
  --icon: url("../icons/arrow-up-right.svg");
}
.icon-whatsapp {
  --icon: url("../icons/whatsapp.svg");
}
.icon-map-pin {
  --icon: url("../icons/map-pin.svg");
}
.icon-house {
  --icon: url("../icons/house.svg");
}
.icon-building-2 {
  --icon: url("../icons/building-2.svg");
}
.icon-wrench {
  --icon: url("../icons/wrench.svg");
}
.icon-air-vent {
  --icon: url("../icons/air-vent.svg");
}
.icon-sparkles {
  --icon: url("../icons/sparkles.svg");
}
.icon-pipeline {
  --icon: url("../icons/cable.svg");
}
.icon-hard-hat {
  --icon: url("../icons/hard-hat.svg");
}
.icon-expand {
  --icon: url("../icons/expand.svg");
}
.icon-instagram {
  --icon: url("../icons/instagram.svg");
}
.icon-plus {
  --icon: url("../icons/plus.svg");
}
.icon-x {
  --icon: url("../icons/x.svg");
}
.button {
  min-height: 54px;
  padding: 14px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 800;
  border: 1px solid transparent;
  border-radius: 5px;
  text-align: center;
  line-height: 1.45;
  transition:
    background 0.18s,
    box-shadow 0.18s;
}
.button-primary {
  background: var(--green);
  color: #fff;
}
.button-primary:hover {
  background: var(--green-hover);
  box-shadow: 0 4px 16px #13844720;
}
.button-dark {
  background: var(--ink);
  color: #fff;
}
.button-dark:hover {
  background: #28464e;
}
.button-outline {
  background: transparent;
  border-color: var(--line);
}
.button-outline:hover {
  border-color: var(--green);
  color: var(--green);
}
.button-small {
  min-height: 43px;
  padding: 10px 16px;
  font-size: 12px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 13px;
  color: var(--blue);
}
.text-link:hover {
  text-decoration: underline;
}
.skip-link {
  position: fixed;
  left: 20px;
  top: -100px;
  z-index: 100;
  background: #fff;
  padding: 10px 20px;
}
.skip-link:focus {
  top: 10px;
}
.offer-ribbon {
  background: var(--yellow);
  font-size: 11px;
}
.ribbon-inner {
  min-height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.ribbon-inner > .icon {
  width: 14px;
  height: 14px;
}
.ribbon-inner strong {
  font-weight: 800;
}
.ribbon-inner > a {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-left: 24px;
  font-weight: 800;
}
.ribbon-inner > a .icon {
  width: 14px;
  height: 14px;
}
.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid #edf0ef;
}
.header-inner {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.brand img {
  width: 224px;
  height: auto;
}
.desktop-nav {
  display: flex;
  gap: 32px;
  font-size: 12px;
  font-weight: 700;
}
.desktop-nav a:hover {
  color: var(--blue);
}
.header-contact .icon {
  color: var(--green);
  width: 18px;
  height: 18px;
}
.hero {
  position: relative;
  isolation: isolate;
  background: #e9eae7;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-inner {
  min-height: 594px;
  display: flex;
  align-items: center;
  padding-top: 56px;
  padding-bottom: 60px;
}
.hero-copy {
  max-width: 560px;
}
.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #315363;
}
.small-line {
  width: 24px;
  height: 2px;
  background: var(--blue);
}
h1 {
  font-size: 54px;
  line-height: 1.16;
  margin-top: 21px;
}
h1 span {
  color: var(--blue);
}
.hero-description {
  max-width: 395px;
  margin-top: 23px;
  font-size: 16px;
  line-height: 1.8;
  color: #3d4c50;
}
.hero .button {
  margin-top: 28px;
}
.cta-note {
  font-size: 10px;
  color: #4d5c60;
  margin-top: 11px;
}
.region {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 12px;
  margin-top: 14px;
}
.region .icon {
  width: 15px;
  height: 15px;
}
.image-caption {
  position: absolute;
  bottom: 9px;
  right: 14px;
  font-size: 9px;
  background: #ffffffa8;
  padding: 1px 5px;
  color: #35454a;
}
.service-strip {
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 990px;
  min-height: 86px;
  gap: 20px;
}
.strip-inner > div {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 13px;
  font-weight: 700;
}
.strip-inner .icon {
  color: var(--blue);
  width: 22px;
  height: 22px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 36px;
}
.section-heading h2 {
  margin-top: 12px;
}
.section-heading > p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  padding-bottom: 5px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.service-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 29px 28px 26px;
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: #fff;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.service-card:hover {
  border-color: #b4d6e7;
  box-shadow: 0 6px 24px #162b3208;
}
.service-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 31px;
}
.service-card-top > .icon {
  width: 32px;
  height: 32px;
  color: var(--blue);
}
.service-card-top > span {
  font-size: 11px;
  color: #9aa7ac;
  font-weight: 600;
}
.service-card h3 {
  margin-bottom: 13px;
  font-size: 20px;
}
.service-card p {
  font-size: 13px;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 26px;
}
.service-card > a {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  font-weight: 800;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.service-card > a:hover {
  color: var(--blue);
}
.service-card > a .icon {
  width: 18px;
  height: 18px;
}
.special-services {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 36px;
  align-items: center;
}
.special-services > p {
  font-size: 12px;
  line-height: 1.75;
  flex: 0 0 220px;
  color: var(--muted);
}
.special-services strong {
  color: var(--ink);
}
.special-links {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.special-links > a,
.special-links > button {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  min-width: 0;
}
.special-links > a:hover,
.special-links > button:hover {
  color: var(--blue);
}
.special-links > a > .icon:first-child,
.special-links > button > .icon:first-child {
  color: var(--blue);
  width: 23px;
  height: 23px;
}
.special-links > a > .icon:last-child,
.special-links > button > .icon:last-child {
  width: 14px;
  height: 14px;
  margin-left: auto;
}
.special-links small {
  display: block;
  font-size: 10px;
  font-weight: 400;
  color: var(--muted);
  margin-top: 5px;
  line-height: 1.5;
}
.special-services:has(.vrf-photos) {
  align-items: flex-start;
}
.vrf-toggle {
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
}
.vrf-toggle > .icon:last-child {
  transition: transform 0.2s;
}
.vrf-toggle[aria-expanded="true"] > .icon:last-child {
  transform: rotate(45deg);
}
.vrf-photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-column: 2;
  grid-row: 2;
  gap: 10px;
}
.vrf-photos .photo-button {
  aspect-ratio: 3 / 4;
}
.vrf-photos:not([hidden]) {
  animation: vrf-reveal 0.2s ease-out;
}
.vrf-contact {
  grid-column: 1 / -1;
  font-size: 11px;
}
.vrf-contact > .icon {
  width: 17px;
  height: 17px;
}
@keyframes vrf-reveal {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
.promotion {
  background: var(--yellow);
  padding: 44px 0;
}
.promotion-inner {
  display: flex;
  align-items: center;
  gap: 50px;
}
.offer-number {
  display: flex;
  align-items: center;
  line-height: 0.9;
  flex-shrink: 0;
  gap: 5px;
}
.offer-number > span {
  font-size: 128px;
  font-weight: 800;
}
.offer-number > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.offer-number b {
  font-size: 54px;
}
.offer-number > div > span {
  font-size: 22px;
  font-weight: 800;
}
.offer-copy {
  flex: 1;
  padding-left: 42px;
  border-left: 1px solid #172b312b;
}
.offer-copy .eyebrow {
  color: #526044;
  font-size: 10px;
}
.offer-copy h2 {
  font-size: 30px;
  margin: 9px 0 14px;
}
.offer-copy > p:not(.eyebrow):not(.offer-validity) {
  font-size: 13px;
  line-height: 1.8;
}
.offer-copy .offer-validity {
  font-size: 10px;
  margin-top: 14px;
  color: #536043;
}
.promotion .button {
  white-space: nowrap;
  min-width: 185px;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.work-grid figure {
  min-width: 0;
}
.photo-button {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 1/1.09;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 5px;
  background: #e9edeb;
}
.photo-button > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s;
}
.photo-button:hover > img {
  transform: scale(1.025);
}
.photo-zoom {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  background: #fffffff0;
  display: grid;
  place-items: center;
}
.photo-zoom .icon {
  width: 16px;
  height: 16px;
}
.work-grid figcaption {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 16px;
  font-weight: 700;
  font-size: 12px;
}
.photo-index {
  color: #819096;
  font-size: 10px;
  white-space: nowrap;
}
.work-instagram {
  margin-top: 31px;
}
.work-instagram .icon {
  width: 17px;
  height: 17px;
}
.steps-section {
  background: var(--pale);
  padding: 58px 0;
}
.steps-section > .container {
  display: flex;
  align-items: center;
  gap: 55px;
}
.steps-intro {
  flex: 0 0 242px;
}
.steps-intro .eyebrow {
  font-size: 9px;
}
.steps-intro h2 {
  font-size: 29px;
  margin-top: 13px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.step-number {
  font-size: 12px;
  color: var(--blue);
  font-weight: 800;
  display: block;
  margin-bottom: 13px;
}
.steps h3 {
  font-size: 14px;
  margin-bottom: 9px;
  line-height: 1.5;
}
.steps p {
  font-size: 12px;
  line-height: 1.8;
  color: var(--muted);
}
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
}
.faq-layout h2 {
  margin: 13px 0 27px;
}
.faq-list {
  border-top: 1px solid var(--line);
}
details {
  border-bottom: 1px solid var(--line);
}
summary {
  list-style: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
}
summary::-webkit-details-marker {
  display: none;
}
summary > .icon {
  width: 18px;
  height: 18px;
  color: var(--blue);
}
details[open] summary > .icon {
  transform: rotate(45deg);
}
details > p {
  font-size: 13px;
  color: var(--muted);
  padding: 0 33px 23px 0;
  line-height: 1.9;
}
.contact-section {
  background: #153b32;
  color: #fff;
  padding: 74px 0;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 110px;
  align-items: center;
}
.contact-copy .eyebrow {
  color: #a4d2bb;
  font-size: 10px;
}
.contact-copy h2 {
  font-size: 43px;
  line-height: 1.2;
  margin: 18px 0 24px;
}
.contact-copy h2 span {
  color: var(--yellow);
}
.contact-copy > p:not(.eyebrow) {
  color: #d1e0d8;
  font-size: 14px;
  line-height: 1.9;
}
.contact-number {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 21px;
  font-weight: 700;
  margin-top: 34px;
}
.contact-number:hover {
  color: var(--yellow);
}
.quote-form {
  background: #fff;
  color: var(--ink);
  padding: 32px;
  border-radius: 6px;
}
.quote-form h3 {
  font-size: 20px;
  margin-bottom: 24px;
}
.quote-form label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  margin: 17px 0 7px;
}
.quote-form label span {
  font-weight: 400;
  color: var(--muted);
}
.quote-form input,
.quote-form select,
.quote-form textarea {
  display: block;
  width: 100%;
  background: #fff;
  border: 1px solid #cdd7d8;
  border-radius: 4px;
  padding: 12px;
  font-size: 13px;
  color: var(--ink);
  min-height: 46px;
}
.quote-form textarea {
  resize: vertical;
  min-height: 88px;
}
.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: #6f7b7e;
}
.quote-form select:has(option[value=""]:checked) {
  color: #6f7b7e;
}
.quote-form .button {
  width: 100%;
  font-size: 12px;
  margin-top: 20px;
  padding-inline: 10px;
}
.quote-form .button > .icon {
  width: 18px;
  height: 18px;
}
.form-note {
  font-size: 9px;
  line-height: 1.7;
  text-align: center;
  color: var(--muted);
  margin-top: 12px;
}
#form-feedback {
  font-size: 12px;
  color: #a43030;
  margin-top: 10px;
}
.site-footer {
  padding-top: 34px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 29px;
}
.footer-top .brand img {
  width: 195px;
}
.footer-top > p {
  font-size: 12px;
  color: var(--muted);
}
.footer-social {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 4px;
}
.footer-social:hover {
  color: var(--blue);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding: 20px 0;
  font-size: 10px;
  color: var(--muted);
}
.footer-bottom a:hover {
  text-decoration: underline;
}
.mobile-contact {
  display: none;
}
.photo-dialog {
  padding: 0;
  border: 0;
  background: #101d22;
  color: #fff;
  border-radius: 6px;
  width: min(640px, calc(100% - 32px));
  max-height: 90dvh;
  overflow: auto;
}
.photo-dialog::backdrop {
  background: #0a171de6;
}
.photo-dialog > img {
  width: 100%;
  height: 76dvh;
  object-fit: contain;
}
.photo-dialog > p {
  padding: 14px 22px;
  font-size: 13px;
}
.dialog-close {
  position: absolute;
  right: 12px;
  top: 12px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #ffffff4d;
  border-radius: 4px;
  background: #172b31;
  color: #fff;
  z-index: 1;
}
.noscript-message {
  padding: 15px;
  background: var(--yellow);
  text-align: center;
}
.legal-main {
  max-width: 800px;
  padding: 65px 0 90px;
}
.legal-main h1 {
  font-size: 36px;
  margin-bottom: 30px;
}
.legal-main h2 {
  font-size: 21px;
  margin: 30px 0 12px;
}
.legal-main p {
  margin-top: 12px;
  color: var(--muted);
}
.legal-main a {
  color: var(--blue);
}
@media (min-width: 1600px) {
  .hero-inner {
    min-height: 620px;
  }
  .hero-media img {
    object-position: center top;
  }
}
@media (min-width: 1000px) and (max-height: 820px) {
  .hero-inner {
    min-height: 500px;
    padding-block: 40px;
  }
  h1 {
    font-size: 48px;
  }
  .hero-description {
    margin-top: 18px;
  }
  .hero .button {
    margin-top: 22px;
  }
  .header-inner {
    height: 78px;
  }
}
@media (max-width: 1100px) {
  .container {
    width: calc(100% - 64px);
  }
  .desktop-nav {
    gap: 20px;
  }
  .brand img {
    width: 195px;
  }
  .hero-inner {
    min-height: 560px;
  }
  .hero-copy {
    max-width: 470px;
  }
  h1 {
    font-size: 46px;
  }
  .hero-description {
    max-width: 330px;
    font-size: 14px;
  }
  .hero .eyebrow {
    font-size: 10px;
  }
  .special-services {
    display: block;
  }
  .special-services > p {
    margin-bottom: 22px;
  }
  .special-services > p br {
    display: none;
  }
  .special-links {
    gap: 24px;
  }
  .promotion-inner {
    gap: 30px;
  }
  .offer-number > span {
    font-size: 100px;
  }
  .offer-number b {
    font-size: 44px;
  }
  .offer-copy {
    padding-left: 28px;
  }
  .offer-copy h2 {
    font-size: 25px;
  }
  .steps-section > .container {
    display: block;
  }
  .steps-intro {
    margin-bottom: 30px;
  }
  .steps-intro h2 {
    font-size: 32px;
  }
  .faq-layout {
    gap: 45px;
  }
  .contact-layout {
    gap: 55px;
  }
  .contact-copy h2 {
    font-size: 36px;
  }
  .service-card {
    padding: 24px 22px;
  }
  .service-card h3 {
    font-size: 18px;
  }
}
@media (max-width: 800px) {
  .desktop-nav {
    display: none;
  }
  .container {
    width: calc(100% - 48px);
  }
  .section {
    padding: 65px 0;
  }
  h2 {
    font-size: 30px;
  }
  .hero-inner {
    min-height: 530px;
  }
  .hero-media img {
    object-position: 62% top;
  }
  .hero-copy {
    max-width: 390px;
  }
  h1 {
    font-size: 40px;
  }
  .hero-description {
    max-width: 305px;
  }
  .hero .eyebrow {
    font-size: 9px;
  }
  .strip-inner {
    gap: 12px;
    min-height: 76px;
  }
  .strip-inner > div {
    font-size: 10px;
    gap: 7px;
  }
  .strip-inner .icon {
    width: 18px;
    height: 18px;
  }
  .section-heading {
    gap: 22px;
  }
  .section-heading > p {
    font-size: 12px;
  }
  .service-grid {
    gap: 14px;
  }
  .service-card {
    padding: 20px 17px;
  }
  .service-card h3 {
    font-size: 16px;
  }
  .service-card p {
    font-size: 12px;
  }
  .service-card > a {
    font-size: 11px;
  }
  .special-links {
    gap: 18px;
  }
  .special-links > a,
  .special-links > button {
    font-size: 11px;
    gap: 7px;
  }
  .special-links small {
    font-size: 9px;
  }
  .promotion-inner {
    flex-wrap: wrap;
    gap: 24px;
  }
  .offer-number {
    flex-basis: 140px;
  }
  .offer-copy {
    flex-basis: calc(100% - 164px);
  }
  .promotion .button {
    margin-left: 164px;
  }
  .work-grid {
    gap: 17px;
  }
  .work-grid figcaption {
    font-size: 10px;
  }
  .steps {
    gap: 24px;
  }
  .faq-layout {
    gap: 30px;
    grid-template-columns: 1fr 1.5fr;
  }
  .faq-layout .eyebrow {
    font-size: 9px;
  }
  summary {
    font-size: 12px;
    padding: 21px 0;
  }
  .contact-layout {
    gap: 30px;
  }
  .contact-copy h2 {
    font-size: 30px;
  }
  .contact-copy > p:not(.eyebrow) {
    font-size: 12px;
  }
  .quote-form {
    padding: 23px;
  }
  .quote-form h3 {
    font-size: 17px;
  }
  .quote-form .button {
    font-size: 11px;
    gap: 6px;
  }
  .contact-number {
    font-size: 18px;
  }
}
@media (max-width: 640px) {
  html {
    scroll-padding-top: 78px;
  }
  .container {
    width: calc(100% - 40px);
  }
  .offer-ribbon {
    font-size: 10px;
  }
  .ribbon-inner {
    min-height: 31px;
    gap: 7px;
  }
  .ribbon-inner > a {
    display: none;
  }
  .header-inner {
    height: 71px;
    gap: 12px;
  }
  .brand img {
    width: 185px;
  }
  .header-contact {
    width: 42px;
    height: 42px;
    min-height: 42px;
    padding: 10px;
    border: 0;
    background: #eef7f1;
  }
  .header-contact span {
    display: none;
  }
  .header-contact .icon {
    width: 22px;
    height: 22px;
  }
  .hero {
    background: #e6e9e9;
  }
  .hero-media {
    top: auto;
    bottom: 0;
    height: 245px;
  }
  .hero-media img {
    object-position: center top;
    object-fit: cover;
  }
  .hero-inner {
    min-height: 628px;
    align-items: flex-start;
    padding-top: 30px;
    padding-bottom: 232px;
  }
  .hero-copy {
    max-width: 100%;
    width: 100%;
  }
  .hero .eyebrow {
    font-size: 9px;
  }
  .small-line {
    width: 17px;
  }
  h1 {
    font-size: 38px;
    line-height: 1.16;
    margin-top: 16px;
  }
  .hero-description {
    font-size: 13px;
    line-height: 1.8;
    max-width: 340px;
    margin-top: 16px;
  }
  .hero .button {
    min-height: 50px;
    margin-top: 20px;
    font-size: 12px;
    padding: 12px 17px;
  }
  .cta-note {
    font-size: 9px;
    margin-top: 9px;
  }
  .hero .region {
    font-size: 10px;
    margin-top: 8px;
  }
  .image-caption {
    font-size: 8px;
    bottom: 6px;
  }
  .strip-inner {
    min-height: 72px;
    justify-content: space-around;
    gap: 9px;
  }
  .strip-inner > div {
    font-size: 10px;
    flex-direction: column;
    gap: 5px;
    text-align: center;
    line-height: 1.4;
    max-width: 120px;
  }
  .strip-inner .icon {
    width: 18px;
    height: 18px;
  }
  .section {
    padding: 53px 0;
  }
  h2 {
    font-size: 28px;
  }
  .section-heading {
    display: block;
    margin-bottom: 26px;
  }
  .section-heading h2 {
    margin-top: 11px;
  }
  .section-heading > p {
    margin-top: 16px;
    font-size: 13px;
    padding: 0;
  }
  .desktop-only {
    display: none;
  }
  .eyebrow {
    font-size: 10px;
  }
  .service-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .service-card {
    padding: 23px 24px;
  }
  .service-card-top {
    margin-bottom: 19px;
  }
  .service-card-top > .icon {
    width: 29px;
    height: 29px;
  }
  .service-card h3 {
    font-size: 20px;
    margin-bottom: 11px;
  }
  .service-card p {
    font-size: 13px;
    margin-bottom: 20px;
    max-width: 400px;
  }
  .service-card > a {
    font-size: 12px;
    padding-top: 17px;
  }
  .special-services {
    margin-top: 26px;
    padding-top: 24px;
  }
  .special-services > p {
    font-size: 13px;
  }
  .special-services > p br {
    display: block;
  }
  .special-links {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .vrf-photos {
    grid-column: 1;
    grid-row: auto;
    padding: 4px 0 16px;
  }
  .special-links > a,
  .special-links > button {
    font-size: 13px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    gap: 15px;
  }
  .special-links > a:last-child {
    border-bottom: 0;
  }
  .special-links small {
    font-size: 11px;
    margin-top: 3px;
  }
  .special-links > a > .icon:first-child,
  .special-links > button > .icon:first-child {
    width: 23px;
    height: 23px;
  }
  .special-links > a > .icon:last-child,
  .special-links > button > .icon:last-child {
    width: 17px;
    height: 17px;
  }
  .promotion {
    padding: 32px 0;
  }
  .promotion-inner {
    gap: 22px;
    align-items: flex-start;
  }
  .offer-number {
    flex-basis: auto;
    gap: 4px;
    align-items: center;
  }
  .offer-number > span {
    font-size: 88px;
  }
  .offer-number b {
    font-size: 36px;
  }
  .offer-number > div > span {
    font-size: 17px;
  }
  .offer-number > div {
    gap: 7px;
  }
  .offer-copy {
    border-left: 0;
    padding-left: 0;
    flex-basis: 100%;
    order: 2;
  }
  .offer-copy h2 {
    font-size: 28px;
    max-width: 320px;
  }
  .offer-copy .eyebrow {
    font-size: 9px;
  }
  .offer-copy > p:not(.eyebrow):not(.offer-validity) {
    font-size: 13px;
  }
  .promotion .button {
    order: 3;
    margin: 0;
    min-width: 0;
    font-size: 12px;
    min-height: 49px;
  }
  .work-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .photo-button {
    aspect-ratio: 1/1.08;
  }
  .work-grid figcaption {
    font-size: 12px;
    margin-top: 13px;
  }
  .work-instagram {
    font-size: 11px;
    gap: 8px;
    margin-top: 27px;
  }
  .work-instagram .icon {
    width: 17px;
    height: 17px;
  }
  .steps-section {
    padding: 40px 0;
  }
  .steps-intro {
    margin-bottom: 28px;
  }
  .steps-intro h2 {
    font-size: 28px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .steps > li {
    display: flex;
    gap: 18px;
    align-items: flex-start;
  }
  .step-number {
    font-size: 13px;
    margin: 2px 0 0;
  }
  .steps h3 {
    font-size: 15px;
    margin-bottom: 6px;
  }
  .steps p {
    font-size: 13px;
    max-width: 330px;
  }
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .faq-layout h2 {
    margin-top: 12px;
    margin-bottom: 17px;
  }
  .faq-layout h2 br {
    display: none;
  }
  .faq-layout .eyebrow {
    font-size: 9px;
  }
  .faq-layout .text-link {
    font-size: 12px;
  }
  summary {
    font-size: 13px;
    padding: 21px 0;
  }
  details > p {
    font-size: 12px;
  }
  .contact-section {
    padding: 45px 0;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .contact-copy h2 {
    font-size: 34px;
    margin: 15px 0 19px;
  }
  .contact-copy > p:not(.eyebrow) {
    font-size: 13px;
  }
  .contact-copy h2 br:nth-child(1) {
    display: none;
  }
  .contact-number {
    font-size: 19px;
    margin-top: 23px;
  }
  .quote-form {
    padding: 25px 21px;
  }
  .quote-form h3 {
    font-size: 19px;
  }
  .quote-form label {
    font-size: 11px;
  }
  .quote-form input,
  .quote-form select,
  .quote-form textarea {
    font-size: 16px;
    padding: 11px;
  }
  .quote-form .button {
    font-size: 12px;
    min-height: 54px;
    gap: 8px;
  }
  .form-note {
    font-size: 9px;
  }
  .site-footer {
    padding-top: 29px;
    padding-bottom: 80px;
  }
  .footer-top {
    flex-wrap: wrap;
    gap: 18px;
  }
  .footer-top .brand img {
    width: 182px;
  }
  .footer-top > p {
    order: 3;
    flex-basis: 100%;
    font-size: 11px;
  }
  .footer-bottom {
    font-size: 9px;
    gap: 12px;
    align-items: flex-start;
  }
  .mobile-contact {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 18px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid #e2e9e4;
    background: #fff;
    display: block;
    z-index: 40;
    transform: translateY(120%);
    transition: transform 0.2s;
  }
  .mobile-contact.is-visible {
    transform: translateY(0);
  }
  .mobile-contact .button {
    width: 100%;
    min-height: 46px;
    font-size: 13px;
    padding-block: 10px;
  }
  .legal-main {
    padding-top: 35px;
  }
  .legal-main h1 {
    font-size: 29px;
  }
  .photo-dialog > img {
    height: 72dvh;
  }
}
@media (max-width: 640px) and (max-height: 760px) {
  .hero-inner {
    min-height: 530px;
    padding-top: 23px;
    padding-bottom: 169px;
  }
  .hero-media {
    height: 185px;
  }
  h1 {
    font-size: 33px;
    margin-top: 13px;
  }
  .hero-description {
    font-size: 12px;
    margin-top: 12px;
    line-height: 1.7;
  }
  .hero .button {
    margin-top: 15px;
    min-height: 46px;
  }
  .cta-note {
    font-size: 8px;
  }
  .hero .eyebrow {
    font-size: 8px;
  }
}
@media (max-width: 360px) {
  .container {
    width: calc(100% - 32px);
  }
  .brand img {
    width: 172px;
  }
  h1 {
    font-size: 32px;
  }
  .hero-inner {
    min-height: 566px;
  }
  .hero .eyebrow {
    font-size: 8px;
  }
  .hero-description {
    font-size: 12px;
  }
  .contact-copy h2 {
    font-size: 29px;
  }
  .quote-form {
    padding: 22px 16px;
  }
  .quote-form .button {
    font-size: 11px;
  }
  .work-instagram {
    font-size: 10px;
    gap: 6px;
  }
  .footer-bottom {
    font-size: 8px;
  }
}
@media (max-width: 360px) and (max-height: 640px) {
  .hero-inner {
    min-height: 450px;
    padding-bottom: 90px;
  }
  .hero-media {
    height: 82px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
