:root {
  --ink: #14212b;
  --muted: #607180;
  --paper: #f8faf7;
  --surface: #ffffff;
  --line: #dce6e2;
  --teal: #0f766e;
  --blue: #2563eb;
  --rose: #d9467c;
  --gold: #d69b1d;
  --shadow: 0 18px 50px rgba(20, 33, 43, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(15, 118, 110, 0.09), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, var(--paper) 44%, #edf7f2 100%);
  font-family: Inter, "Noto Sans Devanagari", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  color: #ffffff;
  transition: background 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 35px rgba(20, 33, 43, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.24);
}

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

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-size: 0.96rem;
}

.brand small {
  margin-top: 0.18rem;
  opacity: 0.78;
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.65rem, 1.75vw, 1.5rem);
  color: inherit;
  font-weight: 700;
  font-size: 0.92rem;
}

.menu-toggle {
  display: none;
}

.nav-links a,
.lang-button,
.header-action,
.button {
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.nav-links a:hover,
.lang-button:hover,
.header-action:hover,
.button:hover {
  transform: translateY(-2px);
}

.language-switcher {
  position: relative;
  z-index: 35;
  display: inline-block;
  width: 10rem;
  color: var(--ink);
}

.language-current {
  display: inline-flex;
  align-items: center;
  width: 100%;
  min-height: 3.05rem;
  gap: 0.58rem;
  padding: 0.42rem 0.7rem 0.42rem 0.58rem;
  border: 1.5px solid rgba(20, 33, 43, 0.9);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 34px rgba(10, 21, 30, 0.2);
  cursor: pointer;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  list-style: none;
}

.language-current::-webkit-details-marker {
  display: none;
}

.language-current:hover,
.language-switcher[open] .language-current {
  color: #ffffff;
  border-color: #454650;
  background: #454650;
  box-shadow: 0 18px 42px rgba(10, 21, 30, 0.28);
  transform: translateY(-1px);
}

.language-icon {
  display: grid;
  flex: 0 0 auto;
  width: 2.08rem;
  height: 2.08rem;
  place-items: center;
}

.language-icon svg,
.language-chevron {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.language-icon svg {
  width: 100%;
  height: 100%;
}

.language-current-text {
  min-width: 0;
  flex: 1;
  white-space: nowrap;
  font-size: 0.98rem;
  line-height: 1;
}

.language-chevron {
  flex: 0 0 auto;
  width: 1.12rem;
  height: 1.12rem;
  transition: transform 180ms ease;
}

.language-switcher[open] .language-chevron {
  transform: rotate(180deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 0.48rem);
  right: 0;
  display: grid;
  min-width: 100%;
  gap: 0.25rem;
  padding: 0.36rem;
  border: 1px solid rgba(20, 33, 43, 0.12);
  border-radius: 1rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 20px 46px rgba(10, 21, 30, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.3rem) scale(0.98);
  transition: opacity 180ms ease, transform 180ms ease;
  backdrop-filter: blur(18px);
}

.language-switcher[open] .language-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.lang-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-height: 2.42rem;
  border: 0;
  border-radius: 0.72rem;
  padding: 0.56rem 0.78rem;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 850;
  text-align: left;
}

.lang-button:hover {
  color: var(--teal);
  background: rgba(15, 118, 110, 0.08);
}

.lang-button.is-active {
  color: #ffffff;
  background: #454650;
}

.lang-button.is-active::after {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  margin-left: auto;
  border-radius: 50%;
  background: #84f0df;
}

.lang-button:focus-visible,
.language-current:focus-visible {
  outline: 3px solid rgba(132, 240, 223, 0.62);
  outline-offset: 3px;
}

.is-scrolled .language-current {
  border-color: rgba(20, 33, 43, 0.26);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 32px rgba(20, 33, 43, 0.1);
}

.is-scrolled .language-current:hover,
.is-scrolled .language-switcher[open] .language-current {
  color: #ffffff;
  border-color: #454650;
  background: #454650;
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  border-radius: 999px;
  padding: 0.75rem 1.15rem;
  font-weight: 800;
  white-space: nowrap;
}

.header-action {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.is-scrolled .header-action {
  color: #ffffff;
  background: var(--teal);
  border-color: var(--teal);
}

.hero {
  position: relative;
  min-height: 86svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 8rem clamp(1rem, 5vw, 5rem) 4.3rem;
  color: #ffffff;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 58% 12%;
  animation: heroZoom 10s ease-out both;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(10, 21, 30, 0.88), rgba(10, 21, 30, 0.46) 48%, rgba(10, 21, 30, 0.18)),
    linear-gradient(180deg, rgba(10, 21, 30, 0.16), rgba(10, 21, 30, 0.78));
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  animation: riseIn 760ms ease both;
}

.hero-nepal-flag {
  position: absolute;
  top: clamp(6.1rem, 10vw, 8.2rem);
  right: clamp(1.15rem, 5vw, 5rem);
  z-index: 2;
  display: grid;
  align-items: start;
  width: clamp(5.3rem, 8vw, 7.7rem);
  opacity: 0.9;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.28));
  animation: flagFloat 4.2s ease-in-out infinite;
  pointer-events: none;
}

.nepal-flag-svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

.flag-cloth {
  transform-origin: 4px 44px;
  animation: flagWave 2.8s ease-in-out infinite;
}

.flag-panel {
  fill: #dc143c;
  stroke: #003893;
  stroke-width: 3.8;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.flag-moon-mark,
.flag-sunburst {
  fill: #ffffff;
}

.hero-text {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow,
.contact-band .eyebrow {
  color: #84f0df;
}

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

h1 {
  max-width: 11ch;
  margin-bottom: 1rem;
  font-size: clamp(2.6rem, 8vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.devanagari {
  display: block;
  margin-top: 0.45rem;
  font-family: "Noto Sans Devanagari", Inter, sans-serif;
  font-size: clamp(1.65rem, 4vw, 3.2rem);
  line-height: 1.1;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 1.6rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button.primary {
  color: #ffffff;
  background: var(--teal);
  box-shadow: 0 16px 28px rgba(15, 118, 110, 0.28);
}

.button.ghost {
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.12);
}

.quick-strip {
  width: min(1120px, calc(100% - 2rem));
  margin: -2.25rem auto 0;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid rgba(220, 230, 226, 0.86);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.quick-strip article {
  padding: 1.35rem;
  border-right: 1px solid var(--line);
}

.quick-strip article:last-child {
  border-right: 0;
}

.stat {
  display: block;
  color: var(--blue);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1;
}

.quick-strip p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.section {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 6.4rem) 0;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 7vw, 5rem);
  align-items: start;
}

.about-section {
  width: min(1480px, calc(100% - clamp(2rem, 6vw, 7rem)));
  grid-template-columns: minmax(18rem, 0.52fr) minmax(0, 1.48fr);
  gap: clamp(2rem, 4vw, 4.25rem);
  align-items: start;
}

.section h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1;
}

.section-copy p,
.focus-item p,
.story-copy p,
.meeting-copy p,
.update-card p,
.info-card p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-copy,
.about-subtitle,
.section-copy p,
.about-profile p,
.committee-intro,
.committee-panel p,
.committee-scope p,
.committee-duty-copy p,
.committee-duty-list p,
.focus-item p,
.story-copy p,
.meeting-copy p,
.update-card p,
.info-card p,
.contact-note {
  text-align: justify;
  text-align-last: left;
  text-justify: inter-word;
  hyphens: auto;
  overflow-wrap: break-word;
  word-spacing: normal;
}

.section-copy p {
  font-size: 1.06rem;
}
.about-title {
  display: grid;
  align-content: start;
  gap: 0.95rem;
}

.about-portrait {
  width: min(17.5rem, 100%);
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #dce6e2;
  box-shadow: 0 18px 42px rgba(20, 33, 43, 0.12);
}

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

.about-title h2 {
  max-width: 9ch;
  font-size: clamp(2.8rem, 4vw, 3.85rem);
  line-height: 0.98;
}

.about-subtitle {
  max-width: 22rem;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.14rem);
  font-weight: 850;
  line-height: 1.45;
}

.about-profile {
  display: grid;
  gap: 1rem;
  max-width: 68rem;
}

.about-profile p {
  margin-bottom: 0;
}

.profile-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.profile-fact {
  min-width: 0;
  padding: 0.95rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 28px rgba(20, 33, 43, 0.06);
}

.profile-fact-wide {
  grid-column: 1 / -1;
}

@media (min-width: 1280px) {
  .about-profile {
    max-width: none;
  }

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

  .profile-fact-wide {
    grid-column: 1 / -1;
  }
}

.profile-fact span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--rose);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-fact strong {
  display: block;
  color: var(--ink);
  font-size: clamp(0.95rem, 1.6vw, 1.08rem);
  line-height: 1.35;
}

.profile-link {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  border-radius: 999px;
  padding: 0.78rem 1.1rem;
  color: #ffffff;
  background: var(--teal);
  box-shadow: 0 16px 28px rgba(15, 118, 110, 0.22);
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.profile-link:hover {
  transform: translateY(-2px);
  background: #0d625c;
  box-shadow: 0 20px 34px rgba(15, 118, 110, 0.28);
}

.stat-text {
  font-size: clamp(1.1rem, 2.4vw, 1.7rem);
  overflow-wrap: anywhere;
}

.stat-place {
  white-space: nowrap;
}


.section-heading {
  max-width: 720px;
  margin-bottom: 1.7rem;
}

.info-grid,
.updates-grid,
.gallery-grid {
  display: grid;
  gap: 1rem;
}

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

.info-card,
.update-card,
.gallery-tile {
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: var(--surface);
  box-shadow: 0 14px 34px rgba(20, 33, 43, 0.06);
}

.info-card,
.update-card {
  padding: 1.25rem;
}

.card-kicker {
  color: var(--rose);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.info-card h3,
.update-card h3,
.focus-item h3 {
  margin: 0.45rem 0 0.5rem;
  font-size: 1.24rem;
}

.info-card a {
  color: var(--teal);
  font-weight: 800;
}


.committee-section {
  padding-top: clamp(3rem, 6vw, 5rem);
}

.committee-intro {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.committee-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.committee-grid-secondary {
  margin-top: 1rem;
}

.committee-panel,
.committee-scope {
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 34px rgba(20, 33, 43, 0.06);
}

.committee-panel {
  padding: clamp(1.15rem, 3vw, 1.5rem);
}

.committee-panel h3,
.committee-scope h3 {
  margin: 0.45rem 0 0.65rem;
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
}

.committee-panel p,
.committee-scope p {
  color: var(--muted);
  line-height: 1.72;
}

.committee-panel p:last-child,
.committee-scope p {
  margin-bottom: 0;
}

.committee-points,
.committee-scope-list {
  list-style: none;
  padding: 0;
}

.committee-points {
  display: grid;
  gap: 0.7rem;
  margin: 0;
}

.committee-points li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--muted);
  line-height: 1.6;
}

.committee-points li::before {
  content: "";
  position: absolute;
  top: 0.62rem;
  left: 0;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--teal);
}

.committee-scope {
  margin-top: 1rem;
  padding: clamp(1.15rem, 3vw, 1.5rem);
}

.committee-scope-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 1rem 0 0;
}

.committee-scope-list li {
  padding: 0.82rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  color: var(--ink);
  background: #f8fbf9;
  font-weight: 750;
  line-height: 1.45;
}
.committee-duties {
  margin-top: 1rem;
  padding: clamp(1.2rem, 3vw, 1.65rem);
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background:
    linear-gradient(135deg, rgba(132, 240, 223, 0.12), rgba(255, 255, 255, 0.92)),
    #ffffff;
  box-shadow: 0 16px 38px rgba(20, 33, 43, 0.07);
}

.committee-duty-copy {
  max-width: 760px;
}

.committee-duty-copy h3 {
  margin: 0.45rem 0 0.65rem;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
}

.committee-duty-copy p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.72;
}

.committee-duty-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
}

.committee-duty-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.35rem 0.72rem;
  align-content: start;
  padding: 0.95rem;
  border: 1px solid rgba(220, 230, 226, 0.92);
  border-radius: 0.5rem;
  background: rgba(248, 251, 249, 0.9);
}

.committee-duty-list span {
  grid-row: span 2;
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--teal);
  font-weight: 850;
}

.committee-duty-list strong {
  color: var(--ink);
  font-size: 1rem;
}

.committee-duty-list p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.58;
}


.focus-band {
  width: 100%;
  padding-left: max(1rem, calc((100% - 1120px) / 2));
  padding-right: max(1rem, calc((100% - 1120px) / 2));
  background: linear-gradient(135deg, #112a31, #163d42 48%, #252f55);
  color: #ffffff;
}

.focus-band .section-heading {
  width: min(720px, 100%);
}

.focus-list {
  display: grid;
  gap: 0.75rem;
}

.focus-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.focus-item span {
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #84f0df;
  font-weight: 800;
}

.focus-item p {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

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

.update-card time {
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 800;
}

.update-card a {
  color: var(--teal);
  font-weight: 800;
}

.notice-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 1.1fr);
  gap: 1.1rem;
  align-items: stretch;
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.08), rgba(37, 99, 235, 0.06)),
    var(--surface);
}

.notice-copy {
  display: grid;
  align-content: start;
}

.notice-panel {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.78);
}

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

.notice-details div {
  min-width: 0;
}

.notice-details dt,
.notice-agenda span {
  color: var(--rose);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.notice-details dd {
  margin: 0.28rem 0 0;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.35;
}

.notice-agenda ol {
  display: grid;
  gap: 0.42rem;
  margin: 0.45rem 0 0;
  padding-left: 1.15rem;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.55;
  text-align: justify;
  text-align-last: left;
}

.meeting-section {
  width: 100%;
  padding-left: max(1rem, calc((100% - 1120px) / 2));
  padding-right: max(1rem, calc((100% - 1120px) / 2));
  color: #ffffff;
  background:
    radial-gradient(circle at 80% 8%, rgba(214, 155, 29, 0.18), transparent 20rem),
    linear-gradient(135deg, #101f2b, #143c40 50%, #23365b);
}

.meeting-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}

.meeting-wrap-secondary {
  margin-top: clamp(3rem, 7vw, 5rem);
  padding-top: clamp(3rem, 7vw, 5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.meeting-copy time {
  display: inline-flex;
  margin-bottom: 0.9rem;
  color: #f4c85d;
  font-weight: 800;
}

.meeting-copy h2 {
  max-width: min(100%, 42rem);
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.05;
  text-wrap: balance;
}

.meeting-copy p {
  max-width: 44rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
}

.meeting-gallery {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  grid-template-rows: repeat(2, minmax(13rem, 1fr));
  gap: 1rem;
}

.meeting-gallery-five {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: minmax(14rem, 1.05fr) minmax(9.5rem, 0.95fr);
}

.meeting-gallery-four {
  grid-template-columns: 0.9fr repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(12rem, 1fr));
}

.meeting-gallery-four .meeting-photo-tall {
  grid-row: span 2;
  min-height: 27rem;
}

.meeting-gallery-four .meeting-photo-wide {
  grid-column: 2 / -1;
}


.meeting-photo {
  position: relative;
  min-height: 13rem;
  margin: 0;
  overflow: hidden;
  display: grid;
  align-items: end;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
  cursor: zoom-in;
  isolation: isolate;
}

.meeting-photo-large {
  grid-row: span 2;
}

.meeting-photo-wide {
  grid-column: 1 / -1;
}

.meeting-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 420ms ease;
}

.meeting-photo-large img {
  object-position: center;
}

.meeting-photo:hover img {
  transform: scale(1.04);
}

.meeting-photo:focus-visible {
  outline: 3px solid #84f0df;
  outline-offset: 4px;
}

.meeting-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(10, 21, 30, 0.78));
}

.meeting-photo::before {
  content: "↗";
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  z-index: 2;
  display: grid;
  width: 2.45rem;
  height: 2.45rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(10, 21, 30, 0.34);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
  opacity: 0;
  transform: translateY(-0.35rem) scale(0.92);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
  backdrop-filter: blur(12px);
}

.meeting-photo:hover::before,
.meeting-photo:focus-visible::before {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.meeting-photo figcaption {
  position: relative;
  z-index: 3;
  padding: 0.95rem;
  font-weight: 800;
}

body.lightbox-open {
  overflow: hidden;
}

.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr) 4rem;
  align-items: center;
  gap: clamp(0.65rem, 2vw, 1.25rem);
  padding: clamp(1rem, 3vw, 2rem);
  color: #ffffff;
  background:
    radial-gradient(circle at 50% 15%, rgba(132, 240, 223, 0.16), transparent 24rem),
    rgba(7, 13, 20, 0.86);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
  backdrop-filter: blur(18px);
}

.photo-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-frame {
  position: relative;
  justify-self: center;
  width: min(100%, 74rem);
  max-height: min(78svh, 48rem);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.65rem;
  background: #101f2b;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.42);
  transform: translateY(1rem) scale(0.96);
  transition: transform 260ms ease;
}

.photo-lightbox.is-open .lightbox-frame {
  transform: translateY(0) scale(1);
}

.lightbox-frame img {
  width: 100%;
  max-height: min(72svh, 44rem);
  object-fit: contain;
  background: #071018;
  opacity: 1;
  transform: scale(1);
  transition: opacity 160ms ease, transform 160ms ease;
}

.lightbox-frame.is-switching img {
  opacity: 0.32;
  transform: scale(0.985);
}

.lightbox-frame figcaption {
  display: flex;
  align-items: center;
  min-height: 3rem;
  padding: 0.9rem 1rem;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(10, 21, 30, 0.86);
  font-weight: 800;
}

.lightbox-close,
.lightbox-arrow {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
  backdrop-filter: blur(14px);
}

.lightbox-close:hover,
.lightbox-arrow:hover {
  transform: translateY(-2px);
  border-color: rgba(132, 240, 223, 0.64);
  background: rgba(132, 240, 223, 0.16);
}

.lightbox-close:focus-visible,
.lightbox-arrow:focus-visible {
  outline: 3px solid #84f0df;
  outline-offset: 3px;
}

.lightbox-close {
  position: absolute;
  top: clamp(0.8rem, 2vw, 1.4rem);
  right: clamp(0.8rem, 2vw, 1.4rem);
  z-index: 2;
  display: grid;
  width: 2.9rem;
  height: 2.9rem;
  place-items: center;
  border-radius: 50%;
  font-size: 1.9rem;
  line-height: 1;
}

.lightbox-arrow {
  display: grid;
  width: 3.2rem;
  height: 3.2rem;
  place-items: center;
  border-radius: 50%;
  font-size: 2.4rem;
  line-height: 1;
}

.lightbox-prev {
  justify-self: end;
}

.lightbox-next {
  justify-self: start;
}

.story-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}

.story-copy h2 {
  max-width: 9ch;
}

.story-copy p:last-child {
  max-width: 34rem;
  margin: 1rem 0 0;
  font-size: 1.05rem;
}

.story-media {
  display: grid;
  gap: 1.1rem;
}

.story-photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: end;
}

.story-photo {
  --lift: 0rem;
  position: relative;
  min-height: 23rem;
  margin: 0;
  overflow: hidden;
  display: grid;
  align-items: end;
  border: 1px solid rgba(220, 230, 226, 0.9);
  border-radius: 0.5rem;
  background: #dce6e2;
  box-shadow: 0 18px 42px rgba(20, 33, 43, 0.12);
  transform: translateY(var(--lift));
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.story-photo.is-raised {
  --lift: -1.25rem;
}

.story-photo:hover {
  transform: translateY(calc(var(--lift) - 0.35rem));
  box-shadow: 0 24px 58px rgba(20, 33, 43, 0.18);
}

.story-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 420ms ease;
}

.story-photo:hover img {
  transform: scale(1.045);
}

.story-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(10, 21, 30, 0.72));
}

.story-photo figcaption {
  position: relative;
  z-index: 1;
  padding: 1rem;
  color: #ffffff;
  font-weight: 800;
}

.reel-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(10rem, 12.5rem);
  align-items: center;
  gap: 0.85rem 1.15rem;
  padding: clamp(0.9rem, 2.2vw, 1.15rem);
  border: 1px solid rgba(220, 230, 226, 0.9);
  border-radius: 0.5rem;
  background:
    radial-gradient(circle at 8% 8%, rgba(132, 240, 223, 0.18), transparent 13rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 249, 0.94));
  box-shadow: 0 18px 42px rgba(20, 33, 43, 0.1);
}

.reel-card-copy {
  min-width: 0;
}

.reel-card h3 {
  max-width: 14rem;
  margin: 0.35rem 0 0;
  font-size: clamp(1.15rem, 2.1vw, 1.42rem);
  line-height: 1.12;
}

.reel-frame {
  grid-column: 2;
  grid-row: 1 / span 2;
  width: min(100%, 12.5rem);
  aspect-ratio: 9 / 16;
  justify-self: end;
  overflow: hidden;
  border: 1px solid rgba(20, 33, 43, 0.14);
  border-radius: 0.65rem;
  background: #101f2b;
  box-shadow: 0 14px 34px rgba(20, 33, 43, 0.16);
}

.reel-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.reel-link {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.68rem 0.95rem;
  border-radius: 999px;
  color: #ffffff;
  background: var(--teal);
  font-weight: 850;
  box-shadow: 0 14px 28px rgba(15, 118, 110, 0.22);
}

.reel-link:hover {
  transform: translateY(-2px);
}


.gallery-section {
  padding-top: 0;
}

.gallery-grid {
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
}

.gallery-tile {
  position: relative;
  min-height: 18rem;
  overflow: hidden;
  display: grid;
  align-items: end;
  margin: 0;
  color: #ffffff;
  background: linear-gradient(135deg, var(--teal), #15323c);
}

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

.gallery-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(10, 21, 30, 0.72));
}

.gallery-tile span {
  align-self: center;
  justify-self: center;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
}

.gallery-tile figcaption {
  position: relative;
  z-index: 1;
  padding: 1rem;
  font-weight: 800;
}

.tint-blue {
  background: linear-gradient(135deg, #2563eb, #14213f);
}

.tint-rose {
  background: linear-gradient(135deg, #d9467c, #243b55);
}

.contact-band {
  width: min(1120px, calc(100% - 2rem));
  margin-bottom: 4rem;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(1.2rem, 4vw, 2.6rem);
  align-items: stretch;
  padding: clamp(1.4rem, 4vw, 3rem);
  border-radius: 0.5rem;
  color: #ffffff;
  background:
    radial-gradient(circle at 10% 10%, rgba(132, 240, 223, 0.22), transparent 18rem),
    linear-gradient(135deg, #112a31, #1e355e);
  box-shadow: var(--shadow);
}

.contact-panel {
  display: grid;
  align-content: center;
  gap: 1rem;
}

.contact-note {
  max-width: 34rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 650;
  line-height: 1.65;
}

.contact-list {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(0.7rem, 2vw, 1.15rem);
  margin-top: 0.35rem;
}

.contact-card {
  position: relative;
  isolation: isolate;
  display: inline-grid;
  place-items: center;
  width: clamp(3.25rem, 7vw, 4rem);
  height: clamp(3.25rem, 7vw, 4rem);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1.1rem;
  color: #ffffff;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(9, 20, 32, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 14px 30px rgba(3, 9, 18, 0.24);
  backdrop-filter: blur(14px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: 0.34rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.78rem;
  pointer-events: none;
}

.contact-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(132, 240, 223, 0.62), rgba(244, 200, 93, 0.46));
  opacity: 0;
  transition: opacity 180ms ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(132, 240, 223, 0.52);
  background:
    linear-gradient(160deg, rgba(132, 240, 223, 0.16), rgba(255, 255, 255, 0.06)),
    rgba(7, 17, 28, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 18px 38px rgba(3, 9, 18, 0.3);
}

.contact-card:hover::after {
  opacity: 0.55;
}

.contact-card:focus-visible {
  outline: 3px solid rgba(154, 230, 219, 0.46);
  outline-offset: 4px;
}

.contact-card svg {
  width: clamp(1.32rem, 3vw, 1.62rem);
  height: clamp(1.32rem, 3vw, 1.62rem);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.18));
}

.contact-card-facebook {
  font-family: Arial, sans-serif;
  font-size: clamp(1.72rem, 3.5vw, 2.05rem);
  font-weight: 900;
}

.contact-letter {
  line-height: 1;
  transform: translateY(0.05rem);
}

.contact-tooltip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.7rem);
  width: max-content;
  max-width: min(16rem, calc(100vw - 2rem));
  padding: 0.42rem 0.62rem;
  border-radius: 0.4rem;
  color: #08252b;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.2;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 0.35rem);
  transition: opacity 160ms ease, transform 160ms ease;
}

.contact-tooltip::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 0.55rem;
  height: 0.55rem;
  background: #ffffff;
  transform: translate(-50%, -50%) rotate(45deg);
}

.contact-card:hover .contact-tooltip,
.contact-card:focus-visible .contact-tooltip {
  opacity: 1;
  transform: translate(-50%, 0);
}



.contact-form {
  display: grid;
  gap: 0.9rem;
  padding: clamp(1rem, 3vw, 1.35rem);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
}

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

.form-field {
  display: grid;
  gap: 0.42rem;
}

.form-field label {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.45rem;
  outline: 0;
  padding: 0.9rem 1rem;
  color: #ffffff;
  background: rgba(5, 16, 24, 0.32);
  font: inherit;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.contact-form textarea {
  min-height: 8rem;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(132, 240, 223, 0.82);
  background: rgba(5, 16, 24, 0.44);
  box-shadow: 0 0 0 3px rgba(132, 240, 223, 0.16);
}

.contact-submit {
  justify-self: start;
  min-height: 3.05rem;
  border: 0;
  border-radius: 0.5rem;
  padding: 0.85rem 1.25rem;
  color: #08252b;
  background: #9ae6db;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.contact-submit:hover {
  transform: translateY(-2px);
  background: #b9fff4;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.22);
}

.contact-submit:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.62);
  outline-offset: 3px;
}

.form-honey {
  display: none;
}

.contact-submit:disabled {
  opacity: 0.68;
  cursor: progress;
  transform: none;
}

.form-status {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 90;
  width: min(25rem, calc(100% - 2rem));
  min-height: 0;
  margin: 0;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-left: 0.28rem solid #9ae6db;
  border-radius: 0.5rem;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    rgba(13, 25, 32, 0.94);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.26);
  font-size: 0.94rem;
  font-weight: 850;
  line-height: 1.45;
  opacity: 0;
  pointer-events: none;
  transform: translateY(1rem) scale(0.98);
  transition: opacity 180ms ease, transform 180ms ease;
  backdrop-filter: blur(18px);
}

.form-status.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.form-status.is-success {
  border-left-color: #9ae6db;
}

.form-status.is-info {
  border-left-color: #f4c85d;
}

.form-status.is-error {
  border-left-color: #f87171;
}



.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem clamp(1rem, 4vw, 3rem);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--teal);
  font-weight: 800;
}
.footer-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.9rem;
}

.visitor-counter {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.45rem;
  padding: 0.42rem 0.55rem 0.42rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(20, 33, 43, 0.07);
}

.visitor-counter span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 850;
}

.visitor-counter img {
  display: block;
  height: 1.34rem;
  width: auto;
}


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

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

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

@keyframes heroZoom {
  from {
    transform: scale(1.06);
  }
  to {
    transform: scale(1);
  }
}
@keyframes flagFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-1.5deg);
  }
  50% {
    transform: translate3d(0, -0.45rem, 0) rotate(2deg);
  }
}

@keyframes flagWave {
  0%,
  100% {
    transform: skewY(0deg) scaleX(1);
  }
  50% {
    transform: skewY(-2.6deg) scaleX(1.035);
  }
}


@media (max-width: 840px) {
  .notice-card {
    grid-template-columns: 1fr;
  }

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

  .hero-nepal-flag {
    top: 6.75rem;
    right: 1.05rem;
    width: 4.1rem;
    opacity: 0.78;
  }

  .site-header {
    position: absolute;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: start;
    gap: 0.65rem;
  }

  .brand {
    order: 1;
    min-width: 0;
  }

  .language-switcher {
    order: 2;
  }

  .menu-toggle {
    order: 3;
  }

  .nav-links {
    order: 4;
  }

  .menu-toggle {
    display: inline-grid;
    width: 3.4rem;
    height: 3.4rem;
    place-items: center;
    border: 0;
    border-radius: 0.9rem;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 14px 34px rgba(10, 21, 30, 0.22);
    cursor: pointer;
    transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
  }

  .menu-toggle:hover,
  .menu-toggle:focus-visible {
    transform: translateY(-2px);
    background: #ffffff;
    box-shadow: 0 18px 38px rgba(10, 21, 30, 0.28);
  }

  .menu-toggle:focus-visible {
    outline: 3px solid rgba(132, 240, 223, 0.56);
    outline-offset: 3px;
  }

  .menu-toggle span {
    grid-area: 1 / 1;
    width: 1.35rem;
    height: 0.14rem;
    border-radius: 999px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-toggle span:nth-child(1) {
    transform: translateY(-0.43rem);
  }

  .menu-toggle span:nth-child(3) {
    transform: translateY(0.43rem);
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(1) {
    transform: rotate(45deg);
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(3) {
    transform: rotate(-45deg);
  }

  .nav-links {
    grid-column: 1 / -1;
    justify-self: end;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 24rem);
    max-height: 0;
    overflow: hidden;
    gap: 0.45rem;
    padding: 0;
    border: 1px solid transparent;
    border-radius: 1rem;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-0.45rem) scale(0.98);
    transition: opacity 180ms ease, transform 180ms ease, max-height 220ms ease, padding 180ms ease;
    backdrop-filter: blur(18px);
  }

  .site-header.is-menu-open .nav-links {
    max-height: 24rem;
    padding: 0.65rem;
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: 0 20px 48px rgba(10, 21, 30, 0.24);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .nav-links a {
    padding: 0.72rem 0.78rem;
    border-radius: 0.7rem;
    background: rgba(15, 118, 110, 0.08);
    color: var(--ink);
    text-shadow: none;
  }

  .header-action {
    display: none;
  }

  .brand strong {
    font-size: 0.88rem;
  }

  .hero {
    min-height: 82svh;
    padding-top: 7.65rem;
  }

  .hero-image {
    object-position: 42% 16%;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(10, 21, 30, 0.78), rgba(10, 21, 30, 0.38)),
      linear-gradient(180deg, rgba(10, 21, 30, 0.18), rgba(10, 21, 30, 0.82));
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 9vw, 4.8rem);
    line-height: 1.02;
    text-wrap: balance;
  }

  .devanagari {
    max-width: 100%;
    font-size: clamp(1.75rem, 6.5vw, 2.75rem);
  }

  .quick-strip,
  .info-grid,
  .committee-grid,
  .committee-scope-list,
  .committee-duty-list,
  .updates-grid,
  .gallery-grid,
  .story-section,
  .meeting-wrap,
  .meeting-gallery,
  .split,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .meeting-copy h2 {
    max-width: 100%;
    font-size: clamp(1.9rem, 8.4vw, 2.65rem);
    line-height: 1.08;
  }

  .meeting-gallery {
    grid-template-rows: none;
  }

  .meeting-gallery-five {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .meeting-gallery-four {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .meeting-gallery-four .meeting-photo-tall,
  .meeting-gallery-four .meeting-photo-wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 16rem;
  }

  .meeting-photo,
  .meeting-photo-large,
  .meeting-photo-wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 15rem;
  }

  .photo-lightbox {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    align-content: center;
    gap: 0.8rem;
    padding: 4.5rem 1rem 1rem;
  }

  .lightbox-frame {
    grid-column: 1 / -1;
    grid-row: 1;
    width: 100%;
    max-height: 72svh;
  }

  .lightbox-frame img {
    max-height: 62svh;
  }

  .lightbox-prev,
  .lightbox-next {
    justify-self: stretch;
    width: auto;
    border-radius: 0.5rem;
  }

  .lightbox-prev {
    grid-column: 1;
    grid-row: 2;
  }

  .lightbox-next {
    grid-column: 2;
    grid-row: 2;
  }

  .story-copy h2 {
    max-width: 12ch;
  }

  .story-media,
  .story-photos,
  .reel-card {
    grid-template-columns: 1fr;
  }

  .story-photo,
  .story-photo.is-raised {
    --lift: 0rem;
    min-height: 16rem;
  }

  .reel-card {
    padding: 0.9rem;
  }

  .reel-card h3 {
    max-width: 100%;
  }

  .reel-frame {
    grid-column: auto;
    grid-row: auto;
    justify-self: center;
    width: min(100%, 20rem);
  }

  .reel-link {
    justify-self: center;
  }

  .about-title {
    gap: 0.55rem;
  }

  .about-portrait {
    display: none;
  }

  .about-title h2 {
    max-width: 100%;
    font-size: clamp(2.35rem, 10vw, 3.35rem);
  }

  .about-subtitle {
    font-size: 0.98rem;
    line-height: 1.35;
  }

  .about-profile {
    gap: 0.82rem;
  }

  .about-profile p {
    font-size: 1rem;
    line-height: 1.62;
    text-align: left;
  }

  .quick-strip {
    display: none;
  }

  .about-section {
    padding-top: clamp(1.35rem, 4.5vw, 2.2rem);
    row-gap: 1.1rem;
  }

  .gallery-tile {
    min-height: 14rem;
  }

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

  .footer-actions {
    justify-content: flex-start;
  }

  .visitor-counter {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 720px) {
  .contact-list {
    grid-template-columns: 1fr;
  }

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

  .contact-submit {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding: 0.85rem 1rem;
    gap: 0.55rem;
  }

  .menu-toggle {
    width: 3rem;
    height: 3rem;
    border-radius: 0.82rem;
  }

  .nav-links {
    width: min(100%, 21rem);
    grid-template-columns: 1fr;
  }

  .header-action {
    min-height: 2.45rem;
    padding: 0.65rem 0.85rem;
    font-size: 0.88rem;
  }

  .language-switcher {
    width: 7.85rem;
  }

  .language-current {
    min-height: 2.9rem;
    gap: 0.4rem;
    padding: 0.38rem 0.52rem;
  }

  .language-icon {
    width: 1.94rem;
    height: 1.94rem;
  }

  .language-current-text {
    font-size: 0.86rem;
  }

  .language-chevron {
    width: 0.98rem;
    height: 0.98rem;
  }

  .language-menu {
    min-width: 8.6rem;
  }

  .lang-button {
    min-height: 2.28rem;
    padding: 0.5rem 0.65rem;
    font-size: 0.86rem;
  }

  .brand-mark {
    width: 2.35rem;
    height: 2.35rem;
  }

  .hero {
    min-height: 78svh;
    padding-top: 7.45rem;
    padding-bottom: 3.3rem;
  }

  .hero-image {
    object-position: 38% 14%;
  }

  h1 {
    font-size: clamp(2.32rem, 10.2vw, 3rem);
    line-height: 1.04;
  }

  .devanagari {
    font-size: clamp(1.72rem, 7.2vw, 2.12rem);
  }

  .hero-copy {
    line-height: 1.55;
  }

  .about-section {
    padding-top: 1.85rem;
  }

  .profile-facts {
    grid-template-columns: 1fr;
  }

  .committee-duty-list li {
    grid-template-columns: 1fr;
  }

  .committee-duty-list span {
    grid-row: auto;
  }

  .committee-duty-list p {
    grid-column: auto;
  }

  .profile-link,
  .button {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .header-action {
    display: none;
  }
}

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