:root {
    --ink: #073f54;
    --blue: #076cba;
    --navy: #064d66;
    --cyan: #03bfd0;
    --orange: #ff5c00;
    --paper: #fff;
    --soft: #f4f7f8;
    --text: #62727a;
    --line: #dce8ec;
    --shadow: 0 15px 45px #063f5410;
    --heading: 'Oswald', sans-serif;
    --body: 'Poppins', sans-serif
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 112px
}

body {
    margin: 0;
    color: var(--text);
    background: var(--paper);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased
}

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

button,
a,
input,
select,
textarea {
    -webkit-tap-highlight-color: transparent
}

button,
a {
    touch-action: manipulation
}

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

button {
    cursor: pointer
}

button:disabled {
    cursor: wait;
    opacity: .6
}

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

button {
    color: inherit
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
    outline: 3px solid var(--cyan);
    outline-offset: 5px
}

h1,
h2,
h3,
h4,
p {
    margin: 0
}

h1,
h2,
h3,
h4 {
    font-family: var(--heading);
    color: var(--ink);
    line-height: 1.16;
    font-weight: 600
}

h1 {
    font-size: clamp(48px, 5.3vw, 82px);
    letter-spacing: -1.8px
}

h2 {
    font-size: clamp(34px, 3.2vw, 50px);
    letter-spacing: -.7px
}

h3 {
    font-size: 25px;
    font-weight: 500
}

p {
    margin-top: 18px
}

p:first-child {
    margin-top: 0
}

svg {
    width: 24px;
    height: 24px;
    display: block;
    flex-shrink: 0
}

strong,
b {
    font-weight: 600
}

.container {
    width: calc(100% - 80px);
    max-width: 1480px;
    margin-inline: auto;
    min-width: 0
}

.section {
    padding: 76px 0;
    scroll-margin-top: 100px
}

.section-heading {
    margin-bottom: 38px
}

.section-heading p {
    max-width: 590px
}

.section-heading.center {
    text-align: center;
    max-width: 750px;
    margin-inline: auto
}

.section-heading.center p {
    margin-inline: auto
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 76px
}

.two-grid,
.three-grid,
.four-grid {
    display: grid;
    gap: 28px
}

.two-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr))
}

.three-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr))
}

.four-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr))
}

.lead {
    font-size: 19px;
    color: var(--ink)
}

.soft {
    background: var(--soft)
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 28px;
    background: var(--orange);
    border: 0;
    color: white;
    font-family: var(--heading);
    font-weight: 500;
    font-size: 17px;
    line-height: 1.3;
    position: relative;
    isolation: isolate;
    transition: background .25s, transform .25s, box-shadow .25s;
    text-align: center
}

.btn:hover {
    background: var(--ink);
    transform: translateY(-3px);
    box-shadow: 0 10px 22px #073f5420
}

.btn:active {
    transform: translateY(0)
}

p+.btn,
.mini-columns+.btn {
    margin-top: 28px
}

.circle {
    width: 49px;
    height: 49px;
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: white;
    color: var(--ink);
    flex-shrink: 0;
    transition: .25s
}

.circle:hover {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
    transform: translateY(-2px)
}

.pool-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: invert(24%) sepia(59%) saturate(1676%) hue-rotate(155deg) brightness(89%) contrast(101%)
}

.header {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 80;
    box-shadow: 0 2px 15px #073f5408
}

.header-inner {
    display: flex;
    align-items: center;
    min-height: 98px;
    gap: 35px
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    color: var(--ink)
}

.brand>img {
    width: 51px;
    height: 51px;
    object-fit: contain;
    filter: invert(23%) sepia(44%) saturate(1671%) hue-rotate(151deg) brightness(88%) contrast(99%)
}

.brand b {
    display: block;
    font-family: var(--heading);
    font-size: 37px;
    line-height: 1
}

.brand small {
    font-size: 10px;
    letter-spacing: 2.3px;
    line-height: 2;
    display: block
}

.desktop-nav {
    display: flex;
    gap: 33px;
    align-items: center;
    margin: auto;
    color: var(--ink);
    font-weight: 500;
    font-size: 15px
}

.desktop-nav>a,
.nav-dropdown>button {
    position: relative;
    padding: 15px 0
}

.desktop-nav>a:after {
    content: '';
    height: 2px;
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 9px;
    background: var(--orange);
    transition: right .25s
}

.desktop-nav>a:hover:after {
    right: 0
}

.nav-dropdown {
    position: relative
}

.nav-dropdown>button {
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 9px;
    font-weight: 500
}

.chevron {
    display: block;
    width: 7px;
    height: 7px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    margin-top: -4px
}

.nav-dropdown>div {
    position: absolute;
    left: -20px;
    top: 100%;
    min-width: 240px;
    background: white;
    box-shadow: var(--shadow);
    padding: 12px;
    border-top: 3px solid var(--cyan);
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: .2s
}

.nav-dropdown:is(:hover, :focus-within, .open)>div {
    visibility: visible;
    opacity: 1;
    transform: none
}

.nav-dropdown a {
    display: block;
    padding: 10px;
    font-size: 14px
}

.nav-dropdown a:hover {
    background: var(--soft);
    color: var(--blue)
}

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

.header-actions .btn {
    font-size: 15px;
    padding: 13px 20px;
    min-height: 45px
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    position: relative;
    background: none;
    border: 1px solid var(--line)
}

.menu-toggle span {
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--ink);
    left: 11px;
    top: 16px;
    transition: .25s
}

.menu-toggle span+span {
    top: 24px
}

.menu-toggle[aria-expanded=true] span {
    top: 20px;
    transform: rotate(45deg)
}

.menu-toggle[aria-expanded=true] span+span {
    transform: rotate(-45deg)
}

.mobile-menu {
    display: none
}

.hero {
    position: relative;
    height: min(730px, calc(100svh - 98px));
    min-height: 555px;
    color: white;
    background: var(--navy);
    overflow: hidden
}

.hero .swiper-slide {
    position: relative;
    overflow: hidden
}

.hero-image {
    position: absolute;
    inset: 0;
    overflow: hidden
}

.hero-image:after {
    content: '';
    position: absolute;
    inset: 0;
    background: #032e3e66
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.hero .hero-image img {
    transform: scale(1.04);
    transition: transform 7s ease
}

.hero .swiper-slide-active .hero-image img {
    transform: scale(1)
}

.hero-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-bottom: 75px;
    position: relative;
    z-index: 2
}

.hero-tag {
    display: inline-block;
    background: var(--cyan);
    color: white;
    padding: 5px 16px;
    margin-bottom: 17px;
    letter-spacing: 2.1px;
    font-size: 12px;
    font-weight: 600
}

.hero h1,
.hero h2 {
    color: #fff;
    font-size: clamp(52px, 5.3vw, 82px);
    letter-spacing: -1.4px;
    line-height: 1.12
}

.hero-content p {
    font-size: 17px;
    max-width: 480px;
    color: #fff
}

.hero-content .btn {
    margin-top: 28px
}

.hero-content>* {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s ease, transform .7s ease
}

.hero .swiper-slide-active .hero-content>* {
    opacity: 1;
    transform: none
}

.hero .swiper-slide-active .hero-content h1,
.hero .swiper-slide-active .hero-content h2 {
    transition-delay: .13s
}

.hero .swiper-slide-active .hero-content p {
    transition-delay: .23s
}

.hero .swiper-slide-active .hero-content .btn {
    transition-delay: .33s
}

.hero-controls {
    position: absolute;
    z-index: 5;
    left: 0;
    right: 0;
    bottom: 96px;
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: flex-end;
    pointer-events: none
}

.hero-controls>* {
    pointer-events: auto
}

.hero-controls .dots {
    width: auto
}

.hero-controls .circle {
    border: none
}

.hero-pause {
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 12px;
    padding: 10px
}

.hero-wave {
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 100px;
    object-fit: fill;
    z-index: 4;
    pointer-events: none
}

.swiper {
    min-width: 0;
    max-width: 100%;
    touch-action: pan-y
}

.swiper-slide {
    height: auto;
    min-width: 0
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-top: 28px
}

.dots {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    width: auto !important
}

.swiper-pagination-bullet {
    background: var(--ink);
    width: 6px;
    height: 6px;
    margin: 0 !important;
    opacity: .3;
    transition: .25s
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--orange);
    box-shadow: 0 0 0 5px #ff5c0012
}

.hero .swiper-pagination-bullet {
    background: white
}

.hero .swiper-pagination-bullet-active {
    box-shadow: 0 0 0 5px #ffffff25
}

.intro {
    padding-top: 45px
}

.intro-card {
    text-align: center;
    padding: 12px 38px 18px;
    transition: .3s
}

.intro-card:hover {
    transform: translateY(-7px)
}

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

.round-icon {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: #edf8fa;
    display: grid;
    place-items: center;
    margin: 0 auto 24px;
    transition: .3s
}

.round-icon .pool-icon {
    width: 50px;
    height: 50px
}

.intro-card:hover .round-icon {
    background: #d0f1f5;
    transform: rotate(-8deg)
}

.intro-card p {
    font-size: 15px
}

.about {
    padding-top: 40px
}

.about-media {
    height: 500px;
    position: relative;
    padding-right: 36px;
    padding-bottom: 25px
}

.about-media>img:first-child {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 38%;
    border-radius: 3px
}

.about-media:before {
    content: '';
    position: absolute;
    left: -15px;
    top: -20px;
    width: 48%;
    height: 44%;
    background: #e9f6f8;
    z-index: -1
}

.floating-note {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--cyan);
    color: white;
    padding: 25px 33px;
    font-family: var(--heading);
    font-size: 25px;
    line-height: 1.3;
    box-shadow: 12px 12px 0 #f1f7f8
}

.umbrella {
    position: absolute;
    width: 115px;
    left: -26px;
    bottom: 10px;
    animation: sway 7s ease-in-out infinite;
    transform-origin: center
}

.mini-columns {
    margin-top: 27px;
    padding-top: 23px;
    border-top: 1px solid var(--line);
    gap: 32px
}

.mini-columns h3 {
    font-size: 23px
}

.mini-columns p {
    font-size: 14px;
    margin-top: 10px
}

.photo-card {
    background: #fff;
    height: 100%;
    box-shadow: var(--shadow);
    transition: transform .4s
}

.photo-wrap {
    position: relative;
    height: 235px
}

.photo-wrap>img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform .7s
}

.photo-wrap {
    overflow: hidden
}

.photo-card:hover .photo-wrap>img {
    transform: scale(1.055)
}

.icon-medallion {
    position: absolute;
    bottom: 0;
    right: 24px;
    transform: translateY(0);
    width: 62px;
    height: 62px;
    background: white;
    display: grid;
    place-items: center
}

.icon-medallion .pool-icon {
    width: 37px;
    height: 37px
}

.card-copy {
    padding: 25px 28px 27px;
    display: flex;
    flex-direction: column;
    min-height: 215px
}

.card-copy p {
    margin: 13px 0 20px;
    font-size: 14px
}

.text-link {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    color: var(--ink);
    font-family: var(--heading);
    font-size: 16px
}

.text-link svg {
    width: 20px;
    transition: transform .25s
}

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

.blue-panel {
    background: var(--blue);
    color: #ffffffce;
    position: relative
}

.blue-panel h2,
.blue-panel h3 {
    color: white
}

.benefit {
    text-align: center;
    padding: 15px 20px
}

.benefit .pool-icon {
    margin: 0 auto 23px;
    filter: invert(1);
    width: 54px;
    height: 54px;
    transition: transform .4s
}

.benefit:hover .pool-icon {
    transform: translateY(-8px)
}

.benefit p {
    font-size: 14px
}

.marquee {
    overflow: hidden;
    border-block: 1px solid #ffffff35;
    margin-top: 50px;
    mask-image: none
}

.marquee-track {
    width: max-content;
    display: flex;
    align-items: center;
    gap: 35px;
    padding: 20px 0;
    animation: marquee 35s linear infinite
}

.marquee:hover .marquee-track {
    animation-play-state: paused
}

.marquee span {
    font-family: var(--heading);
    font-size: 33px;
    color: #fff
}

.marquee i {
    font-size: 26px;
    font-style: normal;
    color: #8de4eb
}

.tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px
}

.tabs button {
    border: 1px solid var(--line);
    background: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    transition: .25s
}

.tabs button[aria-selected=true],
.tabs button:hover {
    background: var(--cyan);
    border-color: var(--cyan);
    color: #fff;
    box-shadow: 0 6px 15px #03bfd022
}

.tab-panel {
    background: var(--ink);
    gap: 0;
    min-height: 350px;
    color: #ffffffbd
}

.tab-copy {
    padding: 42px 48px
}

.tab-copy>.pool-icon {
    filter: invert(1);
    margin-bottom: 22px
}

.tab-copy h3 {
    font-size: 34px;
    max-width: 420px;
    color: white
}

.tab-photo {
    height: 390px;
    padding: 20px
}

.tab-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 3px
}

.tab-panel:not([hidden]) {
    animation: panel-in .5s ease
}

.renovation-band {
    background: #edf6f8;
    overflow: clip
}

.renovation-inner {
    display: grid;
    grid-template-columns: .85fr 1.5fr;
    align-items: center;
    gap: 48px
}

.renovation-copy h2 {
    font-size: clamp(34px, 3vw, 47px)
}

.renovation-copy p {
    max-width: 410px
}

.renovation-card {
    background: #fff;
    height: 100%;
    box-shadow: var(--shadow)
}

.renovation-card>img {
    width: 100%;
    height: 285px;
    object-fit: cover
}

.renovation-card>div {
    padding: 23px
}

.renovation-card span {
    font-size: 13px;
    display: block;
    margin-top: 8px
}

.flip-card {
    position: relative;
    min-width: 0;
    height: 310px;
    background: transparent;
    border: none;
    padding: 0;
    text-align: left;
    perspective: 1100px
}

.flip-inner {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform .7s cubic-bezier(.2, .75, .2, 1);
    transform-style: preserve-3d
}

.flip-front,
.flip-back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    overflow: hidden
}

.flip-front {
    display: flex;
    flex-direction: column;
    padding: 31px;
    background: var(--soft);
    border: 1px solid #e9f0f3;
    box-shadow: 0 12px 27px #073f5408
}

.flip-front>.pool-icon {
    margin-bottom: 23px
}

.flip-front>strong {
    font-family: var(--heading);
    font-size: 28px;
    line-height: 1.2;
    color: var(--ink)
}

.flip-front>span {
    margin-top: 13px;
    font-size: 14px
}

.flip-front small {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--ink);
    margin-top: auto;
    padding-top: 20px
}

.flip-front small span {
    font-size: 26px;
    font-weight: 400;
    color: var(--orange)
}

.flip-back {
    transform: rotateY(180deg);
    background: var(--ink)
}

.flip-back>img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.flip-back:after {
    content: '';
    position: absolute;
    inset: 0;
    background: #033e5477
}

.flip-back>span {
    position: absolute;
    inset: auto 0 0;
    z-index: 2;
    padding: 25px;
    background: #043f54e8;
    color: #fff
}

.flip-back strong {
    font-family: var(--heading);
    font-size: 25px;
    display: block
}

.flip-back>span>span {
    display: block;
    font-size: 14px;
    margin-top: 10px
}

.flip-card[aria-pressed=true] .flip-inner {
    transform: rotateY(180deg)
}

@media(hover:hover) {
    .flip-card:hover .flip-inner {
        transform: rotateY(180deg)
    }
}

.faq-layout {
    gap: 65px
}

.faq-media {
    position: relative;
    height: 475px;
    overflow: hidden
}

.faq-media>img {
    height: 100%;
    width: 100%;
    object-fit: cover
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--blue);
    color: white;
    padding: 25px 30px;
    line-height: 1.3;
    font-family: var(--heading);
    font-size: 27px
}

.accordion {
    display: grid;
    gap: 10px
}

.accordion details {
    background: #fff;
    border: 1px solid var(--line);
    transition: background .25s
}

.accordion summary {
    padding: 19px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    list-style: none;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    cursor: pointer;
    line-height: 1.5
}

.accordion summary::-webkit-details-marker {
    display: none
}

.plus {
    position: relative;
    width: 15px;
    height: 15px;
    flex-shrink: 0
}

.plus:before,
.plus:after {
    content: '';
    position: absolute;
    top: 7px;
    left: 1px;
    width: 13px;
    height: 1.5px;
    background: currentColor
}

.plus:after {
    transform: rotate(90deg);
    transition: transform .2s
}

details[open] .plus:after {
    transform: rotate(0)
}

.accordion details>div {
    padding: 0 22px 20px;
    font-size: 14px;
    animation: panel-in .3s
}

.accordion details[open] {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue)
}

.accordion details[open] summary {
    color: #fff
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start
}

.contact-grid>div>p {
    max-width: 470px
}

.contact-email {
    font-family: var(--heading);
    font-size: 23px;
    color: var(--ink);
    display: inline-block;
    margin: 20px 0 26px;
    border-bottom: 1px solid var(--cyan)
}

.contact-photo {
    height: 150px;
    overflow: hidden;
    max-width: 490px
}

.contact-photo img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center 65%
}

.fine-print {
    font-size: 12px;
    line-height: 1.75
}

.contact-form {
    padding: 35px;
    background: var(--soft);
    border-top: 4px solid var(--cyan);
    box-shadow: var(--shadow)
}

.contact-form label:not(.consent):not(.honeypot) {
    display: block;
    margin-bottom: 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--ink)
}

.contact-form .two-grid {
    gap: 18px
}

input:not([type=checkbox]),
select,
textarea {
    display: block;
    background: #fff;
    border: 1px solid #dce7ec;
    border-radius: 0;
    width: 100%;
    min-width: 0;
    padding: 12px 14px;
    color: var(--ink);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    margin-top: 7px;
    transition: border-color .2s
}

input:not([type=checkbox]),
select {
    height: 50px
}

textarea {
    resize: vertical;
    min-height: 110px
}

input::placeholder,
textarea::placeholder {
    color: #869399;
    font-size: 13px
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='m4 6 4 4 4-4' fill='none' stroke='%23073f54'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 35px
}

.consent {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    font-size: 12px;
    line-height: 1.7;
    margin-bottom: 22px
}

.consent input {
    accent-color: var(--blue);
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 4px
}

.consent a {
    text-decoration: underline
}

.honeypot {
    position: absolute !important;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden
}

.form-status:empty {
    display: none
}

.form-status {
    font-size: 14px;
    color: var(--ink);
    padding: 12px;
    border-left: 3px solid var(--cyan);
    background: white;
    overflow-wrap: anywhere
}

.form-status.error {
    border-color: var(--orange)
}

.footer {
    background: var(--ink);
    color: #ffffffa8;
    padding: 0 0 22px;
    position: relative;
    overflow: clip
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 0;
    border-bottom: 1px solid #ffffff24;
    margin-bottom: 47px;
    gap: 30px
}

.footer-top h2 {
    color: #fff;
    font-size: 43px
}

.footer-top .btn:hover {
    background: var(--cyan)
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr .9fr 1fr 1.15fr;
    gap: 45px
}

.footer .brand {
    color: #fff
}

.footer .brand>img {
    filter: invert(1)
}

.footer-grid h3 {
    color: #fff;
    font-size: 21px;
    margin-bottom: 20px
}

.footer-grid p {
    font-size: 13px;
    line-height: 1.9
}

.footer-grid>div:first-child>p {
    font-size: 12px;
    max-width: 355px
}

.footer-grid>div>a:not(.brand) {
    display: block;
    font-size: 13px;
    margin-top: 9px;
    overflow-wrap: anywhere
}

.footer a:hover,
.footer button:hover {
    color: white
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    border-top: 1px solid #ffffff24;
    margin-top: 40px;
    padding-top: 20px;
    font-size: 12px
}

.footer-bottom a {
    text-decoration: underline
}

.plain {
    background: none;
    border: 0;
    padding: 0;
    font-size: 13px;
    line-height: 1.8;
    margin-top: 9px
}

.cookie-card {
    position: fixed;
    bottom: 20px;
    left: 25px;
    z-index: 100;
    box-shadow: 0 8px 45px #073f5433;
    background: #fff;
    padding: 17px 20px;
    display: flex;
    align-items: center;
    gap: 22px;
    border-left: 4px solid var(--cyan);
    max-width: calc(100% - 50px)
}

.cookie-card p {
    font-size: 11px;
    line-height: 1.6
}

.cookie-card b {
    font-size: 12px;
    color: var(--ink)
}

.cookie-card a {
    text-decoration: underline
}

.cookie-card>div {
    display: flex;
    gap: 8px;
    flex-shrink: 0
}

.cookie-card button {
    font-size: 11px;
    padding: 9px 12px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
    white-space: nowrap
}

.cookie-card .cookie-accept {
    background: var(--ink);
    color: white;
    border-color: var(--ink)
}

.back-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 60;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: .25s
}

.back-top.visible {
    opacity: 1;
    visibility: visible
}

.back-top svg {
    transform: rotate(-90deg)
}

.skip-link {
    position: fixed;
    top: -100px;
    left: 10px;
    padding: 10px;
    background: #fff;
    z-index: 200
}

.skip-link:focus {
    top: 10px
}

.page-transition {
    position: fixed;
    inset: 0;
    z-index: 150;
    background: var(--navy);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
    color: white;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s, visibility .25s
}

.page-transition.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto
}

.page-transition>span:last-child {
    font-family: var(--heading);
    font-size: 24px
}

.transition-ring {
    width: 55px;
    height: 55px;
    border: 2px solid #ffffff40;
    border-top-color: var(--cyan);
    border-radius: 50%;
    animation: spin 1s linear infinite
}

.service-hero {
    position: relative;
    background: var(--ink);
    min-height: 460px;
    overflow: hidden;
    padding: 58px 0 115px;
    color: #fff
}

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

.service-hero h1 {
    font-size: clamp(48px, 4.5vw, 69px);
    color: white
}

.service-hero p {
    max-width: 520px;
    font-size: 16px
}

.service-hero .btn {
    margin-top: 24px
}

.service-hero .hero-wave {
    height: 70px
}

.breadcrumb {
    display: block;
    font-size: 12px;
    margin-bottom: 24px
}

.service-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 200px;
    gap: 55px;
    align-items: start
}

.service-content {
    min-width: 0
}

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

.service-content h2 {
    font-size: clamp(32px, 2.8vw, 44px)
}

.service-content .split {
    gap: 35px
}

.service-content p {
    font-size: 14px
}

.service-content .lead {
    font-size: 17px
}

.overview-photo {
    height: 385px;
    overflow: hidden;
    border-radius: 3px
}

.overview-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.inline-note {
    display: flex;
    gap: 19px;
    border-top: 1px solid var(--line);
    padding-top: 23px;
    margin-top: 25px;
    align-items: center
}

.inline-note .pool-icon {
    width: 37px;
    height: 37px
}

.inline-note p {
    margin: 0;
    font-size: 13px;
    color: var(--ink)
}

.service-scope {
    border-top: 1px solid var(--line)
}

.service-scope .three-grid {
    gap: 18px
}

.service-scope .flip-card {
    height: 295px
}

.service-scope .flip-front {
    padding: 25px
}

.service-scope .flip-front strong {
    font-size: 26px
}

.service-rail {
    position: sticky;
    top: 130px;
    margin-top: 60px;
    align-self: start;
    z-index: 10
}

.station-nav {
    background: #eef3f5;
    border: 1px solid #d2e0e5;
    border-radius: 30px 30px 14px 14px;
    padding: 17px 12px 10px;
    box-shadow: inset -6px 0 #dae4e8, 0 12px 20px #063f5410;
    border-bottom: 7px solid #ccdce3
}

.station-head {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 5px 12px;
    font-size: 9px;
    color: var(--ink);
    letter-spacing: 1px
}

.power-symbol {
    font-size: 21px;
    color: var(--blue);
    line-height: 1
}

.station-screen {
    background: var(--ink);
    border-radius: 14px;
    padding: 20px 12px;
    box-shadow: inset 0 0 0 3px #023345
}

.station-label {
    font-family: var(--heading);
    font-size: 14px;
    color: var(--cyan);
    display: block;
    padding: 0 6px 12px;
    border-bottom: 1px solid #ffffff24;
    margin-bottom: 9px
}

.station-screen a {
    padding: 9px 6px;
    color: #d6e6ec;
    display: flex;
    justify-content: space-between;
    gap: 7px;
    align-items: center;
    font-size: 11px;
    line-height: 1.5;
    border-radius: 5px;
    transition: .2s
}

.station-screen a:hover,
.station-screen a.active {
    background: #0d6078;
    color: #fff
}

.station-screen a.active span {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--cyan)
}

.station-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--ink);
    font-size: 10px;
    font-weight: 500;
    padding: 14px 0 5px
}

.station-bottom svg {
    width: 15px;
    height: 15px
}

.symptom-section {
    border-top: 1px solid var(--line)
}

.symptom-photo {
    height: 420px;
    overflow: hidden
}

.symptom-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.service-content .accordion summary {
    font-size: 13px;
    padding: 17px
}

.service-content .accordion details>div {
    padding: 0 17px 18px
}

.service-content .accordion p {
    font-size: 13px
}

.journey-section {
    background: var(--ink);
    padding: 40px !important;
    color: #c6dce4
}

.journey-section h2,
.journey-section h3 {
    color: white
}

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

.journey article {
    position: relative
}

.journey article>span {
    display: flex;
    align-items: center;
    margin-bottom: 22px
}

.journey article:not(:last-child)>span:after {
    content: '';
    height: 1px;
    background: #ffffff38;
    flex: 1;
    margin-left: 20px
}

.journey .pool-icon {
    filter: invert(1);
    width: 42px;
    height: 42px
}

.journey h3 {
    font-size: 23px
}

.journey p {
    font-size: 13px
}

.plan-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 28px
}

.plan-options {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.plan-options button {
    display: grid;
    grid-template-columns: 1fr 25px;
    text-align: left;
    padding: 22px;
    background: var(--soft);
    border: 1px solid var(--line);
    color: var(--ink);
    transition: .25s
}

.plan-options strong {
    font-family: var(--heading);
    font-size: 23px;
    line-height: 1.3
}

.plan-options span {
    grid-column: 1;
    font-size: 12px;
    margin-top: 8px
}

.plan-options svg {
    grid-row: 1/3;
    grid-column: 2;
    align-self: center;
    width: 19px
}

.plan-options [aria-selected=true] {
    background: var(--blue);
    color: white;
    border-color: var(--blue);
    box-shadow: 0 10px 18px #076cba15
}

.plan-panel {
    padding: 32px;
    background: var(--soft);
    height: 100%;
    border-top: 3px solid var(--cyan)
}

.plan-panel h3 {
    font-size: 30px
}

.plan-label {
    font-size: 12px;
    color: var(--blue);
    display: block;
    margin-bottom: 15px
}

.check-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 12px;
    font-size: 13px;
    margin: 22px 0 27px
}

.check-list li {
    position: relative;
    padding-left: 23px
}

.check-list li:before {
    content: '';
    position: absolute;
    left: 2px;
    top: 6px;
    width: 9px;
    height: 5px;
    border-left: 2px solid var(--cyan);
    border-bottom: 2px solid var(--cyan);
    transform: rotate(-45deg)
}

.plan-panel .btn {
    font-size: 15px
}

.prep-card {
    padding: 30px;
    background: #f2f7f9;
    border-left: 3px solid var(--cyan);
    height: 100%;
    min-height: 240px
}

.prep-card h3 {
    margin-top: 23px
}

.prep-card .pool-icon {
    width: 40px;
    height: 40px
}

.service-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: var(--blue);
    padding: 30px;
    margin-top: 30px;
    color: #fff
}

.service-cta h3 {
    color: white;
    font-size: 27px
}

.service-cta p {
    margin-top: 8px
}

.service-cta .btn {
    flex-shrink: 0
}

.legal-hero {
    background: var(--ink);
    color: #fff;
    padding: 65px 0 75px;
    position: relative;
    overflow: hidden
}

.legal-hero:after {
    content: '';
    width: 440px;
    height: 440px;
    border: 50px double #087087;
    position: absolute;
    border-radius: 50%;
    right: 5%;
    top: -100px;
    opacity: .5;
    pointer-events: none
}

.legal-hero .container {
    position: relative;
    z-index: 1
}

.legal-hero h1 {
    color: #fff;
    font-size: 59px
}

.legal-layout {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 85px;
    padding-top: 65px;
    padding-bottom: 65px
}

.legal-nav {
    position: sticky;
    top: 130px;
    align-self: start;
    display: grid;
    gap: 9px;
    border-left: 3px solid var(--cyan);
    padding: 15px 22px;
    background: var(--soft)
}

.legal-nav a {
    font-size: 13px;
    padding: 6px 0;
    color: var(--ink)
}

.legal-nav a:hover {
    color: var(--blue)
}

.legal-copy {
    max-width: 850px
}

.legal-copy section {
    padding: 0 0 35px;
    margin-bottom: 35px;
    border-bottom: 1px solid var(--line);
    scroll-margin-top: 130px
}

.legal-copy h2 {
    font-size: 30px
}

.legal-copy p {
    font-size: 15px
}

.legal-copy a {
    color: var(--blue);
    text-decoration: underline
}

.legal-copy [data-email] {
    overflow-wrap: anywhere
}

[hidden] {
    display: none !important
}

@keyframes marquee {
    to {
        transform: translateX(-50%)
    }
}

@keyframes sway {
    50% {
        transform: rotate(10deg) translateY(-7px)
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

@keyframes panel-in {
    from {
        opacity: 0;
        transform: translateY(9px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@media(min-width:1700px) {
    .hero-content {
        padding-left: 25px
    }

    .hero {
        height: 750px
    }
}

@media(max-width:1199px) {
    .container {
        width: calc(100% - 56px)
    }

    .desktop-nav {
        gap: 23px
    }

    .header-inner {
        gap: 20px
    }

    .split {
        gap: 45px
    }

    .section {
        padding: 63px 0
    }

    .contact-grid {
        gap: 40px
    }

    .footer-grid {
        gap: 28px;
        grid-template-columns: 1.3fr 1fr 1fr
    }

    .footer-grid>div:last-child {
        grid-column: 1/-1;
        display: flex;
        gap: 30px;
        align-items: center
    }

    .footer-grid>div:last-child p {
        margin: 0
    }

    .footer-grid>div:last-child h3 {
        margin: 0
    }

    .footer-grid>div:last-child>a {
        margin: 0;
        margin-left: auto
    }

    .service-body {
        grid-template-columns: minmax(0, 1fr) 180px;
        gap: 28px
    }

    .service-content .three-grid {
        gap: 12px
    }

    .service-scope .flip-front {
        padding: 21px
    }

    .service-scope .flip-front strong {
        font-size: 23px
    }

    .service-scope .flip-card {
        height: 315px
    }

    .service-content .split {
        gap: 25px
    }

    .service-content h2 {
        font-size: 37px
    }

    .journey-section {
        padding: 30px !important
    }

    .hero h1,
    .hero h2 {
        font-size: 67px
    }

    .photo-wrap {
        height: 215px
    }

    .card-copy {
        padding: 24px
    }

    .four-grid {
        gap: 15px
    }

    .benefit {
        padding: 15px 8px
    }
}

@media(max-width:1000px) {
    .desktop-nav {
        display: none
    }

    .header-actions {
        margin-left: auto
    }

    .menu-toggle {
        display: block
    }

    .header-inner {
        min-height: 82px
    }

    .mobile-menu {
        position: fixed;
        inset: 82px 0 0;
        background: var(--ink);
        z-index: 75;
        color: #fff;
        display: flex;
        flex-direction: column;
        padding: 45px 30px;
        gap: 22px;
        overflow: auto;
        visibility: hidden;
        opacity: 0;
        transform: translateY(-12px);
        transition: .25s
    }

    .mobile-menu.open {
        visibility: visible;
        opacity: 1;
        transform: none
    }

    .mobile-menu>a {
        font-family: var(--heading);
        font-size: 29px;
        line-height: 1.4
    }

    .mobile-menu>a:last-child {
        font: 14px var(--body);
        color: #b7dfe7;
        margin-top: auto
    }

    .hero {
        height: 630px;
        min-height: 530px
    }

    .hero h1,
    .hero h2 {
        font-size: 62px
    }

    .hero-controls {
        bottom: 85px
    }

    .hero-content {
        padding-bottom: 85px
    }

    .about-media {
        height: 440px
    }

    .intro-card {
        padding: 12px 18px
    }

    .service-body {
        display: block
    }

    .service-rail {
        position: sticky;
        bottom: 15px;
        top: auto;
        margin: 0 0 20px;
        z-index: 50
    }

    .station-nav {
        border-radius: 14px;
        padding: 8px;
        background: #eef3f5;
        border-bottom-width: 3px;
        display: flex;
        align-items: center;
        gap: 8px
    }

    .station-head,
    .station-label,
    .station-bottom {
        display: none
    }

    .station-screen {
        display: flex;
        flex: 1;
        overflow: auto;
        gap: 6px;
        padding: 8px;
        border-radius: 9px;
        box-shadow: none;
        scrollbar-width: none
    }

    .station-screen a {
        white-space: nowrap;
        flex-shrink: 0;
        padding: 8px 12px;
        font-size: 11px
    }

    .station-screen a.active span {
        display: none
    }

    .service-content .split {
        gap: 45px
    }

    .service-scope .flip-card {
        height: 280px
    }

    .renovation-inner {
        gap: 30px;
        grid-template-columns: .85fr 1fr
    }

    .tab-copy {
        padding: 32px
    }

    .tab-copy h3 {
        font-size: 29px
    }

    .tab-photo {
        height: 370px
    }

    .contact-form {
        padding: 28px
    }

    .contact-form .two-grid {
        grid-template-columns: 1fr;
        gap: 0
    }

    .legal-layout {
        grid-template-columns: 190px minmax(0, 1fr);
        gap: 40px
    }

    .header .brand b {
        font-size: 33px
    }

    .header .brand>img {
        width: 44px;
        height: 44px
    }

    .header .brand small {
        font-size: 9px
    }

    .hero-wave {
        height: 80px
    }
}

@media(max-width:767px) {
    html {
        scroll-padding-top: 91px
    }

    .container {
        width: calc(100% - 36px)
    }

    body {
        font-size: 15px
    }

    .header-inner {
        min-height: 75px;
        gap: 12px
    }

    .header .brand {
        gap: 8px
    }

    .header .brand b {
        font-size: 29px
    }

    .header .brand>img {
        width: 38px;
        height: 38px
    }

    .header .brand small {
        font-size: 8px;
        letter-spacing: 1.5px
    }

    .header-actions {
        gap: 11px
    }

    .header-actions .btn {
        font-size: 12px;
        padding: 11px 13px;
        min-height: 39px
    }

    .menu-toggle {
        width: 38px;
        height: 38px
    }

    .menu-toggle span {
        left: 8px
    }

    .mobile-menu {
        top: 75px
    }

    .hero {
        min-height: 550px;
        height: calc(87svh - 75px);
        max-height: 650px
    }

    .hero-content {
        align-items: center;
        text-align: center;
        padding-bottom: 90px;
        padding-top: 20px
    }

    .hero h1,
    .hero h2 {
        font-size: clamp(39px, 8.6vw, 60px);
        letter-spacing: -.8px
    }

    .hero-tag {
        font-size: 9px;
        letter-spacing: 1.1px;
        padding: 6px 11px;
        margin-bottom: 18px
    }

    .hero-content p {
        font-size: 14px;
        max-width: 350px;
        line-height: 1.7;
        margin-top: 18px
    }

    .hero-content .btn {
        margin-top: 23px
    }

    .hero-controls {
        bottom: 72px;
        justify-content: center;
        gap: 17px
    }

    .hero-controls .circle {
        width: 39px;
        height: 39px
    }

    .hero-pause {
        font-size: 10px;
        padding: 6px;
        position: absolute;
        right: 0
    }

    .hero-wave {
        height: 57px
    }

    .hero-image:after {
        background: #0235467a
    }

    .section {
        padding: 43px 0;
        scroll-margin-top: 82px
    }

    h2 {
        font-size: 35px;
        text-align: center;
        letter-spacing: -.5px
    }

    h3 {
        font-size: 23px
    }

    .section-heading {
        margin-bottom: 27px;
        text-align: center
    }

    .section-heading p {
        font-size: 14px;
        max-width: 450px;
        margin: 15px auto 0
    }

    .intro {
        padding-top: 23px
    }

    .intro .three-grid {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .intro-card {
        display: grid;
        grid-template-columns: 66px 1fr;
        text-align: left;
        column-gap: 20px;
        padding: 15px 7px;
        border: 0 !important
    }

    .round-icon {
        width: 65px;
        height: 65px;
        margin: 0;
        grid-row: 1/3
    }

    .round-icon .pool-icon {
        width: 36px;
        height: 36px
    }

    .intro-card h3 {
        align-self: end
    }

    .intro-card p {
        font-size: 13px;
        margin-top: 7px
    }

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

    .about {
        padding-top: 30px
    }

    .about-media {
        height: 390px;
        max-width: 450px;
        width: calc(100% - 12px);
        margin: auto;
        padding-right: 25px;
        padding-bottom: 20px
    }

    .floating-note {
        font-size: 23px;
        padding: 20px 25px
    }

    .umbrella {
        width: 88px;
        left: -8px;
        bottom: 6px
    }

    .about .split>div:last-child {
        text-align: center
    }

    .lead {
        font-size: 17px
    }

    .about p {
        font-size: 14px
    }

    .mini-columns {
        text-align: left;
        gap: 23px;
        margin-top: 22px;
        padding-top: 20px
    }

    .mini-columns p {
        font-size: 13px
    }

    .btn {
        font-size: 15px;
        min-height: 47px;
        padding: 13px 23px
    }

    .photo-wrap {
        height: 230px
    }

    .card-copy {
        padding: 25px;
        min-height: 203px
    }

    .card-copy h3 {
        font-size: 26px
    }

    .slider-controls {
        margin-top: 22px
    }

    .circle {
        width: 42px;
        height: 42px
    }

    .four-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px 18px
    }

    .benefit {
        padding: 0 5px
    }

    .benefit .pool-icon {
        width: 42px;
        height: 42px;
        margin-bottom: 15px
    }

    .benefit h3 {
        font-size: 23px
    }

    .benefit p {
        font-size: 12px;
        margin-top: 10px;
        line-height: 1.7
    }

    .marquee {
        margin-top: 33px
    }

    .marquee-track {
        gap: 22px;
        padding: 14px 0
    }

    .marquee span {
        font-size: 26px
    }

    .marquee i {
        font-size: 22px
    }

    .tabs {
        gap: 7px;
        margin-bottom: 20px
    }

    .tabs button {
        padding: 10px 12px;
        font-size: 11px;
        white-space: nowrap
    }

    .tab-panel {
        gap: 0
    }

    .tab-copy {
        text-align: center;
        padding: 30px 25px 10px
    }

    .tab-copy .pool-icon {
        margin: 0 auto 18px;
        width: 40px;
        height: 40px
    }

    .tab-copy h3 {
        font-size: 30px;
        margin: auto
    }

    .tab-copy p {
        font-size: 14px
    }

    .tab-photo {
        height: 255px;
        padding: 20px
    }

    .renovation-inner {
        grid-template-columns: 1fr;
        gap: 30px
    }

    .renovation-copy {
        text-align: center
    }

    .renovation-copy p {
        margin: 18px auto 0;
        font-size: 14px
    }

    .renovation-copy .btn {
        margin-top: 22px
    }

    .renovation-card>img {
        height: 260px
    }

    .three-grid.flip-grid {
        grid-template-columns: 1fr;
        gap: 18px
    }

    .flip-card {
        height: 270px
    }

    .flip-front {
        padding: 25px;
        text-align: center;
        align-items: center
    }

    .flip-front>.pool-icon {
        margin-bottom: 19px;
        width: 43px;
        height: 43px
    }

    .flip-front strong {
        font-size: 28px
    }

    .flip-front>span {
        max-width: 310px;
        font-size: 14px
    }

    .flip-front small {
        align-self: stretch;
        text-align: left
    }

    .flip-back {
        text-align: center
    }

    .flip-back>span {
        padding: 22px
    }

    .faq-layout {
        gap: 28px
    }

    .faq-media {
        height: 280px
    }

    .image-caption {
        font-size: 25px;
        padding: 19px 23px
    }

    .accordion summary {
        font-size: 13px;
        padding: 17px 18px
    }

    .accordion details>div {
        padding: 0 18px 18px;
        font-size: 13px
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 27px
    }

    .contact-grid>div {
        text-align: center
    }

    .contact-grid>div>p {
        margin-inline: auto
    }

    .contact-photo {
        margin: auto;
        height: 140px
    }

    .contact-email {
        font-size: 22px;
        margin: 18px 0 22px
    }

    .contact-grid .fine-print {
        font-size: 11px
    }

    .contact-form {
        padding: 24px
    }

    .contact-form .two-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px
    }

    .contact-form label:not(.consent):not(.honeypot) {
        font-size: 12px;
        margin-bottom: 17px
    }

    .contact-form .btn {
        display: flex;
        margin-inline: auto
    }

    .contact-form>.fine-print {
        text-align: center
    }

    .footer-top {
        padding: 36px 0;
        flex-direction: column;
        text-align: center;
        gap: 24px;
        margin-bottom: 32px
    }

    .footer-top h2 {
        font-size: 36px
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px 24px
    }

    .footer-grid>div:first-child {
        grid-column: 1/-1;
        text-align: center
    }

    .footer .brand {
        justify-content: center
    }

    .footer-grid>div:first-child>p {
        max-width: 440px;
        margin-inline: auto;
        font-size: 11px
    }

    .footer-grid>div:nth-child(2),
    .footer-grid>div:nth-child(3) {
        text-align: center
    }

    .footer-grid>div:last-child {
        display: block;
        text-align: center
    }

    .footer-grid>div:last-child h3 {
        margin-bottom: 12px
    }

    .footer-grid>div:last-child>a {
        margin-top: 10px
    }

    .footer-bottom {
        margin-top: 28px;
        padding-top: 20px;
        text-align: center;
        flex-direction: column;
        gap: 9px;
        font-size: 11px
    }

    .cookie-card {
        left: 10px;
        bottom: 10px;
        max-width: calc(100% - 20px);
        width: calc(100% - 20px);
        padding: 11px 12px;
        gap: 12px;
        justify-content: space-between
    }

    .cookie-card p {
        font-size: 9px;
        line-height: 1.5
    }

    .cookie-card b {
        font-size: 10px
    }

    .cookie-card>div {
        gap: 5px
    }

    .cookie-card button {
        font-size: 9px;
        padding: 8px
    }

    .back-top {
        right: 15px;
        bottom: 105px;
        width: 37px;
        height: 37px
    }

    .service-hero {
        padding: 35px 0 90px;
        min-height: 430px;
        text-align: center
    }

    .service-hero h1 {
        font-size: 49px;
        letter-spacing: -.8px
    }

    .service-hero p {
        font-size: 14px;
        margin-inline: auto
    }

    .breadcrumb {
        font-size: 11px;
        margin-bottom: 22px
    }

    .service-hero .hero-wave {
        height: 45px
    }

    .service-content .section {
        padding: 38px 0
    }

    .service-content .split {
        gap: 28px
    }

    .service-content h2 {
        font-size: 34px
    }

    .overview>div:first-child {
        text-align: center
    }

    .overview .inline-note {
        text-align: left
    }

    .overview-photo {
        height: 290px
    }

    .service-scope .flip-card {
        height: 265px
    }

    .service-scope .flip-front strong {
        font-size: 28px
    }

    .service-scope .three-grid {
        gap: 16px
    }

    .symptom-photo {
        height: 250px
    }

    .journey-section {
        padding: 29px 23px !important;
        margin: 15px 0
    }

    .journey {
        grid-template-columns: 1fr;
        gap: 26px
    }

    .journey article {
        display: grid;
        grid-template-columns: 42px 1fr;
        column-gap: 20px
    }

    .journey article>span {
        grid-row: 1/3;
        margin: 0;
        align-self: start
    }

    .journey article>span:after {
        display: none
    }

    .journey h3 {
        font-size: 24px
    }

    .journey p {
        margin-top: 9px
    }

    .plan-layout {
        grid-template-columns: 1fr;
        gap: 18px
    }

    .plan-options {
        gap: 9px
    }

    .plan-options button {
        padding: 18px 20px
    }

    .plan-options strong {
        font-size: 23px
    }

    .plan-options span {
        margin-top: 5px
    }

    .plan-panel {
        padding: 27px
    }

    .plan-panel h3 {
        text-align: left
    }

    .prep-card {
        min-height: 245px;
        padding: 27px
    }

    .service-cta {
        padding: 28px 22px;
        flex-direction: column;
        text-align: center
    }

    .service-cta h3 {
        font-size: 27px
    }

    .service-rail {
        bottom: 10px
    }

    .station-screen a {
        font-size: 10px;
        padding: 7px 9px
    }

    .legal-hero {
        padding: 40px 0 45px;
        text-align: center
    }

    .legal-hero h1 {
        font-size: 43px;
        letter-spacing: -.5px
    }

    .legal-hero p {
        font-size: 14px
    }

    .legal-hero:after {
        width: 280px;
        height: 280px;
        right: -140px;
        top: 0;
        border-width: 35px
    }

    .legal-layout {
        display: block;
        padding-block: 30px
    }

    .legal-nav {
        position: static;
        display: flex;
        overflow: auto;
        gap: 18px;
        padding: 15px;
        margin-bottom: 32px
    }

    .legal-nav a {
        white-space: nowrap;
        font-size: 12px
    }

    .legal-copy section {
        margin-bottom: 25px;
        padding-bottom: 25px
    }

    .legal-copy h2 {
        text-align: left;
        font-size: 28px
    }

    .legal-copy p {
        font-size: 14px
    }

    .footer-grid h3 {
        font-size: 22px
    }
}

@media(max-width:390px) {
    .header-actions .btn {
        display: none
    }

    .hero h1,
    .hero h2 {
        font-size: 36px
    }

    .hero-tag {
        font-size: 8px
    }

    .hero-pause {
        right: -5px
    }

    .tabs button {
        padding: 9px 10px;
        font-size: 10px
    }

    .contact-form .two-grid {
        grid-template-columns: 1fr;
        gap: 0
    }

    .cookie-card {
        gap: 6px;
        padding: 10px
    }

    .cookie-card button {
        padding: 7px 5px
    }

    .cookie-card b {
        font-size: 9px
    }

    .cookie-card p {
        font-size: 8px
    }

    .about-media {
        height: 340px
    }

    h2 {
        font-size: 32px
    }

    .service-hero h1 {
        font-size: 43px
    }
}

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

    *,
    *:before,
    *:after {
        animation: none !important;
        transition-duration: .01ms !important
    }

    [data-aos] {
        opacity: 1 !important;
        transform: none !important
    }

    .hero-content>* {
        opacity: 1;
        transform: none
    }

    .page-transition {
        display: none
    }
}

@media(max-width:1000px) {
    .service-body {
        display: flex;
        flex-direction: column;
        gap: 0
    }

    .service-content {
        width: 100%
    }

    .service-rail {
        order: -1;
        width: 100%;
        top: 94px;
        bottom: auto;
        margin: 15px 0 0
    }

    .station-head .power-symbol {
        width: 20px;
        height: 20px
    }
}

@media(max-width:767px) {
    .service-rail {
        top: 84px;
        margin-top: 10px
    }
}