@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;9..144,700&family=Inter:wght@400;600;700;800&display=swap");

:root {
  --navy: #071c2c;
  --navy2: #0b2a3f;
  --blue: #08a7ce;
  --aqua: #45d6e8;
  --ice: #eaf7f8;
  --white: #fff;
  --text: #12232d;
  --muted: #60727c;
  --line: #dce8eb;
  --sand: #f5f7f6;
  --radius: 24px;
  --shadow: 0 24px 70px rgba(4, 38, 55, 0.12);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.55;
}
button,
input,
textarea,
select {
  font: inherit;
}
button {
  cursor: pointer;
}
a {
  text-decoration: none;
  color: inherit;
}
.container {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}
.site-header {
  height: 78px;
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 max(20px, calc((100vw - 1180px) / 2));
  color: #fff;
  background: linear-gradient(
    to bottom,
    rgba(4, 25, 39, 0.85),
    rgba(4, 25, 39, 0.15)
  );
  transition: 0.3s;
}
.site-header.scrolled {
  background: rgba(7, 28, 44, 0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}
.brand-mark {
  width: 38px;
  height: 38px;
  fill: var(--aqua);
}
.brand span {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand b {
  font-size: 15px;
  letter-spacing: 0.12em;
}
.brand small {
  font-size: 9px;
  letter-spacing: 0.28em;
  margin-top: 4px;
  opacity: 0.72;
}
.nav {
  display: flex;
  gap: 24px;
  margin-left: auto;
  font-size: 13px;
}
.nav a {
  opacity: 0.8;
  transition: 0.2s;
}
.nav a:hover {
  opacity: 1;
  color: var(--aqua);
}
.header-cta {
  margin-left: 10px;
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: #fff;
  font-size: 24px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 15px 24px;
  background: linear-gradient(135deg, var(--aqua), var(--blue));
  color: #032534;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(8, 167, 206, 0.25);
  transition: 0.2s;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(8, 167, 206, 0.32);
}
.btn-sm {
  padding: 11px 18px;
  font-size: 13px;
}
.btn-light {
  background: #fff;
  color: var(--navy);
  box-shadow: none;
}
.btn.ghost {
  background: transparent;
  border: 1px solid var(--line);
  box-shadow: none;
  color: var(--text);
}
.hero {
  min-height: 780px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 78% 17%,
      rgba(69, 214, 232, 0.22),
      transparent 25%
    ),
    linear-gradient(135deg, #061724 0%, #0a2b3f 55%, #0f5065 100%);
  color: white;
  padding: 150px 0 80px;
}
.hero:after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -120px;
  height: 200px;
  background: #fff;
  border-radius: 50% 50% 0 0;
}
.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.22) 0.7px,
    transparent 0.7px
  );
  background-size: 8px 8px;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  font-weight: 800;
  color: #a9eaf2;
}
.eyebrow span {
  width: 28px;
  height: 1px;
  background: currentColor;
}
.eyebrow.dark {
  color: #1d8ca4;
}
.hero h1 {
  font-size: clamp(52px, 6vw, 88px);
  line-height: 0.94;
  letter-spacing: -0.055em;
  margin: 22px 0 26px;
  max-width: 720px;
}
.hero h1 em {
  font-style: normal;
  color: var(--aqua);
}
.hero-copy > p {
  font-size: 18px;
  max-width: 620px;
  color: #c6d9df;
}
.hero-actions {
  display: flex;
  gap: 25px;
  align-items: center;
  margin-top: 34px;
}
.text-link {
  font-weight: 700;
  font-size: 14px;
}
.text-link span {
  margin-left: 5px;
  color: var(--aqua);
}
.hero-proof {
  display: flex;
  gap: 34px;
  margin-top: 52px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}
.hero-proof div {
  display: flex;
  gap: 10px;
  align-items: center;
}
.hero-proof b {
  font-size: 22px;
  color: var(--aqua);
}
.hero-proof span {
  font-size: 11px;
  color: #a9bac2;
  max-width: 90px;
}
.pool-stage {
  height: 515px;
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  background: linear-gradient(#9edee7 0 33%, #d9e2d0 33% 55%, #b7aa83 55%);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.28);
}
.sun {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  top: 55px;
  right: 70px;
  background: #fff4c9;
  box-shadow: 0 0 70px rgba(255, 236, 174, 0.7);
}
.house {
  position: absolute;
  left: 10%;
  right: 10%;
  top: 27%;
  height: 160px;
  background: linear-gradient(120deg, #f3f1e7, #d7d4c9);
  clip-path: polygon(
    0 33%,
    22% 5%,
    48% 25%,
    66% 0,
    100% 32%,
    100% 100%,
    0 100%
  );
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}
.house i {
  position: absolute;
  bottom: 20px;
  width: 17%;
  height: 55%;
  background: linear-gradient(#204453, #113343);
}
.house i:nth-child(1) {
  left: 15%;
}
.house i:nth-child(2) {
  left: 42%;
}
.house i:nth-child(3) {
  right: 14%;
}
.pool {
  position: absolute;
  left: 9%;
  right: 9%;
  bottom: 5%;
  height: 45%;
  background: linear-gradient(165deg, #83f0f6, #0aa7c9 56%, #087c9d);
  clip-path: polygon(10% 0, 90% 0, 100% 100%, 0 100%);
  border: 9px solid #e7e1d2;
  box-shadow:
    0 0 0 10px #b7a98d,
    0 12px 26px rgba(0, 0, 0, 0.26);
}
.pool-shimmer {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    175deg,
    rgba(255, 255, 255, 0.22) 0 2px,
    transparent 2px 24px
  );
  animation: shimmer 4s linear infinite;
}
.floating-card {
  position: absolute;
  left: 20px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(6, 31, 45, 0.78);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}
.floating-card b,
.floating-card small {
  display: block;
}
.floating-card small {
  font-size: 10px;
  color: #bfd7dd;
}
.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #6df2c8;
  box-shadow: 0 0 0 6px rgba(109, 242, 200, 0.12);
}
.offer-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  background: #fff;
  color: var(--navy);
  padding: 17px 18px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}
.offer-badge small {
  font-size: 8px;
  letter-spacing: 0.15em;
  color: #59808b;
}
.offer-badge b {
  font-size: 18px;
}
.offer-badge span {
  font-size: 10px;
  color: #79929a;
}
.trust-strip {
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.trust-inner {
  min-height: 76px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  color: #50666f;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.trust-inner i {
  color: #8ed9e6;
}
.section {
  padding: 110px 0;
}
.section-heading {
  margin-bottom: 50px;
}
.section-heading.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: end;
}
.section-heading h2,
.estimate-copy h2,
.contact-wrap h2 {
  font-size: clamp(38px, 4.2vw, 62px);
  letter-spacing: -0.045em;
  line-height: 1.02;
  margin: 14px 0;
}
.section-heading p {
  max-width: 520px;
  color: var(--muted);
}
.section-heading.centered {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.section-heading.centered .eyebrow {
  justify-content: center;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.service-card {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 22px;
  padding: 26px;
  text-align: left;
  color: var(--text);
  transition: 0.25s;
  min-height: 220px;
}
.service-card:hover,
.service-card.active {
  border-color: #9edee8;
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.service-card.active {
  background: var(--navy);
  color: #fff;
}
.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: var(--ice);
  color: #1399b6;
  font-size: 26px;
}
.service-card.active .service-icon {
  background: rgba(69, 214, 232, 0.15);
  color: var(--aqua);
}
.service-card h3 {
  font-size: 20px;
  margin: 22px 0 8px;
}
.service-card p {
  font-size: 13px;
  color: var(--muted);
}
.service-card.active p {
  color: #b9ccd4;
}
.service-card > span {
  display: block;
  margin-top: 20px;
  font-size: 12px;
  font-weight: 800;
  color: #0f9fbe;
}
.service-detail {
  margin-top: 22px;
  border-radius: 28px;
  padding: 34px 36px;
  background: linear-gradient(135deg, #092137, #0d4255);
  color: #fff;
  display: grid;
  grid-template-columns: 1.3fr 1fr auto;
  gap: 40px;
  align-items: center;
}
.service-detail small {
  color: var(--aqua);
  letter-spacing: 0.15em;
}
.service-detail h3 {
  font-size: 26px;
  margin: 8px 0;
}
.service-detail p {
  color: #b8cbd3;
}
.service-detail ul {
  columns: 2;
  margin: 0;
  padding-left: 18px;
  color: #cfe3e8;
  font-size: 12px;
}
.estimate-section {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.estimate-section:before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  right: -300px;
  top: -250px;
  background: radial-gradient(
    circle,
    rgba(69, 214, 232, 0.16),
    transparent 65%
  );
}
.estimate-wrap {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  position: relative;
}
.estimate-copy p {
  color: #b7cad2;
  max-width: 420px;
}
.mini-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 35px;
  color: #d1e1e5;
  font-size: 13px;
}
.mini-points span::first-letter {
  color: var(--aqua);
}
.wizard {
  background: #fff;
  color: var(--text);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.24);
}
.wizard-top {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 11px;
  color: #6c8189;
  font-weight: 700;
}
.progress {
  height: 5px;
  flex: 1;
  background: #e8eff1;
  border-radius: 10px;
  overflow: hidden;
}
.progress i {
  display: block;
  width: 25%;
  height: 100%;
  background: var(--blue);
  transition: 0.3s;
}
.step {
  display: none;
  padding: 28px 0 18px;
}
.step.active {
  display: block;
}
.step h3 {
  font-size: 28px;
  letter-spacing: -0.03em;
  margin: 0 0 22px;
}
.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.choice-grid.small {
  grid-template-columns: repeat(3, 1fr);
}
.choice-grid input {
  position: absolute;
  opacity: 0;
}
.choice-grid label span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 120px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  transition: 0.2s;
  font-size: 28px;
}
.choice-grid label b {
  font-size: 14px;
  margin-top: 10px;
}
.choice-grid label small {
  font-size: 11px;
  color: var(--muted);
}
.choice-grid input:checked + span {
  border-color: var(--blue);
  background: var(--ice);
  box-shadow: inset 0 0 0 1px var(--blue);
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 14px;
}
.field span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 800;
  color: #6b7f88;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 13px 14px;
  outline: none;
  background: #fff;
  color: var(--text);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(8, 167, 206, 0.1);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.wizard-actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid #edf2f3;
  padding-top: 20px;
}
.wizard-actions .btn:last-child {
  margin-left: auto;
}
.privacy-note,
.form-note {
  font-size: 10px;
  color: #778b93;
}
.hidden {
  display: none !important;
}
.success {
  text-align: center;
  padding: 35px 0;
}
.success > div {
  width: 62px;
  height: 62px;
  margin: auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #dff9ee;
  color: #147953;
  font-size: 28px;
}
.success .btn {
  margin-top: 15px;
}
.success .text-link {
  display: block;
  margin-top: 16px;
}
.darklink {
  color: var(--navy);
}
.why-section {
  background: #f7faf9;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.why-grid article {
  background: #fff;
  padding: 34px;
  border-radius: 22px;
  border: 1px solid #edf1f1;
}
.why-grid article > span {
  font-size: 11px;
  color: #159ab6;
  font-weight: 800;
}
.why-grid h3 {
  font-size: 22px;
  margin: 45px 0 10px;
}
.why-grid p {
  color: var(--muted);
  font-size: 14px;
}
.compare {
  position: relative;
  height: 540px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  touch-action: none;
}
.compare-base,
.compare-overlay {
  position: absolute;
  inset: 0;
}
.compare-overlay {
  width: 50%;
  overflow: hidden;
}
.pool-visual {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
}
.pool-visual.clean {
  background:
    radial-gradient(circle at 75% 18%, #e8f4c7 0 6%, transparent 7%),
    linear-gradient(160deg, #cbe5e7 0 34%, #d8c9a6 34% 48%, #1ec1d8 48% 100%);
}
.pool-visual.clean:before,
.pool-visual.dirty:before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 47%;
  bottom: 8%;
  border: 10px solid #f3eee2;
  clip-path: polygon(12% 0, 88% 0, 100% 100%, 0 100%);
  background: repeating-linear-gradient(
    175deg,
    rgba(255, 255, 255, 0.2) 0 2px,
    transparent 2px 25px
  );
}
.pool-visual.clean:before {
  background-color: #11b3d0;
}
.pool-visual.dirty {
  width: calc(100vw - 40px);
  max-width: 1180px;
  background: linear-gradient(
    160deg,
    #b8c8be 0 34%,
    #c3b798 34% 48%,
    #688b68 48% 100%
  );
  filter: saturate(0.7);
}
.pool-visual.dirty:before {
  background-color: #6f936d;
}
.pool-visual span {
  position: absolute;
  top: 20px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(7, 28, 44, 0.75);
  color: white;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.clean span {
  right: 20px;
}
.dirty span {
  left: 20px;
}
.compare-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: #fff;
  border: 0;
  padding: 0;
}
.compare-handle i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  display: grid;
  place-items: center;
  font-style: normal;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.demo-note {
  text-align: center;
  color: #87969b;
  font-size: 11px;
  margin-top: 12px;
}
.gallery-section {
  background: var(--navy);
  color: #fff;
}
.gallery-section .section-heading p {
  color: #b8cad2;
}
.filters {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.filters button {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  color: #b9cdd3;
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 11px;
}
.filters button.active {
  background: #fff;
  color: var(--navy);
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-auto-rows: 300px;
  gap: 16px;
}
.gallery-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #123348;
}
.gallery-card.g1 {
  grid-row: span 2;
}
.gallery-card > div:last-child {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  color: #fff;
  z-index: 2;
}
.gallery-card small {
  font-size: 9px;
  letter-spacing: 0.16em;
  color: #c3f3f8;
}
.gallery-card h3 {
  margin: 6px 0;
  font-size: 20px;
}
.art-pool {
  position: absolute;
  inset: 0;
  transition: 0.4s;
}
.gallery-card:hover .art-pool {
  transform: scale(1.03);
}
.art-pool:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(5, 23, 34, 0.78));
}
.art-pool.luxe {
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(255, 232, 177, 0.95),
      transparent 8%
    ),
    linear-gradient(
      155deg,
      #7eaec0 0 35%,
      #ddd3b6 35% 49%,
      #08a8cb 49% 78%,
      #13768f 78%
    );
}
.art-pool.recovery {
  background: linear-gradient(
    145deg,
    #9cb2a5 0 35%,
    #d2c3a1 35% 52%,
    #6c906a 52% 82%,
    #315c45 82%
  );
}
.art-pool.equipment {
  background:
    radial-gradient(circle at 65% 45%, #d9dee0 0 8%, transparent 9%),
    linear-gradient(125deg, #b7c9cc, #3f5960 45%, #21353d 46% 100%);
}
.art-pool.tropical {
  background:
    radial-gradient(circle at 82% 18%, #ffe6a6 0 7%, transparent 8%),
    linear-gradient(
      155deg,
      #7ebaca 0 38%,
      #d6c5a1 38% 50%,
      #0fbed7 50% 85%,
      #087c96 85%
    );
}
.review-section {
  background: #f2f8f8;
}
.review-wrap {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 80px;
  align-items: center;
}
.review-wrap blockquote {
  font-size: clamp(30px, 3.5vw, 50px);
  line-height: 1.14;
  letter-spacing: -0.035em;
  margin: 24px 0;
}
.review-wrap > div > p {
  color: var(--muted);
}
.review-score {
  border-left: 1px solid #cbdfe3;
  padding-left: 50px;
}
.review-score b {
  display: block;
  font-size: 48px;
  line-height: 0.9;
  color: #0d98b5;
}
.review-score span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin: 18px 0 30px;
}
.review-score a {
  font-weight: 800;
  font-size: 13px;
}
.areas-section {
  background: linear-gradient(140deg, #061c2b, #0b4254);
  color: #fff;
}
.areas-section .section-heading p {
  color: #b7ccd3;
}
.areas-wrap {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 20px;
}
.map-card {
  height: 500px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(69, 214, 232, 0.12),
      transparent 25%
    ),
    repeating-linear-gradient(
      35deg,
      transparent 0 55px,
      rgba(255, 255, 255, 0.03) 56px 57px
    ),
    repeating-linear-gradient(
      125deg,
      transparent 0 80px,
      rgba(255, 255, 255, 0.03) 81px 82px
    ),
    #0b3041;
}
.map-lines {
  position: absolute;
  inset: 10%;
  border: 1px dashed rgba(69, 214, 232, 0.16);
  border-radius: 50% 30% 40% 20%;
  transform: rotate(-12deg);
}
.pin {
  position: absolute;
  border: 0;
  background: transparent;
  color: #fff;
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 11px;
}
.pin i {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 0 7px rgba(69, 214, 232, 0.14);
  animation: pulse 2s infinite;
}
.p1 {
  top: 18%;
  right: 22%;
}
.p2 {
  top: 42%;
  left: 28%;
}
.p3 {
  top: 55%;
  left: 18%;
}
.p4 {
  bottom: 18%;
  right: 28%;
}
.area-check {
  background: #fff;
  color: var(--text);
  border-radius: 28px;
  padding: 34px;
}
.area-check h3 {
  font-size: 27px;
  margin-top: 0;
}
.area-check p {
  color: var(--muted);
}
.area-check form {
  display: flex;
  gap: 8px;
}
.area-check input {
  min-width: 0;
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 15px;
}
.area-check ul {
  list-style: none;
  padding: 22px 0 0;
  margin: 25px 0 0;
  border-top: 1px solid var(--line);
}
.area-check li {
  padding: 7px 0;
  color: #50646c;
  font-size: 13px;
}
.zip-result {
  margin-top: 12px;
  font-size: 12px;
  font-weight: 700;
  color: #0c8da8;
}
.offer-section {
  padding: 0;
  background: #fff;
}
.offer {
  position: relative;
  transform: translateY(48px);
  z-index: 2;
  background: linear-gradient(135deg, #0d98b8, #45d6e8);
  border-radius: 30px;
  padding: 46px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  color: #042835;
  box-shadow: 0 28px 60px rgba(8, 167, 206, 0.25);
}
.offer small {
  letter-spacing: 0.15em;
  font-size: 9px;
  font-weight: 800;
}
.offer h2 {
  font-size: clamp(32px, 4vw, 50px);
  margin: 7px 0;
}
.offer h2 em {
  font-style: normal;
  color: #fff;
}
.offer p {
  max-width: 720px;
  margin: 0;
  font-size: 12px;
}
.faq-section {
  padding-top: 150px;
}
.faq-list {
  border-top: 1px solid var(--line);
}
details {
  border-bottom: 1px solid var(--line);
  padding: 0 4px;
}
summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-weight: 800;
  font-size: 17px;
  cursor: pointer;
}
summary::-webkit-details-marker {
  display: none;
}
summary span {
  font-size: 24px;
  color: #5f828c;
}
details[open] summary span {
  transform: rotate(45deg);
}
details p {
  max-width: 760px;
  color: var(--muted);
  padding: 0 0 24px;
  margin: 0;
}
.contact-section {
  background: var(--navy);
  color: #fff;
}
.contact-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
}
.contact-wrap > div > p {
  color: #b8cbd2;
  max-width: 520px;
}
.contact-links {
  display: flex;
  flex-direction: column;
  margin-top: 38px;
}
.contact-links a {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.contact-links small,
.contact-links b {
  display: block;
}
.contact-links small {
  font-size: 9px;
  letter-spacing: 0.15em;
  color: #83a4ae;
}
.contact-links b {
  font-size: 20px;
}
.contact-form {
  background: #fff;
  color: var(--text);
  padding: 30px;
  border-radius: 26px;
}
.contact-form .btn {
  width: 100%;
}
footer {
  background: #04131d;
  color: #fff;
  padding: 80px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 60px;
}
.footer-brand p {
  max-width: 300px;
  color: #829da6;
  font-size: 13px;
  margin-top: 20px;
}
.footer-grid h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #7d9aa4;
}
.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-grid > div:not(:first-child) a {
  font-size: 13px;
  color: #b8c9ce;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  margin-top: 60px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  color: #667f88;
  font-size: 10px;
}
.mobile-bar {
  display: none;
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: reveal 0.7s 0.1s forwards;
}
@keyframes reveal {
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes shimmer {
  to {
    transform: translateY(24px);
  }
}
@keyframes pulse {
  50% {
    box-shadow: 0 0 0 12px rgba(69, 214, 232, 0.05);
  }
}
@media (max-width: 950px) {
  .nav {
    position: fixed;
    top: 78px;
    left: 20px;
    right: 20px;
    background: #092335;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: 20px;
    display: none;
    flex-direction: column;
  }
  .nav.open {
    display: flex;
  }
  .menu-toggle {
    display: block;
    margin-left: auto;
  }
  .header-cta {
    display: none;
  }
  .hero-content,
  .estimate-wrap,
  .contact-wrap,
  .areas-wrap {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 125px;
  }
  .pool-stage {
    height: 420px;
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-detail {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .section-heading.split {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .review-wrap {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .review-score {
    border-left: 0;
    border-top: 1px solid #cbdfe3;
    padding: 30px 0 0;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .estimate-wrap {
    gap: 40px;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-card.g1 {
    grid-row: span 1;
  }
  .hero:after {
    display: none;
  }
}
@media (max-width: 650px) {
  .container {
    width: min(100% - 28px, 1180px);
  }
  .site-header {
    height: 70px;
    padding: 0 14px;
  }
  .nav {
    top: 70px;
    left: 14px;
    right: 14px;
  }
  .brand-mark {
    width: 34px;
    height: 34px;
  }
  .hero {
    min-height: auto;
    padding: 112px 0 56px;
  }
  .hero-content {
    gap: 38px;
  }
  .hero h1 {
    font-size: 52px;
  }
  .hero-copy > p {
    font-size: 16px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .hero-proof {
    gap: 14px;
    justify-content: space-between;
  }
  .hero-proof div {
    display: block;
  }
  .hero-proof span {
    display: block;
    margin-top: 3px;
  }
  .pool-stage {
    height: 360px;
  }
  .trust-inner {
    justify-content: flex-start;
    overflow: auto;
    white-space: nowrap;
    padding: 0 4px;
  }
  .section {
    padding: 78px 0;
  }
  .section-heading h2,
  .estimate-copy h2,
  .contact-wrap h2 {
    font-size: 39px;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    min-height: auto;
  }
  .service-detail {
    padding: 28px;
  }
  .choice-grid,
  .choice-grid.small,
  .field-row {
    grid-template-columns: 1fr;
  }
  .choice-grid label span {
    min-height: 88px;
  }
  .estimate-section {
    padding-bottom: 90px;
  }
  .wizard {
    padding: 22px;
  }
  .step h3 {
    font-size: 24px;
  }
  .compare {
    height: 390px;
  }
  .pool-visual.dirty {
    width: calc(100vw - 28px);
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }
  .filters {
    justify-content: flex-start;
  }
  .review-wrap blockquote {
    font-size: 31px;
  }
  .map-card {
    height: 390px;
  }
  .area-check form {
    flex-direction: column;
  }
  .area-check input {
    padding: 14px;
  }
  .offer {
    transform: translateY(38px);
    padding: 32px;
    display: block;
  }
  .offer .btn {
    margin-top: 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .footer-bottom {
    display: block;
    line-height: 2;
  }
  .mobile-bar {
    position: fixed;
    z-index: 60;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: #fff;
    border: 1px solid #dfe9ec;
    border-radius: 18px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    overflow: hidden;
  }
  .mobile-bar a {
    padding: 13px 10px;
    text-align: center;
    font-weight: 800;
    font-size: 12px;
  }
  .mobile-bar a:last-child {
    background: var(--blue);
    color: #fff;
  }
  .mobile-bar span {
    margin-left: 4px;
  }
  body {
    padding-bottom: 68px;
  }
  .p1 {
    right: 10%;
  }
  .p2 {
    left: 17%;
  }
  .p3 {
    left: 10%;
  }
  .p4 {
    right: 14%;
  }
}

.brand-site-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  display: block;
  flex: 0 0 auto;
}
.brand-fallback {
  display: none !important;
  flex-direction: column;
  line-height: 0.92;
}
.brand-site-logo[style*="display: none"] + .brand-fallback {
  display: flex !important;
}
@media (max-width: 700px) {
  .brand-site-logo {
    width: 44px;
    height: 44px;
  }
}

/* Motion refinement v3 */
:root {
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}
html {
  scroll-behavior: smooth;
}
.btn,
.service-card,
.nav a,
.filters button,
.choice-grid label span,
.site-header {
  transition-property:
    transform, box-shadow, border-color, background-color, color, opacity;
  transition-duration: 240ms;
  transition-timing-function: var(--ease-soft);
}
.btn:hover {
  transform: translate3d(0, -2px, 0);
}
.service-card:hover,
.service-card.active {
  transform: translate3d(0, -3px, 0);
}
.reveal {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  animation: none;
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 760ms var(--ease-out),
    transform 760ms var(--ease-out);
}
.motion-reveal {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 680ms var(--ease-out),
    transform 680ms var(--ease-out);
  will-change: opacity, transform;
}
.motion-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.motion-reveal[data-delay="1"] {
  transition-delay: 70ms;
}
.motion-reveal[data-delay="2"] {
  transition-delay: 140ms;
}
.motion-reveal[data-delay="3"] {
  transition-delay: 210ms;
}
.pool-shimmer {
  animation: none;
  transform: none;
  background-position: 0 0;
  will-change: background-position;
  animation: waterShimmer 9s linear infinite;
}
@keyframes waterShimmer {
  to {
    background-position: 0 96px;
  }
}
.pin i {
  animation: pinPulse 3.4s ease-in-out infinite;
}
@keyframes pinPulse {
  0%,
  100% {
    box-shadow: 0 0 0 6px rgba(69, 214, 232, 0.12);
  }
  50% {
    box-shadow: 0 0 0 11px rgba(69, 214, 232, 0.035);
  }
}
details summary span {
  transition: transform 260ms var(--ease-soft);
}
.compare-handle {
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
}
.compare-handle:hover {
  transform: translate(-50%, -50%) scale(1.04);
}
.gallery-card {
  transition:
    opacity 240ms ease,
    transform 240ms var(--ease-out);
}
.gallery-card.is-hiding {
  opacity: 0;
  transform: scale(0.985);
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal,
  .motion-reveal,
  .reveal.is-visible,
  .motion-reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .pool-shimmer,
  .pin i {
    animation: none;
  }
  .btn,
  .service-card,
  .compare-handle,
  .gallery-card {
    transition: none;
  }
}

/* V4: photo-real pool treatment */
.pool-stage {
  background-image:
    linear-gradient(180deg, rgba(3, 18, 30, 0.02), rgba(3, 18, 30, 0.18)),
    url("assets/hero-pool.jpg?v=20260910b");
  background-size: cover;
  background-position: center;
  isolation: isolate;
}
.pool-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(4, 24, 37, 0.26));
  pointer-events: none;
  z-index: 1;
}
.pool-stage .sun,
.pool-stage .palm,
.pool-stage .house,
.pool-stage .pool {
  display: none;
}
.pool-stage .floating-card,
.pool-stage .offer-badge {
  z-index: 3;
}
.pool-stage .floating-card {
  background: rgba(4, 27, 42, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.pool-stage .offer-badge {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
}
.service-card {
  padding: 0 26px 26px;
  overflow: hidden;
  position: relative;
}
.service-card::before {
  content: "";
  height: 132px;
  display: block;
  margin: 0 -26px 20px;
  background-size: cover;
  background-position: center;
  transition: transform 0.55s var(--ease-out);
}
.service-card:hover::before {
  transform: scale(1.035);
}
.service-card[data-service="weekly"]::before {
  background-image: url("assets/svc-weekly.jpg?v=20260910b");
}
.service-card[data-service="algae"]::before {
  background-image: url("assets/svc-algae.jpg?v=20260926");
}
.service-card[data-service="leak"]::before {
  background-image: url("assets/svc-leak.jpg?v=20260910b");
}
.service-card[data-service="equipment"]::before {
  background-image: url("assets/svc-equipment.jpg?v=20260910b");
}
.service-card[data-service="salt"]::before {
  background-image: url("assets/svc-salt.jpg?v=20260910b");
}
.service-card[data-service="testing"]::before {
  background-image: url("assets/svc-testing.jpg?v=20260926");
}
.service-card .service-icon {
  display: none;
}
.service-card.active::after {
  content: "Selected";
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(7, 28, 44, 0.84);
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.compare {
  background: #0a2739;
}
.pool-visual {
  background-size: cover !important;
  background-position: center !important;
}
.pool-visual.clean {
  background-image:
    linear-gradient(180deg, transparent 65%, rgba(3, 28, 40, 0.18)),
    url("assets/after.jpg?v=20260910b") !important;
}
.pool-visual.dirty {
  background-image:
    linear-gradient(180deg, rgba(35, 60, 16, 0.1), rgba(3, 28, 40, 0.18)),
    url("assets/before.jpg?v=20260926") !important;
}
.pool-visual::before,
.pool-visual::after {
  display: none !important;
}
.art-pool {
  background-size: cover !important;
  background-position: center !important;
  position: relative;
}
.art-pool::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(4, 26, 39, 0.32));
  pointer-events: none;
}
.art-pool.luxe {
  background-image: url("assets/gallery-1.jpg?v=20260910b") !important;
}
.art-pool.recovery {
  background-image: url("assets/gallery-2.jpg?v=20260926") !important;
}
.art-pool.equipment {
  background-image: url("assets/gallery-3.jpg?v=20260926") !important;
}
.art-pool.tropical {
  background-image: url("assets/gallery-4.jpg?v=20260910b") !important;
}
.gallery-card {
  background: #061f31;
}
.gallery-card > div:last-child {
  background: linear-gradient(180deg, rgba(6, 31, 49, 0.94), #061f31);
  position: relative;
  z-index: 2;
}
.gallery-card h3,
.gallery-card small {
  color: #fff;
}
.gallery-card small {
  opacity: 0.72;
}
.problem-section {
  background: linear-gradient(180deg, #fff, #f7fbfc);
}
.photo-note {
  font-size: 11px;
  color: #758991;
  margin-top: 12px;
  text-align: center;
}
@media (max-width: 650px) {
  .service-card::before {
    height: 150px;
  }
  .pool-stage {
    background-position: 58% center;
  }
}

/* Multi-page Curveside website */
body.inner-page {
  padding-top: 0;
}
.inner-page .site-header {
  background: rgba(7, 28, 44, 0.97);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}
.page-hero {
  position: relative;
  min-height: 355px;
  display: flex;
  align-items: center;
  color: #fff;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.page-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(3, 18, 30, 0.91) 0%,
    rgba(3, 18, 30, 0.7) 48%,
    rgba(3, 18, 30, 0.2) 100%
  );
}
.page-hero .container {
  position: relative;
  z-index: 2;
  padding-top: 36px;
  padding-bottom: 44px;
}
.page-hero h1 {
  font-size: clamp(44px, 6vw, 78px);
  max-width: 820px;
  line-height: 0.98;
  letter-spacing: -0.055em;
  margin: 16px 0 22px;
}
.page-hero p {
  max-width: 680px;
  font-size: 18px;
  color: #d3e2e7;
}
.page-hero .hero-actions {
  margin-top: 28px;
}
.breadcrumbs {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: #b7d3db;
}
.breadcrumbs a {
  color: #72dbe9;
}
.content-section {
  padding: 88px 0;
}
.content-section.soft {
  background: #f6fafb;
}
.content-section.dark {
  background: var(--navy);
  color: #fff;
}
.content-section.dark p {
  color: #b9cbd2;
}
.prose {
  max-width: 820px;
}
.prose h2 {
  font-size: clamp(34px, 4vw, 50px);
  letter-spacing: -0.04em;
  line-height: 1.05;
}
.prose h3 {
  font-size: 24px;
  margin-top: 34px;
}
.prose p,
.prose li {
  color: var(--muted);
  font-size: 16px;
}
.prose ul {
  padding-left: 22px;
}
.lead {
  font-size: 20px !important;
  line-height: 1.65;
  color: #3e5660 !important;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}
.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.four-col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.info-card,
.city-card,
.tip-card,
.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 12px 36px rgba(4, 38, 55, 0.05);
}
.info-card h3,
.city-card h3,
.tip-card h3 {
  margin: 8px 0 10px;
  font-size: 21px;
}
.info-card p,
.city-card p,
.tip-card p {
  color: var(--muted);
  font-size: 14px;
}
.info-card .num {
  font-size: 12px;
  color: var(--blue);
  font-weight: 900;
  letter-spacing: 0.12em;
}
.info-card a,
.city-card a,
.tip-card a {
  font-weight: 800;
  color: #078fad;
  font-size: 13px;
}
.photo-card {
  border-radius: 28px;
  overflow: hidden;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}
.checklist {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}
.checklist li {
  padding: 12px 0 12px 31px;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.checklist li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 900;
}
.cta-band {
  background: linear-gradient(135deg, #087f9c, #42d4e5);
  border-radius: 30px;
  padding: 44px;
  display: flex;
  gap: 35px;
  align-items: center;
  justify-content: space-between;
  color: #042835;
}
.cta-band h2 {
  font-size: clamp(30px, 4vw, 48px);
  margin: 0 0 8px;
  letter-spacing: -0.04em;
}
.cta-band p {
  margin: 0;
  max-width: 650px;
}
.cta-band .btn {
  background: #071c2c;
  color: #fff;
  box-shadow: none;
  white-space: nowrap;
}
.service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-link-card {
  position: relative;
  min-height: 330px;
  border-radius: 24px;
  overflow: hidden;
  color: white;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: end;
  box-shadow: var(--shadow);
}
.service-link-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 25%, rgba(3, 22, 34, 0.88));
}
.service-link-card > div {
  position: relative;
  padding: 26px;
}
.service-link-card h3 {
  font-size: 24px;
  margin: 0 0 7px;
}
.service-link-card p {
  font-size: 13px;
  color: #d1e1e5;
}
.service-link-card span {
  font-size: 12px;
  font-weight: 900;
  color: #62e0ee;
}
.gallery-full {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.gallery-photo {
  min-height: 300px;
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  grid-column: span 6;
  box-shadow: 0 15px 44px rgba(4, 38, 55, 0.1);
}
.gallery-photo.tall {
  min-height: 500px;
}
.gallery-photo.wide {
  grid-column: span 12;
}
.gallery-caption {
  background: rgba(3, 22, 34, 0.82);
  color: #fff;
  display: inline-block;
  margin: 18px;
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 11px;
}
.area-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.city-card {
  min-height: 220px;
}
.city-card b {
  display: block;
  color: #0d98b5;
  margin-bottom: 8px;
}
.local-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin: 30px 0;
}
.fact {
  padding: 22px;
  border-radius: 18px;
  background: var(--ice);
}
.fact b {
  display: block;
  font-size: 24px;
  color: #087f9c;
}
.fact span {
  font-size: 12px;
  color: var(--muted);
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.review-card .stars {
  color: #ee9a15;
  letter-spacing: 3px;
}
.review-card blockquote {
  margin: 18px 0;
  font-size: 16px;
  line-height: 1.65;
}
.review-card small {
  color: var(--muted);
}
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.tip-card {
  padding: 0;
  overflow: hidden;
}
.tip-img {
  height: 190px;
  background-size: cover;
  background-position: center;
}
.tip-card > div:last-child {
  padding: 24px;
}
.article-meta {
  font-size: 11px;
  color: #0c8da8;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.article-body {
  max-width: 800px;
  margin: auto;
}
.article-body h2 {
  font-size: 34px;
  margin-top: 50px;
  letter-spacing: -0.03em;
}
.article-body p,
.article-body li {
  font-size: 17px;
  color: #52666f;
  line-height: 1.75;
}
.article-note {
  border-left: 4px solid var(--aqua);
  background: #eef9fa;
  padding: 22px 24px;
  margin: 30px 0;
  border-radius: 0 16px 16px 0;
}
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}
.contact-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  background: #fff;
}
.contact-card small {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #789099;
  font-size: 10px;
}
.contact-card b {
  display: block;
  font-size: 20px;
  margin-top: 8px;
}
.contact-card a {
  color: #078fad;
}
.subnav {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin: 25px 0 0;
}
.subnav a {
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 9px 13px;
  border-radius: 999px;
  font-size: 11px;
  color: #fff;
}
.subnav a:hover {
  background: #fff;
  color: var(--navy);
}
.notice {
  padding: 18px 20px;
  border-radius: 16px;
  background: #fff8e8;
  border: 1px solid #f1d9a8;
  color: #74591c;
  font-size: 13px;
}
.site-map-list {
  columns: 3;
  column-gap: 40px;
}
.site-map-list a {
  display: block;
  margin: 8px 0;
  color: #087f9c;
  font-weight: 700;
}
@media (max-width: 950px) {
  .service-list,
  .three-col,
  .four-col,
  .review-grid,
  .article-grid {
    grid-template-columns: 1fr 1fr;
  }
  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .local-facts {
    grid-template-columns: 1fr;
  }
  .contact-cards {
    grid-template-columns: 1fr;
  }
  .site-map-list {
    columns: 2;
  }
}
@media (max-width: 650px) {
  body.inner-page {
    padding-top: 0;
  }
  .page-hero {
    min-height: 470px;
  }
  .page-hero .container {
    padding-top: 40px;
    padding-bottom: 48px;
  }
  .page-hero h1 {
    font-size: 46px;
  }
  .page-hero p {
    font-size: 16px;
  }
  .content-section {
    padding: 66px 0;
  }
  .service-list,
  .three-col,
  .four-col,
  .review-grid,
  .article-grid,
  .area-grid {
    grid-template-columns: 1fr;
  }
  .gallery-photo,
  .gallery-photo.wide {
    grid-column: span 12;
    min-height: 260px;
  }
  .cta-band {
    padding: 30px;
    display: block;
  }
  .cta-band .btn {
    margin-top: 24px;
  }
  .site-map-list {
    columns: 1;
  }
}

/* Production image fidelity */
img {
  image-rendering: auto;
  filter: none !important;
  backdrop-filter: none !important;
}
.brand-site-logo {
  width: auto !important;
  height: 72px !important;
  max-width: 235px !important;
  object-fit: contain !important;
  filter: none !important;
}
.hero {
  background-position: center 48% !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  filter: none !important;
}
.service-card::before,
.pool-visual,
.art-pool {
  filter: none !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: cover !important;
}
@media (min-width: 1600px) {
  .hero {
    background-size: cover !important;
  }
}
@media (max-width: 760px) {
  .brand-site-logo {
    height: 58px !important;
    max-width: 190px !important;
  }
  .hero {
    background-position: 58% center !important;
  }
}

/* ---- Display serif for headlines ---- */
.page-hero h1,
.section-heading h2,
.estimate-copy h2,
.contact-wrap h2,
.offer h2,
.prose h2,
.cta-band h2,
.article-body h2,
.review-card blockquote {
  font-family: Fraunces, Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.page-hero h1 {
  line-height: 1.04;
}
.review-card blockquote {
  font-weight: 400;
  font-style: italic;
}

/* ---- Serif everywhere: card titles ---- */
.info-card h3,
.tip-card h3,
.service-link-card h3,
.city-card h3,
.review-card b {
  font-family: Fraunces, Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}
