:root {
  --ink: #160c20;
  --ink-2: #31203d;
  --night: #08040d;
  --night-soft: #1a0825;
  --cream: #fff8f4;
  --sand: #f4e9f7;
  --paper: #fffefe;
  --white: #ffffff;
  --muted: #6f6378;
  --line: rgba(106, 13, 173, .14);
  --teal: #7b2cbf;
  --teal-light: #c77dff;
  --gold: #ff7a00;
  --gold-deep: #e65700;
  --coral: #ff4f81;
  --purple: #6a0dad;
  --purple-bright: #9d2cff;
  --shadow: 0 24px 70px rgba(79, 17, 111, .16);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body { margin: 0; font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; color: var(--ink); background: var(--paper); overflow-x: hidden; }
body, button, input, textarea, select { font: inherit; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { border: 0; }
::selection { background: var(--gold); color: var(--night); }

.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.section { position: relative; padding: 112px 0; }
.section--sand { background: linear-gradient(180deg, #f8f3ea 0%, #f2e8da 100%); }
.centered { text-align: center; max-width: 760px; margin-inline: auto; }
.lead { font-size: clamp(1.13rem, 1.8vw, 1.35rem); line-height: 1.7; color: var(--ink-2); }
p { line-height: 1.72; color: var(--muted); }
h1,h2,h3,h4 { font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; margin: 0; color: var(--ink); letter-spacing: -.035em; }
h1 { font-size: clamp(3.25rem, 7vw, 6.7rem); line-height: .96; }
h2 { font-size: clamp(2.35rem, 4.7vw, 4.55rem); line-height: 1.03; }
h3 { font-size: 1.25rem; line-height: 1.25; }

.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; text-transform: uppercase; letter-spacing: .16em; font-size: .72rem; color: var(--teal); margin-bottom: 20px; }
.eyebrow--light { color: #d4fbf4; }

.btn { min-height: 52px; padding: 0 24px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; border-radius: 999px; font-weight: 700; transition: transform .28s ease, background .28s ease, box-shadow .28s ease, color .28s ease; cursor: pointer; }
.btn:hover { transform: translateY(-3px); }
.btn--accent { background: var(--gold); color: var(--night); box-shadow: 0 12px 32px rgba(245, 184, 106, .28); }
.btn--accent:hover { background: #ffc67c; box-shadow: 0 16px 40px rgba(245, 184, 106, .38); }
.btn--dark { background: var(--night); color: white; }
.btn--dark:hover { background: var(--teal); }
.btn--light { background: white; color: var(--night); }
.btn--glass { background: rgba(255,255,255,.12); color: white; border: 1px solid rgba(255,255,255,.28); backdrop-filter: blur(14px); }
.btn--small { min-height: 44px; padding: 0 18px; font-size: .91rem; }
.btn--wide { width: 100%; }
.text-link { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; color: var(--teal); }
.text-link:hover { color: var(--gold-deep); }

/* Header */
.site-header { position: fixed; inset: 0 0 auto; z-index: 100; padding: 18px 0; color: white; transition: background .3s ease, padding .3s ease, box-shadow .3s ease; }
.site-header--scrolled { background: rgba(7,26,31,.92); backdrop-filter: blur(18px); padding: 11px 0; box-shadow: 0 12px 40px rgba(0,0,0,.12); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; font-size: 1.35rem; font-weight: 800; letter-spacing: -.04em; }
.brand__mark { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 13px; background: var(--gold); color: var(--night); transform: rotate(-5deg); }
.brand--light { color: white; }
.desktop-nav { display: flex; align-items: center; gap: 30px; }
.desktop-nav a { font-size: .92rem; color: rgba(255,255,255,.78); font-weight: 600; position: relative; }
.desktop-nav a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--gold); transition: right .25s ease; }
.desktop-nav a:hover, .desktop-nav a.active { color: white; }
.desktop-nav a:hover::after, .desktop-nav a.active::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.menu-toggle { display: none; background: rgba(255,255,255,.12); color: white; width: 44px; height: 44px; border-radius: 50%; place-items: center; cursor: pointer; }
.mobile-panel { display: none; }

/* Hero */
.hero { min-height: 860px; display: flex; align-items: center; position: relative; overflow: hidden; background: var(--night); color: white; }
.hero__media, .hero__media img, .hero__shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__media img { object-fit: cover; object-position: center; transform: scale(1.03); }
.hero__shade { background: linear-gradient(90deg, rgba(7,26,31,.96) 0%, rgba(7,26,31,.86) 40%, rgba(7,26,31,.28) 72%, rgba(7,26,31,.35) 100%), linear-gradient(0deg, rgba(7,26,31,.7) 0%, transparent 38%); }
.hero__orb { position: absolute; border-radius: 50%; filter: blur(5px); opacity: .55; }
.hero__orb--one { width: 440px; height: 440px; background: radial-gradient(circle, rgba(52,196,183,.35), transparent 68%); top: -100px; left: -100px; }
.hero__orb--two { width: 560px; height: 560px; background: radial-gradient(circle, rgba(245,184,106,.18), transparent 70%); right: -160px; bottom: -160px; }
.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .8fr; gap: 90px; align-items: center; padding-top: 100px; }
.hero__copy { max-width: 700px; }
.hero h1 { color: white; max-width: 760px; }
.hero__copy > p { font-size: 1.14rem; color: rgba(255,255,255,.77); max-width: 650px; margin: 28px 0 32px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 13px; }
.hero__proof { margin-top: 38px; display: flex; align-items: center; gap: 14px; }
.hero__proof strong, .hero__proof small { display: block; }
.hero__proof strong { color: white; }
.hero__proof small { color: rgba(255,255,255,.58); margin-top: 3px; }
.avatar-stack { display: flex; }
.avatar-stack span { width: 35px; height: 35px; border-radius: 50%; display: grid; place-items: center; margin-left: -8px; border: 2px solid var(--night); background: #e9c7a1; color: var(--night); font-weight: 800; font-size: .82rem; }
.avatar-stack span:first-child { margin-left: 0; background: #9ed8d1; }
.avatar-stack span:last-child { background: var(--gold); }
.hero__cards { position: relative; min-height: 430px; }
.travel-pass { position: absolute; right: 20px; top: 60px; width: min(430px, 90%); aspect-ratio: 1.55; border-radius: 30px; padding: 28px; background: linear-gradient(145deg, rgba(255,255,255,.2), rgba(255,255,255,.07)); border: 1px solid rgba(255,255,255,.32); backdrop-filter: blur(18px); box-shadow: 0 35px 80px rgba(0,0,0,.28); transform: rotate(3deg); }
.travel-pass::before { content: ''; position: absolute; inset: 10px; border: 1px dashed rgba(255,255,255,.23); border-radius: 23px; pointer-events: none; }
.travel-pass__top, .travel-pass__route, .travel-pass__meta { position: relative; z-index: 1; }
.travel-pass__top { display: flex; justify-content: space-between; font-weight: 800; letter-spacing: .18em; font-size: .8rem; }
.travel-pass__route { margin: 58px 0 40px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 18px; font-family: Inter, ui-sans-serif, system-ui, sans-serif; font-weight: 800; font-size: 1.05rem; }
.travel-pass__route span:last-child { text-align: right; }
.travel-pass__route div { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; color: var(--night); background: var(--gold); position: relative; }
.travel-pass__route div::before, .travel-pass__route div::after { content: ''; position: absolute; height: 1px; width: 72px; background: rgba(255,255,255,.35); }
.travel-pass__route div::before { right: 100%; }
.travel-pass__route div::after { left: 100%; }
.travel-pass__meta { display: flex; justify-content: space-between; gap: 15px; }
.travel-pass__meta span { font-weight: 700; }
.travel-pass__meta small { display: block; color: rgba(255,255,255,.52); font-size: .63rem; letter-spacing: .15em; margin-bottom: 3px; }
.float-card { position: absolute; display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,.92); color: var(--night); padding: 13px 16px; border-radius: 16px; box-shadow: var(--shadow); }
.float-card span, .float-card small { display: block; }
.float-card span { font-weight: 800; }
.float-card small { color: #78888c; font-weight: 600; margin-bottom: 1px; }
.float-card--save { left: 0; top: 10px; }
.float-card--world { right: 0; bottom: 40px; }
.hero__rail { position: absolute; z-index: 2; bottom: 26px; left: 50%; transform: translateX(-50%); display: flex; align-items: center; justify-content: center; gap: 20px; color: rgba(255,255,255,.68); font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; }
.hero__rail i { width: 28px; height: 1px; background: rgba(255,255,255,.28); }

.trust-strip { background: white; border-bottom: 1px solid var(--line); }
.trust-strip__grid { display: grid; grid-template-columns: repeat(3,1fr); }
.trust-item { padding: 30px 26px; display: flex; align-items: center; gap: 14px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item > svg { color: var(--teal); }
.trust-item strong, .trust-item span { display: block; }
.trust-item strong { font-family: Inter, ui-sans-serif, system-ui, sans-serif; }
.trust-item span { font-size: .83rem; color: var(--muted); margin-top: 3px; }

/* Shared layouts */
.editorial-grid { display: grid; grid-template-columns: 1.05fr .85fr; gap: 90px; align-items: start; }
.editorial-grid__heading h2 { max-width: 760px; }
.editorial-grid__copy { padding-top: 42px; }
.collage { margin-top: 70px; display: grid; grid-template-columns: 1.35fr .65fr; grid-template-rows: 360px 110px; gap: 18px; position: relative; }
.collage__main { grid-row: 1 / 3; position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.collage__main img, .collage__side img { width: 100%; height: 100%; object-fit: cover; }
.collage__side { border-radius: var(--radius-lg); overflow: hidden; }
.collage__caption { position: absolute; left: 24px; bottom: 24px; padding: 14px 18px; display: flex; align-items: center; gap: 9px; background: rgba(255,255,255,.88); backdrop-filter: blur(12px); border-radius: 14px; font-weight: 700; }
.collage__caption svg { color: var(--gold-deep); }
.collage__note { border-radius: var(--radius-md); background: var(--night); color: white; display: flex; align-items: center; gap: 18px; padding: 21px; }
.collage__note strong { font-size: 2rem; color: var(--gold); }
.collage__note span { font-size: .86rem; color: rgba(255,255,255,.7); }
.section-heading { margin-bottom: 52px; }
.section-heading--split { display: grid; grid-template-columns: 1.1fr .7fr; gap: 80px; align-items: end; }
.section-heading--split p { margin: 0; }
.section-heading.centered p { max-width: 690px; margin: 20px auto 0; }

.bento-grid { display: grid; grid-template-columns: repeat(4,1fr); grid-auto-rows: 340px; gap: 18px; }
.bento-card { position: relative; overflow: hidden; border-radius: 26px; color: white; min-height: 300px; }
.bento-card--wide { grid-column: span 2; }
.bento-card img, .bento-card__overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.bento-card img { object-fit: cover; transition: transform .65s cubic-bezier(.22,1,.36,1); }
.bento-card:hover img { transform: scale(1.075); }
.bento-card__overlay { background: linear-gradient(0deg, rgba(7,26,31,.92), rgba(7,26,31,.05) 72%); }
.bento-card__content { position: absolute; left: 24px; right: 24px; bottom: 22px; }
.bento-card h3 { color: white; font-size: 1.42rem; }
.bento-card p { color: rgba(255,255,255,.7); margin: 8px 0 0; font-size: .9rem; line-height: 1.55; max-width: 470px; }
.icon-chip { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; color: var(--night); background: var(--gold); margin-bottom: 14px; }

.dark-story { background: var(--night); color: white; overflow: hidden; }
.dark-story__glow { position: absolute; width: 700px; height: 700px; right: -260px; top: -260px; border-radius: 50%; background: radial-gradient(circle, rgba(45,177,164,.24), transparent 68%); }
.dark-story__grid { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: 80px; align-items: center; }
.dark-story__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 480px; }
.dark-story__media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.dark-story__media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7,26,31,.55), transparent); }
.play-button { position: absolute; inset: 50% auto auto 50%; transform: translate(-50%,-50%); z-index: 2; background: transparent; color: white; cursor: pointer; transition: transform .25s ease; }
.play-button:hover { transform: translate(-50%,-50%) scale(1.08); }
.video-label { position: absolute; z-index: 2; bottom: 22px; left: 22px; padding: 10px 14px; border-radius: 999px; color: white; background: rgba(7,26,31,.58); backdrop-filter: blur(10px); font-size: .82rem; }
.dark-story__copy h2 { color: white; }
.dark-story__copy > p { color: rgba(255,255,255,.68); font-size: 1.04rem; }
.check-list { list-style: none; padding: 0; margin: 28px 0; display: grid; gap: 13px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; color: var(--ink-2); }
.check-list li svg { flex: 0 0 auto; width: 21px; height: 21px; padding: 4px; border-radius: 50%; background: #dff2ed; color: var(--teal); margin-top: 1px; }
.check-list--light li { color: rgba(255,255,255,.82); }
.check-list--light li svg { background: rgba(97,197,183,.18); color: var(--teal-light); }

.destination-track { width: min(1500px, calc(100% - 28px)); margin-inline: auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.destination-card { position: relative; height: 490px; border-radius: 28px; overflow: hidden; }
.destination-card img, .destination-card__shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.destination-card img { object-fit: cover; transition: transform .7s cubic-bezier(.22,1,.36,1); }
.destination-card:hover img { transform: scale(1.07); }
.destination-card__shade { background: linear-gradient(0deg, rgba(7,26,31,.86), transparent 62%); }
.destination-card__count { position: absolute; top: 20px; right: 20px; color: white; font-family: Inter, ui-sans-serif, system-ui, sans-serif; font-weight: 800; }
.destination-card > div:last-child { position: absolute; left: 24px; right: 24px; bottom: 24px; color: white; }
.destination-card small { color: rgba(255,255,255,.65); }
.destination-card h3 { color: white; font-size: 1.6rem; margin-top: 6px; padding-right: 48px; }
.circle-arrow { width: 43px; height: 43px; border-radius: 50%; display: grid; place-items: center; background: var(--gold); color: var(--night); position: absolute; right: 0; bottom: 0; transition: transform .25s ease; }
.destination-card:hover .circle-arrow, .experience-card:hover .circle-arrow { transform: rotate(45deg); }

.process-section { background: #fff; }
.process-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.process-intro { position: sticky; top: 120px; }
.process-intro p { max-width: 470px; margin: 24px 0 30px; }
.process-list { border-top: 1px solid var(--line); }
.process-step { display: grid; grid-template-columns: 68px 1fr auto; gap: 25px; align-items: center; padding: 30px 0; border-bottom: 1px solid var(--line); }
.process-step > span { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; background: var(--cream); font-weight: 800; color: var(--teal); }
.process-step p { margin: 6px 0 0; }
.process-step > svg { color: var(--teal); transition: transform .25s ease; }
.process-step:hover > svg { transform: translateX(6px); }

.opportunity-teaser { background: var(--cream); }
.opportunity-teaser__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 85px; align-items: center; }
.opportunity-teaser__image { position: relative; min-height: 590px; border-radius: var(--radius-lg); overflow: visible; }
.opportunity-teaser__image > img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; border-radius: var(--radius-lg); }
.opportunity-teaser__badge { position: absolute; right: -28px; bottom: 34px; display: flex; gap: 10px; align-items: center; background: white; padding: 16px 19px; border-radius: 16px; box-shadow: var(--shadow); }
.opportunity-teaser__badge span, .opportunity-teaser__badge small { display: block; }
.opportunity-teaser__badge span { font-weight: 800; }
.opportunity-teaser__badge small { font-weight: 600; color: var(--muted); }
.opportunity-teaser__copy p { font-size: 1.04rem; }
.mini-features { display: grid; gap: 10px; margin: 25px 0 30px; }
.mini-features span { display: flex; align-items: center; gap: 9px; font-weight: 700; }
.mini-features svg { width: 20px; height: 20px; padding: 4px; border-radius: 50%; background: #dff2ed; color: var(--teal); }

.lead-section { background: linear-gradient(135deg, #0a252b 0%, #123d43 55%, #1c6864 100%); color: white; overflow: hidden; }
.lead-section::before { content: ''; position: absolute; width: 560px; height: 560px; border-radius: 50%; background: radial-gradient(circle, rgba(245,184,106,.22), transparent 68%); left: -200px; bottom: -260px; }
.lead-section__grid { position: relative; display: grid; grid-template-columns: .8fr 1.05fr; gap: 85px; align-items: center; }
.lead-section h2 { color: white; }
.lead-section__copy > p { color: rgba(255,255,255,.7); font-size: 1.08rem; }
.contact-points { display: grid; gap: 13px; margin-top: 30px; }
.contact-points span { display: flex; gap: 9px; align-items: center; color: rgba(255,255,255,.82); }
.contact-points svg { color: var(--gold); }
.lead-section__form { background: white; border-radius: 28px; padding: 28px; box-shadow: 0 30px 80px rgba(0,0,0,.2); }
.lead-form { color: var(--ink); }
.form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.lead-form label { display: block; }
.lead-form label > span { display: block; font-size: .79rem; font-weight: 700; color: #41545a; margin: 0 0 7px 2px; }
.lead-form input, .lead-form select, .lead-form textarea { width: 100%; border: 1px solid #dbe3e2; background: #fbfcfb; color: var(--ink); border-radius: 13px; outline: none; padding: 13px 14px; transition: border-color .2s ease, box-shadow .2s ease; }
.lead-form input, .lead-form select { min-height: 49px; }
.lead-form textarea { resize: vertical; margin-bottom: 16px; }
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(30,124,120,.1); }
.form-grid + label { margin-top: 16px; }
.form-note { font-size: .73rem; line-height: 1.5; margin: 10px 0 0; text-align: center; }
.form-error { color: #b8342b; font-size: .86rem; }
.form-success { text-align: center; padding: 44px 24px; color: var(--ink); }
.form-success svg { color: var(--teal); }
.form-success h3 { margin-top: 15px; font-size: 1.6rem; }
.honeypot { position: absolute !important; left: -9999px !important; opacity: 0 !important; pointer-events: none !important; }
.spin { animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.final-cta { position: relative; min-height: 590px; display: grid; align-items: center; color: white; overflow: hidden; }
.final-cta > img, .final-cta__shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.final-cta > img { object-fit: cover; }
.final-cta__shade { background: linear-gradient(90deg, rgba(7,26,31,.94), rgba(7,26,31,.46)); }
.final-cta__inner { position: relative; z-index: 1; }
.final-cta h2 { color: white; max-width: 800px; }
.final-cta p { color: rgba(255,255,255,.7); font-size: 1.08rem; max-width: 650px; }
.final-cta__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

/* Inner page hero */
.page-hero { min-height: 610px; position: relative; display: grid; align-items: end; overflow: hidden; background: var(--night); }
.page-hero > img, .page-hero__overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.page-hero > img { object-fit: cover; }
.page-hero__overlay { background: linear-gradient(90deg, rgba(7,26,31,.94) 0%, rgba(7,26,31,.64) 52%, rgba(7,26,31,.32) 100%), linear-gradient(0deg, rgba(7,26,31,.82), transparent 55%); }
.page-hero__content { position: relative; z-index: 1; color: white; padding-bottom: 82px; padding-top: 150px; }
.page-hero h1 { color: white; max-width: 900px; font-size: clamp(3rem, 6vw, 5.8rem); }
.page-hero p { color: rgba(255,255,255,.72); max-width: 720px; font-size: 1.08rem; }
.back-link { display: inline-flex; align-items: center; gap: 7px; color: rgba(255,255,255,.68); margin-bottom: 40px; font-size: .86rem; }

.about-story-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center; }
.about-story-copy p:not(.lead) { font-size: 1rem; }
.about-story-copy .btn { margin-top: 14px; }
.about-story-images { position: relative; min-height: 660px; }
.about-story-images__main { width: 78%; height: 620px; object-fit: cover; border-radius: 34px; margin-left: auto; }
.about-story-images__small { position: absolute; width: 46%; height: 270px; object-fit: cover; left: 0; bottom: 18px; border: 10px solid var(--paper); border-radius: 26px; }
.about-story-images__card { position: absolute; left: 16px; top: 34px; background: var(--night); color: white; padding: 18px; border-radius: 18px; max-width: 210px; box-shadow: var(--shadow); }
.about-story-images__card svg { color: var(--gold); }
.about-story-images__card strong, .about-story-images__card span { display: block; }
.about-story-images__card strong { margin: 9px 0 3px; }
.about-story-images__card span { color: rgba(255,255,255,.62); font-size: .82rem; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.values-grid--four { grid-template-columns: repeat(4,1fr); }
.value-card { padding: 32px; border-radius: 24px; background: white; border: 1px solid var(--line); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.value-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.value-card > span { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 15px; background: var(--cream); color: var(--teal); margin-bottom: 25px; }
.value-card p { margin-bottom: 0; }
.split-feature { display: grid; grid-template-columns: 1fr 1fr; gap: 85px; align-items: center; }
.split-feature--reverse .split-feature__media { order: 2; }
.split-feature__media { position: relative; min-height: 560px; }
.split-feature__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: 32px; }
.split-feature__stat { position: absolute; right: -20px; bottom: 28px; padding: 20px 24px; background: var(--gold); color: var(--night); border-radius: 18px; box-shadow: var(--shadow); }
.split-feature__stat strong, .split-feature__stat span { display: block; }
.split-feature__stat strong { font-size: 1.8rem; font-family: Inter, ui-sans-serif, system-ui, sans-serif; }
.split-feature__stat span { font-size: .8rem; font-weight: 700; }
.small-print { font-size: .8rem; }

.feature-card-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.feature-card { background: white; border-radius: 25px; overflow: hidden; border: 1px solid rgba(11,31,36,.08); transition: transform .3s ease, box-shadow .3s ease; }
.feature-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.feature-card__image { height: 230px; position: relative; overflow: hidden; }
.feature-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.feature-card:hover img { transform: scale(1.07); }
.feature-card__image span { position: absolute; left: 18px; bottom: 18px; width: 45px; height: 45px; display: grid; place-items: center; border-radius: 14px; background: var(--gold); color: var(--night); }
.feature-card__body { padding: 24px; }
.feature-card__body p { margin-bottom: 0; }
.membership-flow__grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; align-items: start; }
.question-stack { display: grid; gap: 14px; }
.question-card { display: grid; grid-template-columns: 54px 1fr; gap: 20px; padding: 24px; border-radius: 20px; border: 1px solid var(--line); background: white; }
.question-card > span { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; background: var(--cream); color: var(--teal); font-weight: 800; }
.question-card p { margin: 5px 0 0; }
.dark-panel { background: var(--night); color: white; }
.dark-panel__grid { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 70px; }
.dark-panel h2 { color: white; max-width: 800px; }
.dark-panel p { color: rgba(255,255,255,.68); max-width: 700px; }
.dark-panel__action { display: flex; flex-direction: column; gap: 10px; min-width: 230px; }

.experience-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.experience-card { height: 520px; position: relative; border-radius: 28px; overflow: hidden; }
.experience-card > img, .experience-card__shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.experience-card > img { object-fit: cover; transition: transform .7s ease; }
.experience-card:hover > img { transform: scale(1.06); }
.experience-card__shade { background: linear-gradient(0deg, rgba(7,26,31,.9), transparent 62%); }
.experience-card__tag { position: absolute; top: 20px; left: 20px; padding: 9px 13px; border-radius: 999px; background: rgba(255,255,255,.88); color: var(--night); font-size: .76rem; font-weight: 700; }
.experience-card__content { position: absolute; left: 25px; right: 25px; bottom: 24px; color: white; }
.experience-card h3 { color: white; font-size: 1.8rem; }
.experience-card p { color: rgba(255,255,255,.68); max-width: 480px; margin-bottom: 0; padding-right: 55px; }
.journey-banner { background: linear-gradient(135deg, #14383e, #0a2328); color: white; }
.journey-banner__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; }
.journey-banner h2 { color: white; }
.journey-banner p { color: rgba(255,255,255,.68); }
.journey-banner__image { position: relative; height: 430px; border-radius: 28px; overflow: hidden; }
.journey-banner__image img { width: 100%; height: 100%; object-fit: cover; }
.journey-banner__image span { position: absolute; left: 18px; bottom: 18px; display: flex; align-items: center; gap: 8px; color: var(--night); background: var(--gold); padding: 11px 15px; border-radius: 999px; font-weight: 700; }

.opportunity-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 85px; }
.expectation-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.expectation-card { border-radius: 28px; padding: 38px; }
.expectation-card > svg { color: var(--teal); }
.expectation-card h2 { font-size: clamp(2rem,3.2vw,3rem); margin-top: 20px; }
.expectation-card--yes { background: #edf7f4; }
.expectation-card--no { background: #fff0ec; }
.opportunity-steps { background: var(--cream); }
.opportunity-steps__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 15px; }
.opportunity-step { background: white; border-radius: 22px; padding: 28px; border: 1px solid var(--line); }
.opportunity-step > span { font-size: .75rem; letter-spacing: .13em; color: var(--teal); font-weight: 800; }
.opportunity-step h3 { margin-top: 28px; }
.opportunity-step p { margin-bottom: 0; }

.faq-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 85px; align-items: start; }
.faq-layout__intro { position: sticky; top: 120px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button { width: 100%; padding: 24px 0; background: transparent; display: flex; align-items: center; justify-content: space-between; gap: 20px; text-align: left; color: var(--ink); font-weight: 700; cursor: pointer; }
.faq-item button svg { transition: transform .3s ease; }
.faq-item--open button svg { transform: rotate(180deg); }
.faq-item__answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s ease; }
.faq-item__answer p { overflow: hidden; margin: 0; }
.faq-item--open .faq-item__answer { grid-template-rows: 1fr; }
.faq-item--open .faq-item__answer p { padding: 0 48px 24px 0; }

.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 85px; align-items: start; }
.contact-info { position: sticky; top: 120px; }
.contact-cards { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin-top: 30px; }
.contact-cards > * { min-height: 120px; padding: 18px; border-radius: 18px; background: var(--cream); display: flex; align-items: flex-start; gap: 12px; }
.contact-cards svg { color: var(--teal); flex: 0 0 auto; }
.contact-cards span, .contact-cards small { display: block; }
.contact-cards span { font-weight: 700; font-size: .9rem; }
.contact-cards small { color: var(--muted); margin-bottom: 5px; }
.contact-form-card { padding: 36px; border-radius: 28px; background: white; box-shadow: var(--shadow); border: 1px solid var(--line); }
.contact-form-card > p { margin-top: 5px; }
.legal-content { max-width: 820px; }
.legal-content section { padding: 28px 0; border-bottom: 1px solid var(--line); }
.legal-content section h2 { font-size: 1.55rem; }
.legal-updated { font-weight: 700; color: var(--teal); }
.not-found { min-height: 100vh; background: var(--night); color: white; display: grid; place-items: center; text-align: center; padding: 120px 20px; }
.not-found span { font-size: 7rem; line-height: 1; color: var(--gold); font-weight: 800; }
.not-found h1 { color: white; font-size: clamp(2.3rem,5vw,4.5rem); margin-top: 20px; }
.not-found p { color: rgba(255,255,255,.65); }

/* Footer */
.footer { position: relative; background: #051418; color: white; padding: 88px 0 22px; overflow: hidden; }
.footer__glow { position: absolute; width: 520px; height: 520px; border-radius: 50%; right: -230px; top: -250px; background: radial-gradient(circle, rgba(44,179,166,.2), transparent 70%); }
.footer__grid { position: relative; display: grid; grid-template-columns: 1.45fr .7fr .7fr 1fr; gap: 60px; }
.footer__brand-col p { color: rgba(255,255,255,.56); max-width: 360px; }
.footer h4 { color: white; margin-bottom: 20px; font-size: 1rem; }
.footer__grid > div:not(:first-child) { display: flex; flex-direction: column; gap: 12px; }
.footer__grid a, .footer__grid span { color: rgba(255,255,255,.6); font-size: .88rem; display: inline-flex; align-items: flex-start; gap: 8px; }
.footer__grid a:hover { color: var(--gold); }
.social-row { display: flex; gap: 8px; margin-top: 22px; }
.social-row a { width: 40px; height: 40px; display: grid !important; place-items: center; border-radius: 50%; background: rgba(255,255,255,.08); }
.footer__join { color: var(--gold) !important; font-weight: 700; margin-top: 8px; }
.footer__bottom { margin-top: 60px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: center; text-align: center; }
.footer__credit { color: rgba(255,255,255,.68); font-size: .78rem; letter-spacing: .02em; transition: color .25s ease; }
.footer__credit:hover { color: var(--gold); }

@media (max-width: 1100px) {
  .desktop-nav { gap: 18px; }
  .hero__inner { gap: 35px; }
  .travel-pass { right: 0; }
  .bento-grid { grid-template-columns: repeat(2,1fr); }
  .destination-track { grid-template-columns: repeat(2,1fr); }
  .values-grid--four { grid-template-columns: repeat(2,1fr); }
  .feature-card-grid { grid-template-columns: repeat(2,1fr); }
  .opportunity-steps__grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 900px) {
  .section { padding: 86px 0; }
  .desktop-nav, .desktop-cta { display: none; }
  .menu-toggle { display: grid; }
  .mobile-panel { display: block; position: absolute; top: 100%; left: 0; right: 0; background: rgba(7,26,31,.98); backdrop-filter: blur(18px); max-height: 0; overflow: hidden; transition: max-height .4s ease; }
  .mobile-panel--open { max-height: 520px; }
  .mobile-panel__inner { padding: 18px 0 28px; display: grid; gap: 4px; }
  .mobile-panel__inner > a:not(.btn) { padding: 12px 4px; border-bottom: 1px solid rgba(255,255,255,.08); color: white; }
  .mobile-panel__inner .btn { margin-top: 14px; }
  .hero { min-height: 960px; align-items: start; }
  .hero__inner { grid-template-columns: 1fr; padding-top: 170px; gap: 15px; }
  .hero__copy { max-width: 760px; }
  .hero__cards { min-height: 360px; width: min(620px,100%); }
  .travel-pass { left: 0; right: auto; top: 55px; width: min(430px,80%); }
  .float-card--world { right: 5%; }
  .hero__rail { display: none; }
  .trust-strip__grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .editorial-grid, .section-heading--split, .dark-story__grid, .process-grid, .opportunity-teaser__grid, .lead-section__grid, .about-story-grid, .split-feature, .membership-flow__grid, .journey-banner__grid, .opportunity-intro, .faq-layout, .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .editorial-grid__copy { padding-top: 0; }
  .collage { grid-template-columns: 1fr; grid-template-rows: 450px 300px auto; }
  .collage__main { grid-row: auto; }
  .collage__note { min-height: 100px; }
  .dark-story__media { min-height: 430px; }
  .process-intro, .faq-layout__intro, .contact-info { position: static; }
  .opportunity-teaser__image { min-height: 520px; }
  .opportunity-teaser__badge { right: 20px; }
  .values-grid { grid-template-columns: 1fr; }
  .split-feature--reverse .split-feature__media { order: 0; }
  .dark-panel__grid { grid-template-columns: 1fr; gap: 30px; }
  .dark-panel__action { flex-direction: row; flex-wrap: wrap; }
  .footer__grid { grid-template-columns: repeat(2,1fr); }
  .footer__bottom { justify-content: center; }
}

@media (max-width: 650px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section { padding: 72px 0; }
  h1 { font-size: clamp(3rem, 15vw, 4.2rem); }
  h2 { font-size: clamp(2.15rem, 10vw, 3.2rem); }
  .site-header { padding: 12px 0; }
  .brand__word { font-size: 1.22rem; }
  .hero { min-height: 900px; }
  .hero__inner { padding-top: 135px; }
  .hero__copy > p { font-size: 1rem; }
  .hero__actions .btn { width: 100%; }
  .hero__proof { align-items: flex-start; }
  .hero__cards { min-height: 300px; }
  .travel-pass { top: 35px; width: 88%; padding: 22px; border-radius: 23px; }
  .travel-pass__route { margin: 42px 0 30px; font-size: .78rem; gap: 8px; }
  .travel-pass__route div { width: 40px; height: 40px; }
  .travel-pass__route div::before, .travel-pass__route div::after { width: 35px; }
  .travel-pass__meta { font-size: .72rem; }
  .float-card { padding: 10px 12px; font-size: .76rem; }
  .float-card--save { top: 0; left: auto; right: 0; }
  .float-card--world { bottom: 8px; }
  .collage { grid-template-rows: 350px 250px auto; }
  .collage__caption { left: 12px; right: 12px; bottom: 12px; font-size: .8rem; }
  .bento-grid { grid-template-columns: 1fr; grid-auto-rows: 340px; }
  .bento-card--wide { grid-column: auto; }
  .destination-track { grid-template-columns: 1fr; }
  .destination-card { height: 440px; }
  .process-step { grid-template-columns: 48px 1fr; gap: 15px; }
  .process-step > svg { display: none; }
  .form-grid { grid-template-columns: 1fr; }
  .lead-section__form, .contact-form-card { padding: 20px; }
  .page-hero { min-height: 560px; }
  .page-hero__content { padding-bottom: 58px; }
  .about-story-images { min-height: 520px; }
  .about-story-images__main { width: 90%; height: 490px; }
  .about-story-images__small { width: 52%; height: 180px; border-width: 7px; }
  .about-story-images__card { top: 18px; left: 0; max-width: 175px; }
  .split-feature__media { min-height: 430px; }
  .split-feature__stat { right: 10px; }
  .feature-card-grid, .experience-grid, .expectation-grid, .values-grid--four, .opportunity-steps__grid, .contact-cards { grid-template-columns: 1fr; }
  .experience-card { height: 450px; }
  .dark-panel__action { flex-direction: column; }
  .dark-panel__action .btn { width: 100%; }
  .journey-banner__image { height: 330px; }
  .footer__grid { grid-template-columns: 1fr; gap: 38px; }
  .footer { padding-top: 68px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

/* Final Jetsetzy header and supplied brand logo */
.site-header {
  padding: 12px 0;
  background: linear-gradient(180deg, rgba(5, 12, 22, .72), rgba(5, 12, 22, .18));
}
.site-header--scrolled {
  padding: 8px 0;
  background: rgba(5, 12, 22, .95);
}
.header-inner {
  width: min(1320px, calc(100% - 28px));
  min-height: 68px;
  gap: 18px;
}
.brand {
  flex: 0 0 auto;
  display: inline-flex;
  width: 148px;
  height: 58px;
  border-radius: 10px;
  overflow: hidden;
  background: #050505;
  line-height: 0;
}
.brand__image {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center;
}
.desktop-nav {
  flex: 1 1 auto;
  justify-content: flex-end;
  gap: 11px;
  min-width: 0;
}
.desktop-nav a {
  white-space: nowrap;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: -.01em;
  padding: 9px 0;
}
.desktop-nav a::after { bottom: 1px; }
.desktop-nav .nav-contact {
  min-height: 40px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: var(--night);
  background: var(--gold);
  box-shadow: 0 10px 28px rgba(245, 184, 106, .2);
}
.desktop-nav .nav-contact::after { display: none; }
.desktop-nav .nav-contact:hover,
.desktop-nav .nav-contact.active { color: var(--night); background: #ffc67c; }
.header-actions { display: none; }
.menu-toggle { flex: 0 0 auto; }
.hero__inner { padding-top: 125px; }
.page-hero__content { padding-top: 150px; }
.footer .brand {
  width: 184px;
  height: 78px;
  margin-bottom: 18px;
}

@media (max-width: 1210px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: grid; }
  .mobile-panel {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(5, 12, 22, .98);
    backdrop-filter: blur(18px);
    max-height: 0;
    overflow: hidden;
    transition: max-height .38s ease;
  }
  .mobile-panel--open { max-height: calc(100vh - 92px); overflow-y: auto; }
  .mobile-panel__inner { padding: 12px 0 24px; display: grid; gap: 0; }
  .mobile-panel__inner a {
    padding: 13px 4px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    color: rgba(255,255,255,.88);
    font-weight: 650;
  }
  .mobile-panel__inner a.active { color: var(--gold); }
}

@media (max-width: 650px) {
  .site-header { padding: 8px 0; }
  .header-inner { min-height: 62px; }
  .brand { width: 132px; height: 52px; }
  .hero__inner { padding-top: 112px; }
  .page-hero__content { padding-top: 120px; }
  .mobile-panel--open { max-height: calc(100vh - 78px); }
  .footer .brand { width: 172px; height: 72px; }
}

/* =========================================================
   Jetsetzy brand expansion — purple, coral, orange, black
   ========================================================= */
html { background: #fff; }
body { background: var(--paper); }
::selection { background: var(--purple-bright); color: white; }

h1 { font-size: clamp(4rem, 8vw, 8rem); line-height: .9; }
h2 { font-size: clamp(2.8rem, 5.5vw, 5.5rem); line-height: .98; }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }

.section--sand { background: linear-gradient(180deg, #fff8f4 0%, #f4e9f7 58%, #fff6ef 100%); }
.eyebrow { color: var(--purple); }
.eyebrow--light { color: #f2dfff; }
.text-link { color: var(--purple); }
.text-link:hover { color: var(--gold-deep); }

.btn--accent {
  color: white;
  background: linear-gradient(135deg, var(--purple) 0%, #9d2cff 48%, var(--gold) 100%);
  box-shadow: 0 14px 36px rgba(123, 44, 191, .3), 0 8px 24px rgba(255, 122, 0, .16);
}
.btn--accent:hover {
  color: white;
  background: linear-gradient(135deg, #8129c9 0%, #b53dff 48%, #ff8b21 100%);
  box-shadow: 0 18px 44px rgba(123, 44, 191, .38), 0 10px 28px rgba(255, 122, 0, .22);
}
.btn--dark { background: #100617; }
.btn--dark:hover { background: var(--purple); }

.site-header {
  background: linear-gradient(180deg, rgba(4, 1, 8, .93), rgba(15, 3, 24, .55), transparent);
  padding: 10px 0;
}
.site-header--scrolled {
  background: rgba(7, 2, 12, .96);
  border-bottom: 1px solid rgba(199, 125, 255, .18);
  box-shadow: 0 18px 50px rgba(0,0,0,.32);
}
.header-inner {
  width: min(1460px, calc(100% - 30px));
  min-height: 88px;
  gap: 14px;
}
.brand {
  width: 218px;
  height: 88px;
  border-radius: 12px;
  background: #000;
  box-shadow: 0 0 0 1px rgba(199,125,255,.2), 0 16px 45px rgba(78, 0, 130, .22);
}
.brand__image { object-fit: contain; }
.desktop-nav { gap: 9px; }
.desktop-nav a {
  font-size: .69rem;
  color: rgba(255,255,255,.8);
  padding: 10px 0;
}
.desktop-nav a::after { background: linear-gradient(90deg, var(--purple-bright), var(--gold)); }
.header-referral {
  min-height: 44px;
  padding: 0 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  flex: 0 0 auto;
  border-radius: 999px;
  color: white;
  font-size: .78rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--purple) 0%, var(--coral) 55%, var(--gold) 100%);
  box-shadow: 0 12px 28px rgba(123, 44, 191, .32);
  transition: transform .25s ease, box-shadow .25s ease;
}
.header-referral:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(255, 79, 129, .28); }
.mobile-referral {
  margin-top: 16px;
  min-height: 50px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0 !important;
  border-radius: 999px;
  color: white !important;
  font-weight: 800 !important;
  background: linear-gradient(135deg, var(--purple), var(--coral), var(--gold));
}
.menu-toggle { background: rgba(157,44,255,.22); border: 1px solid rgba(255,255,255,.15); }

.hero--brand { min-height: 920px; }
.hero__shade {
  background:
    radial-gradient(circle at 78% 30%, rgba(157,44,255,.25), transparent 34%),
    linear-gradient(90deg, rgba(5,1,10,.98) 0%, rgba(25,4,38,.92) 42%, rgba(106,13,173,.35) 72%, rgba(5,1,10,.58) 100%),
    linear-gradient(0deg, rgba(5,1,10,.86) 0%, transparent 45%);
}
.hero__orb--one { background: radial-gradient(circle, rgba(157,44,255,.55), transparent 68%); }
.hero__orb--two { background: radial-gradient(circle, rgba(255,122,0,.32), transparent 70%); }
.hero__copy > p { font-size: clamp(1.08rem, 1.5vw, 1.3rem); max-width: 700px; }
.hero__lead { font-weight: 750; line-height: 1.55; text-wrap: balance; color: rgba(255,255,255,.92); }
.brand-pass {
  background: linear-gradient(145deg, rgba(157,44,255,.32), rgba(255,79,129,.13) 45%, rgba(255,122,0,.13));
  border-color: rgba(255,255,255,.34);
  box-shadow: 0 38px 90px rgba(0,0,0,.38), 0 0 70px rgba(157,44,255,.18);
}
.travel-pass__route div, .icon-chip { color: white; background: linear-gradient(135deg, var(--purple-bright), var(--coral), var(--gold)); }
.avatar-stack span:first-child { background: #c77dff; color: white; }
.avatar-stack span { background: #ff93b1; color: #260a30; }
.avatar-stack span:last-child { background: var(--gold); }

.brand-pillars-strip { border-bottom-color: rgba(106,13,173,.12); }
.trust-item > svg { color: var(--purple); }
.trust-item:hover { background: linear-gradient(180deg, rgba(123,44,191,.045), rgba(255,122,0,.035)); }

.collage__note { background: linear-gradient(135deg, #0b0310, #3b0754); }
.collage__note strong { color: #ff8c2f; }
.collage__caption svg { color: var(--coral); }
.brand-bento-grid .bento-card__overlay { background: linear-gradient(0deg, rgba(10,2,14,.96), rgba(39,4,54,.1) 74%); }
.brand-bento-grid .bento-card { box-shadow: 0 24px 54px rgba(69, 13, 92, .15); }

.smart-travel-spotlight {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 85% 25%, rgba(255,122,0,.22), transparent 34%),
    radial-gradient(circle at 10% 80%, rgba(157,44,255,.26), transparent 36%),
    linear-gradient(135deg, #060109 0%, #260536 52%, #6a0dad 100%);
}
.smart-travel-spotlight__glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  right: -190px;
  bottom: -230px;
  background: radial-gradient(circle, rgba(255,122,0,.35), transparent 68%);
}
.smart-travel-spotlight__grid { position: relative; display: grid; grid-template-columns: 1.05fr .75fr; gap: 90px; align-items: center; }
.smart-travel-spotlight h2 { color: white; }
.smart-travel-spotlight p { color: rgba(255,255,255,.72); font-size: 1.08rem; max-width: 760px; }
.smart-travel-spotlight__actions, .button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.smart-travel-spotlight__visual { min-height: 430px; position: relative; display: grid; place-items: center; }
.spotlight-orbit { position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,.24); }
.spotlight-orbit--one { width: 350px; height: 350px; animation: orbitSpin 16s linear infinite; }
.spotlight-orbit--two { width: 255px; height: 255px; border-style: dashed; animation: orbitSpin 11s linear infinite reverse; }
.spotlight-card { position: relative; z-index: 2; width: min(340px, 90%); padding: 34px; border-radius: 28px; text-align: center; background: rgba(10,2,15,.6); border: 1px solid rgba(255,255,255,.24); backdrop-filter: blur(16px); box-shadow: 0 30px 70px rgba(0,0,0,.3); }
.spotlight-card svg { color: var(--gold); margin-inline: auto; }
.spotlight-card strong, .spotlight-card span { display: block; }
.spotlight-card strong { margin: 18px 0 10px; font-size: 1.4rem; }
.spotlight-card span { color: rgba(255,255,255,.66); line-height: 1.6; font-size: .9rem; }
@keyframes orbitSpin { to { transform: rotate(360deg); } }

.current-tours-track .destination-card { box-shadow: 0 24px 55px rgba(59, 8, 79, .17); }
.destination-card__shade { background: linear-gradient(0deg, rgba(8,2,13,.96), rgba(106,13,173,.08) 75%); }
.destination-card__count { background: linear-gradient(135deg, var(--purple-bright), var(--gold)); }
.tour-date, .world-tour-date { color: rgba(255,255,255,.82) !important; display: flex; align-items: center; gap: 7px; margin: 9px 0 0; font-size: .84rem; }
.section-action { margin-top: 42px; }
.world-tour-grid { grid-template-columns: repeat(3,1fr); }

.book-section { overflow: hidden; background: linear-gradient(135deg, #fff 0%, #faf0ff 48%, #fff2e7 100%); }
.book-section__grid { display: grid; grid-template-columns: .85fr 1.05fr; align-items: center; gap: 110px; }
.book-visual { position: relative; min-height: 540px; display: grid; place-items: center; perspective: 1200px; }
.book-mockup { position: relative; width: 310px; height: 440px; transform: rotateY(-14deg) rotateZ(-3deg); filter: drop-shadow(0 36px 34px rgba(42,6,59,.28)); }
.book-mockup__cover { position: absolute; inset: 0 0 0 27px; border-radius: 8px 20px 20px 8px; padding: 48px 34px; display: flex; flex-direction: column; justify-content: space-between; color: white; background: radial-gradient(circle at 80% 20%, rgba(255,122,0,.8), transparent 30%), linear-gradient(145deg, #12031b, #6a0dad 48%, #ff4f81 78%, #ff7a00); box-shadow: inset -16px 0 30px rgba(0,0,0,.2); }
.book-mockup__cover::before { content: ''; position: absolute; inset: 18px; border: 1px solid rgba(255,255,255,.28); border-radius: 6px 14px 14px 6px; }
.book-mockup__cover span, .book-mockup__cover strong, .book-mockup__cover small { position: relative; z-index: 1; }
.book-mockup__cover span { font-size: .7rem; letter-spacing: .22em; font-weight: 800; }
.book-mockup__cover strong { font-size: 2.25rem; line-height: 1.02; letter-spacing: -.05em; }
.book-mockup__cover small { font-size: .82rem; letter-spacing: .12em; }
.book-mockup__spine { position: absolute; left: 0; top: 11px; bottom: 11px; width: 36px; border-radius: 8px 0 0 8px; display: grid; place-items: center; writing-mode: vertical-rl; transform: rotate(180deg); color: white; font-weight: 800; letter-spacing: .18em; background: #100217; }
.book-spark { position: absolute; border-radius: 50%; filter: blur(1px); }
.book-spark--one { width: 135px; height: 135px; left: 4%; top: 8%; background: radial-gradient(circle, rgba(157,44,255,.32), transparent 70%); }
.book-spark--two { width: 180px; height: 180px; right: 1%; bottom: 5%; background: radial-gradient(circle, rgba(255,122,0,.3), transparent 70%); }

.opportunity-teaser { background: linear-gradient(180deg, #fff8f4, #f6ebfa); }
.opportunity-teaser__badge { box-shadow: 0 20px 52px rgba(84, 11, 113, .22); }
.lead-section { background: radial-gradient(circle at 10% 10%, rgba(157,44,255,.24), transparent 34%), linear-gradient(135deg, #08030d, #3a0750 62%, #6a0dad); }
.contact-points span svg { color: #ff9b38; }
.lead-form { border: 1px solid rgba(123,44,191,.13); box-shadow: 0 24px 60px rgba(32, 4, 45, .25); }

.final-cta--brand .final-cta__shade { background: linear-gradient(90deg, rgba(5,1,9,.96), rgba(75,5,101,.82), rgba(255,79,129,.25)); }
.hero-socials { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero-socials a, .about-social-links a { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; }
.hero-socials a { color: rgba(255,255,255,.76); padding: 9px 13px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; }
.about-social-links { display: grid; gap: 10px; margin-top: 28px; }
.about-social-links a { color: var(--purple); }
.about-social-links svg { width: 19px; height: 19px; }

.page-hero__overlay {
  background:
    radial-gradient(circle at 82% 25%, rgba(157,44,255,.2), transparent 35%),
    linear-gradient(90deg, rgba(5,1,9,.96) 0%, rgba(31,4,43,.78) 52%, rgba(106,13,173,.34) 100%),
    linear-gradient(0deg, rgba(5,1,9,.84), transparent 58%);
}
.page-hero h1 { font-size: clamp(3.8rem, 7vw, 7rem); }
.page-hero p { font-size: clamp(1.05rem, 1.5vw, 1.25rem); }

.dark-story, .dark-panel, .journey-banner { background: linear-gradient(135deg, #07020b 0%, #260535 58%, #4e086e 100%); }
.dark-story__glow, .footer__glow { background: radial-gradient(circle, rgba(157,44,255,.3), transparent 68%); }
.check-list li svg { background: #f0e0fb; color: var(--purple); }
.value-card > span, .feature-card__image > span { background: linear-gradient(135deg, var(--purple), var(--coral), var(--gold)); color: white; }
.process-step > span, .opportunity-step > span { color: var(--purple); }
.process-step:hover { border-color: rgba(123,44,191,.35); box-shadow: 0 18px 45px rgba(75,8,99,.11); }

.footer { background: radial-gradient(circle at 88% 5%, rgba(157,44,255,.22), transparent 28%), #050107; }
.footer__brand-col p { max-width: 420px; }
.footer__join { margin-top: 12px; padding: 12px 16px; border-radius: 999px; color: white !important; background: linear-gradient(135deg, var(--purple), var(--coral), var(--gold)); width: fit-content; }
.footer__handle { font-size: .86rem !important; }
.footer__grid a:hover { color: #ff9b38; }
.footer__credit:hover { color: #ff9b38; }
.footer .brand { width: 250px; height: 104px; }

@media (max-width: 1450px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: grid; }
  .header-referral { margin-left: auto; }
  .mobile-panel {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(7, 2, 12, .985);
    backdrop-filter: blur(20px);
    max-height: 0;
    overflow: hidden;
    transition: max-height .38s ease;
  }
  .mobile-panel--open { max-height: calc(100vh - 108px); overflow-y: auto; }
}

@media (max-width: 1000px) {
  .smart-travel-spotlight__grid, .book-section__grid { grid-template-columns: 1fr; gap: 50px; }
  .smart-travel-spotlight__visual { min-height: 360px; }
  .book-visual { min-height: 480px; }
  .world-tour-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 760px) {
  h1 { font-size: clamp(3.35rem, 17vw, 5.1rem); }
  h2 { font-size: clamp(2.45rem, 11vw, 4.1rem); }
  .header-inner { min-height: 72px; }
  .brand { width: 172px; height: 70px; }
  .header-referral { display: none; }
  .hero--brand { min-height: 900px; }
  .hero__inner { padding-top: 128px; }
  .hero__rail { gap: 9px; font-size: .62rem; letter-spacing: .08em; }
  .hero__rail i { width: 12px; }
  .smart-travel-spotlight__actions, .button-row { flex-direction: column; align-items: stretch; }
  .smart-travel-spotlight__actions .btn, .button-row .btn { width: 100%; }
  .world-tour-grid { grid-template-columns: 1fr; }
  .book-mockup { width: 255px; height: 370px; }
  .book-mockup__cover strong { font-size: 1.85rem; }
  .footer .brand { width: 220px; height: 92px; }
}

/* Social text-only items when an exact profile URL is not confirmed */
.social-row span {
  width: 40px;
  height: 40px;
  display: grid !important;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.72) !important;
}
.hero-socials span {
  color: rgba(255,255,255,.76);
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}
.about-social-links span {
  color: var(--purple);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}
.about-social-links span svg { width: 19px; height: 19px; }

/* =========================================================
   Premium header + lead form refinement (final override)
   ========================================================= */
.premium-header {
  padding: 14px 0 0;
  background: linear-gradient(180deg, rgba(4, 1, 8, .92) 0%, rgba(4, 1, 8, .48) 66%, transparent 100%);
}
.premium-header.site-header--scrolled {
  padding: 8px 0 0;
  background: linear-gradient(180deg, rgba(5, 1, 9, .98), rgba(12, 2, 20, .94));
  border-bottom: 0;
}
.premium-header__shell {
  width: min(1540px, calc(100% - 34px));
  padding: 0 22px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(16, 4, 25, .88), rgba(31, 7, 48, .69));
  box-shadow: 0 22px 60px rgba(0,0,0,.26), inset 0 1px 0 rgba(255,255,255,.06);
  backdrop-filter: blur(22px) saturate(135%);
  -webkit-backdrop-filter: blur(22px) saturate(135%);
  transition: border-radius .3s ease, background .3s ease, box-shadow .3s ease;
}
.site-header--scrolled .premium-header__shell {
  background: rgba(10, 2, 17, .94);
  box-shadow: 0 18px 50px rgba(0,0,0,.38);
}
.premium-header__top {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.premium-header__identity {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 0;
}
.premium-header .brand {
  width: 224px;
  height: 78px;
  border-radius: 14px;
  box-shadow: 0 0 0 1px rgba(196, 100, 255, .28), 0 14px 36px rgba(0,0,0,.28), 0 0 30px rgba(157,44,255,.10);
}
.premium-header__brand-copy {
  display: grid;
  gap: 5px;
  padding-left: 20px;
  border-left: 1px solid rgba(255,255,255,.13);
}
.premium-header__brand-copy strong {
  color: white;
  font-size: 1.08rem;
  letter-spacing: -.02em;
}
.premium-header__brand-copy span {
  color: rgba(255,255,255,.55);
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.premium-header .header-referral {
  margin-left: auto;
  min-height: 50px;
  padding: 0 22px;
  font-size: .88rem;
  letter-spacing: -.01em;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 14px 34px rgba(123,44,191,.28), inset 0 1px 0 rgba(255,255,255,.22);
}
.premium-header__nav {
  min-height: 52px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: clamp(14px, 1.35vw, 25px);
}
.premium-header__nav a {
  padding: 16px 0 14px;
  font-size: clamp(.75rem, .72vw, .86rem);
  font-weight: 750;
  letter-spacing: -.015em;
  color: rgba(255,255,255,.72);
}
.premium-header__nav a::after {
  left: 50%;
  right: 50%;
  bottom: 8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #a239ff, #ff4f81, #ff8a19);
}
.premium-header__nav a:hover::after,
.premium-header__nav a.active::after { left: 0; right: 0; }
.premium-header__nav a:hover,
.premium-header__nav a.active { color: white; }
.premium-header .menu-toggle {
  width: 48px;
  height: 48px;
  margin-left: auto;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(157,44,255,.28), rgba(255,79,129,.18));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
}
.premium-header + main .hero__inner,
.premium-header ~ main .hero__inner { padding-top: 205px; }
.premium-header + main .page-hero__content,
.premium-header ~ main .page-hero__content { padding-top: 205px; }

/* One clean, high-end form card — no nested white boxes */
.lead-section__form {
  padding: 0;
  background: transparent;
  border-radius: 32px;
  box-shadow: none;
}
.premium-lead-form,
.premium-lead-form * {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.premium-lead-form {
  position: relative;
  isolation: isolate;
  padding: 34px;
  color: var(--ink);
  border: 1px solid rgba(123,44,191,.16);
  border-radius: 30px;
  background:
    radial-gradient(circle at 100% 0%, rgba(157,44,255,.10), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,.99), rgba(255,250,255,.98));
  box-shadow: 0 34px 90px rgba(17, 2, 25, .32), inset 0 1px 0 rgba(255,255,255,.95);
  overflow: hidden;
}
.premium-lead-form::before {
  content: '';
  position: absolute;
  z-index: -1;
  width: 180px;
  height: 180px;
  right: -90px;
  bottom: -100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,122,0,.14), transparent 70%);
}
.premium-lead-form__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(106,13,173,.10);
}
.premium-lead-form__icon {
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: white;
  background: linear-gradient(135deg, #6a0dad, #a52cff 52%, #ff6f32);
  box-shadow: 0 12px 26px rgba(123,44,191,.25);
}
.premium-lead-form__head span {
  display: block;
  margin-bottom: 3px;
  color: var(--purple);
  font-size: .71rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.premium-lead-form__head h3 {
  font-size: clamp(1.22rem, 1.8vw, 1.58rem);
  letter-spacing: -.035em;
}
.premium-lead-form .form-grid { gap: 17px; }
.premium-lead-form label > span {
  margin: 0 0 8px 2px;
  color: #34213e;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: -.01em;
}
.premium-lead-form input,
.premium-lead-form select,
.premium-lead-form textarea {
  min-width: 0;
  border: 1px solid rgba(55, 33, 67, .15);
  border-radius: 16px;
  background: #ffffff;
  color: #1c1023;
  font-size: .96rem;
  font-weight: 520;
  box-shadow: 0 7px 18px rgba(42, 9, 56, .035);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease, background .2s ease;
}
.premium-lead-form input,
.premium-lead-form select { min-height: 56px; padding: 0 16px; }
.premium-lead-form textarea { min-height: 124px; padding: 15px 16px; margin-bottom: 17px; }
.premium-lead-form input::placeholder,
.premium-lead-form textarea::placeholder { color: #8b7e92; opacity: 1; }
.premium-lead-form input:hover,
.premium-lead-form select:hover,
.premium-lead-form textarea:hover { border-color: rgba(123,44,191,.33); }
.premium-lead-form input:focus,
.premium-lead-form select:focus,
.premium-lead-form textarea:focus {
  border-color: #9d2cff;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(157,44,255,.10), 0 12px 24px rgba(74,14,96,.07);
}
.premium-lead-form .message-field { margin-top: 18px; }
.premium-lead-form__submit {
  min-height: 58px;
  border: 1px solid rgba(255,255,255,.24);
  font-size: .93rem;
  font-weight: 850;
  letter-spacing: -.01em;
  box-shadow: 0 16px 34px rgba(123,44,191,.28), 0 9px 24px rgba(255,122,0,.18);
}
.premium-lead-form__submit:hover { transform: translateY(-3px) scale(1.005); }
.premium-lead-form__submit:disabled { cursor: wait; opacity: .72; transform: none; }
.premium-lead-form .form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 13px 0 0;
  color: #6e5e75;
  font-size: .73rem;
  font-weight: 600;
}
.premium-lead-form .form-note svg { color: var(--purple); }

@media (max-width: 1480px) {
  .premium-header__brand-copy { display: none; }
  .premium-header__nav { gap: 14px; }
  .premium-header__nav a { font-size: .75rem; }
}
@media (max-width: 1240px) {
  .premium-header { padding-top: 9px; }
  .premium-header__shell { padding: 0 15px; border-radius: 20px; }
  .premium-header__top { min-height: 76px; border-bottom: 0; }
  .premium-header .brand { width: 190px; height: 68px; }
  .premium-header__nav { display: none; }
  .premium-header .menu-toggle { display: grid; }
  .premium-header .header-referral { margin-left: auto; }
  .premium-header .mobile-panel {
    top: calc(100% + 8px);
    left: 17px;
    right: 17px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 22px;
    box-shadow: 0 30px 70px rgba(0,0,0,.38);
  }
  .premium-header + main .hero__inner,
  .premium-header ~ main .hero__inner,
  .premium-header + main .page-hero__content,
  .premium-header ~ main .page-hero__content { padding-top: 150px; }
}
@media (max-width: 650px) {
  .premium-header__shell { width: calc(100% - 20px); padding: 0 10px 0 12px; }
  .premium-header__top { min-height: 67px; gap: 10px; }
  .premium-header .brand { width: 158px; height: 58px; border-radius: 11px; }
  .premium-header .header-referral { display: none; }
  .premium-header .menu-toggle { width: 45px; height: 45px; border-radius: 14px; }
  .premium-header + main .hero__inner,
  .premium-header ~ main .hero__inner,
  .premium-header + main .page-hero__content,
  .premium-header ~ main .page-hero__content { padding-top: 125px; }
  .premium-lead-form { padding: 22px 18px; border-radius: 24px; }
  .premium-lead-form__head { align-items: flex-start; }
  .premium-lead-form__icon { width: 44px; height: 44px; border-radius: 14px; }
  .premium-lead-form__submit { min-height: 56px; padding: 10px 16px; line-height: 1.3; }
  .premium-lead-form .form-note { align-items: flex-start; text-align: left; }
}
.contact-form-wrap { min-width: 0; }
.contact-form-wrap .premium-lead-form { box-shadow: 0 30px 80px rgba(58, 11, 78, .16); }

/* =========================================================
   Jetsetzy logo fill + footer contact icons (final override)
   ========================================================= */
.premium-header__identity {
  flex: 1 1 auto;
}

.premium-header .brand {
  width: 270px;
  height: 126px;
  padding: 0;
  border-radius: 18px;
  background: #000;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(196, 100, 255, .32),
    0 18px 45px rgba(0, 0, 0, .34),
    0 0 38px rgba(157, 44, 255, .16);
}

.premium-header .brand__image,
.footer .brand__image {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.premium-header__top {
  min-height: 136px;
}

.premium-header__brand-copy {
  padding-left: 22px;
}

.footer .brand {
  width: 286px;
  height: 134px;
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 0 0 1px rgba(196, 100, 255, .22), 0 20px 46px rgba(0,0,0,.26);
}

.footer__connect-col {
  gap: 10px !important;
}

.footer__contact-line {
  width: fit-content;
  display: inline-flex !important;
  align-items: center !important;
  gap: 11px !important;
  min-height: 38px;
  color: rgba(255,255,255,.72) !important;
  font-size: .9rem !important;
  line-height: 1.35;
}

.footer__contact-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid !important;
  place-items: center;
  border-radius: 11px;
  color: white !important;
  background: linear-gradient(135deg, rgba(157,44,255,.78), rgba(255,79,129,.72), rgba(255,122,0,.78));
  box-shadow: 0 8px 20px rgba(123,44,191,.2), inset 0 1px 0 rgba(255,255,255,.24);
  transition: transform .22s ease, box-shadow .22s ease;
}

.footer__contact-line:hover .footer__contact-icon {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 12px 26px rgba(255,79,129,.25), inset 0 1px 0 rgba(255,255,255,.28);
}

@media (max-width: 1480px) {
  .premium-header .brand {
    width: 235px;
    height: 110px;
  }
  .premium-header__top { min-height: 120px; }
}

@media (max-width: 1240px) {
  .premium-header .brand {
    width: 210px;
    height: 98px;
  }
  .premium-header__top { min-height: 108px; }
}

@media (max-width: 650px) {
  .premium-header .brand {
    width: 166px;
    height: 78px;
    border-radius: 13px;
  }
  .premium-header__top { min-height: 88px; }
  .footer .brand {
    width: 238px;
    height: 112px;
  }
  .footer__contact-line { font-size: .88rem !important; }
}

/* =========================================================
   Compact one-line Jetsetzy header — final override
   ========================================================= */
.compact-header {
  padding: 10px 0 0;
  background: linear-gradient(180deg, rgba(3, 1, 7, .82), rgba(3, 1, 7, .25) 72%, transparent);
}

.compact-header.site-header--scrolled {
  padding: 7px 0 0;
  background: linear-gradient(180deg, rgba(5, 1, 9, .97), rgba(8, 2, 14, .88));
}

.compact-header__shell {
  width: min(1580px, calc(100% - 32px));
  min-height: 94px;
  padding: 7px 14px 7px 10px;
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.2vw, 24px);
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(120deg, rgba(12,3,19,.92), rgba(34,8,51,.76));
  box-shadow: 0 18px 48px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.05);
  backdrop-filter: blur(20px) saturate(135%);
  -webkit-backdrop-filter: blur(20px) saturate(135%);
  transition: min-height .28s ease, background .28s ease, box-shadow .28s ease;
}

.site-header--scrolled .compact-header__shell {
  min-height: 82px;
  background: rgba(11, 3, 18, .95);
  box-shadow: 0 14px 42px rgba(0,0,0,.38);
}

.compact-header .brand {
  width: 172px;
  height: 80px;
  flex: 0 0 auto;
  border-radius: 15px;
  background: #000;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(191,94,255,.28), 0 10px 28px rgba(0,0,0,.28);
  transition: width .28s ease, height .28s ease, transform .25s ease;
}

.compact-header .brand:hover { transform: translateY(-1px); }

.site-header--scrolled.compact-header .brand {
  width: 154px;
  height: 72px;
}

.compact-header .brand__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.compact-header__nav {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(10px, .9vw, 18px);
  white-space: nowrap;
}

.compact-header__nav a {
  padding: 12px 0;
  color: rgba(255,255,255,.74);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(.69rem, .66vw, .79rem);
  font-weight: 720;
  line-height: 1.15;
  letter-spacing: -.015em;
}

.compact-header__nav a::after {
  bottom: 4px;
  height: 2px;
}

.compact-header__referral {
  flex: 0 0 auto;
  min-height: 46px !important;
  padding: 0 18px !important;
  border-radius: 999px !important;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: .82rem !important;
  white-space: nowrap;
}

.compact-header .menu-toggle { display: none; margin-left: auto; }

.compact-header + main .hero__inner,
.compact-header ~ main .hero__inner,
.compact-header + main .page-hero__content,
.compact-header ~ main .page-hero__content {
  padding-top: 132px;
}

@media (max-width: 1420px) {
  .compact-header__nav { display: none; }
  .compact-header .menu-toggle { display: grid; }
  .compact-header__referral { margin-left: auto !important; }
  .compact-header__shell { min-height: 88px; }
  .compact-header .brand { width: 166px; height: 77px; }
  .site-header--scrolled.compact-header .brand { width: 150px; height: 70px; }
  .compact-header .mobile-panel {
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 20px;
    box-shadow: 0 28px 64px rgba(0,0,0,.42);
  }
}

@media (max-width: 720px) {
  .compact-header { padding-top: 7px; }
  .compact-header__shell {
    width: calc(100% - 18px);
    min-height: 76px;
    padding: 6px 9px;
    gap: 9px;
    border-radius: 18px;
  }
  .compact-header .brand,
  .site-header--scrolled.compact-header .brand {
    width: 142px;
    height: 66px;
    border-radius: 12px;
  }
  .compact-header__referral { display: none; }
  .compact-header .menu-toggle {
    width: 44px;
    height: 44px;
    border-radius: 13px;
  }
  .compact-header + main .hero__inner,
  .compact-header ~ main .hero__inner,
  .compact-header + main .page-hero__content,
  .compact-header ~ main .page-hero__content {
    padding-top: 104px;
  }
}


/* Client feedback final CTA — intentionally prominent on the front page */
.front-cta-banner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 34px 0;
  background:
    radial-gradient(circle at 12% 40%, rgba(255,122,0,.30), transparent 28%),
    radial-gradient(circle at 82% 35%, rgba(255,107,107,.22), transparent 25%),
    linear-gradient(110deg, #4d087f 0%, #7b2cbf 48%, #240039 100%);
  color: #fff;
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.front-cta-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .24;
  background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}
.front-cta-banner__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) auto;
  gap: 46px;
  align-items: center;
}
.front-cta-banner__copy h2 {
  max-width: 980px;
  margin: 8px 0 10px;
  color: #fff;
  font-size: clamp(2rem, 3.4vw, 4.25rem);
  line-height: .98;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.front-cta-banner__copy p {
  margin: 0;
  max-width: 840px;
  color: rgba(255,255,255,.82);
  font-size: 1.02rem;
}
.front-cta-banner__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: #ffd2a8;
}
.front-cta-banner__action {
  min-width: 250px;
  display: grid;
  gap: 10px;
  justify-items: stretch;
}
.front-cta-banner__button {
  justify-content: center;
  min-height: 58px;
  box-shadow: 0 18px 40px rgba(255,83,75,.28);
  white-space: nowrap;
}
.front-cta-banner__action small {
  text-align: center;
  color: rgba(255,255,255,.72);
  line-height: 1.45;
}
@media (max-width: 980px) {
  .front-cta-banner__inner { grid-template-columns: 1fr; gap: 24px; }
  .front-cta-banner__action { width: min(100%, 420px); min-width: 0; }
}
@media (max-width: 640px) {
  .front-cta-banner { padding: 28px 0; }
  .front-cta-banner__copy h2 { font-size: clamp(1.85rem, 9vw, 3rem); line-height: 1.02; }
  .front-cta-banner__button { width: 100%; white-space: normal; }
}

/* Client final checklist updates */
.hero--brand .hero__media img[src$="jetsetzy-vacation-hero.webp"] {
  object-position: center center;
  filter: saturate(1.08) contrast(1.04) brightness(.78);
}
.hero--brand .hero__shade {
  background:
    linear-gradient(90deg, rgba(15,0,30,.86) 0%, rgba(36,0,70,.64) 38%, rgba(20,0,35,.18) 72%, rgba(9,0,20,.45) 100%),
    linear-gradient(0deg, rgba(9,0,20,.82), rgba(9,0,20,.18) 55%, rgba(9,0,20,.7));
}
.hero--brand .hero__copy {
  padding: 28px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(20,0,36,.54), rgba(106,13,173,.18));
  box-shadow: 0 26px 90px rgba(0,0,0,.28);
  backdrop-filter: blur(8px);
}
.brand-checklist-section {
  background:
    radial-gradient(circle at 12% 10%, rgba(255,122,0,.13), transparent 32%),
    radial-gradient(circle at 85% 0%, rgba(123,44,191,.16), transparent 36%),
    #fff;
}
.brand-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.brand-category-card {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border-radius: 30px;
  color: #fff;
  box-shadow: 0 24px 70px rgba(34,0,55,.15);
  isolation: isolate;
}
.brand-category-card img,
.brand-category-card__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.brand-category-card img {
  object-fit: cover;
  transition: transform .75s cubic-bezier(.22,1,.36,1);
}
.brand-category-card:hover img {
  transform: scale(1.08);
}
.brand-category-card__shade {
  background:
    linear-gradient(180deg, rgba(0,0,0,.04), rgba(21,0,36,.72) 45%, rgba(11,0,21,.96) 100%),
    linear-gradient(135deg, rgba(123,44,191,.24), rgba(255,122,0,.12));
  z-index: 1;
}
.brand-category-card__content {
  position: absolute;
  inset: auto 22px 22px;
  z-index: 2;
}
.brand-category-card__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: white;
  background: linear-gradient(135deg, #7B2CBF, #FF7A00);
  box-shadow: 0 14px 30px rgba(255,122,0,.24);
  margin-bottom: 15px;
}
.brand-category-card h3 {
  color: #fff;
  font-size: clamp(1.45rem, 1.8vw, 2rem);
  margin-bottom: 10px;
}
.brand-category-card p {
  color: rgba(255,255,255,.74);
  font-size: .94rem;
  line-height: 1.6;
  margin-bottom: 18px;
}
.brand-category-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.brand-category-card__tags span {
  color: #fff;
  font-weight: 800;
  font-size: .74rem;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(10px);
}
.book-mockup__spine {
  letter-spacing: .12em;
}
@media (max-width: 1180px) {
  .brand-category-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .hero--brand .hero__copy { padding: 22px; border-radius: 24px; }
  .brand-category-grid { grid-template-columns: 1fr; }
  .brand-category-card { min-height: 420px; }
}
