:root {
  --bg: #071224;
  --bg-2: #09182d;
  --panel: #0a1628;
  --panel-2: #0c1a30;
  --line: rgba(197, 143, 67, 0.5);
  --line-soft: rgba(197, 143, 67, 0.24);
  --gold: #d6a24f;
  --gold-2: #f0cb82;
  --text: #f7efe4;
  --muted: #c7b8a4;
  --shadow: 0 18px 52px rgba(0, 0, 0, 0.34);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Open Sans", sans-serif;
  overflow-x: clip;
  background:
    radial-gradient(circle at 82% 8%, rgba(26, 64, 110, 0.22), transparent 18%),
    linear-gradient(180deg, #0a101f 0%, #0a101f 18%, var(--bg) 42%, #081427 100%);
}

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

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

button {
  font: inherit;
}

.container {
  width: min(93%, 1280px);
  margin: 0 auto;
}

.frame {
  background: linear-gradient(180deg, rgba(10, 22, 40, 0.96), rgba(8, 18, 33, 0.98));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.5;
}

.section {
  padding: 60px 0;
}

.section-tight {
  padding-top: 60px;
  padding-bottom: 60px;
}

.section-head {
  margin-bottom: 16px;
}

.section-head.split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.section-head a {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

main > .section:nth-of-type(odd) {
  position: relative;
}

main > .section:nth-of-type(even)::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 10%, rgba(25, 57, 96, 0.22), transparent 28%),
    linear-gradient(180deg, rgba(9, 22, 41, 0.64), rgba(13, 28, 49, 0.24));
  pointer-events: none;
  z-index: 0;
}

main > .section > .container {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  background: rgba(10, 16, 31, 0.96);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-tagline {
  color: rgba(247, 239, 228, 0.7);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: transparent;
  color: var(--gold-2);
  cursor: pointer;
}

.burger {
  position: relative;
  display: block;
  width: 20px;
  height: 14px;
}

.burger i {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.22s ease, opacity 0.22s ease, top 0.22s ease;
}

.burger i:nth-child(1) { top: 0; }
.burger i:nth-child(2) { top: 6px; }
.burger i:nth-child(3) { top: 12px; }

.menu-btn.is-open .burger i:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}

.menu-btn.is-open .burger i:nth-child(2) {
  opacity: 0;
}

.menu-btn.is-open .burger i:nth-child(3) {
  top: 6px;
  transform: rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 50px;
}

.site-nav a {
  color: rgba(247, 239, 228, 0.84);
  font-size: 0.92rem;
}

.site-nav a.active,
.site-nav a:hover {
  color: var(--gold);
}

.site-nav a.active::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 8px;
  background: var(--gold);
}

.hero-panel {
  padding-top: 0;
}

.hero-banner {
  position: relative;
  width: 100%;
  min-height: 640px;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  /* Match portrait studio base so cutout edges disappear */
  background-color: #0a101f;
  background-image:
    radial-gradient(ellipse 52% 70% at 82% 42%, rgba(28, 42, 68, 0.45) 0%, rgba(14, 22, 38, 0.18) 46%, transparent 74%),
    linear-gradient(180deg, #0a101f 0%, #0a101f 62%, #080e1a 100%);
}

.hero-banner::after {
  content: "";
  position: absolute;
  inset: 10% -40px 0 68%;
  background:
    repeating-linear-gradient(135deg, transparent 0 24px, rgba(214, 162, 79, 0.12) 24px 26px, transparent 26px 52px);
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(93%, 1280px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
  grid-template-areas:
    "copy media"
    "featured media";
  align-items: end;
  gap: 8px 8px;
  min-height: 640px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  grid-area: copy;
  width: 100%;
  max-width: 620px;
  padding: 48px 0 12px;
}

.hero-media {
  position: relative;
  z-index: 1;
  grid-area: media;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  align-self: stretch;
  min-height: 560px;
  margin-right: -2%;
  pointer-events: none;
}

.hero-media::before {
  content: "";
  position: absolute;
  right: 6%;
  bottom: 8%;
  width: min(78%, 420px);
  height: min(86%, 520px);
  border-radius: 50%;
  background: radial-gradient(ellipse at 55% 40%, rgba(36, 54, 86, 0.55) 0%, rgba(16, 26, 44, 0.22) 46%, transparent 72%);
  z-index: 0;
  pointer-events: none;
}

.hero-media img {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: min(118%, 680px);
  height: auto;
  max-height: 700px;
  object-fit: contain;
  object-position: right bottom;
  /* Soften bottom into the banner so no hard cut line remains */
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 68%, rgba(0, 0, 0, 0.7) 82%, rgba(0, 0, 0, 0.25) 92%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 68%, rgba(0, 0, 0, 0.7) 82%, rgba(0, 0, 0, 0.25) 92%, transparent 100%);
}

.featured-logos {
  grid-area: featured;
  display: grid;
  gap: 12px;
  margin-top: 18px;
  margin-bottom: 42px;
  padding-top: 18px;
  border-top: 1px solid rgba(247, 239, 228, 0.08);
  max-width: 620px;
}

.hero-copy h1 {
  margin: 14px 0 10px;
  color: var(--text);
  font-family: "Open Sans", sans-serif;
  font-size: clamp(3.4rem, 5.8vw, 5rem);
  font-weight: 600;
  line-height: 1.05;
}

.hero-subtitle {
  display: grid;
  gap: 10px;
  margin-top: 20px;
  color: var(--gold);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.5;
}

.hero-subtitle p,
.hero-text,
.featured-logos span,
.hero-eyebrow {
  margin: 0;
}

.hero-text {
  margin-top: 24px;
  max-width: 470px;
  color: rgba(247, 239, 228, 0.86);
  font-size: 0.96rem;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid var(--gold);
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover,
.slider-btn:hover,
.social-row a:hover {
  transform: translateY(-1px);
}

.btn-solid {
  background: linear-gradient(180deg, #edc06f, #c88d36);
  color: #1d1408;
}

.btn-outline {
  background: transparent;
  color: var(--gold-2);
}

.featured-logos span {
  display: block;
  color: rgba(247, 239, 228, 0.72);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured-strip {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 10px;
}

.featured-logos b {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  text-align: center;
  border: 1px solid rgba(214, 162, 79, 0.16);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(14, 27, 46, 0.92), rgba(10, 20, 36, 0.96)),
    radial-gradient(circle at top, rgba(214, 162, 79, 0.08), transparent 60%);
  color: rgba(247, 239, 228, 0.84);
  font-family: "Open Sans", sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.featured-logos b.tile-sm {
  grid-column: span 2;
}

.featured-logos b.tile-md {
  grid-column: span 3;
}

.featured-logos b.tile-lg {
  grid-column: span 5;
  font-size: 0.96rem;
  line-height: 1.12;
}

.about-frame {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(460px, 1.1fr);
  gap: 0;
  overflow: hidden;
}

.about-copy {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 28px 28px 26px;
  border-right: 1px solid var(--line);
  background:
    radial-gradient(circle at top left, rgba(214, 162, 79, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(11, 24, 43, 0.9), rgba(8, 18, 33, 0.96));
}

.about-copy h2 {
  margin: 0;
  max-width: 520px;
  color: var(--text);
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.56;
  letter-spacing: -0.03em;
}

.about-copy p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.68;
}

.about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.about-highlights span {
  padding: 10px 14px;
  border: 1px solid rgba(214, 162, 79, 0.18);
  border-radius: 999px;
  background: rgba(214, 162, 79, 0.08);
  color: rgba(247, 239, 228, 0.9);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.about-copy .btn {
  margin-top: 6px;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(10, 22, 40, 0.92), rgba(8, 18, 33, 0.98)),
    radial-gradient(circle at top right, rgba(214, 162, 79, 0.08), transparent 42%);
}

.expertise-head {
  grid-column: 1 / -1;
  padding: 0 4px 2px;
}

.expertise-item {
  min-height: 0;
  padding: 18px 18px 20px;
  border: 1px solid rgba(214, 162, 79, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(13, 28, 49, 0.96), rgba(8, 18, 33, 0.98)),
    radial-gradient(circle at top, rgba(214, 162, 79, 0.06), transparent 56%);
}

.icon-ring {
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.2rem;
}

.expertise-item h3 {
  margin: 10px 0 0;
  color: var(--text);
  font-family: "Open Sans", sans-serif;
  font-size: 1.22rem;
  font-weight: 500;
  line-height: 1.3;
}

.expertise-item p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.section-intro {
  max-width: 620px;
  margin: 0;
  color: rgba(247, 239, 228, 0.72);
  line-height: 1.6;
}

.journey-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(360px, 0.95fr);
  gap: 22px;
  align-items: stretch;
}

.journey-panel,
.impact-panel {
  padding: 24px 24px 26px;
}

.journey-panel {
  padding: 22px 24px 22px;
}

.panel-head {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}

.panel-head h3 {
  margin: 0;
  color: rgba(247, 239, 228, 0.88);
  font-family: "Open Sans", sans-serif;
  font-size: clamp(1.28rem, 1.8vw, 1rem);
  font-weight: 300;
  line-height: 2.04;
}

.timeline-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 2px 0 0;
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 104px 1fr;
  align-items: center;
  gap: 18px;
  min-height: 0;
  padding: 20px 16px 20px 16px;
  text-align: left;
  border: 1px solid rgba(214, 162, 79, 0.16);
  border-radius: 16px;
  background:
    radial-gradient(circle at left top, rgba(214, 162, 79, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(12, 24, 42, 0.98), rgba(7, 17, 31, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 6px 14px rgba(0, 0, 0, 0.08);
}

.timeline-item::before {
  content: "↓";
  position: absolute;
  left: 113px;
  top: 50%;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
  transform: translate(-50%, -50%);
}

.timeline-year {
  display: flex;
  align-items: center;
}

.timeline-year span {
  display: block;
  color: var(--gold);
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.timeline-copy {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding-left: 18px;
  border-left: 1px solid rgba(214, 162, 79, 0.26);
}

.timeline-copy i {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(214, 162, 79, 0.28);
  border-radius: 9px;
  background: rgba(214, 162, 79, 0.08);
  color: var(--gold);
  font-style: normal;
  font-size: 0.78rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.timeline-item h3 {
  margin: 0;
  max-width: 520px;
  color: var(--muted);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.45;
}

.impact-panel {
  display: grid;
  grid-template-rows: auto 1fr;
}

.stats-frame {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.stat-box {
  padding: 24px 18px 20px;
  text-align: left;
  border: 1px solid rgba(214, 162, 79, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(13, 28, 49, 0.98), rgba(8, 18, 33, 0.98)),
    radial-gradient(circle at top left, rgba(214, 162, 79, 0.12), transparent 62%);
}

.stat-box strong {
  display: block;
  color: var(--gold-2);
  font-family: "Open Sans", sans-serif;
  font-size: 2.7rem;
  font-weight: 800;
  line-height: 0.94;
}

.stat-box span {
  display: block;
  margin-top: 10px;
  max-width: 140px;
  color: rgba(247, 239, 228, 0.82);
  font-size: 0.92rem;
  line-height: 1.5;
}

.slider-actions {
  display: flex;
  gap: 10px;
}

.slider-btn {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(10, 22, 40, 0.92);
  color: var(--gold-2);
  cursor: pointer;
}

.slider-shell {
  overflow: hidden;
}

.slider-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(0, 1fr);
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.slider-track::-webkit-scrollbar {
  display: none;
}

.slider-card {
  scroll-snap-align: start;
}

.library-duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.library-panel {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 0;
  min-height: 100%;
  padding: 22px 22px 18px;
}

.library-panel .section-head {
  margin-bottom: 0;
  padding-bottom: 16px;
}

.library-panel .section-head.split {
  align-items: center;
  gap: 12px;
}

.library-panel .section-head a {
  flex: 0 0 auto;
  white-space: nowrap;
}

.library-panel .slider-shell {
  height: 100%;
  border: 1px solid rgba(214, 162, 79, 0.12);
  border-radius: 20px;
  background:
    radial-gradient(circle at top, rgba(214, 162, 79, 0.06), transparent 58%),
    linear-gradient(180deg, rgba(18, 30, 50, 0.95), rgba(10, 21, 38, 0.98));
}

.books-shelf {
  grid-auto-flow: column;
  grid-auto-columns: calc(50% - 12px);
  gap: 16px;
  height: 100%;
  padding: 18px;
}

.book-card {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 0.95 / 1;
  padding: 10px;
  border: 1px solid rgba(214, 162, 79, 0.12);
  border-radius: 16px;
  background:
    radial-gradient(circle at top, rgba(214, 162, 79, 0.08), transparent 55%),
    linear-gradient(180deg, rgba(12, 24, 42, 0.98), rgba(8, 18, 33, 0.98));
}

.book-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.36));
}

.poster-shelf {
  grid-auto-flow: column;
  grid-auto-columns: calc(50% - 12px);
  gap: 16px;
  height: 100%;
  padding: 18px;
}

.poster-card {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 0.9 / 1;
  padding: 10px;
  border: 1px solid rgba(214, 162, 79, 0.12);
  border-radius: 16px;
  background:
    radial-gradient(circle at top, rgba(214, 162, 79, 0.08), transparent 55%),
    linear-gradient(180deg, rgba(12, 24, 42, 0.98), rgba(8, 18, 33, 0.98));
}

.poster-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.34));
}

.podcast-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 12px;
}

.podcast-slider-shell {
  margin-top: 4px;
}

.podcast-shelf {
  align-items: stretch;
  grid-auto-columns: max-content;
  gap: 14px;
  padding: 2px 2px 8px;
}

.podcast-shelf .podcast-feature {
  width: min(560px, 78vw);
}

.podcast-shelf .episode-card {
  width: min(300px, 78vw);
}

.podcast-shelf .slider-card {
  height: 100%;
}

.podcast-feature {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  overflow: hidden;
}

.podcast-feature img {
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  object-position: center top;
}

.podcast-copy {
  padding: 18px 18px 16px;
}

.podcast-copy h3,
.blog-copy h3,
.blog-card h3,
.episode-card h3,
.service-item h3 {
  color: var(--text);
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}

.podcast-copy h3 {
  margin: 10px 0 0;
  font-size: 1.6rem;
  line-height: 1.18;
}

.podcast-copy p:not(.eyebrow) {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.podcast-play {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--gold-2);
  font-weight: 700;
}

.podcast-play span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.podcast-play.playing span {
  background: var(--gold);
  color: #1d1408;
}

.wave-row {
  display: flex;
  align-items: end;
  gap: 5px;
  height: 28px;
  margin-top: 14px;
}

.wave-row i {
  display: block;
  width: 4px;
  border-radius: 999px;
  background: rgba(199, 184, 164, 0.7);
}

.wave-row i:nth-child(1) { height: 10px; }
.wave-row i:nth-child(2) { height: 16px; }
.wave-row i:nth-child(3) { height: 9px; }
.wave-row i:nth-child(4) { height: 20px; }
.wave-row i:nth-child(5) { height: 14px; }
.wave-row i:nth-child(6) { height: 25px; }
.wave-row i:nth-child(7) { height: 12px; }
.wave-row i:nth-child(8) { height: 18px; }
.wave-row i:nth-child(9) { height: 9px; }
.wave-row i:nth-child(10) { height: 22px; }
.wave-row i:nth-child(11) { height: 14px; }
.wave-row i:nth-child(12) { height: 11px; }

.time-row {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  color: var(--muted);
}

.episode-card,
.blog-card,
.testimonial-card {
  background: linear-gradient(180deg, rgba(10, 22, 40, 0.96), rgba(8, 18, 33, 0.98));
}

.episode-card {
  overflow: hidden;
}

.episode-card img,
.blog-card img {
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
  object-position: center top;
}

.episode-card div {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 12px 14px 16px;
}

.episode-card small,
.episode-card span {
  color: var(--gold);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.episode-card h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.24;
}

.episode-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.58;
}

.episode-card .podcast-play {
  margin-top: 2px;
  font-size: 0.86rem;
}

.episode-card .podcast-play span {
  width: 34px;
  height: 34px;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 12px;
}

.blog-feature {
  position: relative;
  min-height: 360px;
  overflow: hidden;
}

.blog-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 12, 24, 0.08), rgba(4, 12, 24, 0.92));
}

.blog-copy {
  position: absolute;
  inset: auto 0 0;
  padding: 22px 20px;
}

.blog-copy .eyebrow,
.blog-copy h3,
.blog-copy p,
.blog-copy a {
  color: var(--text);
}

.blog-copy h3 {
  margin: 10px 0 0;
  font-size: 1.82rem;
  line-height: 1.14;
  max-width: 400px;
}

.blog-copy p {
  margin: 10px 0 0;
  max-width: 420px;
  line-height: 1.56;
}

.blog-copy a,
.blog-card a {
  display: inline-block;
  margin-top: 16px;
  color: var(--gold);
  font-weight: 700;
}

.blog-card div {
  padding: 14px 14px 18px;
}

.blog-card h3 {
  margin: 8px 0 0;
  font-size: 1.12rem;
  line-height: 1.28;
}

.blog-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.56;
}

.services-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
}

.service-item {
  min-height: 120px;
  padding: 18px 16px 16px;
  border-left: 1px solid var(--line);
}

.service-item:first-child {
  border-left: 0;
}

.service-item h3 {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.28;
}

.service-item p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.95fr;
  gap: 18px;
}

.trust-panel,
.partners-panel {
  padding: 0;
  overflow: hidden;
}

.trust-panel .section-head,
.partners-panel .section-head {
  padding: 24px 22px 0;
  margin-bottom: 0;
}

.trust-intro,
.partners-intro {
  margin: 10px 0 0;
  max-width: 560px;
  color: rgba(247, 239, 228, 0.72);
  font-size: 0.9rem;
  line-height: 1.65;
}

.trust-head {
  align-items: flex-start;
  gap: 16px;
  padding-right: 22px;
}

.testimonials-slider-shell {
  padding: 18px 22px 22px;
}

.testimonial-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 14px) / 2);
  gap: 14px;
  padding: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.testimonial-row::-webkit-scrollbar {
  display: none;
}

.testimonial-row .slider-card {
  scroll-snap-align: start;
}

.testimonial-card {
  padding: 18px 18px 16px;
  border: 1px solid rgba(214, 162, 79, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(12, 24, 42, 0.98), rgba(8, 18, 33, 0.98)),
    radial-gradient(circle at top, rgba(214, 162, 79, 0.07), transparent 58%);
}

.testimonial-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-card img {
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.testimonial-card p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.72;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card strong {
  color: var(--gold-2);
  font-size: 1rem;
}

.testimonial-card span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.partner-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 18px 22px 22px;
}

.partner-card {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(214, 162, 79, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(12, 24, 42, 0.98), rgba(8, 18, 33, 0.98)),
    radial-gradient(circle at top left, rgba(214, 162, 79, 0.08), transparent 60%);
  color: var(--text);
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.partner-card:hover {
  border-color: rgba(214, 162, 79, 0.4);
  transform: translateY(-2px);
}

.partner-card small {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.partner-card span {
  font-family: "Open Sans", sans-serif;
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1.15;
}

.site-footer {
  margin-top: 28px;
  padding: 0 0 18px;
  border-top: 1px solid var(--line-soft);
  background: linear-gradient(180deg, #050b15 0%, #091222 100%);
  color: var(--text);
}

.footer-inner {
  padding: 36px 0 28px;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 24px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(247, 239, 228, 0.1);
}

.footer-brand h3 {
  margin: 0;
  color: var(--gold-2);
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.footer-brand p {
  margin: 8px 0 0;
  color: rgba(247, 239, 228, 0.58);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1.2;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(214, 162, 79, 0.35);
  color: var(--gold-2);
  background: rgba(214, 162, 79, 0.06);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.footer-social a:hover {
  background: rgba(214, 162, 79, 0.16);
  border-color: var(--gold);
  color: var(--gold);
}

.footer-social svg {
  width: 15px;
  height: 15px;
}

.footer-label {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.2;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr) minmax(0, 1.2fr);
  gap: 28px 48px;
  align-items: start;
}

.footer-grid section {
  padding: 0;
  border: 0;
  min-width: 0;
}

.footer-cta h2 {
  margin: 0;
  max-width: 340px;
  color: var(--text);
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0;
}

.footer-cta .btn,
.footer-cta .footer-wa-btn {
  margin-top: 18px;
  min-height: 32px;
  height: 32px;
  padding: 0 12px;
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  gap: 8px;
  border-radius: 7px;
}

.footer-cta .footer-wa-btn .wa-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  font-size: 0.88rem;
  line-height: 1.35;
  color: rgba(247, 239, 228, 0.78);
}

.footer-list a {
  color: rgba(247, 239, 228, 0.78);
  transition: color 0.2s ease;
}

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

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.social-row a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(247, 239, 228, 0.18);
  color: var(--text);
}

.visit-label {
  margin-top: 16px;
}

.visit-link {
  margin: 8px 0 0;
  font-size: 0.96rem;
}

.footer-sign {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-sign h3 {
  margin: 10px 0 0;
  color: var(--gold);
  font-family: "Open Sans", sans-serif;
  font-size: 1.42rem;
  font-weight: 800;
  line-height: 1.08;
}

.footer-sign p {
  margin: 6px 0 0;
  font-size: 0.58rem;
  letter-spacing: 0.24em;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 8px;
  padding: 16px 0 0;
  border-top: 1px solid rgba(247, 239, 228, 0.1);
  font-size: 0.72rem;
  line-height: 1.4;
  color: rgba(247, 239, 228, 0.5);
}

.footer-bottom small {
  font-size: inherit;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-legal a {
  color: rgba(247, 239, 228, 0.5);
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: var(--gold-2);
}

@media (max-width: 1180px) {
  .hero-banner {
    min-height: 680px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.85fr);
    grid-template-areas:
      "copy media"
      "featured media";
    min-height: 680px;
    align-items: center;
  }

  .hero-copy {
    max-width: 520px;
    padding-top: 44px;
  }

  .hero-media {
    min-height: 480px;
  }

  .hero-media img {
    max-width: min(100%, 460px);
    max-height: 560px;
  }

  .hero-banner::after {
    inset: 10% -20px 0 52%;
  }

  .about-frame,
  .library-duo,
  .journey-layout,
  .podcast-grid,
  .blog-grid,
  .trust-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .about-frame {
    gap: 0;
  }

  .about-copy {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .expertise-grid,
  .services-row,
  .stats-frame {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-row {
    grid-auto-columns: calc((100% - 14px) / 2);
  }

  .books-shelf,
  .poster-shelf {
    grid-auto-columns: calc(50% - 10px);
  }

  .featured-strip {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .featured-logos b.tile-sm {
    grid-column: span 2;
  }

  .featured-logos b.tile-md {
    grid-column: span 3;
  }

  .featured-logos b.tile-lg {
    grid-column: span 6;
  }

  .journey-panel {
    padding: 28px 24px 26px;
  }

  .timeline-row {
    gap: 12px;
  }

  .timeline-item {
    grid-template-columns: 118px 1fr;
    gap: 18px;
    padding: 16px 18px 16px 20px;
    border-radius: 18px;
  }

  .timeline-item::before {
    left: 124px;
  }

  .timeline-item h3 {
    max-width: none;
  }

  .footer-brand-row {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .footer-cta {
    grid-column: auto;
  }
}

@media (max-width: 860px) {
  .menu-btn {
    display: inline-flex;
    flex-shrink: 0;
  }

  .brand-tagline {
    font-size: 0.62rem;
    letter-spacing: 0.14em;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(9, 18, 34, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav a {
    display: block;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 0.95rem;
  }

  .site-nav a.active::after {
    display: none;
  }

  .site-nav a.active,
  .site-nav a:hover {
    background: rgba(214, 162, 79, 0.1);
  }

  .site-nav.hidden {
    display: none;
  }

  .site-nav:not(.hidden) {
    display: flex;
  }

  .hero-banner {
    min-height: 0;
    background-color: #0a101f;
    background-image:
      radial-gradient(ellipse 80% 50% at 50% 88%, rgba(32, 48, 78, 0.45) 0%, transparent 70%),
      linear-gradient(180deg, #0a101f 0%, #0a101f 55%, #080e1a 100%);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "media"
      "copy"
      "featured";
    min-height: 0;
    gap: 0;
    width: min(92%, 1280px);
  }

  .hero-banner::after {
    inset: auto -20px 0 10%;
    height: 42%;
    opacity: 0.18;
  }

  .hero-media {
    min-height: 0;
    justify-content: center;
    margin: 12px 0 0;
  }

  .hero-media img {
    max-width: min(94%, 380px);
    max-height: 400px;
  }

  .hero-copy {
    width: 100%;
    max-width: none;
    padding: 18px 0 8px;
  }

  .hero-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    line-height: 1.55;
    max-width: 100%;
  }

  .hero-copy h1 {
    margin: 12px 0 8px;
    font-size: clamp(2.6rem, 12vw, 3.4rem);
    line-height: 1.08;
  }

  .hero-subtitle {
    gap: 8px;
    margin-top: 14px;
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .hero-text {
    margin-top: 18px;
    max-width: none;
    font-size: 0.92rem;
    line-height: 1.7;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 22px;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 46px;
  }

  .featured-logos {
    margin-top: 8px;
    margin-bottom: 28px;
    padding-top: 16px;
    max-width: none;
  }

  .featured-strip {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .featured-logos b.tile-sm,
  .featured-logos b.tile-md,
  .featured-logos b.tile-lg {
    grid-column: auto;
    min-height: 48px;
    padding: 10px 8px;
    font-size: 0.72rem;
    border-radius: 10px;
  }

  .section {
    padding: 36px 0;
  }

  .section-tight {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .section-head.split {
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px 12px;
  }

  .section-head a {
    font-size: 0.68rem;
  }

  .library-panel {
    padding: 16px 14px 14px;
  }

  .library-panel .section-head {
    padding-bottom: 12px;
    text-align: left;
  }

  .library-panel .section-head.split {
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
  }

  .library-panel .eyebrow {
    font-size: 0.82rem;
    letter-spacing: 0.1em;
  }

  .library-panel .slider-shell {
    border-radius: 14px;
  }

  .books-shelf,
  .poster-shelf {
    grid-auto-columns: 100%;
    gap: 12px;
    padding: 12px;
  }

  .book-card,
  .poster-card {
    max-width: none;
    width: 100%;
    margin: 0;
    aspect-ratio: 1 / 1;
    padding: 8px;
    border-radius: 12px;
  }

  .book-card img,
  .poster-card img {
    object-fit: contain;
  }

  .eyebrow {
    font-size: 0.95rem;
    letter-spacing: 0.08em;
  }

  .about-copy {
    padding: 22px 18px;
  }

  .about-copy h2 {
    font-size: 1.08rem;
    line-height: 1.45;
  }

  .about-highlights {
    gap: 8px;
  }

  .about-highlights span {
    width: 100%;
    text-align: center;
    font-size: 0.86rem;
    border-radius: 12px;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
    padding: 18px;
    gap: 12px;
  }

  .section-intro {
    max-width: none;
  }

  .journey-panel,
  .impact-panel {
    padding: 22px 16px 24px;
  }

  .panel-head {
    margin-bottom: 18px;
    gap: 8px;
  }

  .panel-head h3 {
    max-width: none;
    font-size: 1.12rem;
    line-height: 1.4;
  }

  .timeline-row {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 4px 0 2px 6px;
  }

  .timeline-row::before {
    content: "";
    position: absolute;
    left: 21px;
    top: 18px;
    bottom: 18px;
    width: 2px;
    border-radius: 2px;
    background: linear-gradient(
      180deg,
      rgba(214, 162, 79, 0.15) 0%,
      rgba(214, 162, 79, 0.65) 18%,
      rgba(214, 162, 79, 0.65) 82%,
      rgba(214, 162, 79, 0.15) 100%
    );
  }

  .services-row {
    grid-template-columns: 1fr;
  }

  .testimonial-row {
    grid-auto-columns: 86%;
  }

  .trust-head {
    padding-right: 14px;
  }

  .testimonials-slider-shell {
    padding: 14px 14px 16px;
  }

  .partner-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 14px 14px 16px;
  }

  .partner-card {
    min-height: 108px;
    gap: 8px;
    padding: 14px 12px 12px;
    border-radius: 14px;
    align-items: center;
    text-align: center;
  }

  .partner-card small {
    font-size: 0.62rem;
    letter-spacing: 0.06em;
  }

  .partner-card span {
    font-size: 1rem;
  }

  .timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: start;
    column-gap: 14px;
    row-gap: 6px;
    min-height: 0;
    margin: 0;
    padding: 0 0 22px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .timeline-item:last-child {
    padding-bottom: 0;
  }

  .timeline-item::before {
    display: none;
  }

  .timeline-year {
    grid-column: 2;
    grid-row: 1;
    justify-content: flex-start;
  }

  .timeline-year span {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-transform: none;
    line-height: 1.1;
  }

  .timeline-copy {
    display: contents;
    padding: 0;
    border-left: 0;
  }

  .timeline-copy i {
    position: relative;
    z-index: 1;
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 32px;
    height: 32px;
    flex-basis: 32px;
    margin-top: 0;
    border-radius: 999px;
    border: 2px solid rgba(214, 162, 79, 0.55);
    background:
      radial-gradient(circle at center, rgba(214, 162, 79, 0.35), rgba(10, 16, 31, 0.95) 62%);
    color: var(--gold-2);
    font-size: 0.7rem;
    box-shadow: 0 0 0 4px rgba(10, 16, 31, 0.92);
  }

  .timeline-item h3,
  .timeline-copy h3 {
    grid-column: 2;
    grid-row: 2;
    display: block;
    margin: 0;
    padding: 12px 14px 13px;
    max-width: none;
    border: 1px solid rgba(214, 162, 79, 0.22);
    border-radius: 14px;
    background:
      linear-gradient(135deg, rgba(214, 162, 79, 0.1), transparent 42%),
      linear-gradient(180deg, rgba(14, 26, 44, 0.98), rgba(8, 16, 30, 0.98));
    color: rgba(247, 239, 228, 0.92);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
  }

  .timeline-copy h3::before {
    content: none;
  }

  .stats-frame {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .stat-box {
    padding: 16px 12px 14px;
    text-align: center;
    border-radius: 14px;
  }

  .stat-box strong {
    font-size: 1.85rem;
  }

  .stat-box span {
    max-width: none;
    margin-top: 8px;
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .podcast-feature,
  .episode-card {
    grid-template-columns: 1fr;
  }

  .blog-feature {
    min-height: 280px;
  }

  .services-row {
    padding: 8px;
  }

  .service-item {
    padding: 18px 14px;
  }

  .footer-cta h2 {
    font-size: 0.98rem;
    line-height: 1.45;
    max-width: none;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .footer-legal {
    justify-content: center;
  }

  .does-grid,
  .card-grid-3,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .book-panel .card-grid-3,
  .community-actions {
    grid-template-columns: 1fr;
  }

  .section-head.split {
    align-items: flex-start;
  }

  .view-more-btn {
    width: 100%;
  }
}

/* —— Expansion sections —— */
.section-lead {
  margin: 10px 0 0;
  max-width: 640px;
  color: rgba(247, 239, 228, 0.72);
  font-size: 0.95rem;
  line-height: 1.65;
}

.section-cta {
  margin-top: 22px;
  display: flex;
  justify-content: flex-start;
}

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

.programmes-slider-shell {
  margin-top: 4px;
}

.programmes-shelf {
  grid-auto-columns: calc((100% - 32px) / 3);
  gap: 16px;
  padding: 2px 2px 8px;
}

.programmes-shelf .offer-card {
  height: 100%;
  min-height: 280px;
}

@media (max-width: 980px) {
  .programmes-shelf {
    grid-auto-columns: calc((100% - 16px) / 2);
  }
}

@media (max-width: 700px) {
  .programmes-shelf {
    grid-auto-columns: 86%;
  }

  .podcast-shelf .podcast-feature {
    width: min(88vw, 560px);
    grid-template-columns: 1fr;
  }

  .podcast-shelf .episode-card {
    width: min(78vw, 300px);
  }

  .podcast-shelf .podcast-feature img {
    min-height: 180px;
  }
}

.does-card,
.offer-card,
.award-card,
.video-card,
.event-card,
.faq-item {
  padding: 22px 20px;
}

.does-card h3,
.offer-card h3,
.award-card h3,
.video-card h3,
.event-card h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.3;
}

.does-card p,
.offer-card p,
.award-card p,
.video-card p,
.event-card p,
.faq-item p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.offer-card small,
.award-card small,
.event-date small {
  display: block;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.offer-card ul {
  margin: 14px 0 0;
  padding-left: 1.1rem;
  color: rgba(247, 239, 228, 0.78);
  font-size: 0.85rem;
  line-height: 1.55;
}

.text-link,
.link-btn {
  display: inline-block;
  margin-top: 14px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--gold-2);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}

.section-head.split .link-btn {
  margin-top: 0;
  white-space: nowrap;
}

.reveal-block {
  display: grid;
  gap: 18px;
}

.reveal-extra {
  margin-top: 18px;
}

.reveal-extra-grid {
  margin-top: 0;
}

.panel-extra {
  padding: 8px 4px 4px;
}

.muted-note {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.view-more-btn {
  justify-self: start;
}

.podcast-play {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.compact-card {
  display: block;
  padding: 20px;
}

.compact-card img {
  display: none;
}

.event-list {
  display: grid;
  gap: 14px;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.event-tile {
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 0;
}

.event-media {
  position: relative;
}

.event-media img {
  aspect-ratio: 16 / 11;
  object-fit: cover;
  object-position: center top;
}

.event-date-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  min-width: 64px;
  padding: 8px 10px;
  text-align: center;
  border: 1px solid rgba(214, 162, 79, 0.55);
  border-radius: 12px;
  background: rgba(8, 16, 30, 0.86);
  backdrop-filter: blur(6px);
}

.event-date-badge span {
  display: block;
  color: var(--gold-2);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.1;
}

.event-date-badge small {
  display: block;
  margin-top: 2px;
  color: rgba(247, 239, 228, 0.78);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.event-body {
  padding: 18px 18px 20px;
}

.event-body small {
  display: block;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.event-body h3 {
  margin: 8px 0 0;
  font-size: 1.02rem;
  line-height: 1.3;
}

.event-body p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.event-body .text-link {
  margin-top: 14px;
}

.event-card {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 18px;
  align-items: start;
}

.event-date {
  display: grid;
  place-content: center;
  text-align: center;
  min-height: 72px;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: rgba(214, 162, 79, 0.06);
}

.event-date span {
  color: var(--gold-2);
  font-size: 1.1rem;
  font-weight: 700;
}

@media (max-width: 1100px) {
  .events-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .events-grid {
    grid-template-columns: 1fr;
  }
}

.csr-panel,
.media-panel,
.community-panel,
.book-panel {
  padding: 28px 26px 30px;
}

.videos-slider-shell {
  margin-top: 4px;
}

.videos-shelf {
  grid-auto-columns: calc((100% - 32px) / 3);
  gap: 16px;
  padding: 2px 2px 8px;
}

.videos-shelf .video-card {
  height: 100%;
}

.video-card {
  overflow: hidden;
  padding: 0;
}

.video-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.video-card > div {
  padding: 16px 18px 20px;
}

@media (max-width: 980px) {
  .videos-shelf {
    grid-auto-columns: calc((100% - 16px) / 2);
  }
}

@media (max-width: 700px) {
  .videos-shelf {
    grid-auto-columns: 86%;
  }
}

.award-card img {
  border-radius: 12px;
  margin-bottom: 14px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.award-item {
  display: grid;
  justify-items: start;
  align-content: start;
  gap: 10px;
  min-height: 180px;
  padding: 18px 14px 16px;
  text-align: left;
}

.award-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold-2);
  background: rgba(214, 162, 79, 0.06);
}

.award-icon svg {
  width: 20px;
  height: 20px;
}

.award-item h3 {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.3;
  color: var(--text);
}

.award-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .awards-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .awards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 20px;
  font-weight: 700;
  font-size: 1rem;
}

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

.faq-item[open] summary {
  color: var(--gold-2);
  border-bottom: 1px solid var(--line-soft);
}

.faq-item p {
  margin: 0;
  padding: 16px 20px 20px;
}

.community-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.community-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 28px;
  align-items: start;
}

.community-copy .section-lead {
  max-width: 420px;
}

.community-social {
  margin-top: 22px;
}

.community-social-label {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.community-social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.community-social-row a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold-2);
  background: rgba(214, 162, 79, 0.06);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.community-social-row a:hover {
  background: rgba(214, 162, 79, 0.16);
  border-color: var(--gold);
  color: var(--gold-2);
}

.community-social-row svg {
  width: 18px;
  height: 18px;
}

.community-forms {
  display: grid;
  gap: 14px;
}

.community-form {
  padding: 18px 18px 16px;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  background: rgba(8, 18, 33, 0.55);
}

.community-form label {
  display: block;
  margin: 0 0 10px;
  color: var(--gold-2);
  font-size: 0.92rem;
  font-weight: 700;
}

.community-form-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}

.community-form input {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: rgba(7, 14, 26, 0.9);
  color: var(--text);
  font: inherit;
  outline: none;
}

.community-form input::placeholder {
  color: rgba(199, 184, 164, 0.55);
}

.community-form input:focus {
  border-color: var(--gold);
}

.community-form .btn {
  white-space: nowrap;
}

.community-form small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.community-form.is-invalid input {
  border-color: #c26a5a;
}

@media (max-width: 900px) {
  .community-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .community-form-row {
    grid-template-columns: 1fr;
  }

  .community-form .btn {
    width: 100%;
  }
}

.faq-book-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.faq-column,
.book-panel.book-column {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  height: 100%;
  padding: 20px 18px 16px;
}

.faq-column .section-head,
.book-column .section-head {
  margin-bottom: 12px;
}

.faq-column .section-lead,
.book-column .section-lead {
  margin-top: 6px;
  font-size: 0.88rem;
  line-height: 1.5;
}

.faq-column .faq-list {
  flex: 1;
  gap: 8px;
}

.faq-column .faq-item {
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: rgba(8, 18, 33, 0.55);
}

.faq-column .faq-item summary {
  padding: 12px 14px;
  font-size: 0.92rem;
}

.faq-column .faq-item p {
  padding: 0 14px 12px;
  font-size: 0.84rem;
  line-height: 1.5;
}

.book-panel h2 {
  margin: 6px 0 0;
  max-width: none;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  line-height: 1.25;
}

.book-offers {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  flex: 1;
  align-content: stretch;
}

.book-panel .card-grid-3 {
  margin-top: 22px;
}

.book-panel .offer-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: rgba(8, 18, 33, 0.55);
  padding: 12px 12px 12px 14px;
}

.book-panel .offer-card h3 {
  margin: 0;
  font-size: 0.95rem;
}

.book-panel .offer-card p {
  margin: 4px 0 0;
  font-size: 0.8rem;
  line-height: 1.4;
}

.book-panel .btn {
  margin-top: 0;
  min-height: 30px;
  padding: 4px 10px;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  gap: 6px;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn-whatsapp .wa-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.book-panel .btn-whatsapp .wa-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

@media (max-width: 980px) {
  .faq-book-grid {
    grid-template-columns: 1fr;
  }

  .faq-column,
  .book-panel.book-column {
    height: auto;
  }
}

@media (max-width: 700px) {
  .book-panel .offer-card {
    grid-template-columns: 1fr;
  }

  .book-panel .btn {
    width: 100%;
  }
}

.book-alt {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.book-alt a {
  color: var(--gold-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-sitemap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 28px;
  row-gap: 10px;
}

@media (max-width: 980px) {
  .does-grid,
  .card-grid-3 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .does-grid,
  .card-grid-3 {
    grid-template-columns: 1fr;
  }

  .csr-panel,
  .media-panel,
  .community-panel,
  .book-panel {
    padding: 22px 18px 24px;
  }
}
