:root {
  --ink: #09141f;
  --ink-soft: #263746;
  --paper: #f7f9fb;
  --white: #ffffff;
  --blue: #0077c8;
  --blue-dark: #063c6d;
  --aqua: #17c9d6;
  --bolt: #f4df18;
  --red: #ef3d26;
  --line: rgba(9, 20, 31, 0.14);
  --section: min(1180px, calc(100% - 64px));
  --header-height: 82px;
  --display: "Barlow Condensed", Arial Narrow, sans-serif;
  --body: "Manrope", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 68px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.lightbox-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

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

h1,
h2,
h3,
p,
figure,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: 0;
}

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

.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: 500;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--bolt);
  font-size: 12px;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.eyebrow::before {
  width: 34px;
  height: 3px;
  flex: 0 0 auto;
  content: "";
  background: var(--red);
}

.eyebrow-light {
  color: var(--white);
}

.eyebrow-light::before {
  background: var(--bolt);
}

.section-intro {
  margin-bottom: 56px;
}

.section-intro h2,
.local-copy h2,
.visit-copy h2,
.poster-copy h2 {
  font-size: clamp(46px, 6vw, 80px);
  text-transform: uppercase;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 72px;
  align-items: end;
}

.split-heading > p {
  max-width: 500px;
  padding-bottom: 7px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.75;
}

.centered-heading {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.centered-heading .eyebrow {
  justify-content: center;
}

.btn {
  position: relative;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.btn::after {
  content: "→";
  font-size: 18px;
  line-height: 1;
  transition: transform 180ms ease;
}

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

.btn:hover::after {
  transform: translateX(4px);
}

.btn:active {
  transform: translateY(0);
}

.btn-bolt,
.btn-primary {
  color: var(--ink);
  background: var(--bolt);
  box-shadow: 5px 5px 0 var(--red);
}

.btn-bolt:hover,
.btn-primary:hover {
  background: #fff128;
  box-shadow: 7px 7px 0 var(--red);
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(7, 25, 42, 0.18);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  color: var(--ink);
  border-color: var(--white);
  background: var(--white);
}

.btn-outline {
  color: var(--ink);
  border-color: var(--ink);
  background: transparent;
}

.btn-outline:hover {
  color: var(--white);
  background: var(--ink);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  height: var(--header-height);
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 34px;
  padding: 0 max(32px, calc((100vw - 1180px) / 2));
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  transition:
    height 220ms ease,
    color 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled {
  height: 68px;
  color: var(--ink);
  border-bottom-color: transparent;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 34px rgba(9, 20, 31, 0.1);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  display: grid;
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  place-items: center;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1;
}

.brand-text strong {
  font-family: var(--display);
  font-size: 23px;
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-text small {
  margin-top: 5px;
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  opacity: 0.78;
}

.main-nav {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 28px;
}

.main-nav a {
  position: relative;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--bolt);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.header-cta {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  color: var(--ink);
  background: var(--bolt);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition:
    transform 180ms ease,
    background-color 180ms ease;
}

.header-cta:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.site-header.is-scrolled .header-cta:hover {
  color: var(--white);
  background: var(--blue);
}

/* Language switch */
.lang-switch {
  display: inline-flex;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(7, 25, 42, 0.18);
  backdrop-filter: blur(8px);
}

.lang-btn {
  display: inline-flex;
  min-width: 38px;
  align-items: center;
  justify-content: center;
  padding: 10px 8px;
  color: inherit;
  border: 0;
  background: transparent;
  cursor: pointer;
  line-height: 1;
  transition:
    background-color 160ms ease,
    color 160ms ease;
}

.lang-btn svg {
  display: block;
  width: 20px;
  height: 12px;
}

.lang-btn + .lang-btn {
  border-left: 1px solid rgba(9, 20, 31, 0.18);
}

.lang-btn:not(.is-active):hover {
  color: var(--ink);
  background: rgba(244, 223, 24, 0.45);
}

.lang-btn.is-active {
  color: var(--ink);
  background: var(--bolt);
}

.site-header.is-scrolled .lang-switch {
  border-color: rgba(9, 20, 31, 0.28);
  background: transparent;
  backdrop-filter: none;
}

.nav-toggle {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  display: grid;
  min-height: max(700px, 100svh);
  overflow: hidden;
  align-items: center;
  color: var(--white);
  background: var(--blue-dark);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media picture,
.hero-media img {
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: 54% center;
  transform: scale(1.01);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(3, 15, 31, 0.86) 0%, rgba(3, 20, 39, 0.56) 38%, rgba(3, 21, 42, 0.28) 100%),
    linear-gradient(0deg, rgba(2, 13, 26, 0.72) 0%, transparent 30%, rgba(4, 19, 34, 0.2) 100%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(270px, 0.55fr);
  gap: 80px;
  align-items: end;
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 110px;
}

.hero-copy {
  max-width: 720px;
}

.hero h1 {
  font-size: clamp(90px, 12.5vw, 178px);
  line-height: 0.72;
  text-transform: uppercase;
  text-shadow: 0 10px 35px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  max-width: 580px;
  margin-top: 40px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 600;
  line-height: 1.65;
}

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

.hero-status {
  align-self: end;
  padding-inline: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.42);
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(3, 18, 36, 0.24);
  backdrop-filter: blur(4px);
}

.hero-status > div,
.hero-status > a {
  display: flex;
  min-height: 106px;
  flex-direction: column;
  justify-content: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-status > :last-child {
  border-bottom: 0;
}

.hero-status span,
.hero-status small {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  opacity: 0.72;
}

.hero-status strong {
  margin: 5px 0 3px;
  font-family: var(--display);
  font-size: 26px;
  line-height: 1.05;
  text-transform: uppercase;
}

.hero-status a {
  transition: padding 180ms ease;
}

.hero-status a:hover {
  padding-left: 10px;
}

.hero-scroll {
  position: absolute;
  z-index: 3;
  bottom: 30px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  transform: translateX(-50%);
}

.hero-scroll i {
  position: relative;
  display: block;
  width: 32px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.35);
}

.hero-scroll i::after {
  position: absolute;
  inset: 0;
  content: "";
  background: var(--bolt);
  animation: scroll-line 1.8s ease-in-out infinite;
  transform: translateX(-100%);
}

@keyframes scroll-line {
  50%,
  100% {
    transform: translateX(100%);
  }
}

/* Prices */
.prices {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: var(--white);
}

.prices::before {
  position: absolute;
  top: -190px;
  right: -120px;
  width: 440px;
  height: 440px;
  border: 55px solid rgba(23, 201, 214, 0.06);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.price-board {
  border-top: 2px solid var(--ink);
}

.price-line {
  display: grid;
  min-height: 136px;
  grid-template-columns: 80px minmax(270px, 1.2fr) 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 22px 26px 22px 0;
  border-bottom: 1px solid var(--line);
  transition:
    color 200ms ease,
    background-color 200ms ease,
    padding 200ms ease;
}

.price-line:hover {
  padding-left: 20px;
  color: var(--white);
  background: var(--blue);
}

.price-line.accent:hover {
  color: var(--ink);
  background: var(--aqua);
}

.price-line.pet:hover {
  color: var(--ink);
  background: var(--bolt);
}

.price-number {
  align-self: stretch;
  display: grid;
  place-items: center;
  color: var(--blue);
  border-right: 1px solid var(--line);
  font-family: var(--display);
  font-size: 20px;
  font-weight: 800;
}

.price-line:hover .price-number {
  color: currentColor;
  border-right-color: currentColor;
}

.price-line span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.price-line:hover span {
  color: currentColor;
}

.price-line h3 {
  margin-top: 7px;
  font-size: clamp(31px, 3.5vw, 46px);
  text-transform: uppercase;
}

.price-line p {
  color: var(--ink-soft);
  font-size: 15px;
}

.price-line:hover p {
  color: currentColor;
}

.price-line > strong {
  font-family: var(--display);
  font-size: clamp(52px, 6vw, 76px);
  line-height: 1;
}

.dryer-offer {
  display: flex;
  min-height: 132px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 26px;
  padding: 26px 42px;
  color: var(--white);
  background:
    linear-gradient(105deg, var(--blue-dark), var(--blue) 65%, #0b93cf);
  box-shadow: 10px 10px 0 var(--aqua);
}

.dryer-offer span {
  color: var(--aqua);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.dryer-offer strong {
  display: block;
  margin-top: 5px;
  font-family: var(--display);
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1;
  text-transform: uppercase;
}

.dryer-offer p {
  flex: 0 0 auto;
  font-size: 18px;
  font-weight: 700;
}

.dryer-offer b {
  font-family: var(--display);
  font-size: 68px;
  line-height: 1;
}

/* Services */
.services {
  position: relative;
  padding: 120px 0 130px;
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--paper) 0%, #edf7fa 62%, var(--paper) 100%);
}

.services::before,
.services::after {
  position: absolute;
  border: 2px solid rgba(0, 119, 200, 0.08);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.services::before {
  top: 100px;
  left: -130px;
  width: 280px;
  height: 280px;
}

.services::after {
  right: -70px;
  bottom: 50px;
  width: 190px;
  height: 190px;
  box-shadow:
    0 0 0 22px rgba(0, 119, 200, 0.025),
    0 0 0 45px rgba(0, 119, 200, 0.018);
}

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

.service-card {
  position: relative;
  display: flex;
  min-height: 530px;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 30px 36px;
  color: var(--ink);
  border: 1px solid rgba(9, 20, 31, 0.1);
  background: var(--white);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.service-card::before {
  position: absolute;
  z-index: 4;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  content: "";
  background: var(--aqua);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms ease;
}

.service-card:nth-child(2)::before {
  background: linear-gradient(90deg, #ff9d2f, #ef4b33);
}

.service-card:nth-child(3)::before {
  background: var(--red);
}

.service-card:hover {
  z-index: 2;
  border-color: transparent;
  box-shadow: 0 28px 60px rgba(9, 20, 31, 0.18);
  transform: translateY(-10px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-dark {
  color: var(--white);
  border-color: var(--ink);
  background: var(--ink);
}

.service-pet {
  background: var(--bolt);
}

.service-index {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(9, 20, 31, 0.22);
  font-family: var(--display);
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
  transition:
    color 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease,
    transform 220ms ease;
}

.service-dark .service-index {
  border-color: rgba(255, 255, 255, 0.28);
}

.service-card:hover .service-index {
  color: var(--white);
  border-color: var(--blue);
  background: var(--blue);
  transform: rotate(-5deg);
}

.service-dark:hover .service-index {
  color: var(--ink);
  border-color: #ff9d2f;
  background: #ff9d2f;
}

.service-pet:hover .service-index {
  color: var(--white);
  border-color: var(--red);
  background: var(--red);
}

.service-icon {
  position: relative;
  display: grid;
  width: 100%;
  height: 270px;
  margin: 4px auto;
  isolation: isolate;
  place-items: center;
}

.service-icon::before,
.service-icon::after {
  position: absolute;
  z-index: 0;
  content: "";
  pointer-events: none;
}

.service-icon::after {
  width: 205px;
  height: 205px;
  border: 1px solid rgba(0, 119, 200, 0.18);
  border-radius: 50%;
  background: rgba(23, 201, 214, 0.04);
  opacity: 0.7;
  transform: scale(0.86);
  transition:
    opacity 280ms ease,
    transform 380ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-icon-wash::before {
  inset: 16px 12px;
  background:
    radial-gradient(circle at 14% 72%, transparent 0 7px, rgba(23, 201, 214, 0.55) 8px 10px, transparent 11px),
    radial-gradient(circle at 25% 33%, transparent 0 4px, rgba(0, 119, 200, 0.44) 5px 7px, transparent 8px),
    radial-gradient(circle at 78% 25%, transparent 0 6px, rgba(23, 201, 214, 0.48) 7px 9px, transparent 10px),
    radial-gradient(circle at 87% 68%, transparent 0 5px, rgba(0, 119, 200, 0.4) 6px 8px, transparent 9px);
  opacity: 0;
}

.service-icon-dry::before {
  width: 230px;
  height: 230px;
  border: 2px dashed rgba(255, 157, 47, 0.48);
  border-radius: 50%;
  opacity: 0;
  transform: rotate(0deg) scale(0.84);
}

.service-icon-dry::after {
  border-color: rgba(255, 157, 47, 0.38);
  background: radial-gradient(circle, rgba(239, 75, 51, 0.2), rgba(255, 157, 47, 0.04) 58%, transparent 60%);
  box-shadow: 0 0 45px rgba(255, 112, 43, 0.12);
}

.service-icon-pet::before {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 58%, rgba(239, 75, 51, 0.2) 0 27px, transparent 29px),
    radial-gradient(circle at 31% 35%, rgba(239, 75, 51, 0.18) 0 13px, transparent 15px),
    radial-gradient(circle at 45% 25%, rgba(239, 75, 51, 0.18) 0 13px, transparent 15px),
    radial-gradient(circle at 60% 27%, rgba(239, 75, 51, 0.18) 0 13px, transparent 15px),
    radial-gradient(circle at 73% 40%, rgba(239, 75, 51, 0.18) 0 13px, transparent 15px);
  opacity: 0;
  transform: scale(0.68) rotate(-8deg);
}

.service-icon-pet::after {
  border-color: rgba(239, 75, 51, 0.28);
  background: rgba(255, 255, 255, 0.16);
}

.service-icon img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 12px rgba(9, 20, 31, 0.08));
  will-change: transform, filter;
  transition:
    transform 280ms ease,
    filter 280ms ease;
}

.service-card:hover .service-icon::after {
  opacity: 1;
  transform: scale(1);
}

.service-card:hover .service-icon-wash::before {
  animation: service-bubbles 1.8s ease-in-out infinite;
}

.service-card:hover .service-icon-dry::before {
  animation: service-heat-ring 4s linear infinite;
}

.service-card:hover .service-icon-pet::before {
  animation: service-paw-pulse 1.5s ease-in-out infinite;
}

.service-card:hover .service-icon-wash img {
  animation: service-wash-machine 1.6s ease-in-out infinite;
  filter: drop-shadow(0 18px 16px rgba(0, 119, 200, 0.2));
}

.service-card:hover .service-icon-dry img {
  animation: service-dryer-machine 0.72s ease-in-out infinite;
  filter: drop-shadow(0 18px 17px rgba(255, 112, 43, 0.24));
}

.service-card:hover .service-icon-pet img {
  animation: service-pet-machine 1.25s ease-in-out infinite;
  filter: drop-shadow(0 18px 16px rgba(163, 44, 32, 0.2));
}

.service-card h3 {
  position: relative;
  display: inline-block;
  font-size: clamp(32px, 3.1vw, 43px);
  text-transform: uppercase;
}

.service-card h3::after {
  display: block;
  width: 42px;
  height: 4px;
  margin-top: 12px;
  content: "";
  background: var(--aqua);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms ease;
}

.service-dark h3::after {
  background: #ff9d2f;
}

.service-pet h3::after {
  background: var(--red);
}

.service-card:hover h3::after {
  transform: scaleX(1);
}

.service-card p {
  max-width: 320px;
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

.service-dark p {
  color: rgba(255, 255, 255, 0.7);
}

@keyframes service-bubbles {
  0% {
    opacity: 0;
    transform: translateY(14px) scale(0.92);
  }
  35% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(-18px) scale(1.03);
  }
}

@keyframes service-heat-ring {
  0% {
    opacity: 0.2;
    transform: rotate(0deg) scale(0.86);
  }
  50% {
    opacity: 0.75;
    transform: rotate(180deg) scale(1);
  }
  100% {
    opacity: 0.2;
    transform: rotate(360deg) scale(0.86);
  }
}

@keyframes service-paw-pulse {
  0%,
  100% {
    opacity: 0.18;
    transform: scale(0.68) rotate(-8deg);
  }
  50% {
    opacity: 0.72;
    transform: scale(0.92) rotate(4deg);
  }
}

@keyframes service-wash-machine {
  0%,
  100% {
    transform: translateY(0) rotate(0deg) scale(1.02);
  }
  50% {
    transform: translateY(-6px) rotate(-0.7deg) scale(1.055);
  }
}

@keyframes service-dryer-machine {
  0%,
  100% {
    transform: translateX(0) rotate(0deg) scale(1.025);
  }
  35% {
    transform: translateX(-2px) rotate(-0.35deg) scale(1.045);
  }
  70% {
    transform: translateX(2px) rotate(0.35deg) scale(1.045);
  }
}

@keyframes service-pet-machine {
  0%,
  100% {
    transform: translateY(0) rotate(0deg) scale(1.02);
  }
  45% {
    transform: translateY(-7px) rotate(1deg) scale(1.055);
  }
  65% {
    transform: translateY(-4px) rotate(-0.6deg) scale(1.045);
  }
}

/* Local story */
.local-story {
  padding: 130px 0;
  background: var(--white);
}

.local-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  grid-template-areas:
    "main copy"
    "featured featured"
    "more more";
  gap: 34px 54px;
  align-items: start;
}

.local-main-image {
  position: relative;
  grid-area: main;
  overflow: hidden;
  aspect-ratio: 1.12 / 1;
  background: #dce6ec;
}

.local-main-image picture,
.local-main-image img {
  width: 100%;
  height: 100%;
}

.local-main-image img {
  object-fit: cover;
  transition: transform 600ms ease;
}

.local-main-image:hover img {
  transform: scale(1.03);
}

.local-main-image > span {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 13px 18px;
  color: var(--ink);
  background: var(--bolt);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.local-copy {
  grid-area: copy;
  padding: 40px 0 20px;
}

.local-copy h2 {
  max-width: 520px;
}

.local-copy > p:not(.eyebrow) {
  max-width: 500px;
  margin-top: 30px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.8;
}

.feature-list {
  display: grid;
  margin: 36px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.feature-list li {
  position: relative;
  padding: 15px 10px 15px 30px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.feature-list li::before {
  position: absolute;
  top: 50%;
  left: 2px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.featured-gallery {
  display: grid;
  grid-area: featured;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  width: min(100%, 940px);
  margin: 0 auto;
}

.local-detail {
  position: relative;
  width: 100%;
  padding: 0;
  border: 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #dce6ec;
  cursor: zoom-in;
}

.local-detail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.local-detail:hover img {
  transform: scale(1.04);
}

.gallery-more {
  grid-area: more;
  width: 100%;
}

.gallery-more-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: min(100%, 940px);
  min-height: 54px;
  margin: 0 auto;
  padding: 0 22px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 220ms ease, border-color 220ms ease, background 220ms ease;
}

.gallery-more-toggle:hover,
.gallery-more-toggle:focus-visible {
  border-color: var(--ink);
  color: var(--white);
  background: var(--ink);
}

.gallery-more-icon {
  position: relative;
  width: 14px;
  height: 14px;
}

.gallery-more-icon::before,
.gallery-more-icon::after {
  position: absolute;
  top: 6px;
  left: 1px;
  width: 12px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 300ms ease;
}

.gallery-more-icon::after {
  transform: rotate(90deg);
}

.gallery-more.is-open .gallery-more-icon::after {
  transform: rotate(0deg);
}

.gallery-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-more.is-open .gallery-panel {
  grid-template-rows: 1fr;
}

.renovation-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  min-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 300ms ease, transform 520ms cubic-bezier(0.22, 1, 0.36, 1), padding-top 520ms ease;
}

.gallery-more.is-open .renovation-gallery {
  padding-top: 18px;
  opacity: 1;
  transform: translateY(0);
}

.renovation-gallery .gallery-zoom {
  padding: 0;
  border: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #dce6ec;
  cursor: zoom-in;
}

.renovation-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.renovation-gallery .gallery-zoom:hover img,
.renovation-gallery .gallery-zoom:focus-visible img {
  transform: scale(1.04);
}

/* Steps */
.steps {
  position: relative;
  padding: 120px 0 130px;
  color: var(--white);
  background: var(--ink);
}

.steps .eyebrow {
  color: var(--aqua);
}

.steps .split-heading > p {
  color: rgba(255, 255, 255, 0.65);
}

.step-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  list-style: none;
}

.step-track li {
  position: relative;
  min-height: 280px;
  padding: 30px 26px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  transition:
    color 200ms ease,
    background-color 200ms ease;
}

.step-track li:last-child {
  border-right: 0;
}

.step-track li:hover {
  color: var(--ink);
  background: var(--bolt);
}

.step-track span {
  display: block;
  margin-bottom: 70px;
  color: var(--aqua);
  font-family: var(--display);
  font-size: 19px;
  font-weight: 800;
}

.step-track li:hover span {
  color: var(--red);
}

.step-track h3 {
  font-size: 30px;
  text-transform: uppercase;
}

.step-track p {
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  line-height: 1.65;
}

.step-track li:hover p {
  color: var(--ink-soft);
}

/* Posters */
.posters {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  padding: 130px 0;
  color: var(--white);
  background:
    linear-gradient(115deg, #006bb2 0%, #008ad1 55%, #15b9d2 100%);
}

.posters::before {
  position: absolute;
  top: 90px;
  left: -80px;
  width: 230px;
  height: 230px;
  border: 32px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  content: "";
}

.poster-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(240px, 0.48fr) minmax(240px, 0.48fr);
  gap: 42px;
  align-items: center;
}

.poster-copy {
  position: relative;
  z-index: 2;
  max-width: 500px;
  padding-right: 25px;
}

.poster-copy > p:not(.eyebrow) {
  max-width: 450px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

.text-link {
  display: inline-block;
  margin-top: 32px;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--bolt);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 180ms ease;
}

.text-link:hover {
  color: var(--bolt);
}

.poster-card {
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 30px 60px rgba(2, 17, 30, 0.3);
  transition: transform 260ms ease;
}

.poster-card:hover {
  z-index: 3;
  transform: translateY(-8px) rotate(0deg);
}

.poster-card picture {
  display: block;
  aspect-ratio: 1748 / 2480;
  overflow: hidden;
}

.poster-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.poster-card figcaption {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  color: var(--ink);
}

.poster-card figcaption span {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.poster-zoom {
  padding: 6px 0;
  color: var(--blue);
  border: 0;
  border-bottom: 1px solid var(--blue);
  background: transparent;
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.poster-front {
  transform: rotate(-2.5deg);
}

.poster-back {
  margin-top: 74px;
  transform: rotate(2.5deg);
}

/* Visit */
.visit {
  padding: 130px 0;
  background: var(--white);
}

.visit-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  gap: 72px;
  align-items: stretch;
}

.visit-copy {
  padding: 20px 0;
}

.visit-copy > p:not(.eyebrow) {
  max-width: 500px;
  margin-top: 28px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.8;
}

.visit-info {
  display: grid;
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.visit-info div {
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.visit-info dt {
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.visit-info dd {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}

.visit-info a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.map-frame {
  min-height: 660px;
  overflow: hidden;
  border: 1px solid rgba(9, 20, 31, 0.16);
  background: var(--white);
  box-shadow: 0 20px 50px rgba(9, 20, 31, 0.12);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 640px;
  border: 0;
  filter: saturate(0.9) contrast(1.03);
}

/* Contact */
.contact {
  position: relative;
  overflow: hidden;
  padding: 105px 0;
  color: var(--white);
  background: var(--blue-dark);
}

.contact::after {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 360px;
  height: 360px;
  border: 45px solid rgba(23, 201, 214, 0.1);
  border-radius: 50%;
  content: "";
}

.contact-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 80px;
  align-items: start;
}

.contact-copy h2 {
  font-size: clamp(64px, 7vw, 96px);
  text-transform: uppercase;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 390px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.72);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.contact-form label {
  display: grid;
  gap: 9px;
}

.contact-form label > span {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  color: var(--white);
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 0;
  outline: 0;
  background: transparent;
  transition: border-color 180ms ease;
}

.contact-form input {
  height: 52px;
}

.contact-form textarea {
  min-height: 110px;
  padding: 15px 0;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom-color: var(--aqua);
}

.form-message,
.contact-form .btn,
.form-status {
  grid-column: 1 / -1;
}

.contact-form .btn {
  justify-self: start;
  margin-top: 8px;
  border: 0;
}

.form-status {
  min-height: 22px;
  color: var(--aqua);
  font-size: 12px;
  font-weight: 700;
}

/* Footer */
.site-footer {
  padding: 65px 0 26px;
  color: var(--white);
  background: #050c13;
}

.footer-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr auto;
  gap: 42px;
  align-items: start;
}

.footer-brand .brand-mark {
  width: 56px;
  height: 56px;
  flex-basis: 56px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}

.footer-contact a {
  color: var(--white);
  font-family: var(--display);
  font-size: 26px;
  font-weight: 800;
}

.site-footer nav {
  display: grid;
  gap: 8px;
}

.site-footer nav a {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 180ms ease;
}

.site-footer nav a:hover,
.site-footer .legal a:hover {
  color: var(--bolt);
}

.legal {
  display: flex;
  grid-column: 1 / -1;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 30px;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.45);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mobile-whatsapp {
  display: none;
}

/* Lightbox */
.lightbox {
  position: fixed;
  z-index: 300;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 70px 24px 24px;
  background: rgba(3, 10, 17, 0.92);
  backdrop-filter: blur(10px);
}

.lightbox.is-open {
  display: flex;
}

.lightbox-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  max-height: 100%;
  touch-action: pan-y;
}

.lightbox img {
  max-width: min(94vw, 1400px);
  max-height: calc(100vh - 100px);
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.lightbox-counter {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 6px 9px;
  color: var(--white);
  background: rgba(3, 10, 17, 0.72);
  font-size: 11px;
  font-weight: 800;
}

.lightbox-nav {
  position: absolute;
  z-index: 1;
  top: 50%;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  color: var(--white);
  background: rgba(3, 10, 17, 0.48);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 180ms ease, border-color 180ms ease;
}

.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  border-color: var(--white);
  background: rgba(3, 10, 17, 0.88);
}

.lightbox-nav::before {
  position: absolute;
  top: 17px;
  width: 16px;
  height: 16px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  content: "";
}

.lightbox-prev {
  left: 24px;
}

.lightbox-prev::before {
  left: 19px;
  transform: rotate(-135deg);
}

.lightbox-next {
  right: 24px;
}

.lightbox-next::before {
  right: 19px;
  transform: rotate(45deg);
}

.lightbox:not(.has-gallery) .lightbox-nav,
.lightbox:not(.has-gallery) .lightbox-counter {
  display: none;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  padding: 9px 13px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: transparent;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 720px) {
  .lightbox {
    padding: 64px 12px 20px;
  }

  .lightbox-nav {
    display: none;
  }

  .lightbox img {
    max-width: 100%;
    max-height: calc(100vh - 90px);
  }
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Legal pages */
.legal-page {
  min-height: 100vh;
  padding-top: 70px;
  padding-bottom: 90px;
}

.legal-page .brand {
  margin-bottom: 70px;
}

.legal-page h1 {
  margin-bottom: 22px;
  font-size: clamp(58px, 9vw, 110px);
  text-transform: uppercase;
}

.legal-page > p {
  max-width: 760px;
  color: var(--ink-soft);
  font-size: 17px;
}

.legal-page .info-list {
  max-width: 850px;
  margin: 42px 0;
  border-top: 2px solid var(--ink);
}

.legal-page .info-list div {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 30px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.legal-page .info-list dt {
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.legal-page .info-list dd {
  font-weight: 600;
}

/* Tablet */
@media (max-width: 1040px) {
  :root {
    --section: min(100% - 44px, 960px);
  }

  .site-header {
    padding-inline: 22px;
  }

  .main-nav {
    gap: 18px;
  }

  .main-nav a {
    font-size: 10px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) 290px;
    gap: 42px;
  }

  .hero h1 {
    font-size: clamp(88px, 14vw, 140px);
  }

  .service-card {
    min-height: 470px;
    padding: 25px;
  }

  .service-icon {
    height: 230px;
  }

  .poster-layout {
    grid-template-columns: minmax(290px, 0.75fr) repeat(2, minmax(200px, 0.5fr));
    gap: 24px;
  }

  .visit-layout {
    gap: 48px;
  }

  .contact-layout {
    gap: 50px;
  }
}

/* Mobile navigation and layouts */
@media (max-width: 820px) {
  :root {
    --section: calc(100% - 34px);
    --header-height: 70px;
  }

  .site-header,
  .site-header.is-scrolled {
    height: var(--header-height);
    grid-template-columns: 1fr auto auto;
    gap: 12px;
    padding-inline: 17px;
    color: var(--ink);
    border-bottom: 0;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 25px rgba(9, 20, 31, 0.08);
    backdrop-filter: blur(14px);
  }

  .site-header .lang-switch {
    order: 2;
    border-color: rgba(9, 20, 31, 0.28);
    background: transparent;
    backdrop-filter: none;
  }

  .site-header .lang-btn {
    min-width: 31px;
    padding: 8px 5px;
  }

  .site-header .lang-btn svg {
    width: 16px;
    height: 10px;
  }

  .site-header .brand-mark {
    width: 43px;
    height: 43px;
    flex-basis: 43px;
  }

  .site-header .brand-text strong {
    font-size: 20px;
  }

  .site-header .brand-text small {
    font-size: 8px;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
    order: 3;
    width: 43px;
    height: 43px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    color: var(--ink);
    border: 1px solid var(--line);
    background: var(--white);
    cursor: pointer;
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    transition:
      transform 180ms ease,
      opacity 180ms ease;
  }

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

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

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

  .main-nav {
    position: fixed;
    z-index: 99;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 8px 17px 20px;
    color: var(--ink);
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 34px rgba(9, 20, 31, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .main-nav.is-open,
  body.nav-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 12px;
  }

  .main-nav a::after {
    display: none;
  }

  .hero {
    min-height: 780px;
    align-items: end;
  }

  .hero-media img {
    object-position: 48% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(3, 15, 31, 0.96) 0%, rgba(3, 18, 36, 0.72) 51%, rgba(3, 16, 31, 0.2) 82%),
      linear-gradient(90deg, rgba(3, 15, 31, 0.5), transparent);
  }

  .hero-layout {
    display: block;
    padding-top: 145px;
    padding-bottom: 74px;
  }

  .hero-copy {
    max-width: 610px;
  }

  .hero h1 {
    font-size: clamp(88px, 22vw, 138px);
  }

  .hero-subtitle {
    max-width: 540px;
    margin-top: 30px;
    font-size: 17px;
  }

  .hero-status {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 48px;
    border-bottom: 0;
  }

  .hero-status > div,
  .hero-status > a {
    min-height: 95px;
    padding: 15px 14px 15px 0;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 0;
  }

  .hero-status > :not(:first-child) {
    padding-left: 14px;
  }

  .hero-status > :last-child {
    border-right: 0;
  }

  .hero-status strong {
    font-size: 19px;
  }

  .hero-scroll {
    display: none;
  }

  .prices,
  .services,
  .local-story,
  .steps,
  .posters,
  .visit {
    padding-top: 90px;
    padding-bottom: 95px;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-intro {
    margin-bottom: 42px;
  }

  .price-line {
    grid-template-columns: 54px minmax(0, 1fr) auto;
    gap: 18px;
    padding-right: 8px;
  }

  .price-line > p {
    display: none;
  }

  .price-line > strong {
    font-size: 54px;
  }

  .dryer-offer {
    padding: 26px;
  }

  .dryer-offer b {
    font-size: 56px;
  }

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

  .service-card {
    min-height: 400px;
    display: grid;
    grid-template-columns: minmax(210px, 0.9fr) minmax(230px, 1fr);
    grid-template-rows: auto 1fr;
    gap: 14px 28px;
    align-items: center;
  }

  .service-index {
    grid-column: 1 / -1;
  }

  .service-icon {
    height: 270px;
    margin: 0;
  }

  .local-layout {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "copy copy"
      "main main"
      "featured featured"
      "more more";
    gap: 24px;
  }

  .local-copy {
    padding: 0 0 30px;
  }

  .local-main-image {
    aspect-ratio: 1.4 / 1;
  }

  .detail-one,
  .detail-two {
    width: 100%;
    margin: 0;
  }

  .step-track {
    grid-template-columns: 1fr 1fr;
  }

  .step-track li:nth-child(2) {
    border-right: 0;
  }

  .step-track li:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .poster-layout {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .poster-copy {
    grid-column: 1 / -1;
    max-width: 700px;
    margin-bottom: 20px;
  }

  .poster-back {
    margin-top: 55px;
  }

  .visit-layout {
    grid-template-columns: 1fr;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 480px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 46px;
  }
}

@media (max-width: 560px) {
  :root {
    --section: calc(100% - 28px);
  }

  .eyebrow {
    margin-bottom: 16px;
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .eyebrow::before {
    width: 26px;
  }

  .section-intro h2,
  .local-copy h2,
  .visit-copy h2,
  .poster-copy h2 {
    font-size: 48px;
  }

  .btn {
    min-height: 50px;
    padding-inline: 18px;
    font-size: 11px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-media img {
    object-position: 52% center;
  }

  .hero-layout {
    padding-top: 140px;
    padding-bottom: 52px;
  }

  .hero h1 {
    font-size: clamp(86px, 27vw, 116px);
  }

  .hero-subtitle {
    margin-top: 26px;
    font-size: 15px;
    line-height: 1.6;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11px;
    margin-top: 26px;
  }

  .hero-status {
    grid-template-columns: 1fr 1fr;
    margin-top: 34px;
  }

  .hero-status > div,
  .hero-status > a {
    min-height: 82px;
  }

  .hero-status > :nth-child(2) {
    border-right: 0;
  }

  .hero-status > :last-child {
    display: none;
  }

  .hero-status strong {
    font-size: 17px;
  }

  .hero-status small {
    font-size: 8px;
  }

  .prices,
  .services,
  .local-story,
  .steps,
  .posters,
  .visit {
    padding-top: 76px;
    padding-bottom: 80px;
  }

  .split-heading > p,
  .local-copy > p:not(.eyebrow),
  .visit-copy > p:not(.eyebrow) {
    font-size: 15px;
  }

  .price-line {
    min-height: 110px;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    gap: 12px;
    padding: 16px 2px 16px 0;
  }

  .price-line:hover {
    padding-left: 8px;
  }

  .price-line h3 {
    font-size: 29px;
  }

  .price-line > strong {
    font-size: 44px;
  }

  .price-number {
    font-size: 16px;
  }

  .price-line span {
    font-size: 8px;
  }

  .dryer-offer {
    display: grid;
    gap: 18px;
    padding: 23px;
    box-shadow: 7px 7px 0 var(--aqua);
  }

  .dryer-offer strong {
    font-size: 33px;
  }

  .dryer-offer p {
    line-height: 1;
  }

  .service-card {
    display: flex;
    min-height: 465px;
    padding: 24px;
  }

  .service-icon {
    height: 250px;
  }

  .service-card h3 {
    font-size: 36px;
  }

  .local-layout {
    grid-template-areas:
      "copy copy"
      "main main"
      "featured featured"
      "more more";
    gap: 12px;
  }

  .featured-gallery {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

  .local-main-image {
    aspect-ratio: 1.15 / 1;
  }

  .local-detail {
    aspect-ratio: 16 / 10;
  }

  .feature-list {
    margin-top: 28px;
  }

  .feature-list li {
    font-size: 11px;
  }

  .step-track {
    grid-template-columns: 1fr;
  }

  .step-track li {
    min-height: 210px;
    padding: 25px 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .step-track li:last-child {
    border-bottom: 0;
  }

  .step-track span {
    margin-bottom: 44px;
  }

  .poster-layout {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .poster-copy {
    margin-bottom: 24px;
    padding-right: 0;
  }

  .poster-card figcaption {
    display: grid;
    gap: 6px;
    min-height: 76px;
  }

  .poster-card figcaption span {
    font-size: 9px;
  }

  .poster-back {
    margin-top: 34px;
  }

  .visit-info div {
    grid-template-columns: 80px 1fr;
  }

  .visit-actions {
    display: grid;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 390px;
  }

  .map-frame {
    box-shadow: 0 14px 30px rgba(9, 20, 31, 0.11);
  }

  .contact {
    padding: 76px 0 92px;
  }

  .contact-copy h2 {
    font-size: 72px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-form label,
  .contact-form .btn,
  .form-status {
    grid-column: 1;
  }

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

  .legal {
    grid-column: 1;
  }

  .mobile-whatsapp {
    position: fixed;
    z-index: 90;
    right: 14px;
    bottom: 14px;
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    color: var(--white);
    background: #178a4b;
    box-shadow: 0 10px 28px rgba(7, 48, 28, 0.28);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  .legal-page {
    padding-top: 35px;
  }

  .legal-page .brand {
    margin-bottom: 50px;
  }

  .legal-page .info-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (max-width: 400px) {
  .site-header {
    gap: 10px;
    padding-inline: 13px;
  }

  .site-header .brand-text strong {
    font-size: 17px;
  }

  .site-header .lang-btn {
    min-width: 27px;
    padding: 7px 4px;
  }

  .site-header .lang-btn svg {
    width: 14px;
    height: 9px;
  }
}
