: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;
}

.nav-dropdown {
  position: relative;
}

@media (hover: hover) and (pointer: fine) {
  .nav-dropdown::after {
    content: "";
    position: absolute;
    left: -18px;
    right: -18px;
    top: 100%;
    height: 18px;
    z-index: 230;
  }
}

.nav-drop-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
  opacity: .95;
}

.nav-drop-toggle::after,
.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;
}

.nav-drop-toggle {
  position: relative;
}

.nav-drop-icon {
  color: var(--gold);
  font-size: .68rem;
  line-height: 1;
  transition: transform .18s ease;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  z-index: 240;
  min-width: 210px;
  padding: 10px;
  background: #080808;
  border: 1px solid rgba(244, 241, 234, .2);
  border-top: 3px solid var(--red);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .42);
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  color: var(--white);
  opacity: 1;
  border-radius: 4px;
}

.nav-dropdown-menu a::after {
  display: none;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a[aria-current="page"] {
  color: var(--white);
  background: rgba(115, 35, 61, .34);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown:hover .nav-drop-icon,
.nav-dropdown:focus-within .nav-drop-icon,
.nav-dropdown.open .nav-drop-icon {
  transform: rotate(180deg);
}

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

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after,
.nav-drop-toggle:hover::after,
.nav-dropdown.is-current .nav-drop-toggle::after,
.nav-dropdown.open .nav-drop-toggle::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);
}

.ambassador-card-loading {
  grid-column: 1 / -1;
  min-height: 174px;
}

.ambassador-card-loading::after {
  background: linear-gradient(135deg, rgba(8, 8, 8, .94), rgba(115, 35, 61, .32));
}

.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;
  --hero-x: 50%;
  --hero-y: 42%;
}

.page-hero img {
  object-position: var(--hero-x) var(--hero-y);
}

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

.page-hero img[src*="hero-booking"],
.page-hero img[src*="hero-experiences"] {
  object-position: 47% 46%;
}

.page-hero img[src*="hero-staff"] {
  object-position: 55% 48%;
}

.page-hero img[src*="hero-about"] {
  object-position: 52% 48%;
}

.page-hero img[src*="hero-locations"] {
  object-position: 58% 48%;
}

.page-hero img[src*="hero-gift-card"] {
  object-position: 55% 46%;
}

.page-hero img[src*="hero-falconry"] {
  object-position: 50% 52%;
}

.page-hero img[src*="hero-flock"] {
  object-position: 52% 42%;
}

.page-hero img[src*="hero-education"] {
  object-position: 48% 58%;
}

.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,
.staff-photo.has-video {
  padding: 0;
  background: var(--charcoal-2);
}

.staff-photo.has-image::before,
.staff-photo.has-video::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,
.staff-photo.has-video::after {
  display: none;
}

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

.staff-photo video {
  display: block;
}

.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;
}

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

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

.flock-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--charcoal-2);
}

.flock-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform .35s ease;
}

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

.flock-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 54%, rgba(0, 0, 0, .38) 100%);
}

.flock-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 0;
}

.flock-meta span {
  padding: 5px 7px;
  color: var(--red-dark);
  background: rgba(115, 35, 61, .08);
  border: 1px solid rgba(115, 35, 61, .13);
  border-radius: 4px;
  font-size: .67rem;
  font-weight: 900;
  text-transform: uppercase;
}

.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;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.location-card {
  display: grid;
  gap: 14px;
  padding: 28px;
  background: rgba(244, 241, 234, .9);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.location-card h2 {
  margin: 0;
  font-family: Cinzel, Georgia, serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.08;
}

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

.location-address {
  color: var(--ink) !important;
  font-weight: 800;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.media-page .page-hero img {
  object-position: 50% 34%;
}

.media-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.media-hero-stats span {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  min-height: 38px;
  padding: 9px 13px;
  color: rgba(244, 241, 234, .86);
  font-size: .77rem;
  font-weight: 800;
  text-transform: uppercase;
  background: rgba(8, 8, 8, .46);
  border: 1px solid rgba(244, 241, 234, .22);
}

.media-hero-stats strong {
  color: var(--gold);
}

.media-lead-section {
  padding-top: 72px;
}

.media-feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.34fr) minmax(310px, .66fr);
  gap: 24px;
  align-items: stretch;
}

.media-feature-story,
.media-press-panel,
.media-card,
.media-fact-grid article {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.media-feature-story {
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(360px, .82fr);
  min-height: 470px;
  overflow: hidden;
  color: var(--white);
  background: var(--charcoal);
  border: 1px solid rgba(196, 154, 74, .26);
}

.media-feature-image {
  position: relative;
  min-height: 470px;
  overflow: hidden;
}

.media-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% 54%;
}

.media-feature-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0), rgba(8, 8, 8, .46));
  pointer-events: none;
}

.media-feature-image span {
  position: absolute;
  z-index: 1;
  left: 24px;
  bottom: 24px;
  padding: 8px 12px;
  color: var(--white);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  background: var(--red);
}

.media-feature-video-wrap video {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: 52% 50%;
  background: var(--black);
}

.media-feature-video-wrap span {
  top: 24px;
  bottom: auto;
}

.media-feature-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 40px;
  background:
    linear-gradient(135deg, rgba(115, 35, 61, .24), rgba(8, 8, 8, 0) 42%),
    var(--charcoal-2);
}

.media-feature-copy h2,
.media-press-panel h2,
.media-kit-copy .section-title {
  margin: 0;
  font-family: Cinzel, Georgia, serif;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.04;
}

.media-feature-copy h2 {
  max-width: 13.5ch;
  font-size: clamp(2.15rem, 3.65vw, 3.65rem);
}

.media-feature-copy p:not(.eyebrow),
.media-press-panel p,
.media-kit-copy p {
  margin: 0;
  color: rgba(244, 241, 234, .82);
}

.media-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.media-links a,
.btn-text {
  color: var(--red-dark);
  font-weight: 900;
}

.media-feature-copy .media-links a {
  color: var(--gold);
  border-bottom: 1px solid rgba(196, 154, 74, .65);
}

.media-press-panel {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 34px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(244, 241, 234, .06), rgba(244, 241, 234, 0)),
    var(--charcoal);
  border: 1px solid rgba(196, 154, 74, .26);
}

.media-press-panel h2 {
  max-width: 11ch;
  color: var(--white);
  font-size: 2.25rem;
}

.media-topic-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.media-topic-list span {
  padding: 8px 10px;
  color: rgba(244, 241, 234, .86);
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(244, 241, 234, .07);
  border: 1px solid rgba(244, 241, 234, .13);
}

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(280px, .56fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 32px;
}

.section-heading-row .section-title {
  margin-bottom: 0;
}

.section-heading-row > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

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

.media-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background: rgba(255, 255, 255, .62);
  border: 1px solid rgba(8, 8, 8, .08);
  transition: transform .22s ease, box-shadow .22s ease;
}

.media-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 58px rgba(15, 12, 8, .2);
}

.media-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  background: var(--charcoal);
}

.media-card-copy {
  display: grid;
  gap: 13px;
  align-content: start;
  flex: 1;
  padding: 24px;
}

.media-card h3,
.newsletter-panel legend {
  margin: 0;
  font-family: Cinzel, Georgia, serif;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.12;
}

.media-card h3 {
  font-size: 1.42rem;
}

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

.media-date {
  color: var(--red-dark) !important;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.media-card .btn {
  justify-self: start;
  margin-top: auto;
}

.media-card-dark {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(115, 35, 61, .32), rgba(8, 8, 8, 0) 44%),
    var(--charcoal);
  border-color: rgba(196, 154, 74, .28);
}

.media-card-dark .media-card-copy {
  min-height: 100%;
  padding: 28px;
}

.media-card-dark h3 {
  color: var(--white);
  font-size: 1.8rem;
}

.media-card-dark p {
  color: rgba(244, 241, 234, .82);
}

.media-card-dark .media-date {
  color: var(--gold) !important;
}

.media-kit-section {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8, 8, 8, .94), rgba(8, 8, 8, .72)),
    url("../img/guest-hawk.jpg") center 44% / cover no-repeat;
}

.media-kit-grid {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(360px, .82fr);
  gap: 48px;
  align-items: center;
}

.media-kit-copy {
  max-width: 620px;
}

.media-kit-copy .section-title {
  color: var(--white);
}

.media-kit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.media-fact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.media-fact-grid article {
  display: grid;
  gap: 8px;
  min-height: 150px;
  align-content: start;
  padding: 22px;
  background: rgba(244, 241, 234, .94);
  border: 1px solid rgba(196, 154, 74, .28);
}

.media-fact-grid strong {
  color: var(--red-dark);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.media-fact-grid span {
  color: var(--ink);
  font-family: Cinzel, Georgia, serif;
  font-size: 1.22rem;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.media-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .38fr);
  gap: 34px;
  align-items: center;
}

.newsletter-layout {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .62fr);
  gap: 42px;
  align-items: start;
}

.newsletter-panel {
  display: grid;
  gap: 16px;
  padding: 28px;
  color: var(--white);
  background: var(--charcoal);
  border: 1px solid rgba(196, 154, 74, .28);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.newsletter-panel .field {
  display: grid;
  gap: 7px;
}

.newsletter-panel label,
.newsletter-panel legend {
  color: var(--white);
  font-weight: 900;
}

.newsletter-panel input[type="text"],
.newsletter-panel input[type="email"] {
  width: 100%;
  color: var(--white);
  background: rgba(244, 241, 234, .08);
  border: 1px solid rgba(244, 241, 234, .22);
  border-radius: 4px;
  padding: 12px 13px;
}

.newsletter-panel input[type="text"]:focus,
.newsletter-panel input[type="email"]:focus {
  outline: 2px solid rgba(196, 154, 74, .42);
  outline-offset: 2px;
}

.interest-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(244, 241, 234, .18);
  border-radius: 6px;
}

.interest-list label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(244, 241, 234, .84);
  font-weight: 700;
}

.interest-list input {
  margin-top: .28em;
  accent-color: var(--red);
}

.small-note {
  margin: 0;
  color: rgba(244, 241, 234, .66);
  font-size: .88rem;
}

.form-status {
  color: var(--gold);
  font-size: .9rem;
  font-weight: 800;
}

.history-grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 34px;
  align-items: start;
}

.history-panel {
  padding: 28px;
  color: var(--white);
  background: linear-gradient(135deg, var(--charcoal), var(--charcoal-2));
  border: 1px solid rgba(244, 241, 234, .14);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(8, 8, 8, .32);
}

.history-panel h2 {
  margin: 0 0 14px;
  font-family: Cinzel, Georgia, serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.08;
}

.history-panel p {
  margin: 0 0 14px;
  color: rgba(244, 241, 234, .82);
}

.history-panel p:last-child {
  margin-bottom: 0;
}

.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;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-drop-toggle {
    width: 100%;
    justify-content: space-between;
    font-size: .92rem;
  }

  .nav-drop-toggle::after {
    bottom: -6px;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    width: 100%;
    display: none;
    margin-top: 12px;
    padding: 8px;
    background: rgba(244, 241, 234, .05);
    border-color: rgba(244, 241, 234, .12);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown.open .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    display: grid;
    gap: 2px;
    transform: none;
  }

  .nav-dropdown:hover .nav-dropdown-menu {
    transform: none;
  }

  .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,
  .history-grid,
  .media-feature-layout,
  .media-feature-story,
  .media-card-featured,
  .media-contact,
  .section-heading-row,
  .media-kit-grid,
  .newsletter-layout,
  .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,
  .media-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;
  }

  .media-card-featured img {
    min-height: 260px;
  }

  .media-feature-image {
    min-height: 340px;
  }

  .media-feature-copy h2,
  .media-press-panel h2 {
    max-width: none;
  }

  .media-kit-grid {
    gap: 30px;
  }

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

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

  .location-grid {
    grid-template-columns: 1fr;
  }
}

@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,
  .media-grid,
  .steps-grid,
  .support-grid,
  .cta-points,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .media-card-featured > div,
  .media-feature-copy,
  .media-press-panel,
  .media-card-copy,
  .media-card-dark .media-card-copy,
  .newsletter-panel {
    padding: 20px;
  }

  .media-card-featured img {
    min-height: 220px;
  }

  .media-hero-stats {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 320px;
  }

  .media-feature-story {
    min-height: 0;
  }

  .media-feature-image {
    min-height: 275px;
  }

  .media-feature-copy h2 {
    font-size: 2.35rem;
  }

  .media-press-panel h2,
  .media-card-dark h3 {
    font-size: 1.82rem;
  }

  .section-heading-row {
    gap: 14px;
    margin-bottom: 22px;
  }

  .media-card img {
    height: 214px;
  }

  .media-kit-section {
    background-position: center;
  }

  .media-kit-actions {
    display: grid;
  }

  .media-fact-grid {
    grid-template-columns: 1fr;
  }

  .media-fact-grid article {
    min-height: 0;
    padding: 18px;
  }

  .media-fact-grid span {
    font-size: 1.08rem;
  }

  .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;
  }
}

.booking-wizard .section-title {
  margin-bottom: 24px;
}

.booking-location-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 34px;
}

.booking-location-card,
.booking-step,
.booking-session,
.attendee-box,
.booking-result,
.admin-panel,
.admin-cards article {
  background: rgba(244, 241, 234, .9);
  border: 1px solid rgba(8, 8, 8, .08);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.booking-location-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  color: var(--ink);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.booking-location-card:hover {
  transform: translateY(-3px);
  border-color: rgba(115, 35, 61, .3);
}

.booking-location-card.is-active {
  border-color: rgba(115, 35, 61, .5);
  box-shadow: 0 20px 52px rgba(115, 35, 61, .16);
}

.booking-location-card > img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #f4f1ea;
  border-bottom: 1px solid rgba(8, 8, 8, .1);
}

.booking-location-copy {
  display: grid;
  gap: 7px;
  flex: 1;
  padding: 18px;
}

.booking-location-card strong {
  font-family: Cinzel, Georgia, serif;
  font-size: 1.2rem;
  line-height: 1.08;
}

.booking-location-card span,
.booking-location-card em {
  color: var(--muted);
  font-size: .9rem;
}

.booking-location-card em {
  font-style: normal;
  font-weight: 800;
}

.booking-location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 8px;
}

.booking-location-actions a,
.booking-location-copy > a {
  color: var(--red-dark);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.booking-flow {
  display: grid;
  gap: 18px;
}

.booking-step {
  padding: 26px;
}

.booking-step h3 {
  margin: 0 0 18px;
  font-family: Cinzel, Georgia, serif;
  font-size: 1.5rem;
  font-weight: 500;
}

.booking-session-picker h3 {
  margin-bottom: 14px;
}

.booking-program-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 22px;
}

.booking-program-option {
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
  display: grid;
  gap: 5px;
  min-height: 124px;
  padding: 16px;
  border: 1px solid rgba(8, 8, 8, .1);
  border-radius: 8px;
  background: rgba(255, 255, 255, .68);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease, background .18s ease;
}

.booking-program-option:hover,
.booking-program-option.is-active {
  border-color: rgba(115, 35, 61, .45);
  background: #fff;
  box-shadow: 0 16px 34px rgba(17, 17, 17, .08);
  transform: translateY(-2px);
}

.booking-program-option strong {
  font-family: Cinzel, Georgia, serif;
  font-size: 1rem;
  line-height: 1.08;
}

.booking-program-option span,
.booking-program-option em {
  color: var(--muted);
  font-size: .82rem;
  font-style: normal;
}

.booking-program-option em {
  align-self: end;
  color: var(--red-dark);
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.booking-calendar-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr);
  gap: 20px;
  align-items: start;
}

.booking-calendar-panel,
.booking-date-panel {
  border: 1px solid rgba(8, 8, 8, .08);
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
  padding: clamp(16px, 2vw, 22px);
}

.booking-calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.booking-calendar-head strong {
  font-family: Cinzel, Georgia, serif;
  font-size: 1.18rem;
}

.booking-calendar-head button {
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(115, 35, 61, .28);
  border-radius: 999px;
  background: var(--bone);
  color: var(--red-dark);
  font-weight: 900;
  cursor: pointer;
}

.booking-calendar-weekdays,
.booking-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
  align-items: stretch;
}

.booking-calendar-weekdays {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
}

.booking-date-empty,
.booking-date-button {
  min-height: clamp(54px, 6.5vw, 76px);
}

.booking-date-button {
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
  display: grid;
  place-items: center;
  gap: 3px;
  width: 100%;
  min-width: 0;
  aspect-ratio: 1 / .86;
  border: 1px solid rgba(8, 8, 8, .08);
  border-radius: 8px;
  background: rgba(244, 241, 234, .55);
  color: rgba(17, 17, 17, .42);
  cursor: default;
}

.booking-date-button.has-sessions {
  background: rgba(115, 35, 61, .09);
  color: var(--ink);
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(115, 35, 61, .14);
}

.booking-date-button.has-sessions:hover,
.booking-date-button.is-selected {
  border-color: rgba(115, 35, 61, .58);
  background: var(--red-dark);
  color: #fff;
}

.booking-date-button span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  background: rgba(196, 154, 74, .24);
  color: inherit;
  font-size: .72rem;
  font-weight: 900;
}

.booking-date-button:disabled {
  opacity: .72;
}

.booking-calendar-note,
.booking-calendar-empty {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: .92rem;
}

.booking-date-panel h4 {
  margin: 0 0 14px;
  font-family: Cinzel, Georgia, serif;
  font-size: 1.28rem;
  font-weight: 500;
}

.booking-session-slots {
  display: grid;
  gap: 10px;
}

.booking-slot-button {
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
  display: grid;
  gap: 6px;
  width: 100%;
  padding: 15px;
  border: 1px solid rgba(8, 8, 8, .09);
  border-radius: 8px;
  background: rgba(244, 241, 234, .72);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.booking-slot-button:hover,
.booking-slot-button.is-selected {
  border-color: rgba(115, 35, 61, .55);
  background: #fff;
  box-shadow: 0 12px 28px rgba(17, 17, 17, .09);
  transform: translateY(-1px);
}

.booking-slot-button.is-selected {
  outline: 3px solid rgba(196, 154, 74, .32);
}

.booking-slot-button strong {
  color: var(--red-dark);
  font-size: 1.02rem;
}

.booking-slot-button span,
.booking-slot-button em {
  color: var(--muted);
  font-size: .9rem;
  font-style: normal;
}

.booking-slot-button em {
  font-weight: 800;
}

.booking-session-list {
  display: grid;
  gap: 12px;
}

.booking-session {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  cursor: pointer;
}

.booking-session input {
  width: 20px;
  height: 20px;
  accent-color: var(--red);
}

.booking-session strong {
  color: var(--red-dark);
}

.booking-session em {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
  text-align: right;
}

.booking-session.is-disabled {
  opacity: .55;
  cursor: not-allowed;
}

.booking-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 12px 0;
  color: var(--muted);
  font-weight: 700;
}

.booking-check input {
  margin-top: .32em;
  accent-color: var(--red);
}

.booking-total {
  color: var(--red-dark);
  font-weight: 900;
}

.protection-option {
  padding: 16px;
  color: var(--ink);
  background: linear-gradient(135deg, rgba(196, 154, 74, .16), rgba(244, 241, 234, .82));
  border: 1px solid rgba(196, 154, 74, .36);
  border-radius: 6px;
}

.gift-card-redeem-field {
  margin-top: 18px;
}

.gift-card-redeem-field small,
.gift-card-form small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 700;
}

.gift-card-hero img {
  object-position: center 40%;
}

.gift-card-layout,
.gift-card-balance-layout {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(340px, 1fr);
  gap: 32px;
  align-items: start;
}

.gift-card-copy {
  padding: 10px 0;
}

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

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

.flock-live-card,
.flock-empty {
  overflow: hidden;
  background: rgba(255, 255, 255, .76);
  border: 1px solid rgba(8, 8, 8, .08);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.flock-live-image {
  aspect-ratio: 4 / 3;
  background: var(--charcoal);
}

.flock-live-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

.flock-live-copy,
.flock-empty {
  padding: 22px;
}

.flock-live-copy h3,
.flock-empty h3 {
  margin: 0 0 8px;
  font-family: Cinzel, Georgia, serif;
  font-size: 1.6rem;
  line-height: 1.08;
}

.flock-species {
  margin: 0 0 12px;
  color: var(--red-dark);
  font-weight: 900;
}

.flock-live-copy p:last-child,
.flock-empty p:last-child {
  margin-bottom: 0;
}

.gift-card-form h3,
.gift-card-result h2 {
  margin: 0 0 18px;
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  font-weight: 500;
  line-height: 1.05;
}

.gift-card-form textarea {
  width: 100%;
  min-height: 120px;
  color: var(--ink);
  background: rgba(244, 241, 234, .82);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 12px;
  resize: vertical;
}

.gift-card-result {
  display: grid;
  align-content: center;
  min-height: 290px;
  background:
    linear-gradient(135deg, rgba(244, 241, 234, .94), rgba(244, 241, 234, .76)),
    radial-gradient(circle at top right, rgba(196, 154, 74, .22), transparent 42%);
}

.gift-card-result h2 {
  color: var(--red-dark);
  font-size: clamp(2.3rem, 5vw, 4.4rem);
}

.attendee-box {
  margin: 0 0 14px;
  padding: 18px;
}

.attendee-box legend {
  padding: 0 8px;
  color: var(--red-dark);
  font-weight: 900;
  text-transform: uppercase;
}

.admin-body {
  background: var(--paper);
}

.admin-shell {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 24px;
  color: var(--white);
  background: var(--charcoal);
}

.admin-brand {
  display: block;
  margin-bottom: 24px;
  font-family: Cinzel, Georgia, serif;
  font-size: 1.25rem;
}

.admin-sidebar nav {
  display: grid;
  gap: 8px;
}

.admin-sidebar nav a {
  padding: 10px 12px;
  color: var(--gray);
  border-radius: 5px;
}

.admin-sidebar nav a:hover {
  color: var(--white);
  background: rgba(115, 35, 61, .35);
}

.admin-content {
  min-width: 0;
  padding: 36px;
}

.admin-content h1 {
  margin: 0 0 22px;
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(320px, .45fr) 1fr;
  gap: 22px;
  align-items: start;
}

.admin-form,
.admin-panel {
  padding: 22px;
}

.admin-form {
  display: grid;
  gap: 13px;
  background: rgba(244, 241, 234, .92);
  border: 1px solid rgba(8, 8, 8, .08);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.admin-form h2,
.admin-panel h2 {
  margin: 0 0 12px;
  font-family: Cinzel, Georgia, serif;
  font-weight: 500;
}

.admin-form label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-weight: 800;
}

.admin-form input,
.admin-form select,
.admin-form textarea,
.admin-table input,
.admin-table select,
.admin-filters input,
.admin-filters select {
  width: 100%;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 10px 11px;
}

.admin-form textarea {
  min-height: 110px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}

.admin-table th,
.admin-table td {
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.admin-table th {
  color: var(--red-dark);
  font-size: .72rem;
  text-transform: uppercase;
}

.admin-alert {
  margin: 0 0 16px;
  padding: 14px 16px;
  border-radius: 6px;
  font-weight: 800;
}

.admin-alert.error {
  color: #fff;
  background: var(--red);
}

.admin-alert.success {
  color: var(--white);
  background: var(--forest);
}

.admin-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 22px;
}

.admin-cards article {
  display: grid;
  gap: 3px;
  padding: 18px;
}

.admin-cards strong {
  font-family: Cinzel, Georgia, serif;
  font-size: 2rem;
  color: var(--red-dark);
}

.admin-cards span {
  color: var(--muted);
  font-size: .75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: end;
}

@media (max-width: 920px) {
  .booking-location-grid,
  .booking-program-tabs,
  .admin-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking-calendar-layout {
    grid-template-columns: 1fr;
  }

  .admin-shell,
  .admin-grid,
  .gift-card-layout,
  .gift-card-balance-layout {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
    height: auto;
  }
}

@media (max-width: 640px) {
  .booking-location-grid,
  .booking-program-tabs,
  .booking-session {
    grid-template-columns: 1fr;
  }

  .booking-program-option {
    min-height: 0;
  }

  .booking-calendar-panel,
  .booking-date-panel,
  .booking-step {
    padding: 18px;
  }

  .booking-date-empty,
  .booking-date-button {
    min-height: 48px;
  }

  .booking-calendar-weekdays,
  .booking-calendar-grid {
    gap: 4px;
  }

  .booking-session em {
    text-align: left;
  }
}

.hidden-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.light-link {
  color: var(--white);
  border-color: rgba(244, 241, 234, .62);
}

.section-rule {
  display: block;
  width: 96px;
  height: 1px;
  margin: 18px 0 26px;
  background: linear-gradient(90deg, var(--red), rgba(115, 35, 61, 0));
}

.private-events-landing-hero {
  min-height: 620px;
}

.private-events-landing-hero img {
  object-position: 56% 45%;
}

.private-events-landing-hero .page-hero-content,
.private-event-hero .page-hero-content {
  max-width: 640px;
}

.private-events-landing-hero .page-hero-scrim,
.private-event-hero .page-hero-scrim {
  background:
    linear-gradient(90deg, rgba(8, 8, 8, .92), rgba(8, 8, 8, .58) 43%, rgba(8, 8, 8, .18)),
    linear-gradient(0deg, rgba(8, 8, 8, .62), rgba(8, 8, 8, .08) 58%);
}

.event-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.event-card {
  min-height: 100%;
  overflow: hidden;
  background: rgba(244, 241, 234, .96);
  border: 1px solid rgba(8, 8, 8, .09);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(15, 12, 8, .12);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.event-card:hover {
  transform: translateY(-4px);
  border-color: rgba(115, 35, 61, .26);
  box-shadow: 0 22px 54px rgba(15, 12, 8, .18);
}

.event-card a {
  display: grid;
  grid-template-rows: 180px 1fr;
  min-height: 100%;
  color: inherit;
}

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

.event-card-body {
  position: relative;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 28px 26px 24px;
}

.event-card-mark {
  position: absolute;
  left: 22px;
  top: -22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 62px;
  height: 42px;
  padding: 0 12px;
  color: var(--white);
  background: var(--red);
  border: 2px solid rgba(244, 241, 234, .82);
  border-radius: 999px;
  font-size: .62rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(115, 35, 61, .28);
}

.event-card h3 {
  margin: 8px 0 0;
  font-family: Cinzel, Georgia, serif;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.08;
}

.event-card p {
  margin: 0;
  color: var(--muted);
  font-size: .94rem;
}

.event-card-link {
  margin-top: 8px;
  color: var(--red-dark);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.event-preview-band {
  padding: 40px 0;
  background:
    linear-gradient(90deg, rgba(244, 241, 234, .98), rgba(244, 241, 234, .82)),
    var(--paper);
  border-block: 1px solid rgba(167, 169, 172, .24);
}

.event-preview-layout {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  gap: 34px;
  align-items: center;
}

.event-preview-copy h2 {
  margin: 0;
  max-width: 430px;
  font-family: Cinzel, Georgia, serif;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.15;
}

.event-preview-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.event-preview-features span {
  padding: 8px 10px;
  color: var(--red-dark);
  background: rgba(115, 35, 61, .08);
  border: 1px solid rgba(115, 35, 61, .14);
  font-size: .68rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.event-preview-media a {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(8, 8, 8, .12);
  border-radius: 6px;
  box-shadow: 0 14px 32px rgba(15, 12, 8, .12);
}

.event-preview-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .24s ease;
}

.event-preview-media a:hover img {
  transform: scale(1.045);
}

.private-planning-section .split {
  align-items: center;
}

.event-benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.event-benefit-grid div,
.perfect-for-item,
.event-contact-note {
  border-top: 1px solid var(--line);
}

.event-benefit-grid div {
  padding-top: 18px;
}

.event-benefit-grid h3,
.perfect-for-item h3,
.event-include-list h3,
.event-contact-note h3 {
  margin: 0 0 6px;
  font-family: Cinzel, Georgia, serif;
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.1;
}

.event-benefit-grid p,
.perfect-for-item p,
.event-include-list p,
.event-contact-note p {
  margin: 0;
  color: var(--muted);
  font-size: .94rem;
}

.private-event-cta {
  padding: 42px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8, 8, 8, .96), rgba(8, 8, 8, .8)),
    var(--charcoal);
  border-top: 1px solid rgba(196, 154, 74, .28);
}

.private-event-cta .container {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.private-event-cta .eyebrow {
  margin-bottom: 6px;
}

.private-event-cta h2 {
  margin: 0;
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(1.9rem, 3vw, 3rem);
  font-weight: 500;
  line-height: 1.05;
}

.private-event-detail-page .private-event-hero {
  min-height: 560px;
}

.private-event-detail-page .private-event-hero img {
  object-position: 60% 50%;
}

.event-detail-overview,
.event-include-layout,
.event-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  gap: 44px;
  align-items: center;
}

.event-detail-overview .copy-block p {
  max-width: 560px;
}

.event-gallery-mosaic {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 10px;
}

.event-gallery-mosaic img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 14px 34px rgba(15, 12, 8, .12);
}

.event-gallery-mosaic .large {
  grid-row: span 2;
  height: 370px;
}

.event-gallery-mosaic.compact {
  grid-template-columns: 1fr 1fr;
}

.event-gallery-mosaic.compact .large {
  grid-column: 1 / -1;
  grid-row: auto;
  height: 280px;
}

.perfect-for-band {
  padding: 34px 0 44px;
  background: rgba(244, 241, 234, .72);
  border-block: 1px solid rgba(167, 169, 172, .24);
}

.perfect-for-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 26px;
}

.perfect-for-item {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 24px 14px 0;
  text-align: center;
}

.perfect-for-item span {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(115, 35, 61, .48);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(115, 35, 61, .2) 0 4px, transparent 5px),
    rgba(244, 241, 234, .5);
}

.event-include-layout {
  grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr);
}

.event-include-list {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.event-include-list div {
  position: relative;
  padding-left: 36px;
}

.event-include-list div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 17px;
  height: 17px;
  border: 1px solid var(--red);
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px rgba(115, 35, 61, .1);
}

.event-testimonial-band {
  padding: 34px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8, 8, 8, .96), rgba(17, 17, 17, .9)),
    var(--charcoal);
  border-block: 1px solid rgba(196, 154, 74, .25);
}

.event-testimonial-band .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 28px;
  align-items: center;
}

.event-testimonial-band p {
  margin: 0;
  color: rgba(244, 241, 234, .9);
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.35;
}

.event-testimonial-band span {
  color: var(--gold);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.photo-highlight-section {
  padding-top: 52px;
}

.photo-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.photo-strip img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 12px 28px rgba(15, 12, 8, .12);
}

.event-contact-section {
  padding-top: 28px;
}

.event-contact-grid {
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  align-items: stretch;
}

.event-form-panel,
.event-contact-aside {
  padding: 30px;
  background: rgba(244, 241, 234, .92);
  border: 1px solid rgba(8, 8, 8, .1);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.event-form-panel .section-title {
  margin-bottom: 20px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.event-contact-aside {
  display: grid;
  align-content: start;
  gap: 14px;
}

.event-contact-aside h2 {
  margin: 0;
  font-family: Cinzel, Georgia, serif;
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 1.13;
}

.event-contact-aside p {
  margin: 0;
  color: var(--muted);
}

.event-contact-aside a {
  color: var(--red-dark);
  font-weight: 900;
}

.event-contact-note {
  margin-top: 8px;
  padding-top: 18px;
}

.private-event-libraries .private-event-hero img {
  object-position: center center;
}

.private-event-libraries .page-hero h1 {
  max-width: 12ch;
}

.private-event-libraries .page-hero-content p:not(.eyebrow) {
  color: var(--gold);
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(1.05rem, 1.8vw, 1.38rem);
  line-height: 1.2;
}

.private-event-libraries .btn-text.light-link {
  color: var(--gold);
  border-color: rgba(196, 154, 74, .78);
}

.private-event-libraries .section-rule {
  background: linear-gradient(90deg, var(--red), var(--gold), rgba(196, 154, 74, 0));
}

.library-video-layout {
  display: grid;
  grid-template-columns: minmax(0, .84fr) minmax(0, 1.16fr);
  gap: 38px;
  align-items: center;
}

.library-video-card {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  border: 1px solid rgba(196, 154, 74, .42);
  border-radius: 8px;
  box-shadow: 0 20px 52px rgba(15, 12, 8, .2);
}

.library-video-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 1;
  pointer-events: none;
  border: 1px solid rgba(196, 154, 74, .34);
  border-radius: 5px;
}

.library-video-card video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--charcoal);
}

.library-social-proof-section {
  padding-top: 28px;
}

.library-social-proof-section .section-heading-row p:not(.eyebrow) {
  max-width: 360px;
  color: var(--muted);
}

.library-social-wheel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(250px, 320px);
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  padding: 6px 6px 18px;
}

.library-social-card {
  display: block;
  overflow: hidden;
  scroll-snap-align: start;
  background: rgba(244, 241, 234, .92);
  border: 1px solid rgba(8, 8, 8, .1);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(15, 12, 8, .13);
  transition: transform .22s ease, box-shadow .22s ease;
}

.library-social-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(15, 12, 8, .18);
}

.library-social-card img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  object-position: top center;
}

@media (max-width: 1180px) {
  .event-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 920px) {
  .flock-live-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .private-events-landing-hero,
  .private-event-detail-page .private-event-hero {
    min-height: 560px;
  }

  .private-events-landing-hero img,
  .private-event-detail-page .private-event-hero img {
    object-position: 58% 50%;
  }

  .event-preview-layout,
  .event-detail-overview,
  .event-include-layout,
  .event-contact-grid {
    grid-template-columns: 1fr;
  }

  .event-preview-media {
    grid-template-columns: repeat(3, minmax(160px, 1fr));
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .event-gallery-mosaic .large {
    height: 320px;
  }

  .event-testimonial-band .container,
  .private-event-cta .container,
  .library-video-layout {
    display: grid;
    grid-template-columns: 1fr;
  }

  .private-event-cta .btn {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .flock-live-grid {
    grid-template-columns: 1fr;
  }

  .private-events-landing-hero,
  .private-event-detail-page .private-event-hero {
    min-height: 520px;
    padding-bottom: 42px;
  }

  .private-events-landing-hero .page-hero-content,
  .private-event-hero .page-hero-content {
    max-width: 100%;
  }

  .private-events-landing-hero .page-hero-scrim,
  .private-event-hero .page-hero-scrim {
    background:
      linear-gradient(90deg, rgba(8, 8, 8, .9), rgba(8, 8, 8, .46)),
      linear-gradient(0deg, rgba(8, 8, 8, .78), rgba(8, 8, 8, .12) 60%);
  }

  .event-card-grid,
  .event-benefit-grid,
  .perfect-for-grid,
  .photo-strip {
    grid-template-columns: 1fr;
  }

  .event-card a {
    grid-template-rows: 190px 1fr;
  }

  .event-card-body {
    padding: 28px 20px 22px;
  }

  .event-preview-band {
    padding: 32px 0;
  }

  .event-preview-copy h2 {
    font-size: 1.45rem;
  }

  .event-preview-media {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .event-gallery-mosaic,
  .event-gallery-mosaic.compact {
    grid-template-columns: 1fr;
  }

  .event-gallery-mosaic img,
  .event-gallery-mosaic .large,
  .event-gallery-mosaic.compact .large,
  .photo-strip img {
    height: 230px;
  }

  .perfect-for-item {
    text-align: left;
    justify-items: start;
  }

  .event-testimonial-band .container {
    gap: 18px;
  }

  .event-testimonial-band p {
    font-size: 1.2rem;
  }

  .event-form-panel,
  .event-contact-aside {
    padding: 22px;
  }

  .library-social-wheel {
    grid-auto-columns: minmax(232px, 84vw);
    gap: 12px;
  }

  .library-social-card img {
    height: 360px;
  }

  .private-event-cta {
    padding: 34px 0;
  }

  .private-event-cta .btn {
    width: 100%;
  }
}
