﻿:root {
  --bg: #0c0906;
  --bg2: #14100a;
  --bg3: #18120b;
  --gold: #c98b0a;
  --gold2: #e3a110;
  --cream: #f4ecd8;
  --warm: #c7b490;
  --muted: #8f7f68;
  --line: rgba(255, 255, 255, 0.09);
  --border: rgba(201, 139, 10, 0.2);
  --glow: rgba(227, 161, 16, 0.2);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Space Grotesk", sans-serif;
  color: var(--cream);
  background: radial-gradient(circle at 15% 0%, #171108 0%, #0d0a06 45%, #080603 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.24;
  pointer-events: none;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.18) 1px, transparent 0);
  background-size: 4px 4px;
}

a {
  color: inherit;
}

.wrap {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.nav-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  padding-top: 0;
  isolation: isolate;
}
.nav {
  position: relative;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(10, 8, 5, 0.86);
  backdrop-filter: blur(10px);
  padding: 12px 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
  display: grid;
  place-items: center;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.brand-text {
  font-size: 0.86rem;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.links {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 14px;
}

.links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.links a:hover,
.links a[aria-current="page"] {
  color: var(--cream);
}
.links li {
  position: relative;
}

.links .has-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.links .has-dropdown {
  padding-bottom: 12px;
  margin-bottom: -12px;
}

.links .has-dropdown > a::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--gold2);
  border-bottom: 2px solid var(--gold2);
  transform: translateY(-2px) rotate(45deg);
}

.dropdown {
  display: none;
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  min-width: 210px;
  margin-top: 0;
  padding: 8px;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(10, 8, 5, 0.96);
  z-index: 90;
}

.dropdown li {
  width: 100%;
}

.dropdown a {
  display: block;
  padding: 8px 10px;
  border-radius: 7px;
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.dropdown a:hover,
.dropdown a[aria-current="page"] {
  background: rgba(201, 139, 10, 0.16);
  color: var(--cream);
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.68rem 1rem;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: transform 1.8s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 1.2s ease,
    border-color 1.05s ease, background 0.55s;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.26) 48%, transparent 66%);
  transform: translateX(-130%);
  transition: transform 1.65s ease;
  pointer-events: none;
  z-index: -1;
}

.btn:hover::before {
  transform: translateX(130%);
}

.btn:hover {
  transform: translate3d(0, -4px, 0);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.34);
}

.btn.gold {
  background: var(--gold);
  border-color: transparent;
  color: #171106;
}

.btn.gold:hover {
  background: var(--gold2);
  box-shadow: 0 14px 30px rgba(227, 161, 16, 0.42);
}

.btn:active {
  transform: translate3d(0, -1px, 0) scale(0.986);
  transition-duration: 320ms;
}

.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(13, 9, 6, 0.85), 0 0 0 4px rgba(227, 161, 16, 0.58),
    0 10px 24px rgba(0, 0, 0, 0.28);
}

.btn:disabled {
  transform: none;
  box-shadow: none;
  opacity: 0.45;
  cursor: not-allowed;
}

.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: 124px 0 84px;
  background-image: linear-gradient(to right, rgba(7, 5, 3, 0.94) 10%, rgba(7, 5, 3, 0.76) 42%, rgba(7, 5, 3, 0.5) 100%),
    var(--hero-bg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--gold);
}

h1,
h2,
h3 {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  line-height: 0.94;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2.2rem, 5.2vw, 4.8rem);
  max-width: 13ch;
  margin-bottom: 14px;
}

h1 em {
  font-style: normal;
  color: var(--gold2);
}

h2 {
  font-size: clamp(1.8rem, 3.7vw, 3rem);
}

h3 {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
}

.lead {
  color: var(--warm);
  line-height: 1.74;
  margin-top: 14px;
}

.hero-copy .lead {
  max-width: 58ch;
  margin-bottom: 22px;
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(19, 16, 11, 0.94);
  overflow: hidden;
}

.hero-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.hero-card-body {
  padding: 18px;
  display: grid;
  gap: 10px;
}

.pill {
  display: inline-flex;
  width: fit-content;
  justify-self: start;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  background: #1a140b;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.meta-box {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #1a140c;
  padding: 10px;
}

.meta-box strong {
  display: block;
  font-family: "Anton", sans-serif;
  font-size: 1.5rem;
  line-height: 0.9;
}


.parallax-hero {
  background-attachment: scroll;
  background-position: center 50%;
}

.parallax-image {
  transform: translate3d(0, 0, 0) scale(1.04);
  transform-origin: center;
  will-change: transform;
}

.about-page .about-hero-card .hero-card-body {
  gap: 16px;
}

.about-page .about-hero-card .pill {
  margin-bottom: 4px;
}

.about-page .about-hero-card .meta-box {
  box-shadow: none;
}

.about-page .about-hero-card .meta-box strong {
  color: var(--cream);
  text-shadow: none;
  filter: none;
  letter-spacing: 0.03em;
  line-height: 0.98;
}

.about-page .about-hero {
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  background-color: #090603;
  background-attachment: scroll;
}

.section {
  padding: 76px 0;
}

.section-head {
  margin-bottom: 24px;
}

.section-head h2 {
  margin-bottom: 12px;
}

.section-head .lead {
  max-width: none;
}

.panel {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(165deg, #1c150d 0%, #15100a 100%);
  padding: 26px;
}

.panel.dark {
  background: #13100b;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.image-block {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #15110b;
}

.image-block img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.image-block.tall img {
  min-height: 520px;
}

.mission-image img {
  min-height: 220px;
  max-height: 320px;
  object-fit: cover;
  object-position: center 36%;
}

.stack {
  display: grid;
  gap: 12px;
}

.stack-item {
  border: 1px solid var(--border);
  border-left: 2px solid var(--gold);
  border-radius: 8px;
  padding: 14px;
  background: #17120c;
  color: var(--cream);
  font-size: 0.92rem;
  line-height: 1.6;
}

.list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.list li {
  border: 1px solid var(--border);
  border-left: 2px solid var(--gold);
  border-radius: 8px;
  padding: 12px;
  color: var(--warm);
  font-size: 0.92rem;
  background: #17120c;
  line-height: 1.55;
}

.card-grid.two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.card-grid.three {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #15110b;
  padding: 20px;
}

.card h3 {
  margin-bottom: 8px;
}

.card p {
  color: var(--muted);
  line-height: 1.68;
  font-size: 0.95rem;
}

.accent {
  color: var(--gold2);
}

.highlight-band {
  background: var(--gold);
  margin: 0;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.highlight-item {
  padding: 18px 16px;
  border-right: 1px solid rgba(0, 0, 0, 0.12);
}

.highlight-item:last-child {
  border-right: none;
}

.highlight-item strong {
  display: block;
  font-family: "Anton", sans-serif;
  color: #1d150b;
  font-size: 1.8rem;
  line-height: 0.9;
}

.highlight-item p {
  margin-top: 4px;
  color: #2e2418;
  font-size: 0.84rem;
  line-height: 1.45;
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 16px 0;
}

.faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 1.02rem;
  font-weight: 700;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  color: var(--muted);
  font-size: 1rem;
  border: 1px solid var(--line);
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.faq details[open] summary::after {
  content: "-";
}

.faq p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.68;
}

.cta {
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 34px 24px;
  background: radial-gradient(circle at 50% 0%, rgba(201, 139, 10, 0.15), transparent 52%), #12100b;
}

.cta h2 {
  margin-bottom: 10px;
}

.cta p {
  color: var(--muted);
  line-height: 1.72;
  max-width: 66ch;
  margin: 0 auto 18px;
}


.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 22px;
}

.map iframe {
  width: 100%;
  min-height: 390px;
  border: 1px solid var(--line);
  border-radius: 12px;
}

footer {
  padding: 24px 0 34px;
}

.foot {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #12100b;
  padding: 18px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.84rem;
  color: var(--muted);
}

.foot a {
  color: var(--gold2);
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.foot a:hover {
  color: var(--ink);
}

.hero-card,
.card,
.panel,
.stack-item,
.image-block {
  transform: translate3d(0, 0, 0);
  will-change: transform;
  backface-visibility: hidden;
  transition: transform 1.05s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.62s ease, box-shadow 0.82s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-card:hover,
.card:hover,
.panel:hover,
.stack-item:hover,
.image-block:hover {
  transform: translate3d(0, -5px, 0);
  border-color: rgba(227, 161, 16, 0.58);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(227, 161, 16, 0.5), 0 0 24px rgba(227, 161, 16, 0.18);
}

@keyframes heroDrift {
  0% {
    background-position: center;
  }
  100% {
    background-position: 56% 46%;
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero-copy {
  animation: riseIn 1.08s cubic-bezier(0.22, 0.61, 0.36, 1) 0.1s both;
}

.hero-card {
  animation: riseIn 1.42s cubic-bezier(0.22, 0.61, 0.36, 1) 0.26s both;
}

.reveal {
  opacity: 0.22;
  transform: translateY(26px);
  transition: opacity 1.02s cubic-bezier(0.22, 0.61, 0.36, 1), transform 1.02s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

.reveal-grid > * {
  opacity: 0.2;
  transform: translateY(18px);
  transition: opacity 0.84s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.84s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay: calc(var(--stagger, 0) * 84ms);
}

.reveal-grid.in-view > * {
  opacity: 1;
  transform: none;
}

@media (max-width: 1060px) {
  .hero-grid,
  .split,
  .card-grid.three,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .card-grid.two,
  .highlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .highlight-item:nth-child(2n) {
    border-right: none;
  }

  .highlight-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }

  .highlight-item:nth-last-child(-n + 2) {
    border-bottom: none;
  }
}

/* Unified mobile header layout across site pages */
@media (max-width: 900px) {
  .nav-wrap {
    padding-top: 0;
  }

  .nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand cta"
      "links links";
    column-gap: 10px;
    row-gap: 10px;
    align-items: center;
    padding: 10px 12px;
    border-radius: 12px;
  }

  .brand {
    grid-area: brand;
    min-width: 0;
    gap: 8px;
  }

  .brand-text {
    font-size: 0.74rem;
    letter-spacing: 0.04em;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav > .btn {
    grid-area: cta;
    width: auto;
    flex: 0 0 auto;
    min-width: 148px;
    justify-self: end;
    margin-left: 0;
    padding: 0.6rem 0.92rem;
    font-size: 0.7rem;
    white-space: nowrap;
    text-align: center;
  }

  .links {
    grid-area: links;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    overflow: visible;
    white-space: normal;
  }

  .links li {
    flex: 0 0 auto;
  }

  .links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.34rem 0.52rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    font-size: 0.64rem;
    letter-spacing: 0.06em;
    line-height: 1;
    color: var(--warm);
  }

  .links a:hover,
  .links a[aria-current="page"] {
    color: var(--cream);
    background: rgba(227, 161, 16, 0.14);
    border-color: rgba(227, 161, 16, 0.36);
  }

  .links .has-dropdown {
    position: relative;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .links .has-dropdown > a {
    justify-content: center;
    width: auto;
  }

  .links .has-dropdown > a::after {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    border-right: 2px solid var(--gold2);
    border-bottom: 2px solid var(--gold2);
    transform: translateY(-1px) rotate(45deg);
    transition: transform 0.25s ease;
    margin-left: 6px;
  }

  .links .has-dropdown .dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: auto;
    width: min(228px, calc(100vw - 28px));
    min-width: 0;
    margin-top: 0;
    padding: 8px;
    list-style: none;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(10, 8, 5, 0.96);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.38);
    z-index: 10030;
  }

  .links .has-dropdown.mobile-open > a::after {
    transform: translateY(1px) rotate(-135deg);
  }

  .links .has-dropdown:hover .dropdown,
  .links .has-dropdown:focus-within .dropdown {
    display: none;
  }

  .links .has-dropdown.mobile-open .dropdown {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .links .has-dropdown .dropdown li {
    width: 100%;
  }

  .links .has-dropdown .dropdown a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.44rem 0.52rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    font-size: 0.62rem;
    letter-spacing: 0.06em;
    line-height: 1;
    color: var(--warm);
  }

  .links .has-dropdown .dropdown a:hover,
  .links .has-dropdown .dropdown a[aria-current="page"] {
    color: var(--cream);
    background: rgba(227, 161, 16, 0.14);
    border-color: rgba(227, 161, 16, 0.36);
  }

  .page-hero {
    padding-top: 154px;
  }

  .about-page .about-hero {
    background-position: center 24% !important;
  }
}

@media (max-width: 760px) {
  .page-hero {
    background-attachment: scroll;
    animation: none;
    padding: 154px 0 64px;
  }

  .section {
    padding: 48px 0;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .cta .btn,
  .btn-row .btn,
  form .btn {
    width: 100%;
  }

  .card-grid.two,
  .card-grid.three,
  .highlight-grid {
    grid-template-columns: 1fr;
  }

  .highlight-item {
    border-right: none;
  }

  .map iframe {
    min-height: 260px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .page-hero,
  .hero-copy,
  .hero-card,
  .parallax-image {
    animation: none !important;
  }

  .btn::before {
    display: none !important;
  }

  .reveal,
  .reveal-grid > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .hero-card,
  .card,
  .panel,
  .stack-item,
  .image-block,
  .btn {
    transition: none !important;
  }
}















































/* Header consistency overrides across programme pages */
@media (max-width: 1060px) {
  .split[class*="-who-split"],
  .split[class*="-how-split"],
  .split[class*="-learn-split"],
  .split[class*="-progress-split"] {
    grid-template-columns: 1fr !important;
    align-items: start !important;
  }
}

@media (max-width: 760px) {
  .section-head h2,
  .panel h2 {
    font-size: clamp(1.65rem, 8.8vw, 2.35rem);
    line-height: 0.95;
  }
}

/* Unified progression block across programme pages */
.split[class*="-progress-split"] {
  grid-template-columns: 1fr 1fr !important;
  gap: 22px !important;
  align-items: stretch !important;
}

.split[class*="-progress-split"] .panel {
  display: grid;
  align-content: start;
  height: 100%;
}

.split[class*="-progress-split"] .panel h2 {
  max-width: 14ch;
}

@media (max-width: 1060px) {
  .split[class*="-progress-split"] {
    grid-template-columns: 1fr !important;
  }

  .split[class*="-progress-split"] .panel h2 {
    max-width: none;
  }
}

