:root {
    --sky: #EAF7FD;
    --sky-2: #C9EBFA;
    --sea: #2E9CDB;
    --navy: #173A6B;
    --sun: #FFD23F;
    --pink: #FF5DA2;
    --coral: #FF8A5C;
    --mint: #5ED6B5;
    --white: #FFFFFF;
    --r: 22px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Hanken Grotesk', sans-serif;
    background: var(--sky);
    color: var(--navy);
    font-size: 16.5px;
    line-height: 1.62;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

h1,
h2,
h3 {
    font-family: 'Lilita One', cursive;
    line-height: 1.06;
    letter-spacing: .01em;
    font-weight: 400
}

a {
    color: inherit
}

.wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px
}

section {
    padding: 90px 0;
    position: relative
}

.kick {
    display: inline-block;
    background: var(--navy);
    color: #fff;
    font-weight: 800;
    font-size: .74rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 999px;
    transform: rotate(-2deg)
}

:focus-visible {
    outline: 4px solid var(--pink);
    outline-offset: 3px;
    border-radius: 8px
}

@media(prefers-reduced-motion:reduce) {

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important
    }
}

.sticker {
    filter: drop-shadow(2.5px 0 0 #fff) drop-shadow(-2.5px 0 0 #fff) drop-shadow(0 2.5px 0 #fff) drop-shadow(0 -2.5px 0 #fff) drop-shadow(0 8px 14px rgba(23, 58, 107, .22))
}

/* ============ NAV ============ */
nav {
    background: rgba(234, 247, 253, .9);
    backdrop-filter: blur(12px);
    border-bottom: 3px solid var(--navy)
}

.nav-in {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px
}

.logo {
    font-family: 'Lilita One', cursive;
    font-size: 1.3rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px
}

.logo .badge {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--sun);
    border: 3px solid var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem
}

.logo em {
    color: var(--pink);
    font-style: normal
}

.brand,
.logo{
    display: flex;
    align-items: center;
    gap: .25rem;
}
.brand img,
.logo img{
    display: block;
    width: 54px;
    height: auto;
}

.nav-links {
    display: flex;
    gap: 26px;
    list-style: none
}

.nav-links a {
    text-decoration: none;
    font-weight: 700;
    font-size: .94rem;
    padding: 10px 2px;
    border-bottom: 3px solid transparent;
    transition: .2s
}

.nav-links a:hover {
    border-bottom-color: var(--pink);
    color: var(--pink)
}

.nav-call {
    background: var(--pink);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    padding: 12px 22px;
    border-radius: 999px;
    font-size: .92rem;
    border: 3px solid var(--navy);
    box-shadow: 4px 4px 0 var(--navy);
    transition: .15s
}

.nav-call:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--navy)
}

@media(max-width:880px) {
    .nav-links {
        display: none
    }
}

/* ============ HERO ============ */
.hero {
    padding: 80px 0 0;
    overflow: visible
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.04fr .96fr;
    gap: 44px;
    align-items: center
}

.hero h1 {
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    margin: 22px 0 20px
}

.hero h1 .pink {
    color: var(--pink);
    text-shadow: 3px 3px 0 #fff
}

.hero h1 .sea {
    color: var(--sea);
    text-shadow: 3px 3px 0 #fff
}

.hero .lede {
    font-size: 1.16rem;
    font-weight: 500;
    max-width: 500px;
    margin-bottom: 30px;
    color: #27518C
}

.cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center
}

.btn-pop {
    background: var(--sun);
    color: var(--navy);
    font-family: 'Lilita One', cursive;
    font-size: 1.12rem;
    text-decoration: none;
    padding: 17px 32px;
    border-radius: 999px;
    border: 3px solid var(--navy);
    box-shadow: 5px 5px 0 var(--navy);
    transition: .15s;
    display: inline-flex;
    align-items: center;
    gap: 10px
}

.btn-pop:hover {
    transform: translate(3px, 3px);
    box-shadow: 2px 2px 0 var(--navy)
}

.btn-plain {
    font-weight: 800;
    text-decoration: none;
    padding: 16px 26px;
    border-radius: 999px;
    border: 3px solid var(--navy);
    background: #fff;
    transition: .15s
}

.btn-plain:hover {
    background: var(--navy);
    color: #fff
}

.phone-pop {
    font-family: 'Lilita One', cursive;
    font-size: clamp(1.8rem, 3.4vw, 2.5rem);
    color: var(--pink);
    text-decoration: none;
    display: inline-block;
    margin-top: 24px;
    text-shadow: 2.5px 2.5px 0 #fff
}

.micro {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    font-weight: 700;
    font-size: .9rem;
    margin-top: 30px;
    color: #27518C
}

.micro b {
    color: var(--mint)
}

/* hero polaroid stack + stickers */
.hero-stage {
    position: relative;
    min-height: 520px
}

.pol {
    background: #fff;
    padding: 13px 13px 52px;
    box-shadow: 0 18px 40px rgba(23, 58, 107, .22);
    position: absolute;
    transition: transform .3s
}

.pol img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.pol .cap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    text-align: center;
    font-family: 'Caveat', cursive;
    font-size: 1.5rem;
    color: #2A4A7E
}

.pol .tape {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%) rotate(-4deg);
    width: 96px;
    height: 30px;
    background: rgba(255, 210, 63, .75);
    border-left: 2px dashed rgba(255, 255, 255, .7);
    border-right: 2px dashed rgba(255, 255, 255, .7)
}

.pol:hover {
    transform: scale(1.04) rotate(0deg) !important;
    z-index: 3
}

.pol-a {
    width: 100%;
    top: 8%;
    left: 2%;
    transform: rotate(-5deg);
    z-index: 3
}

.pol-a .imgbox {
    aspect-ratio: 4/5;
    overflow: hidden
}

.stick {
    position: absolute;
    animation: bob 5.5s ease-in-out infinite;
    z-index: 8
}

@keyframes bob {

    0%,
    100% {
        transform: translateY(0) rotate(var(--rot, 0deg))
    }

    50% {
        transform: translateY(-12px) rotate(var(--rot, 0deg))
    }
}

.stick svg {
    display: block
}

.st-sun {
    top: -34px;
    right: 6%;
    --rot: 8deg
}

.st-heart {
    top: 38%;
    left: -26px;
    --rot: -10deg;
    animation-delay: 1.2s
}

.st-hi {
    bottom: 18%;
    right: -14px;
    --rot: 6deg;
    animation-delay: 2.1s
}

.st-star {
    top: 6%;
    left: 34%;
    --rot: -6deg;
    animation-delay: .6s
}

@media(max-width:920px) {
    .hero-grid {
        grid-template-columns: 1fr
    }

    .hero-stage {
        min-height: 480px;
        margin-top: 10px
    }
}

/* ============ WAVES ============ */
.waves {
    height: 190px;
    position: relative;
    overflow: hidden;
}

.wave-layer {
    position: absolute;
    left: 0;
    top: 0;
    width: 200%;
    height: 100%;
    animation: drift 12s linear infinite
}

.wave-layer.back {
    animation-duration: 19s;
    opacity: .55;
    top: 12px
}

@keyframes drift {
    to {
        transform: translateX(-50%)
    }
}

.wave-layer svg {
    width: 100%;
    height: 100%;
    display: block
}

.on-sea {
    background: var(--sea)
}

/* ============ LIVE BANNER ============ */
.live-banner {
    background: var(--sea);
    color: #fff;
    padding: 30px 0 66px;
    margin-top: -2px
}

.live-in {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    flex-wrap: wrap;
    text-align: center
}

.live-in .eq {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 34px
}

.live-in .eq i {
    width: 6px;
    border-radius: 3px;
    background: var(--sun);
    animation: eq 1.1s ease-in-out infinite
}

.live-in .eq i:nth-child(2n) {
    animation-delay: .15s;
    background: #fff
}

.live-in .eq i:nth-child(3n) {
    animation-delay: .3s;
    background: var(--pink)
}

@keyframes eq {

    0%,
    100% {
        transform: scaleY(.3)
    }

    50% {
        transform: scaleY(1)
    }
}

.live-in .txt {
    font-family: 'Lilita One', cursive;
    font-size: clamp(1.2rem, 2.6vw, 1.8rem)
}

.live-in .pill {
    background: rgba(255, 255, 255, .18);
    border: 2px solid rgba(255, 255, 255, .5);
    border-radius: 999px;
    padding: 9px 18px;
    font-weight: 800;
    font-size: .88rem
}

/* ============ BOARDWALK SIGNS (unique) ============ */
#signs {
    background-color: #2E9CDB;
    color: #fff;
}

.signpost {
    position: relative;
    max-width: 760px;
    margin: 60px auto 0;
    padding-left: 0
}

.pole {
    position: absolute;
    left: 50%;
    top: -10px;
    bottom: -10px;
    width: 18px;
    transform: translateX(-50%);
    background: repeating-linear-gradient(180deg, #B5793F 0 26px, #A06A34 26px 52px);
    border-radius: 9px;
    border: 3px solid var(--navy)
}

.signs {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px
}

.sign {
    position: relative;
    width: min(420px, 84%);
    padding: 24px 30px;
    border: 3px solid var(--navy);
    color: var(--navy);
    text-decoration: none;
    transition: transform .2s;
    background: var(--sun)
}

.sign:hover {
    transform: scale(1.04)
}

.sign h3 {
    font-size: 1.3rem
}

.sign p {
    font-weight: 600;
    font-size: .92rem;
    margin-top: 4px;
    opacity: .85
}

.sign .arr {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Lilita One', cursive;
    font-size: 1.2rem
}

.sign.left {
    align-self: flex-start;
    border-radius: 14px;
    padding-right: 56px
}

.sign.right {
    align-self: flex-end;
    border-radius: 14px;
    padding-left: 56px;
    text-align: right
}

.sign.c2 {
    background: var(--pink);
    color: #fff
}

.sign.c3 {
    background: var(--mint)
}

.sign.c4 {
    background: var(--coral);
    color: #fff
}

@media(max-width:680px) {
    .pole {
        left: 14px
    }

    .sign,
    .sign.right {
        align-self: flex-start;
        width: calc(100% - 50px);
        margin-left: 42px;
        text-align: left;
        clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 50%, calc(100% - 30px) 100%, 0 100%);
        border-radius: 14px 0 0 14px;
        padding: 20px 50px 20px 22px
    }
}

.section-stats {
    background-color: var(--sun);
}

.grid-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    margin-top: 2rem;
    gap: 1rem;
}

.value-stats {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.2;
}

.label-stats {
    font-weight: 500;
}

@media(max-width:680px) {
    .grid-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:500px) {
    .grid-stats {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }
}

.media-boxes {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.media-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: center;
}

.media-box.reverse .media-box-image {
    order: 2;
}

.media-box img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 1.25rem;
    border: 3px solid var(--navy);
}

.media-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
}

.media-box h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.media-box p {
    margin: 0 0 1rem;
}

.media-box ul {
    list-style-type: none;
    margin: 0 0 1rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

@media(max-width:860px) {
    .media-box {
        grid-template-columns: repeat(1, 1fr);
    }

    .media-box img {
        aspect-ratio: 4/2;
    }

    .media-box.reverse .media-box-image {
        order: 0;
    }
}

.section-testimonials {
    background-color: var(--pink);
    color: #fff;
}

/* ============ STICKER STEPS (unique) ============ */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-top: 54px
}

.step {
    background: #fff;
    border: 3px solid var(--navy);
    border-radius: var(--r);
    padding: 34px 28px;
    text-align: center;
    position: relative;
    box-shadow: 7px 7px 0 rgba(23, 58, 107, .14);
    transition: transform .2s
}

.step:hover {
    transform: translateY(-6px)
}

.step .num {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%) rotate(-6deg);
    background: var(--pink);
    color: #fff;
    font-family: 'Lilita One', cursive;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 3px solid var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem
}

.step:nth-child(2) .num {
    background: var(--sun);
    color: var(--navy);
    transform: translateX(-50%) rotate(5deg)
}

.step:nth-child(3) .num {
    background: var(--mint);
    color: var(--navy);
    transform: translateX(-50%) rotate(-4deg)
}

.step .ic {
    margin: 8px auto 18px;
    width: 74px;
    height: 74px
}

.step h3 {
    font-size: 1.25rem;
    margin-bottom: 8px
}

.step p {
    font-weight: 500;
    font-size: .94rem;
    color: #27518C
}

@media(max-width:860px) {
    .steps {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin-left: auto;
        margin-right: auto
    }
}

/* ============ SAFETY ============ */
.safe-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px
}

.safe {
    background: #fff;
    border: 3px solid var(--navy);
    border-radius: var(--r);
    padding: 30px 28px;
    box-shadow: 6px 6px 0 rgba(23, 58, 107, .12);
    color: #27518C;
}

.safe .flag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--sky-2);
    border: 3px solid var(--navy);
    margin-bottom: 16px
}

.safe .flag svg {
    width: 24px;
    height: 24px;
    stroke: var(--navy)
}

.safe h3 {
    font-size: 1.15rem;
    margin-bottom: 8px
}

.safe p {
    font-size: .93rem;
    font-weight: 500;
    color: #27518C
}

.safe div {
    margin-top: .75rem;
    font-weight: bold;
}

.eeat {
    margin-top: 28px;
    text-align: center;
    font-weight: 600;
    font-size: .9rem;
    color: #27518C
}

.eeat b {
    color: var(--pink)
}

@media(max-width:860px) {
    .safe-grid {
        grid-template-columns: 1fr
    }
}

/* ============ FAQ ============ */
.faq {
    max-width: 800px;
    margin: 50px auto 0
}

details {
    background: #fff;
    border: 3px solid var(--navy);
    border-radius: 18px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 5px 5px 0 rgba(23, 58, 107, .12)
}

summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 22px 26px;
    font-family: 'Lilita One', cursive;
    font-size: 1.08rem;
    min-height: 48px
}

summary::-webkit-details-marker {
    display: none
}

summary::after {
    content: "+";
    color: var(--pink);
    font-family: 'Lilita One', cursive;
    font-size: 1.6rem;
    transition: transform .25s
}

details[open] summary::after {
    transform: rotate(45deg)
}

details .ans {
    padding: 0 26px 24px;
    font-weight: 500;
    color: #27518C;
    font-size: .96rem;
    max-width: 660px
}

.updated {
    text-align: center;
    margin-top: 26px;
    font-size: .78rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 800;
    color: #27518C;
    opacity: .7
}

/* ============ FINAL ============ */
.final-card {
    background: var(--sun);
    border: 3px solid var(--navy);
    border-radius: 34px;
    padding: 74px 8%;
    text-align: center;
    box-shadow: 10px 10px 0 rgba(23, 58, 107, .18);
    position: relative;
    overflow: visible
}

.final-card h2 {
    font-size: clamp(2.2rem, 5vw, 3.6rem)
}

.final-card p {
    font-weight: 700;
    margin: 12px 0 26px;
    color: #5C4A12
}

.final-card .phone-pop {
    color: var(--navy);
    text-shadow: 2.5px 2.5px 0 #fff;
    display: block;
    margin: 0 0 24px
}

.final-stick {
    position: absolute;
    animation: bob 5s ease-in-out infinite
}

.fs-a {
    top: -36px;
    left: 6%;
    --rot: -8deg
}

.fs-b {
    bottom: -30px;
    right: 7%;
    --rot: 9deg;
    animation-delay: 1.4s
}

footer {
    padding: 50px 0 44px;
    font-size: .88rem;
    font-weight: 600;
    color: #27518C
}

.foot {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap
}

.foot a {
    margin-left: 18px;
    text-decoration: none
}

.foot a:hover {
    color: var(--pink)
}

.legal {
    margin-top: 12px;
    font-size: .78rem;
    opacity: .7
}

.sec-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto
}

.sec-head h2 {
    font-size: clamp(2rem, 4.4vw, 3.2rem);
}

.sec-head p {
    font-weight: 500;
    margin-top: 14px;
    font-size: 1.05rem
}