:root {
    --night: #100719;
    --night-2: #190b28;
    --plum: #3b123f;
    --purple: #7b2cbf;
    --violet: #a855f7;
    --pink: #ec4899;
    --rose: #f43f5e;
    --ruby: #9f1239;
    --red: #dc2626;
    --gold: #f5c451;
    --gold-light: #ffe29a;
    --amber: #f59e0b;
    --cream: #fff8e7;
    --paper: #fffaf2;
    --ink: #211426;
    --muted: #756778;
    --line: rgba(43, 20, 48, .12);
    --white: #ffffff;

    --display: "Cinzel", Georgia, serif;
    --body: "Inter", Arial, sans-serif;

    --radius-xl: 38px;
    --radius-lg: 26px;
    --radius-md: 18px;

    --shadow: 0 30px 90px rgba(31, 10, 40, .18);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

.page-noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 100;
    opacity: .035;
    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}


/* HEADER */

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    color: #fff;
}

.header-inner {
    width: min(1400px, calc(100% - 48px));
    margin: auto;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}

.logo-symbol {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(245, 196, 81, .7);
    border-radius: 50%;
    color: var(--gold-light);
    font-family: var(--display);
    font-size: 22px;
    box-shadow: 0 0 35px rgba(245, 196, 81, .16);
}

.logo strong {
    display: block;
    font-family: var(--display);
    font-size: 19px;
    letter-spacing: .13em;
}

.logo small {
    display: block;
    color: var(--gold);
    font-size: 9px;
    letter-spacing: .35em;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 30px;
}

.navigation a {
    color: rgba(255,255,255,.75);
    font-size: 13px;
    font-weight: 600;
    transition: .3s ease;
}

.navigation a:hover {
    color: var(--gold-light);
}

.gold-button {
    padding: 13px 21px;
    border: 1px solid rgba(245,196,81,.65);
    border-radius: 999px;
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .04em;
    transition: .3s ease;
}

.gold-button:hover {
    background: var(--gold);
    color: var(--night);
    transform: translateY(-2px);
}


/* HERO */

.hero {
    min-height: 850px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 20%, rgba(236,72,153,.3), transparent 28%),
        radial-gradient(circle at 25% 70%, rgba(123,44,191,.35), transparent 32%),
        linear-gradient(125deg, #100719 0%, #26102f 48%, #4b123d 100%);
    color: #fff;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: .12;
    background-image:
        radial-gradient(circle at center, transparent 0 30px, rgba(245,196,81,.4) 31px 32px, transparent 33px);
    background-size: 70px 70px;
    mask-image: linear-gradient(90deg, transparent, #000 30%, #000 70%, transparent);
}

.hero-inner {
    width: min(1400px, calc(100% - 48px));
    min-height: 850px;
    margin: auto;
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    gap: 70px;
    padding-top: 100px;
}

.eyebrow {
    color: var(--gold-light);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .25em;
}

.eyebrow.dark {
    color: var(--ruby);
}

.hero h1 {
    max-width: 800px;
    margin: 20px 0 28px;
    font-family: var(--display);
    font-size: clamp(48px, 6vw, 88px);
    line-height: 1.02;
    letter-spacing: -.035em;
    font-weight: 700;
}

.hero h1 span {
    display: block;
    background: linear-gradient(90deg, var(--gold-light), var(--gold), #fff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-lead {
    max-width: 700px;
    margin: 0 0 17px;
    color: rgba(255,255,255,.78);
    font-size: 17px;
}

.hero-lead.secondary {
    color: rgba(255,255,255,.58);
    font-size: 15px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 32px;
}

.primary-action,
.secondary-action,
.dark-button,
.light-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    transition: .35s ease;
}

.primary-action {
    padding: 16px 23px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #251327;
    box-shadow: 0 15px 40px rgba(245,196,81,.2);
}

.primary-action:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 55px rgba(245,196,81,.35);
}

.secondary-action {
    padding: 15px 22px;
    border: 1px solid rgba(255,255,255,.25);
    color: #fff;
}

.secondary-action:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.5);
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 35px;
    color: rgba(255,255,255,.48);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.hero-art {
    position: relative;
    width: min(500px, 100%);
    aspect-ratio: 1;
    justify-self: end;
}

.main-image {
    position: absolute;
    inset: 10%;
    overflow: hidden;
    border: 7px solid rgba(255,255,255,.12);
    border-radius: 48% 52% 45% 55%;
    box-shadow:
        0 40px 100px rgba(0,0,0,.4),
        0 0 0 1px rgba(245,196,81,.4);
    transform: rotate(3deg);
    transition: .6s ease;
}

.main-image:hover {
    transform: rotate(0deg) scale(1.025);
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.2) contrast(1.05);
}

.image-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 35px;
    background: linear-gradient(transparent 35%, rgba(16,7,25,.9));
}

.image-overlay span {
    color: var(--gold);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .3em;
}

.image-overlay strong {
    font-family: var(--display);
    font-size: 38px;
}

.art-frame {
    position: absolute;
    inset: 6%;
    border-radius: 50%;
    border: 1px solid rgba(245,196,81,.45);
}

.frame-back {
    transform: rotate(25deg);
}

.frame-middle {
    transform: rotate(-15deg);
    border-color: rgba(236,72,153,.4);
}

.floating-card {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    background: rgba(23,10,30,.82);
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 16px;
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 50px rgba(0,0,0,.3);
    animation: floatCard 5s ease-in-out infinite;
}

.floating-card-one {
    top: 13%;
    left: -8%;
}

.floating-card-two {
    right: -6%;
    bottom: 15%;
    animation-delay: -2s;
}

.mini-icon {
    color: var(--gold);
    font-size: 18px;
}

.floating-card strong,
.floating-card small {
    display: block;
}

.floating-card strong {
    font-size: 12px;
}

.floating-card small {
    color: rgba(255,255,255,.5);
    font-size: 10px;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(3px);
    pointer-events: none;
    animation: orbMove 10s ease-in-out infinite alternate;
}

.orb-one {
    width: 300px;
    height: 300px;
    top: -120px;
    right: 25%;
    background: rgba(245,196,81,.12);
}

.orb-two {
    width: 200px;
    height: 200px;
    bottom: 5%;
    left: -80px;
    background: rgba(236,72,153,.18);
    animation-delay: -3s;
}

.orb-three {
    width: 160px;
    height: 160px;
    top: 50%;
    right: -50px;
    background: rgba(168,85,247,.2);
    animation-delay: -6s;
}

@keyframes orbMove {
    from {
        transform: translate3d(-20px, 10px, 0) scale(1);
    }

    to {
        transform: translate3d(25px, -30px, 0) scale(1.2);
    }
}


/* GENERAL */

.section-container {
    width: min(1280px, calc(100% - 48px));
    margin: auto;
}

.intro-section {
    padding: 120px 0;
    background: var(--paper);
}

.intro-heading {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 30px;
    align-items: start;
}

.section-number {
    color: rgba(159,18,57,.25);
    font-family: var(--display);
    font-size: 50px;
    font-weight: 700;
}

.intro-heading h2,
.story-content h2,
.section-topline h2,
.destination-heading h2,
.mobile-copy h2,
.premium-heading h2,
.guide-layout h2 {
    margin: 12px 0 0;
    font-family: var(--display);
    font-size: clamp(38px, 5vw, 65px);
    line-height: 1.08;
    letter-spacing: -.03em;
}

.intro-heading h2 em {
    display: block;
    color: var(--ruby);
    font-style: normal;
}

.intro-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 65px;
    padding-left: 120px;
}

.intro-columns p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}


/* VISUAL */

.visual-section {
    padding: 120px 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(236,72,153,.08), transparent 25%),
        #f4e9dc;
}

.section-topline {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 55px;
}

.section-topline h2 span {
    color: var(--purple);
}

.outline-link {
    flex-shrink: 0;
    padding: 12px 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--ruby);
    font-size: 12px;
    font-weight: 800;
}

.visual-grid {
    display: grid;
    grid-template-columns: 1.25fr .9fr .9fr;
    gap: 20px;
}

.visual-card {
    min-height: 520px;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #241127;
    color: #fff;
    box-shadow: var(--shadow);
    transition: .45s ease;
}

.visual-card:hover {
    transform: translateY(-9px);
}

.visual-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s ease;
}

.visual-card:hover img {
    transform: scale(1.06);
}

.visual-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        transparent 20%,
        rgba(18,6,25,.35) 45%,
        rgba(18,6,25,.96) 100%
    );
}

.visual-content {
    position: absolute;
    z-index: 2;
    left: 28px;
    right: 28px;
    bottom: 28px;
}

.visual-content span {
    color: var(--gold);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .2em;
}

.visual-content h3 {
    margin: 8px 0;
    font-family: var(--display);
    font-size: 27px;
}

.visual-content p {
    margin: 0 0 14px;
    color: rgba(255,255,255,.7);
    font-size: 13px;
}

.visual-content strong {
    color: var(--gold-light);
    font-size: 12px;
}


/* COLOR BAND */

.color-band {
    overflow: hidden;
    background: linear-gradient(
        90deg,
        var(--ruby),
        var(--purple),
        var(--pink),
        var(--amber),
        var(--ruby)
    );
    background-size: 300% 100%;
    animation: gradientShift 10s linear infinite;
}

.color-band-inner {
    min-height: 90px;
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    padding: 0 40px;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .22em;
    animation: marquee 22s linear infinite;
}

@keyframes marquee {
    to {
        transform: translateX(-40%);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}


/* STORY */

.story-section {
    padding: 130px 0;
    background: #fffaf3;
}

.story-layout {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 70px;
}

.story-number span,
.story-number strong {
    display: block;
}

.story-number span {
    color: var(--pink);
    font-family: var(--display);
    font-size: 46px;
}

.story-number strong {
    margin-top: 20px;
    color: rgba(33,20,38,.25);
    font-family: var(--display);
    font-size: 18px;
    line-height: 1.3;
    letter-spacing: .1em;
}

.story-content {
    max-width: 850px;
}

.story-content h2 span {
    color: var(--pink);
}

.story-content p {
    max-width: 800px;
    color: var(--muted);
    font-size: 16px;
}

.dark-button {
    margin-top: 20px;
    padding: 15px 22px;
    background: var(--ink);
    color: #fff;
}

.dark-button:hover {
    background: var(--ruby);
    transform: translateY(-3px);
}


/* DESTINATIONS */

.destination-section {
    padding: 120px 0;
    background:
        linear-gradient(135deg, #2b1034, #100719);
    color: #fff;
}

.destination-heading {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;
    align-items: end;
    margin-bottom: 60px;
}

.destination-heading h2 span {
    display: block;
    color: var(--gold);
}

.destination-heading p {
    margin: 0;
    color: rgba(255,255,255,.58);
    font-size: 14px;
}

.destination-list {
    display: grid;
    gap: 12px;
}

.destination-item {
    display: grid;
    grid-template-columns: 75px 1fr 60px;
    align-items: center;
    gap: 25px;
    padding: 25px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 22px;
    background: rgba(255,255,255,.035);
    transition: .4s ease;
}

.destination-item:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(245,196,81,.35);
    transform: translateX(8px);
}

.destination-icon {
    width: 65px;
    height: 65px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: #fff;
    font-family: var(--display);
    font-size: 18px;
    font-weight: 800;
}

.destination-icon.xv {
    background: linear-gradient(135deg, #eab308, #f97316);
}

.destination-icon.xn {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
}

.destination-icon.av {
    background: linear-gradient(135deg, #ec4899, #be123c);
}

.destination-icon.bb {
    background: linear-gradient(135deg, #10b981, #059669);
}

.destination-text span {
    color: var(--gold);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .2em;
}

.destination-text h3 {
    margin: 3px 0;
    font-family: var(--display);
    font-size: 25px;
}

.destination-text p {
    margin: 0;
    max-width: 700px;
    color: rgba(255,255,255,.53);
    font-size: 13px;
}

.destination-arrow {
    color: var(--gold);
    font-size: 25px;
    transition: .3s ease;
}

.destination-item:hover .destination-arrow {
    transform: translate(4px, -4px);
}


/* MOBILE */

.mobile-section {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(245,196,81,.25), transparent 25%),
        linear-gradient(130deg, #be123c, #7b2cbf 55%, #4c1d95);
    color: #fff;
}

.mobile-layout {
    display: grid;
    grid-template-columns: 1fr .7fr;
    align-items: center;
    gap: 100px;
}

.mobile-copy {
    max-width: 700px;
}

.mobile-copy h2 {
    font-size: clamp(40px, 5vw, 66px);
}

.mobile-copy h2 span {
    color: var(--gold-light);
}

.mobile-copy p {
    color: rgba(255,255,255,.7);
}

.light-button {
    margin-top: 20px;
    padding: 15px 23px;
    background: #fff;
    color: var(--ruby);
}

.light-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,0,0,.2);
}

.mobile-card {
    position: relative;
    min-height: 470px;
    display: grid;
    place-items: center;
}

.phone {
    width: 250px;
    height: 470px;
    position: relative;
    padding: 12px;
    border: 7px solid #241127;
    border-radius: 38px;
    background: #08050b;
    box-shadow: 30px 40px 80px rgba(0,0,0,.35);
    transform: rotate(6deg);
    animation: phoneFloat 6s ease-in-out infinite;
}

.phone-top {
    width: 90px;
    height: 20px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0 0 15px 15px;
    background: #241127;
}

.phone-screen {
    height: 100%;
    padding: 55px 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 27px;
    background:
        radial-gradient(circle at 70% 25%, rgba(245,196,81,.6), transparent 25%),
        linear-gradient(145deg, #3b123f, #120719);
}

.screen-label {
    color: var(--gold);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .2em;
}

.phone-screen strong {
    margin: 20px 0;
    font-family: var(--display);
    font-size: 35px;
    line-height: 1.1;
}

.screen-line {
    width: 70px;
    height: 2px;
    background: var(--gold);
}

.phone-screen small {
    margin-top: 15px;
    color: rgba(255,255,255,.55);
}

.phone-home {
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 70px;
    height: 4px;
    transform: translateX(-50%);
    border-radius: 99px;
    background: #fff;
}

.mobile-badge {
    position: absolute;
    right: -20px;
    bottom: 50px;
    padding: 17px 20px;
    display: grid;
    background: rgba(16,7,25,.8);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 17px;
    backdrop-filter: blur(15px);
}

.mobile-badge strong {
    color: var(--gold);
    font-size: 12px;
}

.mobile-badge span {
    color: rgba(255,255,255,.5);
    font-size: 10px;
}

@keyframes phoneFloat {
    0%, 100% {
        transform: rotate(6deg) translateY(0);
    }

    50% {
        transform: rotate(4deg) translateY(-15px);
    }
}


/* PREMIUM */

.premium-section {
    padding: 120px 0;
    background: #f7eee2;
}

.premium-heading {
    max-width: 760px;
    margin-bottom: 55px;
}

.premium-heading h2 span {
    color: var(--ruby);
}

.premium-heading p {
    color: var(--muted);
}

.premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.premium-card {
    position: relative;
    min-height: 340px;
    overflow: hidden;
    padding: 30px;
    border-radius: 28px;
    color: #fff;
    transition: .45s ease;
}

.premium-card:hover {
    transform: translateY(-8px) rotate(-1deg);
}

.red-card {
    background: linear-gradient(140deg, #7f1d1d, #be123c);
}

.gold-card {
    background: linear-gradient(140deg, #92400e, #d97706);
}

.violet-card {
    background: linear-gradient(140deg, #581c87, #7e22ce);
}

.premium-card::after {
    content: "";
    position: absolute;
    width: 230px;
    height: 230px;
    right: -90px;
    bottom: -90px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50%;
}

.premium-number {
    margin-bottom: 70px;
    color: rgba(255,255,255,.5);
    font-family: var(--display);
    font-size: 15px;
}

.premium-card span {
    color: var(--gold-light);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .2em;
}

.premium-card h3 {
    margin: 7px 0 10px;
    font-family: var(--display);
    font-size: 27px;
}

.premium-card p {
    color: rgba(255,255,255,.7);
    font-size: 13px;
}

.premium-card strong {
    color: #fff;
    font-size: 12px;
}


/* GUIDE */

.guide-section {
    padding: 120px 0;
    background: #fffaf3;
}

.guide-layout {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 100px;
    align-items: start;
}

.guide-layout h2 span {
    display: block;
    color: var(--purple);
}

.guide-layout > div:first-child p {
    color: var(--muted);
}

.guide-steps {
    display: grid;
    gap: 10px;
}

.guide-steps a {
    display: grid;
    grid-template-columns: 45px 1fr 30px;
    align-items: center;
    gap: 20px;
    padding: 19px;
    border-bottom: 1px solid var(--line);
    transition: .3s ease;
}

.guide-steps a:hover {
    padding-left: 27px;
    background: rgba(123,44,191,.04);
}

.guide-steps > a > span {
    color: var(--pink);
    font-family: var(--display);
}

.guide-steps strong,
.guide-steps small {
    display: block;
}

.guide-steps strong {
    font-size: 14px;
}

.guide-steps small {
    color: var(--muted);
    font-size: 11px;
}

.guide-steps b {
    color: var(--ruby);
}


/* FINAL */

.final-section {
    position: relative;
    overflow: hidden;
    padding: 140px 0;
    text-align: center;
    background:
        radial-gradient(circle at 20% 20%, rgba(236,72,153,.25), transparent 25%),
        radial-gradient(circle at 80% 80%, rgba(245,196,81,.18), transparent 25%),
        linear-gradient(130deg, #16091e, #3b123f 50%, #14081b);
    color: #fff;
}

.final-content {
    position: relative;
    z-index: 2;
}

.final-section h2 {
    max-width: 850px;
    margin: 18px auto;
    font-family: var(--display);
    font-size: clamp(45px, 6vw, 80px);
    line-height: 1.05;
}

.final-section h2 span {
    display: block;
    color: var(--gold);
}

.final-section p {
    max-width: 720px;
    margin: 0 auto;
    color: rgba(255,255,255,.62);
}

.final-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 35px;
}

.final-stars {
    position: absolute;
    inset: 0;
    opacity: .35;
    background-image:
        radial-gradient(circle, #fff 0 1px, transparent 1.5px);
    background-size: 90px 90px;
    animation: stars 18s linear infinite;
}

@keyframes stars {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-90px);
    }
}


/* FOOTER */

.site-footer {
    padding: 75px 0 25px;
    background: #0c0610;
    color: #fff;
}

.footer-container {
    width: min(1280px, calc(100% - 48px));
    margin: auto;
    display: grid;
    grid-template-columns: 1.6fr repeat(3, 1fr);
    gap: 60px;
}

.footer-brand p {
    max-width: 390px;
    color: rgba(255,255,255,.4);
    font-size: 13px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-column strong {
    margin-bottom: 10px;
    color: var(--gold);
    font-family: var(--display);
    font-size: 14px;
}

.footer-column a {
    color: rgba(255,255,255,.45);
    font-size: 12px;
    transition: .25s ease;
}

.footer-column a:hover {
    color: #fff;
    transform: translateX(3px);
}

.footer-bottom {
    width: min(1280px, calc(100% - 48px));
    margin: 60px auto 0;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.08);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: rgba(255,255,255,.3);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .12em;
}


/* RESPONSIVE */

@media (max-width: 1100px) {

    .navigation {
        display: none;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        padding-top: 140px;
        padding-bottom: 80px;
    }

    .hero {
        min-height: auto;
    }

    .hero-art {
        justify-self: center;
        max-width: 500px;
    }

    .intro-columns {
        padding-left: 0;
    }

    .visual-grid {
        grid-template-columns: 1fr 1fr;
    }

    .card-large {
        grid-column: span 2;
    }

    .destination-heading {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .mobile-layout,
    .guide-layout {
        grid-template-columns: 1fr;
    }

    .mobile-card {
        max-width: 450px;
        margin: auto;
    }

    .premium-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}


@media (max-width: 700px) {

    .header-inner,
    .section-container,
    .footer-container,
    .footer-bottom,
    .hero-inner {
        width: min(100% - 30px, 1280px);
    }

    .header-inner {
        min-height: 80px;
    }

    .gold-button {
        display: none;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-inner {
        padding-top: 110px;
    }

    .hero-art {
        width: 90%;
    }

    .floating-card {
        transform: scale(.85);
    }

    .floating-card-one {
        left: -12%;
    }

    .floating-card-two {
        right: -12%;
    }

    .intro-section,
    .visual-section,
    .story-section,
    .destination-section,
    .mobile-section,
    .premium-section,
    .guide-section {
        padding: 80px 0;
    }

    .intro-heading {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .section-number {
        font-size: 30px;
    }

    .intro-columns {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 35px;
    }

    .section-topline {
        align-items: start;
        flex-direction: column;
    }

    .visual-grid {
        grid-template-columns: 1fr;
    }

    .card-large {
        grid-column: auto;
    }

    .visual-card {
        min-height: 420px;
    }

    .story-layout {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .destination-item {
        grid-template-columns: 55px 1fr 20px;
        gap: 14px;
        padding: 17px;
    }

    .destination-icon {
        width: 52px;
        height: 52px;
        font-size: 14px;
    }

    .destination-text h3 {
        font-size: 20px;
    }

    .destination-text p {
        display: none;
    }

    .premium-grid {
        grid-template-columns: 1fr;
    }

    .premium-card {
        min-height: 310px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 35px 20px;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
    }

    .final-section {
        padding: 100px 0;
    }

    .final-section h2 {
        font-size: 45px;
    }
}


@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}