/* assets/styles.css */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #1a1a1a;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: #1a1a1a;
}

h1 {
  font-size: 2.6rem;
  line-height: 1.1;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.75rem;
  position: relative;
  display: inline-block;
  padding-bottom: 0.75rem;
  margin-bottom: 1rem;
}

h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #ffd700 0%, rgba(255, 215, 0, 0.3) 100%);
  border-radius: 2px;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.05rem;
  color: #333;
}

.muted {
  color: #666;
}

.small {
  font-size: 0.875rem;
}

strong {
  color: #1a1a1a;
}

a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #ffd700;
}

/* ===== HEADER & NAVIGATION ===== */
.topbar {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(234, 234, 234, 0.8);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.topbar__inner {
  padding: 1rem 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.3s ease;
}

.brand:hover {
  transform: translateY(-1px);
}

.brand__mark {
  width: 50px;
  height: 50px;
  background: #ffffff;
  border-radius: 12px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #eaeaea;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand__title {
  font-weight: 700;
  font-size: 1.4rem;
  color: #1a1a1a;
}

.brand__subtitle {
  font-size: 0.8rem;
  color: #666;
  margin-top: 2px;
}

.nav {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  background: rgba(255, 249, 214, 0.1);
  padding: 0.5rem;
  border-radius: 12px;
  backdrop-filter: blur(5px);
}

.nav__link {
  padding: 0.6rem 1.2rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 215, 0, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.nav__link:hover::before {
  left: 100%;
}

.nav__link.is-active {
  background: linear-gradient(135deg, #ffd700 0%, #e6c200 100%);
  color: #1a1a1a;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.nav__link--btn {
  background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
  color: #ffffff;
  padding: 0.6rem 1.8rem;
  border-radius: 8px;
  font-weight: 600;
  border: 2px solid transparent;
}

.nav__link--btn:hover {
  background: transparent;
  border-color: #1a1a1a;
  color: #1a1a1a;
  transform: translateY(-2px);
}

/* Dropdown Menu Styles */
.nav__dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav__dropdown__toggle {
  position: relative;
  background: none;
  border: none;
  padding: 0.5rem 0;
  font-weight: 500;
  font-size: 1rem;
  font-family: inherit;
  cursor: pointer;
  color: #1a1a1a;
}

.nav__dropdown__toggle::after {
  content: "▼";
  margin-left: 0.5rem;
  font-size: 0.7rem;
  transition: transform 0.2s ease;
  display: inline-block;
}

.nav__dropdown__toggle[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

.nav__dropdown__toggle.is-active {
  color: #ffd700;
  font-weight: 600;
}

.nav__dropdown__toggle.is-active::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ffd700;
}

.nav__dropdown__menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 4px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  min-width: 180px;
  z-index: 100;
  margin-top: 0.5rem;
}

.nav__dropdown__menu.active {
  display: block;
}

.nav__dropdown__item {
  display: block;
  padding: 0.75rem 1.5rem;
  color: #1a1a1a;
  text-decoration: none;
  transition: background-color 0.2s ease;
  border: none;
  background: none;
  cursor: pointer;
  width: 100%;
  text-align: left;
  font-size: 0.95rem;
}

.nav__dropdown__item:hover {
  background-color: #fff9d6;
  color: #ffd700;
}

.nav__dropdown__item:first-child {
  border-radius: 3px 3px 0 0;
}

.nav__dropdown__item:last-child {
  border-radius: 0 0 3px 3px;
}

/* Mobile Dropdown Menu Styles */
.mobileNav__dropdown {
  width: 100%;
}

.mobileNav__dropdown__toggle {
  width: 100%;
  padding: 0.75rem 20px;
  border-bottom: 1px solid #f5f5f5;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  color: #1a1a1a;
  font-weight: 500;
  font-size: 1rem;
}

.mobileNav__dropdown__toggle::after {
  content: "▼";
  float: right;
  font-size: 0.7rem;
  transition: transform 0.2s ease;
  display: inline-block;
}

.mobileNav__dropdown__toggle[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

.mobileNav__dropdown__menu {
  display: none;
  background-color: #f9f9f9;
  border-left: 3px solid #ffd700;
}

.mobileNav__dropdown__menu:not([hidden]) {
  display: block;
}

.mobileNav__dropdown__item {
  display: block;
  padding: 0.75rem 20px;
  padding-left: 2rem;
  color: #1a1a1a;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: left;
  font-size: 0.95rem;
  transition: background-color 0.2s ease;
}

.mobileNav__dropdown__item:hover {
  background-color: #fff9d6;
  color: #ffd700;
}

.menuBtn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  color: #1a1a1a;
}

.nav {
  display: flex;
}

.mobileNav {
  display: none;
  position: fixed;
  top: 80px;
  left: 20px;
  right: 20px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.97);
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid rgba(234, 234, 234, 0.8);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  gap: 0.5rem;
  z-index: 1200;
}

.mobileNav a {
  padding: 0.85rem 1rem;
  border-radius: 10px;
  background: rgba(255, 249, 214, 0.2);
  border: 1px solid rgba(234, 234, 234, 0.8);
}

.mobileNav a:hover {
  background-color: #fff9d6;
}

.mobileNav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.5rem 1rem 1rem;
  border-bottom: 1px solid #eaeaea;
  margin-bottom: 0.5rem;
}

.mobileNav__brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.875rem 2rem;
  font-weight: 600;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  text-decoration: none;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s ease;
  z-index: 1;
}

.btn:hover::before {
  left: 100%;
}

.btn--primary,
.btn:not(.btn--ghost) {
  background: linear-gradient(135deg, #ffd700 0%, #e6c200 100%);
  color: #1a1a1a;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.btn--primary:hover,
.btn:not(.btn--ghost):hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
}

.btn--ghost {
  background: transparent;
  border: 2px solid #ffd700;
  color: #1a1a1a;
}

.btn--ghost:hover {
  background: #ffd700;
  transform: translateY(-3px);
}

/* ===== CARDS ===== */
.card {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(234, 234, 234, 0.8);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02), 0 10px 20px rgba(0, 0, 0, 0.05),
    0 20px 40px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08), 0 24px 48px rgba(0, 0, 0, 0.06),
    0 48px 96px rgba(0, 0, 0, 0.04);
  border-color: #ffd700;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ffd700, #ffed4e, #ffd700);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover::before {
  opacity: 1;
}

.card.pad {
  padding: 2rem;
}

.card__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #ffd700;
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(135deg, #ffffff 0%, #fefce8 50%, #fff9d6 100%);
  padding: 4.5rem 0;
  border-bottom: 1px solid #eaeaea;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path fill="%23ffd700" opacity="0.03" d="M45.2,-58.4C59.2,-48.8,71.3,-34.7,75.3,-18.5C79.2,-2.3,75,16,66.7,32.7C58.4,49.5,46.1,64.7,30.4,71.4C14.7,78.1,-4.4,76.4,-21.8,70.3C-39.2,64.3,-54.9,53.9,-64.1,39.3C-73.3,24.7,-75.9,5.8,-72.8,-12.3C-69.7,-30.4,-60.8,-47.8,-47.3,-57.6C-33.8,-67.4,-16.9,-69.6,-0.6,-68.9C15.7,-68.1,31.3,-64.4,45.2,-58.4Z" transform="translate(100 100)"/></svg>');
  background-size: cover;
  opacity: 0.3;
}

.hero__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.hero h1 {
  background: linear-gradient(135deg, #1a1a1a 0%, #444 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

.ctaRow {
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
}

.metaGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.chip {
  background-color: #fff9d6;
  border: 1px solid #ffd700;
  border-radius: 4px;
  padding: 0.75rem;
}

.chip__label {
  display: block;
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 0.25rem;
}

.chip__value {
  display: block;
  font-weight: 600;
  color: #1a1a1a;
}

.quickLinks {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quickLinks__item {
  padding: 1rem;
  border-radius: 6px;
  border: 1px solid #eaeaea;
  transition: all 0.2s ease;
}

.quickLinks__item:hover {
  background-color: #fff9d6;
  border-color: #ffd700;
}

.quickLinks__head {
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.25rem;
}

.quickLinks__sub {
  font-size: 0.875rem;
  color: #666;
}

/* ===== SECTIONS ===== */
.section {
  padding: 4rem 0;
}

.section__titleRow {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.banner {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 3rem;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 3rem 0;
}

.banner__kicker {
  color: #ffd700;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.875rem;
}

.banner__title {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.banner__text {
  color: #cccccc;
}

.banner .btn {
  background-color: #ffd700;
  color: #1a1a1a;
  white-space: nowrap;
}

/* ===== FEATURE CARDS ===== */
.cards3,
.cards2 {
  display: grid;
  gap: 2rem;
}

.cards3 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.cards2 {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.feature {
  padding: 2rem;
  border-radius: 16px;
  background: linear-gradient(145deg, #ffffff, #fafafa);
  border: 1px solid rgba(255, 215, 0, 0.1);
  position: relative;
  transition: all 0.3s ease;
}

.feature::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(145deg, #ffd700, rgba(255, 215, 0, 0));
  border-radius: 17px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature:hover::before {
  opacity: 0.3;
}

.feature__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #ffd700;
}

/* ===== PAGE LAYOUTS ===== */
.page {
  padding: 3rem 0;
}

.page__head {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #eaeaea;
}

.split {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 3rem;
}

.sideNav {
  position: sticky;
  top: 100px;
  align-self: start;
  background-color: #ffffff;
  border-radius: 8px;
  border: 1px solid #eaeaea;
  padding: 1.5rem;
}

.sideNav__title {
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #ffd700;
}

.sideNav a {
  display: block;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f5f5f5;
  color: #666;
}

.sideNav a:hover {
  color: #ffd700;
}

.contentGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.imageFrame {
  border: 1px solid #eaeaea;
  border-radius: 12px;
  background: #ffffff;
  padding: 0.75rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.responsive-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

/* ===== LISTS ===== */
.bullets {
  list-style: none;
}

.bullets li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem;
}

.bullets li::before {
  content: "•";
  color: #ffd700;
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -2px;
}

/* ===== ACCORDION ===== */
.accordionGrid {
  display: grid;
  gap: 1rem;
}

.accordion {
  border: 1px solid #eaeaea;
  border-radius: 6px;
  overflow: hidden;
}

.accordion summary {
  padding: 1.5rem;
  font-weight: 600;
  cursor: pointer;
  color: #1a1a1a;
  list-style: none;
  position: relative;
}

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

.accordion summary::after {
  content: "+";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: #ffd700;
}

.accordion[open] summary::after {
  content: "−";
}

.accordion__body {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid #eaeaea;
}

/* ===== TIMELINE ===== */
.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 2px;
  background-color: #ffd700;
}

.timeline__item {
  position: relative;
  padding-bottom: 2rem;
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__item::before {
  content: "";
  position: absolute;
  left: -2.5rem;
  top: 0;
  width: 12px;
  height: 12px;
  background-color: #ffd700;
  border-radius: 50%;
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 3px #ffd700;
}

.timeline__title {
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

/* ===== GALLERY ===== */
.galleryGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.galleryCard {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #eaeaea;
  transition: all 0.2s ease;
}

.galleryCard:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: #ffd700;
}

.galleryCard img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.galleryCard:hover img {
  transform: scale(1.05);
}

.galleryCard figcaption {
  padding: 1rem;
  font-size: 0.875rem;
}

/* Gallery Collection Cards */
.galleryCollectionCard {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #eaeaea;
  transition: all 0.3s ease;
  cursor: pointer;
}

.galleryCollectionCard:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  border-color: #ffd700;
}

.galleryCollectionCard__image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.galleryCollectionCard__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.galleryCollectionCard:hover .galleryCollectionCard__image img {
  transform: scale(1.08);
}

.galleryCollectionCard__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: #ffffff;
  transition: background 0.3s ease;
}

.galleryCollectionCard:hover .galleryCollectionCard__overlay {
  background: linear-gradient(180deg, rgba(255, 215, 0, 0.3) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.galleryCollectionCard__label {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.galleryCollectionCard__count {
  font-size: 0.875rem;
  color: #ffff99;
}

.galleryCollectionCard figcaption {
  padding: 1rem;
  font-size: 0.875rem;
  background-color: #f9f9f9;
}

/* Lightbox Gallery */
.lightboxGallery {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.lightboxGallery[hidden] {
  display: none;
}

.lightboxGallery__close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 2.5rem;
  cursor: pointer;
  transition: color 0.2s ease;
  padding: 0;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightboxGallery__close:hover {
  color: #ffd700;
}

.lightboxGallery__prev,
.lightboxGallery__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 215, 0, 0.2);
  border: 2px solid #ffd700;
  color: #ffd700;
  font-size: 1.5rem;
  cursor: pointer;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.lightboxGallery__prev:hover,
.lightboxGallery__next:hover {
  background: #ffd700;
  color: #1a1a1a;
}

.lightboxGallery__prev {
  left: 1rem;
}

.lightboxGallery__next {
  right: 1rem;
}

.lightboxGallery__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 90%;
  max-height: 90%;
}

.lightboxGallery__image {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightboxGallery__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: #ffffff;
  text-align: center;
  width: 100%;
}

.lightboxGallery__caption {
  font-size: 1rem;
  max-width: 800px;
  color: #e0e0e0;
}

.lightboxGallery__counter {
  font-size: 0.875rem;
  color: #ffd700;
  font-weight: 600;
}

/* ===== FORM ===== */
.form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

label span {
  font-weight: 600;
  color: #1a1a1a;
}

input,
select,
textarea {
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #ffd700;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.kv {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.kv > div {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f0f0f0;
  flex-wrap: wrap;
}

/* ===== DIAGRAM ===== */
.diagramGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.diagramBox {
  background-color: #fff9d6;
  border: 1px solid #ffd700;
  border-radius: 6px;
  padding: 1.5rem;
  text-align: center;
}

.diagramBox__title {
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.flowBar {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 1.5rem;
  border-radius: 6px;
  text-align: center;
  margin-top: 2rem;
}

.flowBar__main {
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.flowBar__sub {
  color: #cccccc;
  font-size: 0.875rem;
}

/* ===== PAGER ===== */
.pager {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #eaeaea;
}

.pager--end {
  justify-content: flex-end;
}

.pager__prev,
.pager__next {
  padding: 0.75rem 1.5rem;
  border: 1px solid #eaeaea;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.pager__prev:hover,
.pager__next:hover {
  border-color: #ffd700;
  background-color: #fff9d6;
}

/* ===== FOOTER ===== */
.footer {
  background-color: #1a1a1a;
  color: #ffffff;
  margin-top: auto;
  padding: 3rem 0 1.5rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer__brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 0.5rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__links a {
  color: #cccccc;
}

.footer__links a:hover {
  color: #ffd700;
}

.footer__copy {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid #333;
  color: #999;
}

/* ===== UTILITIES ===== */
.mt {
  margin-top: 2rem;
}

.mb {
  margin-bottom: 1.5rem;
}

/* ===== TABLE STYLING ===== */
.table-wrap {
  border-radius: 16px;
  border: 1px solid rgba(234, 234, 234, 0.8);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(5px);
  overflow: hidden;
  margin: 1.5rem 0;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  --table-accent: rgba(255, 215, 0, 0.05);
}

.data-table th {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: left;
  padding: 1.25rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 10;
}

.data-table td {
  padding: 1.25rem;
  border-bottom: 1px solid rgba(234, 234, 234, 0.5);
  vertical-align: top;
}

.data-table tbody tr {
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(234, 234, 234, 0.5);
}

.data-table tbody tr:hover {
  background: rgba(255, 249, 214, 0.3);
  transform: translateX(4px);
}

.data-table tbody tr:last-child td {
  border-bottom: none;
}

.data-table td:first-child {
  font-weight: 700;
  color: #1a1a1a;
  background: rgba(255, 215, 0, 0.1);
  text-align: center;
  font-feature-settings: "tnum";
}

/* ===== MICRO INTERACTIONS & UTILITIES ===== */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 249, 214, 0.1);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #ffd700, #e6c200);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, #ffed4e, #ffd700);
}

:focus-visible {
  outline: 3px solid rgba(255, 215, 0, 0.5);
  outline-offset: 2px;
  border-radius: 4px;
}

.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  border-radius: 8px;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #1a1a1a;
}

/* Page header improvements */
.page__head {
  background: linear-gradient(135deg, #fff9d6 0%, #ffffff 100%);
  padding: 2.5rem;
  border-radius: 12px;
  margin-bottom: 3rem;
  border: 1px solid #ffd700;
  position: relative;
  overflow: hidden;
}

.page__head::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="%23ffd700" opacity="0.1" d="M50 0l12 38h38l-30 22 12 38-32-24-32 24 12-38L0 38h38z"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
}

.page__head h1 {
  color: #1a1a1a;
  font-size: 2.75rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.page__head .muted {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
  position: relative;
  z-index: 1;
}

/* Card improvements for stakeholder page */
.card.pad {
  position: relative;
  overflow: hidden;
}

#description {
  border-left: 4px solid #ffd700;
}

#description p.muted {
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

/* Section headers with icons */
#engagement-activities h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1a1a1a;
}

#engagement-activities h2::before {
  content: "📋";
  font-size: 1.5rem;
}

#description h2::before {
  content: "📝";
  font-size: 1.5rem;
  margin-right: 0;
}

/* Table stats styling */
.table-stats {
  background: linear-gradient(135deg, #fff9d6 0%, #fff3b3 100%);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #ffd700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.table-stats p {
  margin: 0;
  color: #1a1a1a;
  font-weight: 500;
  font-size: 1rem;
}

/* Last card with gallery link */
.card.pad:last-child {
  background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
  border: 2px dashed #e0e0e0;
  text-align: center;
  padding: 2rem;
}

.card.pad:last-child .muted {
  color: #1a1a1a;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.card.pad:last-child a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.75rem 1.5rem;
  background: #ffd700;
  color: #1a1a1a;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.card.pad:last-child a:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 992px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }

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

  .sideNav {
    position: static;
  }

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

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .menuBtn {
    display: block;
  }

  .mobileNav[hidden] {
    display: none;
  }

  .mobileNav:not([hidden]) {
    display: flex;
  }

  .ctaRow {
    flex-direction: column;
  }

  .cards3,
  .cards2 {
    grid-template-columns: 1fr;
  }

  .galleryGrid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .banner {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .page__head h1 {
    font-size: 2rem;
  }

  .page__head {
    padding: 1.5rem;
  }

  .page__head .muted {
    font-size: 1rem;
  }

  .data-table {
    font-size: 0.875rem;
  }

  .data-table th,
  .data-table td {
    padding: 0.875rem;
  }

  .data-table,
  .data-table thead,
  .data-table tbody,
  .data-table th,
  .data-table td,
  .data-table tr {
    display: block;
  }

  .data-table thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  .data-table tr {
    border: 1px solid #eaeaea;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    background-color: #ffffff;
  }

  .data-table tbody tr:nth-child(even) {
    background-color: #ffffff;
  }

  .data-table td {
    border: none;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 50%;
    text-align: right;
  }

  .data-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 0;
    width: 45%;
    padding-left: 1rem;
    font-weight: 600;
    text-align: left;
    background: #f9f9f9;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
  }

  .data-table td:first-child {
    width: auto;
    background: none;
    text-align: right;
  }

  .data-table td:nth-child(3) {
    background-color: #f0fff0;
  }

  /* Lightbox adjustments for tablet */
  .lightboxGallery__prev,
  .lightboxGallery__next {
    width: 3rem;
    height: 3rem;
    font-size: 1.2rem;
  }

  .lightboxGallery__prev {
    left: 0.5rem;
  }

  .lightboxGallery__next {
    right: 0.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

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

  .pager {
    flex-direction: column;
    gap: 1rem;
  }

  /* Lightbox adjustments for mobile */
  .lightboxGallery {
    padding: 1rem;
  }

  .lightboxGallery__close {
    top: 0.5rem;
    right: 0.5rem;
    font-size: 2rem;
    width: 2.5rem;
    height: 2.5rem;
  }

  .lightboxGallery__prev,
  .lightboxGallery__next {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1rem;
  }

  .lightboxGallery__image {
    max-height: 60vh;
  }

  .lightboxGallery__caption {
    font-size: 0.875rem;
  }
}

img {
  content-visibility: auto;
}

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

/* ===== PRINT STYLES ===== */
@media print {
  .topbar,
  .footer,
  .menuBtn,
  .card.pad:last-child {
    display: none;
  }

  .data-table {
    border: 1px solid #000;
  }

  .data-table th {
    background-color: #f0f0f0;
    color: #000;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .card {
    box-shadow: none;
    border: 1px solid #ddd;
  }

  .page__head {
    border: 1px solid #ddd;
  }
}
