:root {
  --site-bg: #030712;
  --site-bg-soft: #080c16;
  --site-card: rgba(9, 14, 24, 0.84);
  --site-card-strong: rgba(15, 17, 28, 0.94);
  --site-gold: #f0bf55;
  --site-gold-2: #ffd98a;
  --site-cream: #fff8ed;
  --site-muted: rgba(255, 248, 237, 0.68);
  --site-border: rgba(240, 191, 85, 0.22);
  --site-border-soft: rgba(255, 255, 255, 0.09);
  --site-purple: #241126;
  --site-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --site-radius: 24px;
  --site-max: 1320px;
  --site-page-width: calc(100%);
  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-body: "Poppins", "Noto Sans Devanagari", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.website-body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 86% 8%, rgba(240, 191, 85, 0.09), transparent 28rem),
    radial-gradient(circle at 10% 42%, rgba(96, 39, 96, 0.2), transparent 24rem),
    linear-gradient(180deg, #02050c 0%, #050713 48%, #07040d 100%);
  color: var(--site-cream);
  font-family: var(--font-body);
  line-height: 1.6;
}

body.website-menu-open { overflow: hidden; }
a { color: inherit; }
img { max-width: 100%; display: block; }
.website-skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 500;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--site-gold);
  color: #160d05;
  transition: top 0.2s ease;
}
.website-skip-link:focus { top: 1rem; }

.website-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.website-header {
  position: fixed;
  top: 0;
  left:0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: var(--site-page-width);
  margin: 0 auto;
  padding: 1.1rem 2rem;
  transition: background 0.25s ease, padding 0.25s ease, border-color 0.25s ease;
}
.website-header.is-scrolled {
  background: rgba(3, 7, 18, 0.84);
  backdrop-filter: blur(20px) saturate(150%);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
}
.website-header__brand img { width: 190px; height: auto; }
.website-header__nav {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.website-header__close {
  display: none;
}
.website-header__nav > a:not(.website-button) {
  position: relative;
  color: var(--site-cream);
  text-decoration: none;
  font-size: 0.94rem;
}
.website-header__nav > a:not(.website-button)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.7rem;
  width: 100%;
  height: 2px;
  border-radius: 99px;
  background: var(--site-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s ease;
}
.website-header__nav > a:hover::after,
.website-header__nav > a.is-active::after { transform: scaleX(1); }
.website-header__nav > a.is-active { color: var(--site-gold); }
.website-header__toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--site-border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--site-cream);
  cursor: pointer;
}
.website-header__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
}

.website-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 48px;
  padding: 0.75rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: linear-gradient(270deg, #ffe29b, #d89a2c);
  color: #170c05;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 16px 42px rgba(216, 154, 44, 0.22);
  cursor: pointer;
}
.website-button--ghost {
  background: rgba(255, 255, 255, 0.035);
  color: var(--site-cream);
  border-color: var(--site-border);
  box-shadow: none;
}
.website-button--nav { min-height: 42px; padding-inline: 1.1rem; }

.website-hero {
  --website-hero-top-gap: 7.4rem;
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: center;
  width: var(--site-page-width);
  padding: var(--website-hero-top-gap) 2rem 3rem;
  overflow: hidden;
  border-bottom: 1px solid var(--site-border);
}
.website-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 7, 18, 0.98) 0%, rgba(3, 7, 18, 0.82) 33%, rgba(3, 7, 18, 0.14) 70%),
    var(--hero-image) bottom center / cover no-repeat;
  filter: saturate(1.12) contrast(1.05);
}
.website-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  z-index: -1;
  background: linear-gradient(0deg, var(--site-bg), transparent);
}
.website-hero__content { max-width: 760px; }
.website-eyebrow {
  margin: 0 0 0.75rem;
  color: var(--site-gold);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.website-hero h1,
.website-section__heading h2,
.website-legal-list h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.03em;
}
.website-hero h1 { font-size: 5.2rem; }
.website-hero h1 span { color: var(--site-gold-2); }
.website-decorator {
  width: 100%;
  height: 2px;
  margin: 1.45rem 0;
  background: linear-gradient(90deg, var(--site-gold), transparent);
}
.website-hero__description {
  max-width: 680px;
  margin: 0 0 2rem;
  color: var(--site-muted);
  font-size: 1.08rem;
}
.website-hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.website-breadcrumb {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 2rem;
  color: rgba(255,255,255,0.78);
  font-size: 0.9rem;
}
.website-breadcrumb a { text-decoration: none; }

.website-shell {
  width: var(--site-page-width);
  margin: 2rem auto;
  display: grid;
  gap: 1.15rem;
  padding: 0 2rem;
}
.website-section {
  padding: 1.55rem;
  border: 1px solid var(--site-border-soft);
  border-radius: 22px;
  background:
    radial-gradient(circle at 0% 0%, rgba(240, 191, 85, 0.055), transparent 24rem),
    linear-gradient(145deg, rgba(8, 13, 23, 0.88), rgba(7, 8, 16, 0.78));
  box-shadow: var(--site-shadow);
  margin-bottom: 2rem;
}
.website-section__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.website-section__heading h2 {
  color: var(--site-gold-2);
  font-size: 3rem;
}
.website-section__heading p { margin: 0.35rem 0 0; color: var(--site-muted); }
.website-rail, .website-grid {
  display: grid;
  gap: 1rem;
}
.website-rail {
  grid-auto-flow: column;
  grid-auto-columns: minmax(180px, 1fr);
  overflow-x: auto;
  padding-bottom: 0.4rem;
  scrollbar-width: none;
}
.website-rail::-webkit-scrollbar { display: none; }
.website-rail a,
.website-rail img {
  -webkit-user-drag: none;
  user-select: none;
}
.website-grid { grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
.website-grid--wide { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.website-card {
  position: relative;
  overflow: hidden;
  min-height: 238px;
  border: 1px solid var(--site-border-soft);
  border-radius: 18px;
  background: var(--site-card);
  text-decoration: none;
  color: var(--site-cream);
}
.website-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #111827;
}
.website-card__content { padding: 0.9rem; }
.website-card strong { display: block; line-height: 1.25; font-weight: 600; }
.website-card span, .website-card p { color: var(--site-muted); font-size: 0.82rem; }
.website-card p { margin: 0.35rem 0 0; }
.website-card--text { padding: 1.3rem; min-height: 170px; }
.website-card--text svg { color: var(--site-gold); }
.website-play-pill {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--site-gold);
  color: #180d05;
  font-weight: 600;
}
.website-radio-card span.website-play-pill {
    bottom: auto;
}
.website-filter-bar {
  display: grid;
  grid-template-columns: minmax(190px, 1fr) repeat(3, minmax(140px, 190px)) auto;
  gap: 0.8rem;
  margin-bottom: 1rem;
}
.website-filter-bar input,
.website-filter-bar select,
.website-contact-form input,
.website-contact-form select,
.website-contact-form textarea,
.website-cms-input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--site-border-soft);
  border-radius: 12px;
  background: rgba(255,255,255,0.045);
  color: var(--site-cream);
  padding: 0.8rem 1rem;
  font: inherit;
}
.website-filter-bar button { border: 0; cursor: pointer; }
.website-info-band, .website-cta-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--site-border);
  border-radius: 20px;
  overflow: hidden;
  background: var(--site-border);
}
.website-info-band__item {
  padding: 1.2rem;
  background: rgba(5, 9, 17, 0.52);
}
.website-info-band__item strong { color: var(--site-gold); display: block; }
.website-info-band__icon {
  width: 100px;
  height: 100px;
  flex: 0 0 100px;
  object-fit: cover;
  border: 1px solid rgba(240, 191, 85, 0.22);
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}
.website-cta-band {
  grid-template-columns: 1.5fr 1fr;
  align-items: center;
  padding: 2rem;
  background:
    radial-gradient(circle at left, rgba(240,191,85,0.2), transparent 34%),
    linear-gradient(135deg, rgba(40,18,42,0.94), rgba(6,10,18,0.96));
}
.website-cta-band h2 { margin: 0; font-family: var(--font-heading); font-size: 3.8rem; }
.website-cta-band p { color: var(--site-muted); }
.website-contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 1.5rem; }
.website-contact-panel { max-width: 100%; }
.website-contact-form-card { min-height: 0; padding: 1.8rem; }
.website-contact-card { padding: 1rem; border: 1px solid var(--site-border-soft); border-radius: 16px; background: rgba(255,255,255,0.035); }
.website-contact-card strong { color: var(--site-gold); }
.website-contact-form { display: grid; gap: 1.15rem; margin-top: 1.25rem; }
.website-contact-form label { display: grid; gap: 0.45rem; color: var(--site-text); font-weight: 500; }
.website-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.15rem; }
.website-contact-form textarea { min-height: 190px; resize: vertical; }
.website-form-message { margin: 1rem 0 0; padding: 0.9rem 1rem; border-radius: 8px; }
.website-form-message p { margin: 0; }
.website-form-message p + p { margin-top: 0.35rem; }
.website-form-message--success { border: 1px solid rgba(74, 222, 128, 0.28); background: rgba(74, 222, 128, 0.1); color: #b9f6ca; }
.website-form-message--error { border: 1px solid rgba(248, 113, 113, 0.28); background: rgba(248, 113, 113, 0.1); color: #ffc3c3; }
.website-notice { padding: 1rem; border-radius: 14px; margin-bottom: 1rem; }
.website-notice--success { background: rgba(74, 222, 128, 0.1); color: #b9f6ca; }
.website-notice--error { background: rgba(248, 113, 113, 0.1); color: #ffc3c3; }
.website-legal-list { overflow: hidden; border: 1px solid var(--site-border-soft); border-radius: 22px; }
.website-legal-item { display: grid; grid-template-columns:1fr; gap: 1.2rem; padding: 1.4rem; border-bottom: 1px solid var(--site-border-soft); background: rgba(7,12,22,0.74); min-height: 0; margin-bottom: 1rem;}
.website-legal-item:last-child { border-bottom: 0; }
.website-legal-item__number { color: var(--site-gold); font-family: var(--font-heading); font-size: 2.5rem; }
.website-legal-item h2 { font-size: 2rem; color: var(--site-gold-2); }
.website-legal-item p { color: var(--site-muted); margin-bottom: 0; }
.website-footer {
  width: 100%;
  margin: 2rem 0 0;
  padding: 2rem 2.2rem 0rem;
  display: grid;
  grid-template-columns: 1.25fr 1fr 0.7fr 1fr;
  gap: 2rem;
  border-top: 1px solid var(--site-border-soft);
  background:
    radial-gradient(circle at 6% 0%, rgba(240, 191, 85, 0.07), transparent 22rem),
    linear-gradient(180deg, rgba(8, 12, 22, 0.22), rgba(3, 4, 10, 0.86));
}
.website-footer img { width: 180px; margin-bottom: 1rem; }
.website-footer p, .website-footer a:not(.website-button) { color: var(--site-muted); font-size: 0.9rem; margin-top: 0;}
.website-footer a { display: block; text-decoration: none; margin: 0.35rem 0; }
.website-footer a.website-button {
    color: #170c05;
}
.website-footer h2 { color: var(--site-gold); font-family: var(--font-heading); font-size: 1.5rem; margin: 0; }
.website-footer__links {
  display: flex;
  gap: 1.4rem;
}
.website-footer__link-group {
  min-width: 0;
  flex: 1 1 0;
}
.website-footer__socials { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.website-footer__socials a { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid var(--site-border); border-radius: 50%; color: var(--site-gold); }
.website-footer__socials svg { width: 18px; height: 18px; }
.website-footer__social-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.website-footer__copy { grid-column: 1 / -1; text-align: center; }

/* ========================================================================== 
   Website homepage refinements
   ========================================================================== */
.website-homepage {
  --website-home-hero-top-gap: 7rem;
  --website-home-info-overlap: 4.5rem;
  --website-home-hero-bottom-gap: calc(5.5rem + var(--website-home-info-overlap));
  width: 100%;
  padding-bottom: 1rem;
}

.website-home-hero {
  position: relative;
  width: 100%;
  height: 760px;
  max-height: 760px;
  min-height: 100dvh;
  overflow: hidden;
  isolation: isolate;
}

.website-home-hero__slides,
.website-home-hero__slide {
  position: absolute;
  inset: 0;
}

.website-home-hero__slide {
  display: grid;
  align-items: center;
  height: 100%;
  padding: var(--website-home-hero-top-gap) 2rem var(--website-home-hero-bottom-gap);
  opacity: 0;
  pointer-events: none;
  transform: scale(1.025);
  transition: opacity 900ms ease, transform 1600ms ease;
}

.website-home-hero__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.website-home-hero__slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(2, 5, 12, 0.98) 0%, rgba(2, 5, 12, 0.84) 35%, rgba(2, 5, 12, 0.2) 68%, rgba(2, 5, 12, 0.1) 100%),
    linear-gradient(180deg, rgba(2, 5, 12, 0.1) 0%, rgba(2, 5, 12, 0.52) 86%, var(--site-bg) 100%),
    var(--home-hero-image) center right / cover no-repeat;
  filter: saturate(1.15) contrast(1.08);
}

.website-home-hero__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 73% 34%, rgba(240, 191, 85, 0.18), transparent 20rem),
    radial-gradient(circle at 10% 20%, rgba(6, 15, 32, 0.55), transparent 22rem);
}

.website-home-hero__copy {
  width: min(1200px, 70%);
}

.website-home-hero h1 {
  margin: 0;
  max-width: 100%;
  font-family: var(--font-heading);
  font-size: 6rem;
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.045em;
  color: var(--site-cream);
}

.website-home-hero__title-line,
.website-home-hero__title-highlight {
  display: block;
}

.website-home-hero__title-line {
  color: var(--site-cream);
  font-size: 0.5em;
  letter-spacing: -0.025em;
}

.website-home-hero__title-highlight {
  color: var(--site-gold-2);
}

.website-home-hero__copy > p:not(.website-eyebrow) {
  max-width: 100%;
  margin: 0 0 2rem;
  color: rgba(255, 248, 237, 0.78);
  font-size: 1.2rem;
  line-height: 1.55;
}

.website-home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.15rem;
  margin-bottom: 2rem;
}

.website-home-hero__dots {
  position: absolute;
  left: 50%;
  bottom: calc(var(--website-home-hero-bottom-gap) + 1.25rem);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(3, 7, 18, 0.42);
  backdrop-filter: blur(14px);
  transform: translateX(-50%);
}

.website-home-hero__dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 248, 237, 0.36);
  cursor: pointer;
  transition: width 220ms ease, background 220ms ease;
}

.website-home-hero__dots button.is-active {
  width: 34px;
  background: linear-gradient(90deg, #ffe29b, #d89a2c);
}

.website-home-info,
.website-home-section,
.website-home-cta {
  width: calc(var(--site-page-width) - 4rem);
  max-width: none;
  margin-inline: auto;
}

.website-home-info {
  margin-top: calc(var(--website-home-hero-bottom-gap) * -1);
  position: relative;
  z-index: 8;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

.website-home-info .website-info-band__item {
  display: flex;
  align-items: center;
  gap: 1.05rem;
  min-height: 118px;
}

.website-home-info .website-info-band__item span {
  display: block;
  margin-top: 0.22rem;
}

.website-home-section {
  padding: 1.55rem;
  margin-top: 1.15rem;
  border-radius: 22px;
  background:
    radial-gradient(circle at 0% 0%, rgba(240, 191, 85, 0.055), transparent 24rem),
    linear-gradient(145deg, rgba(8, 13, 23, 0.88), rgba(7, 8, 16, 0.78));
}

.website-home-section .website-section__heading h2 {
  font-size: 3rem;
}

.website-home-section .website-section__heading > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.2rem;
  border: 1px solid var(--site-border);
  border-radius: 11px;
  color: var(--site-cream);
  text-decoration: none;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.025);
}

.website-home-rail {
  grid-auto-columns: minmax(178px, 1fr);
  gap: 1.15rem;
}

.website-home-rail .website-card {
  min-height: 244px;
  border-color: rgba(240, 191, 85, 0.13);
  background: rgba(9, 14, 24, 0.9);
  transition: transform 180ms ease, border-color 180ms ease;
}

.website-home-rail .website-card:hover {
  transform: translateY(-3px);
  border-color: rgba(240, 191, 85, 0.45);
}

.website-person-card img,
.website-album-card img,
.website-raga-card img {
  aspect-ratio: 1 / 1.05;
}

.website-radio-grid,
.website-video-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.website-home-video-grid {
  grid-auto-columns: minmax(280px, 1fr);
}

.website-rail[data-dragging="true"] {
  cursor: grabbing;
  user-select: none;
}

.website-radio-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1rem;
  align-items: center;
  min-height: 128px;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(51, 30, 22, 0.86), rgba(8, 12, 22, 0.9));
}

.website-radio-card img {
  width: 80px;
  height: 80px;
  aspect-ratio: 1;
  border-radius: 14px;
}

.website-radio-card .website-card__content {
  padding: 0;
}

.website-video-card {
  min-height: 0;
}

.website-video-card iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    outline: none;
    border: 0;
}

.website-video-button {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.website-video-button img {
  aspect-ratio: 16 / 9;
}

.website-home-cta {
  display: grid;
  align-items: center;
  min-height: 260px;
  margin-top: 1.15rem;
  padding: 4.2rem 2.2rem;
  border-color: rgba(240, 191, 85, 0.24);
  background:
    linear-gradient(90deg, rgba(4, 7, 13, 0.96) 0%, rgba(4, 7, 13, 0.86) 42%, rgba(4, 7, 13, 0) 100%),
    linear-gradient(180deg, rgba(4, 7, 13, 0.12), rgba(4, 7, 13, 0.34)),
    var(--website-cta-image, url('/uploads/media/2026/07/6a368e2ec45b7d5546c73e4e63595a61.jpg')) center right / cover no-repeat;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

.website-home-cta__content {
  max-width: 100%;
}

.website-home-cta h2 {
  margin: 0;
  color: var(--site-gold-2);
  font-size: 3.15rem;
  line-height: 1.02;
}

.website-home-cta h2 span {
  display: block;
  color: var(--site-cream);
  font-size: 0.62em;
  font-weight: 600;
}

.website-home-cta p {
  max-width: 100%;
  margin: 0.65rem 0 1.35rem;
  color: rgba(255, 248, 237, 0.78);
  font-size: 1.02rem;
  line-height: 1.45;
}

.website-home-cta .website-button {
  width: 220px;
  box-shadow: 0 18px 42px rgba(216, 154, 44, 0.24);
}

/* ==========================================================================
   About page
   ========================================================================== */
.website-about-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255, 248, 237, 0.78);
  font-size: 0.9rem;
  letter-spacing: 0;
  text-transform: none;
}

.website-about-breadcrumb a {
  text-decoration: none;
}

.website-hero .website-hero__description strong {
  color: var(--site-gold-2);
  font-weight: 600;
}

.website-about-shell {
  gap: 0;
}

.website-about-story {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
  align-items: start;
  padding: 3.2rem 0;
  border-bottom: 1px solid var(--site-border);
}

.website-about-story__copy h2,
.website-about-experience h2,
.website-about-impact h2 {
  margin: 0 0 1.25rem;
  color: var(--site-cream);
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
}

.website-about-story__copy p:not(.website-eyebrow) {
  margin: 0 0 1.2rem;
  color: var(--site-muted);
  font-size: 1rem;
}

.website-about-story__media {
  position: relative;
  min-height: 390px;
}

.website-about-story__media > img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  border: 1px solid var(--site-border);
  border-radius: 12px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

.website-about-story__badge {
  position: absolute;
  right: -1.1rem;
  bottom: -0.8rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 420px;
  padding: 1.05rem 1.4rem;
  border: 1px solid var(--site-border);
  border-radius: 12px;
  background: rgba(8, 12, 22, 0.94);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.36);
}

.website-about-story__badge img {
  width: 68px;
  height: 68px;
  flex: 0 0 68px;
}

.website-about-story__badge strong {
  color: var(--site-gold-2);
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 600;
  line-height: 1.08;
}

.website-about-principles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--site-border);
}

.website-about-principle {
  min-height: 310px;
  padding: 3rem 1.8rem 2.4rem;
  border-right: 1px solid var(--site-border-soft);
  text-align: center;
}

.website-about-principle:last-child {
  border-right: 0;
}

.website-about-impact__item img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.website-about-principle__icon {
  width: 70px;
  height: 70px;
  color: var(--site-gold);
  stroke-width: 1px;
}

.website-about-principle h2 {
  margin: 1.25rem 0 0.7rem;
  color: var(--site-cream);
  font-family: var(--font-heading);
  font-size: 1.8rem;
  line-height: 1.05;
}

.website-about-principle p {
  max-width: 330px;
  margin: 0;
  color: var(--site-muted);
  font-size: 0.92rem;
  margin: 0 auto;
}

.website-about-experience {
  padding: 3rem 0 2.2rem;
  border-bottom: 1px solid var(--site-border-soft);
}

.website-about-experience h2 {
  margin-bottom: 1.5rem;
}

.website-about-experience__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
}

.website-about-feature {
  min-height: 210px;
  padding: 1.35rem 1rem;
  border: 1px solid var(--site-border-soft);
  border-radius: 12px;
  background: rgba(9, 14, 24, 0.76);
  text-align: center;
}

.website-about-feature__icon {
  display: block;
  width: 70px;
  height: 70px;
  margin: 0 auto;
  object-fit: contain;
  color: var(--site-gold);
  stroke-width: 1.55;
}

.website-about-feature h3 {
  margin: 0.9rem 0 0.45rem;
  color: var(--site-gold-2);
  font-size: 0.98rem;
  line-height: 1.2;
}

.website-about-feature p {
  margin: 0;
  color: var(--site-muted);
  font-size: 0.82rem;
}

.website-about-impact {
  padding: 1.8rem 0 2.6rem;
  text-align: center;
}

.website-about-impact h2 {
  margin-bottom: 0;
}

.website-about-impact .website-decorator {
  width: 170px;
  margin: 0.85rem auto 1.8rem;
}

.website-about-impact__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
}

.website-about-impact__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  min-height: 90px;
  border-right: 1px solid var(--site-border-soft);
}

.website-about-impact__item:last-child {
  border-right: 0;
}


.website-about-impact__item strong {
  display: block;
  color: var(--site-gold-2);
  font-family: var(--font-body);
  font-size: 2.1rem;
  font-weight: 600;
  line-height: 1;
  text-align: left;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1, "lnum" 1;
}

.website-about-impact__item span {
  display: block;
  color: var(--site-muted);
  font-size: 0.82rem;
  text-align: left;
}

.website-about-cta {
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
}

.website-about-cta h2 {
  color: var(--site-cream);
}

@media (max-width: 1500px){
  .website-hero {
    min-height: 460px;
  }
  .website-hero h1 {
    font-size: 4rem;
  }
  .website-hero__description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  .website-home-hero h1 {
    font-size: 4rem;
  }
  .website-decorator {
      margin: 1rem 0;
  }
  .website-home-hero__title-line {
      margin-bottom: 0.5rem;
  }
  .website-home-hero__copy > p:not(.website-eyebrow) {
      font-size: 1rem;
      margin: 0 0 1rem;
  }
  .website-home-info .website-info-band__item {
      font-size: 0.8rem;
      min-height: 90px;
  }
  .website-info-band__icon {
      width: 60px;
      height: 60px;
      flex: 0 0 60px;
  }
  .website-homepage {
      --website-home-info-overlap: 3rem;
  }
  .website-home-section .website-section__heading h2 {
      font-size: 2.6rem;
  }
  .website-section__heading h2 {
      font-size: 2.6rem;
  }
  .website-section__heading p {
      font-size: 1rem;
  }
  .website-card__content {
      font-size: 0.9rem;
  }
  .website-home-section .website-section__heading > a {
      font-size: 0.9rem;
  }
  .website-home-cta {
      padding: 2.2rem 2.2rem;
  }
  .website-about-story {
      gap: 2rem;
      padding: 2.6rem 0;
  }
  .website-about-story__copy h2,
  .website-about-experience h2,
  .website-about-impact h2 {
      font-size: 2.6rem;
  }
  .website-about-feature {
      padding: 1rem 0.8rem;
  }
  .website-about-feature p {
      font-size: 0.76rem;
  }
}

@media (max-width: 1230px) {
  .website-header__toggle { display: block; }
  .website-header__nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(360px, 88vw);
    height: 100vh;
    padding: 5.4rem 1.5rem 2rem;
    flex-direction: column;
    align-items: stretch;
    background: rgba(3, 7, 18, 0.96);
    border-left: 1px solid var(--site-border);
    transform: translateX(100%);
    transition: transform 0.25s ease;
  }
  body.website-menu-open .website-header__nav { transform: translateX(0); }
  .website-header__close {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--site-border);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    color: var(--site-cream);
    cursor: pointer;
  }
  .website-header__close svg {
    width: 20px;
    height: 20px;
  }
  .website-header__nav > a:not(.website-button) { padding: 0.8rem 0; }
  .website-header__nav > a:not(.website-button)::after { bottom: 0.3rem; }
  .website-header__nav > .website-button {
    margin-top: auto;
  }
  .website-hero { min-height: 430px; padding-top: 7rem; }
  .website-hero h1 { font-size: 3.6rem; }
  .website-hero__description { font-size: 1rem; }
  .website-section { padding: 1.4rem; }
  .website-section__heading h2 { font-size: 2.6rem; }
  .website-info-band { grid-template-columns: repeat(2, 1fr); }
  .website-filter-bar { grid-template-columns: 1fr 1fr; }
  .website-contact-grid, .website-cta-band { grid-template-columns: 1fr; }
  .website-form-grid { grid-template-columns: 1fr; }
  .website-contact-form-card { padding: 1.4rem; }
  .website-cta-band { padding: 1.6rem; }
  .website-cta-band h2 { font-size: 2.6rem; }
  .website-footer { grid-template-columns: 1fr 1fr; }

  .website-homepage {
    --website-home-info-overlap: 3rem;
  }

  .website-home-hero {
    min-height: 0;
  }

  .website-home-hero h1 {
    font-size: 3.6rem;
  }

  .website-home-section .website-section__heading h2 {
    font-size: 2.4rem;
  }

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

  .website-home-cta h2 {
    font-size: 2.3rem;
  }
  .website-header__nav {
      justify-content: flex-start;
      gap: 0.5rem;
  }
  .website-about-story {
      grid-template-columns: 1fr;
  }
  .website-about-story__copy p:not(.website-eyebrow) {
      max-width: none;
  }
  .website-about-story__media {
      min-height: 340px;
  }
  .website-about-story__media > img {
      min-height: 340px;
  }
  .website-about-principles {
      grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .website-about-principle:nth-child(2) {
      border-right: 0;
  }
  .website-about-principle:nth-child(-n + 2) {
      border-bottom: 1px solid var(--site-border-soft);
  }
  .website-about-experience__grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .website-about-impact__grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      row-gap: 1rem;
  }
  .website-about-impact__item:nth-child(3) {
      border-right: 0;
  }
}
@media (max-width: 960px){
  .website-eyebrow {
      font-size: 0.8rem;
      margin: 0 0 0.50rem;
  }
  .website-home-hero__copy {
      width: 100%;
  }
  .website-decorator {
      margin: 0.5rem 0;
  }
  .website-home-hero__actions {
      margin-bottom: 3rem;
  }
  .website-home-hero h1 {
      font-size: 3rem;
  }
  .website-home-info .website-info-band__item {
      font-size: 0.7rem;
      min-height: 0;
      gap: 0.5rem;
      padding: 0.7rem;
  }
  .website-home-hero__copy > p:not(.website-eyebrow) {
      font-size: 0.9rem;
  }  
  .website-button {
      padding: 0.55rem 1rem;
      gap: 0.5rem;
      min-height: 0;
      font-size: 0.8rem;
  }
  .website-section {
      padding: 1rem;
  }
  .website-hero {
      min-height: 380px;
      padding-top: 6.4rem;
      padding-bottom: 2rem;
  }
  .website-hero h1 {
      font-size: 3rem;
  }
  .website-hero__description {
      font-size: 0.9rem;
      margin-bottom: 1.25rem;
  }
  .website-breadcrumb {
      margin-bottom: 1.2rem;
      font-size: 0.8rem;
  }
  .website-section__heading h2 {
      font-size: 2rem;
  }
  .website-home-section .website-section__heading h2 {
      font-size: 2rem;
  }
  .website-section__heading p {
      font-size: 0.8rem;
  }
  .website-home-section .website-section__heading > a {
      font-size: 0.8rem;
      padding: 0.55rem 1rem;
  }
  .website-card__content {
      font-size: 0.8rem;
  }
  .website-card span, .website-card p {
      font-size: 0.72rem;
  }
  .website-home-cta h2 {
      font-size: 2rem;
  }
  .website-home-cta p {
      margin: 0.5rem 0 1rem;
      font-size: 0.8rem;
  }
  .website-cta-band {
      padding: 2rem;
      min-height: 0;
  }
  .website-cta-band h2 {
      font-size: 2rem;
  }
  .website-home-cta h2 span {
      margin-bottom: 0.3rem;
  }
  .website-radio-grid, .website-video-grid {
      grid-template-columns: 1fr;
  }
  .website-about-story__copy h2,
  .website-about-experience h2,
  .website-about-impact h2 {
      font-size: 2rem;
  }
  .website-about-story__copy p:not(.website-eyebrow),
  .website-about-principle p {
      font-size: 0.82rem;
  }
  .website-about-principles {
      grid-template-columns: 1fr 1fr;
  }
  .website-about-principle,
  .website-about-principle:nth-child(2),
  .website-about-principle:nth-child(-n + 2),
  .website-about-principle:last-child {
      min-height: 0;
      padding: 1.4rem 0;
      border-right: 0;
      border-bottom: 1px solid var(--site-border-soft);
  }
  .website-about-principle:last-child {
      border-bottom: 0;
  }
  .website-about-principle h2 {
      font-size: 1.55rem;
  }
  .website-about-experience {
      padding: 2rem 0 1.5rem;
  }
  .website-about-impact__item strong {
      font-size: 1.8rem;
  }
  .website-legal-item h2 {
      font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  .website-header,
  .website-hero,
  .website-shell,
  .website-home-hero__slide,
  .website-footer {
      padding-left: 1rem;
      padding-right: 1rem;
      margin-top: 0;
  }
  .website-footer {
      margin-top: 1rem;
  }
  .website-shell{
    margin: 1rem auto;
  }
  .website-home-info, .website-home-section, .website-home-cta{
    width: calc(var(--site-page-width) - 2rem);
  }
  .website-home-info {
      grid-template-columns: 1fr;
      margin-top: 0;
  }
  .website-eyebrow {
      font-size: 0.7rem;
  }
  .website-hero {
      min-height: 340px;
      margin-bottom: 1rem;
      padding-top: 5.8rem;
      padding-bottom: 1.6rem;
  }
  .website-hero h1 {
      font-size: 2.4rem;
  }
  .website-hero__description {
      font-size: 0.8rem;
  }
  .website-home-hero h1 {
      font-size: 2.4rem;
  }
  .website-home-hero__title-line {
      font-size: 0.6em;
  }
  .website-home-hero__copy > p:not(.website-eyebrow) {
      font-size: 0.8rem;
  }
  .website-home-hero__actions {
      margin-bottom: 1.5rem;
  }
  .website-button {
      font-size: 0.8rem;
  }
  .website-home-hero__dots {
      bottom: 1.25rem;
  }
  .website-home-hero__slide {
      padding-bottom: 3rem;
  }
  .website-header__nav{
    width: min(260px, 88vw);
  }
  .website-home-section .website-section__heading h2 {
      font-size: 1.6rem;
  }
  .website-section__heading p {
      font-size: 0.7rem;
  }
  .website-home-section .website-section__heading > a {
      font-size: 0.6rem;
      white-space: nowrap;
      line-height: 1;
  }
  .website-home-rail {
      grid-auto-columns: minmax(120px, 1fr);
      gap: 0.55rem;
  }
  .website-card {
    border-radius: 10px;
}
  .website-home-rail .website-card {
      min-height: auto;
  }
  .website-card__content {
      font-size: 0.7rem;
      padding: 0.6rem;
  }
  .website-card span, .website-card p {
      font-size: 0.62rem;
  }
  .website-section {
      padding: 0.7rem;
      margin-bottom: 1rem;
  }
  .website-section__heading h2 {
      font-size: 1.6rem;
  }
  .website-radio-card {
      min-height: 0;
      padding: 0.7rem;
      grid-template-columns: 50px 1fr;
  }
  .website-radio-card img {
      width: 50px;
      height: 50px;
      border-radius: 5px;
  }
  .website-home-video-grid {
      grid-auto-columns: minmax(200px, 1fr);
  }
  .website-cta-band {
      padding: 1rem;
      width: 100%;
  }
  .website-home-cta h2 {
      font-size: 1.7rem;
  }
  .website-home-cta p {
      font-size: 0.7rem;
  }
  .website-home-cta .website-button {
      width: 170px;
  }
  .website-footer {
      grid-template-columns: 1fr;
      gap: 1rem;
  }
  .website-about-breadcrumb {
      font-size: 0.7rem;
  }
  .website-about-story {
      padding: 1.8rem 0;
  }
  .website-about-story__media,
  .website-about-story__media > img {
      min-height: 260px;
  }
  .website-about-story__badge {
      position: static;
      max-width: none;
      margin-top: 0.8rem;
      padding: 0.85rem;
      justify-content: center;
  }
  .website-about-story__badge img {
      width: 42px;
      height: 42px;
      flex-basis: 42px;
  }
  .website-about-story__badge strong {
      font-size: 1.25rem;
  }
  .website-about-experience__grid,
  .website-about-impact__grid {
      grid-template-columns: 1fr 1fr;
  }
  .website-about-impact__item,
  .website-about-impact__item:nth-child(3) {
      justify-content: flex-start;
      border-right: 0;
      border-bottom: 1px solid var(--site-border-soft);
  }
  .website-about-impact__item:last-child {
      border-bottom: 0;
  }
  .website-grid {
      grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  }
}
@media (max-width: 480px) {
  .website-footer__links {
      flex-direction: column;
      gap: 0;
  }
  .website-footer__link-group {
      flex: auto;
  }
  .website-about-principles {
      grid-template-columns: 1fr;
  }
  .website-about-experience__grid, .website-about-impact__grid {
      grid-template-columns: 1fr;
  }
  section.website-about-experience p.website-eyebrow,
  section.website-about-experience h2 {
      text-align: center;
  }
  .website-about-impact__item, .website-about-impact__item:nth-child(3) {
      max-width: 320px;
      margin: 0 auto;
      width: 100%;
  }
  .website-legal-item h2 {
      font-size: 1.2rem;
  }
  .website-grid {
      grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  }
}
