:root {
  --navy: #050b14;
  --navy-2: #07111f;
  --ink: #0c1624;
  --panel: rgba(8, 17, 31, .78);
  --panel-solid: #091321;
  --line: rgba(244, 190, 81, .24);
  --gold: #f6c44f;
  --gold-2: #ffde86;
  --sun: #ff9f1c;
  --orange: #ff6b1a;
  --white: #fff9ee;
  --muted: #c7c1b5;
  --shadow: 0 22px 70px rgba(0, 0, 0, .45);
  --radius: 28px;
  --max: 1450px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 163, 32, .17), transparent 31rem),
    radial-gradient(circle at 5% 20%, rgba(246, 196, 79, .09), transparent 23rem),
    linear-gradient(180deg, #05080e 0%, #08111f 40%, #04070c 100%);
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.site-shell { overflow: hidden; }

.topbar {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(var(--max), calc(100% - 28px));
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px 10px;
}
.topbar::before {
  content: "";
  position: absolute;
  inset: 8px 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(4, 10, 18, .78), rgba(4, 10, 18, .40));
  border: 1px solid rgba(255,255,255,.06);
  backdrop-filter: blur(18px);
  box-shadow: 0 15px 40px rgba(0,0,0,.26);
  z-index: -1;
  opacity: .72;
}
.brand {
  position: relative;
  display: inline-grid;
  grid-template-rows: auto auto;
  line-height: 1;
  padding-left: 6px;
  min-width: 180px;
}
.brand-name {
  font-family: Georgia, Cambria, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.05rem);
  letter-spacing: -.05em;
}
.brand-name::first-letter { letter-spacing: 0; }
.brand-tagline {
  color: rgba(255, 249, 238, .75);
  font-size: .76rem;
  letter-spacing: .08em;
  margin-top: 4px;
}
.sun-mark {
  width: 50px;
  height: 18px;
  margin: 0 0 -2px 55px;
  position: relative;
  display: block;
}
.sun-mark::before {
  content: "";
  position: absolute;
  left: 15px;
  top: -8px;
  width: 24px;
  height: 24px;
  border: 3px solid var(--gold);
  border-bottom: 0;
  border-radius: 50% 50% 0 0;
}
.sun-mark::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 44px);
  color: rgba(255, 249, 238, .88);
  font-weight: 650;
}
.nav-links a, .nav-actions a { transition: color .2s ease, transform .2s ease, border-color .2s ease, background .2s ease; }
.nav-links a:hover, .nav-actions a:hover { color: var(--gold-2); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.brand-switch { display: flex; gap: 3px; border: 1px solid rgba(246,196,79,.28); border-radius: 999px; padding: 3px; }
.brand-switch a { padding: 7px 10px; border-radius: 999px; font-weight: 800; font-size: .82rem; color: rgba(255,255,255,.72); }
.brand-switch a.active { background: var(--gold); color: #111827; }
.icon-btn {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(246,196,79,.40);
  border-radius: 999px;
  color: var(--gold-2);
  font-size: 1.35rem;
}
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 24px;
  border: 1px solid rgba(246,196,79,.48);
  font-weight: 800;
  letter-spacing: .01em;
  white-space: nowrap;
}
.pill.primary {
  background: linear-gradient(135deg, #ffe08a, #f3b83f 52%, #ff9417);
  color: #101723;
  box-shadow: 0 16px 36px rgba(255, 153, 28, .27);
}
.pill.secondary, .pill.ghost {
  color: var(--gold-2);
  background: rgba(5, 10, 18, .30);
}
.pill:hover { transform: translateY(-2px); }

.nav-toggle { display: none; background: none; border: 0; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--white); margin: 5px 0; }

.hero {
  position: relative;
  min-height: 820px;
  padding: 178px max(26px, calc((100vw - var(--max)) / 2)) 40px;
  display: grid;
  grid-template-columns: minmax(0, 700px) minmax(320px, 1fr);
  align-items: center;
  gap: 40px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('hero-sunset.svg');
  background-size: cover;
  background-position: center center;
  filter: saturate(1.05) contrast(1.02);
  z-index: -3;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(4, 8, 14, .93) 0%, rgba(4, 8, 14, .75) 31%, rgba(4, 8, 14, .25) 58%, rgba(4, 8, 14, .73) 100%),
    linear-gradient(180deg, rgba(5, 8, 13, .12) 0%, rgba(5, 8, 13, .15) 52%, rgba(5, 8, 13, .98) 96%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(180deg, transparent, #05080e 80%);
  z-index: -1;
}
.hero-content { max-width: 720px; }
.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: .20em;
  font-size: .82rem;
  text-transform: uppercase;
}
.eyebrow::before, .section-kicker::before {
  content: "";
  width: 48px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin: 18px 0 22px;
  font-family: Georgia, Cambria, "Times New Roman", serif;
  font-size: clamp(3.25rem, 7vw, 6.7rem);
  line-height: .95;
  letter-spacing: -.065em;
  max-width: 780px;
  text-wrap: balance;
}
h1 span {
  color: var(--gold);
  text-shadow: 0 0 38px rgba(255, 168, 31, .32);
}
.hero-copy {
  max-width: 610px;
  color: rgba(255, 249, 238, .82);
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  line-height: 1.65;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.hero-ctas.center { justify-content: center; }
.social-proof { display: flex; align-items: center; gap: 16px; margin-top: 24px; color: rgba(255,249,238,.75); }
.social-proof p { margin: 0; }
.avatars { display: flex; }
.avatars span {
  width: 38px; height: 38px; border-radius: 50%; border: 2px solid rgba(255,249,238,.85); margin-right: -10px;
  background: radial-gradient(circle at 35% 25%, #fff, #f8b970 22%, #74563d 46%, #192232 48%, #0b1525 100%);
}
.avatars span:nth-child(2) { background: radial-gradient(circle at 35% 25%, #fff, #eaa78e 22%, #694b42 46%, #25344d 48%, #0b1525 100%); }
.avatars span:nth-child(3) { background: radial-gradient(circle at 35% 25%, #fff, #d7c6ad 22%, #534b3d 46%, #18273f 48%, #0b1525 100%); }
.hero-panel { align-self: end; justify-self: end; width: min(100%, 570px); margin-bottom: 130px; }
.search-box {
  min-height: 82px;
  display: grid;
  grid-template-columns: 165px 1px 1fr;
  gap: 24px;
  align-items: center;
  padding: 16px 24px;
  border-radius: 22px;
  background: rgba(5, 12, 22, .88);
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}
.search-box small { display: block; color: rgba(255,249,238,.58); margin-bottom: 2px; }
.search-box strong { display: block; font-size: 1rem; }
.divider { width: 1px; height: 42px; background: rgba(255,255,255,.12); }
.search-input { display: flex; align-items: center; gap: 12px; color: rgba(255,249,238,.84); }
.search-input span { font-size: 1.45rem; color: var(--white); }
.search-input input { width: 100%; border: 0; outline: 0; background: transparent; color: var(--white); font: inherit; min-width: 0; }
.search-input input::placeholder { color: rgba(255,249,238,.68); }

.experience-strip {
  width: min(var(--max), calc(100% - 48px));
  margin: -96px auto 28px;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.experience-card {
  min-height: 238px;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 120px 22px 20px;
  border: 1px solid rgba(246, 196, 79, .42);
  background: var(--panel-solid);
  box-shadow: 0 22px 48px rgba(0,0,0,.30);
}
.experience-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 115px;
  background: var(--card-bg);
  background-size: cover;
  background-position: center;
  opacity: .95;
}
.experience-card::after {
  content: "";
  position: absolute;
  inset: 75px 0 0;
  background: linear-gradient(180deg, transparent, rgba(9,19,33,.98) 46%);
}
.card-icon {
  position: absolute;
  z-index: 2;
  top: 82px;
  left: 20px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(6, 13, 24, .82);
  border: 1px solid rgba(246,196,79,.55);
  color: var(--gold);
  font-size: 1.45rem;
}
.experience-card h3, .experience-card p, .experience-card a { position: relative; z-index: 2; }
.experience-card h3 { font-size: 1.12rem; margin-bottom: 7px; }
.experience-card p { color: rgba(255,249,238,.72); line-height: 1.5; margin-bottom: 14px; }
.experience-card a { color: var(--gold); font-weight: 900; }
.boat { --card-bg: linear-gradient(135deg, rgba(20,123,166,.74), rgba(3,26,49,.7)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="800" height="360"><rect width="800" height="360" fill="%230e7090"/><path d="M0 250 C150 210 260 300 420 245 S650 225 800 260 V360 H0z" fill="%2303425d"/><path d="M235 202 L510 202 L455 250 L270 250z" fill="%23fff5dc"/><path d="M330 130 L455 200 H330z" fill="%23f7cf6b"/><circle cx="620" cy="90" r="54" fill="%23f6c44f" opacity=".72"/></svg>'); }
.beach { --card-bg: linear-gradient(135deg, rgba(244,196,79,.25), rgba(2,45,65,.58)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="800" height="360"><rect width="800" height="360" fill="%2397d6e7"/><rect y="210" width="800" height="150" fill="%23f2d690"/><path d="M0 190 C130 155 250 210 400 170 S650 160 800 190 V230 H0z" fill="%233287a5"/><path d="M190 95 L105 200 H280z" fill="%23fff8e6"/><rect x="186" y="95" width="8" height="160" fill="%238e6432"/><circle cx="620" cy="80" r="55" fill="%23ffba45"/></svg>'); }
.sunset { --card-bg: linear-gradient(135deg, rgba(255, 122, 21, .55), rgba(10,17,27,.35)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="800" height="360"><defs><linearGradient id="g" x1="0" x2="0" y1="0" y2="1"><stop stop-color="%23ff7b1a"/><stop offset=".56" stop-color="%23f9c650"/><stop offset="1" stop-color="%230b1524"/></linearGradient></defs><rect width="800" height="360" fill="url(%23g)"/><circle cx="390" cy="145" r="70" fill="%23fff5bd"/><path d="M0 245 C130 220 260 265 400 235 S660 220 800 250 V360 H0z" fill="%230b2335" opacity=".78"/><path d="M545 105 h80 l-24 165 h-32z" fill="%23ffd480" opacity=".8"/><path d="M610 105 h82 l-24 165 h-34z" fill="%23ff9f1c" opacity=".75"/></svg>'); }
.nightlife { --card-bg: linear-gradient(135deg, rgba(255, 72, 122, .34), rgba(32,17,62,.7)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="800" height="360"><rect width="800" height="360" fill="%230a1024"/><circle cx="240" cy="115" r="70" fill="%23ff2d75" opacity=".55"/><circle cx="555" cy="92" r="92" fill="%235e47ff" opacity=".42"/><path d="M0 240 C150 190 250 280 400 230 S640 210 800 240 V360 H0z" fill="%23070710"/><rect x="120" y="170" width="60" height="120" rx="20" fill="%23f6c44f" opacity=".55"/><rect x="350" y="140" width="80" height="160" rx="30" fill="%23ff3b89" opacity=".45"/><rect x="610" y="160" width="55" height="130" rx="18" fill="%234fd8ff" opacity=".42"/></svg>'); }
.local { --card-bg: linear-gradient(135deg, rgba(255,255,255,.05), rgba(25,86,82,.35)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="800" height="360"><rect width="800" height="360" fill="%23dbe6e7"/><rect x="0" y="70" width="250" height="290" fill="%23fffaf0"/><rect x="550" y="45" width="250" height="315" fill="%23fff6e4"/><path d="M250 160 L550 120 V360 H250z" fill="%23d9d1c1"/><path d="M0 310 C170 280 300 335 470 300 S680 285 800 315 V360 H0z" fill="%235a744e" opacity=".35"/><circle cx="135" cy="120" r="18" fill="%23f23f5d"/><circle cx="645" cy="105" r="22" fill="%23f23f5d"/></svg>'); }
.access { --card-bg: linear-gradient(135deg, rgba(246,196,79,.2), rgba(18,75,93,.58)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="800" height="360"><rect width="800" height="360" fill="%231c5d73"/><circle cx="180" cy="110" r="72" fill="%23f6c44f" opacity=".72"/><rect x="300" y="115" width="280" height="170" rx="28" fill="%23fff4d6" opacity=".55"/><path d="M0 270 C120 235 260 310 420 260 S650 245 800 275 V360 H0z" fill="%230a1728" opacity=".65"/><circle cx="430" cy="170" r="34" fill="%23fff9ee"/><path d="M430 205 v50 h70" stroke="%23fff9ee" stroke-width="24" stroke-linecap="round" fill="none"/></svg>'); }

.trustbar {
  width: min(var(--max), calc(100% - 48px));
  margin: 24px auto 86px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,.06);
  box-shadow: 0 20px 50px rgba(0,0,0,.18);
}
.trustbar div { padding: 26px 28px; background: rgba(7, 15, 27, .78); }
.trustbar strong { display: block; color: var(--gold); margin-bottom: 7px; }
.trustbar span { color: rgba(255,249,238,.74); }

.split, .tiles, .partners, .accessible, .business-model, .final-cta {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto 96px;
}
.split {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 70px;
  align-items: start;
}
h2 {
  font-family: Georgia, Cambria, "Times New Roman", serif;
  font-size: clamp(2.25rem, 4.4vw, 4.65rem);
  line-height: 1;
  letter-spacing: -.05em;
  margin: 14px 0 0;
  text-wrap: balance;
}
.text-block {
  color: rgba(255,249,238,.74);
  font-size: 1.18rem;
  line-height: 1.75;
  border-left: 1px solid var(--line);
  padding-left: 34px;
}
.text-block p:last-child { margin-bottom: 0; }

.tiles {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 20px;
}
.tile {
  min-height: 360px;
  border: 1px solid rgba(246,196,79,.18);
  border-radius: var(--radius);
  padding: 38px;
  background: linear-gradient(160deg, rgba(12, 25, 43, .92), rgba(9, 18, 31, .72));
  box-shadow: 0 24px 60px rgba(0,0,0,.20);
  overflow: hidden;
  position: relative;
}
.tile p { color: rgba(255,249,238,.72); line-height: 1.7; font-size: 1.08rem; }
.tile.large { display: flex; flex-direction: column; justify-content: flex-end; }
.tile.large::before {
  content: "";
  position: absolute;
  top: -160px; right: -140px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,220,130,.95), rgba(255,143,16,.48) 34%, transparent 68%);
  filter: blur(3px);
}
.sun-tile { background: linear-gradient(160deg, rgba(255,129,19,.22), rgba(11,22,37,.94)), url('sun-pattern.svg') center/cover; }
.cocktail-tile { background: linear-gradient(160deg, rgba(126,45,18,.38), rgba(8,17,30,.92)); }
.cocktail-tile::before {
  content: "";
  position: absolute; inset: auto -30px -70px auto;
  width: 260px; height: 260px;
  background: url('cocktail.svg') center/contain no-repeat;
  opacity: .55;
}

.section-heading { max-width: 850px; margin-bottom: 34px; }
.section-heading p:not(.section-kicker) { color: rgba(255,249,238,.74); font-size: 1.17rem; line-height: 1.7; }
.narrow { margin-inline: auto; text-align: center; }
.narrow .section-kicker::before { display: none; }
.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.partner-grid article {
  min-height: 240px;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(246,196,79,.22);
  background: rgba(8, 17, 31, .73);
  box-shadow: 0 20px 50px rgba(0,0,0,.18);
}
.partner-grid h3 { color: var(--gold); font-size: 1.22rem; }
.partner-grid p { color: rgba(255,249,238,.72); line-height: 1.66; }

.accessible-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  padding: clamp(34px, 6vw, 70px);
  background:
    linear-gradient(90deg, rgba(6, 13, 24, .93), rgba(6, 13, 24, .75)),
    radial-gradient(circle at 82% 24%, rgba(246,196,79,.30), transparent 24rem),
    linear-gradient(135deg, rgba(13, 68, 84, .80), rgba(9,18,31,.94));
  border: 1px solid rgba(246,196,79,.20);
}
.accessible-card::after {
  content: "♿";
  position: absolute;
  right: clamp(20px, 7vw, 100px);
  top: 50%; transform: translateY(-50%);
  font-size: clamp(7rem, 16vw, 14rem);
  color: rgba(246,196,79,.09);
}
.accessible-card p:not(.section-kicker) { max-width: 820px; color: rgba(255,249,238,.76); line-height: 1.75; font-size: 1.1rem; }
.chips { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; position: relative; z-index: 1; }
.chips span { border: 1px solid rgba(246,196,79,.35); border-radius: 999px; color: var(--gold-2); padding: 10px 14px; background: rgba(255,255,255,.04); }

.model-steps {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.model-steps div {
  padding: 30px;
  border-radius: 24px;
  background: rgba(8,17,31,.76);
  border: 1px solid rgba(246,196,79,.20);
}
.model-steps span { color: rgba(246,196,79,.45); font-size: 3.8rem; font-weight: 900; line-height: 1; display: block; margin-bottom: 18px; }
.model-steps strong { color: var(--gold); font-size: 1.2rem; display: block; margin-bottom: 8px; }
.model-steps p { color: rgba(255,249,238,.72); line-height: 1.6; }

.final-cta {
  text-align: center;
  padding: 86px 26px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,196,66,.38), transparent 25rem),
    linear-gradient(160deg, rgba(12,25,43,.95), rgba(7,14,25,.92));
  border: 1px solid rgba(246,196,79,.20);
  box-shadow: 0 30px 80px rgba(0,0,0,.22);
}
.final-cta p { color: rgba(255,249,238,.78); max-width: 760px; margin: 22px auto 0; line-height: 1.7; font-size: 1.1rem; }
footer {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 34px 0 54px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,249,238,.62);
}
.brand.mini { min-width: 0; }
.brand.mini .brand-name { font-size: 2rem; }
.brand.mini .sun-mark { margin-left: 35px; transform: scale(.72); transform-origin: left bottom; }

@media (max-width: 1180px) {
  .topbar { grid-template-columns: auto auto; }
  .nav-toggle { display: block; justify-self: end; }
  .nav-links, .nav-actions { display: none; }
  .topbar.open .nav-links,
  .topbar.open .nav-actions {
    display: flex;
    position: absolute;
    left: 0;
    right: 0;
    top: 88px;
    margin: 0 8px;
    padding: 22px;
    border-radius: 26px;
    background: rgba(5, 12, 22, .96);
    border: 1px solid rgba(246,196,79,.20);
    backdrop-filter: blur(18px);
  }
  .topbar.open .nav-links { flex-direction: column; align-items: flex-start; gap: 16px; }
  .topbar.open .nav-actions { top: 300px; justify-content: flex-start; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 150px; }
  .hero-panel { justify-self: start; margin-bottom: 110px; }
  .experience-strip { grid-template-columns: repeat(3, 1fr); margin-top: -80px; }
  .tiles { grid-template-columns: 1fr; }
  .partner-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .hero { padding-inline: 22px; }
  .hero-content { padding-top: 15px; }
  h1 { font-size: clamp(3rem, 13vw, 4.8rem); }
  .search-box { grid-template-columns: 1fr; gap: 10px; }
  .divider { display: none; }
  .experience-strip { grid-template-columns: 1fr; width: calc(100% - 36px); }
  .trustbar, .split, .tiles, .partners, .accessible, .business-model, .final-cta, footer { width: calc(100% - 36px); }
  .trustbar { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 24px; }
  .text-block { border-left: 0; padding-left: 0; }
  .partner-grid, .model-steps { grid-template-columns: 1fr; }
  footer { flex-direction: column; align-items: flex-start; gap: 16px; }
  .pill { width: 100%; }
  .hero-ctas { width: 100%; }
}
