:root {
  --bg: #070707;
  --bg-2: #101010;
  --bg-3: #161616;
  --ink: #f4f4f1;
  --muted: #9a9a92;
  --yellow: #f5d400;
  --yellow-deep: #c9a600;
  --line: rgba(245, 212, 0, 0.28);
  --shade: rgba(0, 0, 0, 0.72);
  --font-display: "Bebas Neue", "Arial Narrow", sans-serif;
  --font-body: "Sora", "Helvetica Neue", sans-serif;
  --radius: 2px;
  --max: 1180px;
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background-color: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.05;
  margin: 0 0 0.5em;
  text-transform: uppercase;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }

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

.accent { color: var(--yellow); font-weight: 600; }

.text-link {
  color: var(--yellow);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(245, 212, 0, 0.45);
  text-underline-offset: 0.2em;
  transition: text-decoration-color 0.3s var(--ease);
}

.text-link:hover { text-decoration-color: var(--yellow); }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  background: var(--yellow);
  color: #000;
  padding: 0.6rem 1rem;
  z-index: 1000;
}

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

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-h);
  backdrop-filter: blur(14px);
  background: rgba(7, 7, 7, 0.72);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: rgba(245, 212, 0, 0.18);
  background: rgba(7, 7, 7, 0.92);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  height: 100%;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 1.15rem;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.site-nav-desktop {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.site-nav-desktop a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s ease;
}

.site-nav-desktop a:hover,
.site-nav-desktop a:focus-visible {
  color: var(--yellow);
}

/* Burger toggle */
.nav-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  z-index: 70;
  flex-shrink: 0;
}

.nav-toggle-bar {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.2s ease, top 0.3s var(--ease);
}

.nav-toggle-bar:nth-child(1) { top: 15px; }
.nav-toggle-bar:nth-child(2) { top: 21px; }
.nav-toggle-bar:nth-child(3) { top: 27px; }

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

/* Mobile drawer overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 58;
  background: rgba(4, 4, 4, 0.68);
  backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.nav-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* Mobile drawer */
.site-nav {
  display: none;
}

.nav-close {
  position: relative;
  width: 36px;
  height: 36px;
}

.nav-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
}

.nav-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.nav-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.4rem;
  border: 1px solid transparent;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.2s var(--ease), background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--yellow);
  color: #111;
}

.btn-primary:hover { background: #ffe34a; }

.btn-ghost {
  border-color: var(--yellow);
  color: var(--yellow);
  background: transparent;
}

.btn-ghost:hover {
  background: rgba(245, 212, 0, 0.1);
}

.btn-nav {
  min-height: 40px;
  padding: 0.55rem 1rem;
  background: var(--yellow);
  color: #111 !important;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.04);
  animation: heroZoom 18s var(--ease) forwards;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.35) 40%, rgba(0, 0, 0, 0.85) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0) 55%);
}

.hero-content {
  width: min(100% - 2.5rem, 720px);
  text-align: center;
  padding: calc(var(--header-h) + 0.5rem) 0 clamp(1.25rem, 3vh, 2rem);
  animation: riseIn 1s var(--ease) both;
}

.hero-logo {
  width: clamp(104px, 16vh, 180px);
  height: auto;
  margin: 0 auto clamp(0.6rem, 1.6vh, 1.1rem);
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.55));
  animation: logoPulse 4.5s ease-in-out infinite;
}

.hero h1 {
  color: var(--ink);
  font-size: clamp(2rem, 4.6vw + 0.5rem, 3.9rem);
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.55);
  margin-bottom: clamp(0.4rem, 1.2vh, 0.75rem);
}

.hero p {
  color: rgba(244, 244, 241, 0.88);
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  max-width: 40ch;
  margin: 0 auto clamp(1rem, 2.6vh, 1.6rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

.hero-tagline {
  margin-top: clamp(1rem, 3vh, 2.25rem);
  padding-top: clamp(0.85rem, 2.4vh, 1.6rem);
  border-top: 1px solid rgba(245, 212, 0, 0.22);
}

.hero-tagline p {
  max-width: none;
  margin: 0;
}

.hero-tagline .hero-tagline-line {
  font-family: var(--font-display);
  font-size: clamp(1rem, 3vw, 1.5rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.55);
}

.hero-tagline .hero-tagline-line span {
  color: var(--yellow);
  margin: 0 0.3rem;
}

.hero-tagline .hero-tagline-sub {
  margin-top: 0.4rem;
  font-size: clamp(0.68rem, 1.9vw, 0.8rem);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yellow);
}

/* Short or landscape viewports: keep the whole hero block above the fold. */
@media (max-height: 720px) {
  .hero-logo { width: clamp(68px, 11vh, 110px); }
  .hero h1 { font-size: clamp(1.7rem, 3.4vw + 0.4rem, 2.5rem); }
  .hero p { font-size: 0.95rem; margin-bottom: 0.9rem; }
  .hero-tagline { margin-top: 0.9rem; padding-top: 0.8rem; }
  .hero-tagline .hero-tagline-line { font-size: clamp(0.95rem, 2.4vw, 1.25rem); }
  .hero-tagline .hero-tagline-sub { font-size: 0.68rem; }
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes logoPulse {
  0%, 100% { filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.55)); }
  50% { filter: drop-shadow(0 12px 36px rgba(245, 212, 0, 0.28)); }
}

/* Sections */
.section {
  padding: clamp(4rem, 10vw, 7rem) 1.25rem;
}

.section-head {
  max-width: 640px;
  margin: 0 auto 3rem;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.75rem;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  margin-bottom: 1.1rem;
  color: var(--ink);
}

.price span {
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price strong {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6vw, 4.4rem);
  letter-spacing: 0.04em;
  font-weight: 400;
  line-height: 1;
}

/* Splits */
.split {
  max-width: var(--max);
  margin: 0 auto 4.5rem;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

.split:last-child { margin-bottom: 0; }

.split-reverse .split-copy { order: 2; }
.split-reverse .split-media { order: 1; }

.split-copy h3 {
  position: relative;
  padding-bottom: 0.7rem;
  margin-bottom: 1rem;
}

.split-copy h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72px;
  height: 3px;
  background: var(--yellow);
}

.split-media {
  margin: 0;
  overflow: hidden;
  position: relative;
}

.split-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid var(--line);
}

.split-media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.split:hover .split-media img {
  transform: scale(1.03);
}

/* Packages */
.packages {
  background:
    linear-gradient(180deg, rgba(245, 212, 0, 0), rgba(245, 212, 0, 0.03), rgba(245, 212, 0, 0)),
    var(--bg-2);
}

.package-tabs {
  max-width: var(--max);
  margin: 0 auto 2rem;
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}

.tab {
  min-width: 140px;
  min-height: 46px;
  border: 1px solid var(--line);
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.tab.is-active,
.tab:hover {
  background: var(--yellow);
  color: #111;
  border-color: var(--yellow);
}

.tab-panel[hidden] { display: none; }

.package-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.package {
  position: relative;
  padding: 1.5rem 1.35rem 1.6rem;
  background: linear-gradient(160deg, rgba(245, 212, 0, 0.05), rgba(245, 212, 0, 0) 40%), var(--bg-3);
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--yellow), rgba(245, 212, 0, 0)) 1;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}

.package.featured {
  border-image: linear-gradient(90deg, var(--yellow), var(--yellow-deep)) 1;
  box-shadow: inset 0 0 0 1px rgba(245, 212, 0, 0.18), 0 20px 45px rgba(245, 212, 0, 0.08);
  transform: translateY(-6px);
  background: linear-gradient(160deg, rgba(245, 212, 0, 0.09), rgba(245, 212, 0, 0) 45%), var(--bg-3);
}

/* Subtle decoy: priced close to the featured tier but visibly thinner on value,
   nudging the eye toward the bigger jump for a small step up in price. */
.package-decoy {
  opacity: 0.86;
}

.package-decoy .package-price {
  color: var(--muted);
}

.package-badge {
  position: absolute;
  top: -12px;
  right: 1.2rem;
  background: var(--yellow);
  color: #111;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
}

.package h3 {
  font-size: 1.45rem;
  margin-bottom: 0.35rem;
}

.package-price {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--yellow);
  letter-spacing: 0.04em;
  margin: 0 0 0.3rem;
}

.package-includes {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.package.featured .package-includes {
  color: var(--yellow);
}

.package ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.package li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.1rem;
  color: var(--muted);
  font-size: 0.92rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.package li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.9rem;
  width: 6px;
  height: 6px;
  background: var(--yellow);
  transform: rotate(45deg);
}

.package-extras {
  margin-top: auto;
  padding-top: 1.1rem;
}

.package-extras p {
  margin: 0 0 0.35rem;
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(154, 154, 146, 0.9);
}

.package-extras p:last-child { margin-bottom: 0; }

.package-extras span {
  color: var(--yellow);
  font-weight: 600;
  white-space: nowrap;
}

/* Why */
.why-grid {
  max-width: var(--max);
  margin: 0 auto 3.5rem;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.why-media {
  margin: 0;
  overflow: hidden;
}

.why-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 60%;
}

.values {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 0 0;
  border-top: 1px solid var(--line);
}

.values h3 {
  margin-bottom: 1rem;
}

.values > p {
  max-width: 58ch;
}

.pillars {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

.pillars li {
  display: flex;
  flex-direction: column;
  padding: 1.6rem 1.35rem 1.7rem;
  background: linear-gradient(160deg, rgba(245, 212, 0, 0.05), rgba(245, 212, 0, 0) 45%), var(--bg-3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.3s ease, transform 0.3s var(--ease), box-shadow 0.3s ease;
}

.pillars li:hover {
  border-color: rgba(245, 212, 0, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.pillar-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1.2rem;
  color: var(--yellow);
  background: rgba(245, 212, 0, 0.08);
  border: 1px solid rgba(245, 212, 0, 0.22);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.pillar-icon svg {
  width: 26px;
  height: 26px;
  transition: transform 0.3s var(--ease);
}

.pillars li:hover .pillar-icon {
  background: rgba(245, 212, 0, 0.14);
  border-color: rgba(245, 212, 0, 0.45);
}

.pillars li:hover .pillar-icon svg {
  transform: scale(1.08);
}

.pillars strong {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--ink);
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.pillars li > span:last-child {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* Academy */
.academy {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.academy::before {
  content: "";
  position: absolute;
  inset: -2%;
  z-index: 0;
  background: url("images/academy-days.webp") center / cover no-repeat;
  filter: brightness(1.12) contrast(1.02) saturate(1.04);
  transform: scale(1.02);
}

/* Backgrounds download even when they are far below the fold, so phones get a
   smaller copy of this one. */
@media (max-width: 780px) {
  .academy::before {
    background-image: url("images/academy-days-sm.webp");
  }
}

.academy::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.42) 0%,
    rgba(0, 0, 0, 0.55) 100%
  );
  pointer-events: none;
}

.academy > * {
  position: relative;
  z-index: 1;
}

.academy .section-head p {
  color: rgba(244, 244, 241, 0.9);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}

.academy-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.academy-item {
  padding: 1.6rem 1.4rem;
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid var(--yellow);
  backdrop-filter: blur(18px) saturate(1.25);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.academy-item h3 {
  color: var(--yellow);
  font-size: 1.35rem;
}

.academy-item ul {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.academy-item li {
  color: var(--ink);
  padding: 0.3rem 0;
  font-size: 0.92rem;
}

.academy-item li::before {
  content: "▸ ";
  color: var(--yellow);
}

/* Areas */
.areas-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.areas-inner figure { margin: 0; overflow: hidden; }

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

/* Portfolio */
.gallery-section {
  background: var(--bg-2);
}

.areas-inner strong {
  color: var(--ink);
  font-weight: 600;
}

.areas-inner p {
  font-size: 0.95rem;
}

.gallery {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

.gallery figure {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 1;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease), filter 0.4s ease;
  filter: saturate(0.95) contrast(1.05);
}

.gallery figure:hover img {
  transform: scale(1.05);
  filter: saturate(1.05) contrast(1.08);
}

.gallery figure:nth-child(1),
.gallery figure:nth-child(6) {
  grid-row: span 2;
  aspect-ratio: auto;
  min-height: 100%;
}

/* Contact */
.contact {
  padding-bottom: 5rem;
}

.contact-panel {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(2.5rem, 6vw, 4rem) 1.5rem;
  background:
    radial-gradient(500px 220px at 50% 0%, rgba(245, 212, 0, 0.14), rgba(245, 212, 0, 0) 70%),
    linear-gradient(180deg, #141414, #0d0d0d);
  border: 1px solid var(--line);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin: 1.75rem 0 1.5rem;
}

.social {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.social a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--yellow);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.social a img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: invert(1);
  transition: filter 0.2s ease;
}

.social a:hover {
  color: #ffe34a;
}

.social a:hover img {
  filter: invert(86%) sepia(61%) saturate(1200%) hue-rotate(359deg) brightness(105%) contrast(104%);
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: var(--bg-2);
  padding: clamp(2.5rem, 6vw, 3.5rem) 1.25rem 0;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 1.3fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding-bottom: 2.5rem;
}

.footer-col h3 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  margin: 0 0 0.9rem;
}

.footer-brand p {
  margin: 0.85rem 0 0;
  font-size: 0.88rem;
  max-width: 32ch;
}

.footer-inner .brand img {
  width: 36px;
  height: 36px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--muted);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--yellow);
}

.footer-areas p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.65;
}

.footer-areas strong {
  color: var(--ink);
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.25rem 0;
  max-width: var(--max);
  margin: 0 auto;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

/* Responsive */
@media (max-width: 960px) {
  .split,
  .split-reverse,
  .why-grid,
  .areas-inner {
    grid-template-columns: 1fr;
  }

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

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

  .split-reverse .split-copy,
  .split-reverse .split-media {
    order: initial;
  }

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

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

  .gallery figure:nth-child(1),
  .gallery figure:nth-child(6) {
    grid-row: span 1;
    aspect-ratio: 1;
  }
}

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

  .nav-toggle { display: inline-flex; }

  .site-nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 60;
    width: min(84vw, 380px);
    height: 100%;
    background: linear-gradient(190deg, #101010 0%, #060606 100%);
    border-left: 1px solid var(--line);
    box-shadow: -24px 0 60px rgba(0, 0, 0, 0.55);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    overflow-y: auto;
  }

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

  .site-nav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-nav-head .brand {
    font-size: 1rem;
  }

  .site-nav-head .brand img {
    width: 36px;
    height: 36px;
  }

  .site-nav-links {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
  }

  .site-nav-links a {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 1.25rem;
    font-family: var(--font-display);
    font-size: 1.35rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--ink);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: color 0.2s ease, padding-left 0.25s var(--ease), background 0.2s ease;
  }

  .site-nav-links a:hover,
  .site-nav-links a:focus-visible {
    color: var(--yellow);
    padding-left: 1.6rem;
    background: rgba(245, 212, 0, 0.05);
  }

  .site-nav-index {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--yellow);
  }

  .site-nav-contact {
    margin-top: auto;
    padding: 1.5rem 1.25rem calc(1.75rem + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(245, 212, 0, 0.03);
  }

  .site-nav-eyebrow {
    margin: 0 0 0.75rem;
    color: var(--yellow);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  .site-nav-contact-link {
    display: block;
    color: var(--ink);
    font-size: 0.95rem;
    padding: 0.3rem 0;
  }

  .site-nav-contact-link:hover {
    color: var(--yellow);
  }

  .site-nav-social {
    display: flex;
    gap: 1rem;
    margin: 0.85rem 0 1.25rem;
  }

  .site-nav-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    transition: border-color 0.2s ease, background 0.2s ease;
  }

  .site-nav-social a:hover {
    border-color: var(--yellow);
    background: rgba(245, 212, 0, 0.08);
  }

  .site-nav-social img {
    width: 18px;
    height: 18px;
    filter: invert(1);
  }

  .site-nav-social a:hover img {
    filter: invert(86%) sepia(61%) saturate(1200%) hue-rotate(359deg) brightness(105%) contrast(104%);
  }

  .site-nav-cta {
    width: 100%;
  }

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

@media (max-width: 560px) {
  .pillars,
  .gallery,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .brand span { display: none; }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .btn { width: 100%; }
}

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