:root {
  --ink: #100008;
  --ink-soft: #201010;
  --wine: #480810;
  --wine-bright: #5c0c18;
  --gold: #e8bc78;
  --gold-light: #f8d8a8;
  --champagne: #ffecc8;
  --cream: #f4e0e0;
  --white-soft: #f0f0f0;
  --muted: #aca8a8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  background:
    radial-gradient(circle at 72% 4%, rgba(232, 188, 120, 0.14), transparent 28rem),
    radial-gradient(circle at 10% 40%, rgba(92, 12, 24, 0.35), transparent 26rem),
    var(--ink);
  color: var(--white-soft);
  font-family: "Manrope", sans-serif;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

body.landing-page {
  background:
    radial-gradient(circle at 50% 12%, rgba(248, 216, 168, 0.18), transparent 24%),
    radial-gradient(circle at 18% 22%, rgba(232, 188, 120, 0.12), transparent 18%),
    radial-gradient(circle at 82% 18%, rgba(255, 236, 200, 0.1), transparent 20%),
    linear-gradient(180deg, #2a0018 0%, #17000f 52%, #100008 100%);
  overflow: hidden;
}

.landing-page .site-shell {
  overflow: visible;
}

.landing-page .site-footer {
  display: none;
}

.landing-page main {
  min-height: 100vh;
  min-height: 100dvh;
}

.deck-scene {
  contain: layout paint;
  isolation: isolate;
  inset: 0;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  position: fixed;
  padding-top: calc(5.5rem + env(safe-area-inset-top, 0px));
}

.deck-scene::before,
.deck-scene::after {
  content: "";
  position: absolute;
  inset: -10%;
  pointer-events: none;
}

.deck-scene::before {
  background:
    radial-gradient(circle at 28% 26%, rgba(255, 236, 200, 0.16), transparent 14%),
    radial-gradient(circle at 62% 36%, rgba(232, 188, 120, 0.13), transparent 18%),
    radial-gradient(circle at 44% 72%, rgba(248, 216, 168, 0.1), transparent 20%);
  filter: blur(22px) saturate(1.1);
  animation: deck-aurora 18s ease-in-out infinite alternate;
  z-index: 0;
}

.deck-scene::after {
  background:
    linear-gradient(120deg, rgba(255, 236, 200, 0.01), transparent 28%, rgba(232, 188, 120, 0.03) 54%, transparent 72%, rgba(255, 236, 200, 0.02)),
    linear-gradient(180deg, rgba(58, 0, 36, 0.22), rgba(16, 0, 8, 0.08) 44%, rgba(16, 0, 8, 0.24) 100%),
    radial-gradient(circle at center, transparent 42%, rgba(0, 0, 0, 0.16) 100%);
  z-index: 0;
}

.deck-field {
  display: block;
  inset: 0;
  padding: clamp(0.9rem, 1.8vw, 1.6rem);
  position: absolute;
  z-index: 2;
  --deck-card-size: clamp(3.8rem, 4.8vw, 5.2rem);
  --deck-gap: clamp(0.72rem, 1.15vw, 1.05rem);
}

.deck-row {
  display: flex;
  gap: var(--deck-gap);
  left: -12vw;
  position: absolute;
  top: calc(var(--row-top, 50) * 1%);
  width: max-content;
  opacity: 0.98;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  contain: layout paint;
}

.deck-row--even {
  align-items: start;
}

.deck-row--odd {
  align-items: end;
  opacity: 0.9;
  margin-left: calc((var(--deck-card-size) + var(--deck-gap)) / -2);
}

.deck-card {
  aspect-ratio: 0.72;
  flex: 0 0 auto;
  min-width: var(--deck-card-size);
  width: var(--deck-card-size);
  border-radius: 0.6rem;
  border: 1px solid rgba(255, 248, 224, 0.72);
  box-shadow:
    0 0.85rem 1.8rem rgba(0, 0, 0, 0.22);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 0.45rem 0.42rem 0.38rem;
  position: relative;
  backdrop-filter: blur(8px) saturate(1.2);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.38), rgba(255, 236, 200, 0.14));
  filter: saturate(1.08) brightness(1.03);
  opacity: 0.72;
}

.deck-card:hover {
  box-shadow:
    0 1rem 2rem rgba(0, 0, 0, 0.28);
  filter: saturate(1.22) brightness(1.08);
  opacity: 0.9;
  transform: translateY(-0.35rem);
  z-index: 4;
}

.deck-card::before {
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.46), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 34%);
  content: "";
  inset: 0;
  opacity: 0.95;
  position: absolute;
}

.deck-card::after {
  content: "";
  position: absolute;
}

.deck-card__rank,
.deck-card__symbol {
  position: relative;
  z-index: 1;
}

.deck-card__rank {
  font-family: "Cormorant Garamond", serif;
  font-size: calc(var(--deck-card-size) * 0.28);
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}

.deck-card__symbol {
  align-self: center;
  font-family: "Cormorant Garamond", serif;
  font-size: calc(var(--deck-card-size) * 0.38);
  font-weight: 700;
  line-height: 1;
  margin-top: auto;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.28);
}

.deck-card--spade {
  background: linear-gradient(180deg, rgba(255, 245, 220, 0.56) 0%, rgba(232, 188, 120, 0.3) 100%);
}

.deck-card--heart {
  background: linear-gradient(180deg, rgba(255, 241, 208, 0.56) 0%, rgba(248, 216, 168, 0.3) 100%);
}

.deck-card--diamond {
  background: linear-gradient(180deg, rgba(255, 247, 226, 0.56) 0%, rgba(235, 201, 119, 0.3) 100%);
}

.deck-card--club {
  background: linear-gradient(180deg, rgba(255, 243, 214, 0.56) 0%, rgba(240, 205, 140, 0.3) 100%);
}

.deck-card--spade .deck-card__symbol,
.deck-card--spade .deck-card__rank,
.deck-card--club .deck-card__symbol,
.deck-card--club .deck-card__rank {
  color: var(--champagne);
}

.deck-card--heart .deck-card__symbol,
.deck-card--heart .deck-card__rank,
.deck-card--diamond .deck-card__symbol,
.deck-card--diamond .deck-card__rank {
  color: var(--gold-light);
}

.deck-overlay {
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  z-index: 3;
  contain: layout paint;
}

.bridge-word {
  color: rgba(255, 236, 200, 0.18);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4rem, 9vw, 9rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  position: absolute;
  text-shadow: 0 1.4rem 4rem rgba(232, 188, 120, 0.16);
  transform: translate3d(-120%, 0, 0);
  white-space: nowrap;
}

.bridge-word--one {
  animation: bridge-word-flow 42s linear infinite;
  top: 18%;
}

.bridge-word--two {
  animation: bridge-word-flow 48s linear infinite;
  animation-delay: 14s;
  top: 48%;
}

.bridge-word--three {
  animation: bridge-word-flow 54s linear infinite;
  animation-delay: 26s;
  top: 72%;
}

.deck-picture-placeholder {
  align-items: center;
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(rgba(16, 0, 8, 0.46), rgba(16, 0, 8, 0.46)),
    linear-gradient(135deg, rgba(255, 236, 200, 0.16), rgba(232, 188, 120, 0.06));
  border: 1px dashed rgba(232, 188, 120, 0.44);
  border-radius: 8px;
  box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.24);
  color: rgba(255, 236, 200, 0.72);
  display: flex;
  justify-content: center;
  min-height: 7rem;
  opacity: 0;
  padding: 0.8rem;
  position: absolute;
  transform: translate3d(-120%, 0, 0);
  width: clamp(10rem, 18vw, 16rem);
}

.deck-picture-placeholder span {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.deck-picture-placeholder--one {
  animation: bridge-picture-flow 46s linear infinite;
  animation-delay: 8s;
  top: 27%;
}

.deck-picture-placeholder--two {
  animation: bridge-picture-flow 52s linear infinite;
  animation-delay: 20s;
  top: 57%;
}

.deck-picture-placeholder--three {
  animation: bridge-picture-flow 58s linear infinite;
  animation-delay: 34s;
  top: 79%;
}

.deck-cta {
  align-items: center;
  backdrop-filter: blur(18px) saturate(1.2);
  background: linear-gradient(135deg, rgba(255, 244, 214, 0.9), rgba(232, 188, 120, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  box-shadow: 0 1.4rem 3rem rgba(0, 0, 0, 0.32);
  color: var(--ink);
  display: inline-flex;
  font-size: clamp(1rem, 2.8vw, 1.35rem);
  font-weight: 800;
  justify-content: center;
  left: 50%;
  letter-spacing: 0.02em;
  max-width: calc(100vw - 2.5rem);
  min-height: 3.25rem;
  padding: 0.9rem 1.6rem;
  position: fixed;
  text-align: center;
  text-decoration: none;
  top: 50%;
  touch-action: manipulation;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  z-index: 4;
}

.deck-cta:hover {
  transform: translate(-50%, -50%) scale(1.03);
}

@keyframes deck-aurora {
  0% {
    transform: translate3d(-1.5%, 0, 0) scale(1);
  }

  100% {
    transform: translate3d(1.2%, -1.4%, 0) scale(1.05);
  }
}

@keyframes bridge-word-flow {
  0%,
  12% {
    opacity: 0;
    transform: translate3d(-120%, 0, 0);
  }

  20%,
  76% {
    opacity: 1;
  }

  88%,
  100% {
    opacity: 0;
    transform: translate3d(120vw, 0, 0);
  }
}

@keyframes bridge-picture-flow {
  0%,
  16% {
    opacity: 0;
    transform: translate3d(-120%, 0, 0) rotate(-3deg);
  }

  24%,
  70% {
    opacity: 0.72;
  }

  86%,
  100% {
    opacity: 0;
    transform: translate3d(120vw, 0, 0) rotate(3deg);
  }
}

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

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(16, 0, 8, 0.78), rgba(16, 0, 8, 0.16));
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  left: 0;
  padding:
    calc(0.85rem + env(safe-area-inset-top, 0px))
    calc(1.25rem + env(safe-area-inset-right, 0px))
    0.85rem
    calc(1.25rem + env(safe-area-inset-left, 0px));
  position: fixed;
  top: 0;
  right: 0;
  z-index: 30;
}

.nav-toggle {
  align-items: center;
  background: rgba(255, 236, 200, 0.06);
  border: 1px solid rgba(232, 188, 120, 0.28);
  border-radius: 0.65rem;
  cursor: pointer;
  display: none;
  flex-direction: column;
  flex-shrink: 0;
  gap: 0.32rem;
  height: 2.75rem;
  justify-content: center;
  margin: 0;
  padding: 0;
  touch-action: manipulation;
  width: 2.75rem;
}

.nav-toggle__bar {
  background: var(--champagne);
  border-radius: 999px;
  display: block;
  height: 2px;
  transition: transform 0.22s ease, opacity 0.22s ease, width 0.22s ease;
  width: 1.25rem;
}

.site-header.is-nav-open .nav-toggle__bar:nth-child(1) {
  transform: translateY(0.42rem) rotate(45deg);
}

.site-header.is-nav-open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.site-header.is-nav-open .nav-toggle__bar:nth-child(3) {
  transform: translateY(-0.42rem) rotate(-45deg);
}

.brand {
  align-items: center;
  color: var(--champagne);
  display: inline-flex;
  gap: 0.78rem;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  height: 3.6rem;
  width: 3.35rem;
}

.brand-text {
  display: grid;
  gap: 0.08rem;
  line-height: 0.86;
}

.brand-text span {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.28rem;
  font-weight: 700;
}

.site-nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
}

.site-nav a {
  border: 1px solid transparent;
  border-radius: 999px;
  color: rgba(255, 236, 200, 0.74);
  font-size: 0.9rem;
  font-weight: 700;
  min-height: 2.75rem;
  padding: 0.7rem 0.95rem;
  text-decoration: none;
  touch-action: manipulation;
}

.site-nav a:hover,
.site-nav a.is-active {
  border-color: rgba(232, 188, 120, 0.36);
  color: var(--champagne);
  background: rgba(255, 236, 200, 0.06);
}

main {
  margin: 0 auto;
  padding-top: calc(5.5rem + env(safe-area-inset-top, 0px));
}

.hero-section,
.course-hero,
.statement-band,
.split-section,
.media-section,
.credentials-grid,
.course-grid,
.final-cta {
  margin: 0 auto;
  max-width: 1240px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.hero-section {
  align-items: center;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  min-height: calc(82vh - 4rem);
  overflow: visible;
  padding-bottom: 1rem;
  padding-top: 2rem;
  position: relative;
}

.hero-copy {
  max-width: 38rem;
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--gold);
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 1.45rem;
  text-transform: uppercase;
}

h1,
h2 {
  color: var(--champagne);
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.95;
}

h1 {
  font-size: 1.5rem;
  line-height: 1.1;
  margin: 0;
}

.hero-section h1,
.course-hero h1,
.about-hero h1,
.split-section__intro h1 {
  font-size: clamp(1.65rem, 4.2vw + 0.65rem, 2.5rem);
  line-height: 1.12;
  max-width: none;
  white-space: normal;
}

h2 {
  font-size: 4.25rem;
  margin: 0;
}

h3 {
  color: var(--champagne);
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0 0 0.4rem;
}

.lead {
  color: rgba(244, 224, 224, 0.9);
  font-size: 1.1rem;
  line-height: 1.8;
  margin: 1.5rem 0 0;
}

.description-text-pair {
  display: grid;
  gap: 0.8rem;
  max-width: 48rem;
}

.description-text-pair--center {
  justify-items: center;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.description-text-pair__name {
  color: var(--gold);
  font-size: clamp(0.88rem, 2.2vw + 0.4rem, 1rem);
  font-weight: 800;
  line-height: 1.35;
  margin: 0;
  text-transform: uppercase;
}

.description-text-pair__text {
  color: rgba(244, 224, 224, 0.82);
  font-size: clamp(1rem, 2.4vw + 0.5rem, 1.1rem);
  line-height: 1.75;
  margin: 0;
}

.hero-intro {
  margin-top: 1.5rem;
}

.hero-intro .lead {
  margin: 0;
}

.championship-placeholder {
  align-items: center;
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(rgba(16, 0, 8, 0.72), rgba(16, 0, 8, 0.72)),
    linear-gradient(135deg, rgba(255, 236, 200, 0.12), rgba(232, 188, 120, 0.04));
  border: 1px dashed rgba(232, 188, 120, 0.56);
  border-radius: 8px;
  color: rgba(255, 236, 200, 0.88);
  display: flex;
  justify-content: center;
  margin: 0;
  min-height: 24rem;
  overflow: hidden;
  padding: 1rem;
  position: relative;
  text-align: center;
}

.championship-placeholder--hero {
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.36);
  margin-left: auto;
  min-height: 24rem;
  width: min(42rem, 92%);
  z-index: 2;
}

.championship-placeholder::before {
  background:
    linear-gradient(90deg, transparent 0 44%, rgba(232, 188, 120, 0.2) 44% 56%, transparent 56%),
    linear-gradient(0deg, transparent 0 44%, rgba(232, 188, 120, 0.16) 44% 56%, transparent 56%);
  content: "";
  inset: 0;
  opacity: 0.42;
  position: absolute;
}

.championship-placeholder span {
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.35;
  position: relative;
  text-transform: uppercase;
}

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

.btn {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.95rem;
  font-weight: 800;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.85rem 1.25rem;
  text-decoration: none;
  touch-action: manipulation;
}

.btn-primary {
  background: linear-gradient(135deg, var(--champagne), var(--gold));
  color: var(--ink);
}

.btn-secondary {
  border: 1px solid rgba(232, 188, 120, 0.48);
  color: var(--champagne);
}

.landing-hero {
  isolation: isolate;
  min-height: calc(100vh - 4rem);
  overflow: hidden;
  padding-bottom: 2.5rem;
  padding-top: 2rem;
  position: relative;
}

.landing-hero__aurora,
.landing-hero__glow {
  position: absolute;
  pointer-events: none;
}

.landing-hero__aurora {
  inset: -12% -16% auto;
  background:
    radial-gradient(circle at 12% 18%, rgba(248, 216, 168, 0.32), transparent 18%),
    radial-gradient(circle at 28% 28%, rgba(155, 214, 255, 0.24), transparent 16%),
    radial-gradient(circle at 58% 24%, rgba(255, 160, 205, 0.24), transparent 18%),
    radial-gradient(circle at 76% 18%, rgba(232, 188, 120, 0.28), transparent 18%),
    radial-gradient(circle at 86% 42%, rgba(121, 255, 224, 0.2), transparent 16%),
    radial-gradient(circle at 36% 66%, rgba(255, 236, 200, 0.18), transparent 24%);
  filter: blur(8px) saturate(1.2);
  height: 42rem;
  opacity: 0.92;
  transform: rotate(-6deg);
  animation: aurora-flow 18s ease-in-out infinite alternate;
  z-index: 0;
}

.landing-hero__glow--one {
  background: radial-gradient(circle, rgba(232, 188, 120, 0.18), transparent 68%);
  height: 28rem;
  left: -8rem;
  top: 16rem;
  width: 28rem;
  animation: drift-soft 14s ease-in-out infinite alternate;
}

.landing-hero__glow--two {
  background: radial-gradient(circle, rgba(255, 236, 200, 0.12), transparent 66%);
  bottom: -8rem;
  height: 26rem;
  right: -5rem;
  width: 26rem;
  animation: drift-soft 18s ease-in-out infinite alternate-reverse;
}

.landing-hero__copy,
.landing-hero__visual,
.landing-more,
.landing-showcase {
  position: relative;
  z-index: 1;
}

.landing-hero {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  margin: 0 auto;
  max-width: 1240px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.landing-hero__copy {
  align-self: center;
  max-width: 44rem;
}

.landing-hero__copy h1 {
  font-size: clamp(3.5rem, 6vw, 6.5rem);
  line-height: 0.92;
  max-width: 12ch;
}

.landing-points {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
}

.landing-points div {
  background: rgba(255, 236, 200, 0.04);
  border: 1px solid rgba(232, 188, 120, 0.18);
  border-radius: 1rem;
  min-height: 9.2rem;
  padding: 1rem 1rem 1.1rem;
}

.landing-points strong,
.landing-feature-card h3,
.landing-showcase__copy h2 {
  color: var(--champagne);
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.6rem;
}

.landing-points span {
  color: rgba(244, 224, 224, 0.8);
  display: block;
  font-size: 0.96rem;
  line-height: 1.6;
}

.landing-hero__visual {
  align-self: center;
  min-height: 38rem;
  position: relative;
}

.landing-card {
  align-items: center;
  aspect-ratio: 0.72;
  border-radius: 1.2rem;
  color: var(--champagne);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  text-align: center;
  width: min(16rem, 34vw);
}

.landing-card::before {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.48), transparent 34%),
    linear-gradient(145deg, rgba(255, 236, 200, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(248, 216, 168, 0.36);
  border-radius: inherit;
  content: "";
  inset: 0;
  position: absolute;
  backdrop-filter: blur(12px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    0 1.6rem 3.5rem rgba(0, 0, 0, 0.35);
}

.landing-card::after {
  border-radius: inherit;
  content: "";
  inset: 0;
  position: absolute;
}

.landing-card__rank,
.landing-card__suit,
.landing-card small {
  position: relative;
  z-index: 1;
}

.landing-card__rank {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
}

.landing-card__suit {
  font-size: 4.3rem;
  line-height: 0.95;
  margin-top: 0.3rem;
}

.landing-card small {
  color: rgba(255, 236, 200, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin-top: 0.65rem;
  text-transform: uppercase;
}

.landing-card--spade {
  left: 3%;
  top: 3%;
  transform: rotate(-12deg);
}

.landing-card--heart {
  left: 34%;
  top: 1%;
  transform: rotate(7deg);
}

.landing-card--diamond {
  left: 8%;
  top: 44%;
  transform: rotate(11deg);
}

.landing-card--club {
  left: 49%;
  top: 37%;
  transform: rotate(-8deg);
}

.landing-hero__orbit {
  filter: drop-shadow(0 2rem 4rem rgba(0, 0, 0, 0.45));
  position: absolute;
  right: -4rem;
  top: 7%;
  width: min(34rem, 88%);
}

.landing-hero__table-card {
  bottom: 0;
  filter: drop-shadow(0 1.8rem 3rem rgba(0, 0, 0, 0.42));
  position: absolute;
  right: 2%;
  width: min(24rem, 58%);
}

.landing-more,
.landing-showcase {
  margin: 0 auto;
  max-width: 1240px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.landing-more {
  padding-bottom: 3.8rem;
  padding-top: 1rem;
}

.landing-section-heading {
  max-width: 56rem;
}

.landing-section-heading h2,
.landing-showcase__copy h2 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
}

.landing-feature-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
}

.landing-feature-card {
  background:
    linear-gradient(180deg, rgba(255, 236, 200, 0.06), rgba(255, 236, 200, 0.025));
  border: 1px solid rgba(232, 188, 120, 0.22);
  border-radius: 1rem;
  min-height: 17rem;
  padding: 1.4rem;
}

.landing-feature-card__index {
  color: var(--gold);
  display: block;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin-bottom: 1rem;
}

.landing-feature-card p,
.landing-showcase__copy p {
  color: rgba(244, 224, 224, 0.82);
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0;
}

.landing-showcase {
  align-items: center;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  padding-bottom: 4.5rem;
  padding-top: 2.5rem;
}

.landing-showcase__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mini-suit {
  align-items: center;
  background: rgba(255, 236, 200, 0.045);
  border: 1px solid rgba(232, 188, 120, 0.2);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 13rem;
  position: relative;
}

.mini-suit span {
  font-family: "Cormorant Garamond", serif;
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1;
}

.mini-suit small {
  color: rgba(255, 236, 200, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin-top: 0.4rem;
  text-transform: uppercase;
}

.mini-suit--heart span,
.mini-suit--diamond span {
  color: var(--gold-light);
}

.mini-suit--spade span,
.mini-suit--club span {
  color: var(--champagne);
}

@keyframes aurora-flow {
  0% {
    transform: translate3d(-1.2%, 0, 0) rotate(-6deg) scale(1);
  }

  50% {
    transform: translate3d(1.4%, -1.2%, 0) rotate(-3deg) scale(1.04);
  }

  100% {
    transform: translate3d(-0.6%, 1%, 0) rotate(-8deg) scale(1.02);
  }
}

@keyframes drift-soft {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(0, -18px, 0);
  }
}

.hero-art {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  min-height: 34rem;
  overflow: visible;
  position: static;
  width: 100%;
}

.hero-orbit,
.portrait-orbit {
  filter: drop-shadow(0 3rem 4rem rgba(0, 0, 0, 0.45));
  max-width: none;
  pointer-events: none;
  position: absolute;
  right: calc((100vw - 100%) / -2);
  top: calc(-5.5rem - 2rem - env(safe-area-inset-top, 0px));
  width: min(58rem, 54vw);
  z-index: 1;
}

.statement-band {
  padding-bottom: 3.2rem;
  padding-top: 1.6rem;
  text-align: center;
}

.video-placeholder {
  align-items: center;
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(rgba(16, 0, 8, 0.72), rgba(16, 0, 8, 0.72)),
    linear-gradient(135deg, rgba(255, 236, 200, 0.12), rgba(232, 188, 120, 0.04));
  border: 1px dashed rgba(232, 188, 120, 0.56);
  border-radius: 8px;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.28);
  color: rgba(255, 236, 200, 0.88);
  display: flex;
  justify-content: center;
  margin: 2rem auto 0;
  min-height: 24rem;
  overflow: hidden;
  padding: 1rem;
  position: relative;
  text-align: center;
  width: min(42rem, 92%);
}

.video-placeholder::before {
  background:
    linear-gradient(90deg, transparent 0 44%, rgba(232, 188, 120, 0.2) 44% 56%, transparent 56%),
    linear-gradient(0deg, transparent 0 44%, rgba(232, 188, 120, 0.16) 44% 56%, transparent 56%);
  content: "";
  inset: 0;
  opacity: 0.42;
  position: absolute;
}

.video-placeholder::after {
  border-color: transparent transparent transparent rgba(255, 236, 200, 0.88);
  border-style: solid;
  border-width: 1.1rem 0 1.1rem 1.75rem;
  content: "";
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-35%, -50%);
}

.video-placeholder span {
  bottom: 1.4rem;
  font-size: 0.92rem;
  font-weight: 800;
  left: 50%;
  line-height: 1.35;
  position: absolute;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.video-placeholder--inline {
  margin: 0;
  min-height: 28rem;
  width: 100%;
}

.split-section {
  display: grid;
  gap: 2.2rem;
  padding-bottom: 4rem;
  padding-top: 4rem;
}

.split-section__intro {
  max-width: 48rem;
}

.split-section__intro + .text-panel {
  margin-top: 2rem;
}

.split-section__content {
  align-items: start;
  display: grid;
  gap: 3.5rem;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.approach-section {
  align-items: center;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  min-height: auto;
}

.section-picture-placeholder {
  align-items: center;
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(rgba(16, 0, 8, 0.72), rgba(16, 0, 8, 0.72)),
    linear-gradient(135deg, rgba(255, 236, 200, 0.12), rgba(232, 188, 120, 0.04));
  border: 1px dashed rgba(232, 188, 120, 0.56);
  border-radius: 8px;
  color: rgba(255, 236, 200, 0.88);
  display: flex;
  justify-content: center;
  margin: 0;
  min-height: 24rem;
  overflow: hidden;
  padding: 1rem;
  position: relative;
  text-align: center;
  width: 100%;
}

.section-picture-placeholder::before {
  background:
    linear-gradient(90deg, transparent 0 44%, rgba(232, 188, 120, 0.2) 44% 56%, transparent 56%),
    linear-gradient(0deg, transparent 0 44%, rgba(232, 188, 120, 0.16) 44% 56%, transparent 56%);
  content: "";
  inset: 0;
  opacity: 0.42;
  position: absolute;
}

.feature-list {
  display: grid;
  gap: 1.2rem;
}

.feature-list article {
  align-items: flex-start;
  border-top: 1px solid rgba(232, 188, 120, 0.22);
  display: grid;
  gap: 1rem;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  padding-top: 1.2rem;
}

.feature-list span {
  align-items: center;
  border: 1px solid rgba(232, 188, 120, 0.7);
  border-radius: 999px;
  color: var(--champagne);
  display: inline-flex;
  font-size: 0.85rem;
  font-weight: 800;
  height: 2rem;
  justify-content: center;
  width: 2rem;
}

.feature-list p,
.text-panel p,
.course-grid p,
.credentials-grid p,
.media-section .gold-bullets p,
.final-cta p {
  color: rgba(244, 224, 224, 0.82);
  font-size: 1.1rem;
  line-height: 1.8;
  margin: 0;
}

.media-section {
  align-items: center;
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  padding-bottom: 4.4rem;
  padding-top: 3rem;
}

.media-section.reverse {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
}

.media-section img {
  filter: drop-shadow(0 2rem 4rem rgba(0, 0, 0, 0.5));
  justify-self: center;
  max-height: 34rem;
  object-fit: contain;
}

.media-placeholder {
  align-items: center;
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(rgba(16, 0, 8, 0.72), rgba(16, 0, 8, 0.72)),
    linear-gradient(135deg, rgba(255, 236, 200, 0.12), rgba(232, 188, 120, 0.04));
  border: 1px dashed rgba(232, 188, 120, 0.56);
  border-radius: 8px;
  color: rgba(255, 236, 200, 0.88);
  display: flex;
  justify-content: center;
  margin: 0;
  min-height: 24rem;
  overflow: hidden;
  padding: 1rem;
  position: relative;
  text-align: center;
  width: 100%;
}

.media-placeholder::before {
  background:
    linear-gradient(90deg, transparent 0 44%, rgba(232, 188, 120, 0.2) 44% 56%, transparent 56%),
    linear-gradient(0deg, transparent 0 44%, rgba(232, 188, 120, 0.16) 44% 56%, transparent 56%);
  content: "";
  inset: 0;
  opacity: 0.42;
  position: absolute;
}

.media-placeholder span {
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.35;
  position: relative;
  text-transform: uppercase;
}

.about-hero {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  overflow: visible;
  position: relative;
}

.portrait-stage {
  align-self: end;
  align-items: center;
  display: flex;
  justify-content: flex-end;
  min-height: 38rem;
  overflow: visible;
  position: static;
  width: 100%;
}

.portrait-stage::before {
  background: radial-gradient(circle, rgba(232, 188, 120, 0.24), transparent 66%);
  content: "";
  inset: 14% 8%;
  position: absolute;
}

.portrait-stage > img:not(.portrait-orbit) {
  bottom: -4rem;
  filter: drop-shadow(0 2rem 3rem rgba(0, 0, 0, 0.45));
  max-height: 45rem;
  object-fit: contain;
  position: absolute;
  right: -2rem;
}

.portrait-orbit {
  bottom: auto;
  left: auto;
  max-height: none;
  object-fit: initial;
  transform: none;
}

.portrait-placeholder {
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.36);
  margin-left: auto;
  min-height: 34rem;
  width: min(42rem, 100%);
  z-index: 2;
}

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

.gold-bullets p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.8;
  margin: 0;
  padding-left: 1.5rem;
  position: relative;
}

.gold-bullets p::before {
  background: linear-gradient(180deg, var(--champagne), var(--gold));
  border-radius: 999px;
  content: "";
  height: 100%;
  left: 0;
  min-height: 2rem;
  position: absolute;
  top: 0;
  width: 0.42rem;
}

.text-panel {
  display: grid;
  gap: 1.2rem;
}

.credentials-grid,
.course-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-bottom: 4.5rem;
}

.credentials-grid article,
.course-grid article {
  background: rgba(255, 236, 200, 0.045);
  border: 1px solid rgba(232, 188, 120, 0.22);
  border-radius: 8px;
  min-height: 13rem;
  padding: 1.4rem;
}

.credentials-grid strong,
.course-grid h2 {
  color: var(--champagne);
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.05;
  margin: 0 0 0.8rem;
}

.course-grid span {
  color: var(--gold);
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.course-hero {
  align-items: center;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  min-height: calc(78vh - 4rem);
  overflow: visible;
  padding-bottom: 3rem;
  padding-top: 3rem;
  position: relative;
}

.course-art {
  justify-content: flex-end;
  overflow: visible;
  position: static;
}

.course-hero .hero-orbit {
  top: calc(-5.5rem - 3rem - env(safe-area-inset-top, 0px));
}

.course-date {
  align-items: center;
  aspect-ratio: 1;
  background:
    linear-gradient(180deg, rgba(16, 0, 8, 0.98), rgba(28, 2, 12, 0.96)) padding-box,
    linear-gradient(135deg, var(--champagne), var(--gold), var(--wine-bright)) border-box;
  border: 1px solid transparent;
  border-radius: 1.1rem;
  box-shadow:
    0 2rem 5rem rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 236, 200, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 5.4rem 1.5rem 3.5rem;
  position: relative;
  text-align: center;
  transform: translateX(2.4rem);
  width: min(23.5rem, 68%);
  z-index: 2;
}

.course-date::before {
  background: linear-gradient(135deg, rgba(255, 236, 200, 0.14), rgba(232, 188, 120, 0.22));
  border-bottom: 1px solid rgba(232, 188, 120, 0.36);
  content: "";
  height: 4.1rem;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.course-date::after {
  background:
    radial-gradient(circle, var(--champagne) 0 0.28rem, transparent 0.3rem),
    radial-gradient(circle, var(--champagne) 0 0.28rem, transparent 0.3rem);
  background-position: left center, right center;
  background-repeat: no-repeat;
  background-size: 1rem 1rem;
  content: "";
  height: 1rem;
  left: 2.8rem;
  opacity: 0.82;
  position: absolute;
  right: 2.8rem;
  top: 1.55rem;
}

.course-date__label {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 800;
  left: 0;
  letter-spacing: 0.14em;
  position: absolute;
  right: 0;
  top: 4.75rem;
  text-transform: uppercase;
}

.course-date__day {
  color: var(--champagne);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(6rem, 10vw, 9rem);
  font-weight: 700;
  line-height: 0.78;
  margin-top: 1.5rem;
}

.course-date__month {
  color: var(--champagne);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 0.95;
  margin-top: 0.9rem;
}

.final-cta {
  border-top: 1px solid rgba(232, 188, 120, 0.22);
  padding-bottom: 4.5rem;
  padding-top: 4rem;
  text-align: center;
}

.final-cta h2,
.final-cta p {
  margin-left: auto;
  margin-right: auto;
  max-width: 48rem;
}

.final-cta p {
  margin-top: 1.1rem;
}

.final-cta .btn {
  margin-top: 2rem;
}

.site-footer {
  align-items: center;
  border-top: 1px solid rgba(232, 188, 120, 0.18);
  color: rgba(244, 224, 224, 0.72);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1240px;
  padding: 2rem 1.5rem 2.4rem;
}

.site-footer div {
  display: grid;
  gap: 0.2rem;
}

.site-footer strong {
  color: var(--champagne);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
}

.site-footer p,
.site-footer span {
  margin: 0;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: flex;
  }

  .site-header {
    align-items: center;
    flex-wrap: wrap;
  }

  .site-nav {
    display: none;
    flex-direction: column;
    gap: 0.35rem;
    justify-content: flex-start;
    order: 3;
    padding-bottom: 0.35rem;
    width: 100%;
  }

  .site-header.is-nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    border-radius: 0.75rem;
    padding: 0.85rem 1rem;
    width: 100%;
  }

  body.nav-open {
    overflow: hidden;
  }

  .hero-section,
  .about-hero,
  .course-hero,
  .split-section,
  .media-section,
  .landing-hero,
  .landing-showcase,
  .media-section.reverse,
  .approach-section {
    grid-template-columns: 1fr;
  }

  .hero-section,
  .course-hero {
    gap: 2rem;
    min-height: auto;
    padding-top: 2rem;
  }

  .hero-art,
  .portrait-stage,
  .course-art {
    justify-content: center;
    min-height: 24rem;
    overflow: hidden;
    position: relative;
  }

  .hero-section,
  .about-hero,
  .course-hero {
    overflow: hidden;
  }

  .hero-orbit,
  .portrait-stage .portrait-orbit {
    left: 50%;
    right: auto;
    top: -2rem;
    transform: translateX(-50%);
    width: min(36rem, 140%);
  }

  .championship-placeholder--hero {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }

  .landing-hero {
    min-height: auto;
    padding-top: 2rem;
  }

  .landing-hero__visual {
    min-height: 32rem;
  }

  .landing-card--spade {
    left: 0;
  }

  .landing-card--heart {
    left: 33%;
  }

  .landing-card--diamond {
    left: 6%;
  }

  .landing-card--club {
    left: 52%;
  }

  .landing-hero__orbit {
    right: -2rem;
    top: 10%;
    width: min(30rem, 92%);
  }

  .landing-hero__table-card {
    right: 2%;
    width: min(22rem, 62%);
  }

  .landing-points,
  .landing-feature-grid,
  .landing-showcase__grid {
    grid-template-columns: 1fr;
  }

  .split-section__content {
    gap: 2.5rem;
    grid-template-columns: 1fr;
  }

  .approach-section .video-placeholder--inline {
    order: 2;
  }

  .portrait-placeholder {
    margin-left: auto;
    margin-right: auto;
    min-height: 26rem;
    width: 100%;
  }

  .portrait-stage > img:not(.portrait-orbit) {
    bottom: -2rem;
    left: 50%;
    max-height: 36rem;
    right: auto;
    transform: translateX(-50%);
  }

  .credentials-grid,
  .course-grid {
    grid-template-columns: 1fr;
  }

  .course-date {
    margin-left: auto;
    margin-right: auto;
    max-width: 18rem;
    transform: translateX(0);
  }

  .media-section {
    gap: 2rem;
  }

  h2 {
    font-size: clamp(2.4rem, 8vw, 3.45rem);
  }

  .bridge-word {
    font-size: clamp(2.8rem, 12vw, 6rem);
  }

  .deck-picture-placeholder {
    width: clamp(8rem, 28vw, 14rem);
  }

  .deck-field {
    --deck-card-size: clamp(3.15rem, 6.8vw, 4.1rem);
    --deck-gap: 0.52rem;
    padding: 0;
  }

  .deck-row {
    gap: var(--deck-gap);
    left: calc(var(--deck-gap) * -1);
    top: calc(var(--row-top, 50) * 1%);
  }

  .deck-row--odd {
    margin-left: calc((var(--deck-card-size) + var(--deck-gap)) / -2);
  }

  .deck-card {
    border-radius: 0.52rem;
    padding: 0.4rem 0.36rem 0.34rem;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 0.75rem;
    padding:
      calc(0.75rem + env(safe-area-inset-top, 0px))
      calc(1rem + env(safe-area-inset-right, 0px))
      0.75rem
      calc(1rem + env(safe-area-inset-left, 0px));
  }

  main {
    padding-top: calc(5rem + env(safe-area-inset-top, 0px));
  }

  .deck-scene {
    padding-top: calc(5rem + env(safe-area-inset-top, 0px));
  }

  .hero-section,
  .course-hero,
  .statement-band,
  .split-section,
  .media-section,
  .credentials-grid,
  .course-grid,
  .final-cta,
  .site-footer {
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
  }

  .brand {
    gap: 0.65rem;
    min-width: 0;
  }

  .brand-mark {
    height: 3rem;
    width: 2.8rem;
  }

  .brand-text span {
    font-size: clamp(0.95rem, 3.8vw, 1.08rem);
  }

  .eyebrow {
    font-size: 0.88rem;
    line-height: 1.35;
    margin-bottom: 1rem;
  }

  h1 {
    font-size: clamp(1.55rem, 5.5vw + 0.4rem, 1.85rem);
    line-height: 1.12;
  }

  .hero-section h1,
  .course-hero h1,
  .about-hero h1,
  .split-section__intro h1 {
    font-size: clamp(1.55rem, 5.5vw + 0.4rem, 1.85rem);
    line-height: 1.12;
  }

  .landing-hero__copy h1 {
    font-size: clamp(2.4rem, 10vw, 3rem);
    line-height: 0.98;
    max-width: none;
  }

  h2 {
    font-size: clamp(2rem, 9vw, 3rem);
    line-height: 1;
  }

  .lead {
    font-size: clamp(1rem, 2.8vw + 0.45rem, 1.1rem);
    line-height: 1.7;
  }

  .championship-placeholder,
  .video-placeholder,
  .section-picture-placeholder,
  .media-placeholder {
    min-height: 16rem;
  }

  .championship-placeholder--hero {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .hero-art,
  .portrait-stage,
  .course-art {
    min-height: 20rem;
  }

  .hero-orbit,
  .portrait-stage .portrait-orbit {
    top: -1rem;
    width: min(28rem, 155%);
  }

  .landing-hero {
    padding-bottom: 2rem;
    padding-top: 1.75rem;
  }

  .landing-hero__visual {
    min-height: 26rem;
  }

  .landing-card {
    width: min(11rem, 38vw);
  }

  .landing-card__rank {
    font-size: 2.7rem;
  }

  .landing-card__suit {
    font-size: 3.3rem;
  }

  .landing-card--heart {
    top: 4%;
  }

  .landing-card--club {
    top: 40%;
  }

  .landing-card--diamond {
    top: 48%;
  }

  .landing-hero__orbit {
    right: -1.5rem;
    width: min(22rem, 92%);
  }

  .landing-hero__table-card {
    width: min(16rem, 56%);
  }

  .statement-band,
  .split-section,
  .media-section,
  .landing-more,
  .landing-showcase,
  .credentials-grid,
  .course-grid,
  .final-cta {
    padding-bottom: 2.75rem;
    padding-top: 2.75rem;
  }

  .statement-band {
    padding-top: 1rem;
  }

  .video-placeholder {
    width: 100%;
  }

  .video-placeholder--inline {
    min-height: 18rem;
  }

  .feature-list article {
    gap: 0.85rem;
    grid-template-columns: 2.2rem 1fr;
  }

  .split-section__content {
    gap: 1.75rem;
  }

  .course-date {
    max-width: 15rem;
    padding-bottom: 2.4rem;
    padding-top: 4.6rem;
    transform: translateX(0);
    width: min(15rem, 78%);
  }

  .course-date__label {
    font-size: 0.75rem;
    top: 4.25rem;
  }

  .course-date__day {
    font-size: clamp(4.5rem, 18vw, 5.8rem);
  }

  .course-date__month {
    font-size: clamp(1.75rem, 7vw, 2.2rem);
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.75rem;
    padding-bottom: calc(2rem + env(safe-area-inset-bottom, 0px));
  }

  .deck-field {
    --deck-card-size: clamp(3.15rem, 14vw, 3.85rem);
    --deck-gap: 0.36rem;
    padding: 0;
  }

  .deck-row {
    gap: var(--deck-gap);
    left: calc(var(--deck-gap) * -1);
    top: calc(var(--row-top, 50) * 1%);
  }

  .deck-row--even,
  .deck-row--odd {
    align-items: center;
  }

  .deck-row--odd {
    margin-left: calc((var(--deck-card-size) + var(--deck-gap)) / -2);
  }

  .deck-card {
    border-radius: 0.5rem;
    opacity: 0.78;
    padding: 0.36rem 0.32rem 0.3rem;
  }

  .deck-card__rank {
    font-size: calc(var(--deck-card-size) * 0.3);
  }

  .deck-card__symbol {
    font-size: calc(var(--deck-card-size) * 0.42);
  }

  .deck-cta {
    font-size: clamp(0.95rem, 3.8vw, 1.1rem);
    min-height: 3rem;
    padding: 0.75rem 1.25rem;
    white-space: normal;
  }

  .bridge-word {
    font-size: clamp(2.2rem, 14vw, 4.5rem);
    letter-spacing: 0.04em;
  }

  .deck-picture-placeholder {
    min-height: 5.5rem;
    width: clamp(7rem, 34vw, 11rem);
  }

  .gold-bullets p {
    font-size: clamp(1rem, 2.8vw + 0.45rem, 1.08rem);
  }

  .credentials-grid article,
  .course-grid article {
    min-height: auto;
    padding: 1.2rem;
  }
}

@media (max-width: 380px) {
  .brand-text span {
    font-size: 0.9rem;
  }

  .deck-cta {
    max-width: calc(100vw - 1.75rem);
    padding-inline: 1rem;
  }
}

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

  .deck-row {
    will-change: auto;
  }
}
