:root {
  --color-primary: #393185;
  --color-accent: #ef7f1a;
  --color-text: #292929;
  --color-muted: #5c5c6e;
  --color-surface: #f6f5fb;
  --color-white: #ffffff;
  --font-display: "Manrope", "Segoe UI", sans-serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --radius: 18px;
  --shadow: 0 20px 50px rgba(57, 49, 133, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background:
    radial-gradient(circle at 10% 0%, rgba(239, 127, 26, 0.12), transparent 35%),
    radial-gradient(circle at 90% 10%, rgba(57, 49, 133, 0.14), transparent 40%),
    linear-gradient(180deg, #fbfaff 0%, #f3f1fa 45%, #ffffff 100%);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1140px, calc(100% - 2rem)); margin-inline: auto; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.98);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: calc(100% - 104px);
  max-width: none;
  margin-left: 88px;
  margin-right: 16px;
  gap: 1.25rem; min-height: 78px;
}
.brand { display: flex; flex-shrink: 0; align-items: center; }
.brand img { height: 46px; width: auto; }
.nav { display: flex; align-items: center; justify-content: flex-end; gap: clamp(.2rem, .5vw, .55rem); }
.nav a { color: var(--color-muted); white-space: nowrap; }
.nav > a,
.nav-item > a {
  display: flex;
  align-items: center;
  padding: .72rem clamp(.65rem, 1vw, 1rem);
  border-radius: 11px;
  font-size: clamp(.9rem, 1vw, 1.03rem);
  font-weight: 700;
  transition: color .2s, background .2s, box-shadow .2s, transform .2s;
}
.nav > a.is-active,
.nav-item.is-active > a,
.nav > a:hover,
.nav > a:focus-visible,
.nav-item:hover > a,
.nav-item:focus-within > a {
  color: #fff;
  background: var(--color-primary);
  box-shadow: 0 9px 22px rgba(57,49,133,.2);
  transform: translateY(-1px);
}
.nav-item { position: static; }
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 88px;
  right: 0;
  z-index: 60;
  padding: 0;
  border-radius: 0 0 22px 22px;
  background: rgba(255,255,255,.985);
  box-shadow: 0 24px 55px rgba(29,24,72,.14);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
}
.nav-dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 12px;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega-menu-inner {
  display: grid;
  grid-template-columns: minmax(230px, 290px) 1fr;
  gap: clamp(1.5rem, 3vw, 3.5rem);
  width: min(1180px, calc(100% - 4rem));
  margin-inline: auto;
  padding: 2rem 0 2.2rem;
}
.mega-menu-intro {
  padding: 1.25rem 1.35rem;
  border-radius: 16px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 10%, rgba(239,127,26,.55), transparent 38%),
    linear-gradient(135deg, #27215f, var(--color-primary));
}
.mega-menu-intro > span {
  display: block;
  margin-bottom: .7rem;
  color: #ffc58f;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.mega-menu-intro strong {
  display: block;
  font-size: 1.2rem;
  line-height: 1.3;
}
.mega-menu-intro p {
  margin: .65rem 0 0;
  color: rgba(255,255,255,.76);
  font-size: .82rem;
  line-height: 1.6;
}
.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: center;
  gap: .55rem .8rem;
}
.nav .mega-menu-link {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 20px;
  align-items: center;
  gap: .75rem;
  min-height: 70px;
  padding: .75rem .85rem;
  border: 1px solid transparent;
  border-radius: 12px;
  white-space: normal;
  transition: color .2s, border-color .2s, background .2s, transform .2s;
}
.nav .mega-menu-link:hover {
  color: var(--color-primary);
  border-color: rgba(57,49,133,.09);
  background: var(--color-surface);
  transform: translateX(3px);
}
.nav .mega-menu-link.is-active {
  color: var(--color-primary);
  border-color: rgba(57,49,133,.12);
  background: rgba(57,49,133,.06);
}
.mega-menu-number {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 9px;
  color: var(--color-primary);
  background: rgba(57,49,133,.08);
  font-size: .68rem;
  font-weight: 800;
}
.mega-menu-link strong {
  display: block;
  margin-bottom: .15rem;
  color: var(--color-text);
  font-size: .9rem;
}
.mega-menu-link small {
  display: block;
  color: var(--color-muted);
  font-size: .72rem;
  line-height: 1.4;
}
.nav .mega-menu-link > svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  transition: transform .2s;
}
.nav .mega-menu-link:hover > svg { transform: translateX(3px); }
.header-actions { display: flex; flex-shrink: 0; align-items: center; gap: .7rem; }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(57,49,133,.16);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--color-primary);
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle.is-open { border-color: var(--color-primary); background: var(--color-primary); }
.nav-toggle.is-open span { background: #fff; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 78px 0 0;
  z-index: 55;
  background: rgba(16,13,42,.45);
  animation: fadeIn .2s ease both;
}
.mobile-nav-panel {
  max-height: 100%;
  padding: 1rem 1.15rem 2rem;
  overflow-y: auto;
  background: #fff;
  box-shadow: 0 20px 40px rgba(29,24,72,.16);
  animation: slideDown .25s ease both;
}
.mobile-nav-panel > a,
.mobile-nav-group > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .95rem .35rem;
  border-bottom: 1px solid rgba(57,49,133,.08);
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.mobile-nav-panel > a.is-active,
.mobile-nav-group > summary.is-active,
.mobile-nav-group a.is-active {
  color: var(--color-primary);
}
.mobile-nav-group a.is-active {
  font-weight: 800;
}
.mobile-nav-group > summary::-webkit-details-marker { display: none; }
.mobile-nav-group > summary svg {
  width: 12px;
  fill: none;
  stroke: var(--color-primary);
  stroke-width: 1.8;
  transition: transform .2s;
}
.mobile-nav-group[open] > summary svg { transform: rotate(180deg); }
.mobile-nav-group[open] > summary { color: var(--color-primary); }
.mobile-nav-group a {
  display: block;
  padding: .7rem .35rem .7rem 1.2rem;
  border-bottom: 1px solid rgba(57,49,133,.05);
  color: var(--color-muted);
  font-size: .9rem;
  font-weight: 600;
}
.mobile-nav-social {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.25rem;
}
.mobile-nav-social a {
  padding: .5rem .85rem;
  border: 1px solid rgba(57,49,133,.14);
  border-radius: 999px;
  color: var(--color-primary);
  font-size: .78rem;
  font-weight: 700;
  text-transform: capitalize;
}
body.nav-open { overflow: hidden; }

.lang-switch { display: flex; gap: .4rem; }
.lang-switch a {
  padding: .35rem .55rem; border-radius: 999px; font-size: .78rem; font-weight: 700;
  border: 1px solid rgba(57,49,133,.15); color: var(--color-primary);
}
.lang-switch a.active { background: var(--color-primary); color: #fff; }

.social-rail {
  position: fixed;
  left: 0;
  top: 78px;
  bottom: 0;
  z-index: 40;
  display: flex;
  width: 88px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: .8rem;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
}
.social-rail-title {
  color: var(--color-primary);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.social-rail-line {
  width: 1px;
  height: 46px;
  background: linear-gradient(to bottom, transparent, rgba(57,49,133,.3));
}
.social-rail-line-bottom {
  background: linear-gradient(to bottom, rgba(57,49,133,.3), transparent);
}
.social-rail-links {
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.social-rail-links a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(57,49,133,.14);
  border-radius: 50%;
  color: var(--color-primary);
  background: rgba(255,255,255,.92);
  box-shadow: 0 8px 24px rgba(57,49,133,.08);
  transition: color .2s, background .2s, border-color .2s, transform .2s;
}
.social-rail-links a:hover {
  color: #fff;
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateX(4px);
}
.social-rail-links svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  stroke: none;
}
main,
.site-footer {
  margin-left: 88px;
}

.hero {
  position: relative;
  height: 560px;
  min-height: 560px;
  max-height: 560px;
  overflow: visible; border-radius: 0 0 34px 0;
  background: #1d1848;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  border-radius: inherit;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity .9s ease, transform 6.5s ease;
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(10,9,24,.88) 0%, rgba(29,24,72,.7) 42%, rgba(29,24,72,.2) 78%);
}
.hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: calc(100% - 96px);
  max-width: none;
  margin: 0 48px;
  padding: 3rem 500px 7rem 0;
  color: #fff;
  animation: rise .9s ease both;
}
.hero-content.is-changing { animation: heroTextIn .55s ease both; }
.hero-content h1 {
  display: -webkit-box;
  overflow: hidden;
  font-family: var(--font-display);
  max-width: 720px;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.12; margin: 0 0 1rem; letter-spacing: -.025em;
  text-transform: uppercase;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.hero-content p {
  display: -webkit-box;
  max-width: 38rem;
  overflow: hidden;
  font-size: 1rem;
  opacity: .9;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.hero-navigation {
  position: absolute;
  left: 48px;
  right: 48px;
  bottom: 30px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.hero.has-president .hero-navigation { right: 575px; }
.hero-navigation-left {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  width: min(430px, 72%);
}
.hero-count {
  display: flex;
  flex: 0 0 auto;
  align-items: baseline;
  gap: .3rem;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.hero-count strong {
  font-size: 1.45rem;
  line-height: 1;
}
.hero-count span {
  color: rgba(255,255,255,.55);
  font-size: .78rem;
  font-weight: 700;
}
.hero-progress {
  display: flex;
  align-items: center;
  gap: .55rem;
  width: 100%;
}
.hero-progress button {
  flex: 1;
  height: 14px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.hero-progress button span {
  position: relative;
  display: block;
  height: 2px;
  overflow: hidden;
  background: rgba(255,255,255,.35);
}
.hero-progress button span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-accent);
  transform: translateX(-101%);
}
.hero-progress button.active span::after {
  animation: heroProgress 6s linear forwards;
}
.hero-arrows { display: flex; }
.hero-arrows button {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255,255,255,.72);
  background: rgba(10,9,24,.35);
  color: #fff;
  cursor: pointer;
  transition: color .2s, background .2s;
}
.hero-arrows button + button { border-left: 0; }
.hero-arrows button:hover { color: #1a1738; background: #fff; }
.hero-arrows svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.president-feature {
  position: absolute;
  right: 48px;
  bottom: -110px;
  z-index: 6;
  width: min(500px, calc(100% - 96px));
  min-height: 350px;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 25px 60px rgba(22,18,59,.22);
}
.president-feature-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  margin: 0 1.35rem;
  border-bottom: 2px solid rgba(239,127,26,.5);
}
.president-feature-head > span {
  color: var(--color-primary);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .035em;
  text-transform: uppercase;
}
.president-feature-head a {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: var(--color-muted);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.president-feature-head a:hover { color: var(--color-accent); }
.president-feature-head svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}
.president-feature-body {
  position: relative;
  min-height: 292px;
  padding: 1rem 205px 1rem 1.35rem;
}
.president-feature-copy { position: relative; z-index: 2; }
.president-feature-copy p {
  margin: 0 0 .7rem;
  color: var(--color-muted);
  font-size: .76rem;
  line-height: 1.55;
}
.president-feature-copy strong {
  display: block;
  color: var(--color-text);
  font-size: 1rem;
}
.president-feature-copy span {
  display: block;
  margin-top: .15rem;
  color: var(--color-accent);
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
}
.president-feature-links {
  display: flex;
  gap: .45rem;
  margin-top: .85rem;
}
.president-feature-links a {
  padding: .48rem .65rem;
  border: 1px solid rgba(57,49,133,.15);
  border-radius: 7px;
  color: var(--color-primary);
  font-size: .64rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: color .2s, background .2s, border-color .2s;
}
.president-feature-links a:hover {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: #fff;
}
.president-feature-socials {
  margin-top: .85rem;
  padding-top: .7rem;
  border-top: 1px solid rgba(57,49,133,.1);
}
.president-feature-socials b {
  display: block;
  margin-bottom: .45rem;
  color: var(--color-text);
  font-size: .62rem;
  letter-spacing: .035em;
  text-transform: uppercase;
}
.president-feature-socials > div {
  display: flex;
  gap: .4rem;
}
.president-feature-socials a {
  display: inline-flex;
  width: 29px;
  height: 29px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(57,49,133,.07);
  color: var(--color-primary);
  transition: color .2s, background .2s, transform .2s;
}
.president-feature-socials a:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
}
.president-feature-socials svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}
.president-feature-body img {
  position: absolute;
  right: 4px;
  bottom: 0;
  width: 200px;
  height: 275px;
  object-fit: contain;
  object-position: center bottom;
}
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  margin-top: 1.4rem; padding: .9rem 1.4rem; border-radius: 999px;
  background: var(--color-accent); color: #fff; font-weight: 700;
  border: 0; cursor: pointer; transition: transform .2s, box-shadow .2s;
  box-shadow: 0 10px 30px rgba(239,127,26,.35);
}
.btn:hover { transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--color-primary);
  border: 1.5px solid rgba(57,49,133,.25); box-shadow: none;
}

.section { padding: 5rem 0; }
.counter-section {
  min-height: 0;
  padding: 1rem 0 1.5rem;
}
.counter-section .counters { margin-top: 0; }
.counter-section.has-president .counters {
  width: min(500px, calc(100% - 450px));
  margin-right: auto;
  margin-left: 0;
}
.section-head { margin-bottom: 2.2rem; max-width: 640px; }
.section-head .eyebrow {
  display: inline-block; margin-bottom: .6rem;
  color: var(--color-accent); font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; font-size: .75rem;
}
.section-head h2 {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.15; margin: 0 0 .7rem; letter-spacing: -.02em; color: var(--color-primary);
}
.section-head p { margin: 0; color: var(--color-muted); }

.counters {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0;
  margin-top: -3rem; position: relative; z-index: 3;
}
.counter {
  min-width: 0;
  padding: .45rem .8rem;
  border-right: 1px solid rgba(57,49,133,.13);
  text-align: left;
}
.counter:last-child {
  border-right: 0;
}
.counter strong {
  display: block; font-family: var(--font-display);
  overflow-wrap: anywhere;
  font-size: 1.7rem; color: var(--color-primary); line-height: 1;
}
.counter span {
  display: block;
  margin-top: .35rem;
  color: var(--color-muted);
  font-size: .7rem;
  font-weight: 700;
  line-height: 1.3;
}

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }

.news-section { background: linear-gradient(180deg, #fff 0%, rgba(57,49,133,.035) 100%); }
.news-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, .75fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 1rem;
}
.news-card {
  position: relative;
  min-height: 165px;
  overflow: hidden;
  border-radius: 18px;
  background: #1b183c;
  color: #fff;
  box-shadow: 0 15px 35px rgba(26,23,56,.12);
  isolation: isolate;
}
.news-card-featured {
  min-height: 530px;
  grid-row: 1 / 4;
}
.news-card-image,
.news-card-shade {
  position: absolute;
  inset: 0;
}
.news-card-image {
  z-index: -2;
  background-position: center;
  background-size: cover;
  transition: transform .65s cubic-bezier(.2,.7,.2,1);
}
.news-card-shade {
  z-index: -1;
  background: linear-gradient(180deg, rgba(12,10,32,.06) 10%, rgba(12,10,32,.92) 100%);
}
.news-card:not(.news-card-featured) .news-card-shade {
  background: linear-gradient(90deg, rgba(12,10,32,.88), rgba(12,10,32,.34));
}
.news-card:hover .news-card-image { transform: scale(1.045); }
.news-card-body {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.35rem 1.5rem;
}
.news-card-featured .news-card-body { padding: 2rem; }
.news-card-meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .55rem;
  color: rgba(255,255,255,.78);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.news-card-meta time {
  padding-left: .75rem;
  border-left: 1px solid rgba(255,255,255,.35);
}
.news-card h3 {
  max-width: 780px;
  margin: 0;
  color: #fff;
  font-size: 1rem;
  line-height: 1.3;
}
.news-card-featured h3 { font-size: clamp(1.45rem, 2.5vw, 2.2rem); }
.news-card p {
  max-width: 650px;
  margin: .75rem 0 0;
  color: rgba(255,255,255,.78);
  line-height: 1.65;
}
.news-card-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  max-height: 0;
  overflow: hidden;
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  opacity: 0;
  text-transform: uppercase;
  transition: max-height .25s, margin .25s, opacity .25s;
}
.news-card:hover .news-card-link {
  max-height: 24px;
  margin-top: .8rem;
  opacity: 1;
}
.news-card-link svg {
  width: 17px;
  fill: none;
  stroke: var(--color-accent);
  stroke-width: 1.8;
}
.news-all-link { margin-top: 1.5rem; text-align: right; }

.workshops-section { overflow: hidden; background: rgba(57,49,133,.04); }
.workshops-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}
.workshops-heading .section-head { margin-bottom: 2.2rem; }
.workshops-controls {
  display: flex;
  margin-bottom: 2.2rem;
}
.workshops-controls button {
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(57,49,133,.18);
  background: #fff;
  color: var(--color-primary);
  cursor: pointer;
  transition: color .2s, background .2s;
}
.workshops-controls button:first-child { border-radius: 12px 0 0 12px; }
.workshops-controls button:last-child { border-left: 0; border-radius: 0 12px 12px 0; }
.workshops-controls button:hover { background: var(--color-primary); color: #fff; }
.workshops-controls svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.workshops-carousel {
  display: grid;
  grid-auto-columns: calc((100% - 2.5rem) / 3);
  grid-auto-flow: column;
  gap: 1.25rem;
  overflow-x: auto;
  padding: .4rem .15rem 1.5rem;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.workshops-carousel::-webkit-scrollbar { display: none; }
.workshop-slide { scroll-snap-align: start; }

.card-media {
  border-radius: var(--radius); overflow: hidden;
  background: #fff; border: 1px solid rgba(57,49,133,.07);
  box-shadow: 0 12px 30px rgba(41,41,41,.05);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card-media:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card-media .thumb {
  aspect-ratio: 16/10; background: #ddd center/cover no-repeat;
}
.card-media .body { padding: 1.15rem 1.2rem 1.35rem; }
.card-media h3 { margin: 0 0 .4rem; font-size: 1.05rem; color: var(--color-primary); }
.card-media p { margin: 0; color: var(--color-muted); font-size: .92rem; }

.assoc-row {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; align-items: center;
}
.assoc-item {
  background: #fff; border-radius: 16px; padding: 1.2rem;
  min-height: 110px; display: grid; place-items: center;
  border: 1px solid rgba(57,49,133,.08);
}
.assoc-item img { max-height: 58px; width: auto; object-fit: contain; filter: grayscale(.2); }

.team-card { text-align: center; }
.team-card .avatar {
  width: 140px; height: 140px; border-radius: 50%; margin: 0 auto 1rem;
  background: #ccc center/cover; border: 4px solid #fff;
  box-shadow: 0 12px 30px rgba(57,49,133,.18);
}
.team-card h3 { margin: 0; color: var(--color-primary); }
.team-card span { color: var(--color-accent); font-size: .9rem; font-weight: 700; }

.faq-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 20%, rgba(239,127,26,.11), transparent 28%),
    linear-gradient(135deg, #f5f3fb, #fff);
}
.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.faq-intro {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 24px;
  background: linear-gradient(145deg, #211c59, var(--color-primary));
  box-shadow: 0 28px 65px rgba(39,32,99,.2);
  color: #fff;
}
.faq-intro .eyebrow { color: #f7a34f; }
.faq-intro h2 {
  max-width: 420px;
  margin: .7rem 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -.035em;
}
.faq-intro > p {
  max-width: 420px;
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: .92rem;
}
.faq-intro > a {
  position: absolute;
  right: 2.5rem;
  bottom: 2.5rem;
  left: 2.5rem;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.7);
  font-size: .7rem;
}
.faq-intro > a strong {
  display: block;
  grid-column: 1;
  color: #fff;
  font-size: .92rem;
}
.faq-intro > a svg {
  grid-column: 2;
  grid-row: 1 / 3;
  width: 24px;
  fill: none;
  stroke: var(--color-accent);
  stroke-width: 1.6;
  transition: transform .2s;
}
.faq-intro > a:hover svg { transform: translateX(5px); }
.faq-intro-mark {
  position: absolute;
  right: -20px;
  bottom: -85px;
  color: rgba(255,255,255,.045);
  font-size: 18rem;
  font-weight: 800;
  line-height: 1;
}
.faq {
  counter-reset: faq;
  border-top: 1px solid rgba(57,49,133,.14);
}
.faq details {
  border-bottom: 1px solid rgba(57,49,133,.14);
  background: transparent;
  transition: background .25s;
}
.faq details[open] {
  background: rgba(255,255,255,.72);
  box-shadow: 0 18px 40px rgba(39,32,99,.06);
}
.faq summary {
  display: grid;
  grid-template-columns: 46px 1fr 34px;
  gap: 1rem;
  align-items: center;
  min-height: 86px;
  padding: .8rem 1.1rem;
  color: var(--color-text);
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq-number {
  color: var(--color-accent);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
}
.faq-question {
  font-size: clamp(.95rem, 1.5vw, 1.12rem);
  font-weight: 750;
  line-height: 1.35;
}
.faq-toggle {
  position: relative;
  display: block;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(57,49,133,.16);
  border-radius: 50%;
}
.faq-toggle::before,
.faq-toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 1.5px;
  background: var(--color-primary);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform .25s;
}
.faq-toggle::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq details[open] .faq-toggle {
  border-color: var(--color-primary);
  background: var(--color-primary);
}
.faq details[open] .faq-toggle::before,
.faq details[open] .faq-toggle::after { background: #fff; }
.faq details[open] .faq-toggle::after { transform: translate(-50%, -50%) rotate(0); }
.faq-answer {
  padding: 0 4.9rem 1.6rem 4.85rem;
  color: var(--color-muted);
  font-size: .9rem;
  line-height: 1.75;
}
.faq-answer > :first-child { margin-top: 0; }
.faq-answer > :last-child { margin-bottom: 0; }

.news-archive-hero {
  position: relative;
  overflow: hidden;
  padding: 6.5rem 0 5rem;
  border-radius: 0 0 42px 0;
  background:
    radial-gradient(circle at 82% 35%, rgba(239,127,26,.35), transparent 22%),
    linear-gradient(125deg, #171336, #393185 64%, #5449a5);
  color: #fff;
}
.news-archive-hero::after {
  position: absolute;
  top: -120px;
  right: 7%;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(255,255,255,.025), 0 0 0 110px rgba(255,255,255,.018);
  content: "";
}
.news-archive-hero .container { position: relative; z-index: 1; }
.news-archive-kicker {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: #ffab5c;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.news-archive-kicker::before {
  width: 34px;
  height: 2px;
  background: currentColor;
  content: "";
}
.news-archive-hero h1 {
  margin: .75rem 0 .6rem;
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: .95;
  letter-spacing: -.055em;
}
.news-archive-hero p {
  max-width: 590px;
  margin: 0;
  color: rgba(255,255,255,.7);
  font-size: 1rem;
}
.news-archive { padding: 4rem 0 6rem; }
.archive-featured {
  display: grid;
  min-height: 470px;
  overflow: hidden;
  grid-template-columns: 1.18fr .82fr;
  margin-bottom: 3.5rem;
  border-radius: 26px;
  background: #1c183f;
  box-shadow: 0 28px 65px rgba(34,28,86,.2);
  color: #fff;
}
.archive-featured-image {
  min-height: 420px;
  background-position: center;
  background-size: cover;
  transition: transform .7s cubic-bezier(.2,.7,.2,1);
}
.archive-featured:hover .archive-featured-image { transform: scale(1.025); }
.archive-featured-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 4vw, 3.5rem);
  background:
    radial-gradient(circle at 100% 0%, rgba(239,127,26,.2), transparent 32%),
    linear-gradient(145deg, #27215f, #171432);
}
.archive-label {
  align-self: flex-start;
  padding: .42rem .7rem;
  border-radius: 999px;
  background: var(--color-accent);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.archive-featured time {
  margin-top: 1rem;
  color: rgba(255,255,255,.55);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
}
.archive-featured h2 {
  margin: .75rem 0;
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.2;
  letter-spacing: -.025em;
}
.archive-featured p {
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: .88rem;
}
.archive-read,
.archive-card-link {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-top: 1.4rem;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.archive-read svg,
.archive-card-link svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  transition: transform .2s;
}
.archive-featured:hover .archive-read svg,
.archive-card:hover .archive-card-link svg { transform: translateX(5px); }
.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.archive-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(57,49,133,.08);
  border-radius: 20px;
  background: rgba(255,255,255,.85);
  box-shadow: 0 15px 38px rgba(40,33,93,.07);
  transition: transform .3s, box-shadow .3s;
}
.archive-card:hover {
  box-shadow: 0 24px 55px rgba(40,33,93,.14);
  transform: translateY(-7px);
}
.archive-card-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}
.archive-card-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(17,14,43,.46));
  content: "";
}
.archive-card-image > span {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 1;
  padding: .34rem .65rem;
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  color: var(--color-primary);
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.archive-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.35rem 1.4rem 1.5rem;
}
.archive-card-body .archive-card-link { margin-top: auto; padding-top: 1.1rem; }
.archive-card time {
  color: var(--color-accent);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.archive-card h3 {
  display: -webkit-box;
  min-height: 3.9rem;
  margin: .5rem 0 .6rem;
  overflow: hidden;
  color: var(--color-primary);
  font-size: 1.08rem;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.archive-card p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--color-muted);
  font-size: .82rem;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.archive-card-link { color: var(--color-primary); }
.archive-card-link svg { color: var(--color-accent); }
.archive-pagination { margin-top: 3rem; }

.article-hero {
  position: relative;
  height: 570px;
  min-height: 570px;
  overflow: hidden;
  border-radius: 0 0 42px 0;
  background: #191538 center / cover no-repeat;
}
.article-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12,10,30,.95), rgba(20,16,53,.74) 52%, rgba(20,16,53,.22)),
    linear-gradient(0deg, rgba(12,10,30,.5), transparent 50%);
}
.article-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  max-width: 920px;
  flex-direction: column;
  justify-content: flex-end;
  margin-left: max(0px, calc((100% - 1140px) / 2));
  padding: 4.5rem 0 5.5rem;
  color: #fff;
}
.article-breadcrumb {
  display: flex;
  gap: .6rem;
  margin-bottom: 1.2rem;
  color: rgba(255,255,255,.6);
  font-size: .7rem;
  font-weight: 700;
}
.article-breadcrumb a:hover { color: #fff; }
.article-meta {
  display: flex;
  align-items: center;
  gap: .8rem;
  color: rgba(255,255,255,.66);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.article-meta span {
  padding: .35rem .65rem;
  border-radius: 999px;
  background: var(--color-accent);
  color: #fff;
}
.article-hero h1 {
  max-width: 890px;
  margin: 1rem 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 4.2rem);
  line-height: 1.03;
  letter-spacing: -.045em;
}
.article-hero-content > p {
  max-width: 690px;
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: .95rem;
}
.article-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 2rem;
  align-items: start;
  margin-top: -34px;
  padding-bottom: 6rem;
}
.article-main {
  padding: clamp(1.5rem, 4vw, 3.5rem);
  border: 1px solid rgba(57,49,133,.07);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 25px 65px rgba(35,29,86,.11);
}
.article-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.3rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(57,49,133,.1);
  color: var(--color-muted);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.article-share { display: flex; gap: .45rem; }
.article-share a {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(57,49,133,.14);
  border-radius: 50%;
  color: var(--color-primary);
  font-size: .72rem;
  font-weight: 800;
  text-transform: none;
  transition: color .2s, background .2s;
}
.article-share a:hover { background: var(--color-primary); color: #fff; }
.article-figure {
  position: relative;
  margin: 0 0 2.4rem;
}
.article-figure img {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 26px 60px rgba(35,29,86,.16);
}
.article-figure figcaption {
  margin-top: .85rem;
  padding-left: .9rem;
  border-left: 3px solid var(--color-accent);
  color: var(--color-muted);
  font-size: .76rem;
  font-weight: 650;
  line-height: 1.5;
}
.article-prose {
  color: #3f3f4d;
  font-size: 1rem;
  line-height: 1.85;
}
.article-prose > :first-child { margin-top: 0; }
.article-prose h2,
.article-prose h3 {
  margin: 2.2rem 0 .8rem;
  color: var(--color-primary);
  font-family: var(--font-display);
  line-height: 1.2;
}
.article-prose h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
.article-prose h3 { font-size: 1.35rem; }
.article-prose p { margin: 0 0 1.3rem; }
.article-prose img {
  display: block;
  width: auto !important;
  max-width: 100% !important;
  height: auto !important;
  margin: 2rem auto;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(35,29,86,.1);
}
.article-prose blockquote {
  margin: 2rem 0;
  padding: 1.5rem 1.7rem;
  border-left: 4px solid var(--color-accent);
  border-radius: 0 14px 14px 0;
  background: rgba(57,49,133,.055);
  color: var(--color-primary);
  font-size: 1.08rem;
  font-weight: 650;
}
.article-prose a { color: var(--color-primary); text-decoration: underline; }
.article-prose ul,
.article-prose ol { padding-left: 1.4rem; }
.article-prose table {
  display: block;
  max-width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
}
.article-prose th,
.article-prose td { padding: .7rem; border: 1px solid rgba(57,49,133,.12); }
.article-footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(57,49,133,.1);
}
.article-footer a {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--color-primary);
  font-size: .78rem;
  font-weight: 800;
}
.article-footer svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.article-sidebar { padding-top: 34px; }
.article-sidebar-inner {
  position: sticky;
  top: 100px;
  padding: 1.6rem;
  border: 1px solid rgba(57,49,133,.08);
  border-radius: 20px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 45px rgba(35,29,86,.08);
}
.article-sidebar-kicker {
  color: var(--color-accent);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.article-sidebar h2 {
  margin: .2rem 0 1.2rem;
  color: var(--color-primary);
  font-size: 1.35rem;
}
.article-related { display: grid; gap: 1rem; }
.article-related > a {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: .8rem;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(57,49,133,.08);
}
.article-related-image {
  width: 82px;
  aspect-ratio: 1;
  border-radius: 10px;
  background: #eee center / cover no-repeat;
}
.article-related time {
  display: block;
  margin-bottom: .25rem;
  color: var(--color-accent);
  font-size: .58rem;
  font-weight: 800;
  text-transform: uppercase;
}
.article-related strong {
  display: -webkit-box;
  overflow: hidden;
  color: var(--color-text);
  font-size: .76rem;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.article-related > a:hover strong { color: var(--color-primary); }
.article-sidebar-all {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.2rem;
  color: var(--color-primary);
  font-size: .7rem;
  font-weight: 800;
}
.article-sidebar-all svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.workshop-archive-hero {
  position: relative;
  overflow: hidden;
  padding: 6.5rem 0 5.5rem;
  border-radius: 0 0 0 46px;
  background:
    linear-gradient(115deg, rgba(239,127,26,.95), rgba(213,91,12,.88)),
    #ef7f1a;
  color: #fff;
}
.workshop-archive-hero::before,
.workshop-archive-hero::after {
  position: absolute;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  content: "";
}
.workshop-archive-hero::before {
  top: -220px;
  right: 4%;
  width: 540px;
  height: 540px;
}
.workshop-archive-hero::after {
  right: 17%;
  bottom: -180px;
  width: 360px;
  height: 360px;
}
.workshop-archive-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
}
.workshop-archive-kicker {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.workshop-archive-hero h1 {
  margin: .8rem 0 .7rem;
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: .95;
  letter-spacing: -.055em;
}
.workshop-archive-hero p {
  max-width: 620px;
  margin: 0;
  color: rgba(255,255,255,.82);
}
.workshop-categories {
  display: flex;
  max-width: 390px;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .5rem;
}
.workshop-categories span {
  padding: .5rem .75rem;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  font-size: .65rem;
  font-weight: 700;
  backdrop-filter: blur(5px);
}
.workshop-archive { padding: 4rem 0 6rem; }
.workshop-featured {
  display: grid;
  min-height: 480px;
  overflow: hidden;
  grid-template-columns: .88fr 1.12fr;
  margin-bottom: 3.5rem;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(49,41,108,.15);
}
.workshop-featured-image {
  background: #ddd center / cover no-repeat;
  transition: transform .7s cubic-bezier(.2,.7,.2,1);
}
.workshop-featured:hover .workshop-featured-image { transform: scale(1.03); }
.workshop-featured-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem);
  background:
    radial-gradient(circle at 100% 100%, rgba(239,127,26,.09), transparent 30%),
    #fff;
}
.workshop-featured-number {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  color: rgba(57,49,133,.07);
  font-size: 7rem;
  font-weight: 800;
  line-height: 1;
}
.workshop-featured-label,
.workshop-archive-body small {
  color: var(--color-accent);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.workshop-featured h2 {
  position: relative;
  margin: .8rem 0;
  color: var(--color-primary);
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  line-height: 1.18;
  letter-spacing: -.03em;
}
.workshop-featured p {
  position: relative;
  max-width: 570px;
  margin: 0;
  color: var(--color-muted);
  font-size: .9rem;
}
.workshop-featured-link,
.workshop-archive-link {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-top: 1.4rem;
  color: var(--color-primary);
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
}
.workshop-featured-link svg,
.workshop-archive-link svg,
.workshop-sidebar-all svg {
  width: 18px;
  fill: none;
  stroke: var(--color-accent);
  stroke-width: 1.7;
  transition: transform .2s;
}
.workshop-featured:hover .workshop-featured-link svg,
.workshop-archive-card:hover .workshop-archive-link svg { transform: translateX(5px); }
.workshop-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.workshop-archive-card {
  overflow: hidden;
  border: 1px solid rgba(57,49,133,.08);
  border-radius: 20px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 15px 38px rgba(40,33,93,.07);
  transition: transform .3s, box-shadow .3s;
}
.workshop-archive-card:hover {
  box-shadow: 0 24px 55px rgba(40,33,93,.14);
  transform: translateY(-7px);
}
.workshop-archive-image {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #ddd center / cover no-repeat;
}
.workshop-archive-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(24,19,61,.62));
  content: "";
}
.workshop-archive-image span {
  position: absolute;
  right: 1rem;
  bottom: .7rem;
  z-index: 1;
  color: rgba(255,255,255,.9);
  font-size: 2rem;
  font-weight: 800;
}
.workshop-archive-body { padding: 1.35rem 1.4rem 1.5rem; }
.workshop-archive-body h3 {
  display: -webkit-box;
  min-height: 3.8rem;
  margin: .5rem 0 .6rem;
  overflow: hidden;
  color: var(--color-primary);
  font-size: 1.08rem;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.workshop-archive-body p {
  display: -webkit-box;
  min-height: 4.2rem;
  margin: 0;
  overflow: hidden;
  color: var(--color-muted);
  font-size: .82rem;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.workshop-detail-hero {
  position: relative;
  height: 600px;
  min-height: 600px;
  overflow: hidden;
  border-radius: 0 0 42px 0;
  background: #1a163e center / cover no-repeat;
}
.workshop-detail-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17,13,43,.96), rgba(36,29,85,.7) 58%, rgba(36,29,85,.22)),
    linear-gradient(0deg, rgba(17,13,43,.65), transparent 55%);
}
.workshop-detail-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  max-width: 930px;
  flex-direction: column;
  justify-content: flex-end;
  margin-left: max(0px, calc((100% - 1140px) / 2));
  padding: 4rem 0 5rem;
  color: #fff;
}
.workshop-detail-category {
  align-self: flex-start;
  padding: .4rem .7rem;
  border-radius: 999px;
  background: var(--color-accent);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.workshop-detail-hero h1 {
  max-width: 900px;
  margin: 1rem 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 4.1rem);
  line-height: 1.04;
  letter-spacing: -.045em;
}
.workshop-detail-hero-content > p {
  max-width: 700px;
  margin: 0;
  color: rgba(255,255,255,.73);
  font-size: .95rem;
}
.workshop-detail-word {
  position: absolute;
  right: -20px;
  bottom: -60px;
  z-index: 1;
  color: rgba(255,255,255,.04);
  font-size: clamp(5rem, 13vw, 12rem);
  font-weight: 800;
  line-height: 1;
}
.workshop-detail-layout {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 2rem;
  align-items: start;
  margin-top: -34px;
  padding-bottom: 6rem;
}
.workshop-detail-main {
  padding: clamp(1.5rem, 4vw, 3.5rem);
  border: 1px solid rgba(57,49,133,.07);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 25px 65px rgba(35,29,86,.11);
}
.workshop-detail-intro {
  display: grid;
  grid-template-columns: 115px 1fr;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(57,49,133,.1);
}
.workshop-detail-intro span {
  color: var(--color-accent);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.workshop-detail-intro strong {
  color: var(--color-primary);
  font-size: 1.05rem;
}
.workshop-gallery { margin-top: 3.5rem; }
.workshop-gallery-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.workshop-gallery-heading span {
  color: var(--color-accent);
  font-size: .65rem;
  font-weight: 800;
  text-transform: uppercase;
}
.workshop-gallery-heading h2 {
  margin: .2rem 0 0;
  color: var(--color-primary);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}
.workshop-gallery-heading > strong {
  color: var(--color-muted);
  font-size: .7rem;
  text-transform: uppercase;
}
.workshop-gallery-grid {
  display: grid;
  grid-auto-rows: 180px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .8rem;
}
.workshop-gallery-grid a {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: #eee;
}
.workshop-gallery-grid a:first-child {
  grid-row: span 2;
}
.workshop-gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.workshop-gallery-grid a:hover img { transform: scale(1.045); }
.workshop-gallery-grid a > span {
  position: absolute;
  right: .7rem;
  bottom: .7rem;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .4rem .6rem;
  border-radius: 999px;
  background: rgba(24,19,61,.75);
  color: #fff;
  font-size: .6rem;
  font-weight: 800;
  opacity: 0;
  backdrop-filter: blur(8px);
  transition: opacity .2s;
}
.workshop-gallery-grid a:hover > span { opacity: 1; }
.workshop-gallery-grid svg {
  width: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

body.lightbox-open { overflow: hidden; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 4.5rem 4.5rem 5.5rem;
}
.lightbox[hidden] { display: none !important; }
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 10, 28, .88);
  backdrop-filter: blur(10px);
}
.lightbox-close,
.lightbox-nav {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.lightbox-close:hover,
.lightbox-nav:hover {
  background: var(--color-primary);
  transform: scale(1.05);
}
.lightbox-close {
  top: 1.25rem;
  right: 1.25rem;
}
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-close svg,
.lightbox-nav svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.lightbox-stage {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: min(1100px, 100%);
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.lightbox-stage img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 9rem);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
}
.lightbox-caption {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .55rem 1.1rem;
  color: rgba(255, 255, 255, .88);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.lightbox-caption small {
  color: rgba(255, 255, 255, .45);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .02em;
}

@media (max-width: 760px) {
  .lightbox { padding: 4rem 1rem 5rem; }
  .lightbox-prev { left: .35rem; }
  .lightbox-next { right: .35rem; }
  .lightbox-close,
  .lightbox-nav {
    width: 42px;
    height: 42px;
  }
  .lightbox-caption small { display: none; }
}

.workshop-detail-sidebar { padding-top: 34px; }
.workshop-detail-sidebar-inner {
  position: sticky;
  top: 100px;
  padding: 1.6rem;
  border: 1px solid rgba(57,49,133,.08);
  border-radius: 20px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 18px 45px rgba(35,29,86,.08);
}
.workshop-detail-sidebar h2 {
  margin: .2rem 0 1.2rem;
  color: var(--color-primary);
  font-size: 1.35rem;
}
.workshop-related { display: grid; gap: .9rem; }
.workshop-related > a {
  position: relative;
  display: block;
  min-height: 130px;
  overflow: hidden;
  border-radius: 13px;
  color: #fff;
}
.workshop-related > a > div {
  position: absolute;
  inset: 0;
  background: #ddd center / cover no-repeat;
  transition: transform .4s;
}
.workshop-related > a::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20,16,53,.9), rgba(20,16,53,.05));
  content: "";
}
.workshop-related > a:hover > div { transform: scale(1.04); }
.workshop-related > a > span {
  position: absolute;
  right: 1rem;
  bottom: .8rem;
  left: 1rem;
  z-index: 1;
}
.workshop-related small {
  display: block;
  margin-bottom: .2rem;
  color: #ffab5c;
  font-size: .56rem;
  font-weight: 800;
  text-transform: uppercase;
}
.workshop-related strong {
  display: -webkit-box;
  overflow: hidden;
  font-size: .75rem;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.workshop-sidebar-all {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.2rem;
  color: var(--color-primary);
  font-size: .7rem;
  font-weight: 800;
}

.associations-hero {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border-radius: 0 0 48px 0;
  background:
    radial-gradient(circle at 78% 30%, rgba(239,127,26,.2), transparent 24%),
    linear-gradient(130deg, #12102b, #292369 58%, #393185);
  color: #fff;
}
.associations-hero::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.1) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .25;
  content: "";
  mask-image: linear-gradient(90deg, transparent, #000 45%, #000);
}
.associations-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 610px;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}
.associations-hero-copy { max-width: 760px; }
.associations-kicker {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  color: #ffab5c;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.associations-kicker::before {
  width: 38px;
  height: 2px;
  background: currentColor;
  content: "";
}
.associations-hero h1 {
  margin: 1rem 0 1.4rem;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: .86;
  letter-spacing: -.07em;
}
.associations-hero h1 em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1.5px rgba(255,255,255,.72);
}
.associations-hero-copy > p {
  max-width: 630px;
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: 1rem;
}
.associations-hero-stat {
  position: relative;
  display: flex;
  width: 260px;
  height: 260px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: .7rem;
}
.associations-hero-stat strong {
  font-size: 4.6rem;
  line-height: 1;
  letter-spacing: -.06em;
}
.associations-hero-stat > span {
  color: rgba(255,255,255,.68);
  font-size: .68rem;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}
.associations-hero-stat svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: rgba(255,255,255,.18);
  stroke-dasharray: 5 7;
  animation: associationSpin 30s linear infinite;
}
.associations-hero-stat svg circle:last-child {
  stroke: rgba(239,127,26,.65);
  stroke-dasharray: 2 9;
  animation: associationSpinReverse 18s linear infinite;
  transform-origin: center;
}
.associations-network {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.associations-network span {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 2px solid rgba(255,255,255,.65);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(255,255,255,.04);
  animation: networkPulse 3s ease-in-out infinite;
}
.associations-network span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,.25), transparent);
  content: "";
  transform: rotate(var(--line-angle, 20deg));
  transform-origin: left;
}
.associations-network span:nth-child(1) { top: 16%; right: 34%; --line-angle: 35deg; }
.associations-network span:nth-child(2) { top: 31%; right: 12%; --line-angle: 145deg; animation-delay: -.5s; }
.associations-network span:nth-child(3) { right: 26%; bottom: 18%; --line-angle: -35deg; animation-delay: -1s; }
.associations-network span:nth-child(4) { top: 52%; right: 45%; --line-angle: 8deg; animation-delay: -1.5s; }
.associations-network span:nth-child(5) { right: 6%; bottom: 9%; --line-angle: 205deg; animation-delay: -2s; }
.associations-network span:nth-child(6) { top: 10%; right: 4%; --line-angle: 110deg; animation-delay: -2.5s; }

.associations-ticker {
  overflow: hidden;
  border-bottom: 1px solid rgba(57,49,133,.08);
  background: #fff;
}
.associations-ticker-track {
  display: flex;
  width: max-content;
  animation: associationTicker 35s linear infinite;
}
.associations-ticker:hover .associations-ticker-track { animation-play-state: paused; }
.associations-ticker-track > span {
  display: flex;
  min-width: 250px;
  height: 86px;
  align-items: center;
  gap: .8rem;
  padding: 0 1.7rem;
  border-right: 1px solid rgba(57,49,133,.08);
  color: var(--color-muted);
  font-size: .7rem;
  font-weight: 700;
}
.associations-ticker img {
  width: 54px;
  max-height: 42px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .62;
}
.associations-showcase { padding: 6rem 0; }
.associations-intro {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 3.5rem;
}
.associations-intro h2 {
  margin: .5rem 0 0;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: 1.02;
  letter-spacing: -.05em;
}
.associations-intro > p {
  margin: 0;
  padding-left: 1.5rem;
  border-left: 2px solid var(--color-accent);
  color: var(--color-muted);
  font-size: .9rem;
}
.associations-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
}
.association-card {
  position: relative;
  display: flex;
  min-height: 390px;
  overflow: hidden;
  flex-direction: column;
  padding: 1.6rem;
  border: 1px solid rgba(57,49,133,.09);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(57,49,133,.06), transparent 34%),
    rgba(255,255,255,.88);
  box-shadow: 0 16px 40px rgba(40,33,93,.06);
  transition: transform .35s, box-shadow .35s, border-color .35s;
}
.association-card:nth-child(3n+2) {
  background:
    radial-gradient(circle at 100% 0%, rgba(239,127,26,.09), transparent 35%),
    rgba(255,255,255,.9);
}
.association-card:hover {
  border-color: rgba(57,49,133,.2);
  box-shadow: 0 28px 65px rgba(40,33,93,.14);
  transform: translateY(-8px);
}
.association-card-number {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  color: rgba(57,49,133,.1);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}
.association-card-logo {
  display: flex;
  width: 100%;
  height: 125px;
  align-items: center;
  justify-content: flex-start;
}
.association-card-logo img {
  max-width: 175px;
  max-height: 82px;
  object-fit: contain;
  filter: grayscale(.08);
  transition: filter .3s, transform .3s;
}
.association-card:hover .association-card-logo img {
  filter: grayscale(0);
  transform: scale(1.035);
}
.association-card-logo > strong {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border-radius: 18px;
  background: var(--color-primary);
  color: #fff;
  font-size: 1.4rem;
}
.association-card-content > span {
  color: var(--color-accent);
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.association-card-content h3 {
  margin: .45rem 0 .65rem;
  color: var(--color-primary);
  font-size: 1.15rem;
  line-height: 1.3;
}
.association-card-content p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--color-muted);
  font-size: .78rem;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.association-card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(57,49,133,.1);
  color: var(--color-primary);
  font-size: .68rem;
  font-weight: 800;
}
.association-card-link svg {
  width: 18px;
  fill: none;
  stroke: var(--color-accent);
  stroke-width: 1.7;
  transition: transform .2s;
}
.association-card-link:not(.is-passive):hover svg { transform: translate(3px, -3px); }
.association-card-link.is-passive { color: var(--color-muted); }
.associations-cta {
  position: relative;
  display: grid;
  overflow: hidden;
  grid-template-columns: 1.1fr .9fr auto;
  gap: 2rem;
  align-items: center;
  margin-top: 5rem;
  padding: 2.5rem 3rem;
  border-radius: 24px;
  background:
    radial-gradient(circle at 88% 10%, rgba(239,127,26,.27), transparent 22%),
    linear-gradient(130deg, #1b1744, #393185);
  color: #fff;
}
.associations-cta > div > span {
  color: #ffab5c;
  font-size: .65rem;
  font-weight: 800;
  text-transform: uppercase;
}
.associations-cta h2 {
  margin: .25rem 0 0;
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.1;
}
.associations-cta > p {
  margin: 0;
  color: rgba(255,255,255,.67);
  font-size: .82rem;
}
.associations-cta > a {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .85rem 1.1rem;
  border-radius: 999px;
  background: var(--color-accent);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  white-space: nowrap;
}
.associations-cta svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  transition: transform .2s;
}
.associations-cta > a:hover svg { transform: translateX(4px); }

@keyframes associationSpin {
  to { transform: rotate(360deg); }
}
@keyframes associationSpinReverse {
  to { transform: rotate(-360deg); }
}
@keyframes networkPulse {
  0%, 100% { opacity: .35; transform: scale(.85); }
  50% { opacity: 1; transform: scale(1); }
}
@keyframes associationTicker {
  to { transform: translateX(-50%); }
}

.page-banner {
  padding: 4.5rem 0 3rem;
  background: linear-gradient(135deg, #2b2568, #393185 55%, #ef7f1a);
  color: #fff; border-radius: 0 0 32px 32px;
}
.page-banner h1 {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 0; letter-spacing: -.02em;
}

.content-wrap { padding: 3rem 0 5rem; }
.prose { max-width: 760px; }
.prose h2, .prose h3 { color: var(--color-primary); }
.prose img { border-radius: 14px; margin: 1rem 0; }

.contact-hero {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  border-radius: 0 0 46px 0;
  background:
    radial-gradient(circle at 82% 28%, rgba(239,127,26,.24), transparent 22%),
    linear-gradient(130deg, #12102d, #282269 62%, #393185);
  color: #fff;
}
.contact-hero::after {
  position: absolute;
  right: -160px;
  bottom: -270px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  box-shadow: 0 0 0 75px rgba(255,255,255,.025), 0 0 0 150px rgba(255,255,255,.015);
  content: "";
}
.contact-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 580px;
  align-items: center;
  justify-content: space-between;
  gap: 5rem;
}
.contact-hero-copy { max-width: 810px; }
.contact-kicker {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  color: #ffab5c;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.contact-kicker::before {
  width: 38px;
  height: 2px;
  background: currentColor;
  content: "";
}
.contact-hero h1 {
  margin: 1rem 0 1.3rem;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 7.5vw, 6.7rem);
  line-height: .88;
  letter-spacing: -.065em;
}
.contact-hero h1 em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1.5px rgba(255,255,255,.72);
}
.contact-hero-copy > p {
  max-width: 610px;
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: 1rem;
}
.contact-hero-note {
  position: relative;
  width: 260px;
  flex: 0 0 auto;
  padding: 1.6rem;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(12px);
}
.contact-hero-note > span {
  display: block;
  margin-bottom: 2.5rem;
  color: #ffab5c;
  font-size: .7rem;
  font-weight: 800;
}
.contact-hero-note strong {
  display: block;
  margin-bottom: .5rem;
  font-size: 1rem;
}
.contact-hero-note p {
  margin: 0;
  color: rgba(255,255,255,.62);
  font-size: .72rem;
}
.contact-hero-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.contact-hero-lines span {
  position: absolute;
  right: 23%;
  width: 1px;
  height: 180px;
  background: linear-gradient(transparent, rgba(255,255,255,.2), transparent);
  transform: rotate(45deg);
  animation: contactLineFloat 5s ease-in-out infinite;
}
.contact-hero-lines span:nth-child(1) { top: 4%; }
.contact-hero-lines span:nth-child(2) { top: 35%; right: 13%; animation-delay: -1.5s; }
.contact-hero-lines span:nth-child(3) { right: 35%; bottom: -4%; animation-delay: -3s; }

.contact-premium { padding: 0 0 6rem; }
.contact-premium-layout {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, .8fr);
  gap: 1.5rem;
  align-items: stretch;
  margin-top: -45px;
}
.contact-form-card {
  padding: clamp(1.6rem, 4vw, 3rem);
  border: 1px solid rgba(57,49,133,.07);
  border-radius: 25px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(35,29,86,.13);
}
.contact-form-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.2rem;
}
.contact-form-heading h2 {
  margin: .4rem 0 0;
  color: var(--color-primary);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -.045em;
}
.contact-form-step {
  color: rgba(57,49,133,.32);
  font-size: .72rem;
  font-weight: 800;
}
.contact-success {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 1rem;
  border: 1px solid rgba(20,108,61,.14);
  border-radius: 14px;
  background: #edfff4;
  color: #146c3d;
}
.contact-success > span {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: #146c3d;
  color: #fff;
}
.contact-success svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.contact-success strong { display: block; font-size: .85rem; }
.contact-success p { margin: .1rem 0 0; font-size: .72rem; }
.contact-premium-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem 1.2rem;
}
.contact-field { min-width: 0; }
.contact-field-full { grid-column: 1 / -1; }
.contact-field label {
  display: block;
  margin-bottom: .45rem;
  color: var(--color-primary);
  font-size: .7rem;
  font-weight: 800;
}
.contact-field label span,
.contact-form-footer p span { color: var(--color-accent); }
.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(57,49,133,.2);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--color-text);
  font: inherit;
  font-size: .9rem;
  transition: border-color .2s, box-shadow .2s;
}
.contact-field input {
  height: 48px;
  padding: 0;
}
.contact-field textarea {
  min-height: 125px;
  padding: .7rem 0;
  resize: vertical;
}
.contact-field input::placeholder,
.contact-field textarea::placeholder { color: #aaa8b5; }
.contact-field input:focus,
.contact-field textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 1px 0 var(--color-primary);
}
.contact-field small {
  display: block;
  margin-top: .35rem;
  color: #b42318;
  font-size: .68rem;
}
.contact-form-footer {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: .5rem;
}
.contact-form-footer p {
  margin: 0;
  color: var(--color-muted);
  font-size: .64rem;
}
.contact-form-footer button {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: .85rem 1.2rem;
  border: 0;
  border-radius: 999px;
  background: var(--color-accent);
  box-shadow: 0 12px 28px rgba(239,127,26,.25);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: .72rem;
  font-weight: 800;
  transition: transform .2s, box-shadow .2s;
}
.contact-form-footer button:hover {
  box-shadow: 0 16px 34px rgba(239,127,26,.35);
  transform: translateY(-2px);
}
.contact-form-footer svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}
.contact-info-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.7rem, 4vw, 2.7rem);
  border-radius: 25px;
  background:
    radial-gradient(circle at 100% 100%, rgba(239,127,26,.22), transparent 30%),
    linear-gradient(145deg, #211c59, #393185);
  box-shadow: 0 28px 70px rgba(35,29,86,.18);
  color: #fff;
}
.contact-info-label {
  color: #ffab5c;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.contact-info-card > h2 {
  margin: .65rem 0 2rem;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -.04em;
}
.contact-info-list { position: relative; z-index: 2; }
.contact-info-list > a,
.contact-address {
  display: grid;
  grid-template-columns: 28px 1fr 20px;
  gap: .7rem;
  align-items: center;
  padding: 1rem 0;
  border-top: 1px solid rgba(255,255,255,.14);
}
.contact-info-list > a > span,
.contact-address > span {
  color: #ffab5c;
  font-size: .6rem;
  font-weight: 800;
}
.contact-info-list small,
.contact-address small {
  display: block;
  margin-bottom: .2rem;
  color: rgba(255,255,255,.5);
  font-size: .58rem;
  font-weight: 700;
  text-transform: uppercase;
}
.contact-info-list strong,
.contact-address strong {
  display: block;
  color: #fff;
  font-size: .75rem;
  line-height: 1.45;
}
.contact-info-list svg {
  width: 18px;
  fill: none;
  stroke: rgba(255,255,255,.7);
  stroke-width: 1.6;
  transition: transform .2s;
}
.contact-info-list > a:hover svg { transform: translateX(4px); }
.contact-address { grid-template-columns: 28px 1fr; }
.contact-directions {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding: .8rem 1rem;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px;
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
}
.contact-directions svg {
  width: 18px;
  fill: none;
  stroke: var(--color-accent);
  stroke-width: 1.7;
}
.contact-socials {
  position: relative;
  z-index: 2;
  margin-top: 2rem;
}
.contact-socials > span {
  color: rgba(255,255,255,.46);
  font-size: .58rem;
  font-weight: 800;
  text-transform: uppercase;
}
.contact-socials > div {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: .6rem;
}
.contact-socials a {
  padding: .4rem .6rem;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  color: rgba(255,255,255,.78);
  font-size: .58rem;
  font-weight: 700;
}
.contact-socials a:hover { border-color: var(--color-accent); color: #fff; }
.contact-info-mark {
  position: absolute;
  right: -25px;
  bottom: -90px;
  color: rgba(255,255,255,.035);
  font-size: 18rem;
  font-weight: 800;
  line-height: 1;
}
@keyframes contactLineFloat {
  0%, 100% { opacity: .25; transform: translateY(-12px) rotate(45deg); }
  50% { opacity: .7; transform: translateY(12px) rotate(45deg); }
}

.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2rem; }
.form {
  background: #fff; border-radius: var(--radius); padding: 1.5rem;
  box-shadow: var(--shadow); display: grid; gap: .9rem;
}
.form label { font-weight: 700; font-size: .9rem; color: var(--color-primary); }
.form input, .form textarea {
  width: 100%; border: 1px solid rgba(57,49,133,.18); border-radius: 12px;
  padding: .85rem 1rem; font: inherit; background: #faf9ff;
}
.form textarea { min-height: 140px; resize: vertical; }
.alert {
  padding: .9rem 1rem; border-radius: 12px; margin-bottom: 1rem;
  background: #e8fff1; color: #146c3d; font-weight: 600;
}

.pager { display: flex; flex-wrap: wrap; gap: .4rem; justify-content: center; }
.pager-link {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 42px; padding: .55rem .85rem; border-radius: 10px;
  background: #fff; border: 1px solid rgba(57,49,133,.12);
  color: var(--color-primary); font-weight: 700; font-size: .9rem;
  transition: background .2s, color .2s, transform .2s;
}
.pager-link:hover { background: var(--color-primary); color: #fff; transform: translateY(-2px); }
.pager-link.active { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.pager-link.disabled { opacity: .4; pointer-events: none; }
.pager-dots { align-self: center; color: var(--color-muted); padding: 0 .3rem; }

.site-footer {
  background: #1a1738; color: rgba(255,255,255,.82); padding: 3.5rem 0 2rem;
  margin-top: 2rem;
}
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 2rem; }
.site-footer h4 { color: #fff; margin: 0 0 1rem; font-family: var(--font-display); }
.site-footer a { color: rgba(255,255,255,.75); display: block; margin-bottom: .45rem; }
.site-footer a:hover { color: var(--color-accent); }
.footer-bottom {
  margin-top: 2.5rem; padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: .9rem;
}
.site-footer .footer-credit {
  display: inline-flex;
  margin: 0 0 0 auto;
  align-items: center;
  gap: .3rem;
  color: rgba(255,255,255,.62);
  font-size: .78rem;
}
.site-footer .footer-credit strong {
  color: #fff;
  letter-spacing: .08em;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroTextIn {
  from { opacity: 0; transform: translateX(-18px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroProgress {
  from { transform: translateX(-101%); }
  to { transform: translateX(0); }
}

@media (min-width: 961px) and (max-width: 1180px) {
  .hero-content { padding-right: 420px; }
  .hero.has-president .hero-navigation { right: 440px; }
  .counter-section.has-president .counters {
    width: min(460px, calc(100% - 420px));
  }
  .president-feature {
    right: 28px;
    width: 390px;
  }
  .president-feature-body { padding-right: 155px; }
  .president-feature-body img { width: 150px; }
}

@media (max-width: 960px) {
  .counters, .grid-3, .grid-4, .assoc-row, .contact-grid, .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .associations-hero,
  .associations-hero-inner { min-height: 560px; }
  .associations-hero-stat { width: 190px; height: 190px; }
  .associations-hero-stat strong { font-size: 3.5rem; }
  .associations-intro { grid-template-columns: 1fr; gap: 1.5rem; }
  .associations-intro > p { max-width: 650px; }
  .associations-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .associations-cta { grid-template-columns: 1fr 1fr; }
  .associations-cta > a { justify-self: start; }
  .contact-hero,
  .contact-hero-inner { min-height: 540px; }
  .contact-hero-note { width: 220px; }
  .contact-premium-layout { grid-template-columns: 1fr; }
  .archive-featured { grid-template-columns: 1fr; }
  .archive-featured-image { min-height: 350px; }
  .archive-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .article-hero-content {
    width: min(100% - 2rem, 760px);
    margin-inline: auto;
  }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { padding-top: 0; }
  .article-sidebar-inner { position: static; }
  .article-related { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .article-related > a {
    grid-template-columns: 70px 1fr;
    border-bottom: 0;
    padding-bottom: 0;
  }
  .article-related-image { width: 70px; }
  .workshop-archive-hero-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .workshop-categories {
    max-width: none;
    justify-content: flex-start;
  }
  .workshop-featured { grid-template-columns: 1fr; }
  .workshop-featured-image { min-height: 350px; }
  .workshop-archive-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .workshop-detail-hero-content {
    width: min(100% - 2rem, 760px);
    margin-inline: auto;
  }
  .workshop-detail-layout { grid-template-columns: 1fr; }
  .workshop-detail-sidebar { padding-top: 0; }
  .workshop-detail-sidebar-inner { position: static; }
  .workshop-related { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-intro { min-height: 330px; }
  .news-grid { grid-template-columns: minmax(0, 1.2fr) minmax(250px, .8fr); }
  .workshops-carousel { grid-auto-columns: calc((100% - 1.25rem) / 2); }
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .social-rail { display: none; }
  main, .site-footer { margin-left: 0; }
  .header-inner {
    width: min(1140px, calc(100% - 2rem));
    margin-inline: auto;
  }
  .hero { overflow: hidden; }
  .hero-content { padding-right: 0; }
  .president-feature { display: none; }
  .hero.has-president .hero-navigation { right: 48px; }
  .counter-section { min-height: 0; padding: 1rem 0 1.5rem; }
  .counter-section.has-president .counters { width: 100%; }
  .counter-section .counters {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .counters, .grid-3, .grid-4, .assoc-row, .contact-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .associations-hero {
    min-height: 620px;
    border-radius: 0 0 28px 0;
  }
  .associations-hero-inner {
    min-height: 620px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2.5rem;
  }
  .associations-hero h1 { font-size: clamp(3.2rem, 17vw, 5rem); }
  .associations-hero-stat {
    width: 150px;
    height: 150px;
  }
  .associations-hero-stat strong { font-size: 2.8rem; }
  .associations-ticker-track > span { min-width: 210px; height: 72px; }
  .associations-showcase { padding: 4rem 0; }
  .associations-intro { margin-bottom: 2.5rem; }
  .associations-intro > p { padding-left: 1rem; }
  .associations-grid { grid-template-columns: 1fr; }
  .association-card { min-height: 360px; }
  .associations-cta {
    grid-template-columns: 1fr;
    margin-top: 3rem;
    padding: 2rem 1.5rem;
  }
  .contact-hero {
    min-height: 620px;
    border-radius: 0 0 28px 0;
  }
  .contact-hero-inner {
    min-height: 620px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2.2rem;
  }
  .contact-hero h1 { font-size: clamp(3.2rem, 16vw, 4.8rem); }
  .contact-hero-note {
    width: 100%;
    padding: 1.25rem;
  }
  .contact-hero-note > span { margin-bottom: 1rem; }
  .contact-premium { padding-bottom: 4rem; }
  .contact-premium-layout {
    width: calc(100% - 1rem);
    margin-top: -28px;
  }
  .contact-form-card,
  .contact-info-card {
    padding: 1.35rem;
    border-radius: 18px;
  }
  .contact-form-heading { margin-bottom: 1.7rem; }
  .contact-premium-form { grid-template-columns: 1fr; }
  .contact-field-full,
  .contact-form-footer { grid-column: auto; }
  .contact-form-footer {
    align-items: flex-start;
    flex-direction: column;
  }
  .contact-form-footer button { align-self: stretch; justify-content: center; }
  .news-archive-hero {
    padding: 4.5rem 0 3.5rem;
    border-radius: 0 0 26px 0;
  }
  .news-archive { padding: 2rem 0 4rem; }
  .archive-featured {
    min-height: 0;
    margin-bottom: 2rem;
    border-radius: 18px;
  }
  .archive-featured-image { min-height: 260px; }
  .archive-featured-content { padding: 1.5rem; }
  .archive-grid { grid-template-columns: 1fr; }
  .archive-card h3,
  .archive-card p { min-height: 0; }
  .article-hero {
    height: 500px;
    min-height: 500px;
    border-radius: 0 0 26px 0;
  }
  .article-hero-content { padding-bottom: 3.5rem; }
  .article-hero h1 { font-size: clamp(1.75rem, 8vw, 2.65rem); }
  .article-hero-content > p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }
  .article-layout {
    width: calc(100% - 1rem);
    gap: 1.25rem;
    margin-top: -24px;
  }
  .article-main {
    padding: 1.25rem;
    border-radius: 18px;
  }
  .article-toolbar { margin-bottom: 1.5rem; }
  .article-prose { font-size: .94rem; }
  .article-related { grid-template-columns: 1fr; }
  .article-related > a {
    grid-template-columns: 76px 1fr;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(57,49,133,.08);
  }
  .article-related-image { width: 76px; }
  .workshop-archive-hero {
    padding: 4.5rem 0 3.5rem;
    border-radius: 0 0 0 26px;
  }
  .workshop-categories span { font-size: .58rem; }
  .workshop-archive { padding: 2rem 0 4rem; }
  .workshop-featured {
    min-height: 0;
    margin-bottom: 2rem;
    border-radius: 18px;
  }
  .workshop-featured-image { min-height: 260px; }
  .workshop-featured-content { padding: 1.5rem; }
  .workshop-featured-number { font-size: 5rem; }
  .workshop-archive-grid { grid-template-columns: 1fr; }
  .workshop-archive-body h3,
  .workshop-archive-body p { min-height: 0; }
  .workshop-detail-hero {
    height: 520px;
    min-height: 520px;
    border-radius: 0 0 26px 0;
  }
  .workshop-detail-hero-content { padding-bottom: 3.5rem; }
  .workshop-detail-hero h1 { font-size: clamp(1.75rem, 8vw, 2.65rem); }
  .workshop-detail-hero-content > p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }
  .workshop-detail-layout {
    width: calc(100% - 1rem);
    gap: 1.25rem;
    margin-top: -24px;
  }
  .workshop-detail-main {
    padding: 1.25rem;
    border-radius: 18px;
  }
  .workshop-detail-intro {
    grid-template-columns: 1fr;
    gap: .4rem;
  }
  .workshop-gallery-grid {
    grid-auto-rows: 150px;
    grid-template-columns: 1fr;
  }
  .workshop-gallery-grid a:first-child { grid-row: auto; }
  .workshop-related { grid-template-columns: 1fr; }
  .news-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .news-card,
  .news-card-featured {
    min-height: 190px;
    grid-row: auto;
  }
  .news-card-featured { min-height: 390px; }
  .news-card-featured .news-card-body { padding: 1.4rem; }
  .news-card p { font-size: .88rem; }
  .news-all-link { text-align: left; }
  .workshops-heading { align-items: center; }
  .workshops-heading .section-head { margin-bottom: 1.5rem; }
  .workshops-controls { margin-bottom: 1.5rem; }
  .workshops-controls button { width: 42px; height: 42px; }
  .workshops-carousel { grid-auto-columns: 84%; }
  .faq-intro {
    min-height: 350px;
    padding: 1.5rem;
  }
  .faq-intro > a { right: 1.5rem; bottom: 1.5rem; left: 1.5rem; }
  .faq summary {
    grid-template-columns: 32px 1fr 32px;
    gap: .65rem;
    min-height: 76px;
    padding: .7rem .5rem;
  }
  .faq-answer { padding: 0 2.9rem 1.4rem 2.5rem; }
  .hero {
    height: 500px;
    min-height: 500px;
    max-height: 500px;
    border-radius: 0 0 22px 0;
  }
  .hero-content {
    width: calc(100% - 2rem);
    margin-inline: 1rem;
    padding: 3rem 0 7rem;
  }
  .hero-content h1 { font-size: clamp(1.65rem, 8vw, 2.35rem); }
  .hero-navigation { left: 1rem; right: 1rem; bottom: 1.25rem; }
  .hero.has-president .hero-navigation { right: 1rem; }
  .hero-navigation-left { width: 68%; gap: .7rem; }
  .hero-count strong { font-size: 1.1rem; }
  .hero-arrows button { width: 40px; height: 40px; }
  .counter-section .counters {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
  .counter { padding: .35rem .6rem; }
  .counter strong { font-size: 1.65rem; }
  .counter span { font-size: .65rem; }
}

@media (prefers-reduced-motion: reduce) {
  .associations-hero-stat svg,
  .associations-hero-stat svg circle:last-child,
  .associations-network span,
  .associations-ticker-track,
  .contact-hero-lines span {
    animation: none;
  }
}

/* Premium corporate pages */
.premium-kicker {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  color: var(--color-accent);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.premium-kicker::before {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
}
.corporate-hero {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  border-radius: 0 0 48px 0;
  background:
    radial-gradient(circle at 79% 38%, rgba(239,127,26,.2), transparent 22%),
    linear-gradient(128deg, #12102c, #272164 62%, #393185);
  color: #fff;
}
.corporate-hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, #000, transparent 80%);
  content: "";
}
.corporate-hero-orbit {
  position: absolute;
  top: 50%;
  right: 8%;
  width: 270px;
  height: 270px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
  transform: translateY(-50%);
}
.corporate-hero-orbit::before,
.corporate-hero-orbit::after {
  position: absolute;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: inherit;
  content: "";
}
.corporate-hero-orbit::before { inset: 35px; }
.corporate-hero-orbit::after { inset: 76px; background: rgba(239,127,26,.2); }
.corporate-hero-inner {
  position: relative;
  z-index: 1;
  min-height: 510px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.corporate-hero .article-breadcrumb { position: absolute; top: 2.4rem; }
.corporate-hero-copy { max-width: 760px; }
.corporate-hero h1 {
  max-width: 900px;
  margin: .8rem 0 1rem;
  font-size: clamp(3.1rem, 6vw, 6.1rem);
  line-height: .95;
  letter-spacing: -.065em;
}
.corporate-hero-copy > p {
  max-width: 610px;
  margin: 0;
  color: rgba(255,255,255,.67);
  font-size: clamp(.95rem, 1.4vw, 1.15rem);
  line-height: 1.8;
}
.corporate-hero-index {
  position: absolute;
  right: 14%;
  top: 50%;
  z-index: 2;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  transform: translateY(-50%);
}
.corporate-hero-word {
  position: absolute;
  right: -1rem;
  bottom: -2.7rem;
  color: transparent;
  font-size: clamp(5rem, 12vw, 11rem);
  font-weight: 800;
  letter-spacing: -.07em;
  -webkit-text-stroke: 1px rgba(255,255,255,.07);
  white-space: nowrap;
}
.corporate-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: clamp(3rem, 7vw, 7rem);
  padding-top: clamp(4rem, 7vw, 7rem);
  padding-bottom: clamp(5rem, 8vw, 8rem);
}
.corporate-intro {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(57,49,133,.11);
}
.corporate-intro span {
  color: var(--color-accent);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.corporate-intro strong {
  max-width: 530px;
  color: var(--color-primary);
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  line-height: 1.45;
}
.corporate-sidebar { padding-top: 1rem; }
.corporate-sidebar-inner {
  position: sticky;
  top: 105px;
  overflow: hidden;
  padding: 1.8rem;
  border: 1px solid rgba(57,49,133,.08);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(33,27,84,.08);
}
.corporate-sidebar h2 {
  margin: .35rem 0 1.3rem;
  color: var(--color-primary);
  font-size: 1.55rem;
}
.corporate-sidebar nav a {
  display: grid;
  grid-template-columns: 28px 1fr 18px;
  align-items: center;
  gap: .7rem;
  padding: .85rem 0;
  border-bottom: 1px solid rgba(57,49,133,.08);
  color: var(--color-text);
}
.corporate-sidebar nav a > span { color: rgba(57,49,133,.38); font-size: .62rem; font-weight: 800; }
.corporate-sidebar nav a strong { font-size: .8rem; }
.corporate-sidebar nav svg,
.corporate-contact-link svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  transition: transform .2s;
}
.corporate-sidebar nav a:hover,
.corporate-sidebar nav a.is-active { color: var(--color-accent); }
.corporate-sidebar nav a:hover svg { transform: translateX(3px); }
.corporate-contact-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 1.4rem -1.8rem -1.8rem;
  padding: 1.15rem 1.8rem;
  background: var(--color-primary);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
}

/* Premium team directory */
.team-hero {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border-radius: 0 0 48px 0;
  background: linear-gradient(125deg, #11102a, #211b56 56%, #393185);
  color: #fff;
}
.team-hero::after {
  position: absolute;
  top: -210px;
  right: -100px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(255,255,255,.025), 0 0 0 180px rgba(255,255,255,.018);
  content: "";
}
.team-hero-lines span {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255,255,255,.05);
}
.team-hero-lines span:nth-child(1) { left: 24%; }
.team-hero-lines span:nth-child(2) { left: 50%; }
.team-hero-lines span:nth-child(3) { left: 76%; }
.team-hero-inner {
  position: relative;
  z-index: 2;
  min-height: 610px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}
.team-hero-copy { max-width: 780px; }
.team-hero .article-breadcrumb { margin-bottom: 4.5rem; }
.team-hero h1 {
  margin: .8rem 0 1.2rem;
  font-size: clamp(3.6rem, 7.4vw, 7.4rem);
  line-height: .88;
  letter-spacing: -.075em;
}
.team-hero h1 em { color: var(--color-accent); font-style: normal; }
.team-hero-copy > p {
  max-width: 600px;
  color: rgba(255,255,255,.62);
  font-size: 1.02rem;
  line-height: 1.75;
}
.team-hero-stat {
  position: relative;
  z-index: 2;
  flex: 0 0 220px;
  width: 220px;
  height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  background: rgba(255,255,255,.045);
  backdrop-filter: blur(8px);
}
.team-hero-stat span,
.team-hero-stat small {
  color: rgba(255,255,255,.55);
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.team-hero-stat strong { color: #fff; font-size: 4.7rem; line-height: 1; letter-spacing: -.08em; }
.team-hero-word {
  position: absolute;
  right: -1rem;
  bottom: -3.5rem;
  color: transparent;
  font-size: clamp(7rem, 16vw, 14rem);
  font-weight: 800;
  letter-spacing: -.08em;
  -webkit-text-stroke: 1px rgba(255,255,255,.06);
}
.team-directory { padding: clamp(5rem, 8vw, 8rem) 0; }
.team-directory-intro {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 3rem;
}
.team-directory-intro h2 {
  margin: .55rem 0 0;
  color: var(--color-primary);
  font-size: clamp(2.3rem, 4.4vw, 4.3rem);
  line-height: 1.02;
  letter-spacing: -.055em;
}
.team-directory-intro > p { max-width: 540px; margin: 0; color: var(--color-muted); line-height: 1.85; }
.team-category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-bottom: 5rem;
  padding: 1rem;
  border: 1px solid rgba(57,49,133,.08);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 15px 45px rgba(35,29,84,.06);
}
.team-category-nav a {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .75rem 1rem;
  border-radius: 10px;
  color: var(--color-primary);
  font-size: .72rem;
  font-weight: 800;
}
.team-category-nav a span { color: var(--color-accent); font-size: .58rem; }
.team-category-nav a:hover { background: var(--color-primary); color: #fff; }
.team-category { scroll-margin-top: 110px; margin-bottom: 6rem; }
.team-category:last-child { margin-bottom: 0; }
.team-category-head {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 1.3rem;
  align-items: start;
  margin-bottom: 2rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid rgba(57,49,133,.12);
}
.team-category-head > span { color: var(--color-accent); font-size: .75rem; font-weight: 800; }
.team-category-head h2 { margin: -.25rem 0 .35rem; color: var(--color-primary); font-size: clamp(1.7rem, 3vw, 2.5rem); }
.team-category-head p { max-width: 620px; margin: 0; color: var(--color-muted); font-size: .85rem; }
.team-category-head small { color: var(--color-muted); font-size: .65rem; font-weight: 800; text-transform: uppercase; }
.team-premium-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.2rem; }
.team-premium-card { min-width: 0; color: var(--color-text); }
.team-premium-photo {
  position: relative;
  aspect-ratio: .82;
  overflow: hidden;
  border-radius: 16px;
  background: #e9e7f1;
}
.team-premium-photo::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(transparent, rgba(17,14,43,.55));
  content: "";
}
.team-premium-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .55s cubic-bezier(.2,.8,.2,1);
}
.team-premium-card:hover .team-premium-photo img { transform: scale(1.045); }
.team-card-arrow {
  position: absolute;
  right: .8rem;
  bottom: .8rem;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--color-primary);
  transform: translateY(58px);
  transition: transform .3s;
}
.team-premium-card:hover .team-card-arrow { transform: translateY(0); }
.team-card-arrow svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.team-premium-info { padding: 1.1rem .2rem 0; }
.team-premium-info small { color: var(--color-accent); font-size: .62rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.team-premium-info h3 { margin: .3rem 0 .45rem; color: var(--color-primary); font-size: 1.05rem; }
.team-premium-info > span { color: var(--color-muted); font-size: .65rem; font-weight: 700; }

/* Premium profile */
.profile-hero {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border-radius: 0 0 48px 0;
  background: linear-gradient(120deg, #11102b 0 43%, #292269 43% 100%);
  color: #fff;
}
.profile-hero-shape {
  position: absolute;
  right: -160px;
  bottom: -310px;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(255,255,255,.025), 0 0 0 180px rgba(255,255,255,.018);
}
.profile-hero-inner {
  position: relative;
  z-index: 2;
  min-height: 610px;
  display: grid;
  grid-template-columns: minmax(300px, .78fr) minmax(0, 1.22fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: end;
}
.profile-photo-wrap { align-self: center; position: relative; }
.profile-photo-index {
  position: absolute;
  left: -2rem;
  top: 50%;
  z-index: 2;
  color: rgba(255,255,255,.5);
  font-size: .55rem;
  font-weight: 800;
  letter-spacing: .15em;
  writing-mode: vertical-rl;
  transform: rotate(180deg) translateY(50%);
}
.profile-photo {
  width: min(100%, 480px);
  aspect-ratio: 1;
  margin: 0 auto;
  overflow: hidden;
  border: 8px solid rgba(255,255,255,.94);
  border-radius: 50%;
  background: #e9e7f1;
  box-shadow: 0 28px 70px rgba(7,5,29,.3);
}
.profile-photo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(.88);
}
.profile-hero-copy { align-self: center; padding-bottom: 1rem; }
.profile-hero .article-breadcrumb { margin-bottom: 4.5rem; }
.profile-hero h1 {
  max-width: 700px;
  margin: .8rem 0 1rem;
  font-size: clamp(3.5rem, 6.5vw, 6.7rem);
  line-height: .9;
  letter-spacing: -.07em;
}
.profile-hero-copy > p { margin: 0; color: var(--color-accent); font-size: 1rem; font-weight: 800; }
.profile-socials { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 2rem; }
.profile-socials a {
  padding: .62rem .9rem;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  color: rgba(255,255,255,.75);
  font-size: .62rem;
  font-weight: 800;
}
.profile-socials a:hover { border-color: var(--color-accent); background: var(--color-accent); color: #fff; }
.profile-hero-word {
  position: absolute;
  right: -1rem;
  bottom: -3rem;
  color: transparent;
  font-size: clamp(7rem, 15vw, 13rem);
  font-weight: 800;
  letter-spacing: -.08em;
  -webkit-text-stroke: 1px rgba(255,255,255,.055);
}
.profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(3rem, 7vw, 7rem);
  padding-top: clamp(4.5rem, 8vw, 8rem);
  padding-bottom: clamp(5rem, 8vw, 8rem);
}
.profile-section-title { margin-bottom: 2.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(57,49,133,.11); }
.profile-section-title span { color: var(--color-accent); font-size: .66rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.profile-section-title h2 { margin: .45rem 0 0; color: var(--color-primary); font-size: clamp(2rem, 3.5vw, 3.2rem); letter-spacing: -.045em; }
.profile-back {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  margin-top: 2.5rem;
  color: var(--color-primary);
  font-size: .72rem;
  font-weight: 800;
}
.profile-back svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.profile-related { padding-top: .4rem; }
.profile-related > h2 { margin: .35rem 0 1.4rem; color: var(--color-primary); font-size: 1.7rem; }
.profile-related > div { border-top: 1px solid rgba(57,49,133,.1); }
.profile-related a {
  display: grid;
  grid-template-columns: 58px 1fr 18px;
  align-items: center;
  gap: .8rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(57,49,133,.1);
  color: var(--color-text);
}
.profile-related img { width: 58px; height: 66px; border-radius: 9px; object-fit: cover; object-position: center top; }
.profile-related small { display: block; margin-bottom: .2rem; color: var(--color-accent); font-size: .55rem; font-weight: 800; }
.profile-related strong { display: block; color: var(--color-primary); font-size: .78rem; }
.profile-related svg { width: 18px; fill: none; stroke: var(--color-primary); stroke-width: 1.6; transition: transform .2s; }
.profile-related a:hover svg { transform: translateX(4px); }

/* Premium footer */
.site-footer {
  position: relative;
  overflow: hidden;
  margin-top: 0;
  padding: 0;
  background: #11102a;
}
.footer-glow {
  position: absolute;
  top: -260px;
  right: -220px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(57,49,133,.65), transparent 67%);
  pointer-events: none;
}
.footer-cta {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  padding-top: clamp(4rem, 7vw, 7rem);
  padding-bottom: clamp(4rem, 7vw, 6rem);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-cta > span {
  grid-column: 1 / -1;
  margin-bottom: .8rem;
  color: var(--color-accent);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.footer-cta h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.3rem, 4.6vw, 4.7rem);
  line-height: 1;
  letter-spacing: -.06em;
}
.footer-cta h2 em { color: rgba(255,255,255,.28); font-style: normal; }
.footer-cta > a {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  margin: 0 0 .3rem 2rem;
  padding: 1rem 1.25rem;
  border-radius: 999px;
  background: var(--color-accent);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
}
.footer-cta > a svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.footer-main {
  position: relative;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(3rem, 7vw, 7rem);
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
.footer-brand img { display: block; max-width: 180px; max-height: 64px; filter: brightness(0) invert(1); }
.footer-brand > strong { color: #fff; font-size: 1.7rem; }
.footer-brand p { max-width: 320px; margin: 1.3rem 0 .65rem; color: rgba(255,255,255,.58); line-height: 1.7; }
.footer-brand > span { color: rgba(255,255,255,.3); font-size: .58rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.footer-links { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem; }
.site-footer .footer-links h4 {
  margin: 0 0 1.2rem;
  color: rgba(255,255,255,.38);
  font-size: .6rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.site-footer .footer-links a { width: fit-content; margin-bottom: .65rem; color: rgba(255,255,255,.73); font-size: .76rem; font-weight: 700; }
.site-footer .footer-links a:hover { color: var(--color-accent); }
.footer-contact p { color: rgba(255,255,255,.46); font-size: .7rem; line-height: 1.7; }
.footer-socials { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: 1rem; }
.site-footer .footer-socials a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin: 0;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
  font-size: .55rem;
  text-transform: uppercase;
}
.footer-bottom { position: relative; margin-top: 0; padding: 1.2rem 0 1.6rem; color: rgba(255,255,255,.32); font-size: .68rem; }

@media (max-width: 1000px) {
  .corporate-layout,
  .profile-layout { grid-template-columns: 1fr; }
  .corporate-sidebar-inner { position: static; }
  .team-premium-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .profile-hero { background: linear-gradient(120deg, #11102b 0 38%, #292269 38% 100%); }
  .profile-hero-inner { grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr); gap: 3rem; }
  .footer-main { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .corporate-hero,
  .corporate-hero-inner { min-height: 490px; }
  .corporate-hero { border-radius: 0 0 28px 0; }
  .corporate-hero .article-breadcrumb { top: 1.7rem; }
  .corporate-hero h1 { font-size: clamp(2.8rem, 14vw, 4.4rem); }
  .corporate-hero-index { display: none; }
  .corporate-hero-orbit { right: -115px; opacity: .6; }
  .corporate-layout { padding-top: 3.5rem; }
  .corporate-intro { grid-template-columns: 1fr; gap: .6rem; }
  .team-hero,
  .team-hero-inner { min-height: 610px; }
  .team-hero { border-radius: 0 0 28px 0; }
  .team-hero-inner { align-items: flex-start; justify-content: center; flex-direction: column; gap: 2rem; padding-top: 2rem; }
  .team-hero .article-breadcrumb { margin-bottom: 3rem; }
  .team-hero h1 { font-size: clamp(3.2rem, 16vw, 5rem); }
  .team-hero-stat { width: 140px; height: 140px; flex-basis: 140px; align-self: flex-end; }
  .team-hero-stat strong { font-size: 3.1rem; }
  .team-directory-intro { grid-template-columns: 1fr; gap: 1.5rem; }
  .team-category-nav { flex-wrap: nowrap; overflow-x: auto; }
  .team-category-nav a { flex: 0 0 auto; }
  .team-category-head { grid-template-columns: 42px 1fr; }
  .team-category-head small { display: none; }
  .team-premium-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .profile-hero { background: linear-gradient(180deg, #11102b 0 43%, #292269 43% 100%); }
  .profile-hero-inner { min-height: 760px; grid-template-columns: 1fr; gap: 0; align-items: stretch; }
  .profile-photo-wrap { order: 2; }
  .profile-photo { width: min(100%, 360px); }
  .profile-hero-copy { order: 1; align-self: end; padding: 3rem 0 2rem; }
  .profile-hero .article-breadcrumb { margin-bottom: 2.5rem; }
  .profile-hero h1 { font-size: clamp(3rem, 15vw, 4.8rem); }
  .footer-cta { grid-template-columns: 1fr; }
  .footer-cta > a { width: fit-content; margin: 2rem 0 0; }
  .footer-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 480px) {
  .team-premium-grid { gap: .8rem; }
  .team-premium-info h3 { font-size: .88rem; }
  .team-premium-info small { font-size: .52rem; }
  .team-card-arrow { display: none; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-contact { grid-column: 1 / -1; }
}

/* Home associations showcase */
.home-associations {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 9vw, 9rem) 0;
  background:
    radial-gradient(circle at 90% 15%, rgba(239,127,26,.15), transparent 24%),
    linear-gradient(135deg, #11102b, #201a55 60%, #282166);
  color: #fff;
}
.home-associations::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, #000, transparent 85%);
  content: "";
}
.home-associations-network span {
  position: absolute;
  z-index: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 7px rgba(239,127,26,.1);
  animation: homeNetworkPulse 3.5s ease-in-out infinite;
}
.home-associations-network span::after {
  position: absolute;
  left: 3px;
  bottom: 3px;
  width: 1px;
  height: 190px;
  background: linear-gradient(transparent, rgba(255,255,255,.13));
  transform: rotate(38deg);
  transform-origin: bottom;
  content: "";
}
.home-associations-network span:nth-child(1) { top: 16%; left: 7%; }
.home-associations-network span:nth-child(2) { top: 42%; left: 18%; animation-delay: -.8s; }
.home-associations-network span:nth-child(3) { top: 18%; right: 13%; animation-delay: -1.7s; }
.home-associations-network span:nth-child(4) { bottom: 14%; right: 5%; animation-delay: -2.4s; }
.home-associations-network span:nth-child(5) { bottom: 8%; left: 42%; animation-delay: -1.2s; }
.home-associations-inner { position: relative; z-index: 1; }
.home-associations-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.home-associations-head h2 {
  margin: .7rem 0 0;
  color: #fff;
  font-size: clamp(2.8rem, 5.6vw, 5.7rem);
  line-height: .96;
  letter-spacing: -.068em;
}
.home-associations-head h2 em {
  color: rgba(255,255,255,.25);
  font-style: normal;
}
.home-associations-summary {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 1rem;
  padding-left: 2rem;
  border-left: 1px solid rgba(255,255,255,.13);
}
.home-associations-summary strong {
  color: #fff;
  font-size: clamp(3.8rem, 6vw, 5.5rem);
  line-height: .9;
  letter-spacing: -.08em;
}
.home-associations-summary > span {
  color: var(--color-accent);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1.55;
  text-transform: uppercase;
}
.home-associations-summary p {
  grid-column: 1 / -1;
  max-width: 350px;
  margin: 1.2rem 0 0;
  color: rgba(255,255,255,.52);
  font-size: .82rem;
  line-height: 1.7;
}
.home-associations-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255,255,255,.12);
  border-left: 1px solid rgba(255,255,255,.12);
}
.home-association-card {
  position: relative;
  min-height: 245px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: 1fr auto;
  gap: 1rem;
  padding: 1.6rem;
  border-right: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.025);
  transition: background .3s, transform .3s;
}
.home-association-card:hover {
  z-index: 2;
  background: rgba(255,255,255,.075);
  transform: translateY(-4px);
}
.home-association-number {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  color: rgba(255,255,255,.25);
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .08em;
}
.home-association-logo {
  width: 105px;
  height: 90px;
  display: grid;
  place-items: center;
  align-self: start;
  padding: .8rem;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 14px 35px rgba(0,0,0,.18);
}
.home-association-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.home-association-logo strong {
  color: var(--color-primary);
  font-size: 1.5rem;
}
.home-association-copy {
  grid-column: 1 / -1;
  align-self: end;
  padding-right: 3.5rem;
}
.home-association-copy small {
  color: var(--color-accent);
  font-size: .57rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.home-association-copy h3 {
  margin: .4rem 0 0;
  color: #fff;
  font-size: clamp(.88rem, 1.25vw, 1.1rem);
  line-height: 1.4;
}
.home-association-card > a,
.home-association-check {
  position: absolute;
  right: 1.35rem;
  bottom: 1.35rem;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  color: #fff;
  transition: border-color .2s, background .2s, transform .2s;
}
.home-association-card > a:hover {
  border-color: var(--color-accent);
  background: var(--color-accent);
  transform: rotate(7deg);
}
.home-association-check { color: rgba(255,255,255,.42); }
.home-association-card > a svg,
.home-association-check svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.home-associations-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2.2rem;
}
.home-associations-footer p {
  max-width: 580px;
  margin: 0;
  color: rgba(255,255,255,.45);
  font-size: .78rem;
}
.home-associations-footer a {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  padding: .95rem 1.25rem;
  border-radius: 999px;
  background: var(--color-accent);
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 12px 30px rgba(239,127,26,.2);
}
.home-associations-footer a svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  transition: transform .2s;
}
.home-associations-footer a:hover svg { transform: translateX(4px); }

@keyframes homeNetworkPulse {
  0%, 100% { opacity: .45; transform: scale(.8); }
  50% { opacity: 1; transform: scale(1.15); }
}

@media (max-width: 900px) {
  .home-associations-head { grid-template-columns: 1fr; gap: 2.5rem; }
  .home-associations-summary { max-width: 420px; }
  .home-associations-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 600px) {
  .home-associations { padding: 4.5rem 0; }
  .home-associations-head h2 { font-size: clamp(2.65rem, 13vw, 4rem); }
  .home-associations-summary { padding-left: 1.2rem; }
  .home-associations-grid { grid-template-columns: 1fr; }
  .home-association-card { min-height: 215px; }
  .home-associations-footer { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  .home-associations-network span { animation: none; }
}

/* Cookie consent and privacy center */
body.cookie-modal-open { overflow: hidden; }
.cookie-banner {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  left: calc(88px + 1.5rem);
  z-index: 1500;
  display: grid;
  grid-template-columns: 64px minmax(260px, 1fr) auto;
  align-items: center;
  gap: 1.2rem;
  padding: 1.15rem 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(57,49,133,.09);
  border-radius: 22px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 24px 70px rgba(20,16,57,.22);
  opacity: 0;
  transform: translateY(22px) scale(.985);
  backdrop-filter: blur(18px);
  transition: opacity .3s, transform .3s;
}
.cookie-banner::before {
  position: absolute;
  top: -80px;
  right: 22%;
  width: 220px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239,127,26,.12), transparent 70%);
  content: "";
  pointer-events: none;
}
.cookie-banner[hidden] { display: none !important; }
.cookie-banner.is-visible { opacity: 1; transform: translateY(0) scale(1); }
.cookie-banner-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: linear-gradient(145deg, var(--color-primary), #221c5b);
  color: #fff;
  box-shadow: 0 12px 28px rgba(57,49,133,.2);
}
.cookie-banner-mark svg,
.cookie-dialog-icon svg {
  width: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cookie-banner-copy { position: relative; }
.cookie-banner-copy > span {
  display: block;
  margin-bottom: .3rem;
  color: var(--color-primary);
  font-size: .63rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.cookie-banner-copy p {
  max-width: 720px;
  margin: 0;
  color: #676477;
  font-size: .74rem;
  line-height: 1.65;
}
.cookie-banner-copy a {
  color: var(--color-primary);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(57,49,133,.25);
  text-underline-offset: 3px;
}
.cookie-banner-actions {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .55rem;
}
.cookie-btn {
  min-height: 43px;
  padding: .7rem 1rem;
  border: 0;
  border-radius: 999px;
  font-family: inherit;
  font-size: .65rem;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .2s, background .2s, border-color .2s, color .2s, box-shadow .2s;
}
.cookie-btn:hover { transform: translateY(-2px); }
.cookie-btn-primary {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 10px 24px rgba(239,127,26,.24);
}
.cookie-btn-primary:hover { box-shadow: 0 14px 30px rgba(239,127,26,.34); }
.cookie-btn-secondary {
  border: 1px solid rgba(57,49,133,.12);
  background: #f4f2fa;
  color: var(--color-primary);
}
.cookie-btn-ghost {
  border: 1px solid rgba(57,49,133,.13);
  background: transparent;
  color: #777485;
}
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 1600;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity .25s;
}
.cookie-modal[hidden] { display: none !important; }
.cookie-modal.is-visible { opacity: 1; }
.cookie-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13,11,35,.78);
  backdrop-filter: blur(12px);
}
.cookie-dialog {
  position: relative;
  z-index: 1;
  width: min(900px, 100%);
  max-height: min(760px, calc(100vh - 3rem));
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 34px 100px rgba(0,0,0,.38);
  transform: translateY(20px) scale(.97);
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
}
.cookie-modal.is-visible .cookie-dialog { transform: translateY(0) scale(1); }
.cookie-dialog-header {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1.8rem 2rem 1.6rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 10%, rgba(239,127,26,.22), transparent 28%),
    linear-gradient(125deg, #17143b, #312978);
  color: #fff;
}
.cookie-dialog-header::after {
  position: absolute;
  right: 12%;
  bottom: -80px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  box-shadow: 0 0 0 35px rgba(255,255,255,.025);
  content: "";
}
.cookie-dialog-header > div { position: relative; z-index: 1; }
.cookie-dialog-header span {
  color: var(--color-accent);
  font-size: .57rem;
  font-weight: 800;
  letter-spacing: .17em;
}
.cookie-dialog-header h2 {
  margin: .45rem 0 0;
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  letter-spacing: -.045em;
}
.cookie-dialog-close {
  position: relative;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: #fff;
  cursor: pointer;
}
.cookie-dialog-close:hover { background: var(--color-accent); border-color: var(--color-accent); }
.cookie-dialog-close svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}
.cookie-dialog-body {
  overflow-y: auto;
  padding: 1.6rem 2rem;
  background: linear-gradient(180deg, #fff, #faf9fd);
}
.cookie-dialog-intro {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.3rem;
  padding-bottom: 1.3rem;
  border-bottom: 1px solid rgba(57,49,133,.09);
}
.cookie-dialog-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: rgba(57,49,133,.07);
  color: var(--color-primary);
}
.cookie-dialog-icon svg { width: 28px; }
.cookie-dialog-intro p {
  margin: 0;
  color: #6f6b7d;
  font-size: .77rem;
  line-height: 1.7;
}
.cookie-dialog-intro a { color: var(--color-primary); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.cookie-preferences { display: grid; gap: .7rem; }
.cookie-preference {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(57,49,133,.08);
  border-radius: 16px;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.cookie-preference:hover {
  border-color: rgba(57,49,133,.18);
  box-shadow: 0 10px 28px rgba(38,31,91,.06);
}
.cookie-preference > div {
  display: grid;
  grid-template-columns: 27px 1fr;
  column-gap: .7rem;
}
.cookie-preference > div > span {
  grid-row: 1 / 3;
  padding-top: .2rem;
  color: var(--color-accent);
  font-size: .57rem;
  font-weight: 800;
}
.cookie-preference h3 { margin: 0 0 .28rem; color: var(--color-primary); font-size: .9rem; }
.cookie-preference p { margin: 0; color: #777384; font-size: .68rem; line-height: 1.55; }
.cookie-preference > strong {
  color: var(--color-accent);
  font-size: .57rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.cookie-switch { position: relative; flex: 0 0 auto; cursor: pointer; }
.cookie-switch input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.cookie-switch > span {
  position: relative;
  width: 50px;
  height: 28px;
  display: block;
  border-radius: 999px;
  background: #dedce5;
  transition: background .2s;
}
.cookie-switch > span::after {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.16);
  content: "";
  transition: transform .2s;
}
.cookie-switch input:checked + span { background: var(--color-accent); }
.cookie-switch input:checked + span::after { transform: translateX(22px); }
.cookie-switch input:focus-visible + span { outline: 3px solid rgba(239,127,26,.25); outline-offset: 3px; }
.cookie-dialog-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .65rem;
  padding: 1rem 2rem 1.2rem;
  border-top: 1px solid rgba(57,49,133,.08);
  background: #fff;
}
.cookie-dialog-footer .cookie-btn-primary { min-width: 180px; }
.footer-legal { display: inline-flex; align-items: center; gap: .8rem; }
.site-footer .footer-legal a,
.site-footer .footer-legal button {
  width: auto;
  display: inline;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.42);
  font: inherit;
  cursor: pointer;
}
.site-footer .footer-legal a:hover,
.site-footer .footer-legal button:hover { color: var(--color-accent); }

/* Cookie policy */
.cookie-policy-hero {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-radius: 0 0 48px 0;
  background:
    radial-gradient(circle at 77% 38%, rgba(239,127,26,.22), transparent 23%),
    linear-gradient(128deg, #11102b, #282168 65%, #393185);
  color: #fff;
}
.cookie-policy-hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(90deg, #000, transparent 85%);
  content: "";
}
.cookie-policy-hero-inner {
  position: relative;
  z-index: 2;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cookie-policy-hero .article-breadcrumb { position: absolute; top: 2.4rem; }
.cookie-policy-hero h1 {
  max-width: 900px;
  margin: .7rem 0 1rem;
  font-size: clamp(3.5rem, 7vw, 7rem);
  line-height: .9;
  letter-spacing: -.075em;
}
.cookie-policy-hero-inner > p {
  max-width: 660px;
  margin: 0;
  color: rgba(255,255,255,.65);
  font-size: 1.05rem;
}
.cookie-policy-hero-inner > small {
  margin-top: 1.6rem;
  color: rgba(255,255,255,.35);
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.cookie-policy-orbit {
  position: absolute;
  right: 8%;
  top: 50%;
  width: 270px;
  height: 270px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  transform: translateY(-50%);
}
.cookie-policy-orbit::before,
.cookie-policy-orbit::after {
  position: absolute;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  content: "";
}
.cookie-policy-orbit::before { inset: 40px; }
.cookie-policy-orbit::after { inset: 85px; }
.cookie-policy-orbit span {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 7px rgba(239,127,26,.1);
}
.cookie-policy-orbit span:nth-child(1) { top: 20px; left: 74px; }
.cookie-policy-orbit span:nth-child(2) { right: 5px; bottom: 75px; }
.cookie-policy-orbit span:nth-child(3) { left: 32px; bottom: 24px; }
.cookie-policy-word {
  position: absolute;
  right: -1rem;
  bottom: -3rem;
  color: transparent;
  font-size: clamp(7rem, 16vw, 14rem);
  font-weight: 800;
  letter-spacing: -.08em;
  -webkit-text-stroke: 1px rgba(255,255,255,.06);
}
.cookie-policy-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: clamp(3rem, 8vw, 8rem);
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: clamp(5rem, 9vw, 9rem);
}
.cookie-policy-aside > div {
  position: sticky;
  top: 105px;
  padding: 1.7rem;
  overflow: hidden;
  border-radius: 20px;
  background:
    radial-gradient(circle at 95% 5%, rgba(239,127,26,.25), transparent 30%),
    var(--color-primary);
  color: #fff;
  box-shadow: 0 20px 55px rgba(38,31,91,.16);
}
.cookie-policy-aside span {
  color: var(--color-accent);
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.cookie-policy-aside strong { display: block; margin: .7rem 0 1.4rem; font-size: 1.25rem; line-height: 1.5; }
.cookie-policy-aside button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 1rem;
  border: 0;
  border-radius: 10px;
  background: #fff;
  color: var(--color-primary);
  font: inherit;
  font-size: .65rem;
  font-weight: 800;
  cursor: pointer;
}
.cookie-policy-aside button svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.cookie-policy-intro {
  margin: 0 0 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(57,49,133,.11);
  color: var(--color-primary);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 700;
  line-height: 1.55;
}
.cookie-policy-sections section {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 1rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(57,49,133,.09);
}
.cookie-policy-sections section > span {
  padding-top: .28rem;
  color: var(--color-accent);
  font-size: .65rem;
  font-weight: 800;
}
.cookie-policy-sections h2 { margin: 0 0 .75rem; color: var(--color-primary); font-size: clamp(1.25rem, 2vw, 1.65rem); }
.cookie-policy-sections p { max-width: 720px; margin: 0; color: #6f6b7c; font-size: .88rem; line-height: 1.85; }
.cookie-policy-sections p strong { color: var(--color-primary); }
.cookie-policy-email {
  display: inline-block;
  margin-top: 2.5rem;
  color: var(--color-accent);
  font-size: 1rem;
  font-weight: 800;
}

@media (max-width: 1100px) {
  .cookie-banner { grid-template-columns: 54px 1fr; }
  .cookie-banner-mark { width: 52px; height: 52px; }
  .cookie-banner-actions { grid-column: 1 / -1; justify-content: flex-end; }
}

@media (max-width: 960px) {
  .cookie-banner { left: 1rem; right: 1rem; bottom: 1rem; }
}

@media (max-width: 760px) {
  .cookie-banner {
    grid-template-columns: 44px 1fr;
    gap: .8rem;
    padding: .9rem;
    border-radius: 18px;
  }
  .cookie-banner-mark { width: 44px; height: 44px; border-radius: 13px; }
  .cookie-banner-mark svg { width: 27px; }
  .cookie-banner-copy > span { font-size: .55rem; }
  .cookie-banner-copy p { font-size: .67rem; }
  .cookie-banner-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }
  .cookie-banner-actions .cookie-btn { min-height: 40px; padding: .55rem .7rem; font-size: .58rem; }
  .cookie-banner-actions .cookie-btn-ghost { grid-column: 1 / -1; min-height: 32px; padding: .3rem; border: 0; }
  .cookie-modal { padding: .65rem; }
  .cookie-dialog { max-height: calc(100vh - 1.3rem); border-radius: 21px; }
  .cookie-dialog-header { padding: 1.35rem 1.2rem; }
  .cookie-dialog-header h2 { font-size: 1.7rem; }
  .cookie-dialog-body { padding: 1.1rem; }
  .cookie-dialog-intro { grid-template-columns: 1fr; }
  .cookie-dialog-icon { display: none; }
  .cookie-preference { padding: .9rem; gap: .7rem; }
  .cookie-preference > div { grid-template-columns: 22px 1fr; column-gap: .4rem; }
  .cookie-preference p { font-size: .63rem; }
  .cookie-preference > strong { max-width: 65px; text-align: right; }
  .cookie-dialog-footer { padding: .8rem 1.1rem 1rem; }
  .cookie-dialog-footer .cookie-btn { flex: 1; min-width: 0; }
  .cookie-policy-hero,
  .cookie-policy-hero-inner { min-height: 510px; }
  .cookie-policy-hero { border-radius: 0 0 28px 0; }
  .cookie-policy-hero .article-breadcrumb { top: 1.8rem; }
  .cookie-policy-hero h1 { font-size: clamp(3.2rem, 16vw, 5rem); }
  .cookie-policy-orbit { right: -150px; opacity: .6; }
  .cookie-policy-layout { grid-template-columns: 1fr; }
  .cookie-policy-aside > div { position: static; }
  .footer-legal { width: 100%; order: 3; }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-banner,
  .cookie-dialog,
  .cookie-modal { transition: none; }
}

/* Circular team cards and committee groups */
.team-hero-copy { max-width: 900px; }
.team-premium-card {
  position: relative;
  min-width: 0;
  padding: .5rem .5rem 1.3rem;
  text-align: center;
}
.team-premium-card.has-profile { cursor: pointer; }
.team-card-committee {
  position: relative;
  z-index: 2;
  display: block;
  min-height: 2.6em;
  margin-bottom: .85rem;
  padding: 0 .4rem;
  color: var(--color-primary);
  font-size: .72rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: .01em;
  pointer-events: none;
}
.team-card-committee::after {
  display: block;
  width: 34px;
  height: 2px;
  margin: .5rem auto 0;
  border-radius: 2px;
  background: var(--color-accent);
  content: "";
}
.team-premium-photo {
  width: min(100%, 230px);
  aspect-ratio: 1;
  margin: 0 auto;
  overflow: hidden;
  border: 7px solid #fff;
  border-radius: 50%;
  background: #e9e7f1;
  box-shadow: 0 18px 45px rgba(35,29,84,.13);
}
.team-premium-photo::after {
  inset: 0;
  height: auto;
  border-radius: 50%;
  background: linear-gradient(180deg, transparent 62%, rgba(17,14,43,.32));
}
.team-premium-photo img { border-radius: 50%; }
.team-premium-photo img[src*="avatar.svg"],
.committee-member-photo img[src*="avatar.svg"],
.profile-photo img[src*="avatar.svg"],
.profile-related img[src*="avatar.svg"],
.president-feature img[src*="avatar.svg"] {
  object-fit: cover;
  object-position: center;
  background: #e9e7f1;
}
.team-card-arrow {
  right: 9%;
  bottom: 9%;
  transform: scale(.85);
  opacity: 0;
}
.team-premium-card.has-profile:hover .team-card-arrow {
  opacity: 1;
  transform: scale(1);
}
.team-premium-info { position: relative; z-index: 2; padding: 1.2rem .2rem 0; pointer-events: none; }
.team-premium-info h3 { margin: .35rem 0 .55rem; font-size: 1.05rem; }
.team-profile-label {
  display: block;
  margin-top: .65rem;
  color: var(--color-muted);
  font-size: .62rem;
  font-weight: 700;
}
.team-card-socials {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  margin-top: .7rem;
  pointer-events: auto;
}
.team-card-socials a {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(57,49,133,.12);
  border-radius: 50%;
  background: #fff;
  color: var(--color-primary);
  font-size: .52rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: color .2s, background .2s, border-color .2s, transform .2s;
}
.team-card-socials a:hover {
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: #fff;
  transform: translateY(-2px);
}
.team-card-profile-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 18px;
}
.committee-group {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 8vw, 8rem) 0;
  background:
    radial-gradient(circle at 90% 15%, rgba(239,127,26,.13), transparent 24%),
    linear-gradient(135deg, #f6f4fb, #fff);
}
.committee-group::before {
  position: absolute;
  top: -170px;
  right: -130px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(57,49,133,.08);
  border-radius: 50%;
  box-shadow: 0 0 0 65px rgba(57,49,133,.025), 0 0 0 130px rgba(57,49,133,.018);
  content: "";
}
.committee-group > .container { position: relative; z-index: 1; }
.committee-group-head {
  display: grid;
  grid-template-columns: 1fr minmax(260px, .7fr);
  gap: 3rem;
  align-items: end;
  margin-bottom: 3rem;
}
.committee-group-head h2 {
  margin: .55rem 0 0;
  color: var(--color-primary);
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1;
  letter-spacing: -.065em;
}
.committee-group-head > p {
  max-width: 430px;
  margin: 0;
  padding-left: 1.3rem;
  border-left: 2px solid var(--color-accent);
  color: var(--color-muted);
  font-size: .82rem;
  line-height: 1.75;
}
.committee-group-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}
.committee-member {
  position: relative;
  min-width: 0;
  padding: 1.5rem 1rem;
  border: 1px solid rgba(57,49,133,.08);
  border-radius: 18px;
  background: rgba(255,255,255,.82);
  text-align: center;
  box-shadow: 0 15px 38px rgba(40,33,93,.06);
  transition: transform .3s, box-shadow .3s;
}
.committee-member.has-profile:hover {
  box-shadow: 0 22px 50px rgba(40,33,93,.12);
  transform: translateY(-5px);
}
.committee-member-photo {
  width: 130px;
  height: 130px;
  margin: 0 auto 1rem;
  overflow: hidden;
  border: 5px solid #fff;
  border-radius: 50%;
  background: #e8e6f0;
  box-shadow: 0 12px 30px rgba(35,29,84,.12);
}
.committee-member-photo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
}
.committee-member > div:nth-child(2) { position: relative; z-index: 2; pointer-events: none; }
.committee-member small {
  display: block;
  color: var(--color-accent);
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.committee-member h3 {
  margin: .4rem 0 0;
  color: var(--color-primary);
  font-size: .92rem;
}
.committee-member .team-card-socials { pointer-events: auto; }

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

@media (max-width: 600px) {
  .team-premium-photo { width: min(100%, 170px); border-width: 5px; }
  .team-card-committee { min-height: 0; margin-bottom: .6rem; font-size: .62rem; }
  .team-premium-info h3 { font-size: .9rem; }
  .team-card-socials a { width: 27px; height: 27px; }
  .committee-group-head { grid-template-columns: 1fr; gap: 1.3rem; }
  .committee-group-grid { gap: .75rem; }
  .committee-member { padding: 1.1rem .6rem; }
  .committee-member-photo { width: 100px; height: 100px; }
  .committee-member h3 { font-size: .78rem; }
}

/* Home voices / testimonials */
.home-voices {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(239,127,26,.12), transparent 28%),
    linear-gradient(180deg, #f7f6fb 0%, #efeef7 100%);
}
.home-voices-glow {
  position: absolute;
  right: -8%;
  top: -20%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(57,49,133,.12), transparent 68%);
  pointer-events: none;
}
.home-voices-inner { position: relative; z-index: 1; }
.home-voices-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.home-voices-head h2 {
  margin: .55rem 0 .5rem;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  letter-spacing: -.04em;
  line-height: .95;
}
.home-voices-head p {
  max-width: 420px;
  margin: 0;
  color: var(--color-muted);
}
.home-voices-cta {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  flex-shrink: 0;
  padding: .85rem 1.2rem;
  border-radius: 999px;
  background: var(--color-primary);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.home-voices-cta svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.home-voices-cta:hover { background: var(--color-accent); }
.home-voices-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}
.home-voice-card {
  position: relative;
  min-height: 100%;
  padding: 2rem 1.7rem 1.6rem;
  border: 1px solid rgba(57,49,133,.08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(35,29,84,.06);
}
.home-voice-mark {
  display: block;
  margin-bottom: .4rem;
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: .7;
}
.home-voice-card p {
  margin: 0;
  color: #3f3f4d;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.7;
}
.home-voice-card footer {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .45rem .8rem;
  margin-top: 1.5rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(57,49,133,.08);
}
.home-voice-card strong {
  color: var(--color-primary);
  font-size: .95rem;
}
.home-voice-card footer span {
  color: var(--color-muted);
  font-size: .72rem;
  font-weight: 700;
}

/* Voices page */
.voices-hero {
  position: relative;
  overflow: hidden;
  padding: 8rem 0 4.5rem;
  background: linear-gradient(125deg, #11102b 0 48%, #292269 48% 100%);
  color: #fff;
  border-radius: 0 0 48px 0;
}
.voices-hero-orb {
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255,255,255,.03);
}
.voices-hero-inner { position: relative; z-index: 1; max-width: 760px; }
.voices-hero h1 {
  margin: .7rem 0 1rem;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: .95;
  letter-spacing: -.05em;
}
.voices-hero h1 em {
  font-style: normal;
  color: var(--color-accent);
}
.voices-hero p {
  max-width: 540px;
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 1.05rem;
  line-height: 1.7;
}
.voices-page { padding: clamp(3.5rem, 6vw, 5.5rem) 0 6rem; }
.voices-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.voices-list-head { margin-bottom: 1.6rem; }
.voices-list-head h2 {
  margin: .4rem 0 0;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -.03em;
}
.voice-card {
  position: relative;
  margin-bottom: 1rem;
  padding: 1.6rem 1.5rem 1.4rem;
  border: 1px solid rgba(57,49,133,.08);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(35,29,84,.05);
}
.voice-quote {
  display: block;
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: .7;
}
.voice-card p {
  margin: .5rem 0 0;
  color: #3f3f4d;
  font-size: 1.02rem;
  font-style: italic;
  line-height: 1.7;
}
.voice-card footer {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem .75rem;
  margin-top: 1.2rem;
}
.voice-card strong { color: var(--color-primary); }
.voice-card footer span {
  color: var(--color-muted);
  font-size: .72rem;
  font-weight: 700;
}
.voices-empty {
  padding: 2rem;
  border-radius: 22px;
  background: #f4f3f9;
}
.voices-empty strong {
  display: block;
  margin-bottom: .4rem;
  color: var(--color-primary);
}
.voices-empty p { margin: 0; color: var(--color-muted); }
.voices-form-card {
  position: sticky;
  top: 100px;
  padding: 1.7rem;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(57,49,133,.08);
  box-shadow: 0 24px 60px rgba(35,29,84,.08);
}
.voices-form-heading h2 {
  margin: .35rem 0 .55rem;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: -.03em;
}
.voices-form-heading p {
  margin: 0 0 1.4rem;
  color: var(--color-muted);
  font-size: .9rem;
}
.voices-form .contact-field { margin-bottom: 1rem; }
.voices-form .contact-form-footer { margin-top: 1.2rem; }

@media (max-width: 900px) {
  .home-voices-head,
  .voices-page-layout { grid-template-columns: 1fr; display: grid; }
  .home-voices-head { align-items: start; }
  .home-voices-grid { grid-template-columns: 1fr; }
  .voices-form-card { position: static; }
  .voices-hero { padding-top: 7rem; border-radius: 0 0 32px 0; }
}
