:root {
  color-scheme: dark;
  --void: #05080d;
  --void-2: #0b121b;
  --ink: #11151b;
  --paper: #090d13;
  --paper-2: #0f141c;
  --white: #ffffff;
  --mist: rgba(255, 255, 255, 0.76);
  --muted: rgba(255, 255, 255, 0.58);
  --line: rgba(244, 211, 154, 0.18);
  --light-line: rgba(255, 255, 255, 0.18);
  --gold: #c89855;
  --gold-2: #f4d39a;
  --blue: #7ea8d6;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

a {
  color: inherit;
}

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--white);
  color: var(--void);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 22px clamp(18px, 4vw, 56px);
  color: var(--white);
}

.brand,
.nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 860;
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(244, 211, 154, 0.66);
  color: var(--gold-2);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.brand-name {
  max-width: 260px;
  line-height: 1.12;
}

.nav {
  gap: clamp(14px, 2.2vw, 28px);
  font-size: 14px;
  font-weight: 780;
}

.nav a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

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

.menu-toggle {
  display: none;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border: 1px solid rgba(244, 211, 154, 0.65);
  border-radius: 4px;
  background: rgba(5, 8, 13, 0.92);
  color: var(--white);
  cursor: pointer;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.menu-icon {
  display: grid;
  width: 20px;
  gap: 4px;
}

.menu-icon i {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--gold-2);
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-icon i:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-icon i:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-icon i:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: 94vh;
  overflow: hidden;
  align-items: end;
  background: var(--void);
  color: var(--white);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.94) contrast(1.03) brightness(0.9);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 8, 13, 0.98) 0%, rgba(5, 8, 13, 0.82) 39%, rgba(5, 8, 13, 0.18) 74%),
    linear-gradient(0deg, rgba(5, 8, 13, 0.92) 0%, transparent 46%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 168px 0 120px;
}

.eyebrow,
.section-label {
  margin: 0 0 16px;
  color: #9d6f36;
  font-size: 12px;
  font-weight: 870;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow,
.light .section-label,
.dark-band .section-label,
.related-band .section-label {
  color: var(--gold-2);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

h1 {
  max-width: 1120px;
  margin-bottom: 24px;
  font-size: clamp(2.45rem, 5.55vw, 5.05rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.05rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.13rem;
  line-height: 1.22;
}

.nowrap {
  white-space: nowrap;
}

.hero-copy {
  max-width: 850px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.7vw, 1.34rem);
}

.hero-actions,
.closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 850;
  line-height: 1.15;
  text-decoration: none;
  box-shadow: 0 0 0 rgba(200, 152, 85, 0);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button.primary {
  background: var(--gold);
  color: #150d05;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}

.button.dark {
  background: var(--void);
  color: var(--white);
}

.button.dark-outline {
  border-color: rgba(244, 211, 154, 0.44);
  color: var(--white);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28), 0 0 34px rgba(200, 152, 85, 0.18);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--gold-2);
}

.button.secondary:hover,
.button.secondary:focus-visible,
.button.dark-outline:hover,
.button.dark-outline:focus-visible {
  border-color: rgba(244, 211, 154, 0.8);
  background: rgba(244, 211, 154, 0.08);
}

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(76px, 10vw, 126px) 0;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(244, 211, 154, 0.34), transparent);
}

.signal-strip div {
  padding: clamp(22px, 4vw, 42px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    #080c12;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.signal-strip div:hover {
  background:
    linear-gradient(145deg, rgba(244, 211, 154, 0.13), rgba(255, 255, 255, 0.035)),
    #0b1018;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 20px 46px rgba(0, 0, 0, 0.22);
}

.signal-strip span {
  display: block;
  margin-bottom: 5px;
  color: rgba(244, 211, 154, 0.72);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.signal-strip strong {
  display: block;
  color: var(--white);
  font-size: clamp(1.2rem, 2.4vw, 2rem);
  line-height: 1.12;
}

.intro {
  width: 100%;
  max-width: none;
  padding: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(126, 168, 214, 0.16), transparent 25%),
    linear-gradient(180deg, #090d13 0%, #05080d 100%);
}

.intro .split {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(82px, 10vw, 132px) 0;
}

.split,
.application-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(34px, 7vw, 88px);
  align-items: start;
}

.lead-prose,
.section-heading p,
.sponsor-card p,
.closing p {
  color: var(--mist);
  font-size: clamp(1.07rem, 1.45vw, 1.25rem);
}

.lead-prose p:last-child,
.section-heading p:last-child,
.sponsor-card p:last-of-type,
.closing p:last-of-type,
.site-footer p {
  margin-bottom: 0;
}

.dark-band,
.related-band {
  background:
    radial-gradient(circle at 78% 8%, rgba(126, 168, 214, 0.24), transparent 26%),
    radial-gradient(circle at 18% 92%, rgba(200, 152, 85, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent 46%),
    var(--void);
  color: var(--white);
}

.section-heading {
  max-width: 790px;
  margin-bottom: 42px;
}

.section-heading.light p,
.dark-band p,
.related-band p {
  color: var(--mist);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.value-grid article {
  min-height: 178px;
  border: 1px solid rgba(244, 211, 154, 0.2);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.03)),
    rgba(7, 11, 17, 0.78);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
  padding: 24px;
  transition: transform 190ms ease, border-color 190ms ease, background 190ms ease, box-shadow 190ms ease;
}

.value-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(244, 211, 154, 0.58);
  background:
    linear-gradient(150deg, rgba(244, 211, 154, 0.13), rgba(255, 255, 255, 0.035)),
    rgba(7, 11, 17, 0.88);
  box-shadow: 0 32px 76px rgba(0, 0, 0, 0.38);
}

.value-grid article > span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.value-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.sponsor-forward {
  width: 100%;
  max-width: none;
  padding: clamp(86px, 10vw, 136px) 20px;
  background:
    linear-gradient(rgba(5, 8, 13, 0.66), rgba(5, 8, 13, 0.74)),
    url("assets/vip-suite-hero.png") center / cover fixed;
}

.sponsor-card {
  width: min(1060px, 100%);
  margin: 0 auto;
  border: 1px solid rgba(244, 211, 154, 0.54);
  background:
    linear-gradient(135deg, rgba(12, 16, 22, 0.94), rgba(7, 10, 15, 0.86));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.09);
  padding: clamp(30px, 6vw, 66px);
  text-align: center;
  backdrop-filter: blur(10px);
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.sponsor-card:hover {
  transform: translateY(-3px);
  border-color: rgba(244, 211, 154, 0.78);
  box-shadow: 0 42px 110px rgba(0, 0, 0, 0.58), 0 0 70px rgba(200, 152, 85, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.sponsor-card h2 {
  max-width: 920px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(1.95rem, 3.25vw, 3.3rem);
}

.sponsor-card p {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
}

.sponsor-card .button {
  margin-top: 28px;
}

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

.feature-card {
  display: grid;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(244, 211, 154, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    var(--void-2);
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
  transition: transform 210ms ease, border-color 210ms ease, box-shadow 210ms ease;
}

.feature-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.94);
  transition: transform 220ms ease, filter 220ms ease;
}

.feature-card span,
.feature-card strong {
  display: block;
  padding: 0 24px;
}

.feature-card span {
  margin-top: 24px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 850;
}

.feature-card strong {
  padding-bottom: 26px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.6vw, 2.35rem);
  font-weight: 500;
  line-height: 1.04;
}

.feature-card:hover img,
.feature-card:focus-visible img {
  transform: scale(1.025);
  filter: saturate(1) brightness(1.02);
}

.feature-card:hover,
.feature-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(244, 211, 154, 0.66);
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.48), 0 0 54px rgba(200, 152, 85, 0.11);
}

.luxury-resources {
  background:
    radial-gradient(circle at 18% 12%, rgba(126, 168, 214, 0.14), transparent 26%),
    linear-gradient(180deg, #05080d, #0a0f16 52%, #030507);
}

.luxury-resources .section-heading {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

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

.luxury-link-grid a {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(244, 211, 154, 0.2);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02)),
    rgba(8, 12, 18, 0.9);
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.24);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.luxury-link-grid a::after {
  content: "";
  position: absolute;
  inset: auto -20% -42% -20%;
  height: 96px;
  background: radial-gradient(ellipse at center, rgba(244, 211, 154, 0.2), transparent 68%);
  opacity: 0;
  transition: opacity 200ms ease, transform 200ms ease;
}

.luxury-link-grid span {
  display: block;
  margin-bottom: 18px;
  color: rgba(244, 211, 154, 0.76);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.luxury-link-grid strong {
  display: block;
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.34rem, 2vw, 1.8rem);
  font-weight: 500;
  line-height: 1.05;
}

.luxury-link-grid p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.98rem;
}

.luxury-link-grid a:hover,
.luxury-link-grid a:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(244, 211, 154, 0.66);
  background:
    linear-gradient(150deg, rgba(244, 211, 154, 0.14), rgba(255, 255, 255, 0.035)),
    rgba(8, 12, 18, 0.96);
  box-shadow: 0 34px 86px rgba(0, 0, 0, 0.44), 0 0 48px rgba(200, 152, 85, 0.12);
}

.luxury-link-grid a:hover::after,
.luxury-link-grid a:focus-visible::after {
  opacity: 1;
  transform: translateY(-8px);
}

.partners {
  width: 100%;
  max-width: none;
  padding: clamp(82px, 10vw, 126px) 20px;
  background:
    radial-gradient(circle at 50% 0%, rgba(244, 211, 154, 0.11), transparent 32%),
    #030507;
  text-align: center;
}

.partners .section-heading {
  width: min(var(--max), 100%);
  margin-right: auto;
  margin-left: auto;
}

.logo-row {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid rgba(244, 211, 154, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
    var(--void);
}

.logo-mark {
  display: grid;
  width: min(100%, 620px);
  min-height: 190px;
  place-items: center;
  border: 1px solid rgba(244, 211, 154, 0.22);
  color: var(--white);
  text-decoration: none;
  background: #000000;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  transition: transform 190ms ease, border-color 190ms ease, box-shadow 190ms ease;
}

.logo-mark img {
  display: block;
  width: min(88%, 520px);
  height: auto;
  transition: transform 190ms ease, filter 190ms ease;
}

.logo-mark:hover,
.logo-mark:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(244, 211, 154, 0.68);
  box-shadow: 0 34px 92px rgba(0, 0, 0, 0.56), 0 0 54px rgba(244, 211, 154, 0.12);
}

.logo-mark:hover img,
.logo-mark:focus-visible img {
  transform: scale(1.025);
  filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.18));
}

.closing {
  background:
    linear-gradient(180deg, #0a0f16, #05080d);
}

.closing-inner {
  max-width: 900px;
  text-align: center;
}

.closing-actions {
  justify-content: center;
}

.site-footer {
  padding: clamp(42px, 6vw, 78px) clamp(20px, 4vw, 56px) 30px;
  background: var(--void);
  color: var(--white);
}

.footer-brand {
  display: flex;
  max-width: var(--max);
  align-items: center;
  gap: 16px;
  margin: 0 auto 32px;
}

.footer-brand strong {
  font-size: 22px;
}

.footer-brand strong a {
  color: inherit;
  text-decoration: none;
}

.footer-brand p {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.6);
}

.footer-links {
  display: flex;
  max-width: var(--max);
  flex-wrap: wrap;
  gap: 14px 24px;
  margin: 0 auto 36px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 720;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--white);
}

.third-party-note,
.copyright {
  max-width: var(--max);
  margin: 0 auto 18px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
}

.copyright {
  margin-bottom: 0;
}

@media (max-width: 980px) {
  h1 {
    font-size: clamp(2rem, 7.7vw, 4.25rem);
  }

  .split,
  .application-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  body.menu-open {
    overflow: hidden;
  }

  .site-header {
    align-items: flex-start;
  }

  .menu-toggle {
    display: inline-flex;
    position: relative;
    z-index: 30;
  }

  .has-menu .nav {
    position: fixed;
    inset: 0;
    z-index: 25;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    padding: 86px 28px 36px;
    background: rgba(5, 8, 13, 0.98);
  }

  .has-menu .nav.open {
    display: flex;
  }

  .nav a {
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-size: 1.2rem;
  }

  .hero {
    min-height: 96vh;
  }

  .hero-content {
    width: min(var(--max), calc(100% - 32px));
    padding: 138px 0 110px;
  }

  h1 {
    font-size: clamp(1.62rem, 6.95vw, 3.1rem);
  }

  h2 {
    font-size: clamp(2rem, 9vw, 3.3rem);
  }

  .signal-strip,
  .value-grid,
  .feature-links,
  .luxury-link-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 390px;
  }

  .logo-mark {
    min-height: 146px;
  }
}

@media (max-width: 480px) {
  .brand-name {
    max-width: 178px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .hero-actions,
  .closing-actions {
    display: grid;
  }
}
