:root {
  --near-black: #050505;
  --charcoal: #111111;
  --deep-gray: #1a1a1a;
  --gold: #d4af37;
  --butter: #f5c542;
  --white: #f8f8f8;
  --muted: #a7a7a7;
  --border: rgba(248, 248, 248, 0.12);
  --gold-border: rgba(245, 197, 66, 0.28);
  --panel: rgba(17, 17, 17, 0.82);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  --gold-shadow: 0 0 36px rgba(245, 197, 66, 0.26);
  --radius: 8px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 72% 0%, rgba(245, 197, 66, 0.12), transparent 28rem),
    radial-gradient(circle at 16% 18%, rgba(212, 175, 55, 0.1), transparent 24rem),
    linear-gradient(180deg, var(--near-black), #080808 48%, var(--near-black));
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(248, 248, 248, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248, 248, 248, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 10% 26%, rgba(245, 197, 66, 0.34) 0 1px, transparent 2px),
    radial-gradient(circle at 84% 20%, rgba(212, 175, 55, 0.26) 0 1px, transparent 2px),
    radial-gradient(circle at 72% 78%, rgba(248, 248, 248, 0.12) 0 1px, transparent 2px);
  background-size: 220px 220px, 310px 310px, 190px 190px;
  opacity: 0.55;
}

.mountain-watermark {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(5, 5, 5, 0.72) 0%, rgba(5, 5, 5, 0.38) 44%, rgba(5, 5, 5, 0.52) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.48) 0%, rgba(5, 5, 5, 0.18) 30%, rgba(5, 5, 5, 0.74) 100%),
    url("assets/mountain-watermark.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.46;
  mix-blend-mode: screen;
}

.lightning-field {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.lightning-field::before {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 74% 8%, rgba(245, 197, 66, 0.18), transparent 24rem);
  opacity: 0;
  animation: skyFlash 11s linear infinite;
}

.lightning-bolt {
  position: absolute;
  width: 5px;
  height: 250px;
  opacity: 0;
  background: linear-gradient(180deg, transparent, rgba(255, 240, 164, 0.95), var(--butter), transparent);
  filter: drop-shadow(0 0 14px rgba(245, 197, 66, 0.95)) drop-shadow(0 0 34px rgba(245, 197, 66, 0.42));
  clip-path: polygon(44% 0, 78% 0, 55% 38%, 88% 38%, 32% 100%, 48% 52%, 20% 52%);
  transform-origin: top center;
  animation: lightningStrike 11s linear infinite;
}

.lightning-bolt::before,
.lightning-bolt::after {
  position: absolute;
  top: 34%;
  left: 50%;
  width: 4px;
  height: 104px;
  content: "";
  background: inherit;
  clip-path: polygon(40% 0, 78% 0, 56% 42%, 88% 42%, 30% 100%, 46% 56%, 18% 56%);
  filter: inherit;
  transform-origin: top center;
}

.lightning-bolt::before {
  transform: rotate(36deg);
}

.lightning-bolt::after {
  top: 48%;
  transform: rotate(-42deg) scale(0.72);
}

.bolt-one {
  top: -26px;
  right: 18%;
  transform: rotate(16deg);
}

.bolt-two {
  top: 18%;
  left: 12%;
  height: 190px;
  transform: rotate(-18deg) scale(0.8);
  animation-delay: 5.4s;
}

.bolt-three {
  top: 7%;
  right: 42%;
  height: 220px;
  transform: rotate(8deg) scale(0.72);
  animation-delay: 8.2s;
}

.site-header,
.mobile-nav,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
}

.liquid-heading {
  --gold-size: 0%;
  --liquid-x: 20%;
  display: inline-block;
  padding-bottom: 0.08em;
  color: var(--white);
  background-image:
    linear-gradient(115deg, #fff4b8 0%, var(--butter) 34%, var(--gold) 72%, #fff0a4 100%),
    radial-gradient(circle at var(--liquid-x) 52%, rgba(255, 244, 184, 0.96) 0 8%, rgba(245, 197, 66, 0.86) 18%, transparent 36%),
    linear-gradient(90deg, var(--white), var(--white));
  background-repeat: no-repeat;
  background-position:
    left center,
    calc(var(--gold-size) - 95px) center,
    left center;
  background-size:
    var(--gold-size) 100%,
    calc(var(--gold-size) + 120px) 170%,
    100% 100%;
  background-clip: text;
  filter: drop-shadow(0 0 var(--heading-glow, 0px) rgba(245, 197, 66, 0.18));
  transition: filter 180ms ease;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h1 {
  max-width: 680px;
  margin-bottom: 4px;
  font-size: clamp(3.8rem, 7.2vw, 6.4rem);
}

h2 {
  margin-bottom: 10px;
  font-size: clamp(2.35rem, 5.4vw, 5rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.12rem;
  line-height: 1.2;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
  padding: 17px 0;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.95), rgba(5, 5, 5, 0.64));
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: 74px;
  height: 54px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
  text-transform: uppercase;
}

.brand strong {
  font-size: 0.92rem;
  letter-spacing: 0.08em;
}

.brand small {
  margin-top: 4px;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(248, 248, 248, 0.76);
  font-size: 0.88rem;
  font-weight: 700;
}

.desktop-nav a,
.mobile-nav a {
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.desktop-nav a:hover {
  color: var(--butter);
}

.header-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: var(--butter);
  border: 1px solid rgba(245, 197, 66, 0.45);
  border-radius: 999px;
  background: rgba(245, 197, 66, 0.08);
  font-size: 0.86rem;
  font-weight: 900;
}

.mobile-nav {
  position: sticky;
  top: 76px;
  z-index: 29;
  display: none;
  width: min(var(--max-width), calc(100% - 28px));
  margin: 0 auto;
  gap: 8px;
  overflow-x: auto;
  padding: 0 0 12px;
  scrollbar-width: none;
}

.mobile-nav::-webkit-scrollbar {
  display: none;
}

.mobile-nav a {
  flex: 0 0 auto;
  padding: 8px 12px;
  color: rgba(248, 248, 248, 0.78);
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.74);
  font-size: 0.78rem;
  font-weight: 800;
}

.mobile-nav a:hover {
  color: var(--butter);
  border-color: var(--gold-border);
}

.section {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
}

.hero {
  display: grid;
  min-height: calc(100vh - 82px);
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.82fr);
  align-items: center;
  gap: 46px;
  padding-top: 64px;
}

.hero-content {
  position: relative;
  z-index: 4;
  min-width: 0;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--butter);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-title {
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(1.55rem, 3.1vw, 2.65rem);
  font-weight: 900;
  line-height: 1.12;
}

.hero-copy {
  max-width: 760px;
  color: rgba(248, 248, 248, 0.82);
  font-size: clamp(1.12rem, 1.8vw, 1.38rem);
}

.hero-support {
  max-width: 760px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-affiliations {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-affiliations span {
  padding: 8px 11px;
  color: rgba(248, 248, 248, 0.84);
  border: 1px solid rgba(245, 197, 66, 0.26);
  border-radius: 999px;
  background: rgba(245, 197, 66, 0.07);
  font-size: 0.8rem;
  font-weight: 900;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--near-black);
  background: linear-gradient(135deg, var(--butter), var(--gold));
  box-shadow: 0 18px 46px rgba(245, 197, 66, 0.24);
}

.button-primary:hover {
  box-shadow: 0 24px 62px rgba(245, 197, 66, 0.36);
}

.button-secondary,
.button-ghost {
  color: var(--white);
  border-color: rgba(248, 248, 248, 0.18);
  background: rgba(255, 255, 255, 0.045);
}

.button-ghost {
  color: var(--butter);
  background: transparent;
}

.button-secondary:hover,
.button-ghost:hover {
  border-color: rgba(245, 197, 66, 0.5);
  background: rgba(245, 197, 66, 0.08);
}

.hero-stage {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  border: 1px solid rgba(245, 197, 66, 0.18);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 74% 8%, rgba(245, 197, 66, 0.28), transparent 10rem),
    linear-gradient(150deg, rgba(26, 26, 26, 0.92), rgba(5, 5, 5, 0.86) 44%, #050505 100%);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-portrait-stage {
  background:
    radial-gradient(circle at 50% 8%, rgba(245, 197, 66, 0.2), transparent 15rem),
    linear-gradient(145deg, rgba(245, 197, 66, 0.12), rgba(5, 5, 5, 0.1) 34%, rgba(5, 5, 5, 0.58));
  transition: border-color 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}

.hero-portrait-stage::before {
  position: absolute;
  inset: 14px;
  z-index: 2;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(245, 197, 66, 0.28);
  border-radius: 6px;
  box-shadow: inset 0 0 55px rgba(245, 197, 66, 0.08);
  transition: border-color 240ms ease, box-shadow 240ms ease;
}

.hero-portrait-stage:hover {
  border-color: rgba(245, 197, 66, 0.62);
  box-shadow:
    0 28px 92px rgba(0, 0, 0, 0.6),
    0 0 70px rgba(245, 197, 66, 0.22);
  transform: translateY(-2px);
}

.hero-portrait-stage:hover::before {
  border-color: rgba(245, 197, 66, 0.58);
  box-shadow:
    inset 0 0 70px rgba(245, 197, 66, 0.16),
    0 0 34px rgba(245, 197, 66, 0.18);
}

.portrait-sunspot {
  position: absolute;
  top: 6%;
  left: 50%;
  z-index: 1;
  width: 310px;
  height: 310px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(245, 197, 66, 0.3) 0 26%, rgba(245, 197, 66, 0.12) 27% 54%, transparent 72%);
  filter: blur(1px);
  opacity: 0.78;
  transform: translateX(-50%);
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), opacity 240ms ease;
}

.hero-portrait-stage:hover .portrait-sunspot {
  opacity: 1;
  transform: translateX(-42%) translateY(38px) scale(1.12);
}

.hero-stage::after {
  position: absolute;
  inset: 0;
  z-index: 8;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, transparent 0 58%, rgba(0, 0, 0, 0.56)),
    radial-gradient(circle at 50% 48%, transparent 0 48%, rgba(0, 0, 0, 0.35));
}

.hero-portrait {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.96) contrast(1.05);
  transition: filter 240ms ease, transform 320ms ease;
}

.hero-portrait-stage:hover .hero-portrait {
  filter: brightness(1.13) saturate(1.05) contrast(1.08);
  transform: scale(1.018);
}

.portrait-sparkles {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.portrait-sparkles span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(245, 197, 66, 0.9);
  box-shadow: 0 0 12px rgba(245, 197, 66, 0.86);
  opacity: 0;
  animation: dustFloat 8s ease-in-out infinite;
}

.portrait-sparkles span:nth-child(1) {
  left: 16%;
  top: 76%;
  animation-delay: 0s;
}

.portrait-sparkles span:nth-child(2) {
  left: 20%;
  top: 28%;
  animation-delay: 1.2s;
}

.portrait-sparkles span:nth-child(3) {
  left: 34%;
  top: 16%;
  animation-delay: 2.1s;
}

.portrait-sparkles span:nth-child(4) {
  left: 74%;
  top: 22%;
  animation-delay: 0.7s;
}

.portrait-sparkles span:nth-child(5) {
  left: 84%;
  top: 64%;
  animation-delay: 2.9s;
}

.portrait-sparkles span:nth-child(6) {
  left: 10%;
  top: 48%;
  animation-delay: 3.5s;
}

.portrait-sparkles span:nth-child(7) {
  left: 62%;
  top: 80%;
  animation-delay: 1.8s;
}

.portrait-sparkles span:nth-child(8) {
  left: 48%;
  top: 34%;
  animation-delay: 4.2s;
}

.portrait-sparkles span:nth-child(9) {
  left: 88%;
  top: 40%;
  animation-delay: 5.1s;
}

.portrait-sparkles span:nth-child(10) {
  left: 28%;
  top: 58%;
  animation-delay: 5.8s;
}

.portrait-vignette {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.38), transparent 34%, transparent 74%, rgba(5, 5, 5, 0.2)),
    linear-gradient(180deg, rgba(5, 5, 5, 0.12), transparent 35%, rgba(5, 5, 5, 0.54)),
    radial-gradient(circle at 50% 16%, transparent 0 24%, rgba(245, 197, 66, 0.12) 25%, transparent 52%);
  mix-blend-mode: multiply;
}

.portrait-badge {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 12;
  max-width: min(280px, calc(100% - 48px));
  padding: 14px 16px;
  border: 1px solid rgba(245, 197, 66, 0.32);
  border-radius: var(--radius);
  background: rgba(5, 5, 5, 0.78);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(12px);
  transition: border-color 240ms ease, box-shadow 240ms ease, background 240ms ease;
}

.hero-portrait-stage:hover .portrait-badge {
  border-color: rgba(245, 197, 66, 0.58);
  background: rgba(5, 5, 5, 0.86);
  box-shadow: 0 20px 62px rgba(0, 0, 0, 0.52), 0 0 26px rgba(245, 197, 66, 0.16);
}

.portrait-badge span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.portrait-badge strong {
  display: block;
  color: var(--butter);
  line-height: 1.18;
}

.mountain-scene {
  position: absolute;
  inset: 0;
}

.sun-glow {
  position: absolute;
  top: 54px;
  right: 92px;
  z-index: 5;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: rgba(245, 197, 66, 0.82);
  box-shadow:
    0 0 26px rgba(245, 197, 66, 0.9),
    0 0 90px rgba(245, 197, 66, 0.58),
    0 0 170px rgba(212, 175, 55, 0.26);
  animation: glowPulse 3.4s ease-in-out infinite;
}

.peak {
  position: absolute;
  bottom: 0;
  z-index: 2;
  filter: drop-shadow(0 28px 34px rgba(0, 0, 0, 0.72));
}

.peak-main {
  right: 86px;
  width: 350px;
  height: 460px;
  background:
    linear-gradient(118deg, rgba(255, 255, 255, 0.16), transparent 24%),
    linear-gradient(116deg, #070707 0 43%, #23211a 44% 56%, #050505 57% 100%);
  clip-path: polygon(48% 0, 100% 100%, 0 100%);
}

.peak-left {
  left: 10px;
  width: 390px;
  height: 330px;
  background: linear-gradient(112deg, #101316 0 44%, #191714 45% 58%, #050505 59% 100%);
  clip-path: polygon(46% 4%, 100% 100%, 0 100%);
  opacity: 0.72;
}

.peak-right {
  right: -100px;
  width: 330px;
  height: 370px;
  background: linear-gradient(112deg, #111 0 42%, #24231d 43% 56%, #060606 57% 100%);
  clip-path: polygon(45% 0, 100% 100%, 0 100%);
  opacity: 0.88;
}

.trail {
  position: absolute;
  z-index: 6;
  width: 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 245, 175, 0.08), var(--butter), rgba(212, 175, 55, 0.08));
  box-shadow:
    0 0 16px rgba(245, 197, 66, 0.92),
    0 0 38px rgba(245, 197, 66, 0.48);
  transform-origin: bottom center;
}

.trail::after {
  position: absolute;
  inset: 16% -5px auto;
  height: 12px;
  content: "";
  border-radius: 50%;
  background: #fff1a7;
  box-shadow: 0 0 18px rgba(255, 242, 167, 0.95);
  animation: pathSpark 2.2s ease-in-out infinite;
}

.trail-one {
  right: 306px;
  bottom: 88px;
  height: 296px;
  transform: rotate(25deg);
}

.trail-two {
  right: 248px;
  bottom: 244px;
  height: 182px;
  transform: rotate(-18deg);
}

.system-lines {
  position: absolute;
  inset: 36px 14px 40px;
  z-index: 4;
  width: calc(100% - 28px);
  height: calc(100% - 76px);
}

.system-lines path {
  fill: none;
  stroke: rgba(245, 197, 66, 0.52);
  stroke-dasharray: 9 13;
  stroke-linecap: round;
  stroke-width: 2;
  filter: drop-shadow(0 0 8px rgba(245, 197, 66, 0.55));
  animation: dashFlow 10s linear infinite;
}

.system-lines circle {
  fill: #fff1a8;
  stroke: rgba(245, 197, 66, 0.82);
  stroke-width: 3;
  filter: drop-shadow(0 0 10px rgba(245, 197, 66, 0.75));
}

.photo-frame {
  position: absolute;
  right: 34px;
  bottom: 34px;
  z-index: 10;
  width: min(330px, 56%);
  aspect-ratio: 4 / 5;
  padding: 10px;
  border: 1px solid rgba(245, 197, 66, 0.35);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(245, 197, 66, 0.18), rgba(248, 248, 248, 0.05));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.58), var(--gold-shadow);
}

.photo-placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  border: 1px dashed rgba(248, 248, 248, 0.22);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(248, 248, 248, 0.07), rgba(5, 5, 5, 0.34)),
    radial-gradient(circle at 50% 22%, rgba(245, 197, 66, 0.16), transparent 10rem);
  text-align: center;
}

.photo-placeholder span,
.photo-placeholder small {
  display: block;
}

.photo-placeholder span {
  color: var(--butter);
  font-size: 1.2rem;
  font-weight: 900;
}

.photo-placeholder small {
  color: var(--muted);
  font-weight: 700;
}

.floating-note {
  position: absolute;
  z-index: 12;
  padding: 13px 16px;
  border: 1px solid rgba(245, 197, 66, 0.24);
  border-radius: var(--radius);
  background: rgba(5, 5, 5, 0.72);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.44);
  backdrop-filter: blur(10px);
}

.floating-note span {
  display: block;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.floating-note strong {
  display: block;
  color: var(--butter);
  line-height: 1.1;
}

.note-one {
  left: 28px;
  bottom: 34px;
}

.note-two {
  right: 22px;
  top: 28%;
}

.section-heading {
  max-width: 840px;
  margin-bottom: 44px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.two-column,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1fr);
  gap: 52px;
  align-items: start;
}

.lead-copy {
  color: rgba(248, 248, 248, 0.86);
  font-size: clamp(1.42rem, 2.4vw, 2.15rem);
  font-weight: 800;
  line-height: 1.24;
}

.stacked-copy p,
.business-card p,
.contact-copy p {
  color: rgba(248, 248, 248, 0.74);
  font-size: 1.03rem;
}

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

.premium-card,
.work-card,
.contact-form,
.business-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.024)),
    var(--panel);
  box-shadow: var(--shadow);
}

.premium-card {
  min-height: 282px;
  padding: 24px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.premium-card:hover,
.work-card:hover {
  border-color: rgba(245, 197, 66, 0.42);
  background:
    linear-gradient(140deg, rgba(245, 197, 66, 0.08), rgba(255, 255, 255, 0.028)),
    rgba(17, 17, 17, 0.9);
  transform: translateY(-4px);
}

.card-number {
  display: inline-grid;
  width: 46px;
  height: 34px;
  margin-bottom: 28px;
  place-items: center;
  color: var(--butter);
  border: 1px solid rgba(245, 197, 66, 0.36);
  border-radius: 999px;
  background: rgba(245, 197, 66, 0.08);
  font-size: 0.75rem;
  font-weight: 900;
}

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

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 52px;
  align-items: center;
  padding: clamp(26px, 5vw, 58px);
  border: 1px solid rgba(245, 197, 66, 0.16);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0%, rgba(245, 197, 66, 0.16), transparent 24rem),
    linear-gradient(140deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.022)),
    rgba(12, 12, 12, 0.78);
  box-shadow: var(--shadow);
}

.split-panel .section-heading {
  margin-bottom: 0;
}

.training-list,
.theme-row,
.highlight-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.training-list span,
.theme-row span,
.highlight-grid span {
  padding: 10px 13px;
  color: rgba(248, 248, 248, 0.82);
  border: 1px solid rgba(245, 197, 66, 0.22);
  border-radius: 999px;
  background: rgba(245, 197, 66, 0.07);
  font-size: 0.86rem;
  font-weight: 800;
}

.business-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.82fr);
  gap: 56px;
  align-items: center;
  padding: clamp(28px, 5vw, 58px);
  background:
    radial-gradient(circle at 0 20%, rgba(245, 197, 66, 0.14), transparent 25rem),
    linear-gradient(140deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.024)),
    rgba(12, 12, 12, 0.82);
}

.business-visual {
  position: relative;
  display: grid;
  min-height: 460px;
  place-items: center;
}

.business-visual::before {
  position: absolute;
  inset: 54px;
  content: "";
  border: 1px solid rgba(245, 197, 66, 0.24);
  border-radius: 50%;
  box-shadow: inset 0 0 44px rgba(245, 197, 66, 0.08), var(--gold-shadow);
}

.orbit-tabs {
  position: relative;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  animation: orbitSpin 30s linear infinite;
}

.buttered-callout {
  position: absolute;
  z-index: 2;
  display: block;
  width: 210px;
  height: 168px;
  place-items: center;
  color: var(--near-black);
  text-align: center;
  filter: drop-shadow(0 0 28px rgba(245, 197, 66, 0.28));
  animation: butteredPulse 4.8s ease-in-out infinite;
}

.buttered-callout img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.buttered-callout span {
  position: absolute;
  inset: auto 12px 34px;
  display: block;
  padding: 6px 9px;
  color: var(--near-black);
  border-radius: 999px;
  background: rgba(255, 240, 164, 0.82);
  box-shadow: 0 0 16px rgba(245, 197, 66, 0.3);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.orbit-tabs span {
  position: absolute;
  display: grid;
  min-width: 86px;
  min-height: 42px;
  place-items: center;
  color: var(--butter);
  border: 1px solid rgba(245, 197, 66, 0.28);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
  animation: orbitSpinReverse 30s linear infinite;
}

.orbit-tabs span:nth-child(1) {
  top: -24px;
  left: calc(50% - 43px);
}

.orbit-tabs span:nth-child(2) {
  top: 26%;
  left: -42px;
}

.orbit-tabs span:nth-child(3) {
  top: 26%;
  right: -42px;
}

.orbit-tabs span:nth-child(4) {
  bottom: 48px;
  left: -18px;
}

.orbit-tabs span:nth-child(5) {
  right: -14px;
  bottom: 48px;
}

.orbit-tabs span:nth-child(6) {
  left: calc(50% - 48px);
  bottom: -28px;
  min-width: 96px;
}

.fitness-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.72fr) minmax(0, 0.96fr);
  gap: 54px;
  align-items: center;
}

.fitness-grid .section-heading {
  margin-bottom: 30px;
}

.theme-row {
  max-width: 900px;
}

.lifestyle-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  min-height: 620px;
  border: 1px solid rgba(245, 197, 66, 0.2);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 0%, rgba(245, 197, 66, 0.14), transparent 16rem),
    rgba(17, 17, 17, 0.82);
  box-shadow: var(--shadow);
  transition: border-color 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}

.lifestyle-card::before {
  position: absolute;
  inset: 12px;
  z-index: 2;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(245, 197, 66, 0.22);
  border-radius: 6px;
}

.lifestyle-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, transparent 0 52%, rgba(5, 5, 5, 0.74)),
    radial-gradient(circle at 50% 18%, transparent 0 38%, rgba(5, 5, 5, 0.22));
}

.lifestyle-card img {
  display: block;
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.94) contrast(1.04);
  transition: filter 240ms ease, transform 320ms ease;
}

.lifestyle-card:hover {
  border-color: rgba(245, 197, 66, 0.58);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.58), 0 0 54px rgba(245, 197, 66, 0.18);
  transform: translateY(-3px);
}

.lifestyle-card:hover img {
  filter: brightness(1.12) saturate(1.04) contrast(1.07);
  transform: scale(1.018);
}

.credibility {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100vw - var(--max-width)) / 2));
  padding-left: max(20px, calc((100vw - var(--max-width)) / 2));
  background:
    linear-gradient(180deg, rgba(245, 197, 66, 0.04), transparent),
    linear-gradient(90deg, rgba(245, 197, 66, 0.06), transparent 32%, transparent 68%, rgba(245, 197, 66, 0.06));
  border-block: 1px solid rgba(245, 197, 66, 0.14);
}

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

.highlight-grid span {
  display: grid;
  min-height: 110px;
  place-items: center;
  padding: 18px;
  border-radius: 0;
  text-align: center;
  transition: color 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.highlight-grid span:hover {
  color: var(--near-black);
  border-color: rgba(255, 240, 164, 0.78);
  background: linear-gradient(135deg, var(--butter), var(--gold));
  box-shadow: inset 0 0 24px rgba(255, 255, 255, 0.13), 0 0 24px rgba(245, 197, 66, 0.18);
}

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

.post-card {
  min-height: 278px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0%, rgba(245, 197, 66, 0.13), transparent 13rem),
    linear-gradient(140deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.024)),
    var(--panel);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.post-card:hover {
  border-color: rgba(245, 197, 66, 0.42);
  background:
    radial-gradient(circle at 100% 0%, rgba(245, 197, 66, 0.18), transparent 13rem),
    linear-gradient(140deg, rgba(245, 197, 66, 0.08), rgba(255, 255, 255, 0.028)),
    rgba(17, 17, 17, 0.9);
  transform: translateY(-4px);
}

.post-card span {
  margin-bottom: 28px;
  color: var(--butter);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.post-card h3 {
  font-size: 1.2rem;
}

.post-card p {
  color: var(--muted);
}

.post-card a {
  margin-top: auto;
  color: var(--butter);
  font-size: 0.9rem;
  font-weight: 900;
}

.work-card {
  position: relative;
  min-height: 246px;
  overflow: hidden;
  padding: 26px;
  color: rgba(248, 248, 248, 0.86);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.work-card::after {
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 150px;
  height: 150px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 197, 66, 0.18), transparent 68%);
  opacity: 0;
  transition: opacity 220ms ease, transform 280ms ease;
}

.work-card:hover {
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.56), 0 0 42px rgba(245, 197, 66, 0.13);
}

.work-card:hover::after {
  opacity: 1;
  transform: scale(1.14);
}

.work-icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin-bottom: 28px;
  place-items: center;
  color: var(--butter);
  border: 1px solid rgba(245, 197, 66, 0.34);
  border-radius: 50%;
  background: rgba(245, 197, 66, 0.08);
  box-shadow: inset 0 0 24px rgba(245, 197, 66, 0.08), 0 0 18px rgba(245, 197, 66, 0.12);
  animation: iconFloat 4.8s ease-in-out infinite;
}

.work-card:nth-child(2) .work-icon {
  animation-delay: 0.4s;
}

.work-card:nth-child(3) .work-icon {
  animation-delay: 0.8s;
}

.work-card:nth-child(4) .work-icon {
  animation-delay: 1.2s;
}

.work-card:nth-child(5) .work-icon {
  animation-delay: 1.6s;
}

.work-card:nth-child(6) .work-icon {
  animation-delay: 2s;
}

.work-icon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
  filter: drop-shadow(0 0 10px rgba(245, 197, 66, 0.42));
}

.work-card h3 {
  margin-bottom: 10px;
  font-size: 1.16rem;
}

.work-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
}

.contact-copy {
  position: sticky;
  top: 120px;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: rgba(248, 248, 248, 0.82);
  font-size: 0.86rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  color: var(--white);
  border: 1px solid rgba(248, 248, 248, 0.13);
  border-radius: var(--radius);
  outline: none;
  background: rgba(0, 0, 0, 0.28);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

input,
select {
  min-height: 50px;
  padding: 0 14px;
}

textarea {
  min-height: 138px;
  padding: 14px;
  resize: vertical;
}

.turnstile-wrap {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 8px;
  border: 1px solid rgba(248, 248, 248, 0.1);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.2);
}

select {
  color-scheme: dark;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(245, 197, 66, 0.74);
  background: rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 0 4px rgba(245, 197, 66, 0.08);
}

input.is-invalid,
select.is-invalid,
textarea.is-invalid {
  border-color: #ff7777;
}

.form-button {
  width: 100%;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.form-status.success {
  color: var(--butter);
}

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

.site-footer {
  display: flex;
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
  justify-content: space-between;
  gap: 18px;
  padding: 30px 0 46px;
  color: var(--muted);
  border-top: 1px solid rgba(248, 248, 248, 0.1);
  font-size: 0.88rem;
  font-weight: 800;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

.reveal-ready .reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(22px);
}

.reveal {
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.62;
    transform: scale(0.96);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

@keyframes dashFlow {
  to {
    stroke-dashoffset: -220;
  }
}

@keyframes pathSpark {
  0%,
  100% {
    transform: translateY(230%);
    opacity: 0;
  }

  35%,
  65% {
    opacity: 1;
  }

  80% {
    transform: translateY(-180%);
    opacity: 0;
  }
}

@keyframes dustFloat {
  0% {
    opacity: 0;
    transform: translate3d(0, 18px, 0) scale(0.72);
  }

  20%,
  70% {
    opacity: 0.82;
  }

  100% {
    opacity: 0;
    transform: translate3d(22px, -76px, 0) scale(1.25);
  }
}

@keyframes orbitSpin {
  to {
    transform: rotate(360deg);
  }
}

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

@keyframes iconFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-7px) rotate(3deg);
  }
}

@keyframes butteredPulse {
  0%,
  100% {
    opacity: 0.32;
    transform: scale(0.96);
  }

  24%,
  62% {
    opacity: 1;
    transform: scale(1.02);
  }

  78% {
    opacity: 0.48;
    transform: scale(0.98);
  }
}

@keyframes lightningStrike {
  0%,
  72%,
  75%,
  100% {
    opacity: 0;
  }

  72.4%,
  73.1% {
    opacity: 0.95;
  }

  73.5% {
    opacity: 0.12;
  }

  74% {
    opacity: 0.82;
  }
}

@keyframes skyFlash {
  0%,
  72%,
  75%,
  100% {
    opacity: 0;
  }

  72.6%,
  74% {
    opacity: 0.55;
  }
}

@keyframes highlightGold {
  0% {
    color: rgba(248, 248, 248, 0.82);
    border-color: rgba(245, 197, 66, 0.22);
    background: rgba(245, 197, 66, 0.07);
  }

  100% {
    color: var(--near-black);
    border-color: rgba(255, 240, 164, 0.78);
    background: linear-gradient(135deg, var(--butter), var(--gold));
    box-shadow: inset 0 0 24px rgba(255, 255, 255, 0.13), 0 0 24px rgba(245, 197, 66, 0.18);
  }
}

@media (max-width: 1080px) {
  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: flex;
  }

  .hero,
  .two-column,
  .split-panel,
  .business-card,
  .fitness-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 620px;
  }

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

  .contact-copy {
    position: static;
  }
}

@media (max-width: 720px) {
  .site-header {
    width: min(100% - 28px, var(--max-width));
    padding: 14px 0;
  }

  .brand-logo {
    width: 58px;
    height: 42px;
  }

  .brand strong {
    font-size: 0.8rem;
  }

  .brand small {
    font-size: 0.64rem;
  }

  .header-cta {
    display: none;
  }

  .section {
    width: min(100% - 28px, var(--max-width));
    padding: 72px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 50px;
  }

  h1 {
    font-size: clamp(3.5rem, 18vw, 5.1rem);
  }

  h2 {
    font-size: clamp(2.15rem, 12vw, 3.4rem);
  }

  .hero-actions .button,
  .business-card .button {
    width: 100%;
  }

  .hero-stage {
    min-height: 560px;
  }

  .photo-frame {
    right: 18px;
    bottom: 18px;
    width: min(270px, 68%);
  }

  .portrait-badge {
    right: 18px;
    bottom: 18px;
    left: 18px;
    max-width: none;
  }

  .note-one {
    left: 16px;
    bottom: 22px;
  }

  .note-two {
    right: 16px;
    top: 18%;
  }

  .peak-main {
    right: 16px;
    width: 280px;
    height: 380px;
  }

  .peak-left {
    left: -120px;
  }

  .peak-right {
    right: -140px;
  }

  .trail-one {
    right: 214px;
    bottom: 74px;
    height: 240px;
  }

  .trail-two {
    right: 170px;
    bottom: 206px;
    height: 136px;
  }

  .topic-grid,
  .work-grid,
  .blog-grid,
  .highlight-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .premium-card {
    min-height: auto;
  }

  .business-visual {
    min-height: 390px;
    overflow: hidden;
  }

  .business-visual::before {
    inset: 48px;
  }

  .orbit-tabs {
    width: 300px;
    height: 300px;
  }

  .buttered-callout {
    width: 158px;
    height: 128px;
  }

  .buttered-callout span {
    right: 8px;
    bottom: 26px;
    left: 8px;
    font-size: 0.72rem;
  }

  .orbit-tabs span {
    min-width: 74px;
    min-height: 38px;
    font-size: 0.68rem;
  }

  .orbit-tabs span:nth-child(1) {
    top: -18px;
    left: calc(50% - 37px);
  }

  .orbit-tabs span:nth-child(2) {
    left: -24px;
  }

  .orbit-tabs span:nth-child(3) {
    right: -24px;
  }

  .orbit-tabs span:nth-child(4) {
    bottom: 34px;
    left: -10px;
  }

  .orbit-tabs span:nth-child(5) {
    right: -10px;
    bottom: 34px;
  }

  .orbit-tabs span:nth-child(6) {
    left: calc(50% - 43px);
    bottom: -22px;
    min-width: 86px;
  }

  .lifestyle-card {
    min-height: 520px;
  }

  .lifestyle-card img {
    height: 520px;
  }

  .site-footer {
    width: min(100% - 28px, var(--max-width));
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-ready .reveal:not(.is-visible),
  .reveal {
    opacity: 1;
    transform: none;
  }
}


/* Teaching section resource link card (AI Job Search Prompt Sheet).
   Classes are prefixed khps- so they cannot collide with existing styles. */
.khps-card {
  display: block;
  grid-column: 1 / -1;
  max-width: 640px;
  margin: 32px 0 0;
  padding: 26px 28px 24px;
  background: #16181f;
  border: 1px solid rgba(245, 184, 65, 0.28);
  border-radius: 10px;
  text-decoration: none;
  color: #fff;
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.khps-card:hover {
  border-color: #f5b841;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.khps-card:focus-visible {
  outline: 2px solid #f5b841;
  outline-offset: 3px;
}

.khps-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: #f5b841;
  margin-bottom: 10px;
}

.khps-title {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 11px;
  color: #fff;
}

.khps-desc {
  display: block;
  font-size: 15px;
  line-height: 1.55;
  color: #aeb5c2;
  margin-bottom: 18px;
}

.khps-cta {
  display: inline-block;
  background: #f5b841;
  color: #16181f;
  font-weight: 700;
  font-size: 14.5px;
  padding: 10px 20px;
  border-radius: 5px;
}

@media (max-width: 600px) {
  .khps-card {
    padding: 22px 20px;
  }

  .khps-title {
    font-size: 23px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .khps-card {
    transition: none;
  }

  .khps-card:hover {
    transform: none;
  }
}
