:root {
  --bg: #f8fafb;
  --surface: #ffffff;
  --surface-soft: #eef5f7;
  --text: #172a33;
  --muted: #61727a;
  --line: #dbe7eb;
  --blue: #176fa8;
  --blue-dark: #11527d;
  --green: #4f9f69;
  --soft-blue: #e9f5fa;
  --shadow: 0 24px 70px rgba(23, 42, 51, 0.08);
  --radius: 24px;
  --radius-small: 14px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  position: relative;
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(125deg, rgba(233, 245, 250, 0.72) 0%, rgba(248, 250, 251, 0) 34%),
    linear-gradient(235deg, rgba(232, 244, 237, 0.5) 0%, rgba(248, 250, 251, 0) 38%),
    linear-gradient(180deg, rgba(234, 241, 244, 0.78), rgba(248, 250, 251, 0) 420px),
    var(--bg);
  font-family:
    Manrope,
    "Avenir Next",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(23, 111, 168, 0.05) 0 22%, transparent 22% 48%, rgba(79, 159, 105, 0.05) 48% 66%, transparent 66% 100%),
    linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.48) 44%, rgba(233, 245, 250, 0.5) 100%);
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

body.modal-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid rgba(21, 151, 201, 0.38);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  transform: translateY(-140%);
  z-index: 20;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--surface);
  background: var(--text);
  transition: transform 180ms ease;
}

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

.intro-loader {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  color: var(--blue-dark);
  background:
    radial-gradient(circle at 50% 44%, rgba(37, 142, 201, 0.11), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(233, 245, 250, 0.94)),
    var(--surface);
  transition:
    opacity 360ms ease,
    visibility 360ms ease;
  animation: intro-loader-safe-hide 260ms ease 5s forwards;
}

.intro-loader.is-hidden {
  visibility: hidden;
  opacity: 0;
  animation: none;
}

.intro-loader-inner {
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 16px;
  justify-items: center;
  transform: translateY(-8px);
}

.intro-loader-inner::before,
.intro-loader-inner::after {
  position: absolute;
  z-index: -1;
  width: clamp(126px, 22vw, 178px);
  aspect-ratio: 1;
  border: 1px solid rgba(37, 142, 201, 0.15);
  border-radius: 999px;
  content: "";
  opacity: 0;
  transform: scale(0.72);
  animation: intro-ripple 1.55s cubic-bezier(0.16, 1, 0.3, 1) 260ms infinite;
}

.intro-loader-inner::after {
  animation-delay: 720ms;
}

.intro-drop {
  width: clamp(130px, 20vw, 190px);
  height: auto;
  overflow: visible;
  filter: drop-shadow(0 20px 36px rgba(17, 82, 125, 0.14));
  transform-origin: 62% 56%;
  animation: intro-drop-float 1.2s ease-in-out infinite alternate;
}

.intro-drop-shell {
  fill: rgba(255, 255, 255, 0.78);
}

.intro-water-level {
  transform: translate3d(0, 114px, 0);
  transform-box: view-box;
  transform-origin: 50% 100%;
  animation: intro-water-rise 1.8s cubic-bezier(0.22, 0.74, 0.2, 1) 480ms forwards;
  will-change: transform;
}

.intro-water-base,
.intro-wave-front {
  fill: url("#intro-drop-gradient");
}

.intro-wave {
  transform-box: view-box;
  transform-origin: 50% 50%;
  will-change: transform;
}

.intro-wave-back {
  fill: rgba(255, 255, 255, 0.32);
  animation: intro-wave-back 820ms ease-in-out infinite alternate;
}

.intro-wave-front {
  animation: intro-wave-front 720ms ease-in-out infinite alternate;
}

.intro-bubble {
  fill: rgba(255, 255, 255, 0.72);
  opacity: 0;
  transform-box: fill-box;
  transform-origin: 50% 50%;
  animation: intro-bubble 1.3s ease-in-out infinite;
}

.intro-bubble-two {
  animation-delay: 220ms;
}

.intro-bubble-three {
  animation-delay: 440ms;
}

.intro-drop-shine {
  fill: none;
  stroke: rgba(255, 255, 255, 0.78);
  stroke-linecap: round;
  stroke-width: 3.2;
  opacity: 0;
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
  animation: intro-shine 860ms ease 920ms forwards;
}

.intro-drop-outline {
  fill: none;
  stroke: var(--blue);
  stroke-width: 4.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.intro-loader span {
  color: var(--blue-dark);
  font-weight: 920;
  letter-spacing: 0;
  opacity: 0;
  transform: translate3d(0, 6px, 0);
  animation: intro-loader-word 520ms ease 560ms forwards;
}

@keyframes intro-ripple {
  0% {
    opacity: 0;
    transform: scale(0.72);
  }

  38% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: scale(1.22);
  }
}

@keyframes intro-drop-float {
  from {
    transform: translate3d(0, -3px, 0) rotate(-1.4deg);
  }

  to {
    transform: translate3d(0, 3px, 0) rotate(1.2deg);
  }
}

@keyframes intro-water-rise {
  0% {
    transform: translate3d(0, 114px, 0);
  }

  100% {
    transform: translate3d(0, -30px, 0);
  }
}

@keyframes intro-wave-front {
  from {
    transform: translate3d(-10px, 0, 0);
  }

  to {
    transform: translate3d(10px, 2px, 0);
  }
}

@keyframes intro-wave-back {
  from {
    transform: translate3d(9px, 1px, 0);
  }

  to {
    transform: translate3d(-9px, -1px, 0);
  }
}

@keyframes intro-bubble {
  0%,
  30% {
    opacity: 0;
    transform: translate3d(0, 12px, 0) scale(0.7);
  }

  58% {
    opacity: 0.82;
  }

  100% {
    opacity: 0;
    transform: translate3d(0, -12px, 0) scale(1.08);
  }
}

@keyframes intro-shine {
  to {
    opacity: 1;
    stroke-dashoffset: 0;
  }
}

@keyframes intro-loader-word {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes intro-loader-safe-hide {
  to {
    visibility: hidden;
    opacity: 0;
  }
}

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 32px), var(--max));
  min-height: 74px;
  margin: 0;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(219, 231, 235, 0.82);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(233, 245, 250, 0.72)),
    rgba(255, 255, 255, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 10px 30px rgba(23, 42, 51, 0.07);
  backdrop-filter: blur(18px);
}

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

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: contain;
  background: var(--surface);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  min-height: 44px;
  padding: 12px 11px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 750;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.site-nav a:hover {
  color: var(--text);
  background: var(--surface-soft);
}

.site-nav a[aria-current] {
  color: var(--blue-dark);
  background: var(--soft-blue);
}

.nav-label-mobile {
  display: none;
}

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

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(21, 151, 201, 0.22);
  border-radius: 50%;
  color: var(--blue-dark);
  background: rgba(233, 245, 250, 0.76);
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.social-icon:hover {
  border-color: rgba(21, 151, 201, 0.46);
  color: var(--surface);
  background: var(--blue);
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.social-icon[href*="facebook"] svg {
  fill: currentColor;
  stroke: none;
}

.site-nav a:active,
.social-icon:active,
.button:active,
.chip:active,
.select-button:active,
.tariff-select:active,
.extra-select:active {
  transform: translateY(1px) scale(0.99);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--text);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--surface);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

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

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

.section {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 96px 0;
  scroll-margin-top: 112px;
}

.zones-section::before,
#services::before,
.gallery-section::before,
.reviews-section::before,
.faq-section::before,
.pricing-section-final::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 18px;
  bottom: 18px;
  z-index: -1;
  width: 100vw;
  transform: translateX(-50%);
  pointer-events: none;
}

.zones-section::before {
  background:
    linear-gradient(120deg, rgba(233, 245, 250, 0.62), rgba(255, 255, 255, 0) 58%),
    linear-gradient(270deg, rgba(255, 255, 255, 0), rgba(232, 244, 237, 0.34), rgba(255, 255, 255, 0));
}

#services::before {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0), rgba(233, 245, 250, 0.58), rgba(255, 255, 255, 0) 68%),
    linear-gradient(90deg, rgba(232, 244, 237, 0.36), rgba(255, 255, 255, 0) 46%);
}

.gallery-section::before {
  background:
    linear-gradient(135deg, rgba(233, 245, 250, 0.78), rgba(255, 255, 255, 0) 62%),
    linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(232, 244, 237, 0.42), rgba(255, 255, 255, 0));
}

.gallery-section[data-active-filter="field"]::before {
  background:
    linear-gradient(135deg, rgba(232, 244, 237, 0.68), rgba(255, 255, 255, 0) 60%),
    linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(233, 245, 250, 0.46), rgba(255, 255, 255, 0));
}

.gallery-section[data-active-filter="video"]::before {
  background:
    linear-gradient(135deg, rgba(23, 111, 168, 0.12), rgba(255, 255, 255, 0) 58%),
    linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(233, 245, 250, 0.7), rgba(255, 255, 255, 0));
}

.reviews-section::before {
  background:
    linear-gradient(120deg, rgba(232, 244, 237, 0.62), rgba(255, 255, 255, 0) 58%),
    linear-gradient(270deg, rgba(233, 245, 250, 0.52), rgba(255, 255, 255, 0) 70%);
}

.faq-section::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(233, 245, 250, 0.54), rgba(255, 255, 255, 0));
}

.pricing-section-final::before {
  top: 42px;
  bottom: -18px;
  background:
    linear-gradient(145deg, rgba(233, 245, 250, 0.76), rgba(255, 255, 255, 0) 46%),
    linear-gradient(35deg, rgba(232, 244, 237, 0.5), rgba(255, 255, 255, 0) 60%);
}

.section.compact {
  padding-top: 56px;
}

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  width: 100vw;
  max-width: none;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  overflow: hidden;
  margin: 0 0 0 calc(50% - 50vw);
  padding:
    clamp(128px, 15vw, 180px)
    max(24px, calc((100vw - var(--max)) / 2 + 40px))
    clamp(80px, 10vw, 132px);
  border: 0;
  border-radius: 0;
  background: var(--surface);
  box-shadow: none;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero::before {
  background: url("assets/hero-desktop-action.jpg") center center / cover no-repeat;
  opacity: 1;
  filter: saturate(1.04) contrast(1.02);
}

.hero::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(11, 28, 35, 0.28) 0%, rgba(11, 28, 35, 0.11) 40%, rgba(11, 28, 35, 0) 100%),
    linear-gradient(0deg, rgba(11, 28, 35, 0.06), rgba(11, 28, 35, 0));
}

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

.hero .eyebrow {
  color: #d7f3ff;
}

.hero h1 {
  color: #ffffff;
  text-shadow: 0 2px 18px rgba(11, 28, 35, 0.22);
}

.hero .hero-text {
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 14px rgba(11, 28, 35, 0.18);
}

.hero .hero-proof span {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(11, 28, 35, 0.26);
  backdrop-filter: blur(10px);
}

.hero .button-secondary {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.92);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1,
h2 {
  max-width: 900px;
  font-family:
    "Space Grotesk",
    "Avenir Next",
    system-ui,
    sans-serif;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.45rem, 4.4vw, 4.8rem);
  font-weight: 800;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.85rem, 4vw, 4rem);
  font-weight: 820;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.18rem;
}

.hero-text,
.section-heading p,
.about-copy p {
  max-width: 62ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  appearance: none;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button-primary {
  color: var(--surface);
  background:
    linear-gradient(135deg, var(--blue), #2384b8 52%, var(--blue-dark));
  background-size: 170% 100%;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 16px 34px rgba(17, 82, 125, 0.2);
}

.button-primary:hover {
  background-position: 100% 0;
}

.button-secondary {
  color: var(--text);
  border-color: var(--line);
  background: var(--surface);
}

.button-secondary:hover {
  border-color: rgba(23, 42, 51, 0.18);
  background: var(--surface-soft);
}

.button-ghost {
  color: var(--muted);
  border-color: transparent;
  background: transparent;
}

.button-ghost:hover {
  color: var(--text);
  background: var(--surface-soft);
}

.button.is-disabled {
  pointer-events: none;
  color: #8b989e;
  background: #dfe8eb;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-proof span,
.zone-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  font-weight: 760;
}

.zones-section {
  padding-top: 38px;
}

.zones-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(219, 231, 235, 0.9);
  border-radius: var(--radius);
  background:
    linear-gradient(105deg, rgba(232, 244, 237, 0.72), rgba(255, 255, 255, 0) 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(233, 245, 250, 0.64)),
    rgba(255, 255, 255, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 14px 46px rgba(23, 42, 51, 0.05);
  backdrop-filter: blur(12px);
}

.zones-copy h2 {
  max-width: 18ch;
  margin-bottom: 10px;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.zones-copy p:last-child {
  max-width: 58ch;
  margin: 0;
  color: var(--muted);
}

.zone-toggle {
  appearance: none;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid rgba(21, 151, 201, 0.24);
  border-radius: 999px;
  color: var(--blue-dark);
  background: rgba(233, 245, 250, 0.82);
  font-weight: 850;
  cursor: pointer;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.zone-toggle:hover,
.zone-toggle[aria-expanded="true"] {
  border-color: var(--green);
  color: var(--surface);
  background: var(--green);
}

.zone-list {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 4px;
}

.zone-list span:nth-child(3n + 1) {
  border-color: rgba(79, 159, 105, 0.26);
  color: var(--green);
  background: rgba(232, 244, 237, 0.78);
}

.zone-list[hidden] {
  display: none;
}

.split-media,
.about-media {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(219, 231, 235, 0.84);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.split-media img,
.about-media img,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media {
  display: none;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(260px, 0.55fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 36px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -18px;
}

.section-heading p:not(.eyebrow) {
  margin-bottom: 8px;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(219, 231, 235, 0.9);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(233, 245, 250, 0.58)),
    rgba(255, 255, 255, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.64),
    0 16px 54px rgba(23, 42, 51, 0.05);
}

.service-strip article {
  min-height: 220px;
  padding: 28px 22px;
  border-right: 1px solid var(--line);
  transition:
    background 220ms ease,
    transform 220ms ease;
}

.service-strip article:last-child {
  border-right: 0;
}

.service-strip article:hover {
  background: rgba(255, 255, 255, 0.52);
  transform: translateY(-3px);
}

.service-strip article:nth-child(even) {
  background: linear-gradient(180deg, rgba(232, 244, 237, 0.32), rgba(255, 255, 255, 0));
}

.service-strip article:nth-child(even) span {
  color: var(--green);
}

.service-strip span {
  display: block;
  margin-bottom: 48px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.service-strip p {
  max-width: 28ch;
  margin-bottom: 0;
  color: var(--muted);
}

.pricing-section {
  padding-top: 76px;
}

.pricing-section-final {
  margin-top: clamp(14px, 3vw, 34px);
  padding-top: clamp(72px, 8vw, 108px);
  border-top: 1px solid rgba(219, 231, 235, 0.86);
}

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

.price-card {
  position: relative;
  overflow: hidden;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.68),
    0 16px 54px rgba(23, 42, 51, 0.05);
  backdrop-filter: blur(10px);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.price-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0) 42%);
}

.price-card:hover {
  border-color: rgba(21, 151, 201, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.76),
    0 22px 62px rgba(23, 42, 51, 0.08);
  transform: translateY(-4px);
}

.price-card-featured {
  border-color: rgba(21, 151, 201, 0.38);
  background:
    linear-gradient(180deg, rgba(233, 245, 250, 0.82), rgba(255, 255, 255, 0.96)),
    var(--surface);
}

.price-top {
  display: flex;
  gap: 16px;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 24px;
}

.plan {
  margin-bottom: 4px;
  color: var(--blue-dark);
  font-size: 1.14rem;
  font-weight: 900;
  text-transform: uppercase;
}

.duration {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.price-top strong {
  color: var(--blue-dark);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.9;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  min-height: 28px;
  padding-left: 36px;
  color: var(--text);
  font-weight: 720;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
}

.feature-list li::after {
  content: "";
  position: absolute;
}

.feature-list .included::before {
  background: var(--blue);
}

.feature-list .included::after {
  left: 7px;
  top: 8px;
  width: 8px;
  height: 4px;
  border-bottom: 2px solid var(--surface);
  border-left: 2px solid var(--surface);
  transform: rotate(-45deg);
}

.feature-list .excluded {
  color: #9aa4a8;
}

.feature-list .excluded::before {
  background: #a9b1b5;
}

.feature-list .excluded::after {
  left: 6px;
  top: 12px;
  width: 10px;
  height: 2px;
  border-radius: 999px;
  background: var(--surface);
  box-shadow: 0 0 0 0 var(--surface);
  transform: rotate(45deg);
}

.feature-list .excluded span::after {
  display: none;
}

.feature-list .excluded::after {
  box-shadow: 0 0 0 0 var(--surface);
}

.feature-list .excluded {
  --cross-rotate: 45deg;
}

.feature-list .excluded::before {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.feature-list .excluded::after {
  background:
    linear-gradient(var(--surface), var(--surface)) center / 10px 2px no-repeat,
    linear-gradient(var(--surface), var(--surface)) center / 2px 10px no-repeat;
  height: 10px;
  top: 8px;
  width: 10px;
  transform: none;
}

.select-button {
  appearance: none;
  width: 100%;
  min-height: 48px;
  margin-top: 24px;
  padding: 12px 16px;
  border: 1px solid rgba(21, 151, 201, 0.24);
  border-radius: 999px;
  color: var(--blue-dark);
  background: var(--surface);
  cursor: pointer;
  font-weight: 880;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.select-button[aria-pressed="true"],
.tariff-select[aria-pressed="true"],
.extra-select[aria-pressed="true"],
.select-button.is-selected,
.tariff-select.is-selected,
.extra-select.is-selected {
  color: var(--surface);
  -webkit-text-fill-color: var(--surface);
  border-color: var(--blue-dark);
  background: var(--blue-dark);
  background-image: linear-gradient(var(--blue-dark), var(--blue-dark));
}

.extra-select[aria-pressed="true"] span,
.extra-select[aria-pressed="true"] strong {
  color: var(--surface);
  -webkit-text-fill-color: var(--surface);
}

.textile-pricing {
  margin-top: clamp(26px, 4vw, 46px);
  padding-top: clamp(28px, 4vw, 46px);
  border-top: 1px solid var(--line);
}

.textile-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.58fr);
  gap: clamp(18px, 4vw, 48px);
  align-items: end;
  margin-bottom: 20px;
}

.textile-heading .eyebrow {
  margin-bottom: 12px;
}

.textile-heading h3 {
  max-width: 15ch;
  margin: 0;
  color: var(--text);
  font-size: clamp(1.72rem, 3vw, 2.85rem);
  line-height: 1;
  letter-spacing: 0;
}

.textile-heading p {
  margin: 0;
  color: var(--muted);
}

.textile-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.9fr) minmax(0, 0.74fr);
  gap: 14px;
  align-items: stretch;
}

.textile-card {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.74)),
    rgba(255, 255, 255, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.68),
    0 16px 46px rgba(23, 42, 51, 0.05);
  backdrop-filter: blur(10px);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.textile-card:hover {
  border-color: rgba(21, 151, 201, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.76),
    0 22px 58px rgba(23, 42, 51, 0.08);
  transform: translateY(-4px);
}

.textile-card-compact {
  background:
    linear-gradient(180deg, rgba(233, 245, 250, 0.8), rgba(255, 255, 255, 0.92)),
    rgba(255, 255, 255, 0.88);
}

.textile-card-top {
  display: flex;
  gap: 12px;
  align-items: start;
  justify-content: space-between;
}

.textile-card h4 {
  margin: 0;
  color: var(--blue-dark);
  font-size: clamp(1.22rem, 2vw, 1.55rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.textile-card-top span {
  flex: 0 0 auto;
  max-width: 13ch;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 860;
  line-height: 1.15;
  text-align: right;
}

.tariff-list {
  display: grid;
  gap: 0;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.tariff-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 18px;
  align-items: baseline;
  min-height: 44px;
  padding: 12px 0;
  border-top: 1px solid rgba(219, 231, 235, 0.86);
  color: var(--muted);
  font-weight: 820;
}

.tariff-list li:last-child {
  border-bottom: 1px solid rgba(219, 231, 235, 0.86);
}

.tariff-list strong {
  color: var(--blue-dark);
  font-size: 1.18rem;
  font-weight: 950;
  white-space: nowrap;
}

.tariff-select {
  appearance: none;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid rgba(21, 151, 201, 0.24);
  border-radius: 999px;
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.88);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 860;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.extra-select {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  appearance: none;
  gap: 12px;
  align-items: center;
  margin: auto 0 0;
  min-height: 46px;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blue-dark);
  background: var(--surface);
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 860;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.extra-select strong {
  font-size: 1rem;
}

.extra-select em {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border: 1px solid rgba(21, 151, 201, 0.22);
  border-radius: 999px;
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 880;
  -webkit-text-fill-color: var(--blue-dark);
}

.extra-select[aria-pressed="true"],
.extra-select.is-selected {
  color: var(--surface);
  -webkit-text-fill-color: var(--surface);
  border-color: var(--blue-dark);
  background: var(--blue-dark);
  background-image: linear-gradient(var(--blue-dark), var(--blue-dark));
}

.extra-select[aria-pressed="true"] span,
.extra-select[aria-pressed="true"] strong,
.extra-select[aria-pressed="true"] em,
.extra-select.is-selected span,
.extra-select.is-selected strong,
.extra-select.is-selected em {
  color: var(--surface);
  -webkit-text-fill-color: var(--surface);
}

.extra-select[aria-pressed="true"] em,
.extra-select.is-selected em {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.12);
}

.area-picker {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(219, 231, 235, 0.86);
}

.area-picker label {
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 860;
}

.area-control {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
}

.area-control input {
  min-height: 42px;
  padding: 9px 12px;
}

.area-control span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.82);
  font-weight: 900;
}

.area-picker p {
  display: flex;
  gap: 12px;
  align-items: baseline;
  justify-content: space-between;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 820;
}

.area-picker p strong {
  color: var(--blue-dark);
  font-size: 1.12rem;
  font-weight: 950;
}

.association-note {
  width: fit-content;
  margin: 16px 0 0;
  padding: 9px 12px;
  border: 1px solid rgba(79, 159, 105, 0.24);
  border-radius: 999px;
  color: var(--green);
  background: rgba(232, 244, 237, 0.62);
  font-size: 0.92rem;
  font-weight: 860;
}

.request-builder {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 0.88fr);
  gap: clamp(22px, 5vw, 70px);
  align-items: start;
  margin-top: clamp(38px, 6vw, 72px);
  padding-top: clamp(30px, 5vw, 56px);
  border-top: 1px solid var(--line);
  scroll-margin-top: 100px;
}

.builder-copy h3 {
  max-width: 13ch;
  margin-bottom: 14px;
  color: var(--text);
  font-size: clamp(1.8rem, 3.3vw, 3.25rem);
  line-height: 0.98;
}

.builder-copy p:not(.eyebrow) {
  max-width: 42ch;
  margin: 0;
  color: var(--muted);
}

.builder-panel {
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid rgba(79, 159, 105, 0.24);
  border-radius: 24px;
  background:
    linear-gradient(140deg, rgba(232, 244, 237, 0.68), rgba(255, 255, 255, 0) 42%),
    linear-gradient(180deg, rgba(233, 245, 250, 0.64), rgba(255, 255, 255, 0.96)),
    var(--surface);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 18px 58px rgba(23, 42, 51, 0.06);
  backdrop-filter: blur(10px);
}

.selection-list {
  display: grid;
  gap: 8px;
  min-height: 48px;
  margin-bottom: 14px;
}

.selection-empty {
  margin: 0;
  color: var(--muted);
  font-weight: 780;
}

.selection-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid rgba(219, 231, 235, 0.86);
}

.selection-item span {
  color: var(--text);
  font-weight: 820;
}

.selection-item small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-weight: 680;
}

.selection-item strong {
  color: var(--blue-dark);
  white-space: nowrap;
}

.selection-total {
  display: flex;
  gap: 16px;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(21, 151, 201, 0.2);
}

.selection-total span {
  color: var(--muted);
  font-weight: 820;
}

.selection-total strong {
  color: var(--blue-dark);
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  line-height: 1;
}

.builder-fields {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.8fr);
  gap: 10px;
  margin-bottom: 16px;
}

.builder-field {
  display: grid;
  gap: 7px;
}

.builder-field label,
.builder-field-static span {
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 860;
}

.builder-field-static {
  min-height: 76px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
}

.builder-field-static strong {
  color: var(--blue-dark);
  font-size: 0.94rem;
  line-height: 1.2;
}

.message-label {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 860;
}

[data-generated-message] {
  min-height: 190px;
  background: rgba(255, 255, 255, 0.72);
}

.message-preference {
  margin: 10px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(79, 159, 105, 0.24);
  border-radius: 16px;
  color: var(--green);
  background: rgba(232, 244, 237, 0.64);
  font-size: 0.9rem;
  font-weight: 820;
}

.builder-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.builder-status {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 760;
}

.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -12px 0 24px;
}

.chip {
  appearance: none;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--surface);
  font-weight: 820;
  cursor: pointer;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.chip.active {
  color: var(--surface);
  border-color: var(--blue);
  background: var(--blue);
}

.chip[data-filter="field"].active {
  border-color: var(--green);
  background: var(--green);
}

.chip[data-filter="video"].active {
  border-color: var(--blue-dark);
  background: var(--blue-dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 14px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  margin: 0;
  border: 1px solid rgba(219, 231, 235, 0.86);
  border-radius: 18px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.84), rgba(233, 245, 250, 0.34)),
    var(--surface);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    0 12px 34px rgba(23, 42, 51, 0.04);
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.gallery-item:hover {
  border-color: rgba(21, 151, 201, 0.36);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.52),
    0 20px 48px rgba(23, 42, 51, 0.08);
  transform: translateY(-4px);
}

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

.gallery-large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 536px;
}

.gallery-wide {
  grid-column: span 2;
}

.gallery-item figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  color: var(--surface);
  background: rgba(23, 42, 51, 0.58);
  font-size: 0.78rem;
  font-weight: 850;
  backdrop-filter: blur(12px);
}

.video-item figcaption {
  position: relative;
  inset: auto;
  grid-row: 1;
  max-width: none;
  padding: 12px 14px;
  border: 0;
  border-bottom: 1px solid rgba(219, 231, 235, 0.86);
  border-radius: 0;
  color: var(--blue-dark);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(233, 245, 250, 0.64)),
    var(--surface);
  text-align: left;
  backdrop-filter: none;
}

.gallery-item a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.gallery-video {
  grid-row: 2;
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  background: #142633;
  transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item[data-kind="video"],
.video-item {
  display: grid;
  grid-template-rows: auto minmax(320px, 1fr);
  min-height: 410px;
}

.gallery-item[data-kind="video"][hidden],
.video-item[hidden] {
  display: none;
}

.gallery-item img {
  transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img,
.gallery-item:hover .gallery-video {
  transform: scale(1.035);
}

.video-item:hover .gallery-video {
  transform: none;
}

.video-item .gallery-video {
  min-height: 320px;
}

.play-pill {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  color: var(--surface);
  background: rgba(23, 42, 51, 0.6);
  font-size: 0.74rem;
  font-weight: 850;
  backdrop-filter: blur(12px);
}

.reviews-section {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: start;
  padding-top: 78px;
}

.reviews-summary {
  position: sticky;
  top: 118px;
}

.rating-block {
  display: grid;
  gap: 4px;
  width: fit-content;
  margin: 28px 0 18px;
  padding: 18px 22px;
  border: 1px solid rgba(21, 151, 201, 0.24);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 48px rgba(23, 42, 51, 0.06);
}

.rating-block strong {
  color: var(--blue-dark);
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 0.92;
}

.rating-block span {
  color: var(--muted);
  font-weight: 850;
}

.source-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  color: var(--blue-dark);
  font-weight: 860;
  text-decoration: underline;
  text-underline-offset: 5px;
}

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

.review-card {
  min-height: 228px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(233, 245, 250, 0.4)),
    rgba(255, 255, 255, 0.86);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.66),
    0 18px 50px rgba(23, 42, 51, 0.05);
  backdrop-filter: blur(10px);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.review-card:hover {
  border-color: rgba(21, 151, 201, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 24px 58px rgba(23, 42, 51, 0.08);
  transform: translateY(-4px);
}

.review-card::before {
  content: "5/5";
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  margin-bottom: 28px;
  padding: 5px 9px;
  border: 1px solid rgba(21, 151, 201, 0.22);
  border-radius: 999px;
  color: var(--blue-dark);
  background: var(--soft-blue);
  font-size: 0.78rem;
  font-weight: 900;
}

.review-card:nth-child(even)::before {
  border-color: rgba(79, 159, 105, 0.24);
  color: var(--green);
  background: rgba(232, 244, 237, 0.72);
}

.review-top {
  display: flex;
  gap: 10px;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 12px;
}

.review-top strong {
  font-size: 1rem;
}

.review-top span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 760;
}

.review-card p {
  margin: 0;
  color: var(--muted);
}

.split-section,
.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.split-media {
  aspect-ratio: 4 / 5;
}

.steps {
  display: grid;
  gap: 18px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 760;
}

.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--surface);
  background: var(--blue);
  font-weight: 900;
}

.about-section {
  grid-template-columns: minmax(300px, 0.68fr) minmax(0, 0.9fr);
}

.about-media {
  aspect-ratio: 3 / 4;
}

.local-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.faq-section {
  padding-top: 70px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border-top: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 18px;
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 850;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "";
  width: 11px;
  height: 11px;
  border-right: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(225deg) translateY(-2px);
}

.faq-list p {
  max-width: 70ch;
  margin: -4px 0 24px;
  color: var(--muted);
}

label {
  font-weight: 840;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  background: var(--bg);
  padding: 12px 13px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(21, 151, 201, 0.7);
  background: var(--surface);
  box-shadow: 0 0 0 4px rgba(21, 151, 201, 0.12);
  outline: 0;
}

.text-button,
.footer-links button {
  border: 0;
  padding: 0;
  color: var(--blue-dark);
  background: transparent;
  cursor: pointer;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  width: min(calc(100% - 32px), var(--max));
  margin: 20px auto 0;
  padding: 34px 0 46px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-brand {
  color: var(--text);
}

.site-footer p {
  max-width: 42ch;
  margin: 12px 0 0;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.footer-contact a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blue-dark);
  background: var(--surface);
  font-size: 0.9rem;
  font-weight: 850;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: start;
  justify-content: flex-end;
}

.legal-dialog {
  width: min(760px, calc(100% - 28px));
  max-height: min(760px, calc(100dvh - 28px));
  padding: 0;
  border: 0;
  border-radius: 24px;
  color: var(--text);
  background: transparent;
}

.legal-dialog::backdrop {
  background: rgba(23, 42, 51, 0.48);
  backdrop-filter: blur(6px);
}

.dialog-shell {
  max-height: min(760px, calc(100dvh - 28px));
  overflow: auto;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.dialog-close {
  float: right;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: var(--surface-soft);
  cursor: pointer;
  font-weight: 850;
}

.legal-content {
  display: grid;
  gap: 14px;
  color: var(--muted);
}

.legal-content h3 {
  margin: 12px 0 0;
  color: var(--text);
}

.legal-content p,
.legal-content ul {
  margin: 0;
}

.legal-content ul {
  padding-left: 18px;
}

.cookie-banner {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 12;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: min(calc(100% - 32px), 1040px);
  margin: 0 auto;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 520ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-nav a {
    padding-right: 8px;
    padding-left: 8px;
    font-size: 0.8rem;
  }

  .hero,
  .split-section,
  .about-section,
  .section-heading,
  .reviews-section {
    grid-template-columns: 1fr;
  }

  .reviews-summary {
    position: static;
  }

  .hero {
    min-height: 100dvh;
    padding:
      126px
      max(24px, calc((100vw - var(--max)) / 2 + 28px))
      76px;
  }

  .hero::before {
    background-image: url("assets/tom-bonal.png");
    background-size: cover;
    background-position: 36% 50%;
    opacity: 1;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(11, 28, 35, 0.58) 0%, rgba(11, 28, 35, 0.38) 46%, rgba(11, 28, 35, 0.2) 100%),
      linear-gradient(90deg, rgba(11, 28, 35, 0.54), rgba(11, 28, 35, 0.06));
  }

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

  .service-strip article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-strip article:last-child {
    border-bottom: 0;
  }

  .service-strip span {
    margin-bottom: 22px;
  }

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

  .textile-heading,
  .textile-grid {
    grid-template-columns: 1fr;
  }

  .textile-heading h3 {
    max-width: 13ch;
  }

  .textile-card {
    min-height: auto;
  }

  .request-builder {
    grid-template-columns: 1fr;
  }

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

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

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

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  main > section:not(.hero):not(.is-mobile-visible-section) {
    display: none;
  }

  body.mobile-section-open .hero {
    display: none;
  }

  body.mobile-section-open .site-footer {
    margin-top: 0;
  }

  .site-header {
    width: calc(100% - 24px);
    min-height: 66px;
    top: 10px;
    padding-left: 12px;
  }

  .brand span {
    font-size: 0.96rem;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: auto;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(342px, calc(100vw - 24px));
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(233, 245, 250, 0.94)),
      rgba(255, 255, 255, 0.97);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.72),
      0 18px 48px rgba(23, 42, 51, 0.14);
    backdrop-filter: blur(18px);
    transform-origin: top right;
  }

  .site-nav.open {
    display: grid;
  }

  .site-nav a {
    width: 100%;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 8px;
    border: 1px solid rgba(21, 151, 201, 0.12);
    background: rgba(255, 255, 255, 0.72);
    color: var(--text);
    text-align: center;
    font-size: 0.86rem;
  }

  .nav-label-desktop {
    display: none;
  }

  .nav-label-mobile {
    display: inline;
  }

  .site-nav a.nav-pricing-link {
    grid-column: 1 / -1;
    min-height: 48px;
    border-color: transparent;
    background: linear-gradient(135deg, var(--blue), #1f82bd);
    color: var(--surface);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.26),
      0 14px 26px rgba(21, 151, 201, 0.18);
  }

  .site-nav a.nav-message-link {
    grid-column: 1 / -1;
  }

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

  .zone-toggle {
    width: 100%;
  }

  .section {
    width: min(calc(100% - 24px), var(--max));
    padding: 68px 0;
    scroll-margin-top: 96px;
  }

  .section.compact {
    padding-top: 34px;
  }

  h1 {
    font-size: clamp(2.12rem, 10vw, 3.2rem);
  }

  h2 {
    font-size: clamp(1.75rem, 8.5vw, 2.7rem);
  }

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

  .button {
    min-height: 50px;
  }

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

  .hero-proof span {
    justify-content: center;
    min-height: 40px;
    padding: 8px;
    text-align: center;
    font-size: 0.78rem;
  }

  .hero {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    padding: 132px 24px 68px;
  }

  .section-heading {
    gap: 10px;
    margin-bottom: 26px;
  }

  .section-heading .eyebrow {
    margin-bottom: 0;
  }

  .service-strip article {
    padding: 24px 4px;
  }

  .price-card {
    border-radius: 20px;
  }

  .price-top {
    align-items: center;
  }

  .feature-list {
    gap: 10px;
  }

  .feature-list li {
    font-size: 0.95rem;
  }

  .textile-pricing {
    margin-top: 26px;
    padding-top: 30px;
  }

  .textile-heading {
    margin-bottom: 16px;
  }

  .textile-heading h3 {
    font-size: clamp(1.64rem, 7.4vw, 2.22rem);
  }

  .textile-card {
    padding: 20px;
    border-radius: 20px;
  }

  .textile-card-top {
    display: grid;
    gap: 8px;
  }

  .textile-card-top span {
    max-width: none;
    text-align: left;
  }

  .tariff-list {
    margin-top: 18px;
  }

  .tariff-list li {
    min-height: 42px;
    padding: 10px 0;
  }

  .tariff-select {
    min-height: 32px;
    padding: 6px 10px;
  }

  .request-builder {
    margin-top: 34px;
    padding-top: 32px;
  }

  .builder-copy h3 {
    font-size: clamp(1.64rem, 7.4vw, 2.22rem);
  }

  .builder-panel {
    padding: 18px;
    border-radius: 20px;
  }

  .builder-fields {
    grid-template-columns: 1fr;
  }

  .builder-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

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

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

  .chip {
    padding: 9px 7px;
    font-size: 0.78rem;
  }

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

  .reviews-section {
    padding-top: 54px;
  }

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

  .review-card {
    min-height: auto;
  }

  .gallery-large,
  .gallery-wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 330px;
  }

  .gallery-item {
    min-height: 330px;
    border-radius: 18px;
  }

  .gallery-item[data-kind="before"] {
    min-height: 360px;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    width: calc(100% - 20px);
    right: 10px;
    bottom: 10px;
    left: 10px;
    padding: 12px;
  }

  .cookie-banner p {
    font-size: 0.84rem;
  }

  .cookie-actions,
  .cookie-actions .button {
    width: 100%;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .cookie-actions .button {
    min-height: 42px;
    padding: 9px 12px;
    font-size: 0.9rem;
  }

  .site-footer {
    width: min(calc(100% - 24px), var(--max));
    padding-bottom: 34px;
  }

  body.mobile-section-open main {
    padding-top: 96px;
  }

  body.mobile-section-open .section,
  body.mobile-section-open .section.compact,
  body.mobile-section-open .reviews-section {
    padding-top: 30px;
  }
}

@media (max-width: 420px) {
  .hero-proof {
    grid-template-columns: 1fr;
  }

  .price-top {
    display: grid;
  }

  .tariff-list li {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 12px;
  }

  .tariff-select {
    grid-column: 1 / -1;
    width: 100%;
  }

  .extra-select {
    grid-template-columns: 1fr auto;
    align-items: flex-start;
    border-radius: 18px;
  }

  .extra-select em {
    grid-column: 1 / -1;
    width: 100%;
  }

  .gallery-item,
  .gallery-item[data-kind="before"],
  .gallery-large {
    min-height: 292px;
  }
}

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

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