:root {
    --ink: #402217;
    --clay: #b05a3c;
    --rose: #e88f7b;
    --sun: #ffd27a;
    --cream: #fff8ed;
    --mint: #d9f0de;
    --river: #8fcfd1;
    --paper: #fffaf3;
    --line: #ead9c7;
    --muted: #7d6658;
    --max: 1120px;
    --ease: cubic-bezier(.22, .61, .36, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Manrope, sans-serif;
    background: var(--paper);
    color: var(--ink);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

.wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 25px;
}

body:before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: .24;
    background-image: radial-gradient(var(--clay) .7px, transparent .7px);
    background-size: 18px 18px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--clay);
    color: #fff;
    border-radius: 999px;
    padding: 16px 28px;
    font-weight: 900;
    box-shadow: 0 20px 44px -20px rgba(176, 90, 60, .55);
    transition: .35s var(--ease);
}

.btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 54px -20px rgba(176, 90, 60, .68);
}

.btn.light {
    background: #fff;
    color: var(--clay);
    border: 1px solid var(--line);
    box-shadow: 0 20px 40px -26px rgba(64, 34, 23, .35);
}

nav {
    position: fixed;
    top: 18px;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-in {
    height: 68px;
    background: rgba(255, 250, 243, .76);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 999px;
    box-shadow: 0 18px 42px -28px rgba(64, 34, 23, .4);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px 0 22px;
}

.logo {
    font-family: Fraunces, serif;
    font-weight: 800;
    font-size: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo .mark {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sun), var(--rose));
    display: grid;
    place-items: center;
    color: var(--ink);
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .8);
}
.brand,
.logo{
    display: flex;
    align-items: center;
    gap: .25rem;
}
.brand img,
.logo img{
    display: block;
    width: 54px;
    height: auto;
}

.nav-links {
    display: flex;
    gap: 24px;
    font-weight: 800;
    font-size: 14px;
    color: #6b5144;
}

.nav-links a:hover {
    color: var(--clay);
}

.nav-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 19px;
    background: var(--ink);
    color: #fff;
    border-radius: 999px;
    font-weight: 900;
    font-size: 14px;
}

.hero {
    position: relative;
    padding: 152px 0 92px;
    overflow: hidden;
}

.sunrise {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 16%, rgba(255, 210, 122, .85), transparent 24%), linear-gradient(180deg, #fff3dc, #fffaf3 64%);
}

.p1 {
    left: 8%;
    top: 22%;
    animation-delay: -2s;
}

.p2 {
    left: 80%;
    top: 18%;
    animation-delay: -5s;
}

.p3 {
    left: 70%;
    top: 60%;
    animation-delay: -8s;
}


.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 52px;
    align-items: center;
}

.k {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--clay);
}

h1,
h2,
h3 {
    font-family: Fraunces, serif;
}

h1 {
    font-size: clamp(46px, 7vw, 68px);
    line-height: .98;
    letter-spacing: -.04em;
    margin: 18px 0;
    color: var(--ink);
}

h1 em {
    font-style: normal;
    color: var(--clay);
}

.hero p {
    font-size: 18px;
    color: #6e5649;
    max-width: 560px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.note {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--muted);
    margin-top: 18px;
}

.badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

.badges span {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 9px 13px;
    font-size: 13px;
    font-weight: 900;
    color: #684a3d;
}

.postcard {
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 34px;
    padding: 0;
    box-shadow: 0 40px 80px -48px rgba(64, 34, 23, .55);
    transform: rotate(2deg);
    overflow: hidden;
}

.postcard:before {
    content: "";
    position: absolute;
    inset: 13px;
    border: 1px dashed #e7cbbb;
    border-radius: 24px;
    pointer-events: none;
}

.postcard svg {
    width: 100%;
    height: auto;
    display: block;
}

.stamp {
    position: absolute;
    right: 34px;
    top: 30px;
    width: 72px;
    height: 88px;
    border: 2px dashed var(--rose);
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-family: Fraunces;
    font-weight: 800;
    color: var(--clay);
    transform: rotate(8deg);
    background: #fff8f2;
}

.message {
    position: absolute;
    left: 36px;
    bottom: 36px;
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(8px);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 14px 16px;
    font-weight: 900;
    color: var(--ink);
    box-shadow: 0 18px 38px -24px rgba(64, 34, 23, .45);
}

.message small {
    display: block;
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .12em;
}

section {
    padding: 94px 0;
}

.sec-head {
    max-width: 720px;
    margin-bottom: 42px;
}

.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

h2 {
    font-size: clamp(34px, 5vw, 60px);
    line-height: 1.02;
    letter-spacing: -.035em;
}

.lead {
    font-size: 17px;
    color: #6e5649;
    margin-top: 14px;
}

.story {
    background: #fff;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.letter {
    background: #fff7ed;
    border: 1px solid var(--line);
    border-radius: 30px;
    padding: 38px;
    position: relative;
    overflow: hidden;
}

.letter:before {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -80px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 210, 122, .35);
}

.letter p {
    font-size: 17px;
    color: #634b40;
}

.mini-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.stat {
    border-radius: 28px;
    padding: 28px;
    background: var(--mint);
    min-height: 150px;
    display: flex;
    align-items: center;
}

.stat:nth-child(2) {
    background: #fff0e7;
}

.stat:nth-child(3) {
    background: #e8f7f8;
}

.stat:nth-child(4) {
    background: #fff3c7;
}

.stat span {
    font-weight: 800;
    color: #6e5649;
    font-size: 24px;
}

.steps {
    background: #fff1e1;
}

.note-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.note-card {
    background: #fffdf8;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 28px;
    min-height: 230px;
    box-shadow: 0 20px 42px -32px rgba(64, 34, 23, .45);
    position: relative;
    transform: rotate(var(--r, 0deg));
    transition: .35s var(--ease);
}

.note-card:nth-child(1) {
    --r: -2deg;
}

.note-card:nth-child(2) {
    --r: 1.5deg;
}

.note-card:nth-child(3) {
    --r: -1deg;
}

.note-card:nth-child(4) {
    --r: 2deg;
}

.note-card:hover {
    transform: translateY(-8px) rotate(0deg);
}

.note-card .pin {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--rose);
    box-shadow: 0 0 0 6px rgba(232, 143, 123, .18);
    margin-bottom: 18px;
}

.note-card .num {
    font-family: Fraunces;
    font-size: 36px;
    color: var(--clay);
    font-weight: 800;
}

.note-card h3 {
    font-size: 22px;
    line-height: 1.05;
    margin: 8px 0;
}

.note-card p {
    font-size: 14.5px;
    color: #6e5649;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.why {
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 30px;
    padding: 34px;
    display: flex;
    gap: 20px;
}

.why .icon {
    width: 56px;
    height: 56px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--sun), #fff);
    display: grid;
    place-items: center;
    font-size: 26px;
    flex: none;
}

.why h3 {
    font-size: 24px;
    line-height: 1.05;
    margin-bottom: 8px;
}

.why p {
    color: #6e5649;
}

.map {
    background: var(--ink);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.map h2,
.map .lead {
    color: #fff;
}

.ribbon-river {
    max-width: 900px;
    margin: 38px auto 0;
    position: relative;
    padding: 40px 0;
}

.ribbon-river:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 8px;
    background: linear-gradient(90deg, var(--river), var(--sun), var(--rose));
    border-radius: 999px;
    transform: translateY(-50%);
}

.pins {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 12px;
    position: relative;
}

.pin-card {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 18px;
    padding: 16px 10px;
    text-align: center;
    font-weight: 900;
    font-size: 13px;
    backdrop-filter: blur(8px);
    transition: .3s;
}

.pin-card:hover {
    background: var(--sun);
    color: var(--ink);
    transform: translateY(-6px);
}

.gender {
    background: #fff;
}

.cards2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.gcard {
    background: #fff7ed;
    border: 1px solid var(--line);
    border-radius: 34px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.gcard.him {
    background: #eaf5f6;
}

.gcard:after {
    content: "";
    position: absolute;
    right: -70px;
    top: -70px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 210, 122, .35);
}

.gcard h3 {
    font-size: 36px;
    line-height: 1;
    margin: 12px 0 18px;
    position: relative;
}

.gcard ul {
    list-style: none;
    display: grid;
    gap: 12px;
    position: relative;
}

.gcard li {
    display: flex;
    gap: 12px;
    color: #624a40;
}

.ck {
    width: 23px;
    height: 23px;
    border-radius: 50%;
    background: var(--clay);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 13px;
    font-weight: 900;
    flex: none;
}

.safe {
    background: #fffaf3;
}

.quilt {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.patch {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 28px;
}

.patch:nth-child(2n) {
    background: #fff3e8;
}

.patch h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.patch p {
    color: #6e5649;
    font-size: 14.5px;
}

.faq {
    background: #fff;
}

.faq-list {
    max-width: 820px;
    margin: 0 auto;
}

.faq-item {
    background: #fff7ed;
    border: 1px solid var(--line);
    border-radius: 20px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-q {
    width: 100%;
    background: none;
    border: 0;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 24px;
    text-align: left;
    font-family: Fraunces;
    font-weight: 800;
    font-size: 20px;
    color: var(--ink);
    cursor: pointer;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: .45s var(--ease);
}

.faq-a p {
    padding: 0 24px 22px;
    color: #6e5649;
}

.faq-item.open .faq-a {
    max-height: 190px;
}

.final {
    background: linear-gradient(135deg, #fff1e0, #e8f7f8);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final:before {
    content: "♡";
    position: absolute;
    left: 8%;
    top: 18%;
    font-family: Fraunces;
    font-size: 120px;
    color: rgba(176, 90, 60, .09);
}

.final p {
    max-width: 570px;
    margin: 16px auto 28px;
    color: #6e5649;
}

footer {
    padding: 28px 0;
    background: var(--ink);
    color: #fff;
}
.copy {
    color: rgba(255, 255, 255, .48);
    font-size: 12px;
    text-align: center;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: .85s var(--ease);
}

.reveal.in {
    opacity: 1;
    transform: none;
}

@media(max-width: 900px) {
    .nav-links {
        display: none;
    }

    .hero-grid,
    .story-grid,
    .cards2 {
        grid-template-columns: 1fr;
    }

    .postcard {
        order: -1;
    }

    .note-grid,
    .quilt {
        grid-template-columns: 1fr 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .pins {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width: 560px) {
    .wrap {
        padding: 0 18px;
    }

    .nav-call {
        padding: 13px;
    }

    .hero {
        padding-top: 126px;
    }

    .note-grid,
    .quilt,
    .pins {
        grid-template-columns: 1fr;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .ribbon-river:before {
        display: none;
    }
}
