:root {
    --pink-1: #ff168f;
    --pink-2: #ff4fac;
    --pink-3: #ff86c7;
    --pink-4: #ffd1e8;
    --pink-5: #fff0f8;

    --purple: #8b5cf6;
    --violet: #6426c7;
    --peach: #ff9b7a;
    --red-pink: #e91668;

    --ink: #291526;
    --muted: #745d6d;
    --white: #ffffff;

    --shadow-soft: 0 20px 70px rgba(185, 32, 113, .12);
    --shadow-pink: 0 25px 80px rgba(255, 22, 143, .23);

    --radius-xl: 42px;
    --radius-lg: 30px;
    --radius-md: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;

    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    color: var(--ink);

    background:
        radial-gradient(
            circle at 8% 12%,
            rgba(255, 81, 172, .22),
            transparent 25%
        ),
        radial-gradient(
            circle at 91% 18%,
            rgba(139, 92, 246, .15),
            transparent 27%
        ),
        radial-gradient(
            circle at 45% 70%,
            rgba(255, 155, 122, .13),
            transparent 25%
        ),
        #fff8fc;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -2;

    background:
        linear-gradient(
            115deg,
            transparent 0%,
            rgba(255,255,255,.7) 45%,
            transparent 60%
        );

    background-size: 250% 250%;
    animation: backgroundSweep 18s ease-in-out infinite;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
}

.section-width {
    width: min(1180px, calc(100% - 36px));
    margin-inline: auto;
}

.floating-orb {
    position: fixed;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    filter: blur(50px);
    opacity: .16;
    pointer-events: none;
    z-index: -1;
}

.orb-one {
    top: 18%;
    left: -90px;
    background: #ff168f;
    animation: floatOne 12s ease-in-out infinite;
}

.orb-two {
    top: 55%;
    right: -100px;
    background: #8b5cf6;
    animation: floatTwo 15s ease-in-out infinite;
}

.orb-three {
    bottom: 5%;
    left: 35%;
    background: #ff9b7a;
    animation: floatThree 13s ease-in-out infinite;
}


/* HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;

    padding: 15px 18px;

    background: rgba(255, 248, 252, .78);
    border-bottom: 1px solid rgba(255, 255, 255, .8);

    backdrop-filter: blur(20px);
}

.nav-shell {
    width: min(1180px, 100%);
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: -.04em;
}

.brand > span:last-child {
    background: linear-gradient(90deg, var(--pink-1), var(--purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-heart {
    color: var(--pink-1);
    animation: heartbeat 2s ease-in-out infinite;
}

.nav-shell nav {
    display: flex;
    gap: 8px;
}

.nav-shell nav a {
    padding: 10px 15px;
    border-radius: 999px;

    color: var(--muted);
    font-size: .88rem;
    font-weight: 750;

    transition:
        color .25s ease,
        background .25s ease,
        transform .25s ease;
}

.nav-shell nav a:hover {
    color: var(--pink-1);
    background: rgba(255, 255, 255, .9);
    transform: translateY(-2px);
}


/* HERO */

.hero {
    position: relative;
    min-height: 780px;

    display: grid;
    place-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            ellipse at center,
            rgba(255, 255, 255, .9),
            transparent 55%
        );
}

.hero::after {
    content: "";
    position: absolute;
    left: -5%;
    right: -5%;
    bottom: -100px;
    height: 200px;

    background: #fff8fc;

    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.hero-glow {
    position: absolute;
    width: 620px;
    height: 620px;

    border-radius: 50%;

    background:
        conic-gradient(
            from 0deg,
            #ff168f,
            #ff86c7,
            #8b5cf6,
            #ff9b7a,
            #ff168f
        );

    filter: blur(75px);
    opacity: .18;

    animation: heroRotate 18s linear infinite;
}

.hero-content {
    position: relative;
    z-index: 2;

    width: min(980px, calc(100% - 36px));
    margin: auto;

    text-align: center;
}

.eyebrow,
.section-kicker {
    display: inline-block;

    color: var(--pink-1);

    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .18em;
}

.hero h1 {
    max-width: 940px;
    margin: 24px auto 20px;

    font-size: clamp(3.2rem, 8vw, 7.4rem);
    line-height: .91;
    letter-spacing: -.075em;
    font-weight: 950;
}

.hero h1 em,
.final-cta h2 em {
    display: block;

    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    letter-spacing: -.05em;

    background:
        linear-gradient(
            90deg,
            var(--pink-1),
            var(--purple),
            var(--pink-2)
        );

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;

    background-size: 200% auto;
    animation: gradientText 7s linear infinite;
}

.hero-lead {
    width: min(720px, 100%);
    margin: 0 auto;

    color: var(--muted);
    font-size: 1.13rem;
    line-height: 1.8;
}

.hero-actions {
    margin-top: 32px;

    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.primary-button,
.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    padding: 15px 23px;
    border-radius: 999px;

    font-weight: 850;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease;
}

.primary-button {
    color: white;

    background:
        linear-gradient(
            135deg,
            var(--pink-1),
            var(--purple)
        );

    box-shadow: var(--shadow-pink);
}

.primary-button:hover {
    transform: translateY(-4px) scale(1.02);
}

.secondary-button {
    background: white;
    border: 1px solid rgba(255, 22, 143, .12);
}

.secondary-button:hover {
    transform: translateY(-4px);
    color: var(--pink-1);
}

.hero-stat-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;

    margin-top: 55px;
}

.hero-stat-row div {
    min-width: 150px;
    padding: 16px 20px;

    border: 1px solid rgba(255, 255, 255, .85);
    border-radius: 18px;

    background: rgba(255, 255, 255, .58);

    backdrop-filter: blur(15px);
}

.hero-stat-row strong {
    display: block;
    color: var(--pink-1);
    font-size: 1.2rem;
}

.hero-stat-row span {
    color: var(--muted);
    font-size: .78rem;
}


/* SECTION HEADINGS */

.section-heading {
    margin-bottom: 45px;
}

.section-heading.centered {
    max-width: 720px;
    margin-inline: auto;
    text-align: center;
}

.section-heading h2 {
    margin: 10px 0 0;

    font-size: clamp(2.2rem, 5vw, 4.2rem);
    line-height: 1;
    letter-spacing: -.065em;
}

.section-heading p {
    color: var(--muted);
    line-height: 1.75;
}


/* INTRO */

.intro {
    padding: 80px 0 120px;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 70px;
    align-items: center;
}

.intro-copy {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.9;
}

.intro-copy p {
    margin: 0 0 24px;
}

.intro-copy .large-copy {
    color: var(--ink);
    font-size: 1.55rem;
    line-height: 1.55;
    font-weight: 650;
}

.quote-card {
    position: relative;
    min-height: 430px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 45px;

    overflow: hidden;

    border-radius: var(--radius-xl);

    color: white;

    background:
        linear-gradient(
            145deg,
            #ff168f,
            #c42d9e 45%,
            #7137ce
        );

    box-shadow: var(--shadow-pink);
}

.quote-mark {
    font-family: Georgia, serif;
    font-size: 8rem;
    line-height: .5;
    opacity: .25;
}

.quote-card blockquote {
    position: relative;
    z-index: 2;

    margin: 20px 0;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.65rem, 3vw, 2.35rem);
    line-height: 1.35;
}

.quote-card cite {
    font-size: .85rem;
    font-style: normal;
    opacity: .8;
}

.quote-decoration {
    position: absolute;
    right: -80px;
    bottom: -100px;

    width: 280px;
    height: 280px;

    border: 50px solid rgba(255,255,255,.12);
    border-radius: 50%;

    animation: decorationSpin 15s linear infinite;
}


/* STORIES */

.stories {
    padding: 80px 0 130px;
}

.story {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 50px;

    margin-bottom: 70px;
    padding: 18px;

    border-radius: var(--radius-xl);

    background: rgba(255,255,255,.72);
    border: 1px solid rgba(255,255,255,.95);

    box-shadow: var(--shadow-soft);

    backdrop-filter: blur(18px);
}

.story-reversed {
    grid-template-columns: 1fr 360px;
}

.story-reversed .story-image {
    order: 2;
}

.story-image {
    position: relative;
    min-height: 500px;
    overflow: hidden;

    border-radius: 30px;
}

.story-image a {
    display: block;
    height: 100%;
}

.story-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .7s cubic-bezier(.2,.8,.2,1);
}

.story:hover .story-image img {
    transform: scale(1.055);
}

.story-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(50, 5, 35, .3)
        );

    pointer-events: none;
}

.image-label {
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 2;

    padding: 9px 14px;

    border-radius: 999px;

    color: white;
    background: rgba(30, 10, 25, .65);

    backdrop-filter: blur(12px);

    font-size: .75rem;
    font-weight: 850;
}

.story-content {
    padding: 35px 35px 35px 10px;
    align-self: center;
}

.story-reversed .story-content {
    padding: 35px 10px 35px 35px;
}

.story-number {
    color: var(--pink-1);

    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .2em;
}

.story-content h3 {
    margin: 13px 0 20px;

    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1;
    letter-spacing: -.06em;
}

.story-content p {
    max-width: 690px;

    color: var(--muted);
    line-height: 1.85;
}

.story-content .story-intro {
    color: var(--ink);

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
    line-height: 1.6;
}

.highlight-line {
    display: inline-block;

    padding: 12px 18px;

    border-radius: 14px;

    color: var(--pink-1) !important;
    background: var(--pink-5);

    font-family: Georgia, serif;
    font-size: 1.35rem;
}

.story-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-top: 15px;

    color: var(--pink-1);
    font-weight: 850;

    transition: gap .25s ease;
}

.story-link:hover {
    gap: 18px;
}


/* PINK BREAK */

.pink-break {
    position: relative;
    overflow: hidden;

    padding: 130px 25px;

    color: white;

    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(255,255,255,.2),
            transparent 25%
        ),
        linear-gradient(
            125deg,
            #ff168f,
            #d62a9d 45%,
            #7137ce
        );
}

.pink-break::before,
.pink-break::after {
    content: "";

    position: absolute;

    width: 320px;
    height: 320px;

    border: 60px solid rgba(255,255,255,.08);
    border-radius: 50%;

    animation: decorationSpin 18s linear infinite;
}

.pink-break::before {
    left: -130px;
    top: -150px;
}

.pink-break::after {
    right: -130px;
    bottom: -170px;
}

.pink-break-inner {
    position: relative;
    z-index: 2;

    width: min(900px, 100%);
    margin: auto;

    text-align: center;
}

.pink-break-inner > span {
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .2em;
}

.pink-break h2 {
    margin: 20px 0;

    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: .98;
    letter-spacing: -.07em;
}

.pink-break h2 em {
    display: block;

    font-family: Georgia, serif;
    font-weight: 400;
}

.pink-break p {
    max-width: 620px;
    margin: auto;

    line-height: 1.8;
    opacity: .85;
}


/* DISCOVER */

.discover {
    padding: 130px 0;
}

.discover-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.discover-card {
    position: relative;
    min-height: 360px;

    display: flex;
    flex-direction: column;

    padding: 35px;

    overflow: hidden;

    border-radius: var(--radius-lg);

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.discover-card:hover {
    transform: translateY(-12px) rotate(.5deg);
    box-shadow: var(--shadow-pink);
}

.card-pink {
    background: linear-gradient(145deg, #ffe0ef, #fff4f9);
}

.card-purple {
    color: white;
    background: linear-gradient(145deg, #7c3aed, #a855f7);
}

.card-peach {
    background: linear-gradient(145deg, #ffe3d5, #fff4ef);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: auto;
}

.discover-card h3 {
    margin: 35px 0 10px;

    font-size: 1.7rem;
    letter-spacing: -.04em;
}

.discover-card p {
    margin: 0;

    line-height: 1.7;

    opacity: .78;
}

.discover-card a {
    margin-top: 20px;

    font-weight: 850;

    transition: transform .25s ease;
}

.discover-card a:hover {
    transform: translateX(6px);
}


/* DESTINATIONS */

.destinations {
    padding: 70px 0 130px;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.destination-card {
    display: grid;
    grid-template-columns: 60px 1fr 30px;
    gap: 15px;
    align-items: center;

    padding: 25px;

    border-radius: 22px;

    background: white;
    border: 1px solid #f8dbe9;

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}

.destination-card:hover {
    transform: translateX(7px);
    border-color: var(--pink-3);
    box-shadow: 0 15px 45px rgba(255, 22, 143, .12);
}

.destination-number {
    color: var(--pink-1);
    font-size: .75rem;
    font-weight: 900;
}

.destination-card h3 {
    margin: 0 0 5px;
    font-size: 1.1rem;
}

.destination-card p {
    margin: 0;
    color: var(--muted);
    font-size: .88rem;
    line-height: 1.55;
}

.arrow {
    color: var(--pink-1);
    font-size: 1.3rem;
}

.featured-destination {
    color: white;

    background:
        linear-gradient(
            135deg,
            var(--pink-1),
            var(--purple)
        );

    border: 0;
}

.featured-destination p {
    color: rgba(255,255,255,.78);
}

.featured-destination .destination-number,
.featured-destination .arrow {
    color: white;
}


/* LONG READ */

.long-read {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 90px;

    padding: 80px 0 140px;
}

.long-read-heading {
    position: sticky;
    top: 130px;
    align-self: start;
}

.long-read-heading h2 {
    margin: 15px 0;

    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1;
    letter-spacing: -.06em;
}

.long-read-content {
    color: var(--muted);

    font-size: 1.05rem;
    line-height: 2;
}

.long-read-content p {
    margin: 0 0 30px;
}

.closing-line {
    color: var(--pink-1);

    font-family: Georgia, serif;
    font-size: 1.8rem;
    line-height: 1.4;
}


/* FINAL CTA */

.final-cta {
    padding: 130px 20px;

    color: white;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(255,255,255,.18),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #ff168f,
            #bd2b9d 50%,
            #6c35ca
        );
}

.final-cta-inner {
    width: min(900px, 100%);
    margin: auto;
    text-align: center;
}

.final-cta h2 {
    margin: 20px 0;

    font-size: clamp(3rem, 7vw, 6rem);
    line-height: .95;
    letter-spacing: -.07em;
}

.final-cta h2 em {
    color: white;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,.8);
}

.final-cta p {
    max-width: 650px;
    margin: auto;

    line-height: 1.8;
    opacity: .82;
}

.final-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;

    margin-top: 35px;
}

.final-links a {
    padding: 12px 18px;

    border: 1px solid rgba(255,255,255,.25);
    border-radius: 999px;

    background: rgba(255,255,255,.1);

    backdrop-filter: blur(12px);

    font-size: .85rem;
    font-weight: 800;

    transition:
        background .25s ease,
        transform .25s ease;
}

.final-links a:hover {
    background: white;
    color: var(--pink-1);
    transform: translateY(-4px);
}


/* FOOTER */

footer {
    padding: 70px 20px;

    background: #241525;
    color: #d8c6d2;
}

.footer-inner {
    width: min(900px, 100%);
    margin: auto;

    text-align: center;
}

.footer-brand {
    color: white;
}

.footer-brand > span:last-child {
    color: white;
}

.footer-inner p {
    max-width: 600px;
    margin: 18px auto;

    line-height: 1.7;
    color: #a997a5;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;

    margin: 25px 0;
}

.footer-links a {
    color: #f6c7df;
    font-size: .85rem;
}

.footer-links a:hover {
    color: white;
}

footer small {
    color: #796878;
}


/* ANIMATIONS */

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }

    10% {
        transform: scale(1.18);
    }

    20% {
        transform: scale(1);
    }

    30% {
        transform: scale(1.12);
    }

    45% {
        transform: scale(1);
    }
}

@keyframes heroRotate {
    from {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.08);
    }

    to {
        transform: rotate(360deg) scale(1);
    }
}

@keyframes gradientText {
    from {
        background-position: 0% center;
    }

    to {
        background-position: 200% center;
    }
}

@keyframes backgroundSweep {
    0% {
        background-position: -100% 0;
    }

    50% {
        background-position: 100% 0;
    }

    100% {
        background-position: -100% 0;
    }
}

@keyframes decorationSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes floatOne {
    0%, 100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(70px, 100px);
    }
}

@keyframes floatTwo {
    0%, 100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-90px, -80px);
    }
}

@keyframes floatThree {
    0%, 100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(100px, -70px);
    }
}


/* TABLET */

@media (max-width: 900px) {

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story,
    .story-reversed {
        grid-template-columns: 1fr;
    }

    .story-reversed .story-image {
        order: initial;
    }

    .story-content,
    .story-reversed .story-content {
        padding: 25px;
    }

    .story-image {
        min-height: 430px;
    }

    .discover-grid {
        grid-template-columns: 1fr;
    }

    .long-read {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .long-read-heading {
        position: static;
    }
}


/* MOBILE */

@media (max-width: 650px) {

    .site-header {
        padding: 10px;
    }

    .nav-shell {
        justify-content: center;
    }

    .nav-shell nav {
        display: none;
    }

    .hero {
        min-height: 700px;
    }

    .hero h1 {
        font-size: clamp(3rem, 15vw, 5rem);
    }

    .hero-lead {
        font-size: 1rem;
    }

    .hero-stat-row {
        display: grid;
        grid-template-columns: 1fr;
        width: min(300px, 100%);
        margin-inline: auto;
    }

    .hero-stat-row div {
        min-width: 0;
    }

    .intro,
    .stories,
    .discover,
    .destinations,
    .long-read {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .section-heading h2 {
        font-size: 2.5rem;
    }

    .quote-card {
        min-height: 360px;
        padding: 32px;
    }

    .story {
        padding: 9px;
        border-radius: 27px;
    }

    .story-image {
        min-height: 400px;
        border-radius: 22px;
    }

    .story-content h3 {
        font-size: 2.3rem;
    }

    .story-content {
        padding: 25px 17px !important;
    }

    .destination-grid {
        grid-template-columns: 1fr;
    }

    .destination-card {
        grid-template-columns: 40px 1fr 25px;
        padding: 20px;
    }

    .pink-break {
        padding: 90px 20px;
    }

    .final-cta {
        padding: 90px 20px;
    }

    .final-cta h2 {
        font-size: 3.2rem;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}