:root {
  --bg: #eef1f6;
  --surface: #ffffff;
  --surface-soft: #f5f7fb;
  --text-main: #24354f;
  --text-strong: #0e1b36;
  --text-muted: #62708b;
  --primary: #2f63dd;
  --primary-dark: #0b1b49;
  --dark-panel: #07133a;
  --line: #d7deea;
  --shadow-sm: 0 8px 18px rgba(15, 28, 63, 0.08);
  --shadow-md: 0 18px 44px rgba(12, 26, 58, 0.16);
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-main);
  background: var(--bg);
  line-height: 1.6;
}

/* Login Button Styles */
.nav-login-btn {
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #2f63dd !important; /* Brand Blue text */
  transition: all 0.25s ease;
}

/* Desktop specific styles to look like a button */
@media (min-width: 992px) {
  .nav-login-btn {
    border: 2px solid #2f63dd; /* Blue border */
    border-radius: 2rem;
    padding: 0.5rem 1.4rem !important;
  }

  .nav-login-btn:hover {
    background-color: #2f63dd; /* Blue background on hover */
    color: #fff !important; /* White text on hover */
    box-shadow: 0 4px 12px rgba(47, 99, 221, 0.2);
    transform: translateY(-1px);
  }
}

h1,
h2,
h3,
h4,
h5,
.brand-dark,
.brand-blue {
  font-family: "Playfair Display", serif;
  color: var(--text-strong);
}

.section {
  padding: 6rem 0;
}

.section-white {
  background: #fff;
}

.section-muted {
  background: #eef2f7;
}

.condo-navbar {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}

.nav-shell {
  display: flex;
  align-items: center;
}

.brand-wordmark,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.brand-icon {
  color: var(--primary);
  font-size: 1.2rem;
}

.brand-dark {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #1f2a40;
}

.brand-blue {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: var(--primary);
}

.condo-navbar .nav-link {
  color: #4b5d7d;
  font-weight: 500;
  margin-left: 1.5rem;
}

.condo-navbar .nav-link:hover,
.condo-navbar .nav-link:focus {
  color: var(--primary);
}

.condo-navbar .nav-link.nav-join-btn {
  background: var(--primary);
  color: #fff;
  border-radius: 999px;
  padding: 0.56rem 1.2rem;
  margin-left: -0.100rem;
  box-shadow: 0 8px 14px rgba(47, 99, 221, 0.28);
}

.condo-navbar .nav-link.nav-join-btn:hover,
.condo-navbar .nav-link.nav-join-btn:focus {
  color: #fff;
  background: #2454c9;
}

.condo-navbar .navbar-toggler {
  border-color: #cfd8ea;
}

.condo-navbar .navbar-toggler-icon {
  filter: contrast(170%);
}

.condo-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-top: 7rem;
  overflow: hidden;
  background: url("../img/backgrounds/background.jpg") center center / cover no-repeat;
}

.hero-wash {
  position: absolute;
  inset: 0;
  background: rgba(243, 246, 251, 0.9);
}

.condo-hero-content {
  position: relative;
  z-index: 2;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  border: 1px solid #bfd0f3;
  background: #dfe8f8;
  color: #1743b4;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.5rem 1.25rem;
  margin-bottom: 1.5rem;
}

.hero-pill-dot {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: #2f63dd;
  box-shadow: 0 0 0 0 rgba(47, 99, 221, 0.45);
  animation: heroPillBlink2x 2s ease-in-out infinite;
}

@keyframes heroPillBlink2x {
  0%, 18%, 32%, 48%, 62%, 100% {
    opacity: 1;
  }

  24%, 54% {
    opacity: 0.2;
  }

  0%, 32%, 62% {
    box-shadow: 0 0 0 0 rgba(47, 99, 221, 0.45);
  }

  16%, 46% {
    box-shadow: 0 0 0 0.38rem rgba(47, 99, 221, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-pill-dot {
    animation: none;
  }
}
.hero-title {
  font-size: clamp(2.5rem, 5.2vw, 5rem);
  line-height: 0.98;
  margin: 0 0 1.5rem;
  max-width: 16ch;
}

.hero-title span {
  color: var(--primary);
}

.hero-lead {
  color: #324c73;
  font-size: 1.07rem;
  max-width: 38rem;
  margin-bottom: 2rem;
}

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

.btn-primary-custom {
  background: var(--primary);
  color: #fff;
  border: 0;
  border-radius: 0.8rem;
  font-weight: 600;
  padding: 0.95rem 1.6rem;
  box-shadow: var(--shadow-sm);
}

.btn-primary-custom:hover {
  background: #2454c9;
  color: #fff;
}

.btn-ghost {
  background: #fff;
  color: #16274d;
  border: 1px solid #d3dbeb;
  border-radius: 0.8rem;
  font-weight: 600;
  padding: 0.95rem 1.6rem;
}

.btn-ghost:hover {
  color: #0f2f77;
  border-color: #b8c8ea;
}

.hero-photo-frame {
  position: relative;
  border-radius: 1.25rem;
  border: 6px solid #f7f9ff;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  max-width: 32rem;
  margin-left: auto;
}

.hero-photo {
  width: 100%;
  height: 32rem;
  object-fit: cover;
  display: block;
}

.hero-address-chip {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  background: rgba(235, 239, 244, 0.92);
  border-radius: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1rem;
}

.hero-address-chip i {
  color: var(--primary);
  font-size: 1.4rem;
}

.hero-address-chip strong {
  display: block;
  color: #2f3c50;
  line-height: 1.2;
}

.hero-address-chip span {
  display: block;
  color: #5a6880;
  font-size: 0.95rem;
}

.section-title {
  font-size: clamp(2rem, 3vw, 3.2rem);
  margin-bottom: 1.2rem;
  text-align: center;
}

.section-title.text-start {
  text-align: left;
}

.section-subtitle {
  color: #3e567b;
  max-width: 42rem;
  text-align: center;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

.mission-section {
  background: #eff2f7;
}

.mission-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: clamp(1.5rem, 3vw, 3.4rem);
  align-items: start;
}

.mission-eyebrow {
  margin: 0 0 0.9rem;
  color: #3f6de5;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  font-size: 0.72rem;
}

.mission-heading {
  font-size: clamp(2.2rem, 4.4vw, 4.2rem);
  line-height: 1.03;
  margin: 0;
  max-width: 12ch;
}

.mission-heading span {
  color: #2f63dd;
  font-style: italic;
}

.mission-copy {
  margin: 2rem 0 0;
  color: #3f5578;
  font-size: 1.22rem;
  max-width: 32rem;
}

.mission-video-wrapper {
  position: relative;
  margin-top: 2rem;
  border-radius: 1.65rem;
  overflow: hidden;
  border: 1px solid #d2daeb;
  box-shadow: var(--shadow-sm);
  background: #111f3d;
  aspect-ratio: 16/9;
}

.mission-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease, visibility 0.3s;
  cursor: pointer;
  z-index: 10;
}

.video-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.btn-video-play {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: #fff;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 0.3rem; /* Optical center */
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s;
}

.mission-video-wrapper:hover .btn-video-play {
  transform: scale(1.15);
  background: var(--primary);
  border-color: var(--primary);
}

.mission-pillar-stack {
  display: grid;
  gap: 1rem;
  margin-top: 1.6rem;
}

.mission-pillar {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.mission-pillar-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f7faff;
  color: #2f63dd;
  border: 1px solid #d8e0ee;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.mission-pillar h5 {
  font-family: "Poppins", sans-serif;
  color: #112449;
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.3rem;
}

.mission-pillar p {
  margin: 0;
  color: #677a98;
}

.mission-right {
  display: grid;
  gap: 1.3rem;
}

.mission-gallery-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: #8d9bb5;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.68rem;
  font-weight: 700;
}

.mission-gallery-meta span:first-child {
  color: #3f6de5;
}

.mission-gallery-meta i {
  margin-right: 0.35rem;
}

.mission-gallery-card {
  position: relative;
  border-radius: 1.65rem;
  overflow: hidden;
  border: 1px solid #d5ddec;
  background: #0e1e40;
  min-height: clamp(17rem, 31vw, 23rem);
}

.mission-gallery-card .carousel-inner,
.mission-gallery-card .carousel-item {
  height: 100%;
}

.mission-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mission-gallery-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.35rem 1.3rem 1.25rem;
  color: #fff;
  background: linear-gradient(180deg, rgba(5, 16, 38, 0) 0%, rgba(6, 17, 42, 0.92) 80%);
}

.mission-gallery-overlay h4 {
  color: #fff;
  margin: 0;
  font-size: 2rem;
}

.mission-gallery-overlay p {
  margin: 0.1rem 0 0;
  color: #d7e3ff;
  font-size: 0.87rem;
}

.mission-gallery-nav {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  gap: 0.5rem;
  z-index: 5;
}

.mission-gallery-nav .nav-btn {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(32, 47, 78, 0.8);
  color: #d6e2ff;
  border: 1px solid rgba(166, 186, 231, 0.25);
  font-size: 0.72rem;
  transition: background 0.2s;
}

.mission-gallery-nav .nav-btn:hover {
  background: var(--primary);
  color: #fff;
}

.mission-quote-card {
  margin: 0;
  border-radius: 1.7rem;
  padding: 2rem 1.8rem;
  background: radial-gradient(circle at left top, #17367f 0%, #081331 70%);
  border: 1px solid rgba(113, 140, 205, 0.32);
}

.mission-quote-card p {
  margin: 0;
  color: #f2f6ff;
  font-style: italic;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.5;
}

.mission-quote-card footer {
  margin-top: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.quote-badge {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 0.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #4f74ff 0%, #3158dd 100%);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}

.mission-quote-card footer strong {
  display: block;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
}

.mission-quote-card footer small {
  display: block;
  color: #9bb0db;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.68rem;
}

.stand-card {
  background: #fff;
  border: 1px solid #d4dcea;
  border-radius: 1.1rem;
  padding: 1.8rem;
  height: 100%;
  box-shadow: 0 2px 0 rgba(49, 70, 110, 0.03);
}

.stand-card h5 {
  color: #0f2142;
  font-size: 1.55rem;
  margin-bottom: 0.7rem;
}

.stand-card p {
  color: #3d5374;
}

.icon-box {
  width: 3.05rem;
  height: 3.05rem;
  border-radius: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: #fff;
  font-size: 1.25rem;
  background: #5f8df4;
}

#initiatives .row > div:nth-child(2) .icon-box {
  background: #6e6ce8;
}

#initiatives .row > div:nth-child(3) .icon-box {
  background: #21b388;
}

#initiatives .row > div:nth-child(4) .icon-box {
  background: #f4a11b;
}

#initiatives .row > div:nth-child(5) .icon-box {
  background: #ec4c70;
}

#initiatives .row > div:nth-child(6) .icon-box {
  background: #8458eb;
}

.documents-band {
  height: 5.8rem;
  background: linear-gradient(90deg, #07133b 0%, #081946 100%);
}

.documents-section {
  padding-top: 4.6rem;
}

.documents-search {
  width: min(100%, 28rem);
  margin: 0 auto 2.2rem;
  background: #f2f4f8;
  border: 1px solid #ccd5e4;
  border-radius: 999px;
  display: flex;
  align-items: center;
  padding: 0.72rem 0.95rem;
  gap: 0.55rem;
}

.documents-search i {
  color: #8ea0be;
}

.documents-search input {
  border: 0;
  outline: 0;
  background: transparent;
  color: #263a5e;
  width: 100%;
}

.documents-search input::placeholder {
  color: #8e9cb5;
}

.doc-card {
  background: #f4f6fa;
  border: 1px solid #d0d9e8;
  border-radius: 0.95rem;
  padding: 1.35rem;
  height: 100%;
}

.doc-icon {
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 0.65rem;
  background: #dce8fb;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.doc-card h5 {
  font-size: 2rem;
  margin-bottom: 0.35rem;
}

.doc-card p {
  color: #5b6f92;
  margin-bottom: 1rem;
}

.doc-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.doc-meta small {
  font-weight: 600;
  color: #7f90ad;
}

.doc-meta a {
  text-decoration: none;
  color: #2f63dd;
  font-weight: 600;
}

.doc-meta a i {
  margin-left: 0.25rem;
}

.report-section {
  padding-top: 2.8rem;
}

.report-page-shell {
  padding: 8.2rem 0 5rem;
  background: #eef2f7;
}

.report-page-shell .report-section {
  padding: 0;
}

.issue-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid #f3c9d2;
  color: #cf2e55;
  border-radius: 999px;
  padding: 0.38rem 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.82rem;
  font-weight: 700;
  background: #fff2f4;
  margin-bottom: 1rem;
}

.issue-lead {
  max-width: 36rem;
  color: #334d75;
}

.issue-type-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.issue-type {
  text-align: left;
  border: 1px solid #cfd7e6;
  background: #f8f9fb;
  color: #11264a;
  border-radius: 0.72rem;
  padding: 0.85rem 1rem;
  font-weight: 600;
}

.issue-type i {
  width: 1.35rem;
  margin-right: 0.45rem;
}

.issue-type.active {
  border-color: #aac2f5;
  background: #f1f6ff;
}

.issue-type.active i {
  color: #2f63dd;
}

.report-card {
  background: #f2f3f5;
  border: 1px solid #d4dbe8;
  border-radius: 1.2rem;
  box-shadow: var(--shadow-sm);
  padding: 2rem;
}

.report-card .form-control {
  background: #f6f7f9;
}

.report-card select.form-control {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #101a2e 50%), linear-gradient(135deg, #101a2e 50%, transparent 50%);
  background-position: calc(100% - 24px) calc(50% - 4px), calc(100% - 12px) calc(50% - 4px);
  background-size: 12px 12px, 12px 12px;
  background-repeat: no-repeat;
  padding-right: 3rem;
}

.report-submit-btn {
  border: 0;
  border-radius: 0.7rem;
  background: #091534;
  color: #fff;
  font-weight: 600;
  padding: 0.9rem 1.2rem;
  box-shadow: 0 8px 15px rgba(11, 23, 55, 0.23);
}

.report-submit-btn:hover {
  background: #06102a;
  color: #fff;
}

.join-band {
  background: radial-gradient(circle at left top, #0f245f 0%, #061238 68%);
  color: #d7e3ff;
}

.join-title {
  font-size: clamp(2rem, 3.1vw, 3rem);
  color: #fff;
  margin-bottom: 1rem;
}

.join-lead {
  font-size: 1.15rem;
  max-width: 36rem;
  margin-bottom: 2rem;
}

.join-contact-stack {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contact-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: rgba(96, 146, 255, 0.2);
  color: #5ea6ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-row small {
  letter-spacing: 0.08em;
  font-weight: 500;
  color: #9cb6e3;
}

.contact-row a {
  display: block;
  font-size: 2rem;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.contact-row p {
  margin: 0;
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
}

.eligibility-card {
  border: 1px solid #29467f;
  background: rgba(25, 47, 92, 0.45);
  border-radius: 0.9rem;
  padding: 1.5rem;
}

.eligibility-card h5 {
  color: #5ea6ff;
  margin-bottom: 0.65rem;
}

.eligibility-card p {
  color: #b7cbf0;
}

.join-form-card {
  background: #f2f3f5;
  border-radius: 1.2rem;
  border: 1px solid #d4dbe8;
  padding: 2.4rem;
  color: #22304b;
  box-shadow: var(--shadow-sm);
}

.form-label {
  color: #1f355f;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.45rem;
}

.form-control {
  border: 1px solid #cad4e4;
  background: #f5f6f8;
  border-radius: 0.7rem;
  padding: 0.85rem 0.95rem;
  color: #1d2d47;
}

.form-control::placeholder {
  color: #92a0b9;
}

.form-control:focus {
  box-shadow: 0 0 0 0.2rem rgba(47, 99, 221, 0.14);
  border-color: #8fb0f9;
  background: #fff;
}

.join-form-card .btn-primary-custom {
  border-radius: 0.7rem;
  font-size: 1.02rem;
}

.join-note {
  text-align: center;
  margin: 1rem 0 0;
  color: #94a1b7;
  font-size: 0.9rem;
}

.condo-footer {
  background: #eef1f5;
  color: #8090ac;
  padding: 2rem 0;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a {
  color: #4a5f82;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-copy {
  margin: 0;
  color: #8697b5;
}

.footer-line {
  height: 1px;
  background: #d8dfeb;
  margin: 1.25rem 0;
}

.footer-disclaimer {
  margin: 0 auto;
  max-width: 54rem;
  text-align: center;
  color: #9ba9c3;
  font-style: italic;
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

.delay-100 {
  animation-delay: 0.1s;
}

.delay-200 {
  animation-delay: 0.2s;
}

.delay-300 {
  animation-delay: 0.3s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Landing page card interactions */
.stand-card,
.doc-card {
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background-color 0.24s ease;
}

.stand-card:hover,
.stand-card:focus-within {
  transform: translateY(-6px);
  border-color: #b7c7e6;
  box-shadow: 0 16px 34px rgba(14, 29, 63, 0.14);
}

.stand-card .icon-box {
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.stand-card:hover .icon-box,
.stand-card:focus-within .icon-box {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 12px 22px rgba(47, 99, 221, 0.24);
}

.doc-card:hover,
.doc-card:focus-within {
  transform: translateY(-5px);
  background: #ffffff;
  border-color: #b9c9e8;
  box-shadow: 0 14px 30px rgba(15, 30, 64, 0.12);
}

.doc-card .doc-icon,
.doc-card .doc-meta a,
.doc-card .doc-meta a i {
  transition: transform 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.doc-card:hover .doc-icon,
.doc-card:focus-within .doc-icon {
  background: #cfe0fb;
  transform: translateY(-1px);
}

.doc-card:hover .doc-meta a,
.doc-card:focus-within .doc-meta a {
  color: #1f4fbd;
}

.doc-card:hover .doc-meta a i,
.doc-card:focus-within .doc-meta a i {
  transform: translateY(1px);
}

@media (prefers-reduced-motion: reduce) {
  .stand-card,
  .doc-card,
  .stand-card .icon-box,
  .doc-card .doc-icon,
  .doc-card .doc-meta a,
  .doc-card .doc-meta a i {
    transition: none;
  }

  .stand-card:hover,
  .stand-card:focus-within,
  .doc-card:hover,
  .doc-card:focus-within,
  .stand-card:hover .icon-box,
  .stand-card:focus-within .icon-box,
  .doc-card:hover .doc-icon,
  .doc-card:focus-within .doc-icon,
  .doc-card:hover .doc-meta a i,
  .doc-card:focus-within .doc-meta a i {
    transform: none;
  }
}
@media (max-width: 991.98px) {
  .condo-navbar .nav-link {
    margin-left: 0;
    margin-top: 0.5rem;
  }

  .condo-navbar .nav-link.nav-join-btn {
    display: inline-block;
    margin-left: 0;
    margin-top: 0.75rem;
  }

  .section {
    padding: 4.4rem 0;
  }

  .hero-photo-frame {
    margin: 1rem auto 0;
  }

  .hero-photo {
    height: 24rem;
  }

  .hero-title {
    max-width: none;
  }

  .mission-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .mission-heading {
    max-width: 14ch;
  }

  .mission-copy {
    max-width: none;
    font-size: 1.07rem;
  }

  .mission-video-card video {
    height: 18rem;
  }

  .mission-gallery-card {
    min-height: 20rem;
  }

  .contact-row a,
  .contact-row p {
    font-size: 1.35rem;
  }

  .join-form-card {
    padding: 1.5rem;
  }

  .report-card {
    padding: 1.4rem;
  }

  .report-page-shell {
    padding-top: 7.4rem;
  }

  .documents-band {
    height: 4.2rem;
  }

  .footer-top {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .mission-heading {
    max-width: none;
  }

  .mission-video-wrapper,
  .mission-gallery-card {
    min-height: 14rem;
    height: auto;
  }

  .mission-pillar {
    gap: 0.75rem;
  }

  .mission-pillar-icon {
    width: 2.6rem;
    height: 2.6rem;
  }

  .mission-gallery-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }

  .mission-quote-card {
    padding: 1.35rem 1.15rem;
  }

  .hero-pill {
    font-size: 0.82rem;
    padding: 0.45rem 0.85rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-address-chip {
    padding: 0.7rem 0.8rem;
  }

  .hero-address-chip strong,
  .hero-address-chip span {
    font-size: 0.88rem;
  }
}
