:root {
  --ink: #17202c;
  --muted: #5f6b7b;
  --line: rgba(23, 32, 44, 0.1);
  --soft: #f5f8fb;
  --paper: #ffffff;
  --cyan: #0cc0df;
  --cyan-dark: #069bb5;
  --graphite: #545454;
  --shadow: 0 24px 70px rgba(25, 43, 63, 0.1);
  --radius-lg: 32px;
  --radius-md: 20px;
  --container: min(1380px, calc(100% - 48px));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f4f6f8;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(6, 155, 181, 0.34);
  outline-offset: 3px;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  margin: 0;
  padding: 12px max(24px, calc((100% - 1380px) / 2));
  border: 0;
  border-bottom: 1px solid rgba(23, 32, 44, 0.08);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 14px 46px rgba(25, 43, 63, 0.08);
  backdrop-filter: blur(22px) saturate(1.2);
  -webkit-backdrop-filter: blur(22px) saturate(1.2);
  transition:
    background 260ms var(--ease),
    box-shadow 260ms var(--ease),
    transform 260ms var(--ease);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 40px rgba(25, 43, 63, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 280px;
  height: auto;
  max-height: 40px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  font-size: 13px;
  font-weight: 650;
  color: #1f2937;
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--cyan), var(--cyan-dark));
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms var(--ease);
}

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

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

.phone-link {
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  font-weight: 750;
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition:
    transform 220ms var(--ease),
    box-shadow 220ms var(--ease),
    background 220ms var(--ease),
    color 220ms var(--ease),
    border-color 220ms var(--ease);
}

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

.btn-primary {
  background: var(--cyan);
  color: white;
  box-shadow: 0 18px 36px rgba(12, 192, 223, 0.22);
}

.btn-primary:hover {
  background: var(--cyan-dark);
  box-shadow: 0 22px 42px rgba(12, 192, 223, 0.28);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(6, 155, 181, 0.36);
  color: var(--cyan-dark);
}

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

.menu-toggle,
.mobile-menu__close {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  cursor: pointer;
}

.menu-toggle span,
.mobile-menu__close span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  border-radius: 999px;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  background: rgba(12, 18, 28, 0);
  transition: background 260ms var(--ease);
}

.mobile-menu.is-open {
  pointer-events: auto;
  background: rgba(12, 18, 28, 0.35);
}

.mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: min(360px, 86vw);
  min-height: 100%;
  padding: 28px;
  background: white;
  box-shadow: -24px 0 70px rgba(18, 30, 44, 0.18);
  transform: translateX(105%);
  transition: transform 360ms var(--ease);
}

.mobile-menu.is-open .mobile-menu__panel {
  transform: translateX(0);
}

.mobile-menu__panel a {
  font-size: 22px;
  font-weight: 780;
}

.mobile-menu__close {
  display: block;
  align-self: flex-end;
}

.mobile-menu__close span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.mobile-menu__close span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  width: var(--container);
  min-height: 690px;
  margin: 22px auto 0;
  padding: 118px 54px 42px;
  overflow: hidden;
  border: 1px solid rgba(23, 32, 44, 0.08);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 22px 80px rgba(25, 43, 63, 0.08);
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 28px;
  will-change: transform;
}

.hero-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 34%, rgba(255, 255, 255, 0.3) 62%, rgba(255, 255, 255, 0.04) 100%),
    linear-gradient(0deg, rgba(9, 16, 26, 0.2), rgba(9, 16, 26, 0.04));
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 610px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan-dark);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(12, 192, 223, 0.12);
  color: var(--cyan-dark);
}

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

h1 {
  margin-bottom: 24px;
  color: #0d1521;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 1.03;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 520px;
  margin-bottom: 32px;
  color: #344253;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 620;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.section {
  width: var(--container);
  margin: 92px auto 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading h2,
.feature-content h2,
.quote-info h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading p,
.feature-content p,
.quote-info p {
  color: var(--muted);
  font-size: 18px;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  box-shadow: 0 12px 38px rgba(25, 43, 63, 0.06);
  text-align: left;
  transition:
    transform 260ms var(--ease),
    box-shadow 260ms var(--ease),
    border-color 260ms var(--ease);
}

.product-card:hover {
  border-color: rgba(12, 192, 223, 0.42);
  box-shadow: 0 24px 58px rgba(25, 43, 63, 0.12);
  transform: translateY(-6px);
}

.product-card--hst {
  border-color: rgba(12, 192, 223, 0.24);
  background: linear-gradient(180deg, #ffffff 0%, rgba(238, 250, 253, 0.72) 100%);
}

.product-card h3 {
  min-height: auto;
  margin: 14px 0 0;
  font-size: 20px;
  line-height: 1.25;
}

.product-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.card-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 16px;
  color: var(--cyan-dark);
  font-size: 13px;
  font-weight: 850;
}

.inline-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: var(--container);
  margin: 34px auto 0;
  padding: 34px clamp(26px, 5vw, 54px);
  border: 1px solid rgba(12, 192, 223, 0.18);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(238, 250, 253, 0.88));
  box-shadow: 0 18px 54px rgba(25, 43, 63, 0.08);
}

.inline-cta h2 {
  max-width: 760px;
  margin-bottom: 8px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
}

.inline-cta p:not(.eyebrow) {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.product-card__image {
  flex: 0 0 auto;
  aspect-ratio: 4 / 3;
  min-height: 0;
  overflow: hidden;
  border-radius: 18px;
  background: var(--soft);
}

.product-card__image img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}

.product-card:hover img,
.gallery-item:hover img,
.feature:hover img {
  transform: scale(1.03);
}

.line-icon {
  position: relative;
  display: inline-flex;
  width: 38px;
  height: 38px;
  margin: 0 auto;
  color: var(--cyan);
}

.line-icon::before,
.line-icon::after {
  position: absolute;
  content: "";
  border: 2px solid currentColor;
  border-radius: 3px;
}

.icon-window::before {
  inset: 4px 7px;
}

.icon-window::after {
  top: 6px;
  bottom: 6px;
  left: 50%;
  width: 0;
  border-left: 2px solid currentColor;
  border-right: 0;
}

.icon-frame::before {
  inset: 3px 8px;
  transform: skewY(-12deg);
}

.icon-frame::after {
  right: 6px;
  bottom: 6px;
  width: 10px;
  height: 26px;
  border-left: 0;
}

.icon-door::before {
  inset: 3px 10px;
}

.icon-door::after {
  top: 18px;
  right: 14px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
}

.icon-blind::before {
  inset: 5px 6px;
}

.icon-blind::after {
  top: 12px;
  left: 6px;
  width: 26px;
  height: 12px;
  border-right: 0;
  border-left: 0;
}

.icon-shade::before {
  inset: 5px;
}

.icon-shade::after {
  top: 10px;
  right: 8px;
  left: 8px;
  height: 16px;
  border-right: 0;
  border-left: 0;
  transform: skewY(-14deg);
}

.icon-garage::before {
  inset: 9px 4px 6px;
}

.icon-garage::after {
  right: 8px;
  bottom: 10px;
  left: 8px;
  height: 8px;
  border-right: 0;
  border-left: 0;
}

.icon-home::before {
  inset: 14px 6px 5px;
}

.icon-home::after {
  top: 3px;
  left: 9px;
  width: 20px;
  height: 20px;
  border-right: 0;
  border-bottom: 0;
  transform: rotate(45deg);
}

.icon-building::before {
  inset: 4px 9px 5px;
}

.icon-building::after {
  top: 10px;
  left: 15px;
  width: 8px;
  height: 18px;
  border-top: 0;
  border-bottom: 0;
}

.icon-briefcase::before {
  inset: 12px 4px 6px;
}

.icon-briefcase::after {
  top: 5px;
  left: 13px;
  width: 12px;
  height: 9px;
  border-bottom: 0;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow);
}

.audience-card {
  display: flex;
  min-height: 340px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 42px;
  text-align: center;
}

.audience-icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 22px;
  object-fit: contain;
  filter: drop-shadow(0 14px 22px rgba(12, 192, 223, 0.14));
}

.audience-card + .audience-card {
  border-left: 1px solid var(--line);
}

.audience-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.audience-card p {
  color: var(--muted);
}

.project-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 42px;
  align-items: stretch;
}

.project-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(34px, 5vw, 64px);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.project-copy h2,
.local-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
}

.project-copy p,
.local-copy p {
  color: var(--muted);
  font-size: 18px;
}

.project-copy .btn {
  margin-top: 18px;
}

.project-list {
  display: grid;
  gap: 14px;
}

.project-list article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 8px 22px;
  align-items: start;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
}

.project-list span {
  display: grid;
  grid-row: 1 / span 2;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: rgba(12, 192, 223, 0.12);
  color: var(--cyan-dark);
  font-weight: 900;
}

.project-list h3 {
  grid-column: 2;
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
}

.project-list p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
}

.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  overflow: hidden;
  padding: 56px 22px 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow);
}

.process-line {
  display: none;
}

.process-line span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-dark));
  transform: scaleX(var(--progress, 0));
  transform-origin: left;
}

.process-step {
  position: relative;
  padding: 0 22px;
  text-align: center;
}

.process-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 112px;
  height: 112px;
  margin-bottom: 24px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 54%, rgba(12, 192, 223, 0.18), rgba(255, 255, 255, 0) 66%),
    rgba(255, 255, 255, 0.72);
  z-index: 2;
}

.process-icon img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  filter: drop-shadow(0 14px 18px rgba(12, 192, 223, 0.14));
}

.process-step h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.process-step p {
  color: var(--muted);
  font-size: 15px;
}

.feature {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: stretch;
  width: var(--container);
  margin: 92px auto 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow);
}

.feature-content {
  padding: clamp(34px, 5vw, 68px);
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #2c3644;
  font-weight: 650;
}

.check-list li::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  content: "✓";
  border-radius: 50%;
  background: rgba(12, 192, 223, 0.12);
  color: var(--cyan-dark);
  font-size: 13px;
  font-weight: 900;
}

.feature-media {
  min-height: 460px;
  overflow: hidden;
}

.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease);
}

.hst-section {
  scroll-margin-top: 110px;
}

.hst-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  gap: 22px;
  align-items: stretch;
  margin-top: 38px;
}

.hst-media,
.hst-copy,
.hst-detail-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow);
}

.hst-media {
  min-height: 520px;
  overflow: hidden;
}

.hst-media picture,
.hst-media img {
  display: block;
  width: 100%;
  height: 100%;
}

.hst-media img {
  object-fit: cover;
  transition: transform 900ms var(--ease);
}

.hst-media:hover img,
.hst-detail-card:hover img {
  transform: scale(1.035);
}

.hst-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 4vw, 54px);
}

.hst-copy h3 {
  margin-bottom: 18px;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.04;
}

.hst-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.hst-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 26px 0 30px;
}

.hst-benefits span {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 10px 14px;
  border: 1px solid rgba(12, 192, 223, 0.18);
  border-radius: 14px;
  background: rgba(12, 192, 223, 0.06);
  color: #263241;
  font-size: 14px;
  font-weight: 780;
}

.hst-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 22px;
}

.hst-detail-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  min-height: 220px;
  overflow: hidden;
}

.hst-detail-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease);
}

.hst-detail-card div {
  align-self: center;
  padding: 28px;
}

.hst-detail-card h3 {
  margin-bottom: 10px;
  font-size: 23px;
}

.hst-detail-card p {
  color: var(--muted);
  font-size: 16px;
}

.about-section {
  width: 100%;
  margin: 92px 0 0;
  padding: clamp(62px, 7vw, 92px) 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(238, 247, 250, 0.92)),
    linear-gradient(90deg, rgba(12, 192, 223, 0.08), rgba(255, 255, 255, 0));
}

.about-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(34px, 6vw, 82px);
  align-items: start;
  width: var(--container);
  margin: 0 auto;
}

.about-copy {
  position: sticky;
  top: 112px;
}

.about-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(34px, 4.6vw, 62px);
  line-height: 1.04;
}

.about-copy p:not(.eyebrow),
.about-story p {
  color: var(--muted);
  font-size: 18px;
}

.about-quote {
  margin: 0 0 20px;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(12, 192, 223, 0.2);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 48px rgba(25, 43, 63, 0.08);
  color: #263241;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 760;
  line-height: 1.25;
}

.about-points {
  display: grid;
  gap: 14px;
}

.about-points article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 18px;
  align-items: start;
  padding: 24px;
  border: 1px solid rgba(23, 32, 44, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
}

.about-points span {
  display: grid;
  grid-row: span 2;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: rgba(12, 192, 223, 0.12);
  color: var(--cyan-dark);
  font-size: 13px;
  font-weight: 900;
}

.about-points strong {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.2;
}

.about-points p {
  margin: 0;
  font-size: 15px;
}

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

.gallery-item {
  position: relative;
  aspect-ratio: 1.34 / 1;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: var(--soft);
  box-shadow: 0 16px 44px rgba(25, 43, 63, 0.08);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  transition: transform 800ms var(--ease);
}

.gallery-item figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
  font-weight: 800;
  text-align: center;
  backdrop-filter: blur(14px);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow);
}

.trust-item {
  min-height: 188px;
  padding: 34px 30px;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1;
}

.trust-item span {
  color: var(--muted);
  font-weight: 650;
}

.local-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: center;
  padding: clamp(34px, 5vw, 62px);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.area-list span {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(6, 155, 181, 0.2);
  border-radius: 999px;
  background: rgba(12, 192, 223, 0.08);
  color: #213244;
  font-weight: 800;
}

.map-card {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow);
}

.map-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(34px, 5vw, 58px);
}

.map-info h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
}

.map-info p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.map-details {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  color: #263241;
  font-weight: 760;
}

.map-frame {
  position: relative;
  display: grid;
  min-height: 460px;
  place-items: center;
  background: var(--soft);
}

.map-placeholder {
  display: grid;
  max-width: 440px;
  gap: 12px;
  justify-items: center;
  padding: 34px;
  color: var(--muted);
  text-align: center;
}

.map-placeholder span {
  color: var(--cyan-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-placeholder strong {
  color: var(--ink);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
}

.map-placeholder p {
  margin: 0;
  font-size: 15px;
}

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

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

.faq-item {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  box-shadow: 0 12px 36px rgba(25, 43, 63, 0.06);
}

.faq-item h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
}

.quote-section {
  position: relative;
  width: var(--container);
  margin: 92px auto 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--soft);
}

.quote-bg {
  position: absolute;
  inset: 0;
}

.quote-bg::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(251, 253, 255, 0.94) 0%, rgba(251, 253, 255, 0.9) 44%, rgba(251, 253, 255, 0.58) 100%);
}

.quote-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 48px;
  padding: clamp(30px, 5vw, 64px);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  color: #263241;
  font-weight: 750;
}

.contact-list a {
  width: fit-content;
  color: var(--cyan-dark);
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 60px rgba(25, 43, 63, 0.1);
  backdrop-filter: blur(16px);
}

.form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: #344052;
  font-size: 13px;
  font-weight: 800;
}

.quote-form .wide {
  grid-column: 1 / -1;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(23, 32, 44, 0.12);
  border-radius: 14px;
  background: white;
  color: var(--ink);
  outline: none;
  transition:
    border-color 180ms var(--ease),
    box-shadow 180ms var(--ease);
}

.quote-form textarea {
  min-height: 118px;
  padding-top: 14px;
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(12, 192, 223, 0.12);
}

.file-field input {
  padding: 13px 16px;
}

.consent-field {
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.consent-field input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  padding: 0;
  accent-color: var(--cyan-dark);
}

.consent-field a {
  color: var(--cyan-dark);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-note,
.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.form-status {
  min-height: 20px;
  color: var(--cyan-dark);
  font-weight: 750;
}

.site-footer {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: 44px;
  width: var(--container);
  margin: 34px auto 0;
  padding: 44px 52px 40px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: #f1f6fa;
}

.footer-utility {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: var(--container);
  margin: 0 auto 42px;
  padding: 14px 52px 20px;
  border-top: 1px solid rgba(21, 31, 46, 0.08);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  background: #f1f6fa;
  color: var(--muted);
  font-size: 12px;
}

.footer-utility__links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.footer-utility a,
.footer-utility .footer-link-button {
  display: inline-flex;
  align-items: center;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.footer-logo {
  display: block;
  width: fit-content;
  margin: -14px 0 0;
}

.footer-logo img {
  width: 210px;
  height: auto;
  object-fit: contain;
}

.footer-contact-column {
  justify-self: start;
}

.site-footer h3 {
  margin: 0 0 14px;
  font-size: 15px;
}

.site-footer p,
.site-footer a,
.site-footer span,
.footer-link-button {
  display: block;
  margin: 0 0 9px;
  color: var(--muted);
  font-size: 14px;
}

.footer-link-button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.footer-contact-column a,
.footer-contact-column span {
  text-align: left;
}

.site-footer a:hover,
.footer-link-button:hover,
.footer-utility a:hover {
  color: var(--cyan-dark);
}

.mobile-cta {
  display: none;
}

.policy-main {
  width: min(1040px, calc(100% - 48px));
  margin: 46px auto 0;
}

.category-main {
  width: var(--container);
  margin: 34px auto 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.breadcrumb a {
  color: var(--muted);
}

.breadcrumb a:hover {
  color: var(--cyan-dark);
}

.category-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
  align-items: stretch;
}

.category-hero__content,
.category-card,
.category-cta,
.related-offer {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow);
}

.category-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 5vw, 72px);
}

.category-hero h1 {
  margin-bottom: 22px;
  font-size: clamp(42px, 5vw, 74px);
}

.category-hero__content p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(18px, 1.8vw, 22px);
}

.category-hero__media {
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.category-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.category-section {
  margin-top: 56px;
}

.category-section__head {
  max-width: 860px;
  margin-bottom: 24px;
}

.category-section__head h2 {
  margin-bottom: 12px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
}

.category-section__head p {
  color: var(--muted);
  font-size: 18px;
}

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

.category-card {
  padding: 30px;
}

.category-card span {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 50%;
  background: rgba(12, 192, 223, 0.12);
  color: var(--cyan-dark);
  font-weight: 900;
}

.category-card h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.category-card p {
  color: var(--muted);
}

.category-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 56px;
}

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

.category-list li {
  padding: 16px 18px;
  border: 1px solid rgba(12, 192, 223, 0.16);
  border-radius: 16px;
  background: rgba(12, 192, 223, 0.05);
  color: #263241;
  font-weight: 720;
}

.related-offer {
  margin-top: 56px;
  padding: clamp(28px, 4vw, 44px);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.related-grid a {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f9fcfd;
  color: #263241;
  font-weight: 820;
  text-align: center;
}

.related-grid a:hover {
  border-color: rgba(12, 192, 223, 0.36);
  color: var(--cyan-dark);
}

.category-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 56px 0 0;
  padding: clamp(30px, 5vw, 56px);
  background: linear-gradient(135deg, #ffffff 0%, rgba(238, 250, 253, 0.86) 100%);
}

.category-cta h2 {
  max-width: 760px;
  margin-bottom: 10px;
  font-size: clamp(30px, 4vw, 50px);
}

.category-cta p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.policy-document {
  padding: clamp(34px, 6vw, 72px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow);
}

.policy-document h1 {
  max-width: 920px;
  margin-bottom: 18px;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 0.98;
}

.policy-document h2 {
  margin: 46px 0 14px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.12;
}

.policy-document h3 {
  margin: 26px 0 8px;
  font-size: 20px;
}

.policy-document p,
.policy-document li {
  color: var(--muted);
  font-size: 16px;
}

.policy-document a {
  color: var(--cyan-dark);
  font-weight: 750;
}

.policy-lead {
  max-width: 780px;
  font-size: 20px;
}

.policy-date {
  margin: 18px 0 0;
  color: #344052;
  font-weight: 800;
}

.policy-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 34px 0 8px;
}

.policy-toc a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(6, 155, 181, 0.18);
  border-radius: 999px;
  background: rgba(12, 192, 223, 0.07);
  color: #263241;
  font-size: 14px;
  font-weight: 800;
}

.policy-document ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 22px;
}

.policy-table-wrap {
  width: 100%;
  margin-top: 18px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.policy-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: white;
}

.policy-table th,
.policy-table td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  color: var(--muted);
  text-align: left;
  vertical-align: top;
}

.policy-table th {
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.policy-table tr:last-child td {
  border-bottom: 0;
}

.policy-table th:last-child,
.policy-table td:last-child {
  border-right: 0;
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 120;
  display: none;
  justify-content: center;
  pointer-events: none;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-panel {
  width: min(690px, 100%);
  overflow: hidden;
  border: 1px solid rgba(23, 32, 44, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 70px rgba(25, 43, 63, 0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  pointer-events: auto;
}

.cookie-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px 14px;
  border-bottom: 1px solid var(--line);
}

.cookie-brand {
  display: block;
  margin-bottom: 4px;
  color: var(--cyan-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cookie-panel h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.12;
}

.cookie-panel h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.cookie-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.cookie-panel a {
  color: var(--cyan-dark);
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 850;
}

.cookie-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

.cookie-tab {
  position: relative;
  min-height: 46px;
  border: 0;
  background: transparent;
  color: #2b3544;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
}

.cookie-tab::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  content: "";
  background: var(--cyan);
  opacity: 0;
}

.cookie-tab.is-active {
  color: var(--cyan-dark);
}

.cookie-tab.is-active::after {
  opacity: 1;
}

.cookie-body {
  padding: 18px 20px;
}

.cookie-view {
  display: none;
}

.cookie-view.is-active {
  display: block;
}

.cookie-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}

.cookie-row:first-child {
  padding-top: 0;
}

.cookie-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.cookie-row strong,
.cookie-row small {
  display: block;
}

.cookie-row strong {
  color: var(--ink);
  font-size: 15px;
}

.cookie-row small {
  color: var(--muted);
  font-size: 13px;
}

.cookie-row input {
  position: relative;
  width: 46px;
  height: 26px;
  margin: 0;
  border: 0;
  border-radius: 999px;
  appearance: none;
  background: #c8d2dc;
  cursor: pointer;
  transition: background 180ms var(--ease);
}

.cookie-row input::after {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 18px;
  height: 18px;
  content: "";
  border-radius: 50%;
  background: white;
  box-shadow: 0 2px 8px rgba(25, 43, 63, 0.2);
  transition: transform 180ms var(--ease);
}

.cookie-row input:checked {
  background: var(--cyan);
}

.cookie-row input:checked::after {
  transform: translateX(20px);
}

.cookie-row input:disabled {
  opacity: 0.58;
  cursor: not-allowed;
}

.cookie-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 14px 20px 18px;
  border-top: 1px solid var(--line);
  background: rgba(247, 250, 252, 0.72);
}

.cookie-actions .btn {
  min-height: 42px;
  padding: 0 14px;
  font-size: 14px;
}

.cookie-save {
  display: none;
}

.cookie-banner.is-details .cookie-save {
  display: inline-flex;
}

.cookie-banner.is-details [data-cookie-action="customize"] {
  display: none;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 780ms var(--ease),
    transform 780ms var(--ease);
}

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

@media (max-width: 1180px) {
  .desktop-nav {
    gap: 16px;
  }
}

@media (min-width: 861px) and (max-width: 1180px) {
  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
  }

  .footer-contact-column {
    justify-self: start;
  }

  .product-card {
    padding: 12px;
  }

  .product-card h3 {
    font-size: 18px;
  }

  .product-card p,
  .card-link {
    font-size: 13px;
  }
}

@media (max-width: 860px) {
  body {
    padding-bottom: 82px;
  }

  .site-header {
    width: 100%;
    margin-top: 0;
    padding: 8px 14px;
  }

  .brand img {
    width: 200px;
    height: auto;
    max-height: 32px;
  }

  .desktop-nav,
  .phone-link,
  .header-actions .btn {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero,
  .section,
  .inline-cta,
  .feature,
  .quote-section,
  .site-footer,
  .footer-utility,
  .category-main {
    width: calc(100% - 28px);
  }

  .hero {
    min-height: auto;
    margin-top: 14px;
    padding: 62px 22px 24px;
    border-radius: 24px;
  }

  .hero-media {
    inset: 0;
  }

  .hero-media::after {
    background: linear-gradient(180deg, rgba(248, 252, 255, 0.97) 0%, rgba(248, 252, 255, 0.9) 46%, rgba(248, 252, 255, 0.36) 100%);
  }

  .hero-content {
    max-width: none;
  }

  h1 {
    font-size: clamp(34px, 9vw, 38px);
    line-height: 1.06;
  }

  .hero-lead {
    font-size: 16px;
  }

  .audience-grid,
  .project-layout,
  .process-track,
  .feature,
  .hst-layout,
  .hst-detail-grid,
  .category-hero,
  .category-grid,
  .category-split,
  .about-layout,
  .quote-card,
  .local-layout,
  .map-card,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .offer-grid,
  .trust-grid,
  .faq-grid,
  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-hero__media {
    min-height: 340px;
    order: -1;
  }

  .category-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .category-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .inline-cta {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 24px;
    padding: 28px;
  }

  .inline-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .project-layout {
    gap: 18px;
  }

  .project-list article {
    padding: 24px;
  }

  .local-layout {
    gap: 24px;
  }

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

  .area-list {
    justify-content: flex-start;
  }

  .audience-card + .audience-card {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .process-track {
    gap: 18px;
    padding: 24px;
  }

  .process-line {
    display: none;
  }

  .process-step {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fbfdff;
  }

  .process-icon {
    width: 92px;
    height: 92px;
    margin-bottom: 14px;
  }

  .process-icon img {
    width: 72px;
    height: 72px;
  }

  .feature-media {
    min-height: 300px;
    order: -1;
  }

  .hst-media {
    min-height: 360px;
  }

  .hst-copy {
    padding: 30px;
  }

  .hst-detail-card {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .about-copy {
    position: static;
  }

  .about-section {
    padding: 56px 0;
  }

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

  .quote-card {
    gap: 24px;
  }

  .quote-form {
    grid-template-columns: 1fr;
    padding: 18px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .quote-form .wide {
    grid-column: auto;
  }

  .mobile-cta {
    position: fixed;
    right: 14px;
    bottom: max(12px, env(safe-area-inset-bottom));
    left: 14px;
    z-index: 60;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: auto;
    margin: 0;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 60px rgba(25, 43, 63, 0.14);
    backdrop-filter: blur(16px);
  }

  .mobile-cta a {
    display: grid;
    min-height: 46px;
    place-items: center;
    border-radius: 999px;
    color: white;
    background: var(--cyan-dark);
    font-weight: 850;
  }

  .gallery-item figcaption {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .policy-main {
    width: calc(100% - 28px);
    margin-top: 18px;
  }

  .policy-document {
    padding: 28px;
    border-radius: 24px;
  }

  .cookie-banner {
    bottom: 92px;
  }
}

@media (max-width: 560px) {
  .hero-actions {
    display: grid;
  }

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

  .product-card {
    padding: 10px;
    border-radius: 18px;
  }

  .product-card h3 {
    font-size: 15px;
  }

  .product-card p,
  .card-link {
    font-size: 12px;
  }

  .section {
    margin-top: 68px;
  }

  .section-heading {
    text-align: center;
  }

  .section-heading h2,
  .feature-content h2,
  .quote-info h2,
  .about-copy h2,
  .map-info h2,
  .project-copy h2,
  .local-copy h2,
  .inline-cta h2 {
    font-size: clamp(28px, 8vw, 34px);
  }

  .inline-cta,
  .project-copy,
  .hst-copy,
  .category-hero__content,
  .category-card,
  .category-cta,
  .related-offer,
  .local-layout,
  .map-info,
  .faq-item {
    padding: 24px;
    border-radius: 22px;
  }

  .project-list article {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 8px 16px;
    padding: 22px;
  }

  .project-list span {
    grid-row: 1 / span 2;
    width: 42px;
    height: 42px;
  }

  .project-copy p,
  .hst-copy p:not(.eyebrow),
  .category-section__head p,
  .category-cta p,
  .local-copy p,
  .map-info p:not(.eyebrow),
  .about-copy p:not(.eyebrow),
  .about-story p,
  .inline-cta p:not(.eyebrow) {
    font-size: 16px;
  }

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

  .category-main {
    margin-top: 18px;
  }

  .category-hero__media {
    min-height: 260px;
    border-radius: 22px;
  }

  .category-actions {
    display: grid;
  }

  .category-actions .btn {
    justify-content: center;
    width: 100%;
  }

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

  .hst-layout {
    gap: 14px;
  }

  .hst-media {
    min-height: 280px;
    border-radius: 22px;
  }

  .hst-benefits {
    grid-template-columns: 1fr;
  }

  .hst-detail-grid {
    gap: 14px;
  }

  .hst-detail-card {
    grid-template-columns: 1fr;
    min-height: auto;
    border-radius: 22px;
  }

  .hst-detail-card img {
    height: 220px;
  }

  .hst-detail-card div {
    padding: 22px;
  }

  .hst-detail-card:nth-child(2) {
    display: none;
  }

  .about-section {
    margin-top: 68px;
    padding: 46px 0;
  }

  .about-points article {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .about-points span {
    grid-row: auto;
  }

  .about-quote {
    padding: 24px;
    font-size: 21px;
  }

  .area-list {
    gap: 10px;
  }

  .area-list span {
    min-height: 40px;
    padding: 0 14px;
    font-size: 14px;
  }

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

  .audience-card {
    padding: 34px 24px;
  }

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

  .trust-item {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 26px 24px;
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .site-footer {
    padding: 30px 24px;
  }

  .footer-utility {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 16px 24px 24px;
  }

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

  .footer-contact-column {
    justify-self: start;
  }

  .policy-document h1 {
    font-size: clamp(34px, 11vw, 46px);
  }

  .policy-document h2 {
    margin-top: 34px;
  }

  .policy-toc {
    display: grid;
  }

  .cookie-banner {
    right: 10px;
    left: 10px;
  }

  .cookie-panel {
    max-height: calc(100vh - 112px);
    overflow-y: auto;
    border-radius: 18px;
  }

  .cookie-head {
    display: grid;
    gap: 8px;
    padding: 16px;
  }

  .cookie-panel h2 {
    font-size: 20px;
  }

  .cookie-tabs {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .cookie-tab {
    min-height: 42px;
    font-size: 13px;
  }

  .cookie-body {
    padding: 16px;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr;
    padding: 12px 16px 16px;
  }

  .cookie-actions .btn {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .offer-grid {
    grid-template-columns: 1fr;
  }
}

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

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