:root {
    --cream: #FFFBF5;
    --sand: #FFF3E6;
    --peach: #FFD9BE;
    --coral: #E85D4A;
    --coral-deep: #C84432;
    --gold: #F2A23C;
    --rose: #F6C4B5;
    --ink: #46241E;
    --ink-soft: #7A4F44;
    --white: #FFFFFF;
    --shadow: 0 18px 44px -18px rgba(110, 46, 28, .22);
    --radius: 26px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

@media (prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important
    }
}

body {
    font-family: 'Nunito Sans', sans-serif;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.65;
    font-size: 16.5px;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Fraunces', serif;
    font-weight: 560;
    line-height: 1.12;
    letter-spacing: -.01em
}

img,
svg {
    display: block;
    max-width: 100%
}

a {
    color: inherit
}

.wrap {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--coral);
}

.eyebrow::before {
    content: "";
    width: 26px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px
}

.section {
    padding: 96px 0
}

.center {
    text-align: center
}

.lead {
    color: var(--ink-soft);
    max-width: 860px
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal.in {
    opacity: 1;
    transform: none
}

/* ---------- NAV ---------- */
.nav-shell {
    position: fixed;
    top: 14px;
    left: 0;
    right: 0;
    z-index: 90;
    padding: 0 18px
}

.nav {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    background: rgba(255, 251, 245, .78);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(232, 93, 74, .14);
    border-radius: 999px;
    padding: 10px 12px 10px 22px;
    box-shadow: 0 10px 30px -16px rgba(110, 46, 28, .25);
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: 'Fraunces', serif;
    font-size: 21px;
    font-weight: 640
}

.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: 14.5px;
    color: var(--ink-soft);
    padding: 10px 2px;
    transition: color .2s
}

.nav-links a:hover {
    color: var(--coral)
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--coral), var(--coral-deep));
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 15.5px;
    padding: 14px 26px;
    border-radius: 999px;
    min-height: 48px;
    box-shadow: 0 12px 26px -10px rgba(200, 68, 50, .55);
    transition: transform .2s ease, box-shadow .2s ease;
    cursor: pointer;
    border: none;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px -10px rgba(200, 68, 50, .6)
}

.btn:focus-visible,
a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px
}

.btn.ghost {
    background: transparent;
    color: var(--coral-deep);
    box-shadow: none;
    border: 2px solid rgba(232, 93, 74, .4)
}

.btn.ghost:hover {
    background: rgba(232, 93, 74, .08)
}

.btn.big {
    font-size: 18px;
    padding: 18px 34px
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    padding: 158px 0 0;
    background:
        radial-gradient(1100px 540px at 78% -8%, rgba(255, 196, 150, .55), transparent 64%),
        radial-gradient(800px 460px at 8% 12%, rgba(246, 196, 181, .5), transparent 60%),
        linear-gradient(180deg, #FFF4E4 0%, var(--cream) 86%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 54px;
    align-items: center;
    padding-bottom: 64px
}

.hero h1 {
    font-size: clamp(40px, 5.4vw, 66px);
    margin: 18px 0 20px
}

.hero h1 em {
    font-style: italic;
    font-weight: 460;
    color: var(--coral)
}

.hero p.lead {
    font-size: 19px;
    margin-bottom: 30px
}

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center
}

.hero-note {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
    font-size: 14px;
    font-weight: 700;
    color: var(--ink-soft)
}

.hero-note svg {
    width: 18px;
    height: 18px;
    flex: none
}

.hero-art {
    position: relative
}

.sun-scene {
    position: relative;
    border-radius: 4rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 8px solid #fff;
}

.sun-scene img {
    display: block;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.float-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(232, 93, 74, .18);
    border-radius: 18px;
    padding: 12px 16px;
    font-size: 13.5px;
    font-weight: 800;
    box-shadow: 0 12px 28px -12px rgba(110, 46, 28, .3);
    animation: floaty 5.5s ease-in-out infinite;
}

.float-badge svg {
    width: 26px;
    height: 26px;
    flex: none
}

.float-badge small {
    display: block;
    font-weight: 600;
    color: var(--ink-soft);
    font-size: 11.5px
}

.fb-1 {
    top: 8%;
    left: -7%
}

.fb-2 {
    bottom: 14%;
    right: -6%;
    animation-delay: 1.6s
}

.fb-3 {
    bottom: -4%;
    left: 12%;
    animation-delay: .8s
}

@keyframes floaty {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

.hero-wave {
    display: block;
    width: 100%;
    margin-top: -2px
}

/* ---------- TRUST STRIP ---------- */
.trust {
    background: linear-gradient(120deg, #FFF0DF, #FFE3D2);
    border-radius: var(--radius);
    padding: 30px 26px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 2rem;
    position: relative;
    z-index: 5;
    box-shadow: var(--shadow);
    border: 1px solid rgba(242, 162, 60, .25);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px
}

.trust-item svg {
    width: 40px;
    height: 40px;
    flex: none
}

.trust-item b {
    font-family: 'Fraunces', serif;
    font-size: 24px;
    display: block;
    line-height: 1.1
}

.trust-item span {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink-soft)
}

/* ---------- ROMANTIC FEATURE CARDS ---------- */
.feel-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 50px;
    padding: 0 1.5rem;
}

.feel-card {
    position: relative;
    background: #fff;
    border-radius: var(--radius);
    padding: 36px 30px 32px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(246, 196, 181, .5);
    overflow: hidden;
    transition: transform .25s ease;
}

.feel-card:hover {
    transform: translateY(-6px)
}

.feel-card::after {
    content: "";
    position: absolute;
    top: -46px;
    right: -46px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 217, 190, .9), rgba(255, 217, 190, 0) 70%);
}

.feel-card .icon {
    width: 62px;
    height: 62px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #FFE7D3, #FFD2BC);
}

.feel-card .icon svg {
    width: 32px;
    height: 32px
}

.feel-card h3 {
    font-size: 23px;
    margin-bottom: 10px
}

.feel-card p {
    color: var(--ink-soft);
    font-size: 15.5px
}

/* ---------- HOW IT WORKS ---------- */
.steps-band {
    background:
        radial-gradient(800px 400px at 90% 0%, rgba(246, 196, 181, .35), transparent 60%),
        linear-gradient(180deg, #FFF6EB, #FFEFE0);
    border-radius: 48px;
    padding: 84px 0;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 54px;
    position: relative
}

.steps::before {
    content: "";
    position: absolute;
    top: 42px;
    left: 11%;
    right: 11%;
    height: 0;
    border-top: 3px dashed rgba(232, 93, 74, .35);
}

.step {
    position: relative;
    text-align: center;
    padding: 0 8px
}

.step .dot {
    width: 84px;
    height: 84px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #fff;
    display: grid;
    place-items: center;
    box-shadow: 0 12px 26px -12px rgba(110, 46, 28, .3);
    border: 2px solid rgba(242, 162, 60, .4);
    position: relative;
    z-index: 2;
}

.step .dot svg {
    width: 40px;
    height: 40px
}

.step h3 {
    font-size: 19px;
    margin-bottom: 8px
}

.step p {
    font-size: 14.5px;
    color: var(--ink-soft)
}

.step .num {
    position: absolute;
    top: -8px;
    left: calc(50% + 22px);
    z-index: 3;
    background: var(--coral);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 3px solid #FFF6EB;
}

/* ---------- NEIGHBORHOODS ---------- */
.hoods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 52px;
    padding: 0 1.5rem;
}

.hood {
    background: #fff;
    border-radius: 22px;
    padding: 26px 24px;
    border: 1px solid rgba(246, 196, 181, .55);
    box-shadow: 0 12px 30px -18px rgba(110, 46, 28, .2);
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: transform .22s ease, border-color .22s ease;
}

.hood:hover {
    transform: translateY(-4px);
    border-color: rgba(232, 93, 74, .45)
}

.hood .h-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    flex: none;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #FFEBD8, #FFDCC6)
}

.hood .h-icon svg {
    width: 28px;
    height: 28px
}

.hood h3 {
    font-size: 18.5px;
    margin-bottom: 5px
}

.hood p {
    font-size: 14px;
    color: var(--ink-soft)
}

.hood .tag {
    display: inline-block;
    margin-top: 10px;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--coral-deep);
    background: rgba(232, 93, 74, .1);
    padding: 5px 11px;
    border-radius: 999px
}

/* ---------- SAFETY ---------- */
.safety-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 60px;
    align-items: start
}

.safety-grid.second {
    margin-top: 3rem;
}

.safety-art {
    background: linear-gradient(160deg, #FFE9D6, #FFD8C4);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
}

.safety-art img {
    display: block;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 1rem;
}

.safe-list {
    list-style: none;
    margin-top: 20px;
    display: grid;
    gap: 12px;
    margin-bottom: 20px;
}

.safe-list li {
    display: flex;
    gap: 16px;
    align-items: center;
    line-height: 1.3;
}

.safe-list .check {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    flex: none;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--gold), #E08B22);
    margin-top: 2px;
}

.safe-list .check svg {
    width: 18px;
    height: 18px
}

.safe-list b {
    display: block;
    font-size: 1.125rem
}

.safe-list p {
    color: var(--ink-soft)
}

@media(min-width:981px) {
    .safety-grid.second .safety-art{
        order: 2;
    }
}

/* ---------- FAQ ---------- */
.faq {
    max-width: 780px;
    margin: 50px auto 0;
    display: grid;
    gap: 14px;
    padding: 0 1.5rem;
}

.faq-item {
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(246, 196, 181, .55);
    box-shadow: 0 10px 26px -18px rgba(110, 46, 28, .2);
    overflow: hidden
}

.faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Fraunces', serif;
    font-size: 18.5px;
    font-weight: 560;
    color: var(--ink);
    padding: 22px 26px;
    min-height: 48px;
}

.faq-q .chev {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    flex: none;
    display: grid;
    place-items: center;
    background: var(--sand);
    transition: transform .3s ease
}

.faq-q .chev svg {
    width: 14px;
    height: 14px
}

.faq-item.open .chev {
    transform: rotate(180deg)
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease
}

.faq-a p {
    padding: 0 26px 24px;
    color: var(--ink-soft);
    font-size: 15.5px
}

/* ---------- FINAL CTA ---------- */
.cta-panel {
    position: relative;
    overflow: hidden;
    border-radius: 36px;
    background: linear-gradient(135deg, #FF9D6E 0%, var(--coral) 52%, var(--coral-deep) 100%);
    color: #fff;
    padding: 78px 30px;
    text-align: center;
    box-shadow: 0 30px 60px -28px rgba(200, 68, 50, .6);
}

.cta-panel h2 {
    font-size: clamp(32px, 4.4vw, 52px);
    margin-bottom: 14px
}

.cta-panel p {
    opacity: .92;
    max-width: 520px;
    margin: 0 auto 30px;
    font-size: 17.5px
}

.cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    color: var(--coral-deep);
    text-decoration: none;
    font-family: 'Fraunces', serif;
    font-size: clamp(24px, 3.4vw, 34px);
    font-weight: 640;
    padding: 18px 38px;
    border-radius: 999px;
    box-shadow: 0 18px 38px -14px rgba(70, 20, 10, .5);
    transition: transform .2s ease;
}

.cta-phone:hover {
    transform: translateY(-3px) scale(1.02)
}

.cta-phone svg {
    width: 30px;
    height: 30px
}

.cta-sub {
    margin-top: 18px;
    font-size: 13.5px;
    font-weight: 700;
    opacity: .85
}

.cta-deco {
    position: absolute;
    pointer-events: none
}

/* ---------- FOOTER ---------- */
footer {
    padding: 0 0 40px;
    color: var(--ink-soft);
    font-size: 14px
}

.foot-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    align-items: flex-start
}

.foot-links {
    display: flex;
    gap: 24px;
    list-style: none;
    flex-wrap: wrap
}

.foot-links a {
    text-decoration: none;
    font-weight: 700
}

.foot-links a:hover {
    color: var(--coral)
}

.foot-fine {
    margin-top: 34px;
    padding-top: 24px;
    border-top: 1px solid rgba(122, 79, 68, .18);
    font-size: 12.5px;
    line-height: 1.7
}

/* ---------- RESPONSIVE ---------- */
@media(max-width:980px) {
    .section {
        padding: 72px 0
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 44px
    }

    .trust {
        grid-template-columns: repeat(2, 1fr)
    }

    .feel-grid {
        grid-template-columns: repeat(2, 1fr);
        margin-left: auto;
        margin-right: auto
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 34px
    }

    .steps::before {
        display: none
    }

    .hoods {
        grid-template-columns: repeat(2, 1fr)
    }

    .safety-grid {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .safety-art img{
        aspect-ratio: 4/2;
    }
}

@media(max-width:680px) {
    .nav-links {
        display: none
    }

    .hero {
        padding-top: 120px
    }

    .hero h1 {
        font-size: clamp(34px, 9vw, 44px)
    }

    .feel-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .trust {
        grid-template-columns: 1fr 1fr;
        padding: 24px 18px;
        gap: 16px
    }

    .trust-item b {
        font-size: 20px
    }

    .steps {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin-left: auto;
        margin-right: auto
    }

    .hoods {
        grid-template-columns: 1fr
    }

    .fb-1 {
        left: 2%
    }

    .fb-2 {
        right: 2%
    }

    .cta-panel {
        padding: 60px 20px;
        border-radius: 28px
    }
}