:root {
    --lilac: #F3EEFB;
    --lilac2: #EFE7FA;
    --navy: #211D54;
    --navy-d: #181542;
    --pink: #FF3EB8;
    --pink-d: #E62CA3;
    --violet: #7C5CE0;
    --violet-soft: #EFE9FD;
    --ink: #211D54;
    --body: #5B5878;
    --faint: #9B98B5;
    --line: #E9E3F6;
    --ease: cubic-bezier(.22, .61, .36, 1);
    --maxw: 1150px;
    --disp: "Fraunces", serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%
}

body {
    background: #fff;
    color: var(--ink);
    font-family: "DM Sans", sans-serif;
    font-size: 16.5px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

img {
    max-width: 100%;
    display: block
}

a {
    color: inherit;
    text-decoration: none
}

button {
    font-family: inherit
}

::selection {
    background: var(--pink);
    color: #fff
}

.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 26px
}

h1,
h2,
h3 {
    font-family: var(--disp);
    color: var(--navy)
}

.pinkw {
    position: relative;
    white-space: nowrap
}

.pinkw svg {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -7px;
    width: 100%;
    height: 10px
}

/* buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-weight: 700;
    font-size: 15.5px;
    padding: 15px 28px;
    border-radius: 10px;
    border: none;
    background: var(--pink);
    color: #fff;
    cursor: pointer;
    transition: .35s var(--ease);
    box-shadow: 0 14px 28px -12px rgba(255, 62, 184, .55)
}

.btn:hover {
    transform: translateY(-2px);
    background: var(--pink-d);
    box-shadow: 0 18px 34px -12px rgba(255, 62, 184, .6)
}

.btn svg {
    width: 15px;
    height: 15px
}

.btn-navy {
    background: var(--navy);
    box-shadow: 0 14px 28px -12px rgba(33, 29, 84, .5)
}

.btn-navy:hover {
    background: var(--navy-d);
    box-shadow: 0 18px 34px -12px rgba(33, 29, 84, .55)
}

.btn-line {
    background: #fff;
    color: var(--navy);
    border: 1.5px solid var(--line);
    box-shadow: none
}

.btn-line:hover {
    border-color: var(--navy);
    background: #fff
}

/* nav */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: .35s var(--ease);
    background: var(--lilac)
}

nav.scrolled {
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(14px);
    box-shadow: 0 8px 30px -18px rgba(33, 29, 84, .25)
}

.nav-in {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 74px
}

.logo {
    font-family: var(--disp);
    font-weight: 800;
    font-size: 21px;
    letter-spacing: -.01em
}

.brand,
.logo{
    display: flex;
    align-items: center;
    gap: .25rem;
}
.brand img,
.logo img{
    display: block;
    width: 54px;
    height: auto;
}
.nav-links {
    display: flex;
    gap: 28px;
    font-size: 15px;
    font-weight: 600;
    color: var(--ink)
}

.nav-links a {
    transition: color .3s
}

.nav-links a:hover {
    color: var(--pink)
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 18px
}

.nav-num {
    font-weight: 700;
    font-size: 15px
}

.nav-num:hover {
    color: var(--pink)
}

.nav-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 14.5px;
    padding: 11px 20px;
    border-radius: 9px;
    background: var(--navy);
    color: #fff;
    transition: .3s var(--ease)
}

.nav-call:hover {
    background: var(--pink)
}

/* ===== HERO ===== */
.hero {
    background: var(--lilac);
    padding: 150px 0 80px;
    position: relative;
    overflow: hidden
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: 30px;
    align-items: center
}

.hero h1 {
    font-weight: 900;
    font-size: clamp(40px, 5.6vw, 66px);
    line-height: 1.06;
    letter-spacing: -.02em
}

.hero .sub {
    margin-top: 18px;
    margin-bottom: 18px;
    font-size: 17.5px;
    color: var(--body);
    max-width: 460px
}

/* number bar - mimics theme's email signup */
.numbar {
    display: flex;
    gap: 10px;
    margin-top: 28px;
    max-width: 470px
}

.numbar .field {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 11px;
    background: #fff;
    border: 1.5px solid var(--line);
    border-radius: 10px;
    padding: 0 18px;
    font-weight: 700;
    font-size: 17px;
    color: var(--navy);
    box-shadow: 0 12px 30px -18px rgba(33, 29, 84, .25)
}

.numbar .field small {
    font-weight: 500;
    font-size: 12px;
    color: var(--faint);
    letter-spacing: .04em
}

.numbar .field svg {
    width: 16px;
    height: 16px;
    color: var(--pink);
    flex-shrink: 0
}

.numbar .btn {
    border-radius: 10px;
    padding: 15px 24px
}

.hero .alt {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.hero .alt span{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: #fff;
    border: 1.5px solid var(--line);
    border-radius: 10px;
    padding: 12px;
    font-weight: 600;
    font-size: 13.5px;
    color: var(--ink);
    transition: .3s
}

.hero .fine {
    margin-top: 18px;
    font-size: 12.5px;
    color: var(--faint)
}

.hero .fine b {
    color: var(--body)
}

/* doodle stage */
.doodle-stage {
    position: relative;
    display: flex;
    justify-content: center
}

.doodle-stage svg.main {
    width: min(460px, 100%);
    height: auto
}

.bob {
    animation: bob 5s ease-in-out infinite
}

@keyframes bob {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-9px)
    }
}

.spinz {
    transform-origin: center;
    animation: spinz 14s linear infinite
}

@keyframes spinz {
    to {
        transform: rotate(360deg)
    }
}

/* reveal */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .85s var(--ease), transform .85s var(--ease)
}

.reveal.in {
    opacity: 1;
    transform: none
}

[data-d="1"] {
    transition-delay: .08s
}

[data-d="2"] {
    transition-delay: .16s
}

[data-d="3"] {
    transition-delay: .24s
}

/* ===== rooms row ===== */
.rooms {
    padding: 84px 0 70px
}

.rooms-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 34px
}

.rooms-head h2 {
    font-weight: 800;
    font-size: clamp(26px, 3.4vw, 38px)
}

.rooms-head a {
    font-weight: 700;
    font-size: 14.5px;
    color: var(--pink);
    display: inline-flex;
    align-items: center;
    gap: 7px
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px
}

.room {
    border: 1.5px solid var(--line);
    border-radius: 18px;
    padding: 14px 14px 18px;
    text-align: center;
    transition: .35s var(--ease);
    background: #fff
}

.room:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 44px -22px rgba(33, 29, 84, .3);
    border-color: transparent
}

.room .tile {
    height: 96px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 34px;
    margin-bottom: 14px
}

.room:nth-child(1) .tile {
    background: linear-gradient(135deg, #FFE3F4, #EFE3FF)
}

.room:nth-child(2) .tile {
    background: linear-gradient(135deg, #E3ECFF, #E9FFF4)
}

.room:nth-child(3) .tile {
    background: linear-gradient(135deg, #FFF1DC, #FFE3EC)
}

.room:nth-child(4) .tile {
    background: linear-gradient(135deg, #E9E3FF, #DFF3FF)
}

.room:nth-child(5) .tile {
    background: linear-gradient(135deg, #E3FFEF, #FFF6DC)
}

.room h4 {
    font-family: var(--disp);
    font-weight: 700;
    font-size: 16.5px;
    line-height: 1.25;
    color: var(--navy)
}

.room .meta {
    margin-top: 8px;
    font-size: 12px;
    color: var(--faint);
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center
}

.room .meta .lv {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #35CE8D
}

/* ===== navy trust strip ===== */
.strip {
    background: var(--navy);
    padding: 34px 0;
    position: relative;
    margin-top: 20px
}

.strip .tab {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--pink);
    color: #fff;
    font-weight: 700;
    font-size: 12.5px;
    padding: 6px 16px;
    border-radius: 7px;
    letter-spacing: .03em
}

.strip-in {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 26px;
    flex-wrap: wrap
}

.strip .mark {
    font-family: var(--disp);
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    opacity: .9;
    display: inline-flex;
    align-items: center;
    gap: 9px
}

.strip .mark svg {
    width: 17px;
    height: 17px;
    color: var(--pink)
}

/* ===== split: whenever free ===== */
.whenever {
    padding: 100px 0
}

.sp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center
}

.sp-grid h2 {
    font-weight: 800;
    font-size: clamp(30px, 4.2vw, 46px);
    line-height: 1.08;
    letter-spacing: -.015em
}

.sp-grid .sub {
    margin-top: 16px;
    color: var(--body);
    max-width: 440px
}

.checks {
    margin-top: 26px;
    display: grid;
    gap: 12px;
    max-width: 460px
}

.check {
    display: flex;
    align-items: center;
    gap: 13px;
    background: var(--violet-soft);
    border-radius: 12px;
    padding: 14px 18px;
    font-weight: 600;
    font-size: 15px;
    color: var(--navy)
}

.check .ck {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #35CE8D;
    color: #fff;
    display: grid;
    place-items: center;
    flex-shrink: 0
}

.check .ck svg {
    width: 12px;
    height: 12px
}

.check .stepn {
    font-family: var(--disp);
    font-weight: 800;
    color: var(--violet);
    margin-right: 2px
}

.sp-grid .btn {
    margin-top: 26px
}

/* phone doodle mockup */
.mockzone {
    position: relative;
    display: flex;
    justify-content: center
}

.mock {
    width: 280px;
    background: var(--navy);
    border-radius: 36px;
    padding: 12px;
    box-shadow: 0 40px 80px -32px rgba(33, 29, 84, .55);
    position: relative;
    z-index: 2
}

.mock .scr {
    background: #fff;
    border-radius: 26px;
    padding: 22px 16px;
    min-height: 430px
}

.mock .mh {
    text-align: center;
    font-family: var(--disp);
    font-weight: 800;
    font-size: 15px;
    color: var(--navy)
}

.mock .ms {
    text-align: center;
    font-size: 11.5px;
    color: var(--faint);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 2px
}

.mock .ms .lv {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #35CE8D
}

.vmsg {
    display: flex;
    gap: 10px;
    align-items: center;
    background: var(--lilac);
    border-radius: 14px;
    padding: 12px;
    margin-top: 14px
}

.vmsg.me {
    background: var(--violet-soft);
    flex-direction: row-reverse
}

.vmsg .pp {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    flex-shrink: 0
}

.vmsg:nth-child(odd) .pp {
    background: linear-gradient(135deg, #FFB1DD, #7C5CE0)
}

.vmsg.me .pp {
    background: linear-gradient(135deg, #7C5CE0, #3EC8FF)
}

.vmsg .wv {
    display: flex;
    align-items: center;
    gap: 2.5px;
    height: 18px;
    flex: 1
}

.vmsg .wv i {
    width: 3px;
    border-radius: 3px;
    background: var(--violet);
    animation: wv 1.4s ease-in-out infinite
}

.vmsg.me .wv i {
    background: var(--pink)
}

@keyframes wv {

    0%,
    100% {
        height: 6px
    }

    50% {
        height: var(--h, 15px)
    }
}

.vmsg .t {
    font-size: 11px;
    color: var(--faint);
    font-weight: 600
}

.mock .interest {
    margin-top: 18px
}

.mock .interest .il {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--faint);
    margin-bottom: 9px
}

.mock .chips {
    display: flex;
    flex-wrap: wrap;
    gap: 7px
}

.mock .chip {
    font-size: 12px;
    font-weight: 600;
    padding: 7px 13px;
    border-radius: 100px;
    border: 1.5px solid var(--line);
    color: var(--body)
}

.mock .chip.on {
    background: var(--pink);
    border-color: var(--pink);
    color: #fff
}

.mock .callb {
    margin-top: 18px;
    width: 100%;
    border: none;
    border-radius: 100px;
    background: var(--navy);
    color: #fff;
    font-weight: 700;
    font-size: 13.5px;
    padding: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px
}

.leaper {
    position: absolute;
    left: -40px;
    top: -26px;
    width: 170px;
    z-index: 3
}

/* ===== why we're here ===== */
.whywe {
    padding: 30px 0 100px
}

.ww-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center
}

.ww-photo {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 34px 70px -30px rgba(33, 29, 84, .4);
    position: relative
}

.ww-photo img {
    width: 100%;
    height: 420px;
    object-fit: cover
}

.ww-photo .dood {
    position: absolute;
    bottom: -26px;
    right: -22px;
    width: 120px
}

.ww-grid h2 {
    font-weight: 800;
    font-size: clamp(30px, 4.2vw, 46px)
}

.ww-grid .sub {
    margin-top: 16px;
    color: var(--body);
    max-width: 440px
}

.bigstats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 34px
}

.bgs .n {
    font-family: var(--disp);
    font-weight: 900;
    font-size: clamp(38px, 4.6vw, 56px);
    color: var(--pink);
    line-height: 1
}

.bgs .n .count {
    font-variant-numeric: tabular-nums
}

.bgs .l {
    font-size: 14px;
    color: var(--body);
    font-weight: 600;
    margin-top: 6px
}

.ww-grid .btn {
    margin-top: 30px
}

/* ===== same thing: features ===== */
.same {
    padding: 0 0 100px
}

.same-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 60px;
    align-items: center
}

.same h2 {
    font-weight: 800;
    font-size: clamp(30px, 4.2vw, 46px);
    line-height: 1.08
}

.feats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 36px;
    margin-top: 34px
}

.feat .fic {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--violet-soft);
    display: grid;
    place-items: center;
    color: var(--violet);
    margin-bottom: 14px
}

.feat .fic svg {
    width: 22px;
    height: 22px
}

.feat h4 {
    font-family: var(--disp);
    font-weight: 700;
    font-size: 18px;
    color: var(--navy)
}

.feat p {
    font-size: 14px;
    color: var(--body);
    margin-top: 6px
}

.bub-stack {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    padding-left: 30px
}

.bbl {
    background: #fff;
    border: 1.5px solid var(--line);
    border-radius: 100px;
    padding: 13px 22px;
    font-weight: 700;
    font-size: 14.5px;
    color: var(--navy);
    box-shadow: 0 16px 36px -20px rgba(33, 29, 84, .3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    animation: bob 5s ease-in-out infinite
}

.bbl:nth-child(2) {
    margin-left: 34px;
    animation-delay: -1.6s
}

.bbl:nth-child(3) {
    margin-left: 8px;
    animation-delay: -3.2s
}

.bbl .ic {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 12px
}

.bbl:nth-child(1) .ic {
    background: var(--pink)
}

.bbl:nth-child(2) .ic {
    background: var(--violet)
}

.bbl:nth-child(3) .ic {
    background: #35CE8D
}

.loafer {
    margin-top: 8px;
    width: 230px;
    align-self: flex-end
}

/* ===== navy: across newark ===== */
.areas {
    background: var(--navy);
    padding: 96px 0;
    color: #fff
}

.areas h2 {
    color: #fff;
    text-align: center;
    font-weight: 800;
    font-size: clamp(30px, 4.4vw, 48px)
}

.chips-c {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 11px;
    margin: 34px auto 0;
    max-width: 820px
}

.chipc {
    font-size: 13.5px;
    font-weight: 600;
    padding: 10px 19px;
    border-radius: 100px;
    border: 1.5px solid rgba(255, 255, 255, .25);
    color: rgba(255, 255, 255, .92);
    transition: .3s;
    cursor: default
}

.chipc:hover {
    background: var(--pink);
    border-color: var(--pink)
}

.wm {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 52px
}

.wm-card {
    background: #fff;
    border-radius: 22px;
    padding: 40px 36px;
    color: var(--ink);
    position: relative;
    overflow: hidden
}

.wm-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px
}

.wm-card.her::before {
    background: linear-gradient(90deg, var(--pink), #FFB1DD)
}

.wm-card.him::before {
    background: linear-gradient(90deg, var(--violet), #3EC8FF)
}

.wm-card .pk {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase
}

.wm-card.her .pk {
    color: var(--pink)
}

.wm-card.him .pk {
    color: var(--violet)
}

.wm-card h3 {
    font-weight: 800;
    font-size: clamp(24px, 2.6vw, 32px);
    line-height: 1.1;
    margin: 12px 0 20px
}

.wm-card ul {
    list-style: none
}

.wm-card li {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: var(--body);
    align-items: flex-start;
    border-bottom: 1px solid var(--line)
}

.wm-card li:last-child {
    border: none
}

.wm-card li b {
    color: var(--navy);
    font-weight: 700
}

.wm-card li .ck {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
    display: grid;
    place-items: center;
    color: #fff
}

.wm-card.her li .ck {
    background: var(--pink)
}

.wm-card.him li .ck {
    background: var(--violet)
}

.wm-card li .ck svg {
    width: 11px;
    height: 11px
}

.wm-card .btn {
    margin-top: 22px;
    width: 100%
}

/* ===== why 4-up ===== */
.why4 {
    padding: 100px 0 90px;
    text-align: center
}

.why4 h2 {
    font-weight: 800;
    font-size: clamp(28px, 3.8vw, 42px)
}

.w4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px
}

.w4i .ic {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--violet-soft);
    display: grid;
    place-items: center;
    color: var(--violet);
    margin: 0 auto 16px
}

.w4i .ic svg {
    width: 25px;
    height: 25px
}

.w4i h4 {
    font-family: var(--disp);
    font-weight: 700;
    font-size: 18px;
    color: var(--navy)
}

.w4i p {
    font-size: 14px;
    color: var(--body);
    margin-top: 7px;
    max-width: 230px;
    margin-left: auto;
    margin-right: auto
}

/* ===== safety bar ===== */
.safe {
    padding: 0 0 90px
}

.safe-in {
    background: var(--lilac);
    border-radius: 24px;
    padding: 42px 46px;
    display: flex;
    align-items: center;
    gap: 38px;
    flex-wrap: wrap
}

.s18 {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    display: grid;
    place-items: center;
    text-align: center;
    flex-shrink: 0;
    box-shadow: 0 18px 38px -16px rgba(33, 29, 84, .5)
}

.s18 .n {
    font-family: var(--disp);
    font-weight: 900;
    font-size: 30px;
    line-height: 1
}

.s18 small {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    opacity: .85
}

.safe-cols {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    min-width: 300px
}

.safe-cols h4 {
    font-family: var(--disp);
    font-weight: 700;
    font-size: 16.5px;
    color: var(--navy)
}

.safe-cols p {
    font-size: 13.5px;
    color: var(--body);
    margin-top: 4px
}

/* ===== FAQ ===== */
.faq {
    padding: 80px 0 100px
}

.faq-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 36px
}

.faq-head h2 {
    font-weight: 800;
    font-size: clamp(30px, 4.2vw, 46px)
}

.faq-head p {
    font-size: 14px;
    color: var(--faint);
    max-width: 300px
}

.fi {
    border-radius: 16px;
    background: #F7F5FC;
    margin-bottom: 14px;
    overflow: hidden;
    transition: background .35s
}

.fi.open {
    background: var(--violet);
    color: #fff
}

.fq {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    font-family: var(--disp);
    font-weight: 700;
    font-size: clamp(17px, 2vw, 20px);
    color: var(--navy)
}

.fi.open .fq {
    color: #fff
}

.fq .arr {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    color: var(--navy);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    transition: transform .4s var(--ease)
}

.fi.open .arr {
    transform: rotate(45deg);
    color: var(--violet)
}

.fq .arr svg {
    width: 15px;
    height: 15px
}

.fa {
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s var(--ease)
}

.fa p {
    padding: 0 28px 26px;
    font-size: 15px;
    color: var(--body)
}

.fi.open .fa p {
    color: rgba(255, 255, 255, .92)
}

.faq-more {
    text-align: center;
    margin-top: 34px
}

.faq-more h4 {
    font-family: var(--disp);
    font-weight: 800;
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 14px
}

/* ===== navy quote ===== */
.quote {
    background: var(--navy);
    padding: 90px 0;
    text-align: center;
    position: relative;
    overflow: hidden
}

.quote .grid-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 60px 60px
}

.quote .pp {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, #FFB1DD, #7C5CE0);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, .15);
    position: relative
}

.quote .who {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .7);
    position: relative
}

.quote blockquote {
    font-family: var(--disp);
    font-weight: 600;
    font-style: italic;
    font-size: clamp(20px, 2.8vw, 28px);
    line-height: 1.5;
    color: #fff;
    max-width: 760px;
    margin: 18px auto 0;
    position: relative
}

.quote .qm {
    font-family: var(--disp);
    font-size: 80px;
    line-height: 0;
    color: var(--pink);
    display: block;
    margin-top: 48px
}

.quote .note {
    position: relative;
    margin-top: 30px;
    font-size: 12px;
    color: rgba(255, 255, 255, .5)
}

/* ===== get started ===== */
.getstarted {
    padding: 110px 0;
    background: #F7F5FC;
    text-align: center;
    position: relative;
    overflow: hidden
}

.getstarted h2 {
    font-weight: 900;
    font-size: clamp(34px, 5vw, 58px)
}

.getstarted .sub {
    color: var(--body);
    max-width: 440px;
    margin: 14px auto 0
}

.getstarted .numbar {
    margin: 30px auto 0;
    justify-content: center
}

.getstarted .fine {
    margin-top: 16px;
    font-size: 12.5px;
    color: var(--faint)
}

.float-d {
    position: absolute;
    animation: bob 6s ease-in-out infinite
}

/* footer */
footer {
    background: var(--navy);
    color: #fff;
    padding: 30px 0;
}

.f-bot {
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, .55)
}

.f-bot .age {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-weight: 700;
    color: #fff
}

.f-bot .age span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--pink);
    display: grid;
    place-items: center;
    font-size: 11px;
    font-weight: 800
}

/* sticky mobile call bar */
.callbar {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 1500;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: var(--navy);
    border-radius: 16px;
    padding: 12px 13px 12px 19px;
    box-shadow: 0 24px 50px -16px rgba(20, 16, 60, .6);
    transform: translateY(140%);
    transition: transform .5s var(--ease)
}

.callbar.show {
    transform: none
}

.callbar .txt {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3
}

.callbar .txt small {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, .6)
}

.callbar a {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--pink);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 22px;
    border-radius: 10px
}

.callbar a svg {
    width: 14px;
    height: 14px
}

@media(max-width:960px) {

    .nav-links,
    .nav-num {
        display: none
    }

    .hero-grid,
    .sp-grid,
    .ww-grid,
    .same-grid,
    .wm {
        grid-template-columns: 1fr
    }

    .rooms-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .w4 {
        grid-template-columns: 1fr 1fr
    }

    .safe-cols {
        grid-template-columns: 1fr
    }

    .doodle-stage {
        order: -1
    }

    .doodle-stage svg.main {
        width: min(360px, 90%)
    }

    .leaper {
        left: -10px
    }

    .callbar {
        display: flex
    }
}

@media(max-width:580px) {
    .wrap {
        padding: 0 20px
    }

    .rooms-grid {
        grid-template-columns: 1fr 1fr
    }

    .w4 {
        grid-template-columns: 1fr
    }

    .numbar {
        flex-direction: column
    }

    .numbar .field {
        padding: 14px 18px
    }

    .bigstats {
        gap: 34px
    }

    .safe-in {
        padding: 32px 26px
    }

    .hero {
        padding: 130px 0 60px
    }
}

@media(prefers-reduced-motion:reduce) {
    * {
        animation: none !important;
        transition: none !important
    }

    .reveal {
        opacity: 1;
        transform: none
    }
}

:root {
    --sc-ink: #1C2430 !important;
    --sc-cream: #FFF7E8 !important;
    --sc-paper: #FFFCF5 !important;
    --sc-rose: #F45D7A !important;
    --sc-orange: #FF9A47 !important;
    --sc-teal: #1CB6A7 !important;
    --sc-blue: #2D70F3 !important;
    --sc-line: #1C2430 !important;
    --sc-soft: #6B6472 !important;
}

html,
body {
    background: var(--sc-cream) !important;
    color: var(--sc-ink) !important;
}

body {
    background-image:
        radial-gradient(circle at 12% 8%, rgba(244, 93, 122, .16), transparent 28%),
        radial-gradient(circle at 88% 18%, rgba(45, 112, 243, .14), transparent 30%),
        linear-gradient(rgba(28, 36, 48, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(28, 36, 48, .035) 1px, transparent 1px) !important;
    background-size: auto, auto, 42px 42px, 42px 42px !important;
}

.wrap {
    max-width: 1180px !important;
}

h1,
h2,
h3 {
    font-family: "Fraunces", serif !important;
    color: var(--sc-ink) !important;
}

nav {
    background: transparent !important;
    top: 18px !important;
    left: 0 !important;
    right: 0 !important;
}

.nav-in {
    height: 68px !important;
    background: rgba(255, 252, 245, .78) !important;
    border: 2px solid var(--sc-line) !important;
    border-radius: 0 26px 0 26px !important;
    padding: 0 18px !important;
    box-shadow: 8px 8px 0 rgba(28, 36, 48, .12) !important;
    backdrop-filter: blur(14px) !important;
}

.logo {
    font-family: "Fraunces", serif !important;
    font-weight: 900 !important;
    color: var(--sc-ink) !important;
}

.logo .bird {
    filter: drop-shadow(3px 3px 0 rgba(244, 93, 122, .25)) !important;
}

.nav-links a {
    color: var(--sc-ink) !important;
    font-weight: 800 !important;
}

.nav-links a:hover {
    color: var(--sc-rose) !important;
}

.nav-call,
.btn {
    border-radius: 0 18px 0 18px !important;
    background: var(--sc-rose) !important;
    color: #fff !important;
    border: 2px solid var(--sc-line) !important;
    box-shadow: 6px 6px 0 var(--sc-ink) !important;
    transition: transform .25s ease, box-shadow .25s ease !important;
}

.nav-call:hover,
.btn:hover {
    transform: translate(3px, 3px) !important;
    box-shadow: 3px 3px 0 var(--sc-ink) !important;
    background: var(--sc-orange) !important;
}

.btn-navy {
    background: var(--sc-ink) !important;
}

.btn-line {
    background: var(--sc-paper) !important;
    color: var(--sc-ink) !important;
    border: 2px solid var(--sc-line) !important;
    box-shadow: 5px 5px 0 rgba(28, 36, 48, .13) !important;
}

.hero {
    padding: 150px 0 74px !important;
    background: transparent !important;
    overflow: hidden !important;
    position: relative !important;
}

.hero::before {
    content: "";
    position: absolute;
    left: 26px;
    right: 26px;
    top: 112px;
    bottom: 22px;
    border: 2px solid var(--sc-line);
    border-radius: 36px;
    background: linear-gradient(135deg, rgba(255, 255, 255, .52), rgba(255, 247, 232, .78));
    box-shadow: 14px 14px 0 rgba(28, 36, 48, .08);
    z-index: 0;
}

.hero::after {
    content: "";
    position: absolute;
    right: -90px;
    top: 150px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, var(--sc-teal) 0 4px, transparent 5px);
    background-size: 24px 24px;
    opacity: .28;
    transform: rotate(-12deg);
    z-index: 0;
}

.hero-grid {
    position: relative;
    z-index: 1;
    gap: 54px !important;
}

.hero h1 {
    font-size: clamp(48px, 7vw, 86px) !important;
    line-height: .95 !important;
    letter-spacing: -.05em !important;
    max-width: 620px !important;
}

.hero .sub {
    font-size: 18px !important;
    color: var(--sc-soft) !important;
    max-width: 530px !important;
}

.numbar {
    max-width: 560px !important;
    background: #fff !important;
    border: 2px solid var(--sc-line) !important;
    border-radius: 0 24px 0 24px !important;
    padding: 8px !important;
    box-shadow: 9px 9px 0 rgba(28, 36, 48, .12) !important;
}

.numbar .field {
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    color: var(--sc-ink) !important;
}

.numbar .field svg {
    color: var(--sc-rose) !important;
}

.numbar .btn {
    border-radius: 0 16px 0 16px !important;
}

.hero .alt span{
    background: #fff !important;
    border: 2px dashed rgba(28, 36, 48, .28) !important;
    border-radius: 100px !important;
    color: var(--sc-ink) !important;
    font-weight: 800 !important;
}

.hero .fine,
.room .meta,
.faint,
.faq-head p {
    color: var(--sc-soft) !important;
}

.doodle-stage {
    background: rgba(255, 255, 255, .45) !important;
    border: 2px dashed rgba(28, 36, 48, .25) !important;
    border-radius: 46% 54% 41% 59%/55% 46% 54% 45% !important;
    min-height: 440px !important;
    align-items: center !important;
    box-shadow: inset 0 0 0 12px rgba(255, 255, 255, .35) !important;
}

.doodle-stage svg.main {
    filter: drop-shadow(9px 12px 0 rgba(28, 36, 48, .12)) !important;
}

.rooms {
    padding: 100px 0 80px !important;
}

.rooms-head {
    border-bottom: 2px solid var(--sc-line) !important;
    padding-bottom: 20px !important;
}

.rooms-head h2,
.sp-grid h2,
.ww-grid h2,
.same h2,
.areas h2,
.why4 h2,
.faq-head h2,
.getstarted h2 {
    font-size: clamp(34px, 4.8vw, 58px) !important;
    line-height: 1 !important;
    letter-spacing: -.035em !important;
}

.rooms-head a {
    color: var(--sc-rose) !important;
    font-weight: 900 !important;
}

.rooms-grid {
    gap: 18px !important;
}

.room {
    background: var(--sc-paper) !important;
    border: 2px solid var(--sc-line) !important;
    border-radius: 0 28px 0 28px !important;
    box-shadow: 8px 8px 0 rgba(28, 36, 48, .12) !important;
    transform: rotate(var(--rot, 0deg)) !important;
}

.room:nth-child(1) {
    --rot: -2deg
}

.room:nth-child(2) {
    --rot: 1.5deg
}

.room:nth-child(3) {
    --rot: -1deg
}

.room:nth-child(4) {
    --rot: 2deg
}

.room:nth-child(5) {
    --rot: -1.6deg
}

.room:hover {
    transform: translateY(-8px) rotate(0deg) !important;
    box-shadow: 12px 12px 0 rgba(28, 36, 48, .16) !important;
    border-color: var(--sc-line) !important;
}

.room .tile {
    border: 2px solid var(--sc-line) !important;
    border-radius: 0 18px 0 18px !important;
    background: linear-gradient(135deg, #FFE1A8, #FFD5DE) !important;
}

.room:nth-child(2) .tile {
    background: linear-gradient(135deg, #BDF2EA, #DDE8FF) !important
}

.room:nth-child(3) .tile {
    background: linear-gradient(135deg, #FFD3AA, #FFDCE9) !important
}

.room:nth-child(4) .tile {
    background: linear-gradient(135deg, #DEE4FF, #C7F4EA) !important
}

.room:nth-child(5) .tile {
    background: linear-gradient(135deg, #E7F8C7, #FFE7AC) !important
}

.strip {
    background: var(--sc-ink) !important;
    padding: 30px 0 !important;
    transform: rotate(-1deg) !important;
    margin: 42px -12px 20px !important;
    border-block: 2px solid var(--sc-line) !important;
}

.strip .tab {
    border: 2px solid var(--sc-line) !important;
    border-radius: 0 12px 0 12px !important;
    background: var(--sc-orange) !important;
    box-shadow: 5px 5px 0 rgba(0, 0, 0, .25) !important;
}

.strip .mark {
    font-family: "DM Sans", sans-serif !important;
    font-weight: 900 !important;
    color: #fff !important;
}

.strip .mark svg {
    color: var(--sc-orange) !important;
}

.whenever,
.whywe,
.same,
.areas,
.why4,
.safe,
.faq,
.quote,
.getstarted {
    background: transparent !important;
    position: relative !important;
}

.sp-grid,
.ww-grid,
.same-grid {
    background: rgba(255, 252, 245, .7) !important;
    border: 2px solid var(--sc-line) !important;
    border-radius: 34px !important;
    padding: 44px !important;
    box-shadow: 12px 12px 0 rgba(28, 36, 48, .1) !important;
}

.sp-grid .sub,
.ww-grid .sub,
.same .sub,
.feat p,
.w4i p,
.safe-cols p,
.getstarted .sub,
.f-brand p,
.f-bot {
    color: var(--sc-soft) !important;
}

.check {
    background: #fff !important;
    border: 2px solid var(--sc-line) !important;
    border-radius: 0 18px 0 18px !important;
    box-shadow: 6px 6px 0 rgba(28, 36, 48, .08) !important;
    color: var(--sc-ink) !important;
}

.check .ck,
.wm-card li .ck,
.w4i .ic,
.feat .fic {
    background: var(--sc-teal) !important;
    color: #fff !important;
    border: 2px solid var(--sc-line) !important;
}

.check .stepn {
    color: var(--sc-rose) !important;
}

.mock {
    background: var(--sc-ink) !important;
    border: 3px solid var(--sc-line) !important;
    border-radius: 22px !important;
    transform: rotate(4deg) !important;
    box-shadow: 12px 12px 0 rgba(28, 36, 48, .16) !important;
}

.mock .scr {
    border-radius: 16px !important;
    background: #FFFDF6 !important;
}

.vmsg,
.vmsg.me {
    background: #fff !important;
    border: 2px solid rgba(28, 36, 48, .12) !important;
}

.mock .callb {
    background: var(--sc-rose) !important;
    border: 2px solid var(--sc-line) !important;
}

.ww-photo {
    border: 2px solid var(--sc-line) !important;
    border-radius: 0 34px 0 34px !important;
    box-shadow: 12px 12px 0 rgba(28, 36, 48, .14) !important;
    transform: rotate(-2deg) !important;
}

.bgs .n {
    color: var(--sc-rose) !important;
}

.feats {
    gap: 20px !important;
}

.feat {
    background: #fff !important;
    border: 2px solid var(--sc-line) !important;
    border-radius: 0 24px 0 24px !important;
    padding: 24px !important;
    box-shadow: 7px 7px 0 rgba(28, 36, 48, .08) !important;
}

.bbl {
    border: 2px solid var(--sc-line) !important;
    border-radius: 0 22px 0 22px !important;
    box-shadow: 7px 7px 0 rgba(28, 36, 48, .12) !important;
    background: #fff !important;
}

.areas {
    background: var(--sc-ink) !important;
    color: #fff !important;
    padding: 108px 0 !important;
    clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%) !important;
}

.areas h2 {
    color: #fff !important;
}

.chipc {
    border: 2px solid rgba(255, 255, 255, .36) !important;
    border-radius: 0 16px 0 16px !important;
    color: #fff !important;
    background: rgba(255, 255, 255, .06) !important;
}

.chipc:hover {
    background: var(--sc-orange) !important;
    border-color: #fff !important;
}

.wm-card {
    border: 2px solid var(--sc-line) !important;
    border-radius: 0 32px 0 32px !important;
    box-shadow: 10px 10px 0 rgba(0, 0, 0, .22) !important;
}

.wm-card::before {
    height: 10px !important;
    background: var(--sc-rose) !important;
}

.wm-card.him::before {
    background: var(--sc-teal) !important;
}

.wm-card .pk,
.wm-card.her .pk {
    color: var(--sc-rose) !important;
}

.wm-card.him .pk {
    color: var(--sc-teal) !important;
}

.wm-card li b {
    color: var(--sc-ink) !important;
}

.w4i {
    background: rgba(255, 252, 245, .72) !important;
    border: 2px solid var(--sc-line) !important;
    border-radius: 0 26px 0 26px !important;
    padding: 28px 20px !important;
    box-shadow: 8px 8px 0 rgba(28, 36, 48, .08) !important;
}

.safe-in {
    background: #fff !important;
    border: 2px solid var(--sc-line) !important;
    border-radius: 0 32px 0 32px !important;
    box-shadow: 10px 10px 0 rgba(28, 36, 48, .11) !important;
}

.s18 {
    background: var(--sc-rose) !important;
    border: 2px solid var(--sc-line) !important;
    box-shadow: 6px 6px 0 rgba(28, 36, 48, .18) !important;
}

.fi {
    background: #fff !important;
    border: 2px solid var(--sc-line) !important;
    border-radius: 0 22px 0 22px !important;
    box-shadow: 6px 6px 0 rgba(28, 36, 48, .08) !important;
}

.fi.open {
    background: var(--sc-ink) !important;
    color: #fff !important;
}

.fq,
.safe-cols h4,
.w4i h4,
.feat h4 {
    color: var(--sc-ink) !important;
}

.fi.open .fq {
    color: #fff !important;
}

.fq .arr {
    border: 2px solid var(--sc-line) !important;
}

.quote {
    background: var(--sc-ink) !important;
}

.quote blockquote,
.quote .who {
    color: #fff !important;
}

.quote .qm {
    color: var(--sc-orange) !important;
}

.getstarted {
    background: linear-gradient(135deg, #FFEBC1, #FFE4EF 55%, #DDF7F3) !important;
    border-top: 2px solid var(--sc-line) !important;
    border-bottom: 2px solid var(--sc-line) !important;
}

footer {
    background: var(--sc-ink) !important;
    color: #fff !important;
}

.f-col h4,
.f-brand p,
.f-bot,
.femail {
    color: rgba(255, 255, 255, .62) !important;
}

.f-col a {
    color: rgba(255, 255, 255, .88) !important;
}

.f-col a:hover,
.f-brand .fnum:hover,
.f-brand .femail:hover {
    color: var(--sc-orange) !important;
}

.callbar {
    background: var(--sc-ink) !important;
    border: 2px solid #fff !important;
    border-radius: 0 22px 0 22px !important;
    box-shadow: 8px 8px 0 rgba(0, 0, 0, .25) !important;
}

.callbar a {
    background: var(--sc-orange) !important;
    border: 2px solid #fff !important;
    border-radius: 0 14px 0 14px !important;
}

.sc-art {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.sc-art svg {
    position: absolute;
    opacity: .5;
    filter: drop-shadow(7px 7px 0 rgba(28, 36, 48, .08));
}

.sc-art .a {
    width: 260px;
    right: -80px;
    top: 190px;
    animation: scBob 9s ease-in-out infinite;
}

.sc-art .b {
    width: 220px;
    left: -70px;
    top: 48%;
    animation: scBob 11s ease-in-out infinite reverse;
}

.sc-art .c {
    width: 340px;
    right: 12%;
    bottom: -120px;
    opacity: .24;
    animation: scRot 60s linear infinite;
}

@keyframes scBob {

    0%,
    100% {
        transform: translateY(0) rotate(-4deg)
    }

    50% {
        transform: translateY(-18px) rotate(4deg)
    }
}

@keyframes scRot {
    to {
        transform: rotate(360deg)
    }
}

@media(max-width:960px) {
    .nav-in {
        margin: 0 12px !important;
    }

    .sp-grid,
    .ww-grid,
    .same-grid {
        padding: 30px !important;
    }

    .hero::before {
        left: 12px !important;
        right: 12px !important;
    }

    .doodle-stage {
        min-height: 330px !important;
    }
}

@media(max-width:580px) {
    .numbar {
        padding: 10px !important;
    }

    .rooms-grid {
        grid-template-columns: 1fr !important;
    }

    .sp-grid,
    .ww-grid,
    .same-grid {
        border-radius: 24px !important;
    }
}
