@font-face {
  font-family: "Anton Local";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/anton-latin-ext-400-normal.woff2?v=20260724-5") format("woff2");
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Anton Local";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/anton-latin-400-normal.woff2?v=20260724-5") format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  color-scheme: light;
  --blue-950: #042e68;
  --blue-900: #064999;
  --blue-800: #0068c9;
  --blue-700: #0087dc;
  --blue-100: #eaf8ff;
  --red-700: #c91520;
  --red-600: #e52931;
  --yellow: #ffe118;
  --ink: #10243d;
  --muted: #5a687a;
  --line: #d9e8f4;
  --container: 1180px;
  --nav-height: 76px;
  --display-font: "Anton Local", "Arial Black", "Arial Narrow", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 18px);
}

body {
  margin: 0;
  font-family:
    Inter, Arial, Helvetica, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

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

button,
input,
textarea {
  font: inherit;
}

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

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.sr-only,
.quote-form label span {
  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;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-150%);
  padding: 10px 14px;
  color: #fff;
  background: var(--blue-950);
  border-radius: 4px;
}

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

.icon {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.poster-canvas {
  position: relative;
  width: min(100%, 1536px);
  aspect-ratio: 1536 / 944;
  margin-inline: auto;
  scroll-margin-top: calc(var(--nav-height) + 18px);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 20%, rgba(7, 92, 176, 0.08), transparent 30%),
    #fff;
}

.poster-header {
  position: sticky;
  top: 0;
  z-index: 80;
  width: min(100%, 1536px);
  height: var(--nav-height);
  margin-inline: auto;
  display: flex;
  align-items: center;
  padding: 0 clamp(24px, 6.9vw, 106px);
  gap: clamp(20px, 2.2vw, 34px);
  background:
    linear-gradient(90deg, rgba(0, 104, 201, 0.1), transparent 19%, transparent 76%, rgba(229, 41, 49, 0.08)),
    rgba(255, 255, 255, 0.98);
  border-bottom: 4px solid var(--blue-800);
  box-shadow: 0 12px 28px rgba(4, 46, 104, 0.12);
  backdrop-filter: blur(12px);
  transition:
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.poster-header.is-scrolled {
  border-bottom-color: var(--red-600);
  box-shadow: 0 16px 34px rgba(4, 46, 104, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 31%;
  min-width: 255px;
  padding-left: 14px;
  border-left: 5px solid var(--blue-800);
}

.brand strong {
  display: block;
  color: var(--blue-950);
  font-size: clamp(0.95rem, 1.04vw, 1.08rem);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: 0;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: #4d596b;
  font-size: clamp(0.82rem, 0.92vw, 0.95rem);
  line-height: 1.15;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(8px, 1vw, 14px);
  color: var(--blue-950);
  font-size: clamp(0.78rem, 0.95vw, 0.96rem);
  font-weight: 950;
  text-transform: uppercase;
}

.site-nav a {
  padding: 10px 13px;
  border-radius: 6px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
  background: var(--blue-800);
  outline: 0;
}

.top-phone {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  color: #fff;
  background: linear-gradient(180deg, #ef343c, var(--red-700));
  border-radius: 7px;
  box-shadow: 0 12px 24px rgba(194, 19, 29, 0.22);
  font-size: clamp(1rem, 1.35vw, 1.26rem);
  font-weight: 950;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  color: var(--blue-950);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 21px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 2px;
}

.hero-title {
  position: absolute;
  z-index: 18;
  top: 1%;
  left: 25.7%;
  width: 48.5%;
  text-align: center;
}

.hero-title h1 small {
  display: block;
  margin: 0 0 0.5%;
  color: #075fbd;
  font-family: var(--display-font);
  font-size: clamp(2rem, 2.95vw, 2.85rem);
  font-weight: 400;
  font-synthesis: none;
  line-height: 1;
  text-transform: uppercase;
}

.hero-title h1 {
  margin: 0;
  color: var(--red-600);
  font-family: var(--display-font);
  font-weight: 400;
  font-synthesis: none;
  line-height: 0.94;
  text-transform: uppercase;
  text-shadow: 0 10px 18px rgba(201, 21, 32, 0.08);
}

.hero-title h1 span {
  display: block;
  font-size: clamp(4.5rem, 7.55vw, 6.75rem);
}

.hero-title h1 span + span {
  margin-top: 1.5%;
  font-size: clamp(3.8rem, 6.3vw, 5.6rem);
}

.hero-title strong {
  display: block;
  margin-top: 1.9%;
  color: #25272c;
  font-family: var(--display-font);
  font-size: clamp(1.45rem, 2.06vw, 2rem);
  font-weight: 400;
  font-synthesis: none;
  line-height: 1.1;
  text-transform: uppercase;
}

.left-window {
  position: absolute;
  z-index: 14;
  left: -1.6%;
  top: 0;
  width: 28%;
  height: 54.3%;
  filter: drop-shadow(0 18px 24px rgba(20, 43, 70, 0.18));
}

.left-window img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% 50%;
  clip-path: polygon(0 0, 83% 0, 100% 100%, 0 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 9%, #000 73%, transparent 86%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 9%, #000 73%, transparent 86%);
}

.left-window::after {
  display: none;
}

.family-photo {
  position: absolute;
  z-index: 20;
  right: -1.7%;
  top: 0.65%;
  width: 30.3%;
  height: 53.7%;
  overflow: hidden;
  border: clamp(7px, 0.75vw, 11px) solid #fff;
  border-radius: 50%;
  box-shadow: 0 18px 34px rgba(31, 53, 78, 0.16);
}

.family-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% 50%;
  transform: scale(1.02);
}

.wave-svg {
  position: absolute;
  z-index: 10;
  left: 0;
  right: 0;
  top: 25.7%;
  width: 100%;
  height: 44.25%;
}

.wave-light {
  fill: #0aa8eb;
}

.wave-main {
  fill: url("#poster-blue");
}

.wave-svg .wave-main {
  fill: url("#poster-blue");
}

.wave-cut {
  fill: #fff;
}

.wave-svg::after {
  content: "";
}

.blinds-oval {
  position: absolute;
  z-index: 22;
  left: 32.2%;
  top: 35.8%;
  width: 20.6%;
  aspect-ratio: 1.79;
  overflow: hidden;
  border: clamp(6px, 0.55vw, 9px) solid #fff;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 15px 28px rgba(2, 33, 78, 0.28);
}

.blinds-oval img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
}

.blinds-oval picture {
  display: block;
  width: 100%;
  height: 100%;
}

.contact-band {
  position: absolute;
  z-index: 24;
  left: 0;
  right: 0;
  top: 51.3%;
  height: 17%;
  display: grid;
  grid-template-columns: 32% 36% 32%;
  align-items: center;
  padding: 2.4% 6.5% 1.8%;
  color: #fff;
  pointer-events: none;
}

.poster-brand {
  color: var(--yellow);
  font-family: var(--display-font);
  font-size: clamp(1.45rem, 2.03vw, 2rem);
  line-height: 1.06;
  text-align: center;
  text-transform: uppercase;
  -webkit-text-stroke: 2px #101010;
  text-shadow: 2px 3px 0 #101010;
}

.poster-brand span {
  display: block;
}

.poster-phone {
  pointer-events: auto;
  min-height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: #fff;
  font-family: var(--display-font);
  font-size: clamp(2.8rem, 4.1vw, 4rem);
  line-height: 1;
  white-space: nowrap;
  text-shadow: 0 4px 0 rgba(0, 31, 82, 0.2);
}

.poster-phone span {
  display: inline-block;
  line-height: 0.9;
  transform: translateY(-0.02em);
}

.poster-phone .icon {
  width: clamp(44px, 3.9vw, 58px);
  height: clamp(44px, 3.9vw, 58px);
  padding: 13px;
  border: 2px solid #fff;
  border-radius: 50%;
  fill: currentColor;
}

.contact-band p {
  margin: 0;
  padding-left: 10%;
  border-left: 3px solid rgba(255, 255, 255, 0.95);
  color: var(--yellow);
  font-family: var(--display-font);
  font-size: clamp(1.35rem, 1.92vw, 1.9rem);
  line-height: 1.25;
  text-transform: uppercase;
}

.services-panel {
  position: absolute;
  z-index: 16;
  left: 6.6%;
  top: 70%;
  width: 58.6%;
}

.panel-title {
  margin: 0 0 0.35%;
  color: var(--blue-900);
  font-family: var(--display-font);
  font-size: clamp(1.55rem, 2.2vw, 2.05rem);
  line-height: 1;
  text-transform: uppercase;
}

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

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

.service-cards article {
  min-width: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 104, 201, 0.14);
  border-radius: 7px;
  box-shadow:
    0 8px 18px rgba(6, 62, 125, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.service-cards picture {
  display: block;
}

.service-cards img {
  width: 100%;
  aspect-ratio: 1.72;
  object-fit: cover;
}

.service-cards h3 {
  min-height: clamp(44px, 3.65vw, 56px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0;
  padding: 6px 7px 7px;
  color: var(--blue-950);
  background: #fff;
  font-size: clamp(0.72rem, 0.84vw, 0.92rem);
  font-weight: 950;
  line-height: 1.08;
  text-align: center;
}

.service-cards h3 .icon {
  width: clamp(18px, 1.55vw, 24px);
  height: clamp(18px, 1.55vw, 24px);
  flex: 0 0 auto;
  color: var(--blue-800);
  stroke-width: 2.4;
}

.service-cards p {
  display: none;
  margin: 0;
  padding: 0 10px 12px;
  color: #36516e;
  font-size: 0.88rem;
  font-weight: 750;
  line-height: 1.28;
  text-align: center;
}

.quote-form {
  position: absolute;
  z-index: 18;
  right: 0;
  top: 64.8%;
  width: 34%;
  height: 35.2%;
  padding: 2.25% 7.2% 1.1% 7.1%;
  color: #fff;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(26, 174, 255, 0.62), transparent 48%),
    linear-gradient(180deg, #007be0, #0058ba 62%, #004197);
  border-radius: 52% 0 0 0 / 25% 0 0 0;
  box-shadow:
    -12px 0 0 #fff,
    -22px 0 34px rgba(4, 46, 104, 0.12),
    inset 18px 0 34px rgba(255, 255, 255, 0.08);
}

.quote-form::before {
  display: none;
}

.quote-form h2 {
  margin: 0 0 2%;
  font-family: var(--display-font);
  font-size: clamp(1.42rem, 1.85vw, 1.78rem);
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.quote-form label {
  display: block;
  margin-top: 1.2%;
}

.quote-form .hp-field {
  display: none;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 0;
  border-radius: 5px;
  padding: 2.2% 4%;
  color: #172335;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(0, 55, 118, 0.16);
  font-size: clamp(0.78rem, 0.86vw, 0.9rem);
}

.quote-form input {
  height: clamp(27px, 1.85vw, 30px);
}

.quote-form textarea {
  height: clamp(48px, 4.25vw, 58px);
  resize: none;
}

.quote-form input:focus,
.quote-form textarea:focus {
  outline: 3px solid rgba(255, 225, 24, 0.5);
}

.quote-form button {
  width: 100%;
  height: clamp(40px, 3.2vw, 46px);
  margin-top: 2%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  background: linear-gradient(180deg, #ef3339, var(--red-700));
  border: 0;
  border-radius: 6px;
  font-family: var(--display-font);
  font-size: clamp(1.05rem, 1.27vw, 1.3rem);
  text-transform: uppercase;
  cursor: pointer;
}

.quote-form button:disabled {
  cursor: wait;
  opacity: 0.75;
}

.form-status {
  min-height: 1.2em;
  margin: 1.2% 0 0;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
}

.form-status.is-success {
  color: #fff8aa;
}

.form-status.is-error {
  color: #ffe4e4;
}

.content-section {
  scroll-margin-top: calc(var(--nav-height) + 18px);
  padding: 78px 0;
  background: #fff;
}

.content-section.dark {
  color: #fff;
  background: var(--blue-950);
}

.content-section.contact {
  background: linear-gradient(180deg, #fff, var(--blue-100));
}

.split,
.area-grid,
.faq-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 46px;
  align-items: start;
}

.kicker {
  margin: 0 0 8px;
  color: var(--blue-900);
  font-family: var(--display-font);
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.dark .kicker {
  color: var(--yellow);
}

.content-section h2 {
  margin: 0 0 16px;
  color: var(--blue-950);
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.08;
}

.dark h2 {
  color: #fff;
}

.content-section p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.dark p {
  color: rgba(255, 255, 255, 0.84);
}

.town-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.town-list li {
  padding: 11px 14px;
  color: #fff;
  background: var(--blue-800);
  border-radius: 999px;
  font-weight: 900;
}

.service-area {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #fff 0%, #eefbff 62%, #fff 100%);
}

.service-area::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 82% 12%, rgba(0, 104, 201, 0.12), transparent 34%),
    linear-gradient(172deg, transparent 0 58%, rgba(0, 104, 201, 0.08) 58% 76%, transparent 76%);
  pointer-events: none;
}

.service-area .container {
  position: relative;
}

.area-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.82fr);
  align-items: center;
}

.area-copy {
  display: grid;
  gap: 18px;
}

.area-copy h2 {
  margin-bottom: 0;
}

.area-actions {
  width: min(100%, 520px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  color: #fff;
  background: linear-gradient(180deg, var(--blue-800), var(--blue-900));
  border-radius: 8px;
  box-shadow: 0 18px 34px rgba(4, 73, 153, 0.18);
}

.area-actions strong {
  color: var(--yellow);
  font-family: var(--display-font);
  font-size: clamp(1.65rem, 2.6vw, 2.3rem);
  line-height: 1;
  text-transform: uppercase;
}

.area-actions span {
  font-weight: 900;
}

.area-actions a {
  padding: 10px 12px;
  color: #fff;
  background: linear-gradient(180deg, #ef3339, var(--red-700));
  border-radius: 6px;
  font-weight: 950;
  white-space: nowrap;
}

.area-map {
  display: grid;
  gap: 14px;
}

.service-map {
  margin: 0;
}

.service-map picture {
  display: block;
}

.service-map img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  box-shadow:
    0 18px 36px rgba(5, 52, 105, 0.14),
    10px 10px 0 rgba(0, 104, 201, 0.1);
}

.service-map figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 800;
}

.problem-section {
  background:
    linear-gradient(180deg, #fff, #f5fbff 56%, #fff),
    radial-gradient(ellipse at 18% 8%, rgba(255, 225, 24, 0.18), transparent 36%);
}

.problem-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
  gap: 42px;
  align-items: start;
}

.problem-copy {
  position: sticky;
  top: calc(var(--nav-height) + 28px);
}

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

.problem-list article {
  min-height: 148px;
  padding: 18px;
  background: #fff;
  border: 1px solid rgba(0, 104, 201, 0.16);
  border-radius: 8px;
  box-shadow: 0 14px 28px rgba(5, 52, 105, 0.1);
}

.problem-list h3 {
  margin: 0 0 8px;
  color: var(--blue-950);
  font-size: 1.08rem;
  line-height: 1.16;
}

.problem-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.42;
}

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

.faq-grid {
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: calc(var(--nav-height) + 28px);
}

.faq-intro p {
  max-width: 420px;
}

details {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 14px 28px rgba(0, 21, 55, 0.12);
}

summary {
  cursor: pointer;
  padding: 16px 20px;
  color: #fff;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 20px 18px;
}

.big-phone {
  min-height: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 26px;
  color: #fff;
  background: linear-gradient(180deg, #ed3238, #d31822);
  border-radius: 8px;
  font-size: 2rem;
  font-weight: 950;
  white-space: nowrap;
}

.contact-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  align-items: center;
}

.contact-copy {
  display: grid;
  gap: 12px;
}

.contact-note {
  font-weight: 900;
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.sms-link {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--blue-950);
  background: #fff;
  border: 2px solid var(--blue-800);
  border-radius: 8px;
  font-size: 1.18rem;
  font-weight: 950;
}

.mail-link {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  background: var(--blue-950);
  border: 2px solid var(--blue-950);
  border-radius: 8px;
  font-size: 1.18rem;
  font-weight: 950;
}

.text-link {
  color: var(--blue-900);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  padding: 26px 0;
  color: #fff;
  background: #031f46;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner p {
  margin: 0;
}

.footer-meta {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
  line-height: 1.35;
}

.footer-meta a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 1240px) {
  :root {
    --nav-height: 68px;
  }

  .poster-canvas {
    width: 100%;
    min-height: 0;
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: visible;
    background:
      radial-gradient(circle at 50% 15%, rgba(0, 135, 220, 0.08), transparent 34%),
      #fff;
  }

  .poster-header {
    position: sticky;
    top: 0;
    height: var(--nav-height);
    padding: 0 14px;
    border-bottom-width: 3px;
  }

  .brand {
    width: auto;
    min-width: 0;
    padding-left: 10px;
    border-left-width: 4px;
  }

  .brand strong {
    max-width: 188px;
    font-size: 0.94rem;
  }

  .brand small {
    font-size: 0.82rem;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    z-index: 75;
    display: none;
    padding: 18px 24px 24px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 22px 36px rgba(8, 55, 112, 0.14);
  }

  .site-nav.is-open {
    display: grid;
    gap: 4px;
  }

  .site-nav a {
    padding: 13px 0;
    border-radius: 0;
  }

  .top-phone {
    display: none;
  }

  .hero-title,
  .left-window,
  .family-photo,
  .wave-svg,
  .blinds-oval,
  .contact-band,
  .services-panel,
  .quote-form {
    position: relative;
    inset: auto;
    transform: none;
  }

  .hero-title {
    width: auto;
    margin: clamp(18px, 4.8vw, 34px) 16px 10px;
    order: 1;
  }

  .hero-title h1 small {
    margin-bottom: 4px;
    font-size: clamp(1.22rem, 5.8vw, 1.72rem);
    line-height: 1.02;
  }

  .hero-title h1 span {
    font-size: clamp(3rem, 13.8vw, 4.5rem);
    line-height: 0.94;
  }

  .hero-title h1 span + span {
    margin-top: 4px;
    font-size: clamp(2.72rem, 12.7vw, 4.1rem);
  }

  .hero-title strong {
    max-width: 360px;
    margin: 8px auto 0;
    font-size: clamp(0.98rem, 4.6vw, 1.35rem);
    line-height: 1.06;
  }

  .left-window {
    width: min(380px, 72vw);
    height: clamp(190px, 46vw, 305px);
    margin: 8px auto -62px -22px;
    order: 2;
    z-index: 8;
  }

  .left-window img {
    object-position: 30% 50%;
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 73%, transparent 86%);
    mask-image: linear-gradient(to bottom, #000 0%, #000 73%, transparent 86%);
  }

  .family-photo {
    width: min(250px, 43vw);
    height: min(250px, 43vw);
    margin: -20px -18px 0 auto;
    order: 2;
    z-index: 10;
    border-width: 8px;
  }

  .family-photo img {
    object-position: 50% 50%;
    transform: scale(1.06);
  }

  .blinds-oval {
    display: none;
    width: min(305px, 54vw);
    margin: -26px auto -20px;
    order: 4;
    border-width: 7px;
    z-index: 12;
  }

  .wave-svg {
    display: none;
  }

  .contact-band {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    height: auto;
    margin-top: -4px;
    padding: clamp(30px, 6vw, 48px) 18px 28px;
    order: 5;
    background:
      radial-gradient(ellipse at 50% 0%, rgba(40, 184, 255, 0.72), transparent 48%),
      linear-gradient(180deg, #0088dd, #0054af 68%, #004196);
    border-top-left-radius: 50% 26px;
    border-top-right-radius: 50% 26px;
  }

  .poster-brand {
    font-size: clamp(1.1rem, 5.5vw, 1.82rem);
    -webkit-text-stroke: 1px #101010;
    text-shadow: 1px 2px 0 #101010;
  }

  .poster-phone {
    min-height: 0;
    gap: 10px;
    font-size: clamp(1.95rem, 8.4vw, 3.05rem);
  }

  .poster-phone .icon {
    width: clamp(38px, 8vw, 52px);
    height: clamp(38px, 8vw, 52px);
    padding: 10px;
  }

  .contact-band p {
    padding: 12px 0 0;
    border-left: 0;
    border-top: 2px solid rgba(255, 255, 255, 0.85);
    text-align: center;
    font-size: clamp(1.03rem, 4.7vw, 1.48rem);
  }

  .services-panel {
    width: auto;
    margin: 0;
    padding: 34px 16px 24px;
    order: 6;
    background:
      linear-gradient(180deg, #dff8ff 0%, #f5fdff 72%, #fff 100%);
  }

  .panel-title {
    font-size: clamp(1.45rem, 6.3vw, 2.05rem);
  }

  .services-panel h2 {
    position: static;
    width: auto;
    height: auto;
    margin: 0 0 2.2%;
    overflow: visible;
    clip: auto;
    white-space: normal;
    border: 0;
    max-width: 720px;
    color: var(--blue-950);
    font-size: clamp(1.28rem, 5.2vw, 1.9rem);
    line-height: 1.1;
  }

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

  .service-cards article {
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 18px rgba(6, 62, 125, 0.12);
  }

  .service-cards img {
    height: clamp(128px, 28vw, 180px);
    aspect-ratio: auto;
    object-position: center top;
  }

  .service-cards h3 {
    min-height: 58px;
    margin: 0;
    padding: 11px 10px 7px;
    color: var(--blue-950);
    font-size: clamp(0.86rem, 3.5vw, 1.08rem);
    line-height: 1.08;
  }

  .service-cards p {
    display: block;
  }

  .quote-form {
    width: auto;
    height: auto;
    margin: 0;
    padding: 34px 18px 36px;
    order: 7;
    border-radius: 28px 28px 0 0;
    box-shadow: none;
  }

  .quote-form::before {
    display: none;
  }

  .quote-form input {
    height: 38px;
  }

  .quote-form textarea {
    height: 84px;
  }

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

  .area-grid,
  .problem-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .area-copy {
    gap: 14px;
  }

  .area-actions {
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: center;
  }

  .area-actions a {
    width: 100%;
  }

  .area-map {
    gap: 12px;
  }

  .faq-intro {
    position: static;
  }

  .problem-copy {
    position: static;
  }

  .problem-list {
    grid-template-columns: 1fr;
  }

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

@media (min-width: 760px) and (max-width: 1240px) {
  .poster-canvas {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(245px, 0.43fr);
    grid-template-rows: clamp(235px, 27vw, 315px) auto auto auto auto;
    grid-template-areas:
      "window family"
      "title title"
      "band band"
      "services services"
      "form form";
    align-items: end;
    row-gap: 0;
    padding-top: 0;
  }

  .hero-title {
    grid-area: title;
    width: auto;
    align-self: start;
    justify-self: center;
    margin: 8px 24px 18px;
    text-align: center;
  }

  .hero-title h1 small {
    font-size: clamp(1.26rem, 1.95vw, 1.66rem);
  }

  .hero-title h1 span {
    font-size: clamp(3.2rem, 5.65vw, 4.45rem);
  }

  .hero-title h1 span + span {
    font-size: clamp(2.72rem, 4.55vw, 3.58rem);
  }

  .hero-title strong {
    max-width: 600px;
    margin-top: 5px;
    font-size: clamp(0.92rem, 1.55vw, 1.18rem);
  }

  .left-window {
    grid-area: window;
    width: min(680px, 62vw);
    height: clamp(220px, 25vw, 300px);
    align-self: start;
    justify-self: start;
    margin: 0 0 -14px 0;
  }

  .family-photo {
    grid-area: family;
    width: clamp(230px, 27vw, 332px);
    height: clamp(230px, 27vw, 332px);
    align-self: center;
    justify-self: end;
    margin: 18px clamp(30px, 4.6vw, 68px) -8px 0;
  }

  .blinds-oval {
    grid-area: blind;
    display: none;
  }

  .contact-band {
    grid-area: band;
    position: relative;
    z-index: 30;
    grid-template-columns: minmax(0, 1.12fr) minmax(220px, 0.9fr) minmax(0, 0.98fr);
    align-items: center;
    gap: clamp(14px, 2.2vw, 24px);
    min-height: 132px;
    margin-top: -2px;
    padding: 30px clamp(24px, 4.2vw, 52px) 26px;
    overflow: visible;
  }

  .poster-brand {
    font-size: clamp(1.05rem, 2.2vw, 1.55rem);
  }

  .poster-phone {
    font-size: clamp(1.85rem, 3.55vw, 2.5rem);
  }

  .contact-band p {
    padding: 0 0 0 clamp(14px, 2vw, 22px);
    border-top: 0;
    border-left: 2px solid rgba(255, 255, 255, 0.85);
    text-align: left;
    font-size: clamp(0.95rem, 1.92vw, 1.32rem);
  }

  .services-panel {
    grid-area: services;
    z-index: 1;
    padding: 44px clamp(36px, 6vw, 76px) 30px;
  }

  .service-cards {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
  }

  .service-cards article {
    grid-column: span 2;
  }

  .service-cards article:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .service-cards article:nth-child(5) {
    grid-column: 4 / span 2;
  }

  .service-cards img {
    height: clamp(148px, 17vw, 190px);
  }

  .quote-form {
    grid-area: form;
    margin: 0;
    padding-inline: clamp(72px, 12vw, 150px);
  }
}

@media (max-width: 759px) {
  .poster-canvas {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: clamp(230px, 58vw, 286px) auto auto auto auto;
    grid-template-areas:
      "visual"
      "title"
      "band"
      "services"
      "form";
    margin-top: -8px;
  }

  .hero-title {
    grid-area: title;
    width: auto;
    margin: 10px 14px 14px;
  }

  .left-window {
    grid-area: visual;
    width: min(100%, 440px);
    height: 100%;
    justify-self: start;
    align-self: end;
    margin: -16px 0 -8px;
  }

  .family-photo {
    grid-area: visual;
    width: min(205px, 45vw);
    height: min(205px, 45vw);
    align-self: center;
    justify-self: end;
    margin: 16px 10px 0 0;
    box-shadow: 0 14px 26px rgba(31, 53, 78, 0.18);
  }

  .contact-band {
    grid-area: band;
    margin-top: -4px;
    min-height: 228px;
    padding: 36px 18px 30px;
  }

  .services-panel {
    grid-area: services;
  }

  .quote-form {
    grid-area: form;
  }

  .quote-form {
    border-radius: 24px 24px 0 0;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .poster-canvas {
    min-height: 0;
  }

  .hero-title h1 small {
    font-size: clamp(1.14rem, 5.4vw, 1.42rem);
  }

  .hero-title h1 span {
    font-size: clamp(2.86rem, 13.3vw, 3.88rem);
  }

  .hero-title h1 span + span {
    font-size: clamp(2.56rem, 11.8vw, 3.4rem);
  }

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

  .service-cards article {
    display: block;
    min-height: 0;
  }

  .service-cards picture {
    height: auto;
  }

  .service-cards img {
    height: clamp(148px, 42vw, 190px);
    min-height: 0;
    aspect-ratio: auto;
    object-position: center;
  }

  .service-cards h3 {
    min-height: 0;
    justify-content: center;
    padding: 14px 14px 6px;
    text-align: center;
  }

  .service-cards p {
    padding: 0 16px 16px;
    text-align: center;
  }

  .content-section {
    padding: 58px 0;
  }

  .content-section h2 {
    font-size: 2rem;
  }

  .big-phone {
    width: 100%;
    font-size: 1.55rem;
  }

  .sms-link {
    width: 100%;
  }

  .mail-link {
    width: 100%;
  }

  .footer-inner {
    display: grid;
  }
}

@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;
  }
}
