:root {
  --saffron: #ff9933;
  --deep-saffron: #de6e00;
  --india-green: #138808;
  --deep-green: #0d6506;
  --canada-red: #d80621;
  --deep-red: #a90318;
  --heritage-ink: #6a1f06;
  --ink: #14253f;
  --muted: #4f6382;
  --paper: #ffffff;
  --line: #dbe6f3;
  --shadow: 0 14px 32px rgba(16, 35, 63, 0.14);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

html { -webkit-text-size-adjust: 100%; }

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

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(780px 320px at -5% -5%, rgba(255, 153, 51, 0.34), transparent 65%),
    radial-gradient(800px 300px at 100% 0%, rgba(19, 136, 8, 0.16), transparent 60%),
    linear-gradient(180deg, #fff9f2 0%, #eef3fb 100%);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(800px 260px at 50% -20%, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0));
  animation: ambientGlow 9s ease-in-out infinite;
  z-index: -1;
}

@keyframes ambientGlow {
  0%, 100% { opacity: 0.42; }
  50% { opacity: 0.7; }
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(76, 32, 8, 0.18);
  background:
    linear-gradient(90deg, rgba(168, 3, 24, 0.24) 0%, rgba(255, 255, 255, 0) 17%),
    linear-gradient(270deg, rgba(216, 6, 33, 0.24) 0%, rgba(255, 255, 255, 0) 17%),
    linear-gradient(102deg, #8f3900 0%, #cf6200 22%, #f7993c 34%, #fff8ee 50%, #f2fff1 64%, #2a8a21 78%, #145f11 100%);
  box-shadow: 0 10px 28px rgba(77, 35, 10, 0.3);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
  padding: 0.62rem 0;
}

.logo-container {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  height: 60px;
  max-height: 80%;
  padding-left: 0.85rem;
}

.site-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 100%;
  max-height: 100%;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  text-decoration: none;
  overflow: visible;
}

.site-logo-link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.75);
  outline-offset: 2px;
}

.site-logo {
  display: block;
  width: auto;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: rgba(20, 37, 63, 0.28);
  color: #fff;
  border-radius: 10px;
  padding: 0.5rem 0.85rem;
  font-weight: 700;
  font-size: 0.9rem;
}

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

.nav a {
  text-decoration: none;
  color: #3d1807;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  padding: 0.45rem 0.7rem;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.34);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: transform 0.22s ease, background-color 0.2s ease, color 0.2s ease;
}

.nav-dropdown {
  position: relative;
  padding-bottom: 0.35rem;
  margin-bottom: -0.35rem;
}

.nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-dropdown-menu {
  position: absolute;
  left: 0;
  top: calc(100% + 0.05rem);
  min-width: 250px;
  background: #e5e8ef;
  border: 1px solid #bec3cb;
  display: block;
  z-index: 20;
  box-shadow: 0 10px 18px rgba(9, 26, 48, 0.24);
  border-radius: 12px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.nav-dropdown-menu a {
  display: block;
  color: #1d2430;
  border-radius: 0;
  padding: 0.85rem 1rem;
  font-weight: 500;
}

.nav-dropdown-menu a:hover {
  background: #c8c8cb;
  transform: none;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav a:not(.membership-btn):hover {
  background: rgba(255, 255, 255, 0.62);
  color: #2f1204;
  transform: translateY(-1px);
}

.nav .divider {
  width: 1px;
  height: 28px;
  background: rgba(94, 38, 8, 0.35);
  margin: 0 0.4rem;
}

.membership-btn {
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: #ffffff;
  padding: 0.62rem 1rem;
  border-radius: 999px;
  letter-spacing: 0.04em;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  background: linear-gradient(110deg, #a74900 0%, #d76500 32%, var(--saffron) 72%, #ffb05a 100%);
  border: 1px solid rgba(255, 211, 158, 0.95);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.45);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.membership-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.58) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform 0.5s ease;
}

.membership-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.28);
}

.membership-btn:hover::after { transform: translateX(120%); }

main { padding-bottom: 2rem; }

.hero {
  margin-top: 1rem;
  padding: 2rem 1.6rem;
  border-radius: 24px;
  border: 1px solid #d9e6f7;
  background:
    radial-gradient(560px 240px at 5% 10%, rgba(255, 153, 51, 0.32), transparent 70%),
    radial-gradient(560px 260px at 92% 90%, rgba(19, 136, 8, 0.18), transparent 70%),
    linear-gradient(145deg, #ffffff 0%, #f6faff 100%);
  box-shadow: 0 16px 36px rgba(16, 35, 63, 0.1);
}

.hero-modern { position: relative; overflow: hidden; }
.hero-modern::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  top: -180px;
  right: -160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 6, 33, 0.16), rgba(216, 6, 33, 0));
}
.hero-accent-orb {
  position: absolute;
  width: 220px;
  height: 220px;
  left: -80px;
  bottom: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(19, 136, 8, 0.28), rgba(19, 136, 8, 0));
  pointer-events: none;
  will-change: transform;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr minmax(320px, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.hero-kicker {
  display: inline-block;
  margin: 0 0 0.8rem;
  padding: 0.26rem 0.74rem;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  color: #6e3400;
  background: rgba(255, 153, 51, 0.2);
  animation: pulseKicker 3.3s ease-in-out infinite;
}

@keyframes pulseKicker {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

h1 {
  margin: 0 0 0.8rem;
  font-size: clamp(2rem, 3vw, 3.5rem);
  line-height: 1.13;
  letter-spacing: -0.02em;
}

h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.32rem, 2vw, 1.9rem);
}

p { margin-top: 0; color: var(--muted); font-size: 1rem; }
.hero p { max-width: 68ch; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1rem; }

.hero-cta .btn.fill {
  min-width: 170px;
}
.hero-cta .btn {
  min-height: 46px;
}

.hero-stats {
  display: grid;
  margin-top: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.stat {
  border-radius: 12px;
  border: 1px solid #d7e3f3;
  background: rgba(255, 255, 255, 0.8);
  padding: 0.7rem 0.8rem;
}

.stat-label {
  margin: 0;
  color: #567195;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.stat strong { display: block; margin-top: 0.1rem; color: #102d50; font-size: 1.02rem; }

.hero-media {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 250, 255, 0.96));
  border: 1px solid #dbe6f7;
  border-radius: 16px;
  padding: 0.55rem;
  box-shadow: 0 10px 24px rgba(16, 35, 63, 0.09);
  animation: floatCard 4s ease-in-out infinite;
}

.hero-media--poster {
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  animation: posterFloat 5.5s ease-in-out infinite;
}

.hero-media .gallery-photo {
  height: auto;
  max-height: 520px;
  object-fit: contain;
  background: #fff;
}

.hero-media--poster .gallery-photo {
  width: 100%;
  height: auto;
  max-height: 500px;
  border-radius: 14px;
  object-fit: contain;
  box-shadow: 0 12px 24px rgba(16, 35, 63, 0.14);
}


.poster-heading {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  color: #17365d;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-align: center;
}

.sold-out-banner {
  margin: 0 auto 0.75rem;
  width: fit-content;
  padding: 0.65rem 1.5rem;
  border-radius: 999px;
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #102d50;
  background: linear-gradient(120deg, #ffd79d 0%, #f7b267 55%, #f4a261 100%);
  border: 1px solid #e39a45;
  box-shadow: 0 8px 16px rgba(227, 154, 69, 0.24);
  animation: soldOutPulse 2.2s ease-in-out infinite;
}

.hero-media--poster .small {
  margin-top: 0.4rem;
}

.event-meta-card {
  margin-top: 0.7rem;
  border: 1px solid #d6e3f5;
  border-radius: 14px;
  padding: 0.85rem 0.9rem;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 22px rgba(16, 35, 63, 0.1);
}

.event-meta-card p {
  margin: 0 0 0.35rem;
  color: #2a3f5f;
  font-size: 0.94rem;
}

.event-meta-card p:last-child {
  margin-bottom: 0;
}

.event-meta-card a {
  color: #214d85;
  font-weight: 700;
}


.sold-out-text {
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9b2f00;
}


.sold-out-text--soft {
  text-transform: none;
  letter-spacing: 0.01em;
  color: #2a3f5f;
  font-weight: 600;
}
.sold-out-btn {
  cursor: not-allowed;
  opacity: 0.9;
}
.event-meta-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.65rem;
}

.event-meta-cta .btn {
  flex: 1 1 180px;
}

@keyframes soldOutPulse {
  0%,
  100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

@keyframes posterFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.objectives { padding: 1.4rem 0 2rem; }
.objectives > p { margin-bottom: 1rem; }

.proof-strip {
  display: grid;
  gap: 1rem;
  align-items: center;
  grid-template-columns: 160px 1fr;
}

.proof-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 14px;
  border: 1px solid #dde8f8;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.85rem;
}

.proof-logo img {
  max-width: 110px;
}

.proof-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
}

.proof-grid li {
  border: 1px solid #d5e2f5;
  border-radius: 12px;
  padding: 0.7rem;
  background: rgba(255, 255, 255, 0.85);
}

.proof-grid span {
  display: block;
  color: #7b430f;
  font-weight: 800;
  font-size: 0.88rem;
  margin-bottom: 0.2rem;
}

.proof-grid strong {
  color: #143860;
  font-size: 0.9rem;
}

.grid-3 {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
}

.card {
  position: relative;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #f7faff);
  border: 1px solid #deebfa;
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 1.45rem 1.3rem 1.2rem;
  min-height: 285px;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: linear-gradient(90deg, var(--saffron), #fff, #ffb57d, var(--india-green));
}

.card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 20px 34px rgba(16, 35, 63, 0.16);
}

.card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 18px 30px rgba(16, 35, 63, 0.14);
}

.card h3 { font-size: 1.55rem; margin: 0.35rem 0 0.4rem; }
.card p { margin: 0; }

.card-icon {
  font-size: 1.25rem;
  margin: 0.15rem 0 0.45rem;
}

.strategic-grid { margin-top: 0.45rem; }

.strategic-card {
  background: linear-gradient(160deg, #ffffff 0%, #fff6ec 45%, #f7fbff 100%);
  border: 1px solid #f0d7ba;
}

.strategic-card::before {
  height: 9px;
  background: linear-gradient(90deg, #ff8f1f 0%, #ffbf7a 28%, #ffffff 50%, #159f0b 100%);
}

.pillar-id {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: #995212;
  margin-bottom: 0.3rem;
}

.pillar-sub {
  color: #6d7d96;
  font-weight: 600;
  margin-bottom: 0.68rem;
  font-size: 0.96rem;
}


.section {
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid #dbe7f6;
  border-radius: 16px;
  padding: 1.1rem;
  box-shadow: 0 10px 24px rgba(16, 35, 63, 0.08);
  margin-bottom: 1rem;
}

.section h2 {
  position: relative;
  display: inline-block;
}

.section h2::after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  border-radius: 999px;
  margin-top: 0.18rem;
  background: linear-gradient(90deg, var(--saffron), var(--india-green));
  transition: width 0.6s ease;
}

.section.is-visible h2::after {
  width: 100%;
}

.history-home {
  position: relative;
  overflow: hidden;
}

.history-home::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, rgba(255, 153, 51, 0.08), rgba(255, 255, 255, 0.04), rgba(19, 136, 8, 0.08));
  transform: translateX(-100%);
  animation: sectionSheen 7s linear infinite;
}

@keyframes sectionSheen {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.heritage-feature {
  display: grid;
  gap: 0.9rem;
  align-items: center;
  grid-template-columns: 1.15fr 0.85fr;
}

.heritage-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  align-items: center;
}

.heritage-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.heritage-hero-visual {
  margin: 0;
}

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

.featured-address-previews {
  margin: 1rem 0 1.1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.featured-address-card {
  border: 1px solid #d2e2f6;
  border-radius: 16px;
  padding: 0.85rem;
  background: linear-gradient(160deg, #ffffff 0%, #f3f9ff 100%);
  box-shadow: 0 12px 28px rgba(16, 35, 63, 0.1);
}

.featured-address-link {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #c3d8f3;
  background: #fff;
}

.featured-address-pdf {
  display: block;
  width: 100%;
  height: 420px;
}

.featured-address-card h3 {
  margin: 0.7rem 0 0.2rem;
  color: #14355f;
  font-size: 1.08rem;
}

.address-card,
.archive-doc-card {
  border: 1px solid #dce8f8;
  border-radius: 14px;
  padding: 0.95rem;
  background: linear-gradient(160deg, #ffffff 0%, #f7fbff 100%);
  box-shadow: 0 8px 18px rgba(16, 35, 63, 0.07);
}

.address-card h3,
.archive-doc-card h3 {
  margin: 0 0 0.3rem;
  color: #17365d;
  font-size: 1.02rem;
}

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

.archive-doc-frame {
  display: block;
  width: 100%;
  height: 360px;
  border: 1px solid #c7daef;
  border-radius: 10px;
  background: #fff;
  margin: 0.6rem 0 0.8rem;
}

.archive-doc-link {
  display: inline-flex;
}

.section ul { margin: 0 0 1rem; padding-left: 1.1rem; }
.section li { margin: 0.3rem 0; }


.board-roster {
  padding: 1.3rem;
}

.board-page {
  padding-bottom: 2.5rem;
}

.board-hero {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 1rem;
  align-items: stretch;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}

.board-hero::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  bottom: -180px;
  right: -70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 6, 33, 0.14), rgba(216, 6, 33, 0));
  z-index: -1;
}

.board-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.board-metrics {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.metric {
  padding: 0.7rem 0.75rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid #dbe5f2;
}

.metric strong {
  display: block;
  color: #102b4d;
  font-size: 1.35rem;
  line-height: 1;
}

.metric span {
  color: #617da2;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 700;
}

.board-hero-panel {
  border-radius: 16px;
  border: 1px solid #d5e2f3;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.92), rgba(244, 249, 255, 0.94)),
    linear-gradient(90deg, rgba(255, 153, 51, 0.22), rgba(19, 136, 8, 0.18));
  padding: 1.2rem;
  display: flex;
  align-items: flex-end;
}

.board-hero-panel p {
  margin: 0;
  color: #26466f;
  font-size: 1rem;
  line-height: 1.55;
}

.board-roster-modern {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 249, 255, 0.95));
  border-radius: 24px;
  padding: clamp(1rem, 2.2vw, 1.5rem);
}

.board-group + .board-group {
  margin-top: 1.3rem;
}

.board-columns-modern .board-group + .board-group {
  margin-top: 0;
}

.board-group h2 {
  margin-bottom: 0.75rem;
  color: #17365d;
}


.board-columns-modern {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.board-group {
  border: 1px solid #d8e4f5;
  border-radius: 18px;
  padding: 0.9rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 255, 0.95));
  box-shadow: 0 12px 26px rgba(14, 38, 67, 0.08);
}

.executive-group {
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.98), rgba(247, 251, 255, 0.95));
}

.trustees-group {
  background: linear-gradient(180deg, rgba(246, 252, 245, 0.98), rgba(247, 251, 255, 0.95));
}

.leader-grid.single-column {
  grid-template-columns: 1fr;
  gap: 0.62rem;
}

.leader-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.72rem;
}

.leader-grid.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.leader-card {
  border: 1px solid #d9e4f4;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.9rem 0.85rem;
  box-shadow: 0 8px 20px rgba(15, 41, 72, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.2s ease;
}

.leader-card:hover {
  transform: translateY(-3px);
  border-color: #bfd2ea;
  box-shadow: 0 14px 28px rgba(15, 41, 72, 0.12);
}

.leader-card h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.35;
  color: #17365d;
}

.leader-role {
  margin: 0 0 0.35rem;
  color: #6f4424;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.leader-card.featured {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

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

.board-column {
  animation: boardSlideIn 0.6s ease both;
}

.board-column:nth-child(2) {
  animation-delay: 0.12s;
}

.board-column:nth-child(3) {
  animation-delay: 0.24s;
}

.board-column h2 {
  position: relative;
  margin: 0 0 0.8rem;
  padding: 0.65rem 0.9rem;
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  letter-spacing: 0.02em;
  color: #132949;
  background: linear-gradient(180deg, #fbfbfc, #f1f4f9);
  border-left: 6px solid #d6dde8;
}

.board-column ul {
  margin: 0;
  padding-left: 1.1rem;
}

.board-column li {
  margin: 0.4rem 0;
}

.executive-list {
  list-style: none;
  padding-left: 0;
}

.executive-list li {
  margin: 0 0 0.75rem;
  padding: 0.55rem 0.65rem;
  border-radius: 10px;
  background: rgba(247, 250, 255, 0.78);
  border: 1px solid #dbe4f2;
}

.board-name {
  display: block;
  font-weight: 700;
  color: #1a355a;
  line-height: 1.3;
}

.board-role {
  display: block;
  margin-top: 0.08rem;
  font-size: 0.88rem;
  color: #6a7382;
}

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

@media (prefers-reduced-motion: reduce) {
  .board-column {
    animation: none;
  }
}

.programs-title {
  margin: 0.2rem 0 1rem;
  line-height: 1.25;
}

.notice-banner {
  max-width: 760px;
  margin: 0 auto 1.15rem;
  background: #e62020;
  color: #fff;
  border: 1px solid #7f0d0d;
  padding: 0.8rem 1rem;
  font-weight: 700;
}

.program-download {
  margin-top: 0.5rem;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.78rem 1.18rem;
  border-radius: 14px;
  border: 1px solid #a13a18;
  text-decoration: none;
  color: var(--heritage-ink);
  font-weight: 700;
  letter-spacing: 0.015em;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(30, 16, 9, 0.16);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.2s ease, background-color 0.2s ease;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(30, 16, 9, 0.2); }

.btn:active { transform: translateY(0); box-shadow: 0 8px 16px rgba(30, 16, 9, 0.2); }

.btn.fill {
  position: relative;
  overflow: hidden;
  color: #fff;
  text-transform: none;
  letter-spacing: 0.01em;
  font-size: 0.9rem;
  border-radius: 999px;
  background: linear-gradient(120deg, #9f3f00 0%, #d75f00 34%, #f7972f 72%, #ffb86a 100%);
  border: 1px solid rgba(255, 211, 158, 0.95);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.btn.fill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.58) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform 0.5s ease;
}

.btn.fill:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.29);
}

.btn.fill:hover::after { transform: translateX(120%); }

.btn.fill,
.membership-btn {
  animation: ctaPulse 3.8s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% { filter: saturate(100%); }
  50% { filter: saturate(118%); }
}

.btn.saffron {
  color: #6b3300;
  border-color: #ebac66;
  background: linear-gradient(90deg, rgba(255, 153, 51, 0.22), rgba(255, 153, 51, 0.08));
}

.people-list { display: grid; gap: 0.7rem; }
.person { border-bottom: 1px solid #ebf1fa; padding-bottom: 0.45rem; }
.small { font-size: 0.92rem; color: #5b6678; }

.gallery-grid,
.slider-placeholders {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.8rem;
}

.gallery-item {
  background: #fff;
  border: 1px solid #e6ecf6;
  padding: 0.45rem;
  min-height: 110px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  margin: 0;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(169, 3, 24, 0.1);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 26px rgba(169, 3, 24, 0.14);
}

.gallery-item img,
.gallery-photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
}

.gallery-item figcaption {
  padding: 0.45rem 0.25rem 0.15rem;
  font-size: 0.9rem;
  color: #344767;
  font-weight: 600;
}

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

.final-cta .hero-cta {
  justify-content: center;
}

.event-details-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.gallery-item figcaption .caption-label {
  display: inline-block;
  border-radius: 999px;
  background: #edf3ff;
  border: 1px solid #d8e5fb;
  color: #1c4272;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.14rem 0.5rem;
  margin-bottom: 0.22rem;
}

.slider-section h2 { margin-top: 0; }

form { display: grid; gap: 0.75rem; max-width: 620px; }
input, textarea {
  width: 100%;
  padding: 0.7rem;
  border: 1px solid #cddbf0;
  border-radius: 10px;
  font: inherit;
  background: #fff;
}
textarea { min-height: 130px; }

footer {
  margin-top: 1.4rem;
  border-top: 1px solid #cfdcf0;
  background: linear-gradient(120deg, #fef8f1 0%, #f3f7ff 50%, #f4fbf2 100%);
}

footer .container { padding: 0.8rem 0; }


.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid #d5e2f3;
  border-radius: 16px;
  padding: 0.8rem 1rem;
  box-shadow: 0 10px 24px rgba(16, 35, 63, 0.08);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #1f365f;
  text-decoration: none;
  font-weight: 650;
  padding: 0.35rem 0.55rem;
  border-radius: 9px;
  transition: background-color 0.2s ease;
}

.footer-links a:hover {
  background: rgba(169, 3, 24, 0.12);
  text-decoration: none;
}

.fb-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
}


.nav a,
.membership-btn,
.btn,
.card {
  will-change: transform;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.modern-pop-grid {
  margin-top: 0.85rem;
}

.modern-pop-card {
  opacity: 0;
  transform: translateY(18px) scale(0.97);
}

body.page-ready .modern-pop-card {
  animation: popupIn 560ms cubic-bezier(.22, .88, .33, 1) forwards;
}

body.page-ready .modern-pop-card:nth-child(2) {
  animation-delay: 120ms;
}

body.page-ready .modern-pop-card:nth-child(3) {
  animation-delay: 220ms;
}

.about-merge {
  margin-top: 0.5rem;
}

.home-page {
  background:
    radial-gradient(800px 340px at 0% -8%, rgba(255, 153, 51, 0.12), transparent 62%),
    radial-gradient(800px 300px at 100% 0%, rgba(19, 136, 8, 0.12), transparent 60%),
    linear-gradient(180deg, #f8fbff 0%, #eef3fb 100%);
}

.home-page .site-header {
  background:
    linear-gradient(90deg, rgba(168, 3, 24, 0.24) 0%, rgba(255, 255, 255, 0) 17%),
    linear-gradient(270deg, rgba(216, 6, 33, 0.24) 0%, rgba(255, 255, 255, 0) 17%),
    linear-gradient(102deg, #8f3900 0%, #cf6200 22%, #f7993c 34%, #fff8ee 50%, #f2fff1 64%, #2a8a21 78%, #145f11 100%);
  border-bottom: 1px solid rgba(76, 32, 8, 0.18);
  box-shadow: 0 10px 28px rgba(77, 35, 10, 0.3);
}

.home-page .nav a {
  background: transparent;
  color: #243a59;
  text-shadow: none;
}

.home-page .hero {
  margin-top: 1.35rem;
  border: 1px solid #cfddf0;
  background:
    radial-gradient(500px 220px at 2% 4%, rgba(255, 153, 51, 0.14), transparent 64%),
    radial-gradient(500px 220px at 95% 95%, rgba(19, 136, 8, 0.11), transparent 65%),
    #ffffff;
  box-shadow: 0 18px 40px rgba(16, 35, 63, 0.08);
}

.home-intro,
.home-highlights {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid #d4e0f0;
  border-radius: 22px;
}

.home-pillars {
  margin-top: 1rem;
}

.home-pillar {
  border: 1px solid #d9e4f3;
  border-radius: 18px;
  min-height: auto;
  box-shadow: 0 10px 22px rgba(20, 37, 63, 0.07);
}

.home-pillar-kicker {
  display: inline-flex;
  margin: 0 0 0.4rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: #7f400d;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.text-link {
  color: #204a88;
  font-weight: 700;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.home-gallery-grid .gallery-item {
  border-radius: 16px;
  overflow: hidden;
}

@keyframes popupIn {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  65% {
    opacity: 1;
    transform: translateY(-4px) scale(1.01);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

  body::before,
  .hero-kicker,
  .btn.fill,
  .membership-btn,
  .hero-media,
  .history-home::after {
    animation: none !important;
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }

  .modern-pop-card {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
}

@media (min-width: 761px) and (max-width: 980px) {
  .topbar { flex-wrap: wrap; }
  .logo-container { padding-left: 0; margin-inline: auto; }
  .nav { width: 100%; justify-content: center; margin-left: 0; }
  .nav .divider { display: none; }
  .hero-grid,
  .heritage-hero,
  .heritage-feature,
  .hero-stats,
  .proof-strip { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .address-grid,
  .archive-doc-grid,
  .featured-address-previews {
    grid-template-columns: 1fr;
  }
  .hero { margin-top: 0.75rem; padding: 1.3rem 1rem; }
  .card { min-height: auto; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
  }

  .container { width: min(1240px, 95%); }
  .topbar { gap: 0.7rem; }
  .logo-container {
    height: 50px;
    padding-left: 0.45rem;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
    margin-left: 0;
    width: 100%;
    padding-bottom: 0.35rem;
  }

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

  .nav a,
  .nav-dropdown > a,
  .membership-btn {
    width: 100%;
    }

  .nav-dropdown { padding: 0; margin: 0; }
  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    border-radius: 10px;
    margin-top: 0.35rem;
    box-shadow: none;
  }

  .hero { padding: 1rem 0.85rem; }
  .hero-grid,
  .hero-stats,
  .proof-strip,
  .proof-grid {
    grid-template-columns: 1fr;
  }
  .event-meta-cta .btn { width: 100%; }
  h1 { font-size: clamp(1.55rem, 7vw, 2.1rem); }
  h2 { font-size: clamp(1.2rem, 5.6vw, 1.6rem); }
  .hero-cta .btn { width: 100%; text-align: center; }
  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .gallery-item img,
  .gallery-photo { height: 180px; }
  .hero-media .gallery-photo {
    height: auto;
    max-height: none;
  }
  .footer-links {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .board-metrics,
  .leader-grid,
  .leader-grid.compact,
  .board-columns-modern,
  .address-grid,
  .archive-doc-grid,
  .featured-address-previews {
    grid-template-columns: 1fr;
  }

  .featured-address-pdf {
    height: 320px;
  }
}

@media (min-width: 761px) and (max-width: 980px) {
  .board-columns { grid-template-columns: 1fr; }
  .board-hero {
    grid-template-columns: 1fr;
  }
  .board-columns-modern {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .leader-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .leader-grid.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Breadcrumb navigation */
.breadcrumb {
  padding: 0.65rem 0 0;
}

.breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.15rem;
  font-size: 0.82rem;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  color: var(--muted);
}

.breadcrumb li + li::before {
  content: "›";
  margin-right: 0.35rem;
  color: #a0b3cc;
  font-weight: 600;
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  padding: 0.15rem 0.35rem;
  border-radius: 6px;
  transition: background-color 0.18s ease, color 0.18s ease;
}

.breadcrumb a:hover {
  background: rgba(255, 153, 51, 0.12);
  color: #6e3400;
}

.breadcrumb li[aria-current="page"] {
  color: var(--ink);
  font-weight: 700;
}

/* ICCHA 2026 Event Focus Section */
.grid-2-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.event-focus {
  background: linear-gradient(135deg, #fffcf8 0%, #fdf5e6 100%);
  border: 1px solid #fce6c5;
}

.event-points {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.event-points li {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
  color: var(--heritage-ink);
}

@media (max-width: 768px) {
  .grid-2-modern {
    grid-template-columns: 1fr;
  }
}

.archive-cta {
  margin-top: 2rem;
  justify-content: center;
}

.event-visual-img {
  border-radius: 12px;
  box-shadow: var(--shadow);
}


