:root {
  --bg-deep: #0d1117;
  --bg-card: #161d27;
  --bg-card-hover: #1d2734;
  --bg-section-alt: #111820;
  --bg-faq: #0f1620;
  --border: rgba(255, 255, 255, 0.08);
  --gold: #cc9519;
  --gold-light: #e8b030;
  --gold-ink: #73510a;
  --gold-dim: rgba(204, 149, 25, 0.15);
  --text-primary: #f0f4f8;
  --text-muted: #8a9bb0;
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.38);
  --shadow-gold: 0 10px 28px rgba(201, 135, 26, 0.22);
  --header-surface: #ffffff;
  --header-text: #17314b;
  --header-border: rgba(23, 49, 75, 0.12);
  --header-hover: rgba(23, 49, 75, 0.06);
  --header-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  --header-accent: #10324d;
  --radius-lg: 16px;
  --radius-md: 10px;
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(80px + 1.5rem);
}

body {
  margin: 0;
  font-family: "Barlow", sans-serif;
  color: var(--text-primary);
  line-height: 1.6;
  background: radial-gradient(circle at top right, rgba(204, 149, 25, 0.08), transparent 22%), var(--bg-deep);
  min-height: 100vh;
}

img {
  display: block;
  max-width: 100%;
}

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

p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  color: var(--text-primary);
  overflow-wrap: break-word;
}

h1,
h2 {
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2.7rem, 5.4vw, 4.9rem);
  font-weight: 700;
  line-height: 1.05;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3.1rem);
  font-weight: 600;
  line-height: 1.1;
}

h3 {
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 0.7rem;
  letter-spacing: 0.005em;
}

.container {
  width: min(100% - 2.2rem, var(--max-width));
  margin-inline: auto;
}

.section {
  padding: 5rem 0;
}

.section-tight {
  padding: 3.2rem 0;
}

.section-alt {
  background: var(--bg-section-alt);
}

.section-dark {
  background: linear-gradient(180deg, #0e1520 0%, var(--bg-faq) 100%);
}

.section-title {
  margin-bottom: 0.85rem;
}

.section-lead {
  max-width: 760px;
  margin-bottom: 2rem;
}

.skip-link {
  position: absolute;
  left: -1000px;
  top: 0;
  background: var(--gold);
  color: #0d1117;
  padding: 0.7rem 1rem;
  font-weight: 600;
  z-index: 1000;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-center {
  text-align: center;
}

.mb-3 {
  margin-bottom: 2rem;
}

.gap-3 {
  gap: 2rem;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: #ffffff;
  border-bottom: 1px solid var(--header-border);
  box-shadow: var(--header-shadow);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  min-height: 80px;
}

.brand img {
  width: 164px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.34rem;
  font-size: 0.88rem;
  font-weight: 500;
}

.site-nav a {
  padding: 0.42rem 0.58rem;
  border-radius: 999px;
  color: var(--header-text);
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.site-nav a:hover,
.site-nav a.active {
  background: var(--header-hover);
  color: var(--header-text);
}

.site-nav a.active {
  background: rgba(204, 149, 25, 0.12);
  color: var(--gold-ink);
}

.site-nav a:focus-visible,
.button:focus-visible,
.menu-toggle:focus-visible,
.site-footer a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(204, 149, 25, 0.68);
  outline-offset: 2px;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: 1px solid var(--header-border);
  color: var(--header-text);
  border-radius: 8px;
  padding: 0.48rem 0.72rem;
  cursor: pointer;
  line-height: 1;
}

.cta-primary,
.cta-secondary,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1;
  padding: 0.85rem 1.45rem;
  min-height: 44px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  cursor: pointer;
  border: 0;
}

.cta-primary,
.button-primary {
  background: var(--gold);
  color: #0d1117;
  box-shadow: var(--shadow-gold);
}

.cta-primary:hover,
.button-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.button-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.site-nav .cta-secondary {
  background: var(--header-accent);
  color: #ffffff;
  border: 0;
}

.site-nav .cta-secondary:hover {
  background: #0a2740;
  transform: translateY(-1px);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0;
}

.hero-fullbleed {
  min-height: 86vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-fullbleed::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(9, 14, 22, 0.78) 0%, rgba(9, 14, 22, 0.55) 55%, rgba(9, 14, 22, 0.45) 100%);
}

.hero-fullbleed .container {
  position: relative;
  z-index: 1;
}

.hero-center {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.hero-grid {
  display: grid;
  gap: 2.3rem;
  align-items: center;
  grid-template-columns: 1.05fr 1fr;
}

.hero-grid > *,
.grid > *,
.footer-grid > * {
  min-width: 0;
}

.hero-copy > * {
  opacity: 1;
}

.hero-copy {
  max-width: 100%;
}

.hero-copy p {
  overflow-wrap: anywhere;
}

.js-ready .hero-copy > * {
  opacity: 0;
  animation: rise 0.7s ease forwards;
}

.js-ready .hero-copy > *:nth-child(2) {
  animation-delay: 0.12s;
}

.js-ready .hero-copy > *:nth-child(3) {
  animation-delay: 0.24s;
}

.js-ready .hero-copy > *:nth-child(4) {
  animation-delay: 0.36s;
}

.js-ready .hero-copy > *:nth-child(5) {
  animation-delay: 0.48s;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.55rem 0;
}

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

.hero-image,
.image-banner {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  aspect-ratio: 4 / 3;
}

.hero-image picture,
.image-banner picture,
.card-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-image img,
.image-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image {
  aspect-ratio: 16 / 10;
}

.hero-image img {
  min-height: 360px;
}

.grid {
  display: grid;
  gap: 1.15rem;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.field-grid {
  display: grid;
  gap: 0.95rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.path-card,
.program-card,
.program-detail-card,
.discovery-package,
.instructor-card,
.metric-card,
.safety-item,
.contact-card,
.info-card,
.testimonial-card,
.process-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 1.4rem;
  transition: background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

@media (hover: hover) {
  .path-card:hover,
  .program-card:hover,
  .program-detail-card:hover,
  .discovery-package:hover,
  .instructor-card:hover,
  .metric-card:hover,
  .safety-item:hover,
  .contact-card:hover,
  .info-card:hover,
  .testimonial-card:hover,
  .process-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(201, 135, 26, 0.35);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    transform: translateY(-2px);
  }
}

.discovery-package {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  gap: 0.95rem;
}

.discovery-package::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, rgba(204, 149, 25, 0.95), rgba(232, 176, 48, 0.2));
}

.discovery-package-featured {
  border-color: rgba(204, 149, 25, 0.55);
  background: linear-gradient(180deg, rgba(204, 149, 25, 0.1), rgba(22, 29, 39, 0.96));
  box-shadow: var(--shadow-gold);
}

.discovery-package-featured::before {
  height: 6px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

@media (min-width: 1181px) and (hover: hover) {
  .discovery-package-featured {
    transform: translateY(-8px);
    z-index: 1;
  }
  .discovery-package-featured:hover {
    transform: translateY(-12px);
  }
}

.package-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.9rem;
  min-height: 4.2rem;
}

.package-header h3 {
  margin-bottom: 0;
}

.package-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  flex-shrink: 0;
  padding: 0.32rem 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(232, 176, 48, 0.48);
  background: rgba(204, 149, 25, 0.16);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  white-space: nowrap;
}

.discovery-package .card-summary {
  margin-bottom: 0;
}

.discovery-package .package-details {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  font-size: 0.92rem;
  list-style: none;
}

.discovery-package .package-details li {
  display: grid;
  grid-template-columns: minmax(6.8rem, auto) 1fr;
  gap: 0.45rem;
  margin: 0;
  padding: 0.55rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
}

.discovery-package .package-details li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.discovery-package .package-details strong {
  color: var(--text-primary);
  font-weight: 600;
}

.package-purchase {
  margin-top: auto;
}

.discovery-package .price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.55rem;
  margin: 0 0 0.9rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.045);
}

.discovery-package .price-amount {
  color: var(--gold);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.discovery-package .price-note {
  color: var(--text-muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.discovery-package .button {
  width: 100%;
}

.discovery-package .button:focus-visible {
  box-shadow: var(--shadow-gold), 0 0 0 5px rgba(204, 149, 25, 0.16);
}

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

.reach-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.4rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.reach-card:focus-visible {
  background: rgba(204, 149, 25, 0.08);
  border-color: rgba(204, 149, 25, 0.45);
  transform: translateY(-2px);
}

.reach-card-primary {
  background: rgba(204, 149, 25, 0.13);
  border-color: rgba(204, 149, 25, 0.58);
  box-shadow: var(--shadow-gold);
}

@media (hover: hover) {
  .reach-card:hover {
    background: rgba(204, 149, 25, 0.08);
    border-color: rgba(204, 149, 25, 0.45);
    transform: translateY(-2px);
  }

  .reach-card-primary:hover {
    background: rgba(204, 149, 25, 0.18);
  }
}

.reach-card-label {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.reach-card-value {
  color: var(--text-primary);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  word-break: break-word;
}

.reach-card-cta {
  margin-top: 0.4rem;
  color: var(--gold-light);
  font-size: 0.88rem;
  font-weight: 500;
}

.reach-helper {
  margin-top: 1.4rem;
  text-align: center;
  color: var(--text-muted);
}

.reach-helper a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-block {
  margin: 1.5rem 0 0;
}

.policy-block h3 {
  margin-bottom: 0.85rem;
}

.policy-block .meta-list li {
  margin-bottom: 0.55rem;
}

.cancel-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 1.4rem;
  padding: 0.85rem 1.1rem 0.85rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(204, 149, 25, 0.14);
  border: 1px solid rgba(204, 149, 25, 0.4);
  border-left: 4px solid var(--gold);
  color: var(--text-primary);
  font-size: 0.95rem;
}

.trust-line {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.4rem 0 1.6rem;
  color: var(--text-muted);
  font-size: 0.86rem;
}

.trust-line-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.6rem;
  margin: 0.6rem 0 1.6rem;
  padding: 0;
  list-style: none;
  color: var(--text-muted);
  font-size: 0.86rem;
}

.trust-line-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.trust-line-icon {
  flex-shrink: 0;
  color: var(--gold-light);
}

.package-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.6rem;
  justify-content: center;
  margin: 0 0 1.8rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  list-style: none;
  color: var(--text-muted);
  font-size: 0.94rem;
  letter-spacing: 0.005em;
}

.package-proof li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.package-proof li::before {
  content: "\2713";
  color: var(--gold);
  font-weight: 700;
}

.package-proof strong {
  color: var(--text-primary);
  font-weight: 600;
}

.testimonials-strip {
  margin: 0 0 2.4rem;
}

.testimonials-strip > .card-kicker {
  text-align: center;
  margin-bottom: 1rem;
}

.testimonials-grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.testimonials-grid--single {
  grid-template-columns: minmax(0, 1fr);
  max-width: 640px;
  margin: 0 auto;
}

.testimonial-card {
  position: relative;
  margin: 0;
  padding: 1.6rem 1.55rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.testimonial-mark {
  color: var(--gold);
  opacity: 0.65;
  flex-shrink: 0;
}

.testimonial-card blockquote {
  margin: 0;
  padding: 0;
  border-left: 0;
}

.testimonial-card blockquote p {
  margin: 0;
  color: var(--text-primary);
  font-size: 1.02rem;
  line-height: 1.55;
  font-style: italic;
}

.testimonial-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.testimonial-name {
  color: var(--text-primary);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.testimonial-meta {
  color: var(--text-muted);
  font-size: 0.82rem;
}

@media (max-width: 720px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.success-reference {
  margin: -0.4rem 0 1rem;
  color: var(--text-muted);
  font-size: 0.86rem;
  overflow-wrap: anywhere;
}

.success-reference code {
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-primary);
  font-family: "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.cancel-banner[hidden] {
  display: none;
}

.cancel-banner a {
  color: var(--gold-light);
  text-decoration: underline;
}

.cancel-banner-close {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text-primary);
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}

.cancel-banner-close:hover,
.cancel-banner-close:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.after-package-cross-link {
  margin-top: 1.6rem;
  text-align: center;
}

.after-package-cross-link a {
  color: var(--gold-light);
  text-decoration: underline;
  text-decoration-color: rgba(204, 149, 25, 0.5);
  text-underline-offset: 3px;
}

.process-card {
  position: relative;
  overflow: hidden;
}

.process-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, rgba(204, 149, 25, 0.95), rgba(255, 215, 119, 0.75));
}

.process-card h3 {
  padding-top: 0.35rem;
}

.card-kicker {
  margin-bottom: 0.5rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.badge {
  display: inline-block;
  margin-bottom: 0.9rem;
  padding: 0.28rem 0.72rem;
  border-radius: 999px;
  background: var(--gold-dim);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.meta-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text-muted);
}

.meta-list li + li {
  margin-top: 0.4rem;
}

.metric-value {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--gold);
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1;
}

.metric-card p,
.testimonial-card p {
  margin-bottom: 0;
}

.card-media {
  overflow: hidden;
  margin: -0.35rem -0.35rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  aspect-ratio: 16 / 9;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mini-stats {
  display: grid;
  gap: 0.45rem;
  margin: 1rem 0;
}

.mini-stats span {
  display: block;
  padding: 0.48rem 0.65rem;
  border-radius: 8px;
  background: rgba(204, 149, 25, 0.11);
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 600;
}

.discovery-gallery {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.discovery-gallery picture {
  display: block;
  overflow: hidden;
  min-width: 0;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #0a111a;
  box-shadow: var(--shadow-card);
}

.discovery-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.discovery-gallery picture:last-child {
  grid-column: span 2;
  aspect-ratio: 8 / 3;
}

.portal-panel iframe {
  display: block;
  border: 0;
  border-radius: 8px;
  background: #ffffff;
}

.legal-hero {
  max-width: 820px;
}

.legal-content {
  max-width: 860px;
  margin: 0 auto;
}

.legal-content h2 {
  margin-top: 2rem;
  font-size: 1.45rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.glass-panel {
  padding: 1.5rem 1.8rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
}

.glass-panel > div,
.glass-panel > p,
.field-grid > div {
  min-width: 0;
}

.glass-panel > .field-grid + div,
.glass-panel > div + p {
  margin-top: 1rem;
}

.trust-bar {
  background: var(--bg-section-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.8rem 0;
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}

.trust-item {
  position: relative;
  padding: 0.5rem 1.5rem;
  text-align: center;
}

.trust-item + .trust-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15%;
  width: 1px;
  height: 70%;
  background: rgba(201, 135, 26, 0.3);
}

.trust-item-label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trust-item-desc {
  margin: 0;
  color: var(--text-primary);
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 500;
}

.pathway-strip {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: 3rem;
}

.pathway-node {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pathway-node + .pathway-node::before {
  content: "";
  position: absolute;
  left: -50%;
  top: 18px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(201, 135, 26, 0.25));
}

.pathway-num {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold);
  color: #0d1117;
  font-size: 0.95rem;
  font-weight: 700;
}

.pathway-name {
  margin: 0.6rem 0 0.2rem;
  color: var(--text-primary);
  font-size: 0.88rem;
  font-weight: 600;
}

.pathway-duration {
  margin: 0;
  font-size: 0.76rem;
}

label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--text-primary);
  font-size: 0.88rem;
  font-weight: 600;
}

.required-asterisk {
  color: var(--gold);
  margin-left: 0.15rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  padding: 0.75rem 0.9rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  font: inherit;
}

select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1l5 5 5-5' stroke='%238a9bb0' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.4rem;
}

input:invalid:not(:placeholder-shown):not(:focus),
select:invalid:not(:focus) {
  border-color: rgba(255, 110, 110, 0.55);
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(201, 135, 26, 0.45);
  border-color: var(--gold);
}

select option {
  background: var(--bg-card);
  color: var(--text-primary);
}

form .button {
  border: 0;
}

.button[data-loading="true"],
.button[aria-busy="true"] {
  cursor: wait;
  opacity: 0.88;
  position: relative;
  color: transparent !important;
  pointer-events: none;
}

.button[data-loading="true"]::after,
.button[aria-busy="true"]::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.05rem;
  height: 1.05rem;
  margin: -0.525rem 0 0 -0.525rem;
  border: 2px solid rgba(13, 17, 23, 0.25);
  border-top-color: #0d1117;
  border-radius: 50%;
  animation: button-spin 0.6s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .button[data-loading="true"]::after,
  .button[aria-busy="true"]::after {
    animation: none;
    border-top-color: rgba(13, 17, 23, 0.55);
  }
}

@keyframes button-spin {
  to {
    transform: rotate(360deg);
  }
}

.form-status {
  margin: 0.85rem 0 0;
  color: var(--gold-light);
  font-size: 0.95rem;
}

.form-status:empty {
  display: none;
}

.form-status-success {
  color: #5fdc8a;
}

.form-status-error {
  color: #ff8a8a;
}

.form-status-info {
  color: var(--text-muted);
}

.faq-shell details {
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-shell details:first-of-type {
  border-top: 0;
}

.faq-shell summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 44px;
  cursor: pointer;
  color: var(--text-primary);
  font-weight: 600;
  list-style: none;
}

.faq-shell summary::-webkit-details-marker {
  display: none;
}

.faq-shell summary::after {
  content: "+";
  color: var(--gold);
  font-size: 1.35rem;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.faq-shell details[open] > summary::after {
  transform: rotate(45deg);
}

.faq-shell details > p {
  margin: 0.6rem 0 0;
}

.site-footer {
  margin-top: 4rem;
  padding: 2.8rem 0;
  background: #060d16;
  border-top: 2px solid rgba(201, 135, 26, 0.3);
  color: var(--text-muted);
}

.site-footer h2,
.site-footer h3 {
  margin-bottom: 0.75rem;
  color: var(--text-primary);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid {
  display: grid;
  gap: 1.6rem 2rem;
  grid-template-columns: 1.1fr 1fr minmax(0, 2fr);
}

.footer-brand p,
.footer-contact p {
  max-width: 30rem;
}

.footer-link-groups {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.footer-link-group ul {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-link-group a,
.footer-contact a,
.footer-credit a {
  display: inline-flex;
  align-items: center;
  min-width: 44px;
  min-height: 32px;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.15s ease;
}

.footer-link-group a:hover,
.footer-contact a:hover,
.footer-credit a:hover {
  color: var(--gold);
}

.footer-credit {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js-ready .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.js-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .site-nav {
    gap: 0.22rem;
    font-size: 0.84rem;
  }

  .site-nav a {
    padding: 0.4rem 0.5rem;
  }

  .cta-primary,
  .cta-secondary,
  .button {
    padding: 0.78rem 1.1rem;
    font-size: 0.86rem;
  }

  .brand img {
    width: 144px;
  }
}

@media (max-width: 1100px) {
  html {
    scroll-padding-top: calc(64px + 1rem);
  }

  .menu-toggle {
    display: inline-flex;
    min-height: 44px;
    flex-shrink: 0;
  }

  .nav-row {
    min-height: 64px;
    gap: 0.75rem;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.85rem 1rem 1.1rem;
    gap: 0.35rem;
    background: #ffffff;
    border-bottom: 1px solid var(--header-border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    max-height: calc(100vh - 64px);
    overflow-y: auto;
  }

  .site-nav[data-open="true"] {
    display: flex;
  }

  .site-nav a {
    display: flex;
    align-items: center;
    min-height: 44px;
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .hero-grid,
  .grid-3,
  .grid-4,
  .footer-grid,
  .discovery-gallery,
  .trust-bar-grid,
  .reach-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-bar-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    padding: 0.85rem 1.5rem;
  }

  .trust-item + .trust-item::before {
    display: none;
  }

  .pathway-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }

  .pathway-node {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    text-align: left;
  }

  .pathway-name,
  .pathway-duration {
    margin: 0;
  }

  .pathway-node + .pathway-node::before {
    display: block;
    left: 18px;
    top: -1rem;
    width: 2px;
    height: 1rem;
    background: linear-gradient(180deg, rgba(201, 135, 26, 0.25), var(--gold));
  }

  .discovery-gallery picture:last-child {
    grid-column: span 2;
    aspect-ratio: 16 / 5;
  }

  .footer-link-groups {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1180px) and (min-width: 901px) {
  #packages .grid.grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    max-width: 900px;
    margin-inline: auto;
  }

  #packages .discovery-package:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  h1 {
    font-size: clamp(2rem, 7vw, 3.2rem);
  }

  h2 {
    font-size: clamp(1.6rem, 5vw, 2.4rem);
  }

  .section {
    padding: 3rem 0;
  }

  .section-tight {
    padding: 2.2rem 0;
  }

  .hero-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .discovery-gallery,
  .field-grid,
  .footer-grid,
  .trust-bar-grid,
  .reach-grid {
    grid-template-columns: 1fr;
  }

  .footer-link-groups {
    grid-template-columns: 1fr;
  }

  .footer-link-group a,
  .footer-contact a,
  .footer-credit a {
    min-height: 44px;
  }

  .trust-item + .trust-item::before {
    display: none;
  }

  .discovery-gallery picture:last-child {
    grid-column: span 1;
    aspect-ratio: 4 / 3;
  }

  .pathway-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }

  .pathway-node {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    text-align: left;
  }

  .pathway-name,
  .pathway-duration {
    margin: 0;
  }

  .hero-fullbleed {
    min-height: auto;
    padding: 5rem 0;
    background-attachment: scroll;
  }

  .hero-image img,
  .image-banner img {
    min-height: 260px;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: clamp(1.85rem, 8vw, 2.35rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button,
  .hero-actions .cta-primary,
  .hero-actions .cta-secondary {
    width: 100%;
  }

  .package-header {
    flex-direction: column;
    min-height: 0;
  }

  .discovery-package .package-details li {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .discovery-package .price {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .js-ready .hero-copy > *,
  .js-ready .reveal,
  .js-ready .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}
