:root {
    --cream: #FCF7F2;
    --cream2: #FBEEE6;
    --peach: #FCE3D7;
    --ink: #2A2622;
    --body: #736A61;
    --faint: #A89E94;
    --coral: #E8795E;
    --coral-d: #D2624A;
    --coral-soft: #FBE5DD;
    --night: #1E1B33;
    --night2: #272343;
    --star: #FFE6A8;
    --line: #EFE6DD;
    --card: #FFFFFF;
    --ease: cubic-bezier(.22, .61, .36, 1);
    --maxw: 1140px;
    --disp: "Fraunces", serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%
}

body {
    background: var(--cream);
    color: var(--ink);
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

img,
svg {
    max-width: 100%;
    display: block
}

a {
    color: inherit;
    text-decoration: none
}

button {
    font-family: inherit
}

::selection {
    background: var(--coral);
    color: #fff
}

.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 26px
}

h1,
h2,
h3 {
    font-family: var(--disp);
    font-weight: 600;
    letter-spacing: -.01em;
    line-height: 1.16;
    color: var(--ink)
}

.uline {
    position: relative;
    display: inline-block
}

.uline::after {
    content: "";
    position: absolute;
    left: 6%;
    right: 6%;
    bottom: -12px;
    height: 3px;
    border-radius: 3px;
    background: var(--coral)
}

/* buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 15px;
    padding: 15px 28px;
    border-radius: 100px;
    border: none;
    background: var(--ink);
    color: #fff;
    cursor: pointer;
    transition: .3s var(--ease)
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px -14px rgba(42, 38, 34, .5)
}

.btn.coral {
    background: var(--coral)
}

.btn.coral:hover {
    background: var(--coral-d);
    box-shadow: 0 16px 30px -14px rgba(232, 121, 94, .6)
}

.btn.ghost {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--line)
}

.btn.ghost:hover {
    border-color: var(--ink);
    box-shadow: none
}

.btn.lite {
    background: #fff;
    color: var(--ink);
    border: 1.5px solid var(--line)
}

.btn.lite:hover {
    border-color: var(--coral);
    color: var(--coral)
}

/* reveal */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .8s var(--ease), transform .8s 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
}

/* nav */
nav {
    position: sticky;
    top: 14px;
    z-index: 1000;
    padding: 0 16px
}

.nav-in {
    max-width: var(--maxw);
    margin: 0 auto;
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(14px);
    border: 1px solid var(--line);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 9px 9px 9px 22px;
    box-shadow: 0 14px 36px -22px rgba(42, 38, 34, .3)
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--disp);
    font-weight: 600;
    font-size: 19px
}

.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;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--body)
}

.nav-links a:hover {
    color: var(--coral)
}

.nav-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    padding: 11px 22px;
    border-radius: 100px;
    background: var(--ink);
    color: #fff;
    transition: .3s
}

.nav-call:hover {
    background: var(--coral)
}

/* ===== HERO ===== */
.hero {
    position: relative;
    padding: 74px 0 80px;
    text-align: center;
    overflow: hidden;
    background: radial-gradient(70% 60% at 50% 0%, var(--peach), var(--cream) 64%)
}

.hero .cloud {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    opacity: .5;
    filter: blur(2px)
}

.hero .moon {
    position: absolute;
    top: 50px;
    right: 8%;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: radial-gradient(circle at 36% 32%, #FFF4D6, #FBD98A);
    box-shadow: 0 0 50px rgba(251, 217, 138, .7)
}

.hero .moon::after {
    content: "";
    position: absolute;
    top: 8px;
    right: 10px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: radial-gradient(circle at 36% 32%, var(--peach), var(--cream));
}

.hero h1 {
    font-size: clamp(34px, 5.6vw, 62px);
    max-width: 840px;
    margin: 0 auto;
    position: relative;
    z-index: 2
}

.hero h1 em {
    font-style: italic;
    color: var(--coral)
}

.hero .sub {
    color: var(--body);
    max-width: 560px;
    margin: 20px auto 0;
    font-size: 17px;
    position: relative;
    z-index: 2
}

.hero .btns {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
    position: relative;
    z-index: 2
}

.hero .numline {
    margin-top: 16px;
    font-size: 14.5px;
    color: var(--body);
    position: relative;
    z-index: 2
}

.hero .numline a {
    color: var(--coral);
    font-weight: 700
}

.hero .numline a:hover {
    text-decoration: underline;
    text-underline-offset: 3px
}

/* fanned voice cards */
.fan {
    position: relative;
    z-index: 2;
    margin-top: 54px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: -10px
}

.vcard {
    width: 182px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 14px;
    box-shadow: 0 24px 50px -26px rgba(42, 38, 34, .32);
    flex-shrink: 0
}

.vcard:nth-child(1) {
    transform: rotate(-11deg) translateY(28px);
    margin-right: -30px;
    z-index: 1
}

.vcard:nth-child(2) {
    transform: rotate(-5deg) translateY(8px);
    margin-right: -26px;
    z-index: 2
}

.vcard:nth-child(3) {
    transform: scale(1.08);
    z-index: 5
}

.vcard:nth-child(4) {
    transform: rotate(5deg) translateY(8px);
    margin-left: -26px;
    z-index: 2
}

.vcard:nth-child(5) {
    transform: rotate(11deg) translateY(28px);
    margin-left: -30px;
    z-index: 1
}

.vcard .av {
    height: 118px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center
}

.vcard:nth-child(1) .av {
    background: linear-gradient(145deg, #FBD3A8, #E8795E)
}

.vcard:nth-child(2) .av {
    background: linear-gradient(145deg, #C9D8FF, #8A91E8)
}

.vcard:nth-child(3) .av {
    background: linear-gradient(145deg, #FBC9D6, #E8795E)
}

.vcard:nth-child(4) .av {
    background: linear-gradient(145deg, #C7ECDD, #5FB7A0)
}

.vcard:nth-child(5) .av {
    background: linear-gradient(145deg, #E6D2FB, #A77FE0)
}

.vcard .av .wv {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 40px
}

.vcard .av .wv i {
    width: 4px;
    border-radius: 3px;
    background: rgba(255, 255, 255, .92);
    animation: wv 1.4s ease-in-out infinite
}

@keyframes wv {

    0%,
    100% {
        height: 8px
    }

    50% {
        height: var(--h, 30px)
    }
}

.vcard .live {
    position: absolute;
    top: 9px;
    left: 9px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(0, 0, 0, .34);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 100px
}

.vcard .live i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #5FE3A0;
    box-shadow: 0 0 0 0 rgba(95, 227, 160, .7);
    animation: pulse 2s infinite
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(95, 227, 160, .7)
    }

    70% {
        box-shadow: 0 0 0 7px rgba(95, 227, 160, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(95, 227, 160, 0)
    }
}

.vcard .nm {
    font-weight: 700;
    font-size: 14.5px;
    margin-top: 11px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.vcard .nm .pct {
    color: var(--coral);
    font-size: 12px;
    font-weight: 700
}

.vcard .loc {
    font-size: 12px;
    color: var(--faint);
    margin-top: 1px
}

.vcard .tags {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    margin-top: 9px
}

.vcard .tags span {
    font-size: 10.5px;
    font-weight: 600;
    color: var(--body);
    background: var(--cream2);
    border-radius: 100px;
    padding: 3px 9px
}

@media(max-width:820px) {
    .fan {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 30px 20px;
        scroll-snap-type: x mandatory;
        gap: 14px
    }

    .vcard {
        scroll-snap-align: center
    }

    .vcard:nth-child(n) {
        transform: none;
        margin: 0
    }
}

/* ===== section scaffold ===== */
.sec {
    padding: 96px 0
}

.sec-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px
}

.sec-head .ek {
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--coral)
}

.sec-head h2 {
    font-size: clamp(28px, 4vw, 44px);
    margin-top: 14px
}

.sec-head h2 em {
    font-style: italic;
    color: var(--coral)
}

.sec-head p {
    color: var(--body);
    margin-top: 16px
}

/* ===== PRICING ===== */
.pricing {
    background: linear-gradient(180deg, #fff, var(--cream))
}

.tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    align-items: start
}

.tier {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 32px 30px;
    box-shadow: 0 22px 46px -30px rgba(42, 38, 34, .3);
    position: relative
}

.tier.pop {
    border: 2px solid var(--coral);
    background: linear-gradient(180deg, var(--coral-soft), #fff 32%);
    box-shadow: 0 30px 60px -28px rgba(232, 121, 94, .45);
    transform: translateY(-8px)
}

.tier .badge {
    position: absolute;
    top: 18px;
    right: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--body);
    background: var(--cream2);
    border-radius: 100px;
    padding: 4px 12px
}

.tier.pop .badge {
    background: var(--coral);
    color: #fff
}

.tier .tname {
    font-family: var(--disp);
    font-weight: 600;
    font-size: 21px
}

.tier .price {
    font-family: var(--disp);
    font-weight: 700;
    font-size: 40px;
    color: var(--coral);
    margin-top: 8px;
    line-height: 1
}

.tier .price small {
    font-family: "Inter";
    font-size: 14px;
    font-weight: 600;
    color: var(--faint)
}

.tier .pdesc {
    font-size: 13.5px;
    color: var(--body);
    margin-top: 8px;
    min-height: 40px
}

.tier .wyg {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--ink);
    margin: 20px 0 12px
}

.tier ul {
    list-style: none;
    display: grid;
    gap: 11px
}

.tier li {
    display: flex;
    gap: 11px;
    font-size: 14px;
    color: var(--body);
    align-items: flex-start
}

.tier li .ck {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--coral-soft);
    color: var(--coral);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    margin-top: 2px
}

.tier li .ck svg {
    width: 11px;
    height: 11px
}

.tier .btn {
    margin-top: 24px;
    width: 100%;
    justify-content: center
}

.pricing .pnote {
    text-align: center;
    margin-top: 28px;
    font-size: 13px;
    color: var(--faint)
}

.pricing .pnote b {
    color: var(--coral)
}

/* ===== NIGHT HOURS (dark band) ===== */
.night {
    position: relative;
    background: linear-gradient(180deg, var(--night), var(--night2));
    color: #fff;
    padding: 96px 0;
    overflow: hidden
}

.night .stars {
    position: absolute;
    inset: 0;
    pointer-events: none
}

.night .stars span {
    position: absolute;
    border-radius: 50%;
    background: var(--star);
    animation: tw 3s ease-in-out infinite
}

@keyframes tw {

    0%,
    100% {
        opacity: .25
    }

    50% {
        opacity: 1
    }
}

.night .sec-head h2 {
    color: #fff
}

.night .sec-head h2 em {
    color: var(--coral)
}

.night .sec-head p {
    color: rgba(255, 255, 255, .7)
}

.night .sec-head .ek {
    color: var(--star)
}

.hours {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2
}

.hourc {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 20px;
    padding: 28px 24px;
    transition: .35s var(--ease)
}

.hourc:hover {
    background: rgba(255, 255, 255, .09);
    transform: translateY(-5px)
}

.hourc .ph {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    background: rgba(255, 230, 168, .14);
    color: var(--star)
}

.hourc .ph svg {
    width: 24px;
    height: 24px
}

.hourc .tm {
    font-family: var(--disp);
    font-weight: 600;
    font-size: 24px;
    color: var(--star)
}

.hourc h4 {
    font-size: 16px;
    font-weight: 600;
    margin-top: 6px;
    color: #fff;
    font-family: "Inter"
}

.hourc p {
    font-size: 13.5px;
    color: rgba(255, 255, 255, .66);
    margin-top: 8px
}

/* ===== ENERGY METERS ===== */
.energy-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 60px;
    align-items: center
}

.energy-grid h2 {
    font-size: clamp(26px, 3.6vw, 40px)
}

.energy-grid h2 em {
    font-style: italic;
    color: var(--coral)
}

.energy-grid .sub {
    color: var(--body);
    margin-top: 16px;
    max-width: 420px
}

.energy-grid .btn {
    margin-top: 26px
}

.meters {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 36px 34px;
    box-shadow: 0 24px 50px -30px rgba(42, 38, 34, .3)
}

.mrow {
    margin-bottom: 24px
}

.mrow:last-child {
    margin-bottom: 0
}

.mrow .mh {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 9px
}

.mrow .mh .v {
    color: var(--coral)
}

.mtrack {
    height: 9px;
    border-radius: 100px;
    background: var(--cream2);
    overflow: hidden
}

.mfill {
    height: 100%;
    border-radius: 100px;
    background: linear-gradient(90deg, #F3A98E, var(--coral));
    width: 0;
    transition: width 1.3s var(--ease)
}

.meters .mfoot {
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    display: flex;
    align-items: center;
    gap: 14px
}

.meters .mfoot .dotrow {
    display: flex
}

.meters .mfoot .dotrow i {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2.5px solid #fff;
    margin-left: -10px;
    display: block
}

.meters .mfoot .dotrow i:first-child {
    margin-left: 0
}

.meters .mfoot .dotrow i:nth-child(1) {
    background: linear-gradient(145deg, #FBD3A8, #E8795E)
}

.meters .mfoot .dotrow i:nth-child(2) {
    background: linear-gradient(145deg, #C9D8FF, #8A91E8)
}

.meters .mfoot .dotrow i:nth-child(3) {
    background: linear-gradient(145deg, #C7ECDD, #5FB7A0)
}

.meters .mfoot .dotrow i:nth-child(4) {
    background: linear-gradient(145deg, #E6D2FB, #A77FE0)
}

.meters .mfoot span {
    font-size: 13px;
    color: var(--body);
    font-weight: 500
}

.meters .mfoot b {
    color: var(--ink)
}

/* ===== JOURNEY ===== */
.journey {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

.jcard {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 30px 26px;
    transition: .35s var(--ease)
}

.jcard:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 48px -28px rgba(42, 38, 34, .3)
}

.jcard .jn {
    font-family: var(--disp);
    font-weight: 600;
    font-size: 15px;
    color: var(--coral);
    background: var(--coral-soft);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin-bottom: 18px
}

.jcard h4 {
    font-size: 18px;
    font-weight: 600
}

.jcard p {
    font-size: 14px;
    color: var(--body);
    margin-top: 8px
}

.jcard .ji {
    margin-top: 18px;
    color: var(--coral)
}

.jcard .ji svg {
    width: 30px;
    height: 30px
}

/* ===== TESTIMONIALS ===== */
.testi {
    background: var(--cream2)
}

.tgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.tcard {
    background: #fff;
    border-radius: 20px;
    padding: 30px 28px;
    box-shadow: 0 20px 44px -30px rgba(42, 38, 34, .3)
}

.tcard .stars {
    color: var(--coral);
    letter-spacing: 2px;
    font-size: 14px
}

.tcard p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--ink);
    margin: 14px 0 20px
}

.tcard .who {
    display: flex;
    align-items: center;
    gap: 12px
}

.tcard .who .av {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0
}

.tcard:nth-child(1) .av {
    background: linear-gradient(145deg, #FBD3A8, #E8795E)
}

.tcard:nth-child(2) .av {
    background: linear-gradient(145deg, #C9D8FF, #8A91E8)
}

.tcard:nth-child(3) .av {
    background: linear-gradient(145deg, #C7ECDD, #5FB7A0)
}

.tcard .who .nm {
    font-family: var(--disp);
    font-style: italic;
    font-weight: 600;
    font-size: 16px
}

.tcard .who .nm small {
    display: block;
    font-family: "Inter";
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    color: var(--faint)
}

.tnote {
    text-align: center;
    margin-top: 26px;
    font-size: 12.5px;
    color: var(--faint)
}

/* ===== HOUSE RULES ===== */
.rules-in {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 40px 44px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
    max-width: 980px;
    margin: 0 auto;
    box-shadow: 0 22px 46px -32px rgba(42, 38, 34, .3)
}

.moon-badge {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--night);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden
}

.moon-badge .b {
    font-family: var(--disp);
    font-weight: 700;
    font-size: 34px;
    color: var(--star);
    position: relative;
    z-index: 2
}

.moon-badge small {
    position: absolute;
    bottom: 24px;
    font-size: 8.5px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .7);
    z-index: 2
}

.moon-badge .s {
    position: absolute;
    border-radius: 50%;
    background: var(--star);
    opacity: .8
}

.rules-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px
}

.rules-list h4 {
    font-size: 15.5px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 9px
}

.rules-list h4 .d {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--coral)
}

.rules-list p {
    font-size: 13.5px;
    color: var(--body);
    margin-top: 5px
}

/* ===== FAQ ===== */
.fwrap {
    max-width: 760px;
    margin: 0 auto
}

.fi {
    border: 1px solid var(--line);
    border-radius: 16px;
    margin-bottom: 14px;
    overflow: hidden;
    background: #fff;
    transition: .3s
}

.fi.open {
    border-color: var(--coral-soft);
    box-shadow: 0 18px 40px -30px rgba(232, 121, 94, .5)
}

.fq {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 22px 26px;
    font-family: var(--disp);
    font-weight: 600;
    font-size: 17.5px;
    color: var(--ink)
}

.fq .pm {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--coral-soft);
    color: var(--coral);
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
    transition: transform .3s var(--ease)
}

.fi.open .pm {
    transform: rotate(45deg);
    background: var(--coral);
    color: #fff
}

.fa {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s var(--ease)
}

.fa p {
    padding: 0 26px 24px;
    font-size: 14.5px;
    color: var(--body)
}

/* ===== CLOSE ===== */
.close {
    position: relative;
    background: linear-gradient(180deg, var(--night), var(--night2));
    color: #fff;
    padding: 100px 0;
    text-align: center;
    overflow: hidden
}

.close .stars span {
    position: absolute;
    border-radius: 50%;
    background: var(--star);
    animation: tw 3s ease-in-out infinite
}

.close h2 {
    font-size: clamp(34px, 5.4vw, 62px);
    color: #fff;
    position: relative;
    z-index: 2
}

.close h2 em {
    font-style: italic;
    color: var(--coral)
}

.close .sub {
    color: rgba(255, 255, 255, .72);
    max-width: 480px;
    margin: 16px auto 0;
    position: relative;
    z-index: 2
}

.close .num {
    display: inline-block;
    font-family: var(--disp);
    font-weight: 700;
    font-size: clamp(26px, 4vw, 40px);
    color: var(--star);
    margin: 24px 0 6px;
    position: relative;
    z-index: 2
}

.close .num:hover {
    color: #fff
}

.close .ops {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 18px;
    position: relative;
    z-index: 2
}

.close .ops .btn.lite {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, .3)
}

.close .ops .btn.lite:hover {
    border-color: var(--coral);
    color: var(--coral)
}

/* ===== FOOTER ===== */
footer {
    background: var(--night);
    color: rgba(255, 255, 255, .72);
    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: 600;
    color: #fff
}

.f-bot .age span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--coral);
    display: grid;
    place-items: center;
    font-size: 10.5px;
    font-weight: 700;
    color: #fff
}

/* 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: #fff;
    border: 1px solid var(--line);
    border-radius: 100px;
    padding: 9px 9px 9px 20px;
    box-shadow: 0 18px 40px -16px rgba(42, 38, 34, .4);
    transform: translateY(150%);
    transition: transform .45s var(--ease)
}

.callbar.show {
    transform: none
}

.callbar .txt {
    font-size: 12.5px;
    font-weight: 700;
    line-height: 1.25
}

.callbar .txt small {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: var(--body)
}

.callbar .btn {
    padding: 11px 22px;
    font-size: 13.5px
}

@media(max-width:940px) {
    .nav-links {
        display: none
    }

    .tiers,
    .hours,
    .journey,
    .tgrid,
    .rules-list {
        grid-template-columns: 1fr
    }

    .tier.pop {
        transform: none
    }

    .energy-grid {
        grid-template-columns: 1fr;
        gap: 36px
    }

    .hours {
        grid-template-columns: 1fr 1fr
    }

    .rules-in {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center
    }

    .callbar {
        display: flex
    }
}

@media(max-width:580px) {
    .wrap {
        padding: 0 20px
    }

    .sec {
        padding: 68px 0
    }

    .hours {
        grid-template-columns: 1fr
    }
}

@media(prefers-reduced-motion:reduce) {
    * {
        animation: none !important;
        transition: none !important
    }

    .reveal {
        opacity: 1;
        transform: none
    }

    .mfill {
        transition: none
    }
}