:root {
  --blue: #002fa7;
  --blue-dark: #001f70;
  --ink: #111111;
  --muted: #5e5e63;
  --line: #d9d9dd;
  --line-dark: rgba(255, 255, 255, .25);
  --white: #ffffff;
  --off-white: #f7f7f8;
  --font: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --container: 1240px;
  --ease: 240ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

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

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

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

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

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--blue);
  transform: translateY(-160%);
  transition: transform var(--ease);
}

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

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

.topbar {
  color: var(--white);
  background: var(--blue);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.topbar .container {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.topbar a {
  font-variant-numeric: tabular-nums;
}

.topbar a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  min-height: 98px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.brand img {
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-copy {
  display: block;
  line-height: 1;
}

.brand-copy strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.02em;
  text-transform: uppercase;
}

.brand-copy span {
  display: block;
  margin-top: 7px;
  color: var(--blue);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(17px, 1.7vw, 27px);
  margin-left: auto;
}

.desktop-nav a:not(.button) {
  position: relative;
  padding: 34px 0 31px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.desktop-nav a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  content: "";
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-button {
  width: 48px;
  height: 48px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
}

.menu-button svg {
  width: 24px;
}

.mobile-menu {
  position: fixed;
  z-index: 95;
  inset: 122px 0 0;
  display: none;
  padding: 28px 32px 120px;
  background: var(--white);
  overflow-y: auto;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a:not(.button) {
  display: flex;
  align-items: center;
  min-height: 66px;
  border-bottom: 1px solid var(--line);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -.03em;
}

.mobile-menu a:not(.button)::before {
  width: 36px;
  color: var(--blue);
  font-size: 10px;
  font-variant-numeric: tabular-nums;
}

.mobile-menu a:nth-child(1)::before { content: "01"; }
.mobile-menu a:nth-child(2)::before { content: "02"; }
.mobile-menu a:nth-child(3)::before { content: "03"; }
.mobile-menu a:nth-child(4)::before { content: "04"; }
.mobile-menu a:nth-child(5)::before { content: "05"; }
.mobile-menu a:nth-child(6)::before { content: "06"; }

.mobile-menu .button {
  width: 100%;
  margin-top: 30px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border: 1px solid transparent;
  color: inherit;
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.2;
  cursor: pointer;
  transition: color var(--ease), background-color var(--ease), border-color var(--ease);
}

.button svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.button-primary,
.button-accent {
  color: var(--white);
  background: var(--blue);
}

.button-primary:hover,
.button-accent:hover {
  background: var(--blue-dark);
}

.button-outline {
  border-color: var(--ink);
  color: var(--ink);
  background: var(--white);
}

.button-outline:hover {
  border-color: var(--blue);
  color: var(--white);
  background: var(--blue);
}

.button-light {
  color: var(--blue);
  background: var(--white);
}

.button-light:hover {
  color: var(--white);
  background: var(--ink);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 42px;
  height: 3px;
  content: "";
  background: currentColor;
}

.hero {
  position: relative;
  padding: clamp(56px, 7vw, 104px) 0 88px;
  background-color: var(--white);
  background-image:
    linear-gradient(to right, transparent 0, transparent calc(100% - 1px), rgba(17,17,17,.06) calc(100% - 1px), rgba(17,17,17,.06) 100%),
    linear-gradient(to bottom, transparent 0, transparent calc(100% - 1px), rgba(17,17,17,.06) calc(100% - 1px), rgba(17,17,17,.06) 100%);
  background-size: calc(100% / 6) 100%, 100% 88px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(520px, 1.12fr);
  align-items: center;
  gap: clamp(54px, 7vw, 104px);
}

.hero h1,
.page-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(52px, 5.7vw, 86px);
  font-weight: 600;
  letter-spacing: -.065em;
  line-height: .94;
}

.hero h1 em,
.page-hero h1 em {
  color: var(--blue);
  font-style: normal;
}

.hero-lead {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

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

.hero-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 22px 0 0;
  font-size: 11px;
  font-weight: 600;
}

.hero-note svg {
  width: 18px;
  color: var(--blue);
}

.pool-window {
  position: relative;
  min-height: 590px;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.pool-window::before,
.pool-window::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  content: "";
  pointer-events: none;
}

.pool-window::before {
  background-image:
    linear-gradient(to right, transparent 0, transparent calc(100% - 1px), rgba(255,255,255,.5) calc(100% - 1px), rgba(255,255,255,.5) 100%),
    linear-gradient(to bottom, transparent 0, transparent calc(100% - 1px), rgba(255,255,255,.5) calc(100% - 1px), rgba(255,255,255,.5) 100%);
  background-size: 25% 100%, 100% 25%;
}

.pool-window::after {
  inset: 16px;
  border: 1px solid rgba(255,255,255,.72);
}

.pool-window-main {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--off-white);
}

.pool-window-main img,
.pool-window-small img,
.image-frame img,
.gallery-card img,
.article-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pool-window-main img {
  transition: transform 700ms ease;
}

.pool-window:hover .pool-window-main img {
  transform: scale(1.025);
}

.pool-window-small {
  position: absolute;
  z-index: 4;
  width: 190px;
  height: 228px;
  right: -24px;
  bottom: -32px;
  padding: 8px;
  border: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
}

.pool-window-label {
  position: absolute;
  z-index: 5;
  right: 166px;
  bottom: 32px;
  max-width: 230px;
  padding: 15px 18px;
  color: var(--white);
  background: var(--blue);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.45;
}

.waterline {
  display: none;
}

.trust-strip {
  position: relative;
  z-index: 4;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-item {
  min-height: 118px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 30px;
}

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

.trust-icon {
  width: 44px;
  height: 44px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--white);
  background: var(--blue);
}

.trust-icon svg {
  width: 21px;
}

.trust-item strong {
  display: block;
  font-size: 13px;
}

.trust-item span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}

.experience-section {
  color: var(--white);
  background: var(--blue);
}

.experience-heading {
  display: grid;
  grid-template-columns: 1.12fr .72fr;
  align-items: end;
  gap: clamp(48px, 8vw, 112px);
  margin-bottom: 54px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line-dark);
}

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

.experience-heading h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(42px, 5.4vw, 78px);
  font-weight: 600;
  letter-spacing: -.06em;
  line-height: .94;
}

.experience-heading h2 em {
  font-weight: 300;
}

.experience-heading > p {
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 15px;
}

.experience-heading > p strong {
  color: var(--white);
}

.experience-grid {
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.experience-list {
  margin: 0;
  padding: 0;
  counter-reset: experience;
  list-style: none;
}

.experience-list li {
  min-height: 82px;
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 12px;
  padding: 18px 28px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  counter-increment: experience;
  font-size: clamp(16px, 1.55vw, 21px);
  font-weight: 500;
  letter-spacing: -.02em;
}

.experience-list li::before {
  content: "0" counter(experience);
  color: rgba(255,255,255,.56);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
}

.guarantee-card {
  min-height: 100%;
  padding: clamp(30px, 4.5vw, 60px);
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  color: var(--blue);
  background: var(--white);
}

.guarantee-kicker {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.guarantee-number {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  margin: 44px 0 22px;
}

.guarantee-number strong {
  font-size: clamp(112px, 13vw, 182px);
  font-weight: 600;
  letter-spacing: -.1em;
  line-height: .68;
}

.guarantee-number span {
  padding-bottom: 4px;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -.04em;
}

.guarantee-card h3 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: 1;
}

.guarantee-card p {
  max-width: 330px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.experience-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line-dark);
}

.experience-question p {
  max-width: 850px;
  margin: 0;
  font-size: clamp(18px, 2vw, 25px);
  letter-spacing: -.025em;
  line-height: 1.35;
}

.experience-question .button {
  flex: 0 0 auto;
}

.experience-signature {
  margin: 25px 0 0;
  color: rgba(255,255,255,.7);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.section {
  padding: clamp(84px, 9vw, 136px) 0;
  border-bottom: 1px solid var(--line);
}

.section-compact {
  padding: clamp(60px, 7vw, 92px) 0;
  border-bottom: 1px solid var(--line);
}

.section-sage,
.section-oat {
  background: var(--off-white);
}

.section-dark {
  color: var(--white);
  background: var(--blue);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 54px;
}

.section-heading.split {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr .68fr;
  align-items: end;
  gap: 84px;
}

.section-heading h2,
.content-copy h2,
.cta-panel h2 {
  margin: 0;
  font-size: clamp(39px, 4.2vw, 64px);
  font-weight: 600;
  letter-spacing: -.055em;
  line-height: .98;
}

.section-heading p,
.content-copy > p {
  margin: 20px 0 0;
  color: var(--muted);
}

.section-dark .section-heading p,
.section-dark .content-copy > p {
  color: rgba(255,255,255,.76);
}

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

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  transition: color var(--ease), background-color var(--ease);
}

.service-card:hover {
  color: var(--white);
  background: var(--blue);
}

.service-card-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue);
}

.service-card:hover .service-card-icon {
  color: var(--blue);
  background: var(--white);
}

.service-card-icon svg {
  width: 26px;
  height: 26px;
}

.service-card h3 {
  margin: 70px 0 15px;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -.04em;
  line-height: 1.08;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.service-card:hover p,
.service-card:hover .text-link {
  color: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  padding-top: 30px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
}

.text-link svg {
  width: 17px;
  transition: transform var(--ease);
}

.text-link:hover svg {
  transform: translateX(5px);
}

.content-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  gap: clamp(60px, 8vw, 120px);
}

.content-grid.reverse {
  grid-template-columns: 1.05fr .95fr;
}

.content-grid.reverse .content-copy {
  order: -1;
}

.image-frame {
  position: relative;
  height: 620px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--off-white);
}

.image-frame.short {
  height: 480px;
}

.image-frame::after {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255,255,255,.75);
  content: "";
  pointer-events: none;
}

.content-copy h3 {
  margin: 36px 0 12px;
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -.03em;
}

.feature-list,
.check-list {
  margin: 32px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
  counter-reset: feature;
}

.feature-list li,
.check-list li {
  min-height: 56px;
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
  counter-increment: feature;
}

.feature-list li::before,
.check-list li::before {
  color: var(--blue);
  content: counter(feature, decimal-leading-zero);
  font-size: 10px;
  font-weight: 700;
}

.section-dark .check-list,
.section-dark .check-list li {
  border-color: var(--line-dark);
}

.section-dark .check-list li::before {
  color: var(--white);
}

.swatch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.swatch {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--white);
  background-position: center;
  background-size: cover;
  font-size: 15px;
  font-weight: 600;
  overflow: hidden;
}

.swatch::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 35%, rgba(0,47,167,.82));
}

.swatch::after {
  position: absolute;
  top: 18px;
  left: 18px;
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
}

.swatch:nth-child(1) { background-image: url("liner5.jpeg"); }
.swatch:nth-child(2) { background-image: url("liner7.jpeg"); }
.swatch:nth-child(3) { background-image: url("liner.jpeg"); }
.swatch:nth-child(4) { background-image: url("liner2.jpeg"); }
.swatch:nth-child(1)::after { content: "01"; }
.swatch:nth-child(2)::after { content: "02"; }
.swatch:nth-child(3)::after { content: "03"; }
.swatch:nth-child(4)::after { content: "04"; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.process-step {
  min-height: 330px;
  padding: 26px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.step-number {
  display: block;
  margin-bottom: 88px;
  font-size: 62px;
  font-weight: 300;
  letter-spacing: -.07em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.process-step h3 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -.025em;
}

.process-step p {
  margin: 0;
  color: rgba(255,255,255,.7);
  font-size: 12px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  grid-auto-rows: 270px;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.gallery-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--white);
}

.gallery-card:first-child {
  grid-row: span 2;
}

.gallery-card img {
  transition: transform 600ms ease;
}

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

.gallery-card figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 18px;
  color: var(--white);
  background: var(--blue);
  font-size: 11px;
  font-weight: 600;
}

.gallery-card figcaption span:last-child {
  font-size: 18px;
  font-weight: 300;
  font-variant-numeric: tabular-nums;
}

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

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

.faq-list summary {
  position: relative;
  min-height: 82px;
  display: flex;
  align-items: center;
  padding: 22px 72px 22px 0;
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 1.3;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary::after {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 20px;
  right: 0;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  content: "+";
  font-size: 20px;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
  content: "−";
}

.faq-answer {
  max-width: 800px;
  padding: 0 0 28px;
  color: var(--muted);
  font-size: 14px;
}

.cta-section {
  padding: 0;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
  padding: clamp(46px, 6vw, 78px);
  color: var(--white);
  background: var(--blue);
}

.cta-panel p {
  max-width: 670px;
  margin: 18px 0 0;
  color: rgba(255,255,255,.78);
}

.page-hero {
  position: relative;
  padding: clamp(70px, 9vw, 130px) 0;
  border-bottom: 1px solid var(--line);
  background-color: var(--white);
  background-image:
    linear-gradient(to right, transparent 0, transparent calc(100% - 1px), rgba(17,17,17,.055) calc(100% - 1px), rgba(17,17,17,.055) 100%);
  background-size: calc(100% / 6) 100%;
  overflow: hidden;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero p {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.page-hero.has-image {
  min-height: 660px;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  background: var(--blue);
}

.page-hero.has-image::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(0,47,167,.96) 0%, rgba(0,47,167,.76) 50%, rgba(0,47,167,.06) 100%),
    linear-gradient(to right, transparent 0, transparent calc(100% - 1px), rgba(255,255,255,.24) calc(100% - 1px), rgba(255,255,255,.24) 100%);
  background-size: 100% 100%, 25% 100%;
}

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

.page-hero.has-image p {
  color: rgba(255,255,255,.82);
}

.page-hero.has-image .eyebrow,
.page-hero.has-image h1 em {
  color: var(--white);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 38px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.breadcrumbs span {
  opacity: .5;
}

.intro-panel {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 90px;
  padding: clamp(32px, 5vw, 64px) 0;
  border-top: 4px solid var(--blue);
  border-bottom: 1px solid var(--line);
}

.intro-panel h2 {
  margin: 0;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 600;
  letter-spacing: -.055em;
  line-height: .98;
}

.intro-panel p {
  margin: 0;
  color: var(--muted);
}

.intro-panel p + p {
  margin-top: 17px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.benefit-card {
  min-height: 300px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.benefit-card svg {
  width: 30px;
  color: var(--blue);
}

.benefit-card h3 {
  margin: 65px 0 12px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -.03em;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.project-gallery .gallery-card {
  height: 500px;
  min-height: 0;
  grid-column: span 7;
}

.project-gallery .gallery-card:first-child {
  grid-row: auto;
}

.project-gallery .gallery-card:nth-child(2),
.project-gallery .gallery-card:nth-child(3) {
  grid-column: span 5;
}

.project-gallery .gallery-card:nth-child(4) {
  grid-column: span 7;
}

.project-gallery .gallery-card:nth-child(5) {
  height: 590px;
  grid-column: span 12;
}

.project-gallery .gallery-card:nth-child(6) {
  grid-column: span 5;
}

.project-gallery .gallery-card:nth-child(7) {
  grid-column: span 7;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.article-card {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.article-card-image {
  height: 270px;
  display: block;
  overflow: hidden;
}

.article-card-image img {
  transition: transform 600ms ease;
}

.article-card:hover .article-card-image img {
  transform: scale(1.035);
}

.article-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px;
}

.article-card-meta {
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.article-card h2,
.article-card h3 {
  margin: 36px 0 13px;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -.04em;
  line-height: 1.1;
}

.article-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 790px) 300px;
  align-items: start;
  justify-content: space-between;
  gap: 78px;
}

.article-content {
  font-size: 16px;
}

.article-content h2 {
  margin: 60px 0 19px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: 1.05;
}

.article-content h3 {
  margin: 36px 0 12px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -.03em;
}

.article-content p,
.article-content li {
  color: #333337;
}

.article-content ul,
.article-content ol {
  padding-left: 22px;
}

.article-content li + li {
  margin-top: 10px;
}

.article-lead {
  margin: 0;
  padding: 30px 0 30px 28px;
  border-left: 5px solid var(--blue);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.45;
}

.article-aside {
  position: sticky;
  top: 118px;
  padding: 28px;
  color: var(--white);
  background: var(--blue);
}

.article-aside strong {
  display: block;
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1.12;
}

.article-aside p {
  color: rgba(255,255,255,.75);
  font-size: 12px;
}

.article-aside .button {
  width: 100%;
  margin-top: 12px;
}

.contact-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  border: 1px solid var(--line);
}

.contact-panel,
.form-panel {
  padding: clamp(30px, 4vw, 50px);
}

.contact-panel {
  color: var(--white);
  background: var(--blue);
}

.form-panel {
  border-left: 1px solid var(--line);
  background: var(--white);
}

.contact-panel h2,
.form-panel h2 {
  margin: 0;
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -.04em;
  line-height: 1.08;
}

.contact-panel > p {
  color: rgba(255,255,255,.72);
}

.form-panel > p {
  margin: 11px 0 32px;
  color: var(--muted);
  font-size: 13px;
}

.contact-list {
  margin: 40px 0 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.contact-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line-dark);
}

.contact-list svg {
  width: 21px;
}

.contact-list small {
  display: block;
  margin-bottom: 4px;
  color: rgba(255,255,255,.62);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.contact-list a,
.contact-list span {
  font-size: 14px;
  font-weight: 600;
}

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

.field.full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 15px;
  border: 1px solid #bdbdc2;
  color: var(--ink);
  background: var(--white);
  outline: none;
  transition: border-color var(--ease);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: inset 0 0 0 1px var(--blue);
}

.form-panel .button {
  margin-top: 24px;
}

.form-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 10px;
}

.site-footer {
  padding: 74px 0 28px;
  color: var(--white);
  background: var(--blue);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .75fr .75fr 1fr;
  gap: 56px;
}

.footer-brand .brand-copy span {
  color: var(--white);
}

.footer-brand .brand img {
  width: 82px;
  height: 82px;
  padding: 0;
  background: transparent;
  filter: brightness(0) invert(1);
  opacity: .96;
}

.footer-brand p {
  max-width: 350px;
  margin: 22px 0 0;
  color: rgba(255,255,255,.7);
  font-size: 12px;
}

.footer-column h2,
.footer-column h3 {
  margin: 0 0 22px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  display: block;
  margin: 10px 0;
  color: rgba(255,255,255,.76);
  font-size: 12px;
}

.footer-column a:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  margin-top: 62px;
  padding-top: 25px;
  border-top: 1px solid var(--line-dark);
  color: rgba(255,255,255,.62);
  font-size: 10px;
}

.footer-bottom a {
  color: var(--white);
}

.whatsapp-fab {
  position: fixed;
  z-index: 80;
  right: 24px;
  bottom: 24px;
  min-height: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,.55);
  color: var(--white);
  background: var(--blue);
  font-size: 11px;
  font-weight: 700;
  transition: background-color var(--ease), opacity var(--ease), transform var(--ease);
}

.whatsapp-fab:hover {
  background: var(--blue-dark);
}

.whatsapp-fab.near-footer {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

.whatsapp-fab svg {
  width: 22px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

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

@media (max-width: 1080px) {
  .desktop-nav a:not(.button) {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 42px;
  }

  .pool-window {
    min-height: 520px;
  }

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

  .service-card:last-child,
  .benefit-card:last-child {
    grid-column: 1 / -1;
  }

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

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

  .footer-column:last-child {
    grid-column: 2 / -1;
  }
}

@media (max-width: 780px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .topbar .container {
    min-height: 40px;
  }

  .nav-wrap {
    min-height: 82px;
  }

  .site-header {
    top: 0;
  }

  .brand img {
    width: 54px;
    height: 54px;
  }

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

  .brand-copy span {
    font-size: 8px;
  }

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

  .mobile-menu {
    inset: 122px 0 0;
    padding-inline: 16px;
  }

  .hero {
    padding-top: 62px;
    background-size: 50% 100%, 100% 88px;
  }

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

  .hero h1,
  .page-hero h1 {
    font-size: clamp(46px, 13.5vw, 68px);
  }

  .hero-lead,
  .page-hero p {
    font-size: 15px;
  }

  .pool-window {
    min-height: 480px;
    margin-top: 18px;
  }

  .pool-window-small {
    width: 140px;
    height: 170px;
    right: -1px;
    bottom: -24px;
  }

  .pool-window-label {
    right: 105px;
    bottom: 18px;
  }

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

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

  .section-heading.split,
  .experience-heading,
  .experience-grid,
  .content-grid,
  .content-grid.reverse,
  .intro-panel,
  .contact-grid,
  .cta-panel,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .section-heading.split,
  .experience-heading,
  .intro-panel {
    gap: 28px;
  }

  .experience-heading {
    align-items: start;
  }

  .experience-question {
    align-items: flex-start;
    flex-direction: column;
  }

  .guarantee-card {
    min-height: 420px;
  }

  .content-grid.reverse .content-copy {
    order: initial;
  }

  .image-frame,
  .image-frame.short {
    height: 470px;
  }

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

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 390px;
  }

  .gallery-card:first-child {
    grid-row: auto;
  }

  .project-gallery .gallery-card,
  .project-gallery .gallery-card:nth-child(2),
  .project-gallery .gallery-card:nth-child(3),
  .project-gallery .gallery-card:nth-child(4),
  .project-gallery .gallery-card:nth-child(5),
  .project-gallery .gallery-card:nth-child(6),
  .project-gallery .gallery-card:nth-child(7) {
    height: 450px;
    min-height: 0;
    grid-column: span 12;
  }

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

  .article-aside {
    position: static;
  }

  .form-panel {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .footer-brand,
  .footer-column:last-child {
    grid-column: 1 / -1;
  }

  .whatsapp-fab {
    width: 52px;
    height: 52px;
    justify-content: center;
    padding: 0;
  }

  .whatsapp-fab span {
    display: none;
  }
}

@media (max-width: 520px) {
  .hero-actions .button {
    width: 100%;
  }

  .experience-heading h2 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .experience-list li {
    grid-template-columns: 38px 1fr;
    padding-inline: 20px;
  }

  .experience-question .button {
    width: 100%;
  }

  .pool-window {
    min-height: 410px;
  }

  .pool-window-label {
    right: 96px;
    max-width: 205px;
    padding: 12px;
    font-size: 10px;
  }

  .service-grid,
  .benefit-grid,
  .process-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .service-card:last-child,
  .benefit-card:last-child,
  .field.full {
    grid-column: auto;
  }

  .service-card {
    min-height: 360px;
  }

  .image-frame,
  .image-frame.short {
    height: 390px;
  }

  .swatch {
    min-height: 190px;
  }

  .process-step {
    min-height: 280px;
  }

  .step-number {
    margin-bottom: 62px;
  }

  .project-gallery .gallery-card,
  .project-gallery .gallery-card:nth-child(2),
  .project-gallery .gallery-card:nth-child(3),
  .project-gallery .gallery-card:nth-child(4),
  .project-gallery .gallery-card:nth-child(5),
  .project-gallery .gallery-card:nth-child(6),
  .project-gallery .gallery-card:nth-child(7) {
    height: 390px;
  }

  .page-hero.has-image {
    min-height: 620px;
  }

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

  .footer-brand,
  .footer-column:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

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

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