:root {
  --navy-950: #062b51;
  --navy-900: #073d70;
  --navy-800: #0a4e8f;
  --navy-100: #dceaf6;
  --green-800: #046a43;
  --green-700: #078352;
  --green-100: #dff5e9;
  --orange-700: #d95b10;
  --orange-600: #ed6a16;
  --orange-100: #fff0e4;
  --ink: #172433;
  --muted: #647180;
  --line: #dce4eb;
  --surface: #ffffff;
  --surface-soft: #f5f8fa;
  --surface-warm: #fffaf6;
  --shadow-sm: 0 12px 30px rgba(6, 43, 81, 0.08);
  --shadow-lg: 0 25px 70px rgba(6, 43, 81, 0.15);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --container: min(1180px, calc(100% - 40px));
  --header-height: 86px;
  --transition: 220ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--surface);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

body.menu-open::before {
  position: fixed;
  inset: var(--header-height) 0 0;
  z-index: 998;
  background: rgba(3, 18, 32, 0.62);
  content: "";
}

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

a {
  color: var(--navy-800);
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
p,
ul,
ol {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--navy-950);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.75rem, 6vw, 5.75rem);
  letter-spacing: -0.055em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  letter-spacing: -0.04em;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

::selection {
  color: #fff;
  background: var(--orange-600);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 2000;
  padding: 10px 16px;
  color: #fff;
  background: var(--navy-950);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform var(--transition);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.narrow {
  max-width: 800px;
}

.section {
  padding: clamp(72px, 9vw, 120px) 0;
}

.section-sm {
  padding: clamp(48px, 6vw, 80px) 0;
}

.surface-soft {
  background: var(--surface-soft);
}

.surface-warm {
  background: var(--surface-warm);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.55fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 48px;
}

.section-heading > :last-child {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading.center {
  display: block;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-heading.center > :last-child {
  max-width: 620px;
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  margin-bottom: 18px;
  color: var(--green-800);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 2px;
  background: var(--orange-600);
  content: "";
}

.text-accent {
  color: var(--orange-700);
}

.muted {
  color: var(--muted);
}

.small {
  font-size: 0.875rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  color: var(--navy-950);
  background: #fff;
  transition: opacity 450ms ease, visibility 450ms ease;
}

.site-loader.is-hidden {
  visibility: hidden;
  opacity: 0;
}

.loader-inner {
  display: grid;
  gap: 16px;
  justify-items: center;
}

.loader-mark {
  width: 72px;
  aspect-ratio: 1;
  object-fit: contain;
  animation: loader-breathe 1.25s ease-in-out infinite;
}

.loader-line {
  width: 112px;
  height: 3px;
  overflow: hidden;
  background: var(--navy-100);
  border-radius: 100px;
}

.loader-line::after {
  display: block;
  width: 42%;
  height: 100%;
  background: var(--orange-600);
  border-radius: inherit;
  content: "";
  animation: loader-slide 1s ease-in-out infinite;
}

@keyframes loader-breathe {
  50% {
    transform: scale(1.08) rotate(4deg);
  }
}

@keyframes loader-slide {
  from {
    transform: translateX(-120%);
  }
  to {
    transform: translateX(260%);
  }
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 228, 235, 0.8);
  backdrop-filter: blur(16px);
  transition: transform 350ms ease, box-shadow var(--transition);
}

.site-header.is-hidden {
  transform: translateY(calc(-100% - 4px));
}

.site-header.is-scrolled {
  box-shadow: 0 8px 25px rgba(6, 43, 81, 0.08);
}

.header-inner {
  display: flex;
  width: var(--container);
  height: 100%;
  margin-inline: auto;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 10px;
  align-items: center;
}

.brand-mark {
  width: 52px;
  height: 52px;
  flex: none;
  object-fit: contain;
}

.brand-name {
  color: #0e4a88;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.18;
  text-transform: uppercase;
}

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

.nav-link {
  position: relative;
  padding: 11px 10px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 700;
  white-space: nowrap;
  border-radius: 10px;
  transition: color var(--transition), background var(--transition);
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active {
  color: var(--navy-800);
  background: var(--navy-100);
}

.nav-link.is-active::after {
  position: absolute;
  right: 11px;
  bottom: 5px;
  left: 11px;
  height: 2px;
  background: var(--orange-600);
  content: "";
}

.header-cta {
  flex: none;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  color: var(--navy-950);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  content: "";
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  position: relative;
  display: inline-flex;
  min-height: 50px;
  padding: 0 22px;
  overflow: hidden;
  gap: 10px;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  line-height: 1;
  background: var(--navy-800);
  border: 1px solid var(--navy-800);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(10, 78, 143, 0.18);
  transition: transform var(--transition), box-shadow var(--transition), color var(--transition), background var(--transition);
}

.btn:hover,
.btn:focus-visible {
  color: #fff;
  background: var(--navy-950);
  box-shadow: 0 15px 30px rgba(6, 43, 81, 0.24);
  transform: translateY(-3px);
}

.btn-orange {
  background: var(--orange-600);
  border-color: var(--orange-600);
  box-shadow: 0 10px 24px rgba(237, 106, 22, 0.22);
}

.btn-orange:hover,
.btn-orange:focus-visible {
  background: #c84d08;
  border-color: #c84d08;
}

.btn-green {
  background: var(--green-700);
  border-color: var(--green-700);
}

.btn-outline {
  color: var(--navy-800);
  background: rgba(255, 255, 255, 0.8);
  border-color: var(--navy-800);
  box-shadow: none;
}

.btn-outline:hover,
.btn-outline:focus-visible {
  color: #fff;
  background: var(--navy-800);
}

.btn-light {
  color: var(--navy-950);
  background: #fff;
  border-color: #fff;
}

.btn-light:hover,
.btn-light:focus-visible {
  color: var(--navy-950);
  background: var(--orange-100);
  border-color: var(--orange-100);
}

.btn-sm {
  min-height: 42px;
  padding-inline: 16px;
  font-size: 0.86rem;
}

.text-link {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: var(--navy-800);
  font-weight: 800;
}

.text-link::after {
  content: "\2192";
  transition: transform var(--transition);
}

.text-link:hover::after {
  transform: translateX(5px);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.cta-pulse::after {
  position: absolute;
  top: -60%;
  left: -75%;
  width: 40%;
  height: 220%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  content: "";
  transform: rotate(20deg);
  animation: cta-shine 3.8s ease-in-out infinite;
}

@keyframes cta-shine {
  0%,
  54% {
    left: -75%;
  }
  82%,
  100% {
    left: 135%;
  }
}

.hero {
  position: relative;
  min-height: min(850px, 100svh);
  padding-top: var(--header-height);
  overflow: hidden;
  background: #f7f5f1;
}

.hero-media {
  position: absolute;
  inset: var(--header-height) 0 0;
}

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

.hero-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 30%, rgba(255, 255, 255, 0.38) 58%, rgba(6, 43, 81, 0.08) 100%),
    linear-gradient(0deg, rgba(6, 43, 81, 0.12), transparent 35%);
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: calc(min(850px, 100svh) - var(--header-height));
  align-content: center;
  padding-block: 80px 190px;
}

.hero-copy {
  min-width: 0;
  max-width: 670px;
}

.hero-copy h1 {
  max-width: 640px;
  margin-bottom: 24px;
  font-size: clamp(2.75rem, 5.5vw, 5.2rem);
}

.hero-copy .lead {
  max-width: 620px;
  margin-bottom: 32px;
  color: #3b4c5d;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero-kicker {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 8px 13px;
  gap: 9px;
  align-items: center;
  color: var(--green-800);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(223, 245, 233, 0.88);
  border: 1px solid rgba(4, 106, 67, 0.14);
  border-radius: 100px;
}

.hero-kicker::before {
  width: 7px;
  height: 7px;
  background: var(--orange-600);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(237, 106, 22, 0.13);
  content: "";
}

.hero-stats {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  background: rgba(6, 43, 81, 0.94);
  backdrop-filter: blur(12px);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.stat {
  padding: 26px 34px;
  color: rgba(255, 255, 255, 0.72);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  margin-bottom: 2px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
}

.page-hero {
  position: relative;
  padding: calc(var(--header-height) + 76px) 0 78px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 90% 20%, rgba(237, 106, 22, 0.34), transparent 26%),
    radial-gradient(circle at 10% 80%, rgba(7, 131, 82, 0.3), transparent 30%),
    var(--navy-950);
}

.page-hero::after {
  position: absolute;
  right: -80px;
  bottom: -130px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(255, 255, 255, 0.025), 0 0 0 90px rgba(255, 255, 255, 0.02);
  content: "";
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 850px;
  margin-bottom: 20px;
  color: #fff;
  font-size: clamp(2.7rem, 6vw, 5rem);
}

.page-hero p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.77);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.breadcrumb {
  display: flex;
  margin-bottom: 22px;
  gap: 9px;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.breadcrumb a {
  color: #fff;
}

.breadcrumb span::before {
  margin-right: 9px;
  content: "/";
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 24px;
}

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

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

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

.card {
  position: relative;
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.card:hover {
  border-color: #c4d5e2;
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.card h3 {
  margin-bottom: 12px;
}

.card p {
  color: var(--muted);
}

.icon-box {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  place-items: center;
  color: var(--navy-800);
  font-family: Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  background: var(--navy-100);
  border-radius: 14px;
}

.card:nth-child(3n + 2) .icon-box {
  color: var(--green-800);
  background: var(--green-100);
}

.card:nth-child(3n + 3) .icon-box {
  color: var(--orange-700);
  background: var(--orange-100);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(42px, 7vw, 90px);
  align-items: center;
}

.split.reverse > :first-child {
  order: 2;
}

.image-frame {
  position: relative;
}

.image-frame img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.image-frame::before {
  position: absolute;
  top: -18px;
  left: -18px;
  z-index: -1;
  width: 130px;
  height: 130px;
  background-image: radial-gradient(var(--orange-600) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  content: "";
  opacity: 0.36;
}

.image-note {
  position: absolute;
  right: -18px;
  bottom: 28px;
  max-width: 240px;
  padding: 20px;
  color: #fff;
  background: var(--navy-950);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

.image-note strong {
  display: block;
  margin-bottom: 4px;
  font-family: Georgia, serif;
  font-size: 1.25rem;
}

.check-list,
.arrow-list,
.legal-list {
  padding: 0;
  list-style: none;
}

.check-list li,
.arrow-list li {
  position: relative;
  margin-bottom: 13px;
  padding-left: 34px;
}

.check-list li::before {
  position: absolute;
  top: 4px;
  left: 0;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  background: var(--green-700);
  border-radius: 50%;
  content: "\2713";
}

.arrow-list li::before {
  position: absolute;
  left: 4px;
  color: var(--orange-600);
  font-weight: 900;
  content: "\2192";
}

.event-card {
  display: grid;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.event-card-image {
  position: relative;
  min-height: 270px;
  overflow: hidden;
}

.event-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.event-card-image-focus-right img {
  object-position: 68% center;
}

.event-card:hover .event-card-image img {
  transform: scale(1.045);
}

.event-date {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 66px;
  padding: 9px 7px;
  color: #fff;
  text-align: center;
  background: var(--orange-600);
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.16);
}

.event-date strong,
.event-date span {
  display: block;
}

.event-date strong {
  font-family: Georgia, serif;
  font-size: 1.65rem;
  line-height: 1;
}

.event-date span {
  margin-top: 3px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-card-body {
  padding: 28px;
}

.event-card-body h3 {
  margin-bottom: 12px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 18px;
  gap: 8px;
}

.tag {
  display: inline-flex;
  padding: 6px 10px;
  color: var(--green-800);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--green-100);
  border-radius: 100px;
}

.tag.orange {
  color: var(--orange-700);
  background: var(--orange-100);
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 34px;
  padding: 6px;
  gap: 6px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.tab-button,
.filter-button {
  padding: 10px 16px;
  color: var(--muted);
  font-weight: 800;
  background: transparent;
  border: 0;
  border-radius: 9px;
  transition: color var(--transition), background var(--transition);
}

.tab-button:hover,
.tab-button.is-active,
.filter-button:hover,
.filter-button.is-active {
  color: #fff;
  background: var(--navy-800);
}

.tab-panel[hidden] {
  display: none;
}

.empty-state {
  padding: clamp(38px, 7vw, 72px);
  text-align: center;
  background: var(--surface-soft);
  border: 1px dashed #b8c8d5;
  border-radius: var(--radius-md);
}

.empty-state .icon-box {
  margin-inline: auto;
}

.event-detail {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.event-detail + .event-detail {
  margin-top: 24px;
}

.event-detail summary {
  display: grid;
  padding: 28px;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  cursor: pointer;
  list-style: none;
  background: #fff;
}

.event-detail summary::-webkit-details-marker {
  display: none;
}

.event-detail summary::after {
  color: var(--navy-800);
  font-size: 1.6rem;
  font-weight: 300;
  content: "+";
}

.event-detail[open] summary::after {
  content: "\2212";
}

.event-detail summary h3 {
  margin-bottom: 5px;
}

.event-detail-content {
  padding: 0 28px 34px;
  background: #fff;
}

.date-tile {
  min-width: 70px;
  padding: 11px;
  color: var(--navy-950);
  text-align: center;
  background: var(--orange-100);
  border-radius: 12px;
}

.date-tile strong,
.date-tile span {
  display: block;
}

.date-tile strong {
  font-family: Georgia, serif;
  font-size: 1.5rem;
}

.date-tile span {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.timeline {
  position: relative;
  max-width: 850px;
  margin-inline: auto;
}

.timeline::before {
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 24px;
  width: 2px;
  background: var(--navy-100);
  content: "";
}

.timeline-item {
  position: relative;
  padding: 0 0 34px 78px;
}

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

.timeline-number {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: #fff;
  font-family: Georgia, serif;
  font-size: 1.2rem;
  background: var(--navy-800);
  border: 6px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--navy-100);
}

.timeline-item h3 {
  margin-bottom: 8px;
}

.membership-type {
  border-top: 4px solid var(--navy-800);
}

.membership-type:nth-child(2) {
  border-top-color: var(--green-700);
}

.membership-type:nth-child(3) {
  border-top-color: var(--orange-600);
}

.membership-type:nth-child(4) {
  border-top-color: #7a59a4;
}

.news-section {
  background:
    radial-gradient(circle at 92% 8%, rgba(237, 106, 22, 0.1), transparent 26%),
    #fff;
}

.news-card {
  position: relative;
  padding: clamp(26px, 5vw, 46px);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.news-card + .news-card {
  margin-top: 26px;
}

.news-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 7px;
  height: 100%;
  background: linear-gradient(180deg, var(--orange-600), var(--green-700));
  content: "";
}

.news-card-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: start;
}

.news-card h3 {
  max-width: 900px;
  margin: 18px 0 0;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
}

.news-date-badge {
  display: grid;
  width: 94px;
  min-height: 94px;
  padding: 12px;
  place-items: center;
  color: #fff;
  text-align: center;
  background:
    radial-gradient(circle at 90% 0, rgba(255, 255, 255, 0.28), transparent 38%),
    var(--navy-800);
  border-radius: 18px;
  box-shadow: 0 16px 30px rgba(6, 43, 81, 0.18);
}

.news-date-badge strong,
.news-date-badge span {
  display: block;
}

.news-date-badge strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.news-date-badge span {
  max-width: 48px;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.news-summary {
  max-width: 980px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.news-meta-grid {
  display: grid;
  margin-top: 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.news-meta-grid div {
  padding: 17px 18px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.news-meta-grid span,
.news-meta-grid strong {
  display: block;
}

.news-meta-grid span {
  margin-bottom: 6px;
  color: var(--green-800);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-meta-grid strong {
  color: var(--navy-950);
  line-height: 1.45;
}

.news-document {
  margin-top: 28px;
  padding: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.news-document summary {
  padding: 18px 22px;
  color: var(--navy-800);
  font-weight: 900;
  cursor: pointer;
}

.news-document[open] summary {
  border-bottom: 1px solid var(--line);
}

.official-notice {
  padding: 22px;
  color: var(--muted);
}

.official-notice h4 {
  margin-bottom: 12px;
  color: var(--navy-950);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.official-notice p:last-child {
  margin-bottom: 0;
}

.news-actions {
  margin-top: 28px;
}

.leadership-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 12%, rgba(237, 106, 22, 0.1), transparent 24%),
    #fff;
}

.leadership-section::before {
  position: absolute;
  bottom: -170px;
  left: -150px;
  width: 390px;
  height: 390px;
  border: 65px solid rgba(7, 131, 82, 0.045);
  border-radius: 50%;
  content: "";
}

.office-bearers-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.office-bearer-card {
  display: flex;
  min-width: 0;
  padding: 24px;
  gap: 17px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.office-bearer-card:hover {
  border-color: #c4d5e2;
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.office-bearer-primary {
  color: #fff;
  background:
    radial-gradient(circle at 100% 0, rgba(237, 106, 22, 0.42), transparent 38%),
    var(--navy-950);
  border-color: var(--navy-950);
}

.office-bearer-initials {
  display: grid;
  width: 54px;
  height: 54px;
  flex: none;
  place-items: center;
  color: var(--navy-800);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 700;
  background: var(--navy-100);
  border-radius: 50%;
}

.office-bearer-card:nth-child(3n + 2) .office-bearer-initials {
  color: var(--green-800);
  background: var(--green-100);
}

.office-bearer-card:nth-child(3n + 3) .office-bearer-initials {
  color: var(--orange-700);
  background: var(--orange-100);
}

.office-bearer-primary .office-bearer-initials {
  color: var(--navy-950);
  background: #fff;
}

.office-bearer-role {
  display: block;
  margin-bottom: 5px;
  color: var(--green-800);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.office-bearer-card h3 {
  margin-bottom: 0;
  font-size: clamp(1.12rem, 2vw, 1.38rem);
}

.office-bearer-primary .office-bearer-role {
  color: #ffb989;
}

.office-bearer-primary h3 {
  color: #fff;
}

.membership-download {
  position: relative;
  display: grid;
  padding: clamp(30px, 6vw, 64px);
  overflow: hidden;
  grid-template-columns: minmax(0, 1.15fr) minmax(310px, 0.85fr);
  gap: clamp(38px, 6vw, 74px);
  align-items: center;
  background:
    radial-gradient(circle at 100% 0, rgba(237, 106, 22, 0.13), transparent 28%),
    var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.membership-download::before {
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 280px;
  height: 280px;
  border: 48px solid rgba(7, 131, 82, 0.06);
  border-radius: 50%;
  content: "";
}

.membership-download-copy,
.membership-submit-steps {
  position: relative;
  z-index: 1;
}

.membership-download-copy > p {
  max-width: 690px;
  color: var(--muted);
  font-size: 1.05rem;
}

.membership-file-meta {
  display: flex;
  max-width: 550px;
  margin: 26px 0;
  padding: 17px 18px;
  gap: 14px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.membership-file-icon {
  display: grid;
  width: 54px;
  height: 54px;
  flex: none;
  place-items: center;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  background: var(--navy-800);
  border-radius: 11px;
}

.membership-file-meta strong,
.membership-file-meta small {
  display: block;
}

.membership-file-meta strong {
  color: var(--navy-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
}

.membership-file-meta small {
  margin-top: 3px;
  color: var(--muted);
}

.membership-submit-steps {
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.membership-submit-steps h3 {
  margin-bottom: 22px;
}

.membership-submit-steps ol {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 19px;
  list-style: none;
}

.membership-submit-steps li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 13px;
  align-items: start;
}

.membership-submit-steps li > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  background: var(--green-700);
  border-radius: 50%;
}

.membership-submit-steps strong,
.membership-submit-steps small {
  display: block;
}

.membership-submit-steps strong {
  color: var(--navy-950);
}

.membership-submit-steps small {
  margin-top: 2px;
  color: var(--muted);
  line-height: 1.5;
}

.membership-phone-link {
  display: flex;
  margin-top: 26px;
  padding-top: 20px;
  gap: 8px 18px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
}

.membership-phone-link strong {
  color: var(--navy-950);
}

.membership-phone-link span {
  color: var(--navy-800);
  font-weight: 800;
}

.form-card {
  padding: clamp(24px, 5vw, 44px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

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

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--navy-950);
  font-size: 0.88rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fbfcfd;
  border: 1px solid #cfd9e1;
  border-radius: 10px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.field textarea {
  min-height: 135px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--navy-800);
  box-shadow: 0 0 0 4px rgba(10, 78, 143, 0.1);
}

.checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--navy-800);
}

.form-status {
  display: none;
  margin-top: 16px;
  padding: 12px 14px;
  color: var(--green-800);
  font-weight: 700;
  background: var(--green-100);
  border-radius: 10px;
}

.form-status.is-visible {
  display: block;
}

.form-status[data-status="error"] {
  color: #8c2a12;
  background: #fff0e9;
}

.form-status[data-status="success"] {
  color: var(--green-800);
  background: var(--green-100);
}

.field > span {
  color: var(--navy-950);
  font-size: 0.88rem;
  font-weight: 800;
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(420px, 1.28fr);
  gap: 28px;
  align-items: start;
}

.admin-card,
.admin-help-card {
  padding: clamp(24px, 4vw, 38px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.admin-help-card {
  position: sticky;
  top: 110px;
}

.admin-help-card h2 {
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.admin-field-grid {
  display: grid;
  margin-bottom: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.admin-card .field {
  margin-bottom: 20px;
}

.admin-card .button-row {
  margin-top: 4px;
}

.admin-file-field input {
  padding-top: 13px;
  background: #fff;
}

.admin-preview {
  display: grid;
  margin: 0 0 22px;
  padding: 14px;
  grid-template-columns: 118px 1fr;
  gap: 16px;
  align-items: center;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.admin-preview[hidden] {
  display: none;
}

.admin-preview img {
  width: 118px;
  height: 86px;
  object-fit: cover;
  border-radius: 10px;
}

.admin-preview strong,
.admin-preview span {
  display: block;
}

.admin-preview strong {
  color: var(--navy-950);
}

.admin-preview span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.88rem;
}

.admin-card button[disabled] {
  cursor: wait;
  opacity: 0.65;
}

.notice-card {
  display: grid;
  padding: 24px;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.notice-card + .notice-card {
  margin-top: 14px;
}

.notice-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--orange-700);
  font-weight: 900;
  background: var(--orange-100);
  border-radius: 11px;
}

.resource-card {
  display: flex;
  min-height: 230px;
  flex-direction: column;
}

.resource-card .text-link {
  margin-top: auto;
}

.resource-domain {
  display: inline-block;
  margin-bottom: 15px;
  color: var(--green-800);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.gallery-hero {
  padding-bottom: 118px;
}

.gallery-hero-label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 12px;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 100px;
}

.gallery-overview {
  position: relative;
  z-index: 2;
  margin-top: -48px;
}

.gallery-archive-card {
  position: relative;
  display: grid;
  padding: 30px 34px;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1.2fr);
  gap: 46px;
  align-items: center;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.gallery-archive-card::after {
  position: absolute;
  top: -80px;
  right: -55px;
  width: 210px;
  height: 210px;
  border: 35px solid var(--orange-100);
  border-radius: 50%;
  content: "";
  opacity: 0.65;
}

.gallery-archive-heading,
.gallery-archive-copy {
  position: relative;
  z-index: 1;
}

.gallery-archive-heading .eyebrow {
  margin-bottom: 10px;
}

.gallery-archive-heading h2 {
  margin-bottom: 0;
  font-size: clamp(1.6rem, 3vw, 2.45rem);
}

.gallery-archive-copy {
  padding-left: 36px;
  border-left: 1px solid var(--line);
}

.gallery-archive-copy p {
  margin-bottom: 16px;
  color: var(--muted);
}

.gallery-archive-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gallery-archive-tags span {
  display: inline-flex;
  padding: 6px 11px;
  color: var(--green-800);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--green-100);
  border-radius: 100px;
}

.gallery-event {
  scroll-margin-top: 90px;
}

.gallery-event + .gallery-event {
  border-top: 1px solid var(--line);
}

.gallery-event-heading {
  display: grid;
  margin-bottom: 48px;
  grid-template-columns: 74px minmax(260px, 0.85fr) minmax(320px, 1fr);
  gap: 30px;
  align-items: start;
}

.gallery-event-index {
  color: var(--orange-600);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.35rem;
  font-weight: 700;
  line-height: 0.9;
  opacity: 0.42;
}

.gallery-event-title h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.gallery-event-copy {
  padding-left: 30px;
  color: var(--muted);
  border-left: 1px solid var(--line);
}

.gallery-event-copy p:last-child {
  margin-bottom: 0;
}

.event-photo-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 230px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}

.event-photo {
  position: relative;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  text-align: left;
  background: var(--navy-950);
  border: 0;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(6, 43, 81, 0.12);
}

.event-photo-grid .event-photo {
  grid-column: span 4;
}

.event-photo-grid .event-photo-wide {
  grid-column: span 8;
  grid-row: span 2;
}

.event-photo-grid-recent {
  grid-auto-rows: 260px;
}

.event-photo-grid-recent .event-photo-tall {
  grid-column: span 4;
  grid-row: span 2;
}

.event-photo-grid-recent .event-photo-panorama {
  grid-column: span 8;
}

.event-photo-grid-uploaded {
  grid-auto-rows: 260px;
}

.event-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms ease, opacity var(--transition);
}

.event-photo-tall img {
  object-position: center top;
}

.event-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 27, 50, 0.94) 0%, rgba(3, 27, 50, 0.06) 62%);
  content: "";
  transition: background var(--transition);
}

.event-photo-caption {
  position: absolute;
  right: 24px;
  bottom: 21px;
  left: 24px;
  z-index: 1;
  color: #fff;
}

.event-photo-caption strong,
.event-photo-caption span {
  display: block;
}

.event-photo-caption strong {
  margin-bottom: 3px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.event-photo-caption span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.event-photo:hover img,
.event-photo:focus-visible img {
  opacity: 0.86;
  transform: scale(1.045);
}

.event-photo:hover::after,
.event-photo:focus-visible::after {
  background: linear-gradient(0deg, rgba(3, 27, 50, 0.96) 0%, rgba(3, 27, 50, 0.15) 75%);
}

.event-photo-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.event-photo-pair .event-photo {
  min-height: 390px;
}

.gallery-event-dark {
  color: rgba(255, 255, 255, 0.76);
  background:
    radial-gradient(circle at 92% 8%, rgba(237, 106, 22, 0.2), transparent 24%),
    var(--navy-950);
}

.gallery-event-dark .gallery-event-title h2 {
  color: #fff;
}

.gallery-event-dark .gallery-event-copy {
  color: rgba(255, 255, 255, 0.72);
  border-left-color: rgba(255, 255, 255, 0.16);
}

.gallery-event-dark .gallery-event-index {
  color: #fff;
  opacity: 0.2;
}

.gallery-quote {
  display: grid;
  max-width: 860px;
  margin: 46px auto 0;
  padding: 32px 38px;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: end;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
}

.gallery-quote p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.35;
}

.gallery-quote cite {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-item {
  position: relative;
  min-height: 270px;
  padding: 0;
  overflow: hidden;
  background: var(--navy-950);
  border: 0;
  border-radius: 18px;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(4) {
  grid-column: span 7;
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(3) {
  grid-column: span 5;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease, opacity var(--transition);
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 43, 81, 0.9), transparent 65%);
  content: "";
}

.gallery-caption {
  position: absolute;
  right: 22px;
  bottom: 20px;
  left: 22px;
  z-index: 1;
  color: #fff;
  text-align: left;
}

.gallery-caption strong,
.gallery-caption span {
  display: block;
}

.gallery-caption strong {
  margin-bottom: 3px;
  font-family: Georgia, serif;
  font-size: 1.2rem;
}

.gallery-caption span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  opacity: 0.78;
  transform: scale(1.055);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2500;
  display: none;
  padding: 30px;
  place-items: center;
  background: rgba(3, 18, 32, 0.93);
}

.lightbox.is-open {
  display: grid;
}

.lightbox figure {
  max-width: min(1100px, 95vw);
  max-height: 90vh;
  margin: 0;
}

.lightbox img {
  max-height: 78vh;
  margin-inline: auto;
  object-fit: contain;
  border-radius: 14px;
}

.lightbox figcaption {
  margin-top: 14px;
  color: #fff;
  text-align: center;
}

.lightbox-count {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: #fff;
  font-size: 1.7rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  display: grid;
  width: 52px;
  height: 52px;
  padding: 0;
  place-items: center;
  color: #fff;
  font-size: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translateY(-50%);
  transition: background var(--transition), transform var(--transition);
}

.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  background: var(--orange-600);
  transform: translateY(-50%) scale(1.05);
}

.lightbox-prev {
  left: 22px;
}

.lightbox-next {
  right: 22px;
}

.contact-list {
  display: grid;
  padding: 0;
  gap: 16px;
  list-style: none;
}

.contact-list li {
  display: grid;
  padding: 18px;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  background: var(--surface-soft);
  border-radius: 14px;
}

.contact-list strong,
.contact-list span,
.contact-list a {
  display: block;
}

.contact-list strong {
  color: var(--navy-950);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.contact-list span,
.contact-list a {
  color: var(--muted);
}

.contact-symbol {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--navy-800);
  font-weight: 900;
  background: var(--navy-100);
  border-radius: 11px;
}

.map-panel {
  position: relative;
  display: grid;
  min-height: 420px;
  padding: 36px;
  overflow: hidden;
  place-items: center;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(rgba(6, 43, 81, 0.7), rgba(6, 43, 81, 0.84)),
    url("../images/kolkata-bridge.jpg") center / cover;
  border-radius: var(--radius-lg);
}

.map-panel h2 {
  color: #fff;
}

.map-panel p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.8);
}

.cta-band {
  position: relative;
  padding: clamp(48px, 7vw, 76px);
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0, rgba(237, 106, 22, 0.5), transparent 26%),
    var(--navy-950);
  border-radius: var(--radius-lg);
}

.cta-band::after {
  position: absolute;
  right: -80px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  border: 55px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  content: "";
}

.cta-band-inner {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 35px;
  align-items: center;
  justify-content: space-between;
}

.cta-band h2 {
  max-width: 720px;
  margin-bottom: 12px;
  color: #fff;
}

.cta-band p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.75);
}

.site-footer {
  margin-top: 80px;
  color: rgba(255, 255, 255, 0.7);
  background: #041f39;
}

.footer-main {
  display: grid;
  padding: 70px 0 48px;
  grid-template-columns: 1.35fr 0.7fr 0.85fr 1fr;
  gap: 44px;
}

.footer-brand img {
  width: 250px;
  max-height: 94px;
  margin-bottom: 22px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
  opacity: 0.96;
}

.social-links {
  display: flex;
  margin-top: 24px;
  gap: 12px;
  align-items: center;
}

.social-link {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  transition: color var(--transition), background var(--transition), border-color var(--transition), transform var(--transition);
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.social-link:hover,
.social-link:focus-visible {
  color: #fff;
  background: var(--orange-600);
  border-color: var(--orange-600);
  transform: translateY(-3px);
}

.social-link-disabled {
  color: rgba(255, 255, 255, 0.42);
  cursor: default;
}

.social-link-disabled:hover {
  color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  transform: none;
}

.site-footer h3 {
  margin-bottom: 18px;
  color: #fff;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  padding: 0;
  gap: 9px;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.68);
  transition: color var(--transition), transform var(--transition);
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  padding: 20px 0;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.84rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-links {
  display: flex;
  gap: 18px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.72);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

.legal-content {
  max-width: 820px;
  margin-inline: auto;
}

.legal-content h2 {
  margin-top: 48px;
  font-size: 2rem;
}

.legal-content li {
  margin-bottom: 10px;
}

.source-note {
  padding: 14px 16px;
  color: var(--muted);
  font-size: 0.82rem;
  background: var(--surface-soft);
  border-left: 3px solid var(--orange-600);
  border-radius: 0 10px 10px 0;
}

@media (max-width: 1120px) {
  :root {
    --header-height: 76px;
  }

  .header-cta {
    display: none;
  }

  .nav-link {
    padding-inline: 8px;
  }

  .footer-main {
    grid-template-columns: 1.3fr 0.7fr 1fr;
  }

  .footer-main > :last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 920px) {
  body.menu-open .site-header {
    background: #fff;
    transform: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    z-index: 1002;
    width: min(420px, 88vw);
    height: calc(100dvh - var(--header-height));
    padding: 26px;
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    background-color: #fff;
    border-left: 1px solid var(--line);
    box-shadow: -22px 30px 50px rgba(6, 43, 81, 0.18);
    transform: translateX(105%);
    transition: transform 300ms ease;
    opacity: 1;
    backdrop-filter: none;
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .site-nav::after {
    display: block;
    margin-top: 12px;
    padding: 16px;
    color: var(--muted);
    font-size: 0.82rem;
    text-align: center;
    background: var(--surface-soft);
    border-radius: 12px;
    content: "A collective voice for MSMEs in West Bengal.";
  }

  .nav-link {
    padding: 14px;
    font-size: 1rem;
  }

  .nav-link.is-active::after {
    display: none;
  }

  .section-heading,
  .split {
    grid-template-columns: 1fr;
  }

  .split.reverse > :first-child {
    order: initial;
  }

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

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

  .hero {
    min-height: 780px;
  }

  .hero-inner {
    min-height: 704px;
  }

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

  .stat {
    padding-inline: 18px;
  }

  .cta-band-inner {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .footer-main > :last-child {
    grid-column: auto;
  }

  .gallery-archive-card {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .gallery-archive-copy {
    padding: 22px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .gallery-event-heading {
    grid-template-columns: 58px 1fr;
  }

  .gallery-event-copy {
    padding: 24px 0 0;
    grid-column: 2;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .gallery-event-dark .gallery-event-copy {
    border-top-color: rgba(255, 255, 255, 0.16);
  }

  .event-photo-grid .event-photo {
    grid-column: span 6;
  }

  .event-photo-grid .event-photo-wide {
    grid-column: span 12;
  }

  .gallery-quote {
    grid-template-columns: 1fr;
  }

  .membership-download {
    grid-template-columns: 1fr;
  }

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

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

  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-help-card {
    position: static;
  }
}

@media (max-width: 680px) {
  :root {
    --container: min(100% - 28px, 1180px);
  }

  h1 {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  .section {
    padding-block: 70px;
  }

  .section-heading {
    display: block;
    margin-bottom: 32px;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
  }

  .brand-name {
    font-size: 0.78rem;
    letter-spacing: 0.06em;
  }

  .hero {
    min-height: 850px;
  }

  .hero-media::after {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.88) 70%, rgba(255, 255, 255, 0.56) 100%);
  }

  .hero-media img {
    object-position: 62% center;
  }

  .hero-inner {
    min-height: 774px;
    padding-block: 72px 210px;
    align-content: start;
  }

  .hero-copy .lead {
    font-size: 1rem;
    overflow-wrap: anywhere;
  }

  .hero-copy h1 {
    font-size: clamp(2.45rem, 11.5vw, 3.35rem);
  }

  .hero-copy h1 .text-accent {
    display: block;
  }

  .hero-kicker {
    position: relative;
    display: block;
    width: fit-content;
    max-width: 100%;
    padding-left: 30px;
    line-height: 1.4;
    white-space: normal;
  }

  .hero-kicker::before {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
  }

  .hero-stats {
    background: rgba(6, 43, 81, 0.97);
  }

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

  .stat {
    display: grid;
    padding: 13px 16px;
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 10px;
    align-items: baseline;
    overflow-wrap: anywhere;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .stat:last-child {
    border-bottom: 0;
  }

  .stat strong {
    min-width: 110px;
    font-size: 1.15rem;
  }

  .page-hero {
    padding-top: calc(var(--header-height) + 58px);
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .form-grid,
  .admin-field-grid {
    grid-template-columns: 1fr;
  }

  .field.full {
    grid-column: auto;
  }

  .image-frame img {
    min-height: 330px;
  }

  .image-note {
    right: 12px;
    bottom: 12px;
    left: 12px;
    max-width: none;
  }

  .card {
    padding: 24px;
  }

  .event-detail summary {
    padding: 20px;
    grid-template-columns: auto 1fr;
  }

  .event-detail summary::after {
    display: none;
  }

  .event-detail-content {
    padding: 0 20px 24px;
  }

  .notice-card {
    grid-template-columns: auto 1fr;
  }

  .notice-card > :last-child {
    grid-column: 2;
  }

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

  .gallery-item:nth-child(n) {
    grid-column: auto;
  }

  .gallery-hero {
    padding-bottom: 92px;
  }

  .gallery-overview {
    margin-top: -34px;
  }

  .gallery-archive-card {
    padding: 24px;
  }

  .gallery-archive-card::after {
    width: 150px;
    height: 150px;
  }

  .gallery-archive-copy {
    padding-top: 18px;
  }

  .gallery-event-heading {
    margin-bottom: 30px;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .gallery-event-index {
    font-size: 2.2rem;
  }

  .gallery-event-copy {
    padding-top: 20px;
    grid-column: auto;
  }

  .event-photo-grid,
  .event-photo-pair {
    grid-auto-rows: auto;
    grid-template-columns: 1fr;
  }

  .event-photo-grid .event-photo,
  .event-photo-grid .event-photo-wide {
    min-height: 290px;
    grid-column: auto;
    grid-row: auto;
  }

  .event-photo-grid-recent .event-photo-tall,
  .event-photo-grid-recent .event-photo-panorama,
  .event-photo-grid-uploaded .event-photo-tall,
  .event-photo-grid-uploaded .event-photo-panorama {
    grid-column: auto;
    grid-row: auto;
  }

  .event-photo-pair .event-photo {
    min-height: 270px;
  }

  .event-photo-grid-recent .event-photo-tall,
  .event-photo-grid-uploaded .event-photo-tall {
    min-height: 520px;
  }

  .admin-preview {
    grid-template-columns: 1fr;
  }

  .admin-preview img {
    width: 100%;
    height: 180px;
  }

  .membership-download {
    padding: 26px 20px;
  }

  .membership-download .button-row .btn {
    width: 100%;
  }

  .membership-submit-steps {
    padding: 24px 20px;
  }

  .membership-phone-link {
    align-items: flex-start;
    flex-direction: column;
  }

  .news-card-header {
    grid-template-columns: 1fr;
  }

  .news-date-badge {
    width: 78px;
    min-height: 78px;
    order: -1;
  }

  .news-date-badge strong {
    font-size: 1.7rem;
  }

  .news-document summary,
  .official-notice {
    padding-inline: 18px;
  }

  .office-bearers-grid {
    grid-template-columns: 1fr;
  }

  .office-bearer-card {
    padding: 20px;
  }

  .gallery-quote {
    padding: 26px;
  }

  .lightbox {
    padding: 64px 14px 80px;
  }

  .lightbox-nav {
    top: auto;
    bottom: 16px;
    transform: none;
  }

  .lightbox-nav:hover,
  .lightbox-nav:focus-visible {
    transform: scale(1.05);
  }

  .lightbox-prev {
    left: calc(50% - 62px);
  }

  .lightbox-next {
    right: calc(50% - 62px);
  }

  .cta-band {
    padding: 36px 26px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 430px) {
  .button-row .btn {
    width: 100%;
  }

  .hero-kicker {
    font-size: 0.65rem;
  }

  .hero-copy h1 {
    margin-bottom: 18px;
  }

  .page-hero h1 {
    font-size: 2.55rem;
  }

  .event-detail summary {
    grid-template-columns: 1fr;
  }

  .date-tile {
    width: 70px;
  }

  .timeline::before {
    left: 19px;
  }

  .timeline-item {
    padding-left: 62px;
  }

  .timeline-number {
    width: 40px;
    height: 40px;
    border-width: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .site-loader,
  .site-footer,
  .page-hero,
  .button-row,
  .cta-band {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .section {
    padding: 20px 0;
  }

  .card,
  .form-card {
    box-shadow: none;
  }
}
