:root {
  --ink: #071521;
  --ink-soft: #102637;
  --cyan: #08ddff;
  --cyan-hot: #00bfe7;
  --coral: #ff5b55;
  --cream: #f2f0e8;
  --white: #ffffff;
  --muted: #9fb3bd;
  --line: rgba(7, 21, 33, 0.16);
  --pad: clamp(1.25rem, 5vw, 5rem);
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Narrow", sans-serif;
  --body: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-150%);
}

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

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

.site-header {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 5rem;
  padding: 0.65rem var(--pad);
  background: var(--ink);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.brand {
  display: inline-flex;
  width: 4rem;
  height: 4rem;
  align-items: center;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 0.8rem rgba(8, 221, 255, 0.2));
}

nav {
  display: none;
}

.header-call {
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.1;
  text-align: right;
  text-decoration: none;
}

.header-call span {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--cyan);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: grid;
  min-height: 46rem;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero-image-wrap {
  position: absolute;
  inset: 0 0 auto 18%;
  height: 53%;
  overflow: hidden;
  clip-path: polygon(15% 0, 100% 0, 100% 82%, 0 100%);
}

.hero-image-wrap::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 21, 33, 0.9) 0%, transparent 52%),
    linear-gradient(0deg, rgba(7, 21, 33, 0.35), transparent 60%);
  content: "";
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(1.15) contrast(1.05);
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: end;
  padding: 16.5rem var(--pad) 7.5rem;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1.1rem;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.kicker span {
  padding: 0.32rem 0.45rem;
  background: var(--cyan);
  color: var(--ink);
}

.kicker-dark {
  color: #58717c;
}

.hero h1,
.section-heading h2,
.feature h2,
.direct h2,
.service-area h2,
.contact h2,
.not-found h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.8rem, 17vw, 11rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.82;
  text-transform: uppercase;
}

.hero h1 strong {
  display: inline-block;
  color: var(--cyan);
  font-weight: inherit;
  text-shadow: 0.06em 0 var(--ink), 0.08em 0 var(--coral);
}

.hero-lede {
  max-width: 34rem;
  margin: 1.8rem 0 0;
  color: #d4e0e5;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.15rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 3.65rem;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.button-hot {
  background: var(--coral);
  color: var(--ink);
  box-shadow: 0.45rem 0.45rem 0 var(--cyan);
}

.button-hot:hover {
  transform: translate(0.2rem, 0.2rem);
  box-shadow: 0.25rem 0.25rem 0 var(--cyan);
}

.text-link {
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-stamp {
  position: absolute;
  z-index: 3;
  right: -1.9rem;
  bottom: 5.7rem;
  display: grid;
  width: 8.3rem;
  height: 8.3rem;
  place-content: center;
  background: var(--cyan);
  color: var(--ink);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(8deg);
  clip-path: polygon(50% 0, 62% 14%, 80% 8%, 86% 27%, 100% 38%, 87% 53%, 93% 72%, 73% 79%, 62% 100%, 47% 86%, 28% 94%, 21% 74%, 0 63%, 13% 47%, 7% 28%, 27% 21%, 39% 0);
}

.hero-stamp strong {
  font-size: 1.4rem;
  line-height: 0.9;
}

.line-swell {
  position: absolute;
  right: -5%;
  bottom: -2.8rem;
  left: -5%;
  z-index: 1;
  height: 7rem;
  background: var(--cyan);
  transform: rotate(-2.5deg);
}

.line-swell span {
  position: absolute;
  inset: 0.85rem 0 auto;
  height: 0.45rem;
  background: var(--coral);
}

.proof-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(7, 21, 33, 0.2);
  border-bottom: 1px solid var(--ink);
}

.proof-bar div {
  min-height: 8.5rem;
  padding: 1.25rem;
  background: var(--cream);
}

.proof-bar strong,
.proof-bar span {
  display: block;
}

.proof-bar strong {
  font-family: var(--display);
  font-size: 2.35rem;
  letter-spacing: -0.03em;
  line-height: 1;
  text-transform: uppercase;
}

.proof-bar span {
  margin-top: 0.6rem;
  color: #506771;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.services,
.process,
.service-area {
  padding: 6rem var(--pad);
}

.section-heading {
  max-width: 70rem;
}

.section-heading h2,
.service-area h2 {
  font-size: clamp(3.5rem, 14vw, 9rem);
}

.section-heading > p:last-child {
  max-width: 35rem;
  margin: 1.5rem 0 0;
  color: #4d626c;
  font-size: 1.08rem;
}

.service-stack {
  display: grid;
  gap: 0.85rem;
  margin-top: 3.2rem;
}

.service-card {
  position: relative;
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 0.8rem;
  overflow: hidden;
  padding: 1.5rem 1.25rem 1.8rem;
  background: var(--white);
  border: 1px solid var(--line);
}

.service-card-main {
  background: var(--cyan);
  border-color: var(--ink);
  box-shadow: 0.65rem 0.65rem 0 var(--ink);
}

.service-number {
  color: var(--coral);
  font-family: var(--display);
  font-size: 1.9rem;
  line-height: 1;
}

.service-card-main .service-number {
  color: var(--ink);
}

.service-tag {
  margin: 0 0 0.6rem;
  color: #627982;
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.service-card-main .service-tag {
  color: #174753;
}

.service-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 8vw, 4.4rem);
  letter-spacing: -0.025em;
  line-height: 0.95;
  text-transform: uppercase;
}

.service-card p:not(.service-tag) {
  max-width: 36rem;
  margin: 1.15rem 0 0;
  color: #4d626c;
}

.service-card-main p:not(.service-tag) {
  color: #153b46;
}

.service-card a {
  display: inline-block;
  margin-top: 1.15rem;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.feature {
  display: grid;
  background: var(--ink);
  color: var(--white);
}

.feature-photo {
  min-height: 24rem;
  background: linear-gradient(0deg, rgba(7, 21, 33, 0.2), rgba(7, 21, 33, 0.2)),
    url("/assets/pool-hero.jpeg") 58% center / cover no-repeat;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
}

.feature-copy {
  padding: 4rem var(--pad) 5.5rem;
}

.feature h2,
.direct h2,
.contact h2 {
  font-size: clamp(3.5rem, 14vw, 9rem);
}

.feature-copy > p:not(.kicker) {
  max-width: 39rem;
  margin: 1.6rem 0 0;
  color: #c4d2d8;
  font-size: 1.08rem;
}

.feature ul {
  max-width: 38rem;
  margin: 2.3rem 0 0;
  padding: 0;
  list-style: none;
}

.feature li {
  position: relative;
  padding: 0.8rem 0 0.8rem 1.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature li::before {
  position: absolute;
  top: 1.02rem;
  left: 0;
  width: 0.62rem;
  height: 0.62rem;
  background: var(--coral);
  content: "";
  transform: rotate(45deg);
}

.process {
  background-color: var(--cream);
  background-image: linear-gradient(rgba(7, 21, 33, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 21, 33, 0.06) 1px, transparent 1px);
  background-size: 2rem 2rem;
}

.process-list {
  display: grid;
  gap: 1px;
  margin: 3rem 0 0;
  padding: 0;
  background: var(--ink);
  border: 1px solid var(--ink);
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 4.2rem 1fr;
  gap: 1rem;
  padding: 1.5rem 1.25rem;
  background: var(--cream);
}

.step {
  color: var(--coral);
  font-family: var(--display);
  font-size: 2.3rem;
  line-height: 1;
}

.process-list h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 2.4rem;
  letter-spacing: -0.025em;
  line-height: 1;
  text-transform: uppercase;
}

.process-list p {
  max-width: 28rem;
  margin: 0.6rem 0 0;
  color: #50656f;
}

.direct {
  position: relative;
  overflow: hidden;
  padding: 6rem var(--pad) 8rem;
  background: var(--coral);
  color: var(--ink);
}

.direct::after {
  position: absolute;
  right: -15%;
  bottom: -8rem;
  width: 28rem;
  height: 15rem;
  background: var(--cyan);
  content: "";
  transform: rotate(-12deg);
}

.direct .kicker {
  color: #5b2b2b;
}

.direct .kicker span {
  background: var(--ink);
  color: var(--white);
}

.direct-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.direct-lede {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 8vw, 4.8rem);
  letter-spacing: -0.02em;
  line-height: 0.98;
  text-transform: uppercase;
}

.direct-grid > div {
  max-width: 37rem;
  font-size: 1.05rem;
}

.service-area {
  min-height: 35rem;
}

.service-area h2 span {
  color: var(--cyan-hot);
  text-shadow: 0.04em 0 var(--coral);
}

.area-list {
  max-width: 72rem;
  margin: 2.4rem 0 0;
  font-family: var(--display);
  font-size: clamp(1.65rem, 5vw, 3.5rem);
  letter-spacing: -0.01em;
  line-height: 1.15;
  text-transform: uppercase;
}

.area-list i {
  color: var(--coral);
  font-style: normal;
}

.contact {
  display: grid;
  gap: 3rem;
  padding: 5rem var(--pad);
  background: var(--cyan);
  color: var(--ink);
}

.contact .kicker {
  color: #18515e;
}

.contact .kicker span {
  background: var(--coral);
}

.contact-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.contact-links a {
  font-size: 0.9rem;
  font-weight: 900;
}

.contact-links .phone {
  padding-bottom: 0.35rem;
  border-bottom: 0.22rem solid var(--ink);
  font-family: var(--display);
  font-size: clamp(2.2rem, 9vw, 5rem);
  letter-spacing: -0.03em;
  line-height: 1;
  text-decoration: none;
}

footer {
  display: grid;
  gap: 1.5rem;
  padding: 2.5rem var(--pad);
  background: var(--ink);
  color: #a9bcc4;
  font-size: 0.78rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--white);
  font-family: var(--display);
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-brand img {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
}

footer p {
  max-width: 30rem;
  margin: 0;
}

footer > div {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.not-found {
  display: grid;
  min-height: 100vh;
  place-content: center;
  padding: 2rem var(--pad);
  background: var(--ink);
  color: var(--white);
  text-align: center;
}

.not-found .code {
  margin: 0;
  color: var(--coral);
  font-family: var(--display);
  font-size: clamp(7rem, 35vw, 20rem);
  line-height: 0.65;
}

.not-found h1 {
  margin-top: 2rem;
  color: var(--cyan);
  font-size: clamp(3rem, 12vw, 7rem);
}

.not-found p {
  max-width: 32rem;
  margin: 1.5rem auto 2rem;
  color: #b9cbd2;
}

@media (min-width: 47rem) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
  }

  nav {
    display: flex;
    justify-content: center;
    gap: clamp(1rem, 3vw, 2.5rem);
  }

  nav a {
    color: #bdcbd1;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-decoration: none;
    text-transform: uppercase;
  }

  nav a:hover {
    color: var(--cyan);
  }

  .hero {
    min-height: 50rem;
  }

  .hero-image-wrap {
    inset: 0 0 0 38%;
    height: auto;
    clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
  }

  .hero-copy {
    align-self: center;
    padding: 6.5rem var(--pad) 10rem;
  }

  .hero-actions {
    flex-direction: row;
    align-items: center;
    gap: 1.8rem;
  }

  .hero-stamp {
    right: 3rem;
    bottom: 5.5rem;
  }

  .proof-bar {
    grid-template-columns: repeat(4, 1fr);
  }

  .proof-bar div {
    padding: 1.5rem var(--pad);
  }

  .service-stack {
    grid-template-columns: 1.15fr 1fr;
    grid-template-rows: auto auto;
  }

  .service-card-main {
    grid-row: span 2;
    align-content: end;
    min-height: 35rem;
  }

  .feature {
    grid-template-columns: 1.05fr 0.95fr;
    min-height: 49rem;
  }

  .feature-photo {
    min-height: 49rem;
    clip-path: polygon(0 0, 100% 0, 86% 100%, 0 100%);
  }

  .feature-copy {
    align-self: center;
    margin-left: -5vw;
    padding: 5rem var(--pad) 5rem 0;
  }

  .process {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
  }

  .process-list {
    margin-top: 0;
  }

  .direct-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }

  .contact {
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }

  footer {
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }

  footer > div {
    justify-content: flex-end;
  }
}

@media (min-width: 80rem) {
  .service-card {
    padding: 2.3rem;
  }

  .service-card-main {
    grid-template-columns: 4rem 1fr;
  }

  .process-list li {
    padding: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
