﻿:root {
  --ink: #08213f;
  --muted: #6c7787;
  --gold: #ffad17;
  --gold-dark: #f39a00;
  --panel: #f4f7fa;
  --line: #e7ebf0;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(8, 33, 63, 0.08);
  --anchor-offset: 112px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--anchor-offset);
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

[hidden] {
  display: none !important;
}

main[id],
section[id],
footer[id] {
  scroll-margin-top: var(--anchor-offset);
}

section#contact {
  scroll-margin-top: calc(var(--anchor-offset) + 96px);
}

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

button,
input,
select {
  font: inherit;
}

button {
  border: 0;
}

.section-shell {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 28px;
  width: min(1180px, calc(100% - 32px));
  min-height: 78px;
  margin: 18px auto 0;
  padding: 12px 14px 12px 20px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(231, 235, 240, 0.95);
  border-radius: 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  width: 255px;
  height: 54px;
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex: 1;
  color: #34455b;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links a.is-active {
  color: var(--gold-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px;
  background: rgba(243, 246, 250, 0.96);
  border: 1px solid rgba(215, 222, 232, 0.95);
  border-radius: 999px;
}

.lang-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 34px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  background: #fff;
  border: 1px solid transparent;
  box-shadow: 0 4px 10px rgba(8, 33, 63, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.lang-flag:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(8, 33, 63, 0.12);
}

.lang-flag.is-active {
  border-color: rgba(241, 165, 32, 0.45);
  box-shadow: 0 0 0 3px rgba(241, 165, 32, 0.16);
}

.phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-size: 13px;
  font-weight: 800;
}

.phone-dot {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #fff;
  background: var(--gold);
  border-radius: 50%;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 20px;
}

.login-icon {
  position: relative;
  width: 42px;
  height: 42px;
  color: #758193;
  background: linear-gradient(180deg, #f9fafb, #edf1f5);
  border: 1px solid #d8dee7;
  border-radius: 50%;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95), 0 8px 18px rgba(8, 33, 63, 0.08);
}

.login-glyph {
  position: relative;
  width: 15px;
  height: 11px;
  margin-top: 7px;
  background: linear-gradient(180deg, #f2f4f7, #dfe5ec);
  border: 2px solid #7a8595;
  border-radius: 3px;
}

.login-glyph::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 100%;
  width: 10px;
  height: 8px;
  border: 2px solid #7a8595;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  transform: translateX(-50%);
}

.login-glyph::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 3px;
  height: 3px;
  background: #7a8595;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 0 0 #7a8595;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.button-dark {
  color: #fff;
  background: var(--ink);
}

.button-gold {
  color: #fff;
  background: linear-gradient(180deg, var(--gold), var(--gold-dark));
}

.button-outline {
  min-height: 42px;
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.hero {
  margin-top: 26px;
}

.hero-media {
  position: relative;
  min-height: 420px;
  aspect-ratio: 2.45 / 1;
  overflow: hidden;
  border-radius: 12px;
  background: #101a2b;
}

.hero-carousel {
  isolation: isolate;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.65s ease;
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 20, 43, 0.84), rgba(8, 20, 43, 0.42) 48%, rgba(8, 20, 43, 0.04));
  z-index: 1;
}

.hero-content {
  position: absolute;
  left: clamp(28px, 6vw, 70px);
  top: 50%;
  width: min(400px, calc(100% - 56px));
  transform: translateY(-50%);
  color: #fff;
  z-index: 2;
}

.hero-dots {
  position: absolute;
  left: clamp(28px, 6vw, 70px);
  bottom: 20px;
  z-index: 3;
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
  cursor: pointer;
  transition: width 0.24s ease, background-color 0.24s ease, transform 0.24s ease;
}

.hero-dot.is-active {
  width: 30px;
  background: #fff;
}

.hero-dot:hover {
  transform: translateY(-1px);
}

.eyebrow {
  margin: 0 0 14px;
  color: inherit;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.no-uppercase {
  text-transform: none;
}

.eyebrow.gold {
  color: var(--gold-dark);
}

.hero h1,
.section-intro h2,
.about-card h2,
.gallery-head h2,
.section-title-row h2,
.pricing-copy h2,
.section-title-center h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.05;
}

.hero h1 {
  max-width: 390px;
  font-size: clamp(26px, 3.3vw, 40px);
  line-height: 1.12;
}

.hero p:not(.eyebrow) {
  max-width: 400px;
  margin: 14px 0 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.5;
}

.hero .button {
  min-height: 42px;
  margin-top: -10px;
  padding-inline: 18px;
  font-size: 12px;
}

.promo-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.62fr 1.05fr;
  gap: 22px;
  margin-top: 22px;
}

.promo-card {
  position: relative;
  min-height: 205px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 14px 35px rgba(8, 33, 63, 0.05);
}

.promo-card h2 {
  margin: 0;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.1;
}

.promo-photo {
  display: flex;
  align-items: flex-end;
  padding: 28px;
}

.promo-photo img {
  position: absolute;
  inset: 0;
}

.promo-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0));
}

.promo-photo > div {
  position: relative;
  z-index: 1;
}

.mini-label {
  display: block;
  margin-bottom: 34px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.promo-stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px;
  color: #fff;
  background: var(--gold);
}

.promo-stat strong {
  display: block;
  font-size: clamp(42px, 4.8vw, 68px);
  line-height: 0.9;
}

.promo-stat span {
  color: var(--ink);
}

.promo-stat p {
  max-width: 240px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.promo-booking {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  align-items: center;
  gap: 0;
  min-height: 205px;
  padding: 30px;
  background: linear-gradient(180deg, #f5f7fb 0%, #eef2f7 100%);
  isolation: isolate;
  overflow: hidden;
}

.promo-booking::before {
  content: none;
}

.promo-booking > div {
  position: relative;
  z-index: 1;
}

.promo-booking h2 {
  color: var(--gold-dark);
  max-width: 300px;
  margin-bottom: 34px;
  line-height: 1.1;
}

.promo-booking .button-dark {
  color: #fff;
  background: var(--ink);
  box-shadow: none;
}

.promo-booking img {
  position: relative;
  z-index: 1;
  justify-self: end;
  align-self: end;
  width: min(100%, 265px);
  height: 188px;
  object-fit: cover;
  object-position: center top;
  border-radius: 5px;
  box-shadow: none;
  pointer-events: none;
  filter: none;
}

.features {
  display: grid;
  grid-template-columns: 0.9fr 1.45fr;
  gap: clamp(44px, 8vw, 120px);
  padding: 104px 0 80px;
}

.section-intro h2,
.about-card h2,
.gallery-head h2,
.section-title-row h2,
.pricing-copy h2,
.section-title-center h2 {
  font-size: clamp(28px, 3.2vw, 44px);
}

.section-intro {
  position: relative;
}

.section-intro::after {
  content: "";
  display: block;
  width: 210px;
  height: 210px;
  margin-top: 24px;
  border: 1px solid rgba(219, 226, 234, 0.95);
  border-radius: 18px;
  background: #f3f6fa url("assets/cleaning-bucket-feature.jpg") center/cover no-repeat;
  box-shadow: 0 18px 38px rgba(8, 33, 63, 0.08);
  transform: rotate(-8deg);
  overflow: hidden;
}

.section-intro .button {
  margin-top: 34px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 58px 76px;
  align-content: center;
}

.feature-grid article {
  min-width: 0;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  color: var(--ink);
  background: var(--panel);
  border-radius: 50%;
  font-size: 22px;
}

.feature-grid h3,
.about-card h3,
.service-card h3,
.blog-grid h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.2;
}

.feature-grid p,
.about-card p,
.service-card p,
.pricing-copy p {
  margin: 0;
  color: var(--muted);
}

.word-strip {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  padding: 18px 0 36px;
  color: rgba(8, 33, 63, 0.07);
  font-size: clamp(34px, 4.8vw, 66px);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.word-strip b {
  color: var(--gold);
  font-size: 36px;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: stretch;
  padding-bottom: 92px;
}

.about-photo,
.about-card {
  min-height: 700px;
  overflow: hidden;
  border-radius: 8px;
}

.about-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 6vw, 84px);
  background: var(--panel);
}

.about-card > p {
  margin-top: 22px;
}

.company-copy {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.company-copy p {
  margin: 0;
  color: var(--muted);
}

.company-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 34px 0 42px;
}

.company-contact-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.company-contact-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.company-contact-card a,
.company-contact-card strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.4;
}

.company-contact-map {
  margin-top: 4px;
  aspect-ratio: 1.22 / 1;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #eef2f6;
}

.company-contact-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.company-coverage-map {
  position: relative;
  margin: 34px 0 42px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(8, 33, 63, 0.06);
}

.company-coverage-map::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.42) 26%, rgba(255, 255, 255, 0) 58%);
  pointer-events: none;
}

.company-coverage-map img {
  display: block;
  width: 100%;
  height: auto;
}

.circle-stats {
  display: flex;
  gap: 34px;
  margin: 48px 0;
}

.circle {
  display: flex;
  align-items: center;
  gap: 14px;
}

.circle span {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border: 7px solid rgba(255, 173, 23, 0.35);
  border-top-color: var(--gold);
  border-radius: 50%;
  font-weight: 900;
}

.circle p {
  max-width: 95px;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.25;
}

.about-card hr {
  width: 100%;
  border: 0;
  border-top: 1px solid var(--line);
  margin: 0 0 34px;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
  color: var(--muted);
}

.check-list li::before {
  content: "\2713";
  margin-right: 10px;
  color: var(--gold-dark);
  font-weight: 900;
}

.section-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}

.section-title-row h2 {
  max-width: 680px;
}

.service-grid,
.testimonial-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-card,
.blog-grid article,
.price-card,
blockquote {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
}

.service-card {
  padding: 16px 16px 24px;
}

.service-card img,
.blog-grid img {
  height: 240px;
  margin-bottom: 20px;
  border-radius: 5px;
}

.service-card h3,
.service-card p,
.blog-grid h3 {
  padding-inline: 6px;
}

.service-list-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-list-card {
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.service-list-card span {
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 900;
}

.service-list-card h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.25;
}

.gallery {
  padding: 78px 0 8px;
}

.gallery-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 30px;
}

.gallery-head > div {
  max-width: 620px;
}

.gallery-head > p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.gallery-card {
  position: relative;
  grid-column: span 3;
  min-height: 0;
  aspect-ratio: 1 / 1;
  margin: 0;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #eef2f6;
  cursor: pointer;
}

.gallery-card.featured {
  grid-column: span 6;
  grid-row: span 2;
  aspect-ratio: auto;
  min-height: 458px;
}

.gallery-card img {
  transition: transform 0.35s ease;
}

.gallery-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 55%;
  background: linear-gradient(180deg, rgba(8, 20, 43, 0), rgba(8, 20, 43, 0.82));
}

.gallery-card::after {
  content: "Open";
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 8px 12px;
  color: #fff;
  background: rgba(8, 33, 63, 0.78);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.gallery-card.is-video::after {
  content: "Play";
}

.gallery-card-copy {
  position: absolute;
  left: 16px;
  right: 86px;
  bottom: 16px;
  z-index: 1;
  display: grid;
  gap: 4px;
  text-align: left;
}

.gallery-card.featured .gallery-card-copy {
  right: 16px;
}

.gallery-card-fallback {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: #fff;
  background: linear-gradient(180deg, #16325b, #0b1e39);
  font-size: 20px;
  font-weight: 800;
}

.gallery-card-copy strong,
.gallery-card-copy small {
  display: block;
  color: #fff;
}

.gallery-card-copy strong {
  font-size: 16px;
  line-height: 1.2;
}

.gallery-card-copy small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  line-height: 1.35;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.gallery-card:hover img {
  transform: scale(1.04);
}

.gallery-card:hover::after,
.gallery-card:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.gallery-card:focus-visible {
  outline: 3px solid rgba(255, 173, 23, 0.55);
  outline-offset: 2px;
}

.gallery-card.is-hidden {
  display: none;
}

.gallery-actions {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 22px;
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 17, 34, 0.78);
}

.gallery-lightbox-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  width: min(1080px, 100%);
  max-height: min(88vh, 820px);
  overflow: hidden;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 28px 80px rgba(8, 23, 44, 0.32);
}

.gallery-lightbox-media {
  position: relative;
  min-height: 420px;
  background: #dfe6ef;
}

.gallery-lightbox-media img {
  object-fit: cover;
}

.gallery-lightbox-media video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #081425;
}

.gallery-lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-top: -24px;
  color: #fff;
  background: rgba(8, 33, 63, 0.82);
  border-radius: 50%;
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
}

.gallery-lightbox-prev {
  left: 16px;
}

.gallery-lightbox-next {
  right: 16px;
}

.gallery-lightbox-counter {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  color: #fff;
  background: rgba(8, 33, 63, 0.78);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.gallery-lightbox-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: clamp(26px, 4vw, 42px);
}

.gallery-lightbox-copy h3 {
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
}

.gallery-lightbox-copy p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.gallery-lightbox-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.gallery-lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: rgba(8, 33, 63, 0.82);
  border-radius: 50%;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

body.lightbox-open {
  overflow: hidden;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 72px 0;
}

.stats div {
  display: flex;
  align-items: baseline;
  gap: 12px;
  min-width: 0;
}

.stats strong {
  color: var(--gold-dark);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
}

.stats span {
  color: var(--muted);
  font-weight: 800;
}

.estimate {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  align-items: stretch;
  min-height: 420px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--panel);
}

.estimate-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 5vw, 68px);
  color: #fff;
  background: var(--ink);
}

.estimate-contact {
  gap: 12px;
}

.estimate-form h2 {
  margin: 0 0 28px;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.06;
}

.estimate-copy {
  margin: -8px 0 0;
  color: rgba(255, 255, 255, 0.78);
  max-width: 38ch;
}

.estimate-contact-grid {
  margin: 8px 0 0;
  grid-template-columns: 1fr;
}

.estimate-contact-grid > .company-contact-card:not(.company-contact-card-map) {
  min-height: 74px;
  padding: 12px 14px;
  gap: 4px;
}

.estimate-contact-grid .company-contact-card-map {
  min-height: 260px;
  padding: 14px;
  gap: 10px;
  margin-top: 4px;
}

.estimate-contact-grid .company-contact-card span {
  font-size: 11px;
  font-weight: 900;
}

.estimate-contact-grid .company-contact-card a,
.estimate-contact-grid .company-contact-card strong {
  font-size: 14px;
  line-height: 1.25;
  font-weight: 900;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
  max-width: 100%;
}

.estimate-contact .company-contact-card {
  background: rgba(255, 255, 255, 0.96);
}

.estimate-contact .company-contact-card small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}

.company-contact-card-map {
  color: inherit;
  text-decoration: none;
}

.company-contact-map-heading {
  display: grid;
  gap: 4px;
}

.company-contact-map-heading strong,
.company-contact-map-heading small {
  display: block;
}

.company-contact-map-link {
  align-self: start;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.company-contact-map-frame {
  position: relative;
  min-height: 180px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(8, 33, 63, 0.08);
  background: #dbe7f3;
}

.company-contact-map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 180px;
  border: 0;
}

.estimate-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.estimate-notice {
  margin: -8px 0 18px;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
}

.estimate-notice-success {
  color: #dff7e8;
  background: rgba(67, 168, 112, 0.22);
  border: 1px solid rgba(132, 221, 170, 0.3);
}

.estimate-notice-error {
  color: #ffe4e0;
  background: rgba(196, 80, 72, 0.24);
  border: 1px solid rgba(255, 178, 171, 0.28);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 24px;
}

.form-grid input,
.form-grid select,
.newsletter input {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  outline: 0;
}

.testimonials {
  padding-top: 96px;
}

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

blockquote {
  margin: 0;
  padding: 34px;
}

blockquote span {
  color: var(--gold);
  font-size: 44px;
  line-height: 0.7;
}

blockquote p {
  margin: 12px 0 24px;
  color: var(--muted);
}

blockquote cite {
  font-style: normal;
  font-weight: 900;
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 36px;
  padding: 30px 0;
  color: #9aa5b4;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-weight: 900;
  text-align: center;
}

.pricing {
  display: grid;
  grid-template-columns: 0.78fr 0.78fr 1fr;
  gap: 24px;
  align-items: stretch;
  padding: 72px 0;
}

.price-card {
  padding: 34px;
}

.price-card.featured {
  color: #fff;
  background: var(--ink);
}

.price-card p,
.price-card h3 {
  margin: 0;
}

.price-card h3 {
  margin-top: 8px;
  font-size: 36px;
}

.price-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0;
  color: var(--muted);
  list-style: none;
}

.price-card.featured ul {
  color: rgba(255, 255, 255, 0.78);
}

.price-card li::before {
  content: "â€¢";
  margin-right: 10px;
  color: var(--gold);
}

.pricing-copy {
  align-self: center;
  padding-left: 20px;
}

.pricing-copy p:last-child {
  margin-top: 18px;
}

.section-title-center {
  text-align: center;
  margin-bottom: 34px;
}

.blog {
  margin-top: 42px;
  padding-top: 24px;
}

.blog-grid article {
  padding: 14px 14px 24px;
}

.blog-card-link {
  display: block;
  width: 100%;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  text-align: left;
  font: inherit;
  cursor: pointer;
  appearance: none;
}

.blog-card-link:focus-visible {
  outline: 3px solid rgba(255, 173, 23, 0.35);
  outline-offset: 4px;
}

.blog-grid img {
  height: 190px;
}

.blog-grid time {
  display: block;
  margin: 6px 6px 12px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.blog-grid h3 {
  font-size: 17px;
}

.blog-lightbox-copy time {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.admin-field-wide {
  grid-column: 1 / -1;
}

.footer {
  margin-top: 88px;
  padding: 30px 0 0;
  background: var(--ink);
}

.footer-inner {
  display: grid;
  gap: 24px;
  padding: 40px 42px 34px;
  color: #fff;
  background: var(--ink);
  border-radius: 8px 8px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.05fr 1fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.footer-info {
  display: grid;
  gap: 8px;
  max-width: 390px;
  color: rgba(255, 255, 255, 0.82);
}

.footer-copy {
  display: grid;
  gap: 10px;
  max-width: 460px;
  color: rgba(255, 255, 255, 0.76);
}

.footer-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 94px;
  padding: 16px 18px;
  background: #fff;
  border-radius: 6px;
}

.footer-brand-logo {
  width: 100%;
  max-width: 310px;
  height: 62px;
  object-fit: contain;
  object-position: left center;
}

.footer-copy-label {
  margin: 0;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-info p {
  margin: 0;
  line-height: 1.45;
}

.footer-info strong {
  color: #fff;
}

.footer-info-hours {
  margin-top: 2px;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-content: start;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  font-weight: 800;
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.footer-links a:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.22);
}

.footer-divider {
  width: 100%;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin: 2px 0 0;
}

.footer-bottom {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-link {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, opacity 0.18s ease;
}

.social-link svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.social-link:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.24);
}

.social-link.is-empty {
  opacity: 0.45;
}

.footer-copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.footer-legal {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.footer-legal-link {
  appearance: none;
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  font-weight: inherit;
  cursor: pointer;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.footer-legal-link:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.footer-legal-separator {
  opacity: 0.65;
}

.legal-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 22px;
}

.legal-lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(6, 20, 41, 0.58);
  backdrop-filter: blur(5px);
}

.legal-lightbox-panel {
  position: relative;
  z-index: 1;
  width: min(880px, 100%);
  max-height: min(82vh, 920px);
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  padding: 26px;
  overflow: hidden;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(7, 18, 34, 0.34);
}

.legal-lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--ink);
  border: 0;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.legal-lightbox-copy {
  display: grid;
  gap: 14px;
  min-height: 0;
}

.legal-lightbox-copy h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 42px);
}

.legal-lightbox-table-wrap {
  overflow: auto;
  padding-right: 4px;
}

.legal-lightbox-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.legal-lightbox-table th,
.legal-lightbox-table td {
  padding: 16px 18px;
  vertical-align: top;
  text-align: left;
}

.legal-lightbox-table th {
  width: 160px;
  color: var(--ink);
  background: #f7f9fc;
  border-right: 1px solid var(--line);
}

.legal-lightbox-table tr + tr th,
.legal-lightbox-table tr + tr td {
  border-top: 1px solid var(--line);
}

.legal-lightbox-table td {
  color: var(--muted);
  line-height: 1.75;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.legal-lightbox-table td p {
  margin: 0 0 12px;
}

.legal-lightbox-table td p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1080px) {
  .site-header {
    flex-wrap: wrap;
    border-radius: 12px;
  }

  .nav-links {
    order: 3;
    width: 100%;
    flex: auto;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 6px 0;
  }

  .header-actions {
    margin-left: auto;
  }

  .language-switcher {
    gap: 6px;
  }

  .brand-logo {
    width: 220px;
    height: 48px;
  }

  .phone span:last-child {
    display: none;
  }

  .promo-grid,
  .features,
  .about,
  .estimate,
  .pricing,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .promo-booking {
    grid-template-columns: 1fr 0.55fr;
    min-height: 220px;
  }

  .about-photo,
  .about-card {
    min-height: 520px;
  }

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

  .company-contact-grid,
  .service-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .company-coverage-copy {
    bottom: 16px;
    right: 18px;
    max-width: 180px;
    padding: 11px 13px;
  }

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

  .gallery-card,
  .gallery-card.featured {
    grid-column: auto;
    grid-row: auto;
    min-height: 280px;
    aspect-ratio: auto;
  }

  .gallery-lightbox-panel {
    grid-template-columns: 1fr;
  }

  .gallery-lightbox-media {
    min-height: 360px;
  }

  .pricing-copy {
    padding-left: 0;
  }
}

@media (max-width: 720px) {
  :root {
    --anchor-offset: 92px;
  }

  .section-shell,
  .site-header {
    width: min(100% - 22px, 1180px);
  }

  .site-header {
    margin-top: 10px;
    gap: 14px;
  }

  .header-actions .button {
    display: none;
  }

  .brand-logo {
    width: 178px;
    height: 44px;
  }

  .language-switcher {
    padding: 3px;
  }

  .lang-flag {
    width: 34px;
    height: 30px;
    font-size: 12px;
  }

  .hero-media {
    min-height: 440px;
    aspect-ratio: 1.15 / 1;
    border-radius: 8px;
  }

  .company-coverage-map {
    margin: 28px 0 34px;
  }

  .company-coverage-copy {
    bottom: 12px;
    right: 14px;
    max-width: 150px;
    padding: 10px 12px;
  }

  .company-coverage-copy strong {
    font-size: 13px;
  }

  .company-coverage-map img {
    aspect-ratio: 1.35 / 1;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(8, 20, 43, 0.25), rgba(8, 20, 43, 0.88));
  }

  .hero-content {
    width: min(320px, calc(100% - 38px));
    top: auto;
    bottom: 34px;
    transform: none;
  }

  .hero h1 {
    max-width: 310px;
    font-size: clamp(24px, 7vw, 32px);
  }

  .hero p:not(.eyebrow) {
    max-width: 310px;
    margin: 12px 0 18px;
    font-size: 12px;
  }

  .promo-grid,
  .feature-grid,
  .service-grid,
  .service-list-grid,
  .gallery-grid,
  .testimonial-grid,
  .blog-grid,
  .form-grid,
  .logo-row {
    grid-template-columns: 1fr;
  }

  .estimate-contact-grid {
    grid-template-columns: 1fr;
  }

  .estimate-contact-grid .company-contact-card-map {
    grid-column: auto;
    min-height: 240px;
  }

  .promo-booking {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: 320px;
  }

  .promo-booking img {
    justify-self: center;
    align-self: end;
    width: min(100%, 360px);
    height: 56%;
    object-fit: cover;
  }

  .promo-booking::before {
    content: none;
  }

  .features {
    padding: 76px 0 54px;
  }

  .feature-grid {
    gap: 32px;
  }

  .section-title-row {
    align-items: start;
    flex-direction: column;
  }

  .gallery-head {
    align-items: start;
    flex-direction: column;
  }

  .gallery-head > p {
    max-width: none;
  }

  .gallery-lightbox {
    padding: 12px;
  }

  .gallery-card {
    min-height: 250px;
  }

  .gallery-lightbox-media {
    min-height: 250px;
  }

  .gallery-lightbox-copy p:last-child {
    font-size: 15px;
  }

  .circle-stats {
    flex-direction: column;
  }

  .company-contact-grid {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: 1fr;
    padding: 54px 0;
  }

  .estimate img {
    min-height: 280px;
  }

  .newsletter div {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  :root {
    --anchor-offset: 80px;
  }

  .section-shell,
  .site-header {
    width: calc(100% - 16px);
  }

  .site-header {
    gap: 10px;
    margin-top: 8px;
    padding: 10px 10px 8px;
    border-radius: 12px;
    align-items: flex-start;
  }

  .brand-logo {
    width: 148px;
    height: 38px;
  }

  .header-actions {
    width: auto;
    margin-left: auto;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    gap: 6px;
  }

  .phone {
    min-width: 0;
    flex: 0 0 auto;
    justify-content: center;
    font-size: 12px;
  }

  .phone span:last-child {
    display: none;
  }

  .language-switcher {
    order: 0;
  }

  .login-icon {
    order: 0;
    width: 38px;
    height: 38px;
  }

  .nav-links {
    order: 3;
    width: 100%;
    gap: 12px;
    padding: 2px 0 0;
    font-size: 10px;
  }

  .hero {
    margin-top: 14px;
  }

  .hero-media {
    min-height: 360px;
    aspect-ratio: 0.95 / 1;
    border-radius: 10px;
  }

  .hero-content {
    left: 16px;
    right: 16px;
    bottom: 18px;
    width: auto;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(22px, 8.5vw, 30px);
  }

  .hero p:not(.eyebrow) {
    max-width: none;
    margin: 10px 0 16px;
    font-size: 12px;
  }

  .promo-grid,
  .feature-grid,
  .service-grid,
  .service-list-grid,
  .gallery-grid,
  .testimonial-grid,
  .blog-grid,
  .form-grid,
  .logo-row {
    gap: 14px;
  }

  .promo-card {
    min-height: 180px;
  }

  .promo-photo,
  .promo-stat,
  .promo-booking {
    padding: 20px;
  }

  .promo-booking img {
    height: 50%;
  }

  .features {
    gap: 28px;
    padding: 56px 0 40px;
  }

  .section-intro::after {
    width: 170px;
    height: 170px;
    margin-top: 18px;
  }

  .feature-grid {
    gap: 24px;
  }

  .about {
    gap: 18px;
    padding-bottom: 48px;
  }

  .about-photo,
  .about-card {
    min-height: 0;
  }

  .about-card {
    padding: 24px 18px;
  }

  .company-contact-grid {
    gap: 10px;
  }

  .company-contact-card {
    padding: 14px;
  }

  .company-coverage-map {
    margin: 24px 0 28px;
    border-radius: 8px;
  }

  .company-coverage-map img {
    aspect-ratio: 1.4 / 1;
  }

  .company-coverage-copy {
    right: 12px;
    bottom: 12px;
    max-width: 140px;
    padding: 9px 10px;
  }

  .company-coverage-copy span {
    font-size: 10px;
  }

  .company-coverage-copy strong {
    font-size: 12px;
  }

  .section-title-row,
  .gallery-head {
    margin-bottom: 18px;
  }

  .gallery {
    padding: 58px 0 0;
  }

  .gallery-card,
  .gallery-card.featured {
    min-height: 210px;
  }

  .gallery-card-copy {
    left: 14px;
    right: 14px;
  }

  .gallery-card-copy strong {
    font-size: 15px;
  }

  .gallery-card-copy small {
    font-size: 11px;
  }

  .gallery-lightbox {
    padding: 8px;
  }

  .gallery-lightbox-panel {
    max-height: calc(100vh - 16px);
    border-radius: 8px;
  }

  .gallery-lightbox-media {
    min-height: 200px;
  }

  .gallery-lightbox-copy {
    padding: 18px;
    gap: 12px;
  }

  .stats {
    gap: 12px;
    padding: 44px 0;
  }

  .stats div {
    gap: 10px;
  }

  .stats strong {
    font-size: clamp(28px, 11vw, 42px);
  }

  .estimate {
    min-height: 0;
  }

  .estimate-form {
    padding: 24px 18px;
  }

  .estimate-form h2 {
    margin-bottom: 18px;
  }

  .estimate-contact-grid .company-contact-card-map {
    min-height: 210px;
  }

  .estimate-contact-grid .company-contact-card {
    min-height: 78px;
  }

  .estimate-contact-actions {
    gap: 10px;
  }

  .form-grid input,
  .form-grid select,
  .newsletter input {
    min-height: 46px;
  }

  .testimonials {
    padding-top: 56px;
  }

  blockquote {
    padding: 24px;
  }

  .pricing {
    gap: 16px;
    padding: 52px 0;
  }

  .price-card {
    padding: 24px;
  }

  .price-card h3 {
    font-size: 28px;
  }

  .blog {
    margin-top: 28px;
    padding-top: 16px;
  }

  .blog-grid article {
    padding: 12px 12px 18px;
  }

  .blog-grid img {
    height: 170px;
  }

  .footer {
    margin-top: 56px;
    padding: 20px 0 0;
  }

  .footer-inner {
    gap: 20px;
    padding: 26px 18px;
  }

  .footer-top {
    gap: 20px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-legal {
    justify-content: center;
  }

  .legal-lightbox {
    padding: 14px;
  }

  .legal-lightbox-panel {
    max-height: 88vh;
    padding: 18px;
    border-radius: 18px;
  }

  .legal-lightbox-close {
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
    font-size: 24px;
  }

  .legal-lightbox-table th,
  .legal-lightbox-table td {
    display: block;
    width: 100%;
  }

  .legal-lightbox-table th {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .word-strip {
    gap: 14px;
    padding: 10px 0 22px;
    font-size: clamp(22px, 8vw, 28px);
  }
}

@media (max-width: 420px) {
  .site-header {
    gap: 8px;
    padding: 8px 8px 7px;
  }

  .brand-logo {
    width: 136px;
    height: 34px;
  }

  .nav-links {
    font-size: 9px;
    gap: 10px;
  }

  .lang-flag {
    width: 30px;
    height: 28px;
    font-size: 11px;
  }

  .phone-dot {
    width: 34px;
    height: 34px;
  }

  .hero-media {
    min-height: 320px;
  }

  .hero-content {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .promo-card,
  .gallery-card,
  .gallery-card.featured {
    min-height: 190px;
  }

  .gallery-lightbox-copy h3 {
    font-size: clamp(22px, 8vw, 28px);
  }
}

