:root {
    --pink: #c52884;
    --pink-hot: #f02f8f;
    --pink-soft: #ffe8f4;
    --red: #f02f2f;
    --gold: #ffd323;
    --black: #151515;
    --ink: #28242b;
    --muted: #74717a;
    --white: #ffffff;
    --paper: #fff6fb;
    --line: rgba(21, 21, 21, 0.1);
    --shadow: 0 22px 60px rgba(21, 21, 21, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select {
    font: inherit;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
    padding: 12px clamp(18px, 6vw, 112px);
    background: rgba(255, 242, 249, 0.96);
    border-bottom: 1px solid rgba(197, 40, 132, 0.09);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--black);
    font-weight: 900;
}

.brand img {
    width: 58px;
    height: 58px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 12px 28px rgba(197, 40, 132, 0.2);
}

.brand span {
    font-size: 1.18rem;
    line-height: 1.1;
}

.nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 8px 10px;
    color: var(--black);
    font-size: 1rem;
    font-weight: 800;
}

.nav a:hover,
.nav a:focus-visible {
    color: var(--pink);
    outline: none;
}

.nav .nav-outline {
    min-width: 118px;
    padding-inline: 18px;
    border: 1.5px solid var(--black);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.34);
}

.nav .nav-login {
    min-width: 86px;
    padding-inline: 18px;
    border: 1.5px solid var(--pink);
    border-radius: 999px;
    color: var(--pink);
    background: rgba(255, 255, 255, 0.42);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 10px;
    border: 0;
    border-radius: 8px;
    background: var(--black);
    cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--white);
}

.hero {
    position: relative;
    display: grid;
    justify-items: center;
    min-height: calc(100svh - 80px);
    padding: clamp(58px, 7vw, 98px) clamp(18px, 6vw, 110px) clamp(38px, 5vw, 70px);
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 242, 249, 0.58), rgba(240, 47, 143, 0.74)),
        radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.88), transparent 30%),
        linear-gradient(120deg, #ffffff, #ffd6ea 42%, #f02f8f);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent 0 8%, rgba(255, 255, 255, 0.28) 8% 8.4%, transparent 8.4% 18%, rgba(255, 255, 255, 0.18) 18% 18.4%, transparent 18.4% 100%),
        linear-gradient(180deg, transparent 42%, rgba(255, 255, 255, 0.28));
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    right: -8vw;
    bottom: 8%;
    width: min(58vw, 880px);
    height: 172px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 54px 0 0 22px;
    background:
        radial-gradient(circle at 18% 86%, var(--black) 0 22px, transparent 23px),
        radial-gradient(circle at 78% 86%, var(--black) 0 22px, transparent 23px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.08)),
        rgba(255, 255, 255, 0.28);
    opacity: 0.82;
}

.hero-ambient {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    pointer-events: none;
}

.hero-ambient img {
    width: min(48vw, 500px);
    border-radius: 8px;
    opacity: 0.1;
    transform: translateY(42px) rotate(-4deg);
}

.hero-copy,
.search-panel,
.promo-row {
    position: relative;
    z-index: 2;
}

.hero-copy {
    width: min(100%, 1180px);
    margin-bottom: clamp(30px, 4.8vw, 56px);
    text-align: center;
}

.hero-copy h1 {
    max-width: 1120px;
    margin: 0 auto;
    color: var(--black);
    font-size: clamp(2.25rem, 5.4vw, 4.9rem);
    line-height: 1.08;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.98), 0 6px 24px rgba(21, 21, 21, 0.12);
}

.hero-copy span {
    color: var(--pink);
    text-shadow: 0 0 9px rgba(255, 255, 255, 0.96), 0 8px 22px rgba(197, 40, 132, 0.24);
}

.search-panel {
    width: min(100%, 1280px);
    display: grid;
    gap: 18px;
    padding: clamp(18px, 2.6vw, 30px);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.trip-type {
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
    color: var(--black);
    font-size: 1.1rem;
    font-weight: 900;
}

.search-grid {
    display: grid;
    grid-template-columns: minmax(190px, 1.08fr) 48px minmax(190px, 1.08fr) minmax(160px, 0.8fr) minmax(145px, 0.65fr);
    gap: 16px;
    align-items: end;
}

.search-grid label {
    display: grid;
    gap: 8px;
}

.search-grid label > span {
    color: var(--black);
    font-size: 0.96rem;
    font-weight: 900;
}

.search-grid select,
.search-grid input {
    width: 100%;
    min-height: 54px;
    padding: 11px 16px;
    border: 1.5px solid rgba(21, 21, 21, 0.5);
    border-radius: 999px;
    color: var(--black);
    background: rgba(255, 255, 255, 0.52);
    outline: none;
}

.search-grid select:focus,
.search-grid input:focus {
    border-color: var(--pink);
    box-shadow: 0 0 0 4px rgba(197, 40, 132, 0.14);
}

.swap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 3px;
    border: 0;
    border-radius: 8px;
    color: var(--pink);
    background: var(--white);
    font-size: 1.45rem;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(21, 21, 21, 0.1);
    cursor: pointer;
}

.search-footer {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
}

.search-footer p {
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
    font-weight: 800;
}

.search-footer button,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 12px 24px;
    border: 0;
    border-radius: 999px;
    color: var(--white);
    background: var(--pink);
    font-weight: 900;
    box-shadow: 0 16px 34px rgba(197, 40, 132, 0.24);
    cursor: pointer;
}

.search-footer button:hover,
.search-footer button:focus-visible,
.button:hover,
.button:focus-visible,
.swap:hover,
.swap:focus-visible {
    transform: translateY(-1px);
    outline: none;
}

.promo-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    width: min(100%, 1190px);
    margin-top: clamp(34px, 5vw, 58px);
}

.promo-card {
    display: grid;
    min-height: 138px;
    align-content: end;
    gap: 8px;
    padding: 22px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 18px 42px rgba(21, 21, 21, 0.16);
}

.promo-card span {
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.promo-card strong {
    font-size: clamp(1.08rem, 1.9vw, 1.55rem);
    line-height: 1.16;
}

.promo-hot {
    color: var(--white);
    background:
        radial-gradient(circle at 84% 18%, rgba(255, 211, 35, 0.42), transparent 29%),
        linear-gradient(135deg, var(--pink), #871152);
}

.promo-dark {
    color: var(--white);
    background:
        radial-gradient(circle at 24% 24%, rgba(255, 255, 255, 0.2), transparent 25%),
        linear-gradient(135deg, var(--black), #4a1238);
}

.promo-light {
    color: var(--black);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 232, 244, 0.98)),
        var(--white);
}

.section {
    padding: clamp(58px, 8vw, 112px) clamp(18px, 6vw, 112px);
}

.center-title {
    max-width: 880px;
    margin: 0 auto 38px;
    text-align: center;
}

.center-title h2,
.section-head h2,
.package-copy h2,
.contact h2 {
    margin: 0;
    color: var(--black);
    font-size: clamp(2rem, 4vw, 3.8rem);
    line-height: 1.08;
}

.center-title span {
    color: var(--pink);
}

.center-title p,
.package-copy p,
.contact p {
    max-width: 820px;
    margin: 18px auto 0;
    color: var(--muted);
    font-size: 1.06rem;
    font-weight: 700;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.benefit-card,
.service-card,
.outlet-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 16px 40px rgba(21, 21, 21, 0.06);
}

.benefit-card {
    display: grid;
    gap: 12px;
    justify-items: center;
    padding: 28px 22px;
    text-align: center;
}

.benefit-icon {
    width: 54px;
    height: 54px;
    border-radius: 999px;
    background:
        radial-gradient(circle at 50% 50%, var(--white) 0 18%, transparent 19%),
        linear-gradient(135deg, var(--pink), var(--gold));
}

.benefit-card h3,
.service-card strong,
.outlet-card strong {
    margin: 0;
    color: var(--black);
    font-size: 1.15rem;
}

.benefit-card p {
    margin: 0;
    color: var(--muted);
}

.service-section,
.outlet-section {
    background: var(--paper);
}

.section-head {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: end;
    margin-bottom: 28px;
}

.section-head > div {
    max-width: 780px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--pink);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.service-card {
    display: grid;
    gap: 16px;
    justify-items: center;
    padding: 22px;
    text-align: center;
}

.service-card img {
    width: 92px;
    height: 92px;
    border-radius: 8px;
    object-fit: cover;
}

.package-section {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
    gap: clamp(24px, 5vw, 72px);
    align-items: center;
    background: var(--white);
}

.package-copy p {
    margin-left: 0;
}

.dark-button {
    margin-top: 24px;
    background: var(--black);
    box-shadow: none;
}

.package-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: clamp(18px, 3vw, 30px);
    border-radius: 8px;
    background:
        radial-gradient(circle at 88% 8%, rgba(255, 211, 35, 0.35), transparent 32%),
        linear-gradient(135deg, var(--pink), #3a102c);
    box-shadow: var(--shadow);
}

.package-panel span {
    display: flex;
    align-items: center;
    min-height: 86px;
    padding: 16px;
    border-radius: 8px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    font-weight: 900;
}

.outlet-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.outlet-card {
    display: grid;
    gap: 8px;
    padding: 22px;
}

.outlet-card span {
    color: var(--pink);
    font-weight: 900;
}

.outlet-card p {
    margin: 0;
    color: var(--muted);
    font-weight: 900;
}

.contact {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    margin: 0 clamp(18px, 6vw, 112px) clamp(46px, 7vw, 86px);
    padding: clamp(28px, 5vw, 54px);
    border-radius: 8px;
    color: var(--white);
    background:
        radial-gradient(circle at 92% 12%, rgba(255, 211, 35, 0.28), transparent 30%),
        linear-gradient(135deg, var(--black), #70124f);
}

.contact h2 {
    color: var(--white);
}

.contact p:not(.eyebrow) {
    margin-left: 0;
    color: rgba(255, 255, 255, 0.74);
}

.contact-list {
    display: grid;
    gap: 12px;
}

.contact-list a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 12px 18px;
    border-radius: 999px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.24);
    font-weight: 900;
}

.footer {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 28px clamp(18px, 6vw, 112px);
    color: rgba(255, 255, 255, 0.8);
    background: var(--black);
}

.footer strong {
    color: var(--gold);
}

@media (max-width: 1080px) {
    .nav {
        gap: 4px;
    }

    .nav a {
        font-size: 0.92rem;
    }

    .search-grid {
        grid-template-columns: minmax(0, 1fr) 48px minmax(0, 1fr);
    }

    .benefit-grid,
    .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .site-header {
        min-height: 72px;
        padding-inline: 18px;
    }

    .brand img {
        width: 46px;
        height: 46px;
    }

    .brand span {
        font-size: 1rem;
    }

    .nav-toggle {
        display: block;
    }

    .nav {
        position: absolute;
        top: 72px;
        right: 18px;
        left: 18px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: var(--white);
        box-shadow: var(--shadow);
    }

    .nav.is-open {
        display: flex;
    }

    .nav a,
    .nav .nav-outline,
    .nav .nav-login {
        justify-content: flex-start;
        min-width: 0;
        width: 100%;
        border-radius: 8px;
    }

    .hero {
        min-height: auto;
        padding-top: 48px;
    }

    .hero::after {
        right: -40vw;
        width: 120vw;
        height: 128px;
        opacity: 0.72;
    }

    .hero-copy h1 {
        font-size: clamp(2rem, 11vw, 3.6rem);
    }

    .search-panel {
        border-radius: 20px;
    }

    .search-grid,
    .promo-row,
    .benefit-grid,
    .service-grid,
    .package-section,
    .package-panel,
    .outlet-grid,
    .contact {
        grid-template-columns: 1fr;
    }

    .swap {
        width: 100%;
        margin-bottom: 0;
    }

    .search-footer,
    .section-head,
    .contact,
    .footer {
        align-items: stretch;
        flex-direction: column;
    }

    .search-footer button,
    .button {
        width: 100%;
    }
}
