:root {
  --red: #73233D;
  --red-dark: #73233D;
  --charcoal: #080808;
  --charcoal-2: #111111;
  --ink: #111111;
  --muted: rgba(17, 17, 17, .68);
  --gray: #A7A9AC;
  --paper: #F4F1EA;
  --paper-2: #F4F1EA;
  --line: rgba(167, 169, 172, .42);
  --forest: #5E7F4F;
  --moss: #5E7F4F;
  --gold: #C49A4A;
  --white: #F4F1EA;
  --shadow: 0 18px 48px rgba(15, 12, 8, .16);
  --max: 1180px;
  --header-h: 96px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(var(--max), calc(100% - 72px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  z-index: 999;
  background: var(--white);
  color: var(--charcoal);
  padding: .75rem 1rem;
  border-radius: 6px;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 clamp(24px, 4vw, 58px);
  color: var(--white);
  background: rgba(8, 8, 8, .98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .32);
  transition: box-shadow .22s ease;
}

.site-header.scrolled,
.subpage .site-header {
  height: var(--header-h);
  background: rgba(8, 8, 8, .98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .32);
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 172px;
  height: auto;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, .4));
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.main-nav a {
  position: relative;
  opacity: .95;
  transition: opacity .2s ease, transform .2s ease;
}

.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  opacity: 1;
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, .28);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.nav-cta {
  padding: 13px 22px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-color: transparent;
  box-shadow: 0 14px 34px rgba(115, 35, 61, .36);
}

.btn {
  padding: 14px 22px;
}

.btn:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-color: transparent;
  box-shadow: 0 18px 42px rgba(115, 35, 61, .34);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .55);
}

.btn-light {
  color: var(--red-dark);
  background: var(--white);
  border-color: var(--white);
}

.btn-text {
  color: var(--red-dark);
  border-color: var(--red);
  background: transparent;
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 120;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 4px;
  background: rgba(255, 255, 255, .06);
  padding: 9px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px auto;
  transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 590px;
  height: 68svh;
  max-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--charcoal);
}

.hero picture,
.hero-media,
.page-hero picture,
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero picture {
  left: 0;
  width: 100%;
}

.hero-media,
.page-hero img {
  object-fit: cover;
}

.hero-media {
  object-position: 50% 13%;
  animation: slowPan 18s ease-in-out infinite alternate;
}

.hero-scrim,
.page-hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, .93) 0%, rgba(8, 8, 8, .72) 30%, rgba(8, 8, 8, .25) 55%, rgba(8, 8, 8, .08) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, .26));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: var(--header-h);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: .76rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0;
  font-weight: 900;
}

.center {
  text-align: center;
}

.hero h1,
.section-title,
.page-hero h1,
.cta-band h2 {
  font-family: Cinzel, Georgia, serif;
  font-weight: 500;
  letter-spacing: 0;
  line-height: .98;
  text-wrap: balance;
}

.hero h1 {
  max-width: 620px;
  margin: 0 0 24px;
  font-size: 6.7rem;
  text-shadow: 0 24px 64px rgba(0, 0, 0, .52);
}

.hero-text {
  max-width: 420px;
  margin: 0 0 24px;
  font-size: 1.24rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, .92);
}

.motto {
  margin: 0 0 28px;
  color: var(--white);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.motto::before {
  content: "";
  display: block;
  width: 54px;
  height: 3px;
  margin: 0 0 16px;
  background: var(--red);
}

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

.pillars {
  color: var(--white);
  background: linear-gradient(135deg, var(--charcoal), var(--charcoal-2) 72%, rgba(94, 127, 79, .2));
  border-top: 1px solid rgba(255, 255, 255, .07);
  border-bottom: 1px solid rgba(0, 0, 0, .48);
}

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

.pillars article {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 20px;
  align-items: center;
  min-height: 116px;
  padding: 26px 32px;
  border-right: 1px solid rgba(255, 255, 255, .13);
}

.pillars article:last-child {
  border-right: 0;
}

.pillars h2,
.card-body h3,
.ambassador-card h3,
.mini-card h3,
.raptor-panel h3,
.faq-item h3,
.step-card h3 {
  font-family: Cinzel, Georgia, serif;
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.pillars h2 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.pillars p {
  margin: 0;
  color: rgba(244, 241, 234, .82);
  font-size: .89rem;
  line-height: 1.35;
}

.line-icon {
  display: inline-grid;
  place-items: center;
  width: 66px;
  height: 66px;
  color: var(--red);
  border: 1px solid rgba(115, 35, 61, .7);
  border-radius: 50%;
  flex: 0 0 auto;
}

.line-icon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pillars .pillar-icon {
  width: 70px;
  height: 70px;
  color: var(--red);
  background:
    radial-gradient(circle at 50% 42%, rgba(115, 35, 61, .16), rgba(196, 154, 74, .05) 64%),
    rgba(255, 255, 255, .02);
  border-color: rgba(115, 35, 61, .64);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .04), 0 10px 28px rgba(0, 0, 0, .22);
}

.pillars .pillar-icon svg {
  width: 39px;
  height: 39px;
  stroke-width: 2;
}

.pillars .pillar-icon img {
  display: block;
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 6px 8px rgba(0, 0, 0, .28));
}

.section {
  padding: 76px 0;
}

.light {
  background: linear-gradient(180deg, var(--paper), var(--paper-2));
}

.dark {
  color: var(--white);
  background: linear-gradient(135deg, var(--charcoal), var(--charcoal-2) 64%, rgba(94, 127, 79, .26));
}

.section-title {
  margin: 0 0 34px;
  font-size: 3.6rem;
}

.section-intro {
  max-width: 720px;
  margin: -16px auto 36px;
  color: var(--muted);
  font-size: 1.06rem;
}

.experience-grid,
.ambassador-grid,
.program-grid,
.steps-grid,
.support-grid {
  display: grid;
  gap: 14px;
}

.experience-grid {
  grid-template-columns: repeat(5, 1fr);
}

.experience-card,
.quote-card,
.mini-card,
.step-card,
.faq-item,
.booking-card,
.contact-card,
.feature-panel {
  background: rgba(244, 241, 234, .88);
  border: 1px solid rgba(0, 0, 0, .06);
  box-shadow: var(--shadow);
  border-radius: 6px;
}

.experience-card {
  min-height: 348px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease;
}

.experience-card:hover,
.ambassador-card:hover,
.mini-card:hover,
.step-card:hover {
  transform: translateY(-5px);
}

.experience-card img {
  width: 100%;
  height: 172px;
  object-fit: cover;
  transition: transform .4s ease;
}

.experience-card:hover img {
  transform: scale(1.04);
}

.card-body {
  position: relative;
  flex: 1;
  padding: 20px 18px 48px;
}

.card-body .line-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 8px;
  border: 0;
  border-radius: 0;
}

.card-body .line-icon svg {
  width: 34px;
  height: 34px;
}

.card-body h3 {
  margin: 0 0 10px;
  font-size: 1.02rem;
}

.card-body p {
  margin: 0;
  color: rgba(17, 17, 17, .76);
  font-size: .88rem;
  line-height: 1.45;
}

.card-body a {
  position: absolute;
  right: 18px;
  bottom: 14px;
  color: var(--red);
  font-size: 1.35rem;
  font-weight: 900;
}

.ambassadors {
  padding-bottom: 42px;
}

.ambassador-grid {
  grid-template-columns: repeat(5, 1fr);
}

.ambassador-card {
  position: relative;
  min-height: 286px;
  overflow: hidden;
  color: var(--white);
  background: var(--charcoal-2);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 6px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .38);
  transition: transform .22s ease, border-color .22s ease;
}

.ambassador-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.ambassador-card:hover img {
  transform: scale(1.04);
}

.ambassador-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .02) 35%, rgba(0, 0, 0, .86) 100%);
}

.ambassador-card div {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px;
}

.ambassador-card h3 {
  margin: 0;
  font-size: 1.05rem;
  text-shadow: 0 6px 20px rgba(0, 0, 0, .8);
}

.ambassador-card p {
  margin: 6px 0 0;
  color: rgba(244, 241, 234, .86);
  font-size: .78rem;
  font-style: italic;
}

.ambassador-card p::after {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin-top: 10px;
  background: var(--red);
}

.section-action {
  padding-top: 26px;
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(260px, .9fr) repeat(2, minmax(240px, 1fr));
  gap: 22px;
  align-items: stretch;
}

.trust-grid > .trust-summary {
  grid-row: span 2;
}

.trust .section-title {
  margin-bottom: 18px;
  font-size: 3rem;
}

.stars {
  color: var(--red);
  font-size: 1.55rem;
  line-height: 1;
}

.muted {
  margin: .55rem 0 0;
  color: var(--muted);
  font-size: .92rem;
}

.review-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.review-links a {
  display: grid;
  gap: 3px;
  min-height: 72px;
  padding: 13px;
  color: var(--ink);
  background: rgba(244, 241, 234, .7);
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: transform .18s ease, border-color .18s ease;
}

.review-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(115, 35, 61, .32);
}

.review-links strong {
  color: var(--red-dark);
  font-family: Cinzel, Georgia, serif;
  font-size: 1.35rem;
  line-height: 1;
}

.review-links span {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-card {
  display: block;
  padding: 24px;
  min-height: 188px;
  color: var(--ink);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.quote-card:hover,
.quote-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(115, 35, 61, .35);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .13);
}

.quote-card:focus-visible {
  outline: 3px solid rgba(115, 35, 61, .28);
  outline-offset: 3px;
}

.quote-card p {
  margin: 0 0 18px;
  font-size: .93rem;
  line-height: 1.55;
}

.quote-card .quote-mark {
  display: block;
  color: var(--red);
  font-family: Cinzel, Georgia, serif;
  font-size: 2.6rem;
  line-height: .65;
}

.quote-card strong {
  display: block;
  color: var(--ink);
  font-size: .83rem;
}

.review-source {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.review-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  color: var(--red-dark);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cta-band {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8, 8, 8, .92), rgba(8, 8, 8, .68) 52%, rgba(8, 8, 8, .84)),
    url("../img/falcon.webp") center 38% / cover;
  padding: 46px 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.25fr 1.1fr auto;
  gap: 32px;
  align-items: center;
}

.cta-band h2 {
  margin: 0 0 10px;
  font-size: 3rem;
}

.cta-band p {
  margin: 0;
  color: rgba(244, 241, 234, .84);
}

.cta-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  text-align: center;
}

.cta-points span {
  display: grid;
  justify-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cta-points .line-icon {
  width: 42px;
  height: 42px;
  color: var(--gold);
  border: 0;
}

.cta-points .line-icon svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.8;
}

.site-footer {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(244, 241, 234, .035), rgba(244, 241, 234, 0) 34%),
    var(--charcoal-2);
  padding: 34px 0 18px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.15fr .62fr .62fr .9fr 1.15fr;
  gap: 30px;
  align-items: start;
}

.footer-brand img {
  width: 170px;
  margin-bottom: 14px;
}

.footer-brand p {
  max-width: 310px;
  color: var(--gray);
  font-size: .9rem;
}

.site-footer h2 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-footer a,
.site-footer p {
  display: block;
  margin: .34rem 0;
  color: var(--gray);
  font-size: .87rem;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin: 0 0 12px;
}

.footer-social a {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin: 0;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 50%;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

.footer-social a:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social a:first-child svg {
  fill: currentColor;
  stroke: none;
}

.footer-newsletter {
  padding: 18px;
  border: 1px solid rgba(167, 169, 172, .55);
  border-radius: 4px;
  background: rgba(244, 241, 234, .025);
}

.signup label {
  display: block;
  margin: 0 0 8px;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.signup p {
  margin: 0 0 12px;
}

.signup-row {
  display: flex;
  border: 1px solid rgba(167, 169, 172, .45);
}

.signup input {
  min-width: 0;
  flex: 1;
  color: var(--white);
  background: var(--charcoal);
  border: 0;
  padding: 13px 14px;
}

.signup button {
  color: var(--white);
  background: var(--red);
  border: 0;
  font-size: .75rem;
  font-weight: 900;
  text-transform: uppercase;
  padding: 0 16px;
}

.form-status {
  min-height: 1.2rem;
  margin-top: 8px;
  color: rgba(244, 241, 234, .86);
  font-size: .82rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
  padding-top: 16px;
  color: var(--gray);
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .78rem;
}

.footer-bottom a {
  display: inline;
  margin: 0;
  color: var(--gray);
}

.page-hero {
  position: relative;
  min-height: 440px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--charcoal);
  padding: calc(var(--header-h) + 82px) 0 68px;
}

.page-hero img {
  object-position: center 42%;
}

.page-hero img[src*="hero-hawk-kid"] {
  object-position: 52% 30%;
}

.page-hero h1 {
  margin: 0 0 18px;
  font-size: 5.4rem;
}

.page-hero p:not(.eyebrow) {
  max-width: 700px;
  color: rgba(244, 241, 234, .88);
  font-size: 1.12rem;
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.about-contact {
  padding: 42px 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.about-contact-grid {
  display: grid;
  grid-template-columns: 1.35fr .82fr .82fr;
  gap: 16px;
  align-items: stretch;
}

.about-contact-card {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 24px;
  background: rgba(244, 241, 234, .88);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 16px 44px rgba(15, 12, 8, .1);
}

.about-contact-card .eyebrow {
  margin: 0;
}

.about-contact-card h2,
.about-contact-card h3 {
  margin: 0;
  font-family: Cinzel, Georgia, serif;
  line-height: 1.08;
  letter-spacing: 0;
}

.about-contact-card h2 {
  font-size: 2.05rem;
}

.about-contact-card h3 {
  font-size: 1.2rem;
  text-transform: uppercase;
}

.about-contact-card p {
  margin: 0;
  color: var(--muted);
}

.about-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.split {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 52px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: .9fr 1fr;
}

.split-media {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.split-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.copy-block p {
  color: var(--muted);
  font-size: 1.02rem;
}

.copy-block .section-title {
  margin-bottom: 20px;
}

.mini-card,
.step-card,
.feature-panel {
  padding: 26px;
}

.mini-card h3,
.step-card h3,
.faq-item h3,
.raptor-panel h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
}

.mini-card p,
.step-card p,
.faq-item p,
.feature-panel p,
.raptor-panel p {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
}

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

.experience-programs {
  position: relative;
}

.program-list {
  min-width: 0;
  display: grid;
  gap: 22px;
  margin-top: 34px;
}

.program-card {
  width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(280px, .82fr) 1fr;
  overflow: hidden;
  background: rgba(244, 241, 234, .94);
  border: 1px solid rgba(8, 8, 8, .08);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.program-card:nth-child(even) {
  grid-template-columns: 1fr minmax(280px, .82fr);
}

.program-card > img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.program-card:nth-child(even) > img {
  order: 2;
}

.program-card-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 38px;
}

.program-level {
  margin: 0 0 8px;
  color: var(--red-dark);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.program-card h3 {
  margin: 0 0 14px;
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(1.55rem, 2.25vw, 2.35rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.05;
  overflow-wrap: break-word;
}

.program-card-body > p:not(.program-level) {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.58;
  overflow-wrap: break-word;
}

.program-facts {
  min-width: 0;
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(5, minmax(92px, 1fr));
  gap: 10px;
  margin: 26px 0 0;
}

.program-facts div {
  min-width: 0;
  min-height: 96px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 13px 12px;
  background: rgba(255, 255, 255, .52);
  border: 1px solid rgba(8, 8, 8, .08);
  border-radius: 6px;
}

.program-facts dt {
  margin: 0 0 5px;
  color: rgba(17, 17, 17, .55);
  font-size: .6rem;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
  white-space: nowrap;
}

.program-facts dd {
  margin: 0;
  color: var(--ink);
  font-size: .84rem;
  font-weight: 800;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.program-card .feature-list {
  gap: 10px;
  margin-top: 24px;
}

.program-card .feature-list li {
  font-size: .94rem;
  line-height: 1.45;
  overflow-wrap: break-word;
}

.program-card .btn {
  align-self: start;
  margin-top: 28px;
}

.program-card .program-cta {
  min-width: 190px;
  padding: 14px 22px;
  color: var(--white);
  box-shadow: 0 16px 34px rgba(115, 35, 61, .28);
}

.program-card-featured {
  grid-template-columns: minmax(320px, .95fr) 1fr;
  background:
    linear-gradient(135deg, rgba(115, 35, 61, .08), rgba(94, 127, 79, .08)),
    rgba(244, 241, 234, .96);
  border-color: rgba(115, 35, 61, .18);
}

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

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

.staff-section {
  overflow: hidden;
}

.staff-group {
  margin-top: 46px;
}

.staff-group:first-of-type {
  margin-top: 22px;
}

.staff-group-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.staff-group-heading .eyebrow {
  margin-bottom: 8px;
}

.staff-group-heading h3 {
  margin: 0;
  font-family: Cinzel, Georgia, serif;
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.08;
}

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

.staff-card {
  min-width: 0;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(0, 0, 0, .07);
  border-radius: 8px;
  box-shadow: var(--shadow);
  outline: 0;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.staff-card:hover,
.staff-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(115, 35, 61, .28);
  box-shadow: 0 24px 60px rgba(15, 12, 8, .19);
}

.staff-flip {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  transform-style: preserve-3d;
  transition: transform .7s cubic-bezier(.2, .7, .2, 1);
}

.staff-card:hover .staff-flip,
.staff-card:focus-visible .staff-flip,
.staff-card.is-scroll-flipped .staff-flip {
  transform: rotateY(180deg);
}

.staff-photo {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: end start;
  overflow: hidden;
  padding: 18px;
  color: var(--white);
  backface-visibility: hidden;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .03) 30%, rgba(0, 0, 0, .74) 100%),
    linear-gradient(135deg, var(--gray), rgba(94, 127, 79, .72) 52%, var(--charcoal-2));
}

.staff-photo::before {
  content: "";
  position: absolute;
  inset: 13%;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 50%;
}

.staff-photo::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 26%;
  width: 34%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  transform: translateX(-50%);
}

.staff-photo.has-image {
  padding: 0;
  background: var(--charcoal-2);
}

.staff-photo.has-image::before {
  inset: 0;
  z-index: 1;
  border: 0;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 58%, rgba(0, 0, 0, .34) 100%);
}

.staff-photo.has-image::after {
  display: none;
}

.staff-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--staff-pos, center center);
}

.staff-photo-front {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .02) 30%, rgba(0, 0, 0, .72) 100%),
    linear-gradient(135deg, var(--gray), var(--forest) 54%, var(--charcoal-2));
}

.staff-photo-back {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .02) 30%, rgba(0, 0, 0, .72) 100%),
    linear-gradient(135deg, var(--red), var(--forest) 52%, var(--charcoal));
  transform: rotateY(180deg);
}

.staff-photo span {
  position: relative;
  z-index: 1;
  display: inline-block;
  color: rgba(255, 255, 255, .88);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.staff-copy {
  padding: 20px;
}

.staff-copy strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.18;
}

.staff-copy span {
  display: block;
  margin-top: 5px;
  color: var(--red-dark);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.staff-copy p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.5;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
}

.feature-list li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
}

.feature-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: .55em;
  background: var(--red);
  border-radius: 50%;
}

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

.raptor-panel {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.raptor-panel img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.raptor-panel div {
  padding: 22px;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 920px;
  margin-inline: auto;
}

.faq-item {
  padding: 24px 26px;
}

.booking-layout {
  display: grid;
  grid-template-columns: 1fr .78fr;
  gap: 28px;
  align-items: start;
}

.booking-card,
.contact-card {
  padding: 28px;
}

.booking-form {
  display: grid;
  gap: 16px;
}

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

.field {
  display: grid;
  gap: 6px;
}

.field label {
  color: var(--ink);
  font-size: .86rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 12px 13px;
}

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

.field.full {
  grid-column: 1 / -1;
}

[data-reveal] {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .6s ease, transform .6s ease;
}

body.reveal-ready [data-reveal]:not(.is-visible) {
  transform: translateY(18px);
}

html body [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slowPan {
  from {
    transform: scale(1.01);
  }
  to {
    transform: scale(1.035) translateX(-.4%);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }

  .staff-card:hover .staff-flip,
  .staff-card:focus-visible .staff-flip,
  .staff-card.is-scroll-flipped .staff-flip {
    transform: none !important;
  }
}

@media (max-width: 1180px) {
  .main-nav {
    gap: 13px;
    font-size: .7rem;
  }

  .brand img {
    width: 158px;
  }

  .hero h1 {
    font-size: 5.5rem;
  }

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

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

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

  .trust-grid,
  .cta-grid,
  .booking-layout {
    grid-template-columns: 1fr 1fr;
  }

  .trust-grid > :first-child,
  .cta-grid > :first-child {
    grid-column: 1 / -1;
  }

  .trust-grid > .trust-summary {
    grid-row: auto;
  }

  .cta-grid .btn {
    justify-self: start;
  }

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

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

  .about-contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-contact-primary {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1181px) {
  .hero picture {
    left: clamp(700px, 54vw, 1100px);
    width: auto;
  }
}

@media (max-width: 920px) {
  :root {
    --header-h: 80px;
  }

  .container {
    width: min(var(--max), calc(100% - 40px));
  }

  .site-header {
    padding: 0 22px;
  }

  .brand img {
    width: 142px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(390px, 100%);
    height: 100vh;
    padding: 98px 30px 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    color: var(--white);
    background: rgba(8, 8, 8, .98);
    box-shadow: -24px 0 70px rgba(0, 0, 0, .45);
    font-size: .92rem;
    white-space: normal;
    transform: translateX(100%);
    transition: transform .22s ease;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .nav-cta {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
  }

  .hero {
    min-height: 660px;
    height: 78svh;
    max-height: none;
    align-items: end;
    padding-bottom: 56px;
  }

  .hero picture {
    left: 0;
    width: 100%;
  }

  .hero-media {
    object-position: 50% 13%;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(8, 8, 8, .92), rgba(8, 8, 8, .52)),
      linear-gradient(0deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, 0) 62%);
  }

  .hero-content {
    padding-top: 0;
  }

  .hero h1 {
    font-size: 4.55rem;
  }

  .pillars-grid,
  .split,
  .split.reverse,
  .booking-layout,
  .trust-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .pillars article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .13);
  }

  .pillars article:last-child {
    border-bottom: 0;
  }

  .section-title,
  .trust .section-title,
  .cta-band h2 {
    font-size: 2.75rem;
  }

  .experience-grid,
  .ambassador-grid,
  .program-grid,
  .staff-grid,
  .raptor-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .program-card,
  .program-card:nth-child(even),
  .program-card-featured {
    grid-template-columns: 1fr;
  }

  .program-card:nth-child(even) > img {
    order: 0;
  }

  .program-card > img {
    min-height: 0;
    height: 330px;
  }

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

  .footer-newsletter {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .container {
    width: calc(100% - 28px);
  }

  .site-header {
    padding-inline: 14px;
  }

  .brand img {
    width: 128px;
  }

  .hero {
    min-height: 690px;
  }

  .hero h1 {
    font-size: 3.62rem;
  }

  .hero-text {
    max-width: 330px;
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
    padding-inline: 18px;
  }

  .section {
    padding: 56px 0;
  }

  .section-title,
  .trust .section-title,
  .cta-band h2 {
    font-size: 2.25rem;
  }

  .page-hero {
    min-height: 390px;
    padding-bottom: 48px;
  }

  .page-hero h1 {
    max-width: 10ch;
    font-size: 2.72rem;
    overflow-wrap: break-word;
  }

  .page-hero p:not(.eyebrow) {
    max-width: 31ch;
  }

  .pillars article {
    grid-template-columns: 62px 1fr;
    gap: 15px;
    padding: 22px 0;
  }

  .line-icon {
    width: 58px;
    height: 58px;
  }

  .line-icon svg {
    width: 32px;
    height: 32px;
  }

  .experience-grid,
  .ambassador-grid,
  .program-grid,
  .staff-grid,
  .raptor-grid,
  .steps-grid,
  .support-grid,
  .cta-points,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .program-list {
    gap: 16px;
    margin-top: 26px;
  }

  .experience-programs .container {
    width: 100%;
    max-width: 100%;
    padding-inline: 14px;
    overflow: hidden;
  }

  .experience-programs .section-title {
    max-width: 10.5ch;
    margin-inline: auto;
    font-size: 1.9rem;
    line-height: 1.08;
  }

  .experience-programs .section-intro {
    max-width: 30ch;
    margin-bottom: 28px;
  }

  .program-card > img {
    height: 240px;
  }

  .program-card {
    width: min(100%, calc(100vw - 42px));
    max-width: calc(100vw - 42px);
    justify-self: center;
  }

  .program-card-body {
    padding: 24px 28px 24px 20px;
  }

  .program-card > img,
  .program-card-body,
  .program-facts,
  .program-card .feature-list {
    width: 100%;
    max-width: 100%;
  }

  .program-card h3 {
    max-width: 15ch;
    font-size: 1.55rem;
  }

  .program-card-body > p:not(.program-level),
  .program-card .feature-list li {
    font-size: .94rem;
  }

  .program-card-body > p:not(.program-level) {
    max-width: 27ch;
  }

  .program-card .feature-list li {
    grid-template-columns: 16px minmax(0, 27ch);
  }

  .program-facts {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .program-facts div {
    padding: 10px 9px;
  }

  .program-card .btn {
    width: auto;
  }

  .about-contact {
    padding: 28px 0;
  }

  .about-contact-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .about-contact-card {
    padding: 20px;
  }

  .about-contact-card h2 {
    font-size: 1.72rem;
  }

  .about-contact-actions {
    display: grid;
  }

  .site-footer {
    padding: 28px 0 20px;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 18px;
    align-items: start;
  }

  .footer-brand,
  .footer-connect,
  .footer-newsletter {
    grid-column: 1 / -1;
    text-align: center;
  }

  .footer-brand {
    display: grid;
    justify-items: center;
  }

  .footer-brand img {
    width: 132px;
    margin-bottom: 10px;
  }

  .footer-brand p {
    max-width: 280px;
    margin-inline: auto;
  }

  .footer-column:not(.footer-connect) {
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .1);
  }

  .footer-column:not(.footer-connect) a {
    padding: 2px 0;
  }

  .footer-connect {
    display: grid;
    justify-items: center;
    gap: 4px;
    padding-top: 4px;
  }

  .footer-social {
    justify-content: center;
    margin-bottom: 8px;
  }

  .footer-newsletter {
    padding: 18px 16px;
    text-align: left;
  }

  .footer-newsletter label,
  .footer-newsletter p {
    text-align: center;
  }

  .experience-card {
    min-height: 0;
  }

  .experience-card img {
    height: 220px;
  }

  .ambassador-card {
    min-height: 350px;
  }

  .raptor-panel img {
    height: 230px;
  }

  .signup-row {
    display: grid;
  }

  .signup button {
    min-height: 44px;
  }

  .footer-bottom {
    display: grid;
  }
}
