:root {
  --ink: #f2f6fb;
  --paper: #071016;
  --panel: #101820;
  --panel-2: #151f28;
  --muted: #9ba9b8;
  --line: rgba(130, 164, 205, 0.2);
  --red: #ff4b45;
  --amber: #f4b73d;
  --blue: #006ee6;
  --blue-hot: #45a3ff;
  --green: #4fd18b;
  --steel: #788696;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(31, 115, 255, 0.08), transparent 420px),
    var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 48px);
  color: #fff;
  background: linear-gradient(180deg, rgba(3, 8, 12, 0.92), rgba(3, 8, 12, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  width: 18px;
  height: 18px;
  border: 2px solid var(--blue-hot);
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px #172231, 0 0 18px rgba(69, 163, 255, 0.78);
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 24px);
  font-size: 0.92rem;
  font-weight: 700;
}

nav a {
  opacity: 0.88;
}

nav a:hover,
nav a:focus-visible {
  opacity: 1;
}

.nav-cta {
  padding: 9px 14px;
  border: 1px solid rgba(69, 163, 255, 0.58);
  border-radius: 999px;
  background: rgba(31, 115, 255, 0.18);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  padding: 128px clamp(20px, 6vw, 72px) 80px;
  overflow: hidden;
  color: #fff;
  background: var(--paper);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(3, 8, 12, 0.95), rgba(3, 8, 12, 0.62) 46%, rgba(3, 8, 12, 0.12)),
    linear-gradient(0deg, rgba(3, 8, 12, 0.98), rgba(3, 8, 12, 0.12) 50%),
    radial-gradient(circle at 72% 20%, rgba(31, 115, 255, 0.24), transparent 28%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 128px);
  mix-blend-mode: normal;
}

.hero-content {
  position: relative;
  z-index: 2;
  min-width: 0;
  width: 100%;
}

.hero-content {
  max-width: 780px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--blue-hot);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--amber);
}

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

h1 {
  max-width: 11ch;
  margin-bottom: 20px;
  font-size: clamp(4.2rem, 11vw, 9rem);
  line-height: 0.86;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2rem, 4vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 28px;
  color: rgba(242, 246, 251, 0.86);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
}

.button.primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 0 28px rgba(31, 115, 255, 0.34);
}

.button.secondary {
  border-color: rgba(69, 163, 255, 0.5);
  color: #fff;
  background: rgba(7, 16, 22, 0.56);
}

.quick-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  background: #0b141c;
}

.quick-stats div {
  display: grid;
  place-content: center;
  min-height: 132px;
  padding: 28px clamp(18px, 4vw, 42px);
  border-right: 1px solid var(--line);
  text-align: center;
}

.quick-stats div:last-child {
  border-right: 0;
}

.quick-stats strong {
  display: block;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  white-space: nowrap;
}

.quick-stats .locations-stat strong {
  max-width: 15ch;
  margin-inline: auto;
  font-size: clamp(1.35rem, 2.35vw, 2rem);
  line-height: 1.08;
  white-space: normal;
}

.quick-stats span {
  color: #aeb8c4;
  font-weight: 800;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(60px, 8vw, 104px) clamp(20px, 5vw, 48px);
}

.two-column,
.event-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 6vw, 78px);
}

.copy-stack,
.event-layout p,
.inquiry p {
  color: #c2ccd7;
  font-size: 1.08rem;
}

.image-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  align-items: stretch;
  gap: 0;
  border-block: 1px solid var(--line);
  background: #0c151d;
}

.image-showcase picture,
.image-showcase img {
  display: block;
  width: 100%;
  height: 100%;
}

.image-showcase img {
  min-height: 460px;
  object-fit: cover;
}

.showcase-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 6vw, 76px);
  background:
    linear-gradient(135deg, rgba(31, 115, 255, 0.12), transparent 38%),
    var(--panel);
}

.showcase-copy h2 {
  font-size: clamp(2rem, 3.8vw, 4.1rem);
}

.showcase-copy p:last-child {
  color: #c2ccd7;
  font-size: 1.08rem;
}

.band {
  background:
    linear-gradient(180deg, rgba(31, 115, 255, 0.09), transparent),
    #111a22;
  color: var(--ink);
}

.band .section-kicker {
  color: var(--blue-hot);
}

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

.feature-grid article,
.package {
  padding: 24px;
  border-radius: 8px;
}

.feature-grid article {
  border: 1px solid rgba(69, 163, 255, 0.18);
  background: rgba(7, 16, 22, 0.64);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.feature-grid p {
  color: #b6c1ce;
}

.icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 42px;
  border-radius: 50%;
  color: #f3f7ff;
  background: #172942;
  border: 1px solid rgba(69, 163, 255, 0.54);
  box-shadow: 0 0 22px rgba(31, 115, 255, 0.34);
  font-size: 0.8rem;
  font-weight: 900;
}

.event-fit {
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 880px;
  margin-bottom: 34px;
}

.section-heading h2 {
  margin-bottom: 16px;
}

.section-heading p {
  max-width: 720px;
  color: #c2ccd7;
  font-size: 1.08rem;
}

.buyer-list {
  display: grid;
  gap: 12px;
  align-content: start;
  margin: 0;
  padding: 0;
  list-style: none;
}

.buyer-list li {
  padding: 18px 20px;
  border-left: 5px solid var(--blue-hot);
  background: var(--panel);
  font-weight: 900;
}

.packages {
  padding-top: clamp(56px, 7vw, 88px);
  padding-bottom: clamp(16px, 2.5vw, 26px);
}

.packages .section-heading {
  max-width: 940px;
  margin-bottom: 24px;
}

.packages .section-heading h2 {
  max-width: 14ch;
}

.packages .package-grid {
  gap: 16px;
}

.package {
  display: flex;
  min-height: 0;
  flex-direction: column;
  padding: clamp(20px, 2.1vw, 28px);
  border: 1px solid var(--line);
  background: var(--panel);
}

.package.featured {
  background:
    linear-gradient(135deg, rgba(31, 115, 255, 0.28), transparent 52%),
    #0e1c2b;
  color: #fff;
  border-color: rgba(69, 163, 255, 0.42);
}

.package-label {
  margin-bottom: 8px;
  color: var(--blue-hot);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.package h3 {
  margin-bottom: 12px;
}

.package > p:not(.package-label) {
  margin-bottom: 16px;
  color: #aeb8c4;
}

.package.featured > p:not(.package-label) {
  color: rgba(255, 255, 255, 0.72);
}

.package ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  color: #c8d2de;
  list-style: none;
}

.package li {
  position: relative;
  padding-left: 18px;
}

.package li::before {
  position: absolute;
  left: 0;
  content: "";
  width: 7px;
  height: 7px;
  margin-top: 0.55em;
  border-radius: 50%;
  background: var(--green);
}

.package-pricing {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 28px auto 0;
  padding: 16px 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 0 34px rgba(31, 115, 255, 0.42);
  font-size: 1.02rem;
  font-weight: 900;
}

.planning {
  padding-top: clamp(12px, 2vw, 24px);
  padding-bottom: clamp(56px, 7vw, 90px);
}

.planning-header {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: clamp(20px, 4vw, 56px);
  margin-bottom: 24px;
}

.planning-header h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(2rem, 3.3vw, 3.9rem);
}

.planning-header p {
  margin-bottom: 0;
  color: #c2ccd7;
  font-size: 1.08rem;
}

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

.planning-grid article {
  min-height: 148px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(31, 115, 255, 0.08), transparent 45%),
    var(--panel);
}

.planning-grid p {
  margin-bottom: 0;
  color: #b6c1ce;
}

.service-area {
  padding-top: clamp(36px, 5vw, 72px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-area-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.service-area-layout h2 {
  max-width: 800px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.5vw, 4.1rem);
}

.service-area-layout p {
  max-width: 760px;
  color: #c2ccd7;
  font-size: 1.08rem;
}

.logistics-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.logistics-list div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.logistics-list dt {
  margin-bottom: 8px;
  color: var(--blue-hot);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.logistics-list dd {
  margin: 0;
  color: #c8d2de;
}

.faq {
  padding-top: clamp(56px, 7vw, 88px);
}

.faq .section-heading {
  margin-bottom: 22px;
}

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

.faq-list article {
  min-height: 154px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0d1720;
}

.faq-list p {
  margin-bottom: 0;
  color: #b6c1ce;
}

.inquiry {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  margin: 0 clamp(20px, 5vw, 48px) clamp(22px, 5vw, 48px);
  padding: clamp(34px, 6vw, 70px);
  border-radius: 8px;
  color: #fff;
  overflow: hidden;
  background: #071016;
  border: 1px solid rgba(69, 163, 255, 0.28);
  isolation: isolate;
}

.inquiry::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(120deg, rgba(4, 9, 14, 0.94), rgba(19, 49, 86, 0.88));
}

.inquiry-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.inquiry-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inquiry > :not(.inquiry-media) {
  position: relative;
  z-index: 2;
}

.inquiry .eyebrow {
  color: var(--amber);
}

.inquiry h2 {
  margin-bottom: 14px;
}

.inquiry p {
  max-width: 710px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  nav {
    display: none;
  }

  .hero,
  .two-column,
  .event-layout,
  .image-showcase,
  .planning-header,
  .service-area-layout,
  .inquiry {
    grid-template-columns: 1fr;
  }

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

  .image-showcase img {
    min-height: 330px;
  }

  .feature-grid,
  .package-grid,
  .faq-list,
  .planning-grid {
    grid-template-columns: 1fr 1fr;
  }

}

@media (max-width: 620px) {
  h1 {
    max-width: 8ch;
    font-size: clamp(3.1rem, 15vw, 4rem);
  }

  h2 {
    font-size: 2.15rem;
  }

  .hero .eyebrow {
    font-size: 0.72rem;
    line-height: 1.25;
  }

  .hero {
    padding-inline: 18px;
    padding-bottom: 46px;
  }

  .quick-stats,
  .feature-grid,
  .package-grid,
  .faq-list,
  .planning-grid {
    grid-template-columns: 1fr;
  }

  .quick-stats div {
    min-height: 112px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding-inline: 18px;
  }

  .packages .section-heading {
    margin-bottom: 20px;
  }

  .package-pricing {
    width: 100%;
  }

  .hero-actions,
  .inquiry .button {
    width: 100%;
  }

  .button {
    width: 100%;
  }

}
