:root {
  --orange: #f36f21;
  --orange-dark: #d9560d;
  --ink: #111111;
  --charcoal: #242424;
  --cream: #fff8f2;
  --white: #ffffff;
  --line: rgba(17,17,17,.13);
  --shadow: 0 24px 70px rgba(17,17,17,.15);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Nunito Sans", Arial, sans-serif;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.shell { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: absolute; left: -9999px; top: 0; }
.skip-link:focus { left: 16px; top: 16px; z-index: 999; background: white; padding: 10px 14px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(17,17,17,.07);
  backdrop-filter: blur(16px);
}
.nav-wrap { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand img { width: 58px; height: 58px; border-radius: 50%; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links > a:not(.button) { text-decoration: none; font-weight: 700; font-size: .95rem; }
.nav-links > a:not(.button):hover { color: var(--orange-dark); }
.menu-button { display: none; border: 0; background: transparent; font: inherit; font-weight: 800; }

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  padding: 14px 23px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  text-decoration: none;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -.02em;
  box-shadow: 0 10px 30px rgba(243,111,33,.23);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--orange-dark); box-shadow: 0 14px 34px rgba(243,111,33,.32); }
.button-small { min-height: 44px; padding: 10px 18px; font-size: .9rem; }
.button-full { width: 100%; }
.button-white { background: white; color: var(--ink); box-shadow: none; }
.button-white:hover { background: var(--cream); color: var(--ink); }

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange-dark);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow-light { color: #ffb17f; }
h1, h2, h3 { font-family: "Montserrat", Arial, sans-serif; line-height: 1.03; letter-spacing: -.045em; margin-top: 0; }
h1 { max-width: 760px; margin-bottom: 24px; font-size: clamp(3.6rem, 8vw, 7.6rem); }
h2 { margin-bottom: 20px; font-size: clamp(2.5rem, 5vw, 4.8rem); }
h3 { font-size: 1.45rem; }

.hero { position: relative; overflow: hidden; min-height: 760px; display: grid; align-items: center; padding: 82px 0 96px; background: radial-gradient(circle at 70% 20%, #fff0e6 0, white 46%); }
.hero::before {
  content: "";
  position: absolute;
  width: 580px; height: 580px;
  border: 90px solid rgba(243,111,33,.08);
  border-radius: 50%;
  right: -240px; top: 70px;
}
.hero-mark { position: absolute; left: 3%; bottom: 6%; color: rgba(243,111,33,.22); font-size: 7rem; transform: rotate(14deg); }
.hero-grid { display: grid; grid-template-columns: 1.18fr .82fr; align-items: center; gap: 60px; position: relative; }
.hero-subhead { max-width: 680px; margin: 0 0 34px; font-size: clamp(1.1rem, 2vw, 1.45rem); color: #3e3e3e; }
.hero-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.price-note { font-size: 1rem; }
.brand-line { margin: 26px 0 0; color: #5f5f5f; }
.hero-visual { position: relative; display: grid; place-items: center; min-height: 500px; }
.hero-visual > img { width: min(380px, 83%); border-radius: 50%; position: relative; z-index: 2; box-shadow: var(--shadow); }
.logo-orbit { position: absolute; width: 450px; height: 450px; border: 1px solid rgba(243,111,33,.35); border-radius: 50%; }
.logo-orbit::before, .logo-orbit::after { content:""; position:absolute; border-radius:50%; background:var(--orange); }
.logo-orbit::before { width: 18px; height: 18px; top: 36px; left: 55px; }
.logo-orbit::after { width: 10px; height: 10px; bottom: 30px; right: 70px; }
.floating-card { position: absolute; z-index: 3; max-width: 220px; padding: 15px 18px; border-radius: 18px; background: white; box-shadow: 0 16px 50px rgba(17,17,17,.13); font-weight: 800; font-size: .9rem; }
.card-one { top: 45px; right: -15px; transform: rotate(3deg); }
.card-two { left: -30px; bottom: 45px; transform: rotate(-3deg); }

.section { padding: 110px 0; }
.section-dark { background: var(--ink); color: white; }
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: start; }
.large-copy { font-size: clamp(1.25rem, 2.2vw, 1.8rem); color: #dedede; }
.large-copy p:first-child { margin-top: 0; }
.large-copy p:last-child { color: white; font-weight: 700; }
.section-heading { max-width: 760px; margin-bottom: 42px; }
.compact-heading h2 { max-width: 780px; }

.uses-section { background: var(--cream); }
.tag-grid { display: flex; flex-wrap: wrap; gap: 14px; }
.tag-grid span { padding: 12px 18px; border: 1px solid rgba(17,17,17,.12); border-radius: 999px; background: white; font-weight: 700; }
.center-note { margin: 38px 0 0; font-size: 1.1rem; font-weight: 800; color: var(--orange-dark); }

.package-section { background: white; }
.package-grid { display: grid; grid-template-columns: 1fr .78fr; gap: 80px; align-items: center; }
.package-intro p:last-child { max-width: 560px; font-size: 1.2rem; color: #555; }
.package-card { padding: 42px; border-radius: var(--radius); background: var(--ink); color: white; box-shadow: var(--shadow); }
.package-price { display: flex; flex-direction: column; margin-bottom: 26px; }
.package-price span { text-transform: uppercase; letter-spacing: .13em; font-size: .72rem; font-weight: 800; color: #ffb17f; }
.package-price strong { font: 800 clamp(3.4rem, 6vw, 5.7rem)/1 "Montserrat", Arial, sans-serif; letter-spacing: -.055em; }
.package-card ul { list-style: none; margin: 0 0 30px; padding: 0; }
.package-card li { position: relative; padding: 11px 0 11px 28px; border-bottom: 1px solid rgba(255,255,255,.12); }
.package-card li::before { content: "✓"; position: absolute; left: 0; color: #ff9e61; font-weight: 800; }

.add-ons-section { background: #f3f3f3; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature-grid article { min-height: 245px; padding: 28px; border-radius: 22px; background: white; border: 1px solid rgba(17,17,17,.07); }
.feature-number { display: block; margin-bottom: 56px; color: var(--orange); font-family: "Montserrat", Arial, sans-serif; font-weight: 800; }
.feature-grid p { margin-bottom: 0; color: #595959; }
.ticketing-callout { margin-top: 26px; padding: 34px; border-radius: 24px; background: var(--orange); color: white; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; }
.ticketing-callout .eyebrow { color: #ffe4d2; }
.ticketing-callout h3 { margin-bottom: 0; font-size: 2rem; }
.ticketing-callout > p { margin: 0; font-size: 1.15rem; }

.details-section { background: white; }
.details-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; }
.detail-list { border-top: 1px solid var(--line); }
.detail-list > div { display: grid; grid-template-columns: .42fr .58fr; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.detail-list strong { font: 800 1.2rem "Montserrat", Arial, sans-serif; }
.detail-list span { color: #595959; }

.faq-section { background: var(--cream); }
.faq-grid { display: grid; grid-template-columns: .68fr 1.32fr; gap: 90px; }
details { border-top: 1px solid rgba(17,17,17,.18); }
details:last-child { border-bottom: 1px solid rgba(17,17,17,.18); }
summary { cursor: pointer; list-style: none; padding: 24px 45px 24px 0; position: relative; font: 800 1.08rem "Montserrat", Arial, sans-serif; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 4px; top: 20px; color: var(--orange-dark); font-size: 1.6rem; }
details[open] summary::after { content: "–"; }
details p { margin: -8px 0 24px; max-width: 680px; color: #525252; }

.final-cta { padding: 110px 0; background: var(--orange); color: white; text-align: center; }
.final-cta-inner { max-width: 860px; }
.final-cta h2 { margin-bottom: 18px; font-size: clamp(3rem, 7vw, 6rem); }
.final-cta p:not(.eyebrow) { max-width: 680px; margin: 0 auto 30px; font-size: 1.2rem; }

.site-footer { padding: 34px 0; background: var(--ink); color: white; }
.footer-grid { display: grid; grid-template-columns: auto 1fr auto; gap: 24px; align-items: center; }
.footer-grid img { width: 62px; border-radius: 50%; }
.footer-grid p { margin: 3px 0; }
.footer-grid a { color: #ffb17f; font-weight: 800; }

@media (max-width: 900px) {
  .hero { min-height: auto; }
  .hero-grid, .split, .package-grid, .details-grid, .faq-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { min-height: 430px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .ticketing-callout { grid-template-columns: 1fr; gap: 12px; }
  .detail-list > div { grid-template-columns: 1fr; gap: 6px; }
}

@media (max-width: 720px) {
  .shell { width: min(100% - 28px, 1160px); }
  .nav-wrap { min-height: 72px; }
  .brand img { width: 50px; height: 50px; }
  .menu-button { display: block; }
  .nav-links { display: none; position: absolute; left: 14px; right: 14px; top: 66px; padding: 20px; background: white; border: 1px solid rgba(17,17,17,.08); border-radius: 20px; box-shadow: var(--shadow); flex-direction: column; align-items: stretch; gap: 14px; }
  .nav-links.open { display: flex; }
  .hero { padding: 68px 0 76px; }
  h1 { font-size: clamp(3.2rem, 16vw, 5rem); }
  .hero-visual { min-height: 350px; }
  .hero-visual > img { width: 270px; }
  .logo-orbit { width: 315px; height: 315px; }
  .floating-card { display: none; }
  .section { padding: 76px 0; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-grid article { min-height: 210px; }
  .package-card { padding: 30px 24px; }
  .footer-grid { grid-template-columns: auto 1fr; }
  .footer-grid > a { grid-column: 1 / -1; }
}

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