:root {
  color-scheme: dark;
  --black: #050505;
  --charcoal: #111;
  --panel: rgba(21, 21, 21, 0.76);
  --espresso: #2a1c14;
  --bronze: #7a552e;
  --gold: #c7a46b;
  --ivory: #f4efe7;
  --grey: #a7a19a;
  --line: rgba(199, 164, 107, 0.24);
  --shadow: rgba(0, 0, 0, 0.44);
  font-family: Inter, Manrope, ui-sans-serif, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  position: relative;
  margin: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(122, 85, 46, 0.16), transparent 32rem),
    linear-gradient(180deg, #050505, #0b0908 44%, #050505);
  color: var(--ivory);
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(0deg, rgba(5,5,5,0.86), rgba(5,5,5,0.74)),
    url("assets/house-of-access-hero.png") center/cover;
  opacity: 0.42;
  transform: scale(1.04);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }

.loader {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  background: #050505;
  transition: opacity 220ms ease, visibility 220ms ease;
}
.loader span {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--gold);
  font-size: clamp(28px, 6vw, 84px);
  letter-spacing: 0.04em;
}
.loader.is-hidden { opacity: 0; visibility: hidden; }
.cursor-glow {
  position: fixed;
  z-index: 1;
  width: 340px;
  height: 340px;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 164, 107, 0.16), transparent 62%);
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
  will-change: transform;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 58px);
  background: rgba(5, 5, 5, 0.36);
  border-bottom: 1px solid transparent;
  transition: 180ms ease;
}
.site-header.is-scrolled {
  background: rgba(5, 5, 5, 0.9);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}
.brand, .nav-links, .hero-actions, .site-footer nav {
  display: flex;
  align-items: center;
}
.brand { gap: 12px; font-family: Georgia, "Times New Roman", serif; font-size: 18px; }
.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.08em;
  box-shadow: inset 0 0 24px rgba(199, 164, 107, 0.12);
}
.logo-crop {
  overflow: hidden;
  background-image: url("assets/hoa-logo.png");
  background-size: cover;
  background-position: center;
  color: transparent;
}
.nav-links { gap: clamp(14px, 2vw, 28px); color: var(--grey); font-size: 14px; }
.nav-links a, .mobile-menu a, .site-footer a { transition: color 160ms ease; }
.nav-links a:hover, .nav-links a.is-active, .mobile-menu a:hover { color: var(--gold); }
.header-action, .menu-toggle {
  border: 1px solid var(--line);
  color: var(--ivory);
  padding: 12px 16px;
  background: rgba(244, 239, 231, 0.04);
}
.menu-toggle {
  display: inline-flex;
  width: 48px;
  height: 44px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  width: 19px;
  height: 1px;
  background: var(--ivory);
  transition: transform 180ms ease, opacity 180ms ease;
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-menu {
  position: fixed;
  inset: 74px 14px auto auto;
  z-index: 19;
  display: none;
  width: min(390px, calc(100vw - 28px));
  max-height: calc(100dvh - 92px);
  overflow-y: auto;
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.96);
  backdrop-filter: blur(18px);
  scrollbar-color: rgba(199,164,107,0.7) rgba(255,255,255,0.04);
}
.mobile-menu.is-open { display: grid; gap: 8px; }
.menu-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.menu-head p { margin: 0; }
.menu-head small { color: var(--grey); font-family: Inter, Manrope, ui-sans-serif, system-ui, sans-serif; font-size: 12px; }
.menu-section {
  margin: 10px 0 0;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.mobile-menu a {
  display: grid;
  gap: 4px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(199, 164, 107, 0.1);
}
.mobile-menu strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 400;
}
.mobile-menu span {
  color: var(--grey);
  font-size: 12px;
}

.page { display: none; min-height: 80vh; }
.page.is-active { display: block; animation: pageIn 360ms ease both; }
@keyframes pageIn { from { opacity: 0; transform: translateY(12px); } }

.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 24px;
  align-items: center;
  overflow: hidden;
  padding: 92px clamp(18px, 5vw, 76px) 34px;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.hero::before {
  inset: -22%;
  z-index: 1;
  background:
    linear-gradient(105deg, transparent 26%, rgba(199,164,107,0.1) 46%, transparent 64%),
    radial-gradient(circle at 68% 24%, rgba(199,164,107,0.18), transparent 20rem);
  opacity: 0.78;
  animation: heroLightSweep 16s ease-in-out infinite alternate;
}
.hero::after {
  right: clamp(18px, 8vw, 130px);
  top: clamp(92px, 15vh, 170px);
  z-index: 1;
  width: clamp(130px, 18vw, 250px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: url("assets/hoa-logo.png") center/cover;
  opacity: 0.14;
  filter: saturate(0.9);
  animation: floatingSeal 12s ease-in-out infinite alternate;
}
.hero-base, .hero-video, .image-reel, .hero-overlay { position: absolute; inset: 0; }
.hero-base {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.24;
  animation: heroBaseDrift 14s ease-in-out infinite alternate;
}
.hero-video { width: 100%; height: 100%; object-fit: cover; opacity: 0; }
.hero-video.is-active { opacity: 1; }
.image-reel {
  background-image: url("assets/house-of-access-hero.png");
  background-size: cover;
  background-position: center;
  animation: heroBaseDrift 18s ease-in-out infinite alternate;
}
.image-reel span {
  position: absolute;
  inset: 0;
  background-image: var(--image);
  background-size: cover;
  background-position: center;
  opacity: 0;
  filter: contrast(1.06) saturate(0.88);
  animation: reel 22s linear infinite;
  will-change: opacity, transform;
}
.image-reel span:nth-child(2) { animation-delay: 5.5s; }
.image-reel span:nth-child(3) { animation-delay: 11s; }
.image-reel span:nth-child(4) { animation-delay: 16.5s; }
@keyframes reel {
  0%, 31% { opacity: 1; transform: scale(1.03) translate3d(0,0,0); }
  48%, 100% { opacity: 0; transform: scale(1.15) translate3d(-2.4%, -1%, 0); }
}
@keyframes heroBaseDrift {
  from { transform: scale(1.01) translate3d(0,0,0); }
  to { transform: scale(1.1) translate3d(-1.8%, -0.8%, 0); }
}
@keyframes heroLightSweep {
  from { transform: translate3d(-6%, 2%, 0) rotate(-2deg); }
  to { transform: translate3d(6%, -2%, 0) rotate(2deg); }
}
@keyframes floatingSeal {
  from { transform: translate3d(0,0,0) scale(1); }
  to { transform: translate3d(-12px,18px,0) scale(1.04); }
}
.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5,5,5,0.68), rgba(5,5,5,0.36) 46%, rgba(5,5,5,0.12)),
    linear-gradient(0deg, rgba(5,5,5,0.82), transparent 52%);
}
.hero-content { position: relative; z-index: 2; max-width: 900px; padding-bottom: 1vh; }
.hero-seal, .sub-logo {
  display: block;
  width: 86px;
  height: 86px;
  margin-bottom: 22px;
  border-radius: 50%;
  border: 1px solid rgba(199, 164, 107, 0.5);
  box-shadow: 0 0 50px rgba(199, 164, 107, 0.12);
}
.sub-logo { width: 68px; height: 68px; }
.hero-panel {
  position: relative;
  z-index: 2;
  justify-self: end;
  align-self: end;
  width: min(360px, 100%);
  padding: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(42, 28, 20, 0.78), rgba(5, 5, 5, 0.72));
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 80px var(--shadow);
}
.panel-kicker, .eyebrow {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eyebrow { margin: 0 0 16px; }
h1, h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: 0;
}
h1 { max-width: 980px; font-size: clamp(56px, 8.7vw, 116px); }
h2 { font-size: clamp(36px, 5.5vw, 76px); }
h3 { margin: 0; font-size: 19px; }
p { color: var(--grey); line-height: 1.62; }
.lead, .hero-copy { color: #d7cec2; font-size: clamp(18px, 2vw, 23px); }
.hero-copy { max-width: 720px; margin: 24px 0 0; }
.hero-actions { flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-brief {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 760px;
  margin-top: 20px;
}
.hero-brief span {
  border: 1px solid rgba(199,164,107,0.34);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(5,5,5,0.34);
  color: #e5d8c8;
  font-size: 13px;
}
.button, .payment-actions button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  padding: 0 22px;
  background: rgba(244, 239, 231, 0.04);
  color: var(--ivory);
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}
.button:hover, .payment-actions button:hover, .dark-card:hover, .experience-card:hover, .service-card:hover { transform: translateY(-4px); border-color: rgba(199, 164, 107, 0.6); }
.button.primary { background: var(--ivory); color: #101010; border-color: var(--ivory); }
.button.secondary { background: rgba(5,5,5,0.24); }
.sub-actions .button,
.sub-hero > .button {
  width: fit-content;
  min-width: 190px;
}

.section, .sub-hero {
  padding: clamp(76px, 10vw, 136px) clamp(18px, 5vw, 76px);
}
.section {
  position: relative;
  z-index: 0;
  overflow: hidden;
  content-visibility: auto;
  contain-intrinsic-size: 900px;
  background:
    linear-gradient(135deg, rgba(5,5,5,0.86), rgba(5,5,5,0.74)),
    radial-gradient(circle at 82% 12%, rgba(199,164,107,0.16), transparent 24rem),
    var(--section-image, url("https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?auto=format&fit=crop&w=1500&q=58")) center/cover;
}
.section::before {
  content: "";
  position: absolute;
  inset: -5%;
  z-index: -2;
  background: inherit;
  opacity: 0.5;
  animation: sectionDrift 22s ease-in-out infinite alternate;
}
.section::after {
  content: "";
  position: absolute;
  right: clamp(22px, 6vw, 92px);
  top: clamp(26px, 7vw, 112px);
  z-index: -1;
  width: clamp(130px, 18vw, 250px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: url("assets/hoa-logo.png") center/cover;
  opacity: 0.13;
  filter: saturate(0.7);
}
.section > * { position: relative; z-index: 1; }
.motion-bg {
  position: absolute;
  inset: -7%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.motion-bg span {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,5,5,0.84), rgba(5,5,5,0.52) 48%, rgba(5,5,5,0.28)),
    linear-gradient(0deg, rgba(5,5,5,0.94), transparent 58%),
    var(--motion-image) center/cover;
  opacity: 0;
  transform: scale(1.03) translate3d(0,0,0);
  transition: opacity 1800ms ease, transform 2200ms ease;
  animation: motionPan 19s ease-in-out infinite alternate;
  will-change: opacity, transform;
}
.motion-bg span:nth-child(2) { animation-direction: alternate-reverse; }
.motion-bg span.is-active {
  opacity: 0.52;
  transform: scale(1.12) translate3d(-1.8%, -0.7%, 0);
}
.motion-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(199,164,107,0.18), transparent 22rem),
    linear-gradient(115deg, transparent 18%, rgba(199,164,107,0.07) 50%, transparent 78%);
}
.section > .motion-bg { z-index: 0; }
.section > :not(.motion-bg) { position: relative; z-index: 1; }
.sub-hero .motion-bg span.is-active { opacity: 0.98; }
.destinations-layout .motion-bg span.is-active,
.request-layout .motion-bg span.is-active,
.voice-band .motion-bg span.is-active { opacity: 0.72; }
@keyframes motionPan {
  from { transform: scale(1.02) translate3d(1%, 0, 0); }
  to { transform: scale(1.11) translate3d(-2%, -1.2%, 0); }
}
@keyframes sectionDrift {
  from { transform: scale(1.02) translateX(0); }
  to { transform: scale(1.08) translateX(-1.4%); }
}
.page[data-page="/"] > .section:nth-of-type(2) { --section-image: url("https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1500&q=58"); }
.page[data-page="/"] > .section:nth-of-type(4) { --section-image: url("https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?auto=format&fit=crop&w=1500&q=58"); }
.page[data-page="/"] > .section:nth-of-type(5) { --section-image: url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1500&q=58"); }
.page[data-page="/"] > .section:nth-of-type(6) { --section-image: url("https://images.unsplash.com/photo-1519167758481-83f550bb49b3?auto=format&fit=crop&w=1500&q=58"); }
.page[data-page="/"] > .section:nth-of-type(7) { --section-image: url("https://images.unsplash.com/photo-1531058020387-3be344556be6?auto=format&fit=crop&w=1500&q=58"); }
.sub-hero {
  position: relative;
  overflow: hidden;
  min-height: 58vh;
  display: grid;
  align-content: end;
  background:
    linear-gradient(0deg, #050505, transparent 48%),
    radial-gradient(circle at 74% 18%, rgba(199, 164, 107, 0.18), transparent 24rem),
    linear-gradient(90deg, rgba(5,5,5,0.88), rgba(5,5,5,0.58)),
    url("assets/house-of-access-hero.png") center/cover;
}
.sub-hero > * { position: relative; z-index: 2; }
.sub-hero.image-subhero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.56;
  background:
    linear-gradient(90deg, rgba(5,5,5,0.94), rgba(5,5,5,0.62) 52%, rgba(5,5,5,0.24)),
    linear-gradient(0deg, #050505, transparent 54%),
    var(--sub-image) center/cover;
  animation: subHeroDrift 18s ease-in-out infinite alternate;
}
@keyframes subHeroDrift {
  from { transform: scale(1.02) translateX(0); }
  to { transform: scale(1.09) translateX(-1.5%); }
}
.sub-hero p { max-width: 880px; font-size: 19px; }
.compact-hero { min-height: 50vh; }
.compact-hero h1 { font-size: clamp(48px, 7vw, 100px); }
.sub-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.section-heading, .split {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) 1fr;
  gap: clamp(28px, 6vw, 90px);
}
.section-heading .lead { align-self: end; margin: 0; }
@media (min-width: 681px) {
  .section-heading .lead { grid-column: 2; }
}
.service-grid, .package-grid, .experience-grid, .mini-grid, .stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.intent-grid, .faq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}
.intent-grid article, .faq-grid article {
  min-height: 260px;
  padding: 22px;
  border: 1px solid rgba(199,164,107,0.24);
  background:
    linear-gradient(145deg, rgba(17,17,17,0.76), rgba(5,5,5,0.66)),
    radial-gradient(circle at 80% 10%, rgba(199,164,107,0.16), transparent 13rem);
  box-shadow: 0 20px 70px rgba(0,0,0,0.22);
}
.intent-grid h3, .faq-grid h3 { font-family: Georgia, "Times New Roman", serif; font-size: 22px; font-weight: 400; }
.intent-grid a {
  display: inline-flex;
  margin-top: 12px;
  border-bottom: 1px solid rgba(199,164,107,0.6);
  color: var(--ivory);
  font-weight: 800;
}
.policy-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
}
.policy-grid article {
  min-height: 260px;
  padding: 22px;
  border: 1px solid rgba(199,164,107,0.24);
  background:
    linear-gradient(145deg, rgba(17,17,17,0.8), rgba(5,5,5,0.68)),
    radial-gradient(circle at 86% 10%, rgba(199,164,107,0.15), transparent 13rem);
  box-shadow: 0 20px 70px rgba(0,0,0,0.22);
}
.policy-grid span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.policy-grid h3 {
  margin-top: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 400;
}
.policy-grid p {
  margin-bottom: 0;
}
.dark-card, .service-card, .package-card, .experience-card, .partner-card, .offer-band {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 20px 70px rgba(0,0,0,0.22);
  backdrop-filter: blur(18px);
}
.service-card, .package-card, .dark-card, .offer-band { padding: 28px; }
.service-card.has-image {
  min-height: auto;
  display: grid;
  align-content: start;
  justify-items: center;
  padding: 22px;
  text-align: center;
}
.circle-media {
  position: relative;
  width: min(100%, 280px);
  aspect-ratio: 1;
  border: 1px solid rgba(199,164,107,0.34);
  border-radius: 50%;
  overflow: hidden;
  background:
    linear-gradient(0deg, rgba(5,5,5,0.52), rgba(5,5,5,0.04)),
    radial-gradient(circle at 60% 25%, rgba(199,164,107,0.18), transparent 14rem),
    #101010;
  box-shadow: inset 0 0 0 10px rgba(5,5,5,0.38), 0 18px 60px rgba(0,0,0,0.32);
  transition: transform 700ms ease, border-color 200ms ease;
}
.circle-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5,5,5,0.46), rgba(5,5,5,0.04)), var(--image, linear-gradient(135deg, #111, #2a1c14)) center/cover;
  transform: scale(1.02);
  transition: transform 900ms ease;
  animation: circularImageDrift 13s ease-in-out infinite alternate;
  will-change: transform;
}
.circle-card:nth-child(2n) .circle-media::before { animation-direction: alternate-reverse; }
.circle-card:hover .circle-media { border-color: rgba(199,164,107,0.72); transform: translateY(-3px); }
.circle-card:hover .circle-media::before { transform: scale(1.14); }
@keyframes circularImageDrift {
  from { transform: scale(1.03) translate3d(0,0,0); }
  to { transform: scale(1.13) translate3d(-2.2%, -1%, 0); }
}
.service-card .card-body {
  position: relative;
  z-index: 2;
  padding: 22px 0 0;
}
.service-card::before, .package-card::before, .dark-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.6;
}
.service-card span, .status-badge { color: var(--gold); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; }
.service-card h3, .package-card h3 { margin-top: 46px; }
.service-card.has-image h3 { margin-top: 12px; }
.editorial-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 18px; }
.editorial-card {
  min-height: 360px;
  display: grid;
  align-content: end;
  padding: 28px;
  border: 1px solid var(--line);
  background:
    linear-gradient(0deg, rgba(5,5,5,0.88), rgba(5,5,5,0.16)),
    radial-gradient(circle at 60% 25%, rgba(199,164,107,0.18), transparent 14rem),
    #101010;
}
.editorial-card.has-bg { background: linear-gradient(0deg, rgba(5,5,5,0.88), rgba(5,5,5,0.16)), var(--image) center/cover; }
.editorial-card:first-child { grid-row: span 2; min-height: 740px; }
.timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; padding: 0; margin: 0; list-style: none; background: var(--line); }
.timeline li { min-height: 130px; padding: 24px; background: #0a0a0a; color: #ddd2c6; }
.timeline.compact { grid-template-columns: repeat(2, 1fr); }
.method-timeline li {
  min-height: 220px;
  background:
    linear-gradient(145deg, rgba(199,164,107,0.08), rgba(5,5,5,0.94)),
    #0a0a0a;
}
.method-timeline span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(5,5,5,0.42);
  color: var(--gold);
}
.method-timeline strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
}
.method-timeline p { margin: 0; }
.voice-band, .brand-board {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  background: linear-gradient(135deg, rgba(42,28,20,0.92), rgba(5,5,5,0.96));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.destinations-preview, .destinations-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(5,5,5,0.82), rgba(42,28,20,0.6)),
    url("https://images.unsplash.com/photo-1489392191049-fc10c97e64b6?auto=format&fit=crop&w=1600&q=58") center/cover;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.destinations-layout {
  min-height: 100svh;
  align-items: start;
  padding-top: 92px;
  padding-bottom: 48px;
}
.destination-visuals {
  display: grid;
  gap: 16px;
}
.destination-photo-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.destination-photo-strip span {
  aspect-ratio: 1;
  border: 1px solid rgba(199,164,107,0.3);
  border-radius: 50%;
  background: linear-gradient(0deg, rgba(5,5,5,0.46), rgba(5,5,5,0.04)), var(--image) center/cover;
  box-shadow: 0 18px 54px rgba(0,0,0,0.32);
  animation: softFloat 9s ease-in-out infinite alternate;
}
.destination-photo-strip span:nth-child(2) { animation-delay: 1.5s; }
.destination-photo-strip span:nth-child(3) { animation-delay: 3s; }
@keyframes softFloat {
  from { transform: translateY(0) scale(1); }
  to { transform: translateY(-8px) scale(1.03); }
}
.kenya-map {
  position: relative;
  min-height: 470px;
  border: 1px solid var(--line);
  overflow: hidden;
  background:
    linear-gradient(0deg, rgba(5,5,5,0.74), rgba(5,5,5,0.2)),
    radial-gradient(circle at 52% 47%, rgba(199,164,107,0.22), transparent 3rem),
    radial-gradient(circle at 50% 50%, rgba(122,85,46,0.24), transparent 18rem),
    url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?auto=format&fit=crop&w=1200&q=58") center/cover;
  box-shadow: inset 0 0 90px rgba(0,0,0,0.62);
}
.kenya-map::before {
  content: none;
}
.kenya-outline {
  position: absolute;
  inset: 7% 17%;
  width: 66%;
  height: 86%;
  overflow: visible;
  filter: drop-shadow(0 24px 60px rgba(0,0,0,0.7));
}
.kenya-outline path:first-child {
  fill: rgba(10, 10, 10, 0.78);
  stroke: rgba(199,164,107,0.72);
  stroke-width: 3;
}
.kenya-outline .route-line {
  fill: none;
  stroke: rgba(199,164,107,0.42);
  stroke-width: 2;
  stroke-dasharray: 6 10;
  animation: routeMove 11s linear infinite;
}
@keyframes routeMove {
  to { stroke-dashoffset: -90; }
}
.kenya-map.large {
  min-height: min(690px, calc(100svh - 136px));
  height: 100%;
}
.destinations-layout .service-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  gap: 10px;
  max-height: none;
  overflow: visible;
  padding-right: 0;
}
.destinations-layout .service-card.has-image {
  min-height: 112px;
  grid-template-columns: 70px 1fr;
  column-gap: 12px;
  align-items: center;
  justify-items: start;
  padding: 10px;
  text-align: left;
}
.destinations-layout .circle-media { width: 70px; }
.destinations-layout .service-card .card-body { padding: 0; }
.destinations-layout .service-card span { display: none; }
.destinations-layout .service-card.has-image h3 { margin-top: 0; font-size: 16px; line-height: 1.15; }
.destinations-layout .service-card p {
  margin: 5px 0 0;
  font-size: 12px;
  line-height: 1.32;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.destinations-layout .service-card a { margin-top: 7px; padding: 6px 9px; font-size: 11px; min-height: 32px; }
.kenya-map span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  padding: 7px 9px;
  border: 1px solid rgba(199,164,107,0.38);
  background: rgba(5,5,5,0.76);
  color: var(--ivory);
  font-size: 12px;
  white-space: nowrap;
}
.kenya-map span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 20px rgba(199,164,107,0.8);
}
.partner-marquee { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.partner-card {
  min-height: 360px;
  display: grid;
  align-content: end;
  padding: 20px;
  background:
    linear-gradient(0deg, rgba(5,5,5,0.9), rgba(5,5,5,0.16)),
    radial-gradient(circle at 60% 25%, rgba(199,164,107,0.18), transparent 14rem),
    #101010;
}
.partner-card.has-bg { background: linear-gradient(0deg, rgba(5,5,5,0.9), rgba(5,5,5,0.16)), var(--image) center/cover; }
.partner-card small, .experience-card small { color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 800; }
.brand-board { margin-top: 60px; grid-template-columns: minmax(280px, 0.5fr) 1fr; padding: 0; }
.brand-board img { height: 520px; width: 100%; object-fit: cover; }
.brand-board div { padding: 38px; }
.experience-card {
  min-height: 420px;
  display: grid;
  align-content: end;
  padding: 22px;
  background:
    linear-gradient(0deg, rgba(5,5,5,0.9), rgba(5,5,5,0.16)),
    radial-gradient(circle at 60% 25%, rgba(199,164,107,0.18), transparent 14rem),
    #101010;
}
.experience-card.has-bg { background: linear-gradient(0deg, rgba(5,5,5,0.9), rgba(5,5,5,0.16)), var(--image) center/cover; }
.experience-card.circle-card,
.partner-card.circle-card {
  min-height: auto;
  align-content: start;
  justify-items: center;
  text-align: center;
  background: var(--panel);
}
.experience-card.circle-card.has-bg,
.partner-card.circle-card.has-bg {
  background: var(--panel);
}
.experience-card.circle-card h3,
.partner-card.circle-card h3 {
  margin-top: 14px;
}
.experience-card.circle-card p,
.partner-card.circle-card p {
  margin-bottom: 0;
}
.service-card a, .experience-card a {
  display: inline-flex;
  width: fit-content;
  margin-top: 16px;
  border: 1px solid rgba(199,164,107,0.46);
  padding: 10px 14px;
  color: var(--ivory);
  background: rgba(5,5,5,0.34);
  font-weight: 800;
}
.request-layout { display: grid; grid-template-columns: minmax(0, 1fr) 390px; gap: 22px; }
.request-layout {
  background:
    linear-gradient(120deg, rgba(5,5,5,0.82), rgba(42,28,20,0.62)),
    url("https://images.unsplash.com/photo-1556745757-8d76bdb6984b?auto=format&fit=crop&w=1600&q=58") center/cover;
}
.access-waitlist {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-top: 26px;
}
.access-waitlist .sub-logo { margin: 0; }
.request-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; padding: 24px; border: 1px solid var(--line); background: rgba(17,17,17,0.72); }
.form-tabs, .wide, .check, .trap, .request-form .button, .request-form .button.secondary, .form-note { grid-column: 1 / -1; }
.form-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.form-tabs button,
.form-tabs a {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--grey);
  padding: 10px 12px;
}
.form-tabs .is-active, .form-tabs a:hover { color: var(--gold); border-color: var(--gold); }
label { display: grid; gap: 8px; color: var(--ivory); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; }
.check { display: flex; align-items: center; text-transform: none; letter-spacing: 0; color: var(--grey); }
.trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-note {
  min-height: 24px;
  margin: 4px 0 0;
}
.form-note.is-error { color: #e7a58f; }
.form-note.is-success { color: #d8c28f; }
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(199,164,107,0.24);
  background: rgba(5,5,5,0.36);
  color: var(--ivory);
  padding: 13px 14px;
}
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { outline: 2px solid var(--gold); outline-offset: 2px; }
.recorder-shell { display: grid; gap: 14px; margin: 18px 0 34px; }
.record-button {
  width: 98px;
  height: 98px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: radial-gradient(circle, rgba(199,164,107,0.26), rgba(5,5,5,0.1));
  color: var(--ivory);
  animation: pulse 1.8s ease infinite;
}
@keyframes pulse { 50% { box-shadow: 0 0 0 18px rgba(199,164,107,0.06); } }
.stats-grid { margin-bottom: 22px; }
.stats-grid article { padding: 20px; border: 1px solid var(--line); background: rgba(17,17,17,0.76); }
.admin-table-wrap { overflow-x: auto; border: 1px solid var(--line); }
.admin-table { width: 100%; border-collapse: collapse; min-width: 920px; background: rgba(5,5,5,0.56); }
.admin-table th, .admin-table td { padding: 16px; text-align: left; border-bottom: 1px solid rgba(199,164,107,0.14); }
.admin-table th { color: var(--gold); font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; }
.payment-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.video-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) 1fr;
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
}
.video-frame {
  min-height: 460px;
  border: 1px solid var(--line);
  background:
    linear-gradient(0deg, rgba(5,5,5,0.78), rgba(5,5,5,0.16)),
    url("https://images.unsplash.com/photo-1519167758481-83f550bb49b3?auto=format&fit=crop&w=1400&q=80") center/cover;
  animation: subHeroDrift 16s ease-in-out infinite alternate;
}
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 30px clamp(18px, 5vw, 76px);
  border-top: 1px solid var(--line);
  color: var(--grey);
}
.site-footer nav { gap: 18px; }
.quick-request {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 18;
  display: none;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--ivory);
  background: var(--ivory);
  color: #101010;
  font-weight: 900;
  box-shadow: 0 18px 48px rgba(0,0,0,0.38);
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
}
.footer-brand .brand-mark { width: 34px; height: 34px; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1040px) {
  .nav-links, .header-action { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .hero { grid-template-columns: 1fr; }
  .service-grid, .package-grid, .experience-grid, .partner-marquee, .intent-grid, .faq-grid, .policy-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .section-heading, .split, .request-layout, .brand-board, .voice-band, .destinations-preview, .destinations-layout, .video-panel { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .cursor-glow { display: none; }
  .loader { display: none; }
  .hero { min-height: 100svh; padding: 104px 18px 34px; }
  .hero::after { width: 110px; opacity: 0.08; right: 14px; top: 96px; }
  .hero-content { padding-bottom: 0; }
  .hero-panel { display: none; }
  .hero-seal { width: 66px; height: 66px; margin-bottom: 16px; }
  h1 { font-size: clamp(44px, 15vw, 72px); }
  h2 { font-size: clamp(34px, 12vw, 54px); }
  .section, .sub-hero { padding-left: 16px; padding-right: 16px; }
  .service-grid, .package-grid, .experience-grid, .partner-marquee, .mini-grid, .stats-grid, .timeline, .timeline.compact, .request-form, .editorial-grid, .intent-grid, .faq-grid, .policy-grid { grid-template-columns: 1fr; }
  .circle-media { width: min(74vw, 260px); }
  .editorial-card:first-child { min-height: 420px; }
  .button, .payment-actions button { width: 100%; }
  .sub-actions .button, .sub-hero > .button, .service-card a, .experience-card a { width: fit-content; min-width: 170px; }
  .request-form { padding: 18px; }
  input, select, textarea { min-height: 48px; font-size: 16px; }
  .service-card a, .experience-card a { justify-content: center; min-height: 42px; }
  .hero-panel { justify-self: start; }
  .brand span:last-child { display: none; }
  .site-footer { flex-direction: column; }
  .kenya-map, .kenya-map.large { min-height: 430px; }
  .kenya-map.large { min-height: 520px; }
  .destinations-layout { min-height: auto; padding-top: 76px; }
  .destinations-layout .service-grid { grid-template-columns: 1fr; max-height: none; overflow: visible; padding-right: 0; }
  .destinations-layout .service-card.has-image { grid-template-columns: 82px 1fr; }
  .destinations-layout .circle-media { width: 82px; }
  .quick-request { display: inline-flex; }
  .sub-hero.image-subhero::before,
  .motion-bg span,
  .hero::before,
  .hero::after,
  .hero-base,
  .image-reel span,
  .video-frame,
  .circle-media::before {
    animation: none;
  }
  .dark-card, .service-card, .package-card, .experience-card, .partner-card, .offer-band, .hero-panel, .mobile-menu {
    backdrop-filter: none;
  }
}

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