:root {
  --font-display: Arial, Helvetica, sans-serif;
  --font-mono: "Courier New", Courier, monospace;
  --ink: #111711;
  --forest: #183c2b;
  --lime: #d9ff55;
  --copper: #c86f3f;
  --cream: #f2f0e6;
  --paper: #faf9f3;
  --line: rgba(17, 23, 17, 0.18);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-display), Arial, sans-serif;
}

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

a:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px clamp(24px, 5vw, 76px);
  color: var(--cream);
  border-bottom: 1px solid rgba(242, 240, 230, 0.2);
}

.wordmark {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.055em;
}

.wordmark span { color: var(--lime); }

nav { display: flex; align-items: center; gap: 34px; }

nav a {
  font-family: var(--font-mono), monospace;
  font-size: 0.71rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-cta {
  padding: 12px 16px;
  color: var(--ink);
  background: var(--lime);
}

.hero {
  position: relative;
  min-height: 790px;
  height: min(900px, 100svh);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 130px clamp(24px, 7.5vw, 120px) 86px;
  color: var(--cream);
  background: var(--forest);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image: linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to right, black, transparent 78%);
}

.hero::after {
  content: "";
  position: absolute;
  width: min(44vw, 620px);
  aspect-ratio: 1;
  right: -8vw;
  top: 15%;
  border-radius: 50%;
  background: var(--copper);
  box-shadow: inset 38px -32px 70px rgba(49, 18, 8, .35), -45px 28px 80px rgba(3, 14, 8, .45);
}

.hero-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(217, 255, 85, .45);
  border-radius: 50%;
}

.orbit-one { width: min(54vw, 760px); aspect-ratio: 1; right: -11vw; top: 10%; }
.orbit-two { width: min(34vw, 470px); aspect-ratio: 1; right: -1vw; top: 21%; }

.eyebrow, .section-kicker {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono), monospace;
  font-size: 0.69rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow span { width: 24px; height: 2px; background: var(--lime); }

.hero h1, h2 {
  margin: 22px 0;
  font-weight: 900;
  letter-spacing: -0.085em;
  line-height: 0.84;
}

.hero h1 {
  position: relative;
  z-index: 2;
  max-width: 950px;
  font-size: clamp(4.3rem, 10.2vw, 10.6rem);
}

.hero h1 em { color: var(--lime); font-style: normal; }

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(500px, 66%);
  margin: 4px 0 0;
  color: rgba(242,240,230,.72);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.6;
}

.hero-actions { position: relative; z-index: 3; display: flex; align-items: center; gap: 28px; margin-top: 32px; }

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  min-width: 240px;
  padding: 18px 20px;
  background: var(--lime);
  color: var(--ink);
  font-family: var(--font-mono), monospace;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease;
}

.primary-button:hover { transform: translateY(-3px); background: #e6ff87; }
.primary-button span, .text-link span, .address-block a span { font-size: 1.1rem; }

.text-link {
  font-family: var(--font-mono), monospace;
  font-size: .72rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.text-link span { color: var(--lime); margin-left: 8px; }

.hero-stat {
  position: absolute;
  z-index: 3;
  right: clamp(24px, 7.5vw, 120px);
  bottom: 80px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
}

.stat-number { font-size: clamp(3.5rem, 6vw, 6rem); font-weight: 900; line-height: .8; letter-spacing: -.08em; }
.stat-copy { font-family: var(--font-mono), monospace; font-size: .62rem; line-height: 1.45; text-transform: uppercase; }

.location-stamp {
  position: absolute;
  left: clamp(24px, 7.5vw, 120px);
  bottom: 24px;
  margin: 0;
  color: rgba(242,240,230,.5);
  font-family: var(--font-mono), monospace;
  font-size: .57rem;
  letter-spacing: .08em;
  line-height: 1.55;
}

.experience { padding: 110px clamp(24px, 7.5vw, 120px); background: var(--paper); }
.section-kicker { color: var(--copper); }

.experience-heading {
  display: grid;
  grid-template-columns: 1.7fr .7fr;
  align-items: end;
  gap: 70px;
  margin: 52px 0 84px;
}

.experience h2, .visit h2 { font-size: clamp(4rem, 8vw, 8.6rem); }
h2 span { color: var(--copper); }

.experience-heading p, .booking-intro > p {
  margin: 0 0 6px;
  color: #536056;
  font-size: 1.06rem;
  line-height: 1.65;
}

.steps { border-top: 1px solid var(--line); }

.step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.step-number { color: var(--copper); font-family: var(--font-mono), monospace; font-size: .72rem; }
.step h3 { margin: 0 0 7px; font-size: 1.25rem; letter-spacing: -.025em; }
.step p { margin: 0; color: #6a736c; font-family: var(--font-mono), monospace; font-size: .7rem; }

.packages {
  padding: 108px clamp(24px, 7.5vw, 120px) 116px;
  color: var(--cream);
  background: var(--forest);
}

.packages-intro {
  display: grid;
  grid-template-columns: 1.5fr .7fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 58px;
}

.packages-intro h2 {
  max-width: 980px;
  font-size: clamp(3.8rem, 7.5vw, 7.7rem);
}

.packages-intro h2 span { color: var(--lime); }

.packages-intro > p {
  margin: 0 0 6px;
  color: rgba(242,240,230,.62);
  font-size: 1.06rem;
  line-height: 1.65;
}

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

.package-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  color: var(--ink);
  background: var(--cream);
  border-top: 5px solid var(--copper);
}

.package-card:nth-child(2) {
  color: var(--cream);
  background: var(--copper);
  border-top-color: var(--lime);
}

.package-card:nth-child(3) {
  background: var(--lime);
  border-top-color: var(--ink);
}

.package-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  font-family: var(--font-mono), monospace;
  font-size: .62rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.package-card-top strong {
  font-family: var(--font-display), Arial, sans-serif;
  font-size: clamp(4.6rem, 7vw, 7.5rem);
  line-height: .72;
  letter-spacing: -.09em;
}

.package-card h3 {
  margin: 0 0 10px;
  font-size: 2rem;
  letter-spacing: -.055em;
  text-transform: uppercase;
}

.package-card p {
  margin: 0;
  font-family: var(--font-mono), monospace;
  font-size: .68rem;
  line-height: 1.55;
  text-transform: uppercase;
}

.pricing-widget-wrap { margin-top: 30px; }

.healcode-pricing-option-text-link {
  min-height: 56px;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px !important;
  color: var(--cream) !important;
  background: var(--ink) !important;
  font-family: var(--font-mono), monospace !important;
  font-size: .67rem !important;
  letter-spacing: .04em;
  line-height: 1.35;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease;
}

.healcode-pricing-option-text-link::after { content: "↗"; margin-left: 18px; font-size: 1rem; }
.healcode-pricing-option-text-link:hover { transform: translateY(-3px); background: #283128 !important; }

.package-note {
  margin: 28px 0 0;
  color: rgba(242,240,230,.48);
  font-family: var(--font-mono), monospace;
  font-size: .65rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.booking-section { padding: 108px clamp(24px, 7.5vw, 120px) 128px; background: var(--ink); color: var(--cream); }

.booking-intro {
  display: grid;
  grid-template-columns: 1.5fr .7fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 55px;
}

.section-kicker.light { color: var(--lime); }
.booking-intro h2 { font-size: clamp(4rem, 8vw, 8rem); }
.booking-intro h2 span { color: var(--lime); }
.booking-intro > p { color: rgba(242,240,230,.56); }

.booking-shell { border: 1px solid rgba(242,240,230,.22); background: var(--cream); color: var(--ink); }
.booking-shell-header { display: flex; justify-content: space-between; gap: 20px; padding: 16px 20px; background: #e5e3d9; font-family: var(--font-mono), monospace; font-size: .6rem; letter-spacing: .08em; }
.live-dot { display: inline-block; width: 7px; height: 7px; margin-right: 7px; border-radius: 50%; background: #39a863; box-shadow: 0 0 0 4px rgba(57,168,99,.13); }
.widget-wrap { min-height: 410px; padding: clamp(16px, 3vw, 42px); overflow: hidden; }

.visit {
  display: grid;
  grid-template-columns: 1.5fr .55fr;
  align-items: end;
  gap: 70px;
  padding: 110px clamp(24px, 7.5vw, 120px);
  background: var(--lime);
}

.visit .section-kicker { color: var(--forest); }
.visit h2 { margin-bottom: 0; }
.visit h2 span { color: var(--forest); }
.address-block { padding: 28px 0 4px; border-top: 1px solid rgba(17,23,17,.35); }
.address-block p { margin: 0 0 28px; font-size: 1.2rem; line-height: 1.55; }
.address-block a { display: flex; justify-content: space-between; font-family: var(--font-mono), monospace; font-size: .72rem; text-transform: uppercase; }

footer { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 30px clamp(24px, 5vw, 76px); background: var(--forest); color: var(--cream); }
footer p, footer > a:last-child { font-family: var(--font-mono), monospace; font-size: .64rem; text-transform: uppercase; letter-spacing: .06em; }
footer p { color: rgba(242,240,230,.5); }

@media (max-width: 800px) {
  .site-header { padding: 21px 20px; }
  nav > a:first-child { display: none; }
  .nav-cta { padding: 10px 12px; }
  .hero { min-height: 760px; padding: 130px 20px 88px; justify-content: flex-start; }
  .hero::after { width: 70vw; top: auto; right: -15vw; bottom: 72px; }
  .orbit-one { width: 86vw; top: auto; bottom: 15px; right: -21vw; }
  .orbit-two { width: 57vw; top: auto; bottom: 62px; right: -7vw; }
  .hero h1 { margin-top: 30px; font-size: clamp(4rem, 18vw, 6.4rem); }
  .hero-copy { width: 100%; max-width: 520px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero-stat { right: 22px; bottom: 115px; }
  .location-stamp { left: 20px; bottom: 20px; }
  .experience, .packages, .booking-section, .visit { padding-left: 20px; padding-right: 20px; }
  .experience-heading, .packages-intro, .booking-intro, .visit { grid-template-columns: 1fr; gap: 28px; }
  .experience-heading { margin: 40px 0 64px; }
  .experience h2, .packages-intro h2, .booking-intro h2, .visit h2 { font-size: clamp(3.8rem, 17vw, 6rem); }
  .step { grid-template-columns: 54px 1fr; }
  .package-grid { grid-template-columns: 1fr; }
  .package-card { min-height: 350px; }
  .booking-shell-header { flex-direction: column; }
  .widget-wrap { padding: 10px; }
  footer { flex-direction: column; align-items: flex-start; }
  footer p { margin: 0; }
}

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