:root {
  --bg: #0a0a0b;
  --bg-elevated: #121214;
  --cream: #f2ebe0;
  --cream-muted: rgba(242, 235, 224, 0.72);
  --gold: #c4a35a;
  --gold-soft: rgba(196, 163, 90, 0.35);
  --line: rgba(242, 235, 224, 0.12);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --nav-h: 4.25rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

em {
  font-style: italic;
  color: var(--gold);
}

/* —— Nav —— */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  background: linear-gradient(to bottom, rgba(10, 10, 11, 0.96), rgba(10, 10, 11, 0));
}

.nav__links {
  display: none;
  margin-left: auto;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav__links a {
  opacity: 0.75;
  transition: opacity 0.25s var(--ease), color 0.25s var(--ease);
}

.nav__links a:hover,
.nav__links a.is-active {
  opacity: 1;
  color: var(--gold);
}

.nav__linkedin {
  display: inline-flex;
  opacity: 0.85 !important;
}

.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
}

.nav.is-open .nav__links {
  display: flex;
  position: absolute;
  top: var(--nav-h);
  right: 1rem;
  left: 1rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
}

@media (min-width: 768px) {
  .nav {
    padding: 0 3rem;
  }

  .nav__links {
    display: flex;
  }

  .nav__toggle {
    display: none;
  }
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.btn--primary {
  background: var(--gold);
  color: #0a0a0b;
}

.btn--primary:hover {
  background: #d4b56a;
  transform: translateY(-1px);
}

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

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--block {
  width: 100%;
}

.btn:disabled {
  opacity: 0.6;
  cursor: wait;
  transform: none;
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--bg);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(10, 10, 11, 0.95) 0%,
    rgba(10, 10, 11, 0.72) 38%,
    rgba(10, 10, 11, 0.35) 70%,
    rgba(10, 10, 11, 0.2) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: calc(var(--nav-h) + 1.5rem) 1.5rem 3.5rem;
  max-width: 36rem;
  animation: fade-up 1s var(--ease) both;
}

.hero__name {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 9vw, 4.75rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.hero__brand {
  margin: 1.35rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--gold);
}

.hero__sub {
  margin: 0.85rem 0 0;
  max-width: 28rem;
  color: var(--cream);
  font-size: 1.05rem;
  font-weight: 500;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 900px) {
  .hero {
    align-items: center;
  }

  .hero__media {
    left: 38%;
    right: 0;
  }

  .hero__media img {
    object-position: center 12%;
  }

  .hero__scrim {
    background: linear-gradient(
      90deg,
      rgba(10, 10, 11, 1) 0%,
      rgba(10, 10, 11, 0.96) 34%,
      rgba(10, 10, 11, 0.55) 52%,
      rgba(10, 10, 11, 0.12) 72%,
      rgba(10, 10, 11, 0) 100%
    );
  }

  .hero__content {
    padding: calc(var(--nav-h) + 2rem) 3rem 4rem;
    max-width: 42rem;
  }

  .hero__name {
    font-size: clamp(3.5rem, 5.5vw, 5.25rem);
  }
}

/* —— Sections —— */
.section {
  padding: 5.5rem 1.5rem;
  border-top: 1px solid var(--line);
}

.section__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section__inner--wide {
  max-width: 1180px;
}

.section__label {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.section__title {
  margin: 0;
  max-width: 18ch;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.1;
}

.section__lead {
  margin: 1rem 0 0;
  max-width: 36rem;
  color: var(--cream);
  font-weight: 600;
}

@media (min-width: 768px) {
  .section {
    padding: 7rem 3rem;
  }
}

/* —— Vision —— */
.vision__body {
  margin-top: 1.75rem;
  max-width: 40rem;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.vision--hook {
  padding-bottom: 2.5rem;
  border-bottom: 0;
}

.vision__copy {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 500;
  color: var(--cream-muted);
}

.vision__copy--lead {
  margin-top: 1.1rem;
  max-width: 36rem;
  font-weight: 600;
  color: var(--cream);
}

.vision__copy strong {
  color: var(--cream);
  font-weight: 500;
}

/* —— Values / Flip cards —— */
.values__grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.75rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .values__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .values__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.value-card {
  perspective: 1200px;
  min-height: 280px;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  text-align: left;
  color: inherit;
  font: inherit;
}

.value-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 280px;
  transform-style: preserve-3d;
  transition: transform 0.7s var(--ease);
}

.value-card.is-flipped .value-card__inner {
  transform: rotateY(180deg);
}

.value-card__face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.value-card__front {
  justify-content: space-between;
}

.value-card__back {
  transform: rotateY(180deg);
  gap: 0.75rem;
  overflow: auto;
}

.value-card__icon {
  width: 2.25rem;
  height: 2.25rem;
  color: var(--gold);
}

.value-card__icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-card__title {
  margin: 1.25rem 0 0;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  line-height: 1.15;
}

.value-card__action {
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--cream-muted);
}

.value-card__action strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.value-card__detail {
  margin: 0;
  flex: 1;
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--cream-muted);
  line-height: 1.5;
}

.value-card__context {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: rgba(242, 235, 224, 0.45);
}

.value-card__link {
  display: inline-flex;
  margin-top: auto;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.value-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.value-card:hover .value-card__face {
  border-color: var(--gold-soft);
}

/* —— Book form —— */
.book__layout {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .book__layout {
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: start;
  }
}

.book__form {
  padding: 1.75rem;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.1rem;
}

.field-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 560px) {
  .field-row {
    grid-template-columns: 1fr 1fr;
  }
}

.field label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 0.95rem;
  background: rgba(10, 10, 11, 0.65);
  border: 1px solid var(--line);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.25s var(--ease);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.field textarea {
  resize: vertical;
  min-height: 6.5rem;
}

.field select {
  appearance: none;
  color-scheme: dark;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%),
    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.form-status {
  min-height: 1.4em;
  margin: 1rem 0 0;
  font-size: 0.92rem;
  color: var(--cream-muted);
}

.form-status.is-success {
  color: #9dbe8a;
}

.form-status.is-error {
  color: #e08a7a;
}

/* —— Footer —— */
.footer {
  padding: 2.5rem 1.5rem 3rem;
  border-top: 1px solid var(--line);
}

.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__label {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer__brand {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.footer__role {
  margin: 0.2rem 0 0;
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--cream-muted);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.9rem;
  color: var(--cream-muted);
}

.footer__links a:hover {
  color: var(--gold);
}

@media (min-width: 768px) {
  .footer {
    padding: 2.5rem 3rem 3.5rem;
  }

  .footer__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* —— Inner pages —— */
.page {
  padding-top: var(--nav-h);
}

.page-hero {
  padding: 4.5rem 1.5rem 2.5rem;
}

.page-hero .section__title {
  max-width: 22ch;
}

@media (min-width: 768px) {
  .page-hero {
    padding: 5.5rem 3rem 3rem;
  }
}

.story {
  max-width: 40rem;
}

.story p {
  margin: 0 0 1.1rem;
  font-size: 1.08rem;
  font-weight: 300;
  color: var(--cream-muted);
}

.story__action {
  margin-top: 1.5rem;
  padding: 1.25rem 1.4rem;
  border: 1px solid var(--gold-soft);
  background: var(--bg-elevated);
}

.story__action strong {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.story__action p {
  margin: 0;
  color: var(--cream);
}

.audience {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.25rem;
}

@media (min-width: 720px) {
  .audience {
    grid-template-columns: 1fr 1fr;
  }
}

.audience__item h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
}

.audience__item p {
  margin: 0;
  color: var(--cream-muted);
  font-weight: 300;
}

.atelier-more {
  margin: 2rem 0 0;
  text-align: center;
}

.atelier-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
  max-width: 36rem;
}

@media (min-width: 720px) {
  .atelier-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.atelier-stats div {
  padding-top: 0.85rem;
  border-top: 1px solid var(--gold);
}

.atelier-stats em {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 600;
}

.atelier-stats span {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-muted);
}

.seat-grid,
.crest-row {
  display: grid;
  gap: 1.1rem;
  margin-top: 2.25rem;
}

@media (min-width: 720px) {
  .seat-grid,
  .crest-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

.seat,
.crest {
  padding: 1.4rem 1.2rem 1.5rem;
  border: 1px solid var(--line);
  background: var(--bg-elevated);
}

.seat span,
.crest em {
  display: block;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: normal;
  color: var(--gold);
}

.seat h3,
.crest h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
}

.seat p,
.crest p {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--cream-muted);
}

.atelier {
  position: relative;
  z-index: 3;
  overflow: visible;
}

.section[id] {
  scroll-margin-top: calc(var(--nav-h) + 1rem);
}

#mindset .section__title,
#mindset .vision__body,
#mindset .vision__copy {
  max-width: none;
  width: 100%;
}

.coverflow {
  position: relative;
  margin-top: 2rem;
  padding: 0 2.8rem;
}

.rail {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 1.5rem 0 2.25rem;
}

.rail::-webkit-scrollbar {
  display: none;
}

.rail > .banner-card {
  flex: 0 0 min(320px, 78vw);
  scroll-snap-align: start;
}

.coverflow .banner-card {
  display: flex;
  flex-direction: column;
  min-height: 420px;
  height: 100%;
  grid-template-columns: none;
}

.coverflow .banner-card__media {
  order: 0;
  height: 160px;
  min-height: 160px;
}

.coverflow .banner-card__media::before {
  background: linear-gradient(180deg, transparent 50%, #121214 100%);
}

.coverflow .banner-card .btn {
  width: 100%;
  margin-top: auto;
}

.coverflow__nav {
  position: absolute;
  top: 46%;
  z-index: 5;
  width: 2.5rem;
  height: 2.5rem;
  margin-top: -1.25rem;
  border: 1px solid var(--gold);
  background: rgba(10, 10, 11, 0.85);
  cursor: pointer;
}

.coverflow__nav::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  margin: 0 auto;
  border-left: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
}

.coverflow__nav--prev {
  left: 0.25rem;
}

.coverflow__nav--prev::before {
  transform: rotate(45deg);
  margin-left: 0.7rem;
}

.coverflow__nav--next {
  right: 0;
}

.coverflow__nav--next::before {
  transform: rotate(-135deg);
  margin-right: 0.7rem;
}

.coverflow__nav:hover {
  background: var(--gold);
}

.coverflow__nav:hover::before {
  border-color: #0a0a0b;
}

.coverflow__nav:disabled {
  opacity: 0.28;
  pointer-events: none;
}

.banner-grid {
  display: grid;
  gap: 1.15rem;
  margin-top: 2rem;
}

@media (min-width: 900px) {
  .banner-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.banner-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 210px;
  overflow: hidden;
  border-radius: 16px;
  background: #121214;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease);
}

.banner-card:hover,
.banner-card:focus-within,
.banner-card.is-active {
  border-color: var(--gold);
}

.banner-card:hover {
  background: #17171a;
}

.banner-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.banner-card__copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 1.5rem 1.4rem 1.5rem;
  z-index: 1;
}

.banner-card__meta {
  margin: 0 0 0.55rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.banner-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  font-weight: 600;
  line-height: 1.15;
}

.banner-card__sub {
  margin: 0.5rem 0 1.15rem;
  color: var(--cream-muted);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.4;
}

.banner-card__bullets {
  margin: 0.85rem 0 1.15rem;
  padding-left: 1.05rem;
  color: var(--cream-muted);
  font-size: 0.86rem;
  font-weight: 400;
  line-height: 1.45;
}

.banner-card__bullets li {
  margin-bottom: 0.35rem;
}

.banner-card__hook {
  margin: 0.55rem 0 1.1rem;
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--cream-muted);
  line-height: 1.4;
}

.banner-card .btn {
  align-self: flex-start;
  min-height: 2.5rem;
  padding: 0.55rem 1.1rem;
  font-size: 0.75rem;
}

.banner-card__media {
  position: relative;
  min-height: 180px;
}

.banner-card__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, #121214 0%, rgba(18, 18, 20, 0.15) 45%, transparent 70%);
}

.banner-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 620px) {
  .banner-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .banner-card__media {
    height: 160px;
    order: -1;
  }

  .banner-card__media::before {
    background: linear-gradient(180deg, transparent 40%, #121214 100%);
  }
}

.course-rail {
  --rail-gap: 1.1rem;
  position: relative;
  margin-top: 2.5rem;
  padding: 0 2.8rem;
}

.course-rail__viewport {
  overflow: hidden;
  container-type: inline-size;
}

.course-rail__track {
  display: flex;
  gap: var(--rail-gap);
  transition: transform 0.55s var(--ease);
}

.course-card {
  flex: 0 0 100cqi;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  cursor: pointer;
  text-align: left;
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}

@media (min-width: 720px) {
  .course-card {
    flex: 0 0 calc((100cqi - var(--rail-gap)) / 2);
  }
}

@media (min-width: 1100px) {
  .course-card {
    flex: 0 0 calc((100cqi - 2 * var(--rail-gap)) / 3);
  }
}

.course-card:hover,
.course-card.is-active {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.course-card__cover {
  position: relative;
  min-height: 8.5rem;
  padding: 1.2rem 1.25rem;
  background:
    linear-gradient(160deg, rgba(196, 163, 90, 0.18), rgba(10, 10, 11, 0.2) 55%),
    #161618;
  border-bottom: 1px solid var(--line);
}

.course-card__cover span {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.course-card__cover p {
  margin: 0.65rem 0 0;
  max-width: 22ch;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.25;
  color: var(--cream);
}

.course-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.15rem 1.2rem 1.25rem;
}

.course-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.15;
}

.course-card__sub {
  margin: 0.4rem 0 0;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--cream-muted);
  line-height: 1.4;
}

.course-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.9rem;
}

.course-card__chip {
  padding: 0.18rem 0.5rem;
  border: 1px solid var(--line);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  color: var(--cream-muted);
}

.course-card__meta {
  display: flex;
  justify-content: space-between;
  margin: auto 0 0;
  padding-top: 0.95rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.course-rail__nav {
  position: absolute;
  top: 42%;
  z-index: 4;
  width: 2.4rem;
  height: 2.4rem;
  margin-top: -1.2rem;
  border: 1px solid var(--gold);
  background: rgba(10, 10, 11, 0.85);
  cursor: pointer;
}

.course-rail__nav::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  margin: 0 auto;
  border-left: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
}

.course-rail__nav--prev {
  left: 0;
}

.course-rail__nav--prev::before {
  transform: rotate(45deg);
  margin-left: 0.65rem;
}

.course-rail__nav--next {
  right: 0;
}

.course-rail__nav--next::before {
  transform: rotate(-135deg);
  margin-right: 0.65rem;
}

.course-rail__nav:hover {
  background: var(--gold);
}

.course-rail__nav:hover::before {
  border-color: #0a0a0b;
}

.course-brief {
  margin-top: 1.5rem;
  padding: 1.6rem 1.5rem 1.75rem;
  border: 1px solid var(--gold-soft);
  background: var(--bg-elevated);
}

.course-brief__kicker,
.course-brief__label {
  margin: 0 0 0.4rem;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.course-brief h3 {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 600;
}

.course-brief__hook {
  margin: 0 0 1.1rem;
  max-width: 46rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--cream);
}

.course-brief__cols {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .course-brief__cols {
    grid-template-columns: 1.3fr 0.9fr;
  }
}

.course-brief ul {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
  color: var(--cream-muted);
  font-weight: 300;
}

.course-brief li {
  margin-bottom: 0.35rem;
}

.workshop-list {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
}

.workshop {
  border: 1px solid var(--line);
  background: var(--bg-elevated);
}

.workshop__toggle {
  width: 100%;
  padding: 1.35rem 1.4rem;
  background: transparent;
  border: 0;
  color: inherit;
  text-align: left;
  cursor: pointer;
  font: inherit;
}

.workshop__meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.55rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.workshop__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.15;
}

.workshop__sub {
  margin: 0.4rem 0 0.85rem;
  color: var(--cream-muted);
  font-weight: 300;
}

.workshop__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.workshop__chip {
  padding: 0.2rem 0.55rem;
  border: 1px solid var(--line);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--cream-muted);
}

.workshop__body {
  padding: 0 1.4rem 1.5rem;
}

.workshop__label {
  margin: 0.75rem 0 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.workshop__body ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--cream-muted);
  font-weight: 300;
}

.workshop__body .btn {
  margin-top: 1.1rem;
}

.workshop__toggle[aria-expanded="true"] {
  border-bottom: 1px solid var(--line);
}

.materials {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 720px) {
  .materials {
    grid-template-columns: repeat(4, 1fr);
  }
}

.materials__item {
  padding: 1.2rem 1.1rem;
  border: 1px solid var(--line);
  background: var(--bg-elevated);
}

.materials__item h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.materials__item p {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--cream-muted);
}

.faq-page {
  font-family: Inter, system-ui, sans-serif;
}

.faq-page .faq-list {
  margin-top: 2.25rem;
  max-width: 44rem;
}

.faq-list {
  margin-top: 2.25rem;
  max-width: 52rem;
}

.faq-list details {
  margin-bottom: 0.65rem;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--bg-elevated);
}

.faq-list details[open] {
  border-color: var(--gold-soft);
}

.faq-list summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.05rem 1.15rem;
  cursor: pointer;
  font-family: Inter, system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.45;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  flex-shrink: 0;
  width: 1.7rem;
  height: 1.7rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: Inter, system-ui, sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: 0;
  padding: 0 1.15rem 1.2rem;
  color: var(--cream-muted);
  font-family: Inter, system-ui, sans-serif;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.6;
}

.contact-form {
  max-width: 36rem;
  margin-top: 2rem;
}

.contact-grid {
  display: grid;
  gap: 2.5rem;
  margin-top: 2rem;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1.05fr;
    align-items: start;
  }
}

.contact-list {
  list-style: none;
  max-width: 36rem;
  margin: 2.5rem 0 0;
  padding: 0;
}

.contact-list li {
  padding: 0.95rem 0;
  border-top: 1px solid var(--line);
}

.contact-list span {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-list a {
  color: var(--cream);
}

.contact-list a:hover {
  color: var(--gold);
}

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

  .hero__media img,
  .hero__content,
  .value-card__inner,
  .course-rail__track,
  .course-card {
    animation: none !important;
    transition: none !important;
  }
}
