@font-face {
  font-family: "Cinzel";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("assets/fonts/Cinzel-VariableFont_wght.ttf") format("truetype");
}

@font-face {
  font-family: "Marcellus";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/Marcellus-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "Mulish";
  font-style: normal;
  font-weight: 200 1000;
  font-display: swap;
  src: url("assets/fonts/Mulish-VariableFont_wght.ttf") format("truetype");
}

@font-face {
  font-family: "Mulish";
  font-style: italic;
  font-weight: 200 1000;
  font-display: swap;
  src: url("assets/fonts/Mulish-Italic-VariableFont_wght.ttf") format("truetype");
}

:root {
  --gold: #d4af37;
  --gold-hover: #c4a030;
  --gold-soft: rgba(212, 175, 55, 0.42);
  --navy-950: #061a2e;
  --navy-900: #0a2540;
  --navy-800: #102f50;
  --navy-700: #1e3a5f;
  --paper: #fafaf8;
  --white: #ffffff;
  --ink: #1a1a1a;
  --ink-soft: #2c2a28;
  --maroon: #642422;
  --shadow: 0 8px 40px rgba(10, 37, 64, 0.14);
  --font-display: "Cinzel", Georgia, serif;
  --font-heading: "Marcellus", Georgia, serif;
  --font-body: "Mulish", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}

body[dir="rtl"] {
  font-family: "Mulish", Tahoma, Arial, sans-serif;
}

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

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

.container {
  width: min(100% - 48px, 1100px);
  margin: 0 auto;
}

.wide {
  width: min(100% - 48px, 1180px);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  width: 100%;
  padding: 16px 28px 12px;
  color: var(--white);
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(6, 26, 46, 0.88);
  box-shadow: 0 2px 16px rgba(10, 37, 64, 0.18);
  backdrop-filter: blur(16px);
}

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

.brand img {
  width: 80px;
  height: auto;
  flex: 0 0 auto;
}

.brand span {
  background: linear-gradient(180deg, #fff3b1 0%, #d4af37 42%, #9f741d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 2.2px;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  position: relative;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.main-nav a.is-active {
  color: var(--gold);
}

.main-nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.language-select {
  display: flex;
  align-items: center;
}

.lang-current {
  display: none;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.72);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.4px;
  padding: 0 2px 3px;
  cursor: pointer;
  text-transform: uppercase;
  white-space: nowrap;
}

.lang-current:focus-visible {
  border-bottom-color: var(--gold);
  outline: none;
}

.lang-flag {
  font-size: 14px;
  line-height: 1;
}

.lang-chevron {
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
  color: rgba(212, 175, 55, 0.72);
  margin-left: 1px;
}

.lang-dropdown {
  display: flex;
  position: static;
  align-items: center;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  min-width: 0;
}

.lang-dropdown.open {
  display: flex;
}

.lang-dropdown li {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.7px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
  transition: color 0.2s ease, opacity 0.2s ease;
  white-space: nowrap;
}

.lang-dropdown li:hover {
  color: rgba(255, 255, 255, 0.86);
}

.lang-dropdown li.is-active {
  color: var(--white);
  font-weight: 900;
}

.club-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 24px;
  border: 1px solid rgba(212, 175, 55, 0.74);
  border-radius: 999px;
  background: rgba(6, 26, 46, 0.08);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  box-shadow: none;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.join-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  border: 1px solid rgba(212, 175, 55, 0.9);
  border-radius: 999px;
  background: linear-gradient(180deg, #e8c752 0%, #d5ad37 58%, #c59727 100%);
  color: var(--navy-900);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}

.join-nav-link:hover,
.join-nav-link:focus-visible {
  border-color: var(--gold);
  color: var(--navy-900);
  box-shadow: 0 9px 24px rgba(212, 175, 55, 0.28);
  transform: translateY(-1px);
}

.club-pill:hover,
.club-pill:focus-visible {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--gold);
  color: #f5da75;
}

.hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 780px;
  overflow: hidden;
  background:
    linear-gradient(145deg, #061a2e 0%, #0a2540 48%, #14395e 100%);
  color: var(--white);
  isolation: isolate;
}

.aurora-background {
  position: absolute;
  inset: -18px;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.aurora-background::before,
.aurora-background::after {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      100deg,
      rgba(6, 26, 46, 0.96) 0%,
      rgba(6, 26, 46, 0.96) 7%,
      transparent 10%,
      transparent 12%,
      rgba(6, 26, 46, 0.96) 16%
    ),
    repeating-linear-gradient(
      100deg,
      rgba(10, 37, 64, 0.95) 10%,
      rgba(30, 58, 95, 0.9) 15%,
      rgba(92, 166, 218, 0.58) 20%,
      rgba(140, 207, 238, 0.38) 25%,
      rgba(31, 98, 164, 0.72) 30%
    );
  background-position: 50% 50%, 50% 50%;
  background-size: 300% 300%, 210% 210%;
  content: "";
  filter: blur(12px);
  opacity: 0.78;
  transform: translateZ(0);
  will-change: background-position, transform;
}

.aurora-background::before {
  animation: auroraFlow 14s ease-in-out infinite alternate;
  mask-image: radial-gradient(ellipse at 50% 42%, black 16%, transparent 72%);
}

.aurora-background::after {
  background-size: 220% 220%, 150% 150%;
  mix-blend-mode: screen;
  opacity: 0.28;
  animation: auroraDrift 18s ease-in-out infinite alternate;
  mask-image: radial-gradient(ellipse at 70% 22%, black 8%, transparent 64%);
}

@keyframes auroraFlow {
  0% {
    background-position: 42% 50%, 40% 46%;
    transform: rotate(-2deg) scale(1.05);
  }
  100% {
    background-position: 64% 42%, 68% 54%;
    transform: rotate(2deg) scale(1.12);
  }
}

@keyframes auroraDrift {
  0% {
    background-position: 55% 48%, 60% 44%;
    transform: translate3d(-3%, 0, 0) scale(1.04);
  }
  100% {
    background-position: 38% 56%, 35% 62%;
    transform: translate3d(3%, -2%, 0) scale(1.1);
  }
}

@keyframes titleShimmer {
  0%,
  25% {
    background-position: -50% 50%, 0% 50%;
  }
  75% {
    background-position: 100% 50%, 0% 50%;
    animation-timing-function: steps(1, end);
  }
  100% {
    background-position: -50% 50%, 0% 50%;
  }
}

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

@media (prefers-reduced-motion: reduce) {
  .aurora-background::before,
  .aurora-background::after,
  .hero .hero-kicker,
  .hero h1,
  .hero .title-rule,
  .hero p,
  .hero .primary-cta {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .events-testimonials-carousel {
    scroll-behavior: auto;
  }
}


.hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 32px, 680px);
  margin-top: 72px;
  text-align: center;
}

.hero .hero-kicker {
  width: auto;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 5px;
  line-height: 1.2;
  text-transform: uppercase;
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.hero h1 {
  margin: 0;
  background:
    linear-gradient(90deg, transparent 0%, transparent 38%, rgba(255, 252, 220, 0.55) 50%, transparent 62%, transparent 100%),
    linear-gradient(180deg, #fff3b1 0%, #d4af37 42%, #9f741d 100%);
  background-clip: text;
  background-position: -50% 50%, 0% 50%;
  background-size: 300% 100%, 100% 100%;
  font-family: var(--font-display);
  font-size: clamp(42px, 6.1vw, 66px);
  font-weight: 500;
  letter-spacing: 5px;
  line-height: 1.26;
  filter: drop-shadow(0 3px 3px rgba(30, 10, 0, 0.55));
  text-transform: uppercase;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: heroFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both, titleShimmer 6.5s linear 1.6s infinite;
}

.title-rule,
.small-rule {
  position: relative;
  width: 260px;
  height: 1px;
  margin: 20px auto 18px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero .title-rule {
  animation: heroFadeUp 0.7s ease 0.95s both;
}

.hero .primary-cta {
  animation: heroFadeUp 0.8s ease 1.4s both;
}

.title-rule::after,
.small-rule::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border: 1px solid var(--gold);
  background: var(--navy-900);
  content: "";
  transform: translate(-50%, -50%) rotate(45deg);
}

.hero p {
  width: min(100%, 440px);
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-heading);
  font-size: 22px;
  line-height: 1.24;
  animation: heroFadeUp 0.8s ease 1.1s both;
}

.primary-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 380px;
  min-height: 78px;
  margin-top: 30px;
  padding: 12px 20px;
  border: 1px solid rgba(255, 232, 157, 0.58);
  border-radius: 8px;
  background: linear-gradient(180deg, #e8c752 0%, #d5ad37 55%, #c59727 100%);
  color: var(--navy-900);
  font-family: var(--font-body);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.primary-cta::after {
  position: absolute;
  right: 22px;
  bottom: 0;
  left: 22px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
  content: "";
  opacity: 0;
  transition: opacity 0.3s ease;
}

.primary-cta:hover,
.primary-cta:focus-visible {
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
  transform: translateY(-2px);
}

.primary-cta:hover::after,
.primary-cta:focus-visible::after {
  opacity: 1;
}

.primary-cta strong,
.primary-cta small {
  display: block;
}

.primary-cta strong {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1.25;
  text-transform: uppercase;
  white-space: nowrap;
}

.primary-cta small {
  margin-top: 2px;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.7px;
  text-transform: none;
}

.primary-cta > span:first-child {
  text-align: center;
}


.chevron {
  position: absolute;
  right: 22px;
  font-family: var(--font-body);
  font-size: 36px;
  font-weight: 200;
  line-height: 1;
}


.path-section {
  padding: 44px 0 42px;
  background: var(--paper);
}

.section-heading h2,
.podcast-copy h2,
.guide-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-heading.centered {
  text-align: center;
}

.section-heading h2 {
  color: var(--maroon);
  font-size: 32px;
  letter-spacing: 3px;
}

.section-heading p {
  margin: 0;
  color: #55514f;
  font-size: 15px;
  line-height: 1.55;
}

.small-rule {
  width: 180px;
  margin: 14px auto 22px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.85), transparent);
}

.small-rule::after {
  width: 9px;
  height: 9px;
  background: var(--paper);
}

.small-rule.left {
  margin-right: 0;
  margin-left: 0;
}

.small-rule.left::after {
  background: inherit;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 44px;
  margin-top: 42px;
  text-align: center;
}

.pillars article {
  min-width: 0;
}

.pillars h3 {
  margin: 20px 0 8px;
  color: var(--maroon);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.8px;
  line-height: 1.2;
  text-transform: uppercase;
}

.pillars p {
  margin: 0;
  color: #5d5754;
  font-size: 14px;
  line-height: 1.42;
}


.pillar-icon-img {
  width: 56px;
  height: 68px;
  margin: 0 auto;
  object-fit: contain;
}


.mantra {
  position: relative;
  margin: 40px 0 0;
  padding-top: 28px;
  color: var(--maroon);
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 500;
  letter-spacing: 1.3px;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
}

.mantra::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(520px, 72%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.86), transparent);
  content: "";
  transform: translateX(-50%);
}

.guide-section {
  position: relative;
  overflow: hidden;
  background-color: #061c33;
  background-image: url('assets/images/guide-bg-jls.jpg');
  background-size: cover;
  background-position: left center;
  color: var(--white);
}


.guide-grid {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 560px;
}

.guide-copy {
  position: relative;
  z-index: 2;
  width: 50%;
  max-width: 520px;
  min-width: 0;
  padding: 52px 0 52px 0;
  margin-right: 4%;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 8px;
  line-height: 1.2;
  text-transform: uppercase;
}

.guide-copy h2 {
  color: var(--white);
  font-size: 43px;
  letter-spacing: 4px;
}

.guide-copy p:not(.eyebrow) {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  line-height: 1.65;
}

.outline-cta,
.light-outline-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-width: 300px;
  min-height: 56px;
  margin-top: 18px;
  padding: 0 22px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.outline-cta:hover,
.outline-cta:focus-visible,
.light-outline-cta:hover,
.light-outline-cta:focus-visible {
  background: var(--gold);
  color: var(--navy-900);
  transform: translateY(-2px);
}

.filled-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 300px;
  min-height: 56px;
  margin-top: 18px;
  padding: 0 46px 0 22px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  background: var(--gold);
  color: var(--navy-900);
  font-family: var(--font-body);
  transition: background 0.3s ease, color 0.3s ease;
}

.filled-cta:hover,
.filled-cta:focus-visible {
  background: var(--gold-hover);
  color: var(--navy-900);
}

.filled-cta strong,
.filled-cta small {
  display: block;
}

.filled-cta strong {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1.25;
  text-transform: uppercase;
  white-space: nowrap;
}

.filled-cta small {
  margin-top: 2px;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.7px;
  text-transform: none;
}

.filled-cta > span:first-child {
  text-align: center;
}


.podcast-section {
  padding: 52px 0 52px;
  background: var(--paper);
}

.home-news-section {
  padding: 66px 0;
  background: linear-gradient(180deg, #f4f0e8 0%, var(--paper) 100%);
}

.home-news-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 34px;
}

.home-news-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 390px);
  column-gap: 52px;
  align-items: center;
}

.home-news-copy > :not(.home-news-media) {
  grid-column: 1;
}

.home-news-copy h2 {
  margin: 0;
  color: var(--maroon);
  font-family: var(--font-display);
  font-size: clamp(28px, 3.1vw, 40px);
  font-weight: 500;
  letter-spacing: 1.6px;
  line-height: 1.15;
}

.home-news-copy p:not(.eyebrow) {
  max-width: 680px;
  margin: 0 0 22px;
  color: #47413e;
  font-size: 16px;
  line-height: 1.7;
}

.home-news-subtitle {
  color: var(--gold-hover);
  font-family: var(--font-heading);
  font-size: 17px;
}

.home-news-workshop-description {
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 18px;
}

.home-news-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 760px;
  margin: 28px 0 8px;
  background: rgba(100, 36, 34, 0.16);
  border: 1px solid rgba(100, 36, 34, 0.16);
}

.home-news-meta.is-empty {
  display: none;
}

.home-news-meta div {
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.68);
}

.home-news-meta dt {
  margin: 0 0 7px;
  color: var(--gold-hover);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.home-news-meta dd {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 17px;
  line-height: 1.35;
}

.home-news-media {
  position: relative;
  display: block;
  grid-column: 2;
  grid-row: 1 / span 7;
  align-self: center;
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 22px 54px rgba(10, 37, 64, 0.2);
}

.home-news-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  transition: filter 0.3s ease;
}

.home-news-media-label {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(244, 240, 232, 0.94);
  color: var(--maroon);
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 1.6px;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(10, 37, 64, 0.16);
}

.home-news-media:hover img,
.home-news-media:focus-visible img {
  filter: brightness(1.03);
}

.news-cta {
  margin-top: 0;
}

.news-action-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 14px;
  margin-top: 18px;
}

.news-action-row .outline-cta,
.news-action-row .filled-cta {
  width: auto;
  height: 72px;
  min-width: 0;
  min-height: 0;
  margin-top: 0;
  box-sizing: border-box;
}

.podcast-grid {
  display: grid;
  grid-template-columns: 1fr 470px;
  align-items: center;
  gap: 72px;
}

.podcast-cover {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.eyebrow.gold {
  color: var(--gold-hover);
  letter-spacing: 8px;
}

.podcast-copy h2 {
  color: var(--maroon);
  font-size: 43px;
  letter-spacing: 4px;
}

.podcast-copy p:not(.eyebrow) {
  width: min(100%, 460px);
  margin: 0 0 17px;
  color: #47413e;
  font-size: 15px;
  line-height: 1.7;
}

.platforms {
  display: flex;
  flex-wrap: wrap;
  grid-column: 1;
  grid-row: 2;
  gap: 16px;
  margin-top: 28px;
}

.platform {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 36px;
  padding: 0 14px 0 10px;
  border-radius: 4px;
  background: #1b1b1b;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
}

.platform img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.light-outline-cta {
  color: var(--gold-hover);
  min-width: 275px;
  margin-top: 24px;
}

.podcast-cover img {
  width: 100%;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.final-cta {
  padding: 46px 0;
  background: linear-gradient(180deg, #09243f 0%, #061a2e 100%);
  color: var(--white);
}

.final-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 42px;
}

.final-cta h2 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 43px;
  font-weight: 500;
  letter-spacing: 4px;
  line-height: 1.2;
  text-transform: uppercase;
}

.final-cta p {
  width: min(100%, 560px);
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  line-height: 1.65;
}

.final-cta .eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 8px;
  line-height: 1.2;
}

.final-cta .small-rule {
  margin-top: 14px;
  margin-bottom: 18px;
}

.primary-cta.compact {
  min-width: 340px;
  min-height: 74px;
  margin-top: 0;
}

.primary-cta.compact strong {
  font-weight: 500;
}

.site-footer {
  background: linear-gradient(180deg, #071d33 0%, #061729 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.42);
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr;
  gap: 80px;
  padding: 28px 0 24px;
}

.footer-logo img {
  width: 112px;
}

.footer-logo span {
  font-size: 16px;
  letter-spacing: 1.5px;
}

.site-footer .footer-brand p {
  max-width: 420px;
  margin: 16px 0 30px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-heading);
  font-size: 13px;
  line-height: 1.3;
}

.site-footer h3 {
  margin: 0 0 12px;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.site-footer a,
.site-footer p {
  display: block;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.35;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--gold);
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-left: 0;
  padding-top: 2px;
}

.social {
  display: inline-block !important;
  color: rgba(255, 255, 255, 0.78) !important;
  font-family: var(--font-body);
  font-size: 13px !important;
  font-weight: 500;
  line-height: 1.35;
  text-decoration: underline;
  text-decoration-color: rgba(212, 175, 55, 0.68);
  text-underline-offset: 4px;
}

.site-footer > .copyright {
  display: block;
  position: relative;
  left: 50%;
  margin: 0;
  width: 100vw;
  padding: 12px 0 18px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  text-align: center;
  transform: translateX(-50%);
}

.site-footer > .copyright::before {
  display: block;
  width: min(100% - 48px, 960px);
  height: 1px;
  margin: 0 auto 12px;
  background: rgba(255, 255, 255, 0.08);
  content: "";
}

body[dir="rtl"] .main-nav,
body[dir="rtl"] .header-actions,
body[dir="rtl"] .brand {
  direction: rtl;
}

body[dir="rtl"] .small-rule.left {
  margin-right: 0;
  margin-left: auto;
}

body[dir="rtl"] .guide-grid {
  justify-content: flex-start;
}

body[dir="rtl"] .guide-copy {
  margin-right: 0;
  margin-left: 4%;
}

body[dir="rtl"] .about-hero-copy .title-rule {
  margin-right: 0;
  margin-left: auto;
}

@media (max-width: 1020px) {
  .guide-section {
    background-image: url('assets/images/guide-bg-jls-tablet.jpg');
    background-position: center center;
  }

  .site-header {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 14px 20px;
    text-align: center;
  }

  .brand,
  .main-nav,
  .header-actions {
    justify-content: center;
  }

  .brand img {
    width: 68px;
  }

  .brand span {
    font-size: 16px;
  }

  .main-nav {
    flex-wrap: wrap;
    gap: 14px 22px;
  }

  .hero {
    min-height: 820px;
    padding-top: 128px;
  }

  .pillars,
  .podcast-grid,
  .final-grid {
    grid-template-columns: 1fr 1fr;
  }

  .guide-copy {
    width: 52%;
    margin-right: 3%;
  }

  .podcast-grid {
    gap: 36px;
  }

}

@media (max-width: 880px) {
  .main-nav a {
    font-size: 11px;
    letter-spacing: 1.25px;
    line-height: 1.35;
  }
}

@media (max-width: 760px) {
  .container,
  .wide {
    width: min(100% - 32px, 1100px);
  }

  .site-header {
    position: absolute;
  }

  .brand {
    gap: 10px;
  }

  .brand img {
    width: 58px;
  }

  .brand span {
    font-size: 14px;
    letter-spacing: 1.35px;
  }

  .main-nav {
    gap: 14px 18px;
  }

  .main-nav a {
    font-size: 12px;
    line-height: 1.4;
    padding: 3px 1px;
  }

  .lang-dropdown {
    gap: 20px;
  }

  .lang-dropdown li {
    font-size: 12px;
    line-height: 1.35;
    padding: 4px 1px;
  }

  .club-pill {
    min-height: 40px;
    padding: 0 16px;
    font-size: 11px;
  }

  .hero {
    min-height: 760px;
    padding-top: 140px;
    padding-bottom: 40px;
  }

  .hero-content {
    margin-top: 24px;
  }

  .hero h1 {
    font-size: 40px;
    letter-spacing: 2.6px;
  }

  .hero p {
    font-size: 19px;
  }

  .hero .primary-cta {
    margin-top: 36px;
  }

  .primary-cta {
    grid-template-columns: 22px 1fr 18px;
    gap: 12px;
    min-width: 0;
    width: min(100%, 360px);
  }

  .path-section {
    padding: 40px 0;
  }

  .section-heading h2,
  .podcast-copy h2,
  .final-cta h2,
  .guide-copy h2 {
    font-size: 31px;
    letter-spacing: 2px;
  }

  .pillars {
    grid-template-columns: 1fr 1fr;
    gap: 34px 22px;
  }

  .mantra {
    font-size: 20px;
  }

  .podcast-grid,
  .home-news-grid,
  .final-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .home-news-grid {
    gap: 34px;
  }

  .home-news-copy {
    display: block;
  }

  .home-news-media {
    width: min(100%, 430px);
    margin: 24px auto 26px;
  }

  .home-news-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guide-section {
    background-image: url('assets/images/guide-bg-jls-mobile.jpg');
    background-position: center center;
  }

  .guide-grid {
    min-height: 480px;
  }

  .guide-copy {
    width: 58%;
    max-width: 58%;
    margin-right: 3%;
  }

  .guide-copy .eyebrow {
    font-size: 10px;
    letter-spacing: 5px;
  }

  .guide-copy p:not(.eyebrow) {
    font-size: 13px;
    line-height: 1.52;
    margin-bottom: 11px;
  }

  .guide-copy .outline-cta {
    min-width: 0;
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    font-size: 11px;
    letter-spacing: 0.7px;
  }


  .podcast-grid {
    gap: 34px;
  }

  .podcast-copy {
    text-align: center;
  }

  .podcast-copy p:not(.eyebrow) {
    margin-right: auto;
    margin-left: auto;
  }

  .home-news-copy .small-rule.left,
  .podcast-copy .small-rule.left,
  .final-cta .small-rule.left {
    margin-right: auto;
    margin-left: auto;
  }

  .podcast-cover,
  .podcast-grid > .platforms {
    grid-column: auto;
    grid-row: auto;
  }

  .platforms {
    justify-content: center;
    gap: 10px;
    margin: 0 auto;
  }

  .final-grid {
    text-align: center;
  }

  .final-cta p {
    margin: 0 auto;
  }

  .primary-cta.compact {
    min-width: 0;
    justify-self: center;
  }

  .footer-grid {
    gap: 28px;
  }

  .site-footer a,
  .site-footer p {
    font-size: 14px;
    padding: 4px 0;
  }

  .footer-brand p,
  .socials {
    margin-left: 0;
  }
}

@media (max-width: 460px) {
  .header-actions {
    flex-wrap: wrap;
  }

  .hero h1 {
    font-size: 34px;
  }

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

  .platforms {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 220px);
  }

  .home-news-meta {
    grid-template-columns: 1fr;
  }

  .outline-cta,
  .light-outline-cta {
    min-width: 0;
    width: 100%;
  }

  .news-action-row .outline-cta,
  .news-action-row .filled-cta {
    grid-column: 1 / -1;
    width: 100%;
  }

  .guide-copy h2 {
    font-size: 24px;
    letter-spacing: 1.2px;
  }

  .guide-copy p:not(.eyebrow) {
    font-size: 11px;
    line-height: 1.42;
  }

}

/* ============================================================
   À PROPOS PAGE
   ============================================================ */

.about-hero {
  position: relative;
  padding: 138px 0 78px;
  overflow: hidden;
  background: linear-gradient(145deg, #061a2e 0%, #0a2540 52%, #123758 100%);
  color: var(--white);
}

.about-hero::after {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 72% 22%, rgba(255, 246, 198, 0.13), transparent 34%);
  content: "";
  pointer-events: none;
}

.about-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 74px;
  align-items: center;
}

.about-hero-media {
  position: relative;
  align-self: stretch;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.34);
  border-radius: 10px;
  background: rgba(250, 250, 248, 0.06);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.26);
}

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

.about-hero-copy {
  position: relative;
  width: min(100%, 620px);
}

.about-hero .hero-kicker {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.about-hero h1,
.about-intro-grid h2,
.book-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  text-transform: uppercase;
}

.about-hero h1 {
  color: var(--gold);
  font-size: clamp(38px, 4.2vw, 56px);
  letter-spacing: 3px;
}

.about-hero-copy .title-rule {
  margin-right: 0;
  margin-left: 0;
}

.about-hero-copy > p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-heading);
  font-size: clamp(16px, 2vw, 21px);
  line-height: 1.62;
}

.about-intro-section,
.programs-section {
  padding: 72px 0;
  background: var(--paper);
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 76px;
  align-items: start;
}

.about-intro-grid h2,
.book-copy h2 {
  color: var(--maroon);
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: 3px;
}

.about-rich-text p {
  margin: 0 0 20px;
  color: #4d4744;
  font-size: 17px;
  line-height: 1.75;
}

.about-rich-text p:last-child {
  margin-bottom: 0;
}

.experience-section {
  padding: 34px 0;
  background: #0a2540;
  color: var(--white);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(212, 175, 55, 0.34);
  border: 1px solid rgba(212, 175, 55, 0.34);
}

.experience-grid article {
  min-width: 0;
  padding: 28px 20px;
  background: #0a2540;
}

.experience-grid strong {
  display: block;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: clamp(23px, 1.9vw, 30px);
  font-weight: 500;
  letter-spacing: 0.8px;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.experience-grid span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.45;
}

.programs-block {
  margin-top: 44px;
}

.program-group-heading {
  width: min(100%, 760px);
  margin: 0 0 22px;
}

.program-group-heading:not(:first-child) {
  margin-top: 48px;
}

.program-group-heading h3 {
  margin: 6px 0 0;
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1.2;
}

.program-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 44px;
  background: rgba(100, 36, 34, 0.2);
  border: 1px solid rgba(100, 36, 34, 0.2);
}

.programs-block .program-list {
  margin-top: 0;
}

.program-list article {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 28px 26px 30px;
  background: #fbfaf6;
}

.program-list span {
  display: inline-block;
  color: var(--gold-hover);
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 2px;
}

.program-list h3 {
  min-height: 58px;
  margin: 12px 0 14px;
  color: var(--maroon);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.2;
  text-transform: uppercase;
}

.program-list p {
  margin: 0 0 22px;
  color: #595350;
  font-size: 14px;
  line-height: 1.62;
}

.program-list ul {
  margin: 0 0 24px;
  padding-inline-start: 18px;
  color: #595350;
  font-size: 14px;
  line-height: 1.7;
}

.program-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.program-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(212, 175, 55, 0.72);
  border-radius: 4px;
  color: var(--maroon);
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.featured-programs article {
  background: #fdfbf2;
}

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

.program-degrees {
  display: grid;
  gap: 10px;
  list-style: none;
  padding-inline-start: 0;
}

.program-degrees strong {
  color: var(--maroon);
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

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

.private-program {
  grid-template-columns: minmax(0, 1fr);
}

.private-program article {
  padding: 32px;
}

.program-list a:hover,
.program-list a:focus-visible {
  background: var(--gold);
  color: var(--navy-900);
  transform: translateY(-1px);
}

.book-section {
  padding: 78px 0;
  background: linear-gradient(180deg, #f4f0e8 0%, var(--paper) 100%);
}

.book-grid {
  display: grid;
  grid-template-columns: minmax(260px, 420px) minmax(320px, 1fr);
  gap: 82px;
  align-items: center;
}

.book-cover {
  position: relative;
}

.book-cover::before {
  position: absolute;
  inset: 9% -5% -4% 8%;
  background: rgba(10, 37, 64, 0.14);
  content: "";
  filter: blur(28px);
}

.book-cover img {
  position: relative;
  width: min(100%, 390px);
  margin: 0 auto;
}

.book-copy p:not(.eyebrow) {
  width: min(100%, 580px);
  margin: 0 0 18px;
  color: #47413e;
  font-size: 16px;
  line-height: 1.72;
}

.about-mail-cta {
  min-width: 230px;
}

.about-programs-summary .section-heading {
  width: min(100%, 760px);
  margin: 0 auto;
}

.about-programs-summary .section-heading p + p {
  margin-top: 14px;
}

.about-programs-summary .about-mail-cta {
  margin-top: 26px;
}

.about-press-section {
  position: relative;
}

.about-press-section::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(100% - 48px, 1100px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(100, 36, 34, 0.18), rgba(212, 175, 55, 0.75), rgba(100, 36, 34, 0.18), transparent);
  content: "";
  transform: translateX(-50%);
}

.programs-simple-hero {
  padding: 138px 0 62px;
  background: linear-gradient(145deg, #061a2e 0%, #0a2540 62%, #123758 100%);
  color: var(--white);
}

.programs-simple-hero-copy {
  width: min(100% - 48px, 780px);
  text-align: center;
}

.programs-simple-hero .hero-kicker {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.programs-simple-hero h1 {
  margin: 0;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: clamp(38px, 4.4vw, 58px);
  font-weight: 500;
  letter-spacing: 3px;
  line-height: 1.15;
  text-transform: uppercase;
}

.programs-simple-hero .title-rule {
  margin-right: auto;
  margin-left: auto;
}

.programs-wait-section {
  padding: 78px 0 88px;
  background: var(--white);
}

.programs-wait-copy {
  width: min(100% - 48px, 720px);
  text-align: center;
}

.programs-wait-copy h2 {
  margin: 0;
  color: var(--maroon);
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 500;
  letter-spacing: 3px;
  line-height: 1.18;
  text-transform: uppercase;
}

.programs-wait-copy p:not(.eyebrow) {
  margin: 0 auto;
  color: #4d4744;
  font-size: 17px;
  line-height: 1.72;
}

.programs-simple-hero-copy > p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--font-heading);
  font-size: clamp(16px, 2vw, 21px);
  line-height: 1.62;
}

.programs-catalog-section {
  padding: 74px 0 90px;
  background: var(--paper);
}

.programs-catalog-shell {
  display: grid;
  gap: 34px;
}

.programs-catalog-heading {
  width: min(100%, 760px);
}

.programs-catalog-heading h2,
.program-detail-copy h2,
.program-checkout-intro h2 {
  margin: 0;
  color: var(--maroon);
  font-family: var(--font-display);
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 500;
  letter-spacing: 2.6px;
  line-height: 1.18;
  text-transform: uppercase;
}

.programs-catalog-heading p:not(.eyebrow),
.program-checkout-intro p {
  max-width: 700px;
  margin: 16px 0 0;
  color: #4d4744;
  font-size: 16px;
  line-height: 1.7;
}

.program-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.program-filter-bar button {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(212, 175, 55, 0.62);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy-900);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.program-filter-bar button:hover,
.program-filter-bar button:focus-visible,
.program-filter-bar button.is-active {
  background: var(--gold);
  color: var(--navy-900);
  transform: translateY(-1px);
}

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

.content-notice {
  margin: 22px 0 0;
  padding: 13px 18px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 8px;
  background: rgba(212, 175, 55, 0.08);
  color: var(--navy-900);
  font-size: 14px;
  line-height: 1.55;
  text-align: center;
}

.program-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 4px 24px rgba(10, 37, 64, 0.1);
}

.program-card-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--navy-900);
}

.program-card-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.program-card-copy {
  display: flex;
  flex: 1;
  min-width: 0;
  flex-direction: column;
  padding: 22px 22px 24px;
}

.program-card-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 14px;
}

.program-card-categories span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 4px;
  background: #fbfaf6;
  color: var(--navy-700);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.7px;
  line-height: 1.2;
  text-transform: uppercase;
}

.program-card h3 {
  margin: 0;
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.2;
  text-transform: uppercase;
}

.program-card-subtitle {
  margin: 9px 0 0;
  color: var(--gold-hover);
  font-family: var(--font-heading);
  font-size: 15px;
  line-height: 1.4;
}

.program-card-copy > p:not(.program-card-subtitle) {
  margin: 14px 0 18px;
  color: #595350;
  font-size: 14px;
  line-height: 1.62;
}

.program-card-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: auto 0 20px;
  background: rgba(212, 175, 55, 0.22);
}

.program-card-meta div {
  min-width: 0;
  padding: 10px;
  background: #fbfaf6;
}

.program-card-meta dt {
  margin: 0 0 3px;
  color: #7a6f69;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.program-card-meta dd {
  margin: 0;
  color: var(--navy-900);
  font-family: var(--font-heading);
  font-size: 14px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.program-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 4px;
  background: var(--navy-900);
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.program-card-link:hover,
.program-card-link:focus-visible {
  background: var(--gold);
  color: var(--navy-900);
  transform: translateY(-1px);
}

.programs-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 36px;
  border-radius: 8px;
  background: var(--white);
  color: #595350;
  text-align: center;
  box-shadow: 0 4px 24px rgba(10, 37, 64, 0.08);
}

.program-detail-hero {
  padding: 132px 0 72px;
  background: linear-gradient(145deg, #061a2e 0%, #0a2540 58%, #123758 100%);
  color: var(--white);
}

.program-detail-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 54px;
  align-items: center;
}

.program-detail-hero-copy h1 {
  margin: 0;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 500;
  letter-spacing: 2.6px;
  line-height: 1.15;
  text-transform: uppercase;
}

.program-detail-hero-copy > p:not(.hero-kicker) {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--font-heading);
  font-size: clamp(16px, 2vw, 21px);
  line-height: 1.62;
}

.program-detail-hero .program-card-categories {
  margin-top: 22px;
  margin-bottom: 0;
}

.program-detail-hero .program-card-categories span {
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold);
}

.program-detail-hero-media {
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.34);
  border-radius: 10px;
  aspect-ratio: 3 / 2;
  background: rgba(250, 250, 248, 0.06);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.24);
}

.program-detail-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 980px) {
  .program-detail-page[data-program-slug="transcendance"] .program-detail-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 430px);
    gap: 44px;
  }

  .program-detail-page[data-program-slug="transcendance"] .program-detail-hero-media {
    width: 100%;
    justify-self: end;
  }
}

.program-detail-section {
  padding: 72px 0;
  background: var(--paper);
}

.program-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 54px;
  align-items: start;
}

.program-detail-copy,
.program-detail-summary,
.program-checkout-shell {
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 4px 24px rgba(10, 37, 64, 0.1);
}

.program-detail-copy {
  padding: 34px;
}

.program-detail-text {
  margin-top: 22px;
}

.program-detail-text p,
.program-access-block p {
  margin: 0 0 18px;
  color: #4d4744;
  font-size: 16px;
  line-height: 1.75;
}

.program-detail-text p:last-child,
.program-access-block p:last-child {
  margin-bottom: 0;
}

.program-access-block {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(212, 175, 55, 0.32);
}

.program-access-block h3 {
  margin: 0 0 12px;
  color: var(--navy-900);
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
}

.program-pdf-block {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(212, 175, 55, 0.32);
}

.program-pdf-block h3 {
  margin: 0 0 10px;
  color: var(--navy-900);
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
}

.program-pdf-block p {
  margin: 0 0 18px;
  color: #4d4744;
  font-size: 16px;
  line-height: 1.7;
}

.program-pdf-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  color: var(--navy-900);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1.1px;
  text-align: center;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.program-pdf-link:hover,
.program-pdf-link:focus-visible {
  background: var(--gold);
  color: var(--navy-900);
  transform: translateY(-2px);
}

.program-detail-summary {
  display: grid;
  gap: 1px;
  overflow: hidden;
  background: rgba(212, 175, 55, 0.24);
}

.program-detail-summary div {
  padding: 18px 20px;
  background: var(--white);
}

.program-detail-summary span {
  display: block;
  margin-bottom: 4px;
  color: #7a6f69;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.program-detail-summary strong {
  display: block;
  color: var(--navy-900);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.32;
}

.program-cursus-section {
  padding: 76px 0 88px;
  background: var(--white);
}

.program-cursus-shell {
  display: grid;
  gap: 34px;
}

.program-cursus-heading {
  width: min(100%, 780px);
  margin: 0 auto;
  text-align: center;
}

.program-cursus-heading h2 {
  margin: 0;
  color: var(--maroon);
  font-family: var(--font-display);
  font-size: clamp(30px, 3.8vw, 46px);
  font-weight: 500;
  letter-spacing: 2.8px;
  line-height: 1.18;
  text-transform: uppercase;
}

.program-cursus-heading p:not(.eyebrow) {
  margin: 18px auto 0;
  color: #4d4744;
  font-family: var(--font-heading);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.68;
}

.program-degree-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.program-degree-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 28px 22px 26px;
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 4px 24px rgba(10, 37, 64, 0.08);
}

.program-degree-card::before {
  position: absolute;
  top: 0;
  right: 24px;
  left: 24px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.78), transparent);
  content: "";
}

.program-degree-card span {
  display: block;
  margin-bottom: 18px;
  color: rgba(10, 37, 64, 0.34);
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
}

.program-degree-card h3 {
  margin: 0 0 12px;
  color: var(--navy-900);
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 400;
  line-height: 1.2;
}

.program-degree-card p {
  margin: 0;
  color: #4d4744;
  font-size: 15px;
  line-height: 1.65;
}

.program-degree-card p + p {
  margin-top: 12px;
}

.program-degree-card strong {
  color: var(--navy-900);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
}

.program-checkout-section {
  padding: 76px 0 92px;
  background: var(--white);
}

.program-checkout-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 520px);
  gap: 44px;
  align-items: start;
  padding: 34px;
}

.program-checkout-intro {
  padding-top: 10px;
}

@media (max-width: 1020px) {
  .about-hero {
    padding-top: 166px;
  }

  .about-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
    gap: 42px;
  }

  .about-intro-grid,
  .book-grid {
    gap: 46px;
  }

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

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

  .program-degree-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .program-detail-hero-grid,
  .program-detail-grid,
  .program-checkout-shell {
    grid-template-columns: 1fr;
  }

  .private-program {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .about-hero {
    padding: 180px 0 54px;
  }

  .about-hero::after {
    background: radial-gradient(circle at 72% 18%, rgba(255, 246, 198, 0.11), transparent 44%);
  }

  .about-hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-hero-copy {
    width: 100%;
  }

  .about-hero-media {
    min-height: 0;
    height: min(116vw, 540px);
    order: -1;
  }

  .about-hero h1 {
    font-size: 39px;
    letter-spacing: 2.2px;
  }

  .programs-simple-hero {
    padding: 180px 0 54px;
  }

  .programs-simple-hero h1 {
    font-size: 34px;
    letter-spacing: 1.4px;
    overflow-wrap: anywhere;
    text-wrap: balance;
  }

  .programs-wait-section {
    padding: 56px 0 64px;
  }

  .programs-catalog-section,
  .program-detail-section,
  .program-cursus-section,
  .program-checkout-section {
    padding: 52px 0 64px;
  }

  .about-intro-section,
  .programs-section,
  .book-section {
    padding: 52px 0;
  }

  .about-intro-grid,
  .book-grid {
    grid-template-columns: 1fr;
  }

  .program-list,
  .programs-card-grid,
  .program-degree-grid,
  .experience-grid {
    grid-template-columns: 1fr;
  }

  .program-degree-card {
    min-height: 0;
  }

  .program-detail-hero {
    padding: 176px 0 54px;
  }

  .program-card-meta {
    grid-template-columns: 1fr;
  }

  .program-detail-copy,
  .program-checkout-shell {
    padding: 24px;
  }

  .program-actions a {
    flex: 1 1 150px;
  }

  .other-programs .program-actions a {
    flex: 0 0 auto;
    min-width: 112px;
  }

  .program-list h3 {
    min-height: 0;
  }
}

@media (max-width: 460px) {
  .about-hero {
    padding-top: 198px;
  }

  .about-hero-media {
    height: 430px;
  }

  .about-rich-text p,
  .book-copy p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.65;
  }

  .programs-simple-hero h1 {
    font-size: 30px;
    letter-spacing: 1px;
  }

  .program-list article,
  .experience-grid article {
    padding-right: 20px;
    padding-left: 20px;
  }
}

/* ============================================================
   ACTUALITÉS & CENTRE DE FORMATION
   ============================================================ */

.news-hero,
.center-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #061a2e 0%, #0a2540 52%, #123758 100%);
  color: var(--white);
}

.news-hero {
  padding: 152px 0 82px;
}

.center-hero::after {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 72% 24%, rgba(212, 175, 55, 0.15), transparent 34%);
  content: "";
  pointer-events: none;
}

.news-hero-copy {
  position: relative;
  z-index: 1;
  width: min(100% - 48px, 780px);
  text-align: center;
}

.news-hero .hero-kicker,
.center-hero .hero-kicker {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.news-hero h1,
.center-hero h1 {
  margin: 0;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: clamp(38px, 4.4vw, 58px);
  font-weight: 500;
  letter-spacing: 3px;
  line-height: 1.15;
  text-transform: uppercase;
}

.news-hero-copy > p,
.center-hero-copy > p {
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-heading);
  font-size: clamp(16px, 2vw, 21px);
  line-height: 1.62;
}

.news-list-section {
  padding: 74px 0;
  background: var(--paper);
}

.news-feature-grid {
  display: grid;
  gap: 42px;
}

.news-feature {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.08fr);
  gap: 0;
  overflow: hidden;
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.news-feature-media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: var(--navy-900);
}

.news-feature-media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.news-feature-copy {
  padding: 48px 52px;
}

.news-feature-copy h2,
.news-center-card h2,
.center-intro-grid h2 {
  margin: 0;
  color: var(--maroon);
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 500;
  letter-spacing: 3px;
  line-height: 1.15;
  text-transform: uppercase;
}

.news-subtitle {
  margin: 12px 0 20px;
  color: #1e3a5f;
  font-family: var(--font-heading);
  font-size: 22px;
  line-height: 1.35;
}

.news-feature-copy > p:not(.eyebrow):not(.news-subtitle):not(.news-note),
.news-center-card p {
  margin: 0 0 22px;
  color: #47413e;
  font-size: 16px;
  line-height: 1.72;
}

.news-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 28px 0;
  background: rgba(212, 175, 55, 0.38);
  border: 1px solid rgba(212, 175, 55, 0.38);
}

.news-info-grid div {
  min-width: 0;
  padding: 18px 20px;
  background: #fbfaf6;
}

.news-info-grid span,
.center-pillars span {
  display: block;
  margin: 0 0 7px;
  color: var(--gold-hover);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.news-info-grid strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.35;
}

.news-note {
  margin: 0 0 28px;
  color: #57514e;
  font-size: 15px;
  line-height: 1.65;
}

.product-feature .news-feature-media img {
  object-position: center top;
}

.product-description {
  display: grid;
  gap: 14px;
  margin: 28px 0 30px;
}

.product-description p {
  margin: 0;
  color: #47413e;
  font-size: 15px;
  line-height: 1.72;
}

.product-payment-link {
  width: min(100%, 340px);
  margin: 0 0 30px;
}

.product-testimonials {
  position: relative;
  margin-top: 44px;
  margin-bottom: 18px;
  padding: 38px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 58%, var(--navy-800) 100%);
  box-shadow: 0 18px 50px rgba(6, 26, 46, 0.2);
}

.product-testimonials .section-heading {
  margin-bottom: 22px;
}

.product-testimonials .eyebrow {
  color: var(--gold);
}

.product-testimonials .section-heading h2,
.product-testimonials .section-heading h3 {
  margin: 0 0 8px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 1.8px;
  line-height: 1.25;
  text-transform: uppercase;
}

.testimonial-arrows {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}

.testimonial-arrows span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 24px;
  line-height: 1;
}

.testimonial-carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 2px 2px 16px;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(212, 175, 55, 0.78) rgba(255, 255, 255, 0.16);
  scrollbar-width: thin;
}

.testimonial-carousel:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.testimonial-carousel::-webkit-scrollbar {
  height: 8px;
}

.testimonial-carousel::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.16);
}

.testimonial-carousel::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.8);
}

.testimonial-carousel blockquote {
  flex: 0 0 min(78%, 360px);
  margin: 0;
  padding: 20px 22px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.94);
  color: #47413e;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
  scroll-snap-align: start;
}

.testimonial-carousel blockquote p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
}

.testimonial-carousel blockquote p + p {
  margin-top: 10px;
}

.testimonial-carousel cite {
  display: block;
  margin-top: 12px;
  color: var(--gold-hover);
  font-family: var(--font-heading);
  font-size: 15px;
  font-style: normal;
}

.past-event {
  position: relative;
  opacity: 0.82;
}

.past-event::before {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  background: rgba(6, 26, 46, 0.78);
  color: var(--white);
  content: "Événement passé";
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.past-event .news-feature-media img {
  filter: saturate(0.72);
}

.product-payment-page {
  background: var(--paper);
}

.product-payment-hero {
  padding-bottom: 72px;
}

.product-payment-section {
  padding: 74px 0;
  background: var(--paper);
}

.product-payment-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.05fr);
  gap: 34px;
  align-items: start;
}

.product-payment-summary {
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.34);
  border-radius: 10px;
  background: #fbfaf6;
  box-shadow: var(--shadow);
}

.product-payment-poster {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 3vw, 42px);
  background: #fbfaf6;
}

.product-payment-poster img {
  display: block;
  width: min(100%, 760px);
  height: auto;
  object-fit: contain;
}

.product-payment-details {
  margin: 28px 0;
}

.product-payment-details .eyebrow {
  margin-bottom: 18px;
}

.product-payment-details .news-info-grid {
  margin: 0 0 6px;
}

.product-payment-main,
.product-payment-copy,
.product-checkout-card {
  padding: 34px 36px 36px;
  border: 1px solid rgba(212, 175, 55, 0.34);
  border-radius: 8px;
  background: #fbfaf6;
  box-shadow: var(--shadow);
}

.product-payment-main {
  display: grid;
  gap: 28px;
}

.product-payment-copy h2,
.product-payment-main h2,
.product-checkout-card h2 {
  margin: 0 0 8px;
  color: var(--maroon);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 1.8px;
  line-height: 1.25;
  text-transform: uppercase;
}

.product-payment-copy .product-description {
  margin-bottom: 0;
}

.product-payment-info-card {
  align-self: stretch;
}

.product-payment-info-card .product-payment-details {
  display: grid;
  align-content: center;
  height: 100%;
  margin: 0;
}

.ritual-text-section {
  grid-column: 1 / -1;
}

.ritual-description {
  max-width: 920px;
}

.ritual-description p:first-child {
  color: var(--maroon);
  font-family: var(--font-heading);
  font-size: 18px;
  line-height: 1.6;
}

.ritual-description blockquote {
  margin: 10px 0;
  padding: 24px 28px;
  border-left: 3px solid var(--gold);
  background: rgba(212, 175, 55, 0.1);
  color: var(--maroon);
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 1.55;
}

.ritual-description strong {
  color: var(--maroon);
  font-weight: 800;
}

.product-checkout-card > p {
  margin: 0 0 24px;
  color: #57514e;
  font-size: 14px;
  line-height: 1.65;
}

.product-checkout-card .angel-checkbox-group {
  margin: 20px 0 18px;
}

.product-checkout-card .product-consent {
  margin-top: 0;
}

.product-checkout-wrap {
  margin-top: 28px;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(10, 37, 64, 0.14);
  border-radius: 8px;
  background: var(--white);
}

#product-checkout {
  min-height: 520px;
}

.product-payment-grid > .product-testimonials {
  grid-column: 1 / -1;
  width: 100%;
}

.product-payment-grid > .product-checkout-card {
  grid-column: 1 / -1;
  width: min(100%, 620px);
  margin-top: 16px;
  justify-self: center;
}

.news-booking {
  min-width: 310px;
  min-height: 72px;
  margin-top: 0;
}

.news-center-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 46px;
  padding: 42px 48px;
  border-radius: 10px;
  background: #0a2540;
  color: var(--white);
}

.news-center-card h2 {
  max-width: 720px;
  color: var(--gold);
}

.news-center-card p {
  max-width: 760px;
  margin-top: 18px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
}

.news-center-card .outline-cta {
  flex: 0 0 auto;
  margin-top: 0;
}

.workshops-hero {
  padding-bottom: 76px;
}

.workshops-section {
  padding: 74px 0 82px;
  background: var(--paper);
}

.events-testimonials-section {
  padding: 56px 0 60px;
  background: #f6f1e7;
}

.workshops-archive-section {
  padding: 76px 0 88px;
  background: var(--navy-900);
  color: var(--white);
}

.workshops-shell {
  display: grid;
  gap: 26px;
}

.workshops-heading {
  display: grid;
  gap: 10px;
}

.workshops-heading h2 {
  margin: 0;
  color: var(--maroon);
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 1.12;
  text-transform: uppercase;
}

.workshops-next {
  display: grid;
  gap: 26px;
  min-height: 220px;
}

.workshops-feature {
  align-items: stretch;
  grid-template-areas:
    "media copy"
    "details details";
  row-gap: 0;
  margin-top: 4px;
}

.workshops-feature .news-feature-media {
  grid-area: media;
  align-self: stretch;
  min-height: 0;
}

.workshops-feature .news-feature-media img {
  height: 100%;
  min-height: 0;
  object-position: center 16%;
}

.workshops-feature .news-feature-copy {
  display: flex;
  flex-direction: column;
  grid-area: copy;
  padding-bottom: 34px;
}

.workshops-feature .news-feature-copy h2 {
  margin-bottom: clamp(22px, 3vw, 42px);
}

.workshops-feature .news-feature-copy .eyebrow {
  margin-bottom: clamp(12px, 1.4vw, 20px);
}

.workshop-text-flow {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  min-height: 0;
}

.workshops-feature .workshop-summary {
  margin-bottom: 18px;
  color: #3f3936;
  font-size: 17px;
  line-height: 1.72;
}

.workshop-description {
  display: grid;
  gap: clamp(18px, 2vw, 30px);
  margin: 0;
}

.workshop-description p {
  margin: 0;
  color: #514a46;
  font-size: 15px;
  line-height: 1.72;
}

.workshop-details {
  display: grid;
  grid-area: details;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
  align-items: end;
  gap: 24px;
  padding: 42px 52px 46px;
  border-top: 1px solid rgba(212, 175, 55, 0.22);
  background: #fbfaf6;
}

.workshop-details .news-info-grid,
.workshop-details .product-payment-link {
  margin: 0;
}

.workshop-details .news-action-row {
  display: flex;
  align-self: center;
  justify-content: center;
  margin: 0;
}

.workshop-details .news-note {
  align-self: center;
  margin: 0;
}

.events-testimonials-shell {
  display: grid;
  gap: 22px;
}

.events-testimonials-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.events-testimonials-shell .workshops-heading h2 {
  max-width: 760px;
}

.events-testimonials-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.events-testimonial-button {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(151, 36, 42, 0.24);
  border-radius: 50%;
  background: #fbfaf6;
  color: var(--maroon);
  box-shadow: 0 12px 28px rgba(32, 24, 18, 0.1);
  cursor: pointer;
  font: inherit;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.events-testimonial-button span {
  display: block;
  transform: translateY(-1px);
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1;
}

.events-testimonial-button:hover,
.events-testimonial-button:focus-visible {
  border-color: rgba(151, 36, 42, 0.46);
  background: var(--maroon);
  color: var(--paper);
  transform: translateY(-1px);
}

.events-testimonial-button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.events-testimonial-button:disabled {
  opacity: 0.38;
  cursor: default;
  transform: none;
}

.events-testimonial-button:disabled:hover {
  border-color: rgba(151, 36, 42, 0.24);
  background: #fbfaf6;
  color: var(--maroon);
}

.events-testimonials-carousel {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  overflow-x: auto;
  padding: 4px 2px 14px;
  scroll-behavior: smooth;
  scroll-padding-inline: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(151, 36, 42, 0.46) rgba(212, 175, 55, 0.18);
  scrollbar-width: thin;
}

.events-testimonials-carousel:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 6px;
}

.events-testimonials-carousel::-webkit-scrollbar {
  height: 8px;
}

.events-testimonials-carousel::-webkit-scrollbar-track {
  background: rgba(212, 175, 55, 0.18);
}

.events-testimonials-carousel::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(151, 36, 42, 0.46);
}

.event-testimonial-card {
  position: relative;
  flex: 0 0 min(82%, 360px);
  height: 330px;
  overflow-y: auto;
  padding: 30px 28px 26px;
  border: 1px solid rgba(212, 175, 55, 0.42);
  border-radius: 8px;
  background: #fbfaf6;
  color: #47413e;
  box-shadow: 0 16px 38px rgba(32, 24, 18, 0.09);
  overscroll-behavior: contain;
  scroll-snap-align: start;
  scrollbar-color: rgba(151, 36, 42, 0.42) rgba(212, 175, 55, 0.14);
  scrollbar-width: thin;
}

.event-testimonial-card::-webkit-scrollbar {
  width: 7px;
}

.event-testimonial-card::-webkit-scrollbar-track {
  background: rgba(212, 175, 55, 0.14);
}

.event-testimonial-card::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(151, 36, 42, 0.42);
}

.event-testimonial-card::before {
  display: block;
  margin-bottom: 18px;
  color: var(--gold-hover);
  content: "“";
  font-family: var(--font-display);
  font-size: 58px;
  line-height: 0.6;
}

.event-testimonial-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.68;
}

.event-testimonial-card p + p {
  margin-top: 12px;
}

.event-testimonial-card footer {
  margin-top: 22px;
  color: var(--maroon);
  font-family: var(--font-heading);
  font-size: 15px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.workshops-archive-heading {
  margin-top: 0;
}

.workshops-archive-section .workshops-heading h2 {
  color: var(--paper);
}

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

.workshops-archive-section .workshops-empty {
  border-color: rgba(212, 175, 55, 0.34);
  background: rgba(250, 250, 248, 0.08);
  color: rgba(250, 250, 248, 0.82);
}

.workshops-empty {
  margin: 0;
  padding: 28px 30px;
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: 8px;
  background: #fbfaf6;
  color: #5f5652;
  font-size: 15px;
  line-height: 1.65;
}

.workshop-archive-card {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 8px;
  background: #fbfaf6;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
}

.workshop-archive-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #f1eee5;
}

.workshop-archive-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.9;
  filter: saturate(0.86);
}

.workshop-image-label {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(244, 240, 232, 0.94);
  color: var(--maroon);
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 1.6px;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(10, 37, 64, 0.18);
}

.workshop-archive-copy {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 24px 24px 26px;
}

.workshop-archive-copy .eyebrow {
  margin: 0;
}

.workshop-archive-copy h3 {
  margin: 0;
  color: var(--maroon);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 1.4px;
  line-height: 1.18;
  text-transform: uppercase;
}

.workshop-archive-copy .news-subtitle {
  margin: 0;
}

.workshop-archive-copy p:not(.eyebrow):not(.news-subtitle) {
  margin: 4px 0 0;
  color: #57514e;
  font-size: 14px;
  line-height: 1.62;
}

.payment-checkout-grid {
  grid-template-columns: minmax(0, 1fr);
  width: min(100% - 40px, 920px);
}

.center-hero {
  padding: 152px 0 90px;
}

.center-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 380px);
  gap: 72px;
  align-items: center;
}

.center-hero-copy .title-rule {
  margin-right: 0;
  margin-left: 0;
}

.center-hero-copy > p {
  margin-right: 0;
  margin-left: 0;
  max-width: 680px;
}

.center-hero-mark {
  display: grid;
  place-items: center;
  min-height: 360px;
  border-radius: 10px;
  background: rgba(250, 250, 248, 0.05);
  box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.24);
}

.center-hero-mark img {
  width: min(78%, 300px);
}

.center-intro-section {
  padding: 74px 0;
  background: var(--paper);
}

.center-intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 76px;
  align-items: start;
}

.center-pillars-section {
  padding: 0 0 78px;
  background: var(--paper);
}

.center-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(100, 36, 34, 0.2);
  border: 1px solid rgba(100, 36, 34, 0.2);
}

.center-pillars article {
  padding: 30px 28px;
  background: #fbfaf6;
}

.center-pillars h3 {
  margin: 0 0 14px;
  color: var(--maroon);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.2;
  text-transform: uppercase;
}

.center-pillars p {
  margin: 0;
  color: #595350;
  font-size: 14px;
  line-height: 1.62;
}

@media (max-width: 1020px) {
  .news-hero,
  .center-hero {
    padding-top: 184px;
  }

  .news-feature,
  .product-payment-grid,
  .product-payment-summary,
  .center-hero-grid,
  .center-intro-grid,
  .workshops-archive {
    grid-template-columns: 1fr;
  }

  .news-feature-media img {
    min-height: 420px;
  }

  .workshops-feature {
    grid-template-areas:
      "media copy"
      "details details";
    grid-template-columns: minmax(250px, 0.88fr) minmax(0, 1.12fr);
  }

  .workshops-feature .news-feature-media img {
    height: 100%;
    min-height: 0;
  }

  .workshops-feature .news-feature-copy {
    padding: 34px 34px 24px;
  }

  .workshops-feature .news-feature-copy h2 {
    margin-bottom: clamp(18px, 2.6vw, 34px);
  }

  .workshop-description {
    gap: clamp(16px, 2vw, 24px);
  }

  .workshop-details {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
    gap: 20px;
    padding: 34px 34px 36px;
  }

  .news-center-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .news-hero,
  .center-hero {
    padding: 196px 0 58px;
  }

  .workshops-hero h1 {
    font-size: 34px;
    letter-spacing: 1.4px;
    overflow-wrap: anywhere;
    text-wrap: balance;
  }

  .news-list-section,
  .center-intro-section,
  .workshops-section,
  .events-testimonials-section,
  .workshops-archive-section {
    padding: 54px 0;
  }

  .news-feature-copy,
  .product-payment-copy,
  .product-checkout-card,
  .news-center-card,
  .workshop-archive-copy {
    padding: 30px 24px;
  }

  .workshops-feature {
    grid-template-areas:
      "media"
      "copy"
      "details";
    grid-template-columns: 1fr;
  }

  .workshops-feature .news-feature-media {
    align-self: start;
  }

  .workshops-feature .news-feature-media img {
    height: clamp(360px, 82vw, 500px);
    object-position: center 24%;
  }

  .workshops-feature .news-feature-copy h2 {
    margin-bottom: 18px;
  }

  .workshop-text-flow {
    display: block;
  }

  .workshop-description {
    gap: 14px;
    margin: 0 0 26px;
  }

  .workshop-details {
    grid-template-columns: 1fr;
    padding: 30px 24px;
  }

  .workshop-details .news-action-row {
    justify-content: center;
  }

  .product-testimonials {
    padding: 24px 20px;
  }

  .testimonial-carousel blockquote {
    flex-basis: min(86%, 320px);
  }

  .events-testimonials-carousel {
    margin-right: -24px;
    padding-right: 24px;
  }

  .events-testimonials-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .events-testimonials-controls {
    align-self: flex-start;
  }

  .events-testimonial-button {
    width: 42px;
    height: 42px;
  }

  .events-testimonial-button span {
    font-size: 31px;
  }

  .event-testimonial-card {
    flex-basis: min(88%, 318px);
    height: 320px;
    padding: 28px 24px 26px;
  }

  .news-info-grid,
  .center-pillars {
    grid-template-columns: 1fr;
  }

  .workshop-details .news-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-payment-section {
    padding: 54px 0;
  }

  .product-payment-poster {
    padding: 18px;
  }

  .product-payment-poster img {
    max-height: none;
  }

  .center-pillars-section {
    padding-bottom: 54px;
  }

  .center-hero-mark {
    min-height: 260px;
    order: -1;
  }
}

@media (max-width: 460px) {
  .news-hero,
  .center-hero {
    padding-top: 210px;
  }

  .workshops-hero h1 {
    font-size: 30px;
    letter-spacing: 1px;
  }

  .workshop-details .news-info-grid {
    grid-template-columns: 1fr;
  }

  .news-feature-copy h2,
  .news-center-card h2,
  .center-intro-grid h2 {
    letter-spacing: 2px;
  }

  .news-feature-media img {
    min-height: 330px;
  }

  .testimonial-carousel blockquote {
    flex-basis: 92%;
  }
}

/* ============================================================
   ANGES GARDIENS PAGE
   ============================================================ */

.angel-hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
  overflow: hidden;
  background:
    linear-gradient(to bottom, rgba(6, 26, 46, 0.48) 0%, rgba(6, 26, 46, 0.72) 100%),
    url('https://res.cloudinary.com/dzug5s7sk/image/upload/v1770641402/ImageHeader_q9wmny.jpg') center / cover no-repeat;
  color: var(--white);
  isolation: isolate;
}

.angel-hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 32px, 820px);
  margin-top: 80px;
  text-align: center;
}

.angel-hero-content .hero-kicker {
  margin: 0 auto 20px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 8px;
  line-height: 1.2;
  text-transform: uppercase;
}

.angel-hero-content h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 500;
  letter-spacing: 4px;
  line-height: 1.26;
  text-transform: uppercase;
  background: linear-gradient(180deg, #fff3b1 0%, #d4af37 42%, #9f741d 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.angel-hero-content .title-rule {
  margin: 24px auto 22px;
}

.angel-hero-content > p {
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-heading);
  font-size: clamp(16px, 2vw, 21px);
  line-height: 1.62;
  max-width: 520px;
}

.angel-hero-content > .angel-hero-subtitle {
  max-width: 760px;
}

.angel-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.angel-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.angel-hero-btn-primary {
  background: var(--gold);
  color: var(--navy-900);
}

.angel-hero-btn-secondary {
  background: rgba(6, 26, 46, 0.2);
  color: var(--gold);
}

.angel-hero-btn:hover,
.angel-hero-btn:focus-visible {
  transform: translateY(-2px);
}

.angel-hero-btn-primary:hover,
.angel-hero-btn-primary:focus-visible {
  background: #f1d06b;
  border-color: #f1d06b;
}

.angel-hero-btn-secondary:hover,
.angel-hero-btn-secondary:focus-visible {
  background: var(--gold);
  color: var(--navy-900);
}

/* --- Form section --- */

.angel-form-section {
  scroll-margin-top: 92px;
  padding: 60px 24px 72px;
  background: var(--paper);
}

.angel-form-container {
  max-width: 520px;
  margin: 0 auto;
  background: var(--white);
  padding: 44px 48px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.angel-form-container h2 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--maroon);
  text-align: center;
}

.angel-form-subtitle {
  margin: 0 0 36px;
  color: #6b6b6b;
  font-size: 14px;
  line-height: 1.65;
  text-align: center;
}

.angel-form-group {
  margin-bottom: 22px;
}

.angel-form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 10px;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.angel-required {
  color: var(--gold);
}

.angel-form-group input[type="text"],
.angel-form-group input[type="email"],
.angel-form-group input[type="date"],
.angel-form-group input[type="time"],
.angel-form-group input[type="tel"],
.angel-form-group textarea {
  width: 100%;
  padding: 10px 0;
  border: none;
  border-bottom: 1.5px solid #d0cdc9;
  border-radius: 0;
  background: transparent;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.2s ease;
}

.angel-form-group textarea {
  min-height: 136px;
  resize: vertical;
}

.angel-form-group input:focus,
.angel-form-group textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}

.angel-form-group input.input-error,
.angel-form-group textarea.input-error {
  border-bottom-color: #c0392b;
}

.angel-field-error {
  display: block;
  color: #c0392b;
  font-size: 11px;
  margin-top: 4px;
  min-height: 15px;
}

.angel-checkbox-group {
  margin: 28px 0 24px;
}

.angel-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  line-height: 1.55;
  color: #888;
}

.angel-checkbox-label input[type="checkbox"] {
  margin-top: 2px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--navy-900);
  cursor: pointer;
}

.angel-checkbox-label a {
  color: var(--maroon);
  text-decoration: underline;
}

.angel-checkbox-label a:hover {
  color: var(--gold);
}

.angel-submit {
  display: block;
  width: 100%;
  padding: 16px 24px;
  border: none;
  border-radius: 6px;
  background: linear-gradient(180deg, #e8c752 0%, #d5ad37 55%, #c59727 100%);
  color: var(--navy-900);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.angel-submit::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.angel-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(212, 175, 55, 0.38);
}

.angel-submit:hover::after {
  opacity: 1;
}

.angel-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.angel-form-message {
  margin-top: 16px;
  text-align: center;
  font-size: 14px;
  border-radius: 6px;
  min-height: 0;
  padding: 0;
}

.angel-form-message.error {
  background: rgba(192, 57, 43, 0.06);
  color: #c0392b;
  padding: 12px 16px;
  border: 1px solid rgba(192, 57, 43, 0.18);
}

.angel-form-message.success {
  background: rgba(39, 174, 96, 0.06);
  color: #27ae60;
  padding: 12px 16px;
  border: 1px solid rgba(39, 174, 96, 0.18);
}

.checkout-confirmation {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 32px;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 4px 24px rgba(10, 37, 64, 0.08);
}

.checkout-confirmation-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4af37 0%, #c4a030 100%);
  color: #0a2540;
  font-size: 32px;
  font-weight: 700;
  line-height: 64px;
  text-align: center;
}

.checkout-confirmation-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold);
  margin: 0 0 16px;
  letter-spacing: 1px;
}

.checkout-confirmation-text {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 12px;
}

.checkout-confirmation-note {
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.6;
  color: #8a8780;
  margin: 20px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.checkout-confirmation-note a {
  color: var(--gold);
}

/* --- Result display --- */

.angel-result {
  display: none;
  max-width: 520px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 44px 48px;
  text-align: center;
  position: relative;
}

.angel-result::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 0 0 3px 3px;
}

.angel-result.visible {
  display: block;
  animation: heroFadeUp 0.6s ease forwards;
}

.angel-result-icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.angel-result-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 22px;
  letter-spacing: 1px;
  line-height: 1.3;
}

.angel-result-text {
  color: #6b6b6b;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.angel-result-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 12px 32px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: transparent;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}

.angel-result-btn:hover {
  background: var(--gold);
  color: var(--navy-900);
}

/* --- Join page --- */

.join-page {
  background: var(--navy-950);
}

.join-hero {
  position: relative;
  min-height: 100vh;
  padding: 152px 0 92px;
  overflow: hidden;
  background: linear-gradient(180deg, #061a2e 0%, #0a2540 58%, #123758 100%);
  color: var(--white);
}

.join-hero::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 26, 46, 0.08), rgba(6, 23, 41, 0.42)),
    radial-gradient(circle at 18% 78%, rgba(100, 36, 34, 0.18), transparent 36%);
  content: "";
  pointer-events: none;
}

.join-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  gap: 36px;
  width: min(100% - 48px, 640px);
  text-align: center;
}

.join-club-logo {
  display: block;
  width: min(100%, 300px);
  height: auto;
  margin: 0 auto 30px;
}

.join-copy h1 {
  margin: 0 auto;
  max-width: 660px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: clamp(36px, 5.2vw, 58px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.join-copy .hero-kicker {
  margin: 0 auto 20px;
  clear: both;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 8px;
  line-height: 1.2;
  text-transform: uppercase;
}

.join-copy .title-rule {
  margin-right: auto;
  margin-left: auto;
}

.join-copy p:not(.hero-kicker) {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-heading);
  font-size: clamp(16px, 2vw, 21px);
  line-height: 1.62;
}

.join-form-card {
  width: min(100%, 440px);
  justify-self: center;
  background: var(--paper);
  color: var(--ink-soft);
  padding: 34px 36px 36px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.join-form-card h2 {
  margin: 0 0 10px;
  color: var(--maroon);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-align: center;
  text-transform: uppercase;
}

.join-form-card .angel-form-subtitle {
  margin-bottom: 28px;
  font-size: 13px;
}

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

.join-form-card .angel-form-group {
  margin-bottom: 18px;
}

.join-form-card .angel-checkbox-group {
  margin: 22px 0 20px;
}

.join-form-card .angel-submit {
  padding: 14px 20px;
  font-size: 13px;
}

.join-optional {
  display: block;
  margin-top: 2px;
}

.join-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.join-result-panel {
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(39, 174, 96, 0.2);
  border-radius: 8px;
  background: rgba(39, 174, 96, 0.07);
  color: #246b42;
  text-align: center;
}

.join-result-panel p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
}

.join-result-panel p + p {
  margin-top: 8px;
  color: var(--maroon);
  font-family: var(--font-heading);
  font-size: 16px;
}

/* --- Club waitlist page --- */

.club-page {
  background: var(--paper);
}

.club-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: linear-gradient(145deg, #061a2e 0%, #0a2540 52%, #123758 100%);
  color: var(--white);
}

/* Contact page: single-column centered layout */
.contact-hero-grid {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 54px;
  max-width: 680px;
  margin: 0 auto;
  padding-top: 180px;
  padding-bottom: 72px;
}

.contact-hero-grid .club-copy {
  text-align: center;
}

.contact-hero-grid .club-copy .title-rule {
  margin-right: auto;
  margin-left: auto;
}

.contact-hero-grid .club-waitlist-card {
  width: 100%;
}

.contact-hero-grid textarea {
  width: 100%;
  resize: vertical;
  min-height: 120px;
  padding: 10px 0;
  border: none;
  border-bottom: 1.5px solid #d0cdc9;
  border-radius: 0;
  background: transparent;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  box-sizing: border-box;
}

.contact-whatsapp-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: 100%;
  padding: 24px;
  border: 1px solid rgba(212, 175, 55, 0.46);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.14);
  box-sizing: border-box;
}

.contact-whatsapp-card h3 {
  margin: 0 0 8px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.25;
}

.contact-whatsapp-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.65;
}

.contact-whatsapp-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 8px;
  background: #25d366;
  color: #073d1c;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-whatsapp-link img {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.contact-whatsapp-link:hover,
.contact-whatsapp-link:focus-visible {
  color: #073d1c;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.28);
}

@media (max-width: 620px) {
  .contact-hero-grid {
    padding-top: 194px;
    padding-bottom: 54px;
  }

  .contact-whatsapp-card {
    align-items: stretch;
    flex-direction: column;
    padding: 22px;
  }

  .contact-whatsapp-link {
    width: 100%;
  }
}

.club-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 500px);
  gap: 72px;
  align-items: center;
  min-height: 100vh;
  padding-top: 128px;
  padding-bottom: 72px;
}

.club-copy .hero-kicker {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.club-copy h1 {
  margin: 0;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: clamp(38px, 4.4vw, 58px);
  font-weight: 500;
  letter-spacing: 3px;
  line-height: 1.15;
  text-transform: uppercase;
}

.club-copy .title-rule {
  margin-right: 0;
  margin-left: 0;
}

.club-copy > p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-heading);
  font-size: clamp(16px, 2vw, 21px);
  line-height: 1.62;
}

.club-waitlist-card {
  padding: 42px 44px;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.26);
}

.club-waitlist-card h2 {
  margin: 0 0 10px;
  color: var(--maroon);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 2.4px;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 940px) {
  .club-hero-grid {
    grid-template-columns: 1fr;
    gap: 44px;
    padding-top: 178px;
  }

  .join-hero {
    padding-top: 124px;
  }

  .join-hero-grid {
    grid-template-columns: 1fr;
    gap: 38px;
    width: min(100% - 40px, 680px);
  }

  .join-copy h1,
  .join-copy p:not(.hero-kicker) {
    max-width: 680px;
  }

  .join-form-card {
    justify-self: stretch;
    width: 100%;
    max-width: 520px;
  }

  .join-club-logo {
    width: min(100%, 280px);
  }
}

@media (max-width: 620px) {
  .club-hero-grid {
    padding-top: 194px;
    padding-bottom: 54px;
  }

  .club-copy h1 {
    font-size: clamp(28px, 7.5vw, 38px);
    letter-spacing: 1.5px;
  }

  .club-waitlist-card {
    max-width: 100%;
    padding: 30px 24px;
  }

  .join-hero {
    padding: 118px 0 56px;
  }

  .join-form-card {
    padding: 28px 22px 30px;
  }

  .join-copy h1 {
    font-size: 32px;
    letter-spacing: 1.6px;
  }

  .join-copy p:not(.hero-kicker) {
    font-size: 15px;
  }

  .join-fields {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* --- Tradition section --- */

.angel-tradition {
  scroll-margin-top: 92px;
  padding: 76px 24px 80px;
  background: linear-gradient(180deg, #09243f 0%, #061a2e 100%);
  color: var(--white);
}

.angel-tradition-inner {
  width: min(100% - 48px, 860px);
  margin: 0 auto;
}

.angel-tradition-header {
  text-align: center;
  margin-bottom: 64px;
}

.angel-tradition-header h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(18px, 2.6vw, 28px);
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.angel-tradition-article {
  margin-bottom: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.angel-tradition-article:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.angel-tradition-article h3 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--gold);
}

.angel-tradition-article p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.80);
  font-size: 15px;
  line-height: 1.78;
}

.angel-tradition-article p:last-child {
  margin-bottom: 0;
}

.angel-tradition-article ul,
.angel-tradition-article ol {
  margin: 12px 0 16px;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.78;
}

.angel-tradition-article li {
  margin-bottom: 10px;
}

.angel-tradition-article strong {
  color: rgba(255, 255, 255, 0.94);
}

.angel-tradition-article blockquote {
  margin: 22px 0;
  padding: 16px 24px;
  border-left: 3px solid var(--gold);
  background: rgba(212, 175, 55, 0.06);
  font-style: italic;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.78;
  border-radius: 0 6px 6px 0;
}

.angel-tradition-close {
  text-align: center;
  margin-top: 52px;
  padding-top: 48px;
  border-top: 1px solid rgba(212, 175, 55, 0.18);
}

.angel-tradition-close em {
  display: block;
  font-family: var(--font-heading);
  font-size: 18px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.65;
  font-style: italic;
}

/* --- Legal pages in TC design --- */

.tc-legal-hero {
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 100px 24px 40px;
  background: linear-gradient(180deg, #09243f 0%, #0a2540 100%);
  text-align: center;
  color: var(--white);
}

.tc-legal-hero-content h1 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
}

.tc-legal-hero-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  letter-spacing: 0.5px;
}

.tc-legal-wrap {
  background: var(--paper);
  min-height: 60vh;
}

.tc-legal-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 52px 24px 80px;
}

.tc-legal-page h1 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--maroon);
  text-align: center;
  margin: 0 0 12px;
}

.tc-legal-date {
  text-align: center;
  color: #999;
  font-size: 13px;
  margin: 0 0 48px;
}

.tc-legal-page h2 {
  font-family: var(--font-heading);
  font-size: 17px;
  color: var(--navy-900);
  margin: 36px 0 10px;
  font-weight: 400;
}

.tc-legal-page p {
  color: #55514f;
  font-size: 14px;
  line-height: 1.8;
  margin: 0 0 14px;
}

.tc-legal-page ul {
  margin: 0 0 14px;
  padding-left: 20px;
  color: #55514f;
  font-size: 14px;
  line-height: 1.8;
}

.tc-legal-page li {
  margin-bottom: 6px;
}

.tc-legal-page a {
  color: var(--maroon);
  text-decoration: underline;
}

.tc-legal-page a:hover {
  color: var(--gold);
}

.tc-legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 52px;
  color: var(--maroon);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s ease;
}

.tc-legal-back:hover {
  color: var(--gold);
}

/* --- Responsive angel page --- */
@media (max-width: 760px) {
  .angel-hero {
    align-items: start;
    min-height: 660px;
    padding: 176px 0 70px;
  }

  .angel-hero-content {
    margin-top: 0;
  }

  .angel-form-container,
  .angel-result {
    padding: 32px 22px;
  }

  .angel-tradition {
    padding: 52px 0 60px;
  }

  .angel-tradition-header {
    margin-bottom: 44px;
  }
}

@media (max-width: 460px) {
  .angel-hero-content h1 {
    letter-spacing: 2px;
  }
}

/* ─── RTL (Arabic) ─── */
[dir="rtl"] .site-header {
  flex-direction: row-reverse;
}

[dir="rtl"] .main-nav {
  flex-direction: row-reverse;
}

@media (max-width: 560px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 14px;
    padding: 14px 16px;
  }

  .brand {
    justify-content: center;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
    gap: 12px 15px;
  }

  .main-nav a {
    font-size: 11.5px;
    letter-spacing: 1px;
    line-height: 1.4;
    padding: 3px 1px;
    white-space: nowrap;
  }

  .header-actions {
    justify-content: center;
  }

  .lang-dropdown {
    gap: 18px;
  }

  .lang-dropdown li {
    font-size: 12px;
    line-height: 1.35;
    padding: 4px 1px;
  }

  .product-payment-page {
    overflow-x: hidden;
  }

  .product-payment-hero {
    padding-top: 228px;
  }

  .product-payment-hero h1 {
    font-size: 32px;
    letter-spacing: 1.2px;
    overflow-wrap: anywhere;
  }

  .product-payment-hero .hero-kicker {
    letter-spacing: 2px;
    overflow-wrap: anywhere;
  }

  .product-payment-section {
    padding: 42px 0;
  }

  .product-payment-section .container {
    width: min(100% - 28px, 1100px);
  }

  .product-payment-grid,
  .product-payment-main {
    width: 100%;
    gap: 22px;
  }

  .product-payment-summary,
  .product-payment-copy,
  .product-payment-main,
  .product-testimonials,
  .product-checkout-card {
    width: 100%;
    min-width: 0;
  }

  .product-payment-poster {
    padding: 12px;
  }

  .product-payment-poster img {
    width: 100%;
  }

  .product-payment-copy,
  .product-payment-main,
  .product-testimonials,
  .product-checkout-card {
    padding: 24px 18px;
  }

  .product-payment-copy h2,
  .product-payment-main h2,
  .product-testimonials .section-heading h2,
  .product-checkout-card h2 {
    font-size: 21px;
    letter-spacing: 1px;
    overflow-wrap: anywhere;
  }

  .product-payment-details .eyebrow,
  .product-payment-intro .eyebrow,
  .product-testimonials .eyebrow {
    letter-spacing: 2px;
    overflow-wrap: anywhere;
  }

  .product-payment-details .news-info-grid {
    grid-template-columns: 1fr;
  }

  .product-payment-details .news-info-grid div {
    padding: 16px;
  }

  .testimonial-carousel {
    margin-right: -18px;
    padding-right: 18px;
  }

  .testimonial-carousel blockquote {
    flex-basis: 88%;
    min-width: 0;
  }
}

[dir="rtl"] .header-actions {
  flex-direction: row-reverse;
}

[dir="rtl"] .lang-dropdown {
  right: auto;
  left: 0;
}

[dir="rtl"] .angel-hero-content {
  direction: rtl;
}

[dir="rtl"] .angel-form-container,
[dir="rtl"] .angel-form-section {
  direction: rtl;
  text-align: right;
}

[dir="rtl"] .angel-form-group label {
  text-align: right;
}

[dir="rtl"] .angel-form-group input {
  text-align: right;
}

[dir="rtl"] .angel-checkbox-label {
  flex-direction: row-reverse;
  gap: 10px;
}

[dir="rtl"] .angel-field-error {
  text-align: right;
}

[dir="rtl"] .angel-tradition {
  direction: rtl;
  text-align: right;
}

[dir="rtl"] .angel-tradition-article ul,
[dir="rtl"] .angel-tradition-article ol {
  padding-right: 20px;
  padding-left: 0;
}

[dir="rtl"] .angel-tradition-article blockquote {
  border-right: 3px solid var(--gold);
  border-left: none;
  padding-right: 20px;
  padding-left: 0;
  margin-right: 0;
  margin-left: auto;
}

[dir="rtl"] .angel-result {
  direction: rtl;
  text-align: right;
}

[dir="rtl"] .footer-grid {
  direction: rtl;
}

[dir="rtl"] .footer-brand .socials {
  flex-direction: row-reverse;
}

[dir="rtl"] .tc-legal-page {
  direction: rtl;
  text-align: right;
}

[dir="rtl"] .tc-legal-hero-content {
  direction: rtl;
}
