/* ============================================================
   LIONS DISTRICT 317A — LCI-STYLE REDESIGN 2026
   Inspired by lionsclubs.org: White, Bold, Editorial
   ============================================================ */

/* ── TOKENS ── */
:root {
  --navy: #003087;
  --navy-dark: #001f5b;
  --navy-light: #1a4db5;
  --gold: #f5a800;
  --gold-dark: #d48f00;
  --gold-light: #ffc82c;
  --white: #ffffff;
  --off-white: #f5f6f8;
  --gray-100: #f0f1f4;
  --gray-200: #e3e5ec;
  --gray-500: #8a92a8;
  --gray-700: #3d4460;
  --text: #1a1d2e;
  --text-muted: #5c6480;

  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 18px;
  --r-xl: 28px;
  --r-full: 9999px;

  --sh-sm: 0 1px 3px rgba(0, 0, 0, .06);
  --sh-md: 0 4px 16px rgba(0, 0, 0, .09);
  --sh-lg: 0 12px 40px rgba(0, 0, 0, .13);
  --sh-xl: 0 24px 64px rgba(0, 0, 0, .16);

  --ease: .3s cubic-bezier(.4, 0, .2, 1);

  --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;
  --font-heading: 'Quicksand', var(--font-body);
}

/* ── RESET ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

p {
  margin-bottom: 1em;
}

p:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
}

/* ── UTILITIES ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: 60px 0;
}

.section-pad-sm {
  padding: 40px 0;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
}

.eyebrow::before {
  content: '';
  width: 20px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  display: block;
  flex-shrink: 0;
}

.eyebrow--center {
  justify-content: center;
}

.eyebrow--light {
  color: rgba(255, 255, 255, .7);
}

.eyebrow--light::before {
  background: var(--gold);
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
}

.section-title span {
  color: var(--navy);
}

.section-title--white {
  color: #fff;
}

.section-title--white span {
  color: var(--gold);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.75;
}

.section-desc--center {
  margin: 0 auto;
  text-align: center;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .9rem;
  padding: 13px 28px;
  border-radius: var(--r-full);
  transition: all var(--ease);
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn i {
  font-size: .85rem;
  transition: transform var(--ease);
}

.btn:hover i {
  transform: translateX(3px);
}

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

.btn-navy:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 48, 135, .28);
}

.btn-gold {
  background: var(--gold);
  color: var(--text);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--text);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 168, 0, .36);
}

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

.btn-white:hover {
  background: var(--gold);
  color: var(--text);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline-navy:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .6);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, .12);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 9px 20px;
  font-size: .82rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}

/* ── TOPBAR ── */
.site-topbar {
  background: var(--navy-dark);
  padding: 8px 0;
  display: none;
  border-bottom: 3px solid var(--gold);
}

@media(min-width:992px) {
  .site-topbar {
    display: block;
  }
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar-dist {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topbar-dist img {
  height: 60px;
}

.topbar-dist-text .d1 {
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.topbar-dist-text .d2 {
  font-size: .8rem;
  color: var(--gold);
  font-weight: 600;
}

/* ── NAVBAR ── */
.site-navbar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: #fff;
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--ease);
  padding: 5px 0;
}

.site-navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, .1);
  border-bottom-color: transparent;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.navbar-logo img {
  height: 48px;
}

.navbar-logo {
  flex-shrink: 0;
}

.nav-menu {
  display: none;
  align-items: center;
  gap: 0;
}

@media(min-width:992px) {
  .nav-menu {
    display: flex;
  }
}

.nav-item {
  position: relative;
  z-index: 10;
}

.nav-link-item {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 14px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text);
  border-radius: var(--r-sm);
  transition: color var(--ease), background var(--ease);
  white-space: nowrap;
}

.nav-link-item:hover {
  color: var(--navy);
}

.nav-link-item .fa-chevron-down {
  font-size: .6rem;
  transition: transform var(--ease);
}

.nav-item:hover .nav-link-item .fa-chevron-down {
  transform: rotate(180deg);
}

/* Dropdown with bottom indicator */
.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 3px;
  background: var(--gold);
  z-index: 1;
  transition: left var(--ease), right var(--ease);
  pointer-events: none;
}

.nav-item:hover::after {
  left: 0;
  right: 0;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: -8px;
  min-width: 220px;
  background: #fff;
  border-radius: var(--r-md);
  box-shadow: var(--sh-xl);
  border-top: 3px solid var(--gold);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity var(--ease), transform var(--ease), visibility var(--ease);
  z-index: 500;
  padding: 8px 0;
  /* bridge the gap so mouse can move into dropdown */
  padding-top: 12px;
  margin-top: 0;
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all var(--ease);
}

.nav-dropdown a::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  flex-shrink: 0;
  transition: opacity var(--ease);
}

.nav-dropdown a:hover {
  color: var(--navy);
  background: var(--off-white);
}

.nav-dropdown a:hover::before {
  opacity: 1;
}

.nav-cta {
  display: none;
  gap: 8px;
  align-items: center;
}

@media(min-width:992px) {
  .nav-cta {
    display: flex;
  }
}

/* Hamburger */
.mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: var(--r-sm);
  background: var(--off-white);
}

@media(min-width:992px) {
  .mobile-toggle {
    display: none;
  }
}

.mobile-toggle span {
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--ease);
  display: block;
}

/* ── MOBILE DRAWER ── */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  z-index: 1900;
  opacity: 0;
  visibility: hidden;
  transition: all var(--ease);
}

.drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: min(300px, 88vw);
  height: 100vh;
  background: var(--navy-dark);
  z-index: 2000;
  transform: translateX(-100%);
  transition: transform .38s cubic-bezier(.4, 0, .2, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.mobile-drawer.open {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: var(--navy);
  border-bottom: 3px solid var(--gold);
}

.drawer-header img {
  height: 36px;
}

.drawer-close {
  width: 34px;
  height: 34px;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, .1);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1rem;
}

.drawer-close:hover {
  background: rgba(255, 255, 255, .2);
}

.drawer-nav {
  flex: 1;
  padding: 12px 0;
}

.drawer-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 20px;
  color: rgba(255, 255, 255, .85);
  font-weight: 600;
  font-size: .92rem;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  transition: all var(--ease);
}

.drawer-nav-link:hover {
  color: var(--gold);
  background: rgba(255, 255, 255, .04);
}

.drawer-submenu {
  display: none;
  background: rgba(0, 0, 0, .2);
}

.drawer-submenu.open {
  display: block;
}

.drawer-submenu a {
  display: block;
  padding: 10px 20px 10px 36px;
  color: rgba(255, 255, 255, .6);
  font-size: .85rem;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
  transition: all var(--ease);
}

.drawer-submenu a:hover {
  color: var(--gold);
}

.drawer-footer {
  padding: 16px 20px;
  display: flex;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.drawer-footer a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px;
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: .85rem;
  transition: all var(--ease);
}

.drawer-footer .df-join {
  background: rgba(255, 255, 255, .1);
  color: #fff;
}

.drawer-footer .df-join:hover {
  background: rgba(255, 255, 255, .18);
}

.drawer-footer .df-donate {
  background: var(--gold);
  color: var(--text);
}

.drawer-footer .df-donate:hover {
  background: var(--gold-dark);
}

/* ── HERO ── */
.lci-hero {
  position: relative;
  background: var(--navy-dark);
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.lci-hero__bg {
  position: absolute;
  inset: 0;
  background: url('../images/slider1.png') center/cover no-repeat;
  opacity: .18;
}

.lci-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, var(--navy-dark) 45%, rgba(0, 31, 91, .7) 75%, rgba(0, 48, 135, .3) 100%);
}

.lci-hero .container {
  position: relative;
  z-index: 2;
  padding-top: 60px;
  padding-bottom: 80px;
}

.lci-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media(min-width:960px) {
  .lci-hero__grid {
    grid-template-columns: 1fr 400px;
  }
}

.lci-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 168, 0, .15);
  border: 1px solid rgba(245, 168, 0, .35);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: var(--r-full);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.lci-hero__tag i {
  font-size: .65rem;
}

.lci-hero__title {
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 20px;
}

.lci-hero__title .gold {
  color: var(--gold);
}

.lci-hero__title .underline-gold {
  position: relative;
  display: inline-block;
}

.lci-hero__title .underline-gold::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
}

.lci-hero__sub {
  font-size: clamp(.95rem, 1.8vw, 1.15rem);
  color: rgba(255, 255, 255, .72);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}

.lci-hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* DG Card */
.lci-hero__card {
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 20px;
  overflow: hidden;
}

.lci-hero__card-top {
  background: var(--gold);
  padding: 10px 20px;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--navy-dark);
  text-align: center;
}

.lci-hero__card-body {
  padding: 24px;
}

.lci-hero__card-profile {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.lci-hero__card-profile img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  flex-shrink: 0;
}

.lci-hero__card-profile .nm {
  font-size: .95rem;
  font-weight: 700;
  color: #fff;
}

.lci-hero__card-profile .rl {
  font-size: .72rem;
  color: var(--gold);
  font-weight: 600;
  margin-top: 3px;
}

.lci-hero__card-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.lci-hero__card-stat {
  background: rgba(255, 255, 255, .06);
  border-radius: 12px;
  padding: 14px 10px;
  text-align: center;
}

.lci-hero__card-stat .val {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  font-family: var(--font-heading);
  line-height: 1;
}

.lci-hero__card-stat .lbl {
  font-size: .65rem;
  color: rgba(255, 255, 255, .55);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 4px;
}

.lci-hero__card-cta {
  margin-top: 16px;
  display: flex;
  justify-content: center;
}

.lci-hero__card-cta a {
  width: 100%;
  justify-content: center;
}

/* Banner carousel override */
/* ── HERO SLIDER ── */
.hero-slider {
  position: relative;
  min-height: 88vh;
  background: var(--navy-dark, #001246);
  overflow: hidden;
}

@media(max-width:768px) {
  .hero-slider {
    min-height: 70vh;
  }
}

/* Prevent Owl Carousel from adding grey gaps between slides */
.hero-slider .owl-stage-outer,
.hero-slider .owl-stage,
.hero-slider .owl-item {
  height: 100%;
}

.hero-slider .owl-stage-outer {
  overflow: hidden;
}

.hero-slider .owl-item .item {
  height: 100%;
}

.hero-slide {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

@media(max-width:768px) {
  .hero-slide {
    min-height: 70vh;
  }
}

.hero-slide__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.owl-item.active .hero-slide__bg {
  transform: scale(1);
}

.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(0, 20, 70, .88) 0%, rgba(0, 31, 91, .65) 55%, rgba(0, 31, 91, .25) 100%);
}

.hero-slide__inner {
  position: relative;
  z-index: 2;
  padding-top: 60px;
  padding-bottom: 60px;
}

/* Standard slide layout */
.hero-slide__content {
  max-width: 640px;
}

.hero-slide__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 168, 0, .15);
  border: 1px solid rgba(245, 168, 0, .4);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: var(--r-full);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-slide__title {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 18px;
  font-family: var(--font-heading);
}

.hero-slide__title span {
  color: var(--gold);
}

.hero-slide__sub {
  font-size: clamp(.95rem, 1.8vw, 1.12rem);
  color: rgba(255, 255, 255, .75);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-slide__quote {
  font-size: clamp(.92rem, 1.6vw, 1.05rem);
  color: rgba(255, 255, 255, .78);
  line-height: 1.8;
  margin-bottom: 20px;
  border-left: 3px solid var(--gold);
  padding-left: 16px;
  max-width: 540px;
}

.hero-slide__quote strong {
  color: var(--gold-light);
}

.hero-slide__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Stats row inside slide */
.hero-slide__stats-row {
  display: flex;
  gap: 0;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.hero-slide__stat {
  text-align: center;
  padding: 14px 24px;
  border-right: 1px solid rgba(255, 255, 255, .15);
}

.hero-slide__stat:last-child {
  border-right: none;
}

.hero-slide__stat span {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  font-family: var(--font-heading);
  line-height: 1;
}

.hero-slide__stat {
  font-size: .72rem;
  color: rgba(255, 255, 255, .6);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* DG slide — two-column layout */
.hero-slide--dg .hero-slide__overlay {
  background: linear-gradient(100deg, rgba(0, 20, 70, .92) 0%, rgba(0, 31, 91, .7) 60%, rgba(0, 31, 91, .3) 100%);
}

.hero-slide__dg-content {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: center;
}

@media(max-width:900px) {
  .hero-slide__dg-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.hero-slide__dg-photo-wrap {
  position: relative;
  text-align: center;
  display: none;
}

@media(min-width:900px) {
  .hero-slide__dg-photo-wrap {
    display: block;
  }
}

.hero-slide__dg-photo {
  width: 240px;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  border: 4px solid var(--gold);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
  margin: 0 auto;
}

.hero-slide__dg-badge {
  display: inline-block;
  margin-top: 16px;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 6px 18px;
  border-radius: var(--r-full);
}

.hero-slide__dg-name {
  margin-bottom: 24px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.hero-slide__dg-name strong {
  display: block;
  font-size: 1rem;
  color: #fff;
  font-family: var(--font-heading);
}

.hero-slide__dg-name span {
  font-size: .8rem;
  color: var(--gold);
  font-weight: 600;
}

/* OWL nav/dots override for hero */
.hero-slider .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  pointer-events: none;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}

.hero-slider .owl-nav button {
  pointer-events: all;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15) !important;
  color: #fff !important;
  border: 2px solid rgba(255, 255, 255, .3) !important;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  line-height: 1;
  transition: all var(--ease);
}

.hero-slider .owl-nav button span {
  line-height: 1;
  display: block;
  margin-top: -2px;
}

.hero-slider .owl-nav button:hover {
  background: var(--gold) !important;
  color: var(--navy-dark) !important;
  border-color: var(--gold) !important;
}

.hero-slider .owl-dots {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  text-align: center;
}

.hero-slider .owl-dot span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .35) !important;
  margin: 0 4px;
  transition: all var(--ease);
}

.hero-slider .owl-dot.active span {
  background: var(--gold) !important;
  width: 28px;
  border-radius: 5px;
}

/* Legacy banner (if DB banners exist) */
.home-banner {
  position: relative;
}

.hm-ban-img {
  width: 100%;
  height: clamp(300px, 55vw, 640px);
  object-fit: cover;
  display: block;
}

/* ── TICKER ── */
.site-ticker {
  background: var(--navy);
  border-top: 3px solid var(--gold);
}

.site-ticker__inner {
  display: flex;
  align-items: stretch;
  min-height: 50px;
}

.site-ticker__badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 0 24px;
  flex-shrink: 0;
  white-space: nowrap;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 50%, calc(100% - 14px) 100%, 0 100%);
}

.site-ticker__track {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.notification_styl {
  font-size: .84rem;
  color: rgba(255, 255, 255, .88);
  font-weight: 400;
  margin: 0;
  white-space: nowrap;
}

/* ── ABOUT/DG SECTION ── */
.about-section {
  background: var(--off-white);
}

.about-card {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 40px 36px;
  box-shadow: var(--sh-md);
  height: 100%;
  border-top: 4px solid var(--gold);
}

.about-video-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  background: #000;
  box-shadow: var(--sh-lg);
  position: relative;
  aspect-ratio: 16/9;
}

.about-video-wrap video,
.about-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.gov-photo {
  width: 100px;
  height: 120px;
  object-fit: cover;
  border-radius: var(--r-md);
  border: 3px solid var(--gold);
  flex-shrink: 0;
  box-shadow: var(--sh-sm);
}

/* ── STATS ── */
.stats-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  right: -120px;
  top: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(245, 168, 0, .06);
  pointer-events: none;
}

.stats-section::after {
  content: '';
  position: absolute;
  left: -80px;
  bottom: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .03);
  pointer-events: none;
}

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

@media(min-width:768px) {
  .stats-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.stat-card {
  padding: 36px 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .08);
  transition: background var(--ease);
}

.stat-card:hover {
  background: rgba(255, 255, 255, .04);
}

.stat-card:last-child {
  border-right: none;
}

.stat-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(245, 168, 0, .12);
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  font-size: 1.4rem;
  color: var(--gold);
}

.stat-card__num {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-card__label {
  font-size: .72rem;
  color: rgba(255, 255, 255, .55);
  text-transform: uppercase;
  letter-spacing: .1em;
}

/* ── EVENTS ── */
.events-section {
  background: #fff;
}

.event-card {
  display: flex;
  gap: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  margin-bottom: 12px;
  transition: all var(--ease);
  cursor: pointer;
}

.event-card:hover {
  box-shadow: var(--sh-md);
  border-color: var(--navy);
}

.event-card__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: #fff;
  padding: 16px 20px;
  min-width: 72px;
  flex-shrink: 0;
  text-align: center;
}

.event-card__date .day {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}

.event-card__date .mon {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gold);
  font-weight: 700;
}

.event-card__info {
  flex: 1;
  padding: 16px 20px;
}

.event-card__title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.event-card__meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.event-card__meta span {
  font-size: .78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.event-card__meta i {
  color: var(--navy);
}

.event-card__toggle {
  display: flex;
  align-items: center;
  padding: 0 20px;
  color: var(--navy);
}

.event-card__toggle i {
  transition: transform var(--ease);
}

.event-card.open .event-card__toggle i {
  transform: rotate(180deg);
}

.event-card__body {
  display: none;
  padding: 20px 24px;
  background: var(--off-white);
  border-top: 1px solid var(--gray-200);
}

.event-card__body.open {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.event-card__body img {
  width: 160px;
  border-radius: var(--r-md);
  object-fit: cover;
  flex-shrink: 0;
}

.event-card__body p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  min-width: 200px;
}

/* ── SLIDER ── */
.main-slider-section {
  display: block;
}

.main-slider-two__item {
  display: block;
}

.main-slider-two__bg {
  min-height: clamp(320px, 48vw, 600px);
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

.main-slider-two__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 31, 91, .82) 0%, rgba(0, 31, 91, .45) 55%, transparent 100%);
}

.slider_textsection {
  position: relative;
  z-index: 2;
  padding: 56px 64px;
  max-width: 560px;
}

@media(max-width:600px) {
  .slider_textsection {
    padding: 32px 24px;
  }
}

.slider_h3style {
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  color: #fff;
  font-weight: 800;
  margin-bottom: 10px;
}

.slider_pstyle {
  font-size: 1rem;
  color: rgba(255, 255, 255, .75);
  margin-bottom: 28px;
}

/* ── PROJECTS ── */
.projects-section {
  background: var(--off-white);
}

.project-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--r-lg);
  padding: 28px 24px;
  border: 1px solid var(--gray-200);
  height: 100%;
  transition: all var(--ease);
  position: relative;
  overflow: hidden;
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold);
}

.project-card:hover {
  box-shadow: var(--sh-lg);
  transform: translateY(-5px);
  border-color: transparent;
}

.project-card:hover::before {
  background: var(--navy);
}

.project-card__num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gray-200);
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 12px;
}

.project-card:hover .project-card__num {
  color: rgba(0, 48, 135, .15);
}

.project-card__title {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

.project-card__title strong {
  color: var(--text);
}

.project-card__arrow {
  position: absolute;
  top: 18px;
  right: 18px;
  color: var(--gray-200);
  font-size: .8rem;
  transition: all var(--ease);
}

.project-card:hover .project-card__arrow {
  color: var(--navy);
  transform: translate(3px, -3px);
}

/* ── CAUSES ── */
.causes-section {
  background: #fff;
}

.cause-card {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--sh-sm);
  transition: all var(--ease);
}

.cause-card:hover {
  box-shadow: var(--sh-lg);
  transform: translateY(-6px);
}

.cause-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.cause-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.cause-card:hover .cause-card__img {
  transform: scale(1.07);
}

.cause-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 4px 10px;
  border-radius: var(--r-full);
}

.cause-card__body {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cause-card__title {
  font-size: .92rem;
  font-weight: 700;
  color: var(--text);
}

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(105deg, var(--navy-dark) 0%, var(--navy) 60%, #1a4db5 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(245, 168, 0, .07);
  pointer-events: none;
}

.cta-band__title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: #fff;
  font-weight: 800;
  margin-bottom: 14px;
}

.cta-band__title span {
  color: var(--gold);
}

.cta-band__desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .72);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.cta-band__btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── GALLERY STRIP ── */
.gallery-strip {
  background: var(--navy-dark);
}

.events-gallery__item {
  overflow: hidden;
}

.events-gallery__image {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.events-gallery__image__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}

.events-gallery__item:hover .events-gallery__image__img {
  transform: scale(1.1);
}

.events-gallery__link {
  position: absolute;
  inset: 0;
  background: rgba(0, 31, 91, .72);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  opacity: 0;
  transition: opacity var(--ease);
  font-weight: 700;
  font-size: .85rem;
}

.events-gallery__item:hover .events-gallery__link {
  opacity: 1;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, .75);
  padding-top: 72px;
  border-top: 4px solid var(--gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

@media(min-width:576px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(min-width:992px) {
  .footer-grid {
    grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  }
}

.footer-brand__logo img {
  height: 46px;
  margin-bottom: 18px;
}

.footer-brand__desc {
  font-size: .88rem;
  line-height: 1.8;
  opacity: .68;
  margin-bottom: 22px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: .9rem;
  transition: all var(--ease);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--navy-dark);
  transform: translateY(-2px);
}

.visitor-box {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--r-md);
  padding: 10px 16px;
  margin-top: 20px;
}

.visitor-counter {
  display: flex;
  gap: 4px;
  align-items: center;
}

.visitor-digit {
  background: rgba(255, 255, 255, .12);
  color: var(--gold);
  font-weight: 800;
  font-size: 1rem;
  width: 26px;
  height: 30px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  flex-shrink: 0;
}

.visitor-counter__label {
  font-size: .72rem;
  color: rgba(255, 255, 255, .5);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-right: 4px;
}

.footer-col__title {
  font-size: .9rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  color: rgba(255, 255, 255, .62);
  font-size: .87rem;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  transition: all var(--ease);
}

.footer-links a::before {
  content: '›';
  color: var(--gold);
  font-size: 1.1rem;
  line-height: 1;
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 6px;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  padding: 8px 0;
  color: rgba(255, 255, 255, .65);
  font-size: .87rem;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  align-items: flex-start;
}

.footer-contact i {
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
  width: 14px;
}

.footer-contact a:hover {
  color: var(--gold);
}

.footer-map iframe {
  width: 100%;
  height: 170px;
  border-radius: var(--r-md);
  border: 2px solid rgba(255, 255, 255, .12);
}

.footer-bottom {
  margin-top: 56px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 0;
}

.footer-copyright {
  font-size: .82rem;
  color: rgba(255, 255, 255, .42);
}

.footer-credit {
  font-size: .82rem;
  color: rgba(255, 255, 255, .42);
}

.footer-credit span {
  color: var(--gold);
  font-weight: 700;
}

/* ── INNER PAGE HERO ── */
.page-hero {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
  background: linear-gradient(110deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/slider1.png') center/cover;
  opacity: .08;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: #fff;
  clip-path: ellipse(55% 100% at 50% 100%);
}

.page-hero .container {
  position: relative;
  z-index: 2;
  padding-top: 52px;
  padding-bottom: 64px;
}

.page-hero__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  font-weight: 800;
  margin-bottom: 12px;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.breadcrumb-nav a {
  color: rgba(255, 255, 255, .65);
  font-size: .84rem;
  transition: color var(--ease);
}

.breadcrumb-nav a:hover {
  color: var(--gold);
}

.breadcrumb-nav span,
.breadcrumb-nav .sep {
  color: rgba(255, 255, 255, .4);
  font-size: .84rem;
}

/* ── FORMS ── */
.form-section {
  background: var(--off-white);
}

.form-card {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 44px;
  box-shadow: var(--sh-md);
}

@media(max-width:600px) {
  .form-card {
    padding: 24px 18px;
  }
}

.form-label {
  font-size: .84rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  display: block;
}

.form-control {
  width: 100%;
  padding: 11px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-md);
  font-size: .9rem;
  font-family: var(--font-body);
  transition: border-color var(--ease), box-shadow var(--ease);
  background: #fff;
  color: var(--text);
}

.form-control:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(0, 48, 135, .1);
}

.form-group {
  margin-bottom: 18px;
}

.form-error {
  color: #dc3545;
  font-size: .78rem;
  margin-top: 4px;
}

/* ── CARDS / PROFILE ── */
.profile-card {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--sh-sm);
  transition: all var(--ease);
  margin-bottom: 30px;
}

.profile-card:hover {
  box-shadow: var(--sh-lg);
  transform: translateY(-5px);
}

.profile-card__img-wrap {
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--off-white);
}

.profile-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.profile-card:hover .profile-card__img {
  transform: scale(1.05);
}

.profile-card__body {
  padding: 16px;
  text-align: center;
  border-top: 3px solid var(--gold);
}

.profile-card__name {
  font-size: .9rem;
  font-weight: 700;
  color: var(--text);
}

.profile-card__role {
  font-size: .75rem;
  color: var(--navy);
  font-weight: 600;
  margin-top: 4px;
}

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media(min-width:576px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(min-width:992px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-item {
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 31, 91, .55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--ease);
  color: #fff;
  font-size: 1.5rem;
}

.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}

/* ── TABLE ── */
.modern-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
}

.modern-table th {
  background: var(--navy);
  color: #fff;
  padding: 12px 16px;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  text-align: left;
}

.modern-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-200);
  font-size: .87rem;
  color: var(--text-muted);
}

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

.modern-table tr:hover td {
  background: var(--off-white);
}

.modern-table tr:nth-child(even) td {
  background: #fafbff;
}

/* ── ACCORDION ── */
.accordion-button {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .92rem;
}

.accordion-button:not(.collapsed) {
  background: var(--navy);
  color: #fff;
  box-shadow: none;
}

.accordion-button:not(.collapsed)::after {
  filter: invert(1) brightness(2);
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md) !important;
  margin-bottom: 8px;
  overflow: hidden;
}

.accordion-body {
  font-size: .9rem;
  color: var(--text-muted);
  padding: 20px;
}

/* ── COMPACT FOOTER ── */
.cfoot {
  background: var(--navy-dark);
  border-top: 4px solid var(--gold);
  padding: 32px 0 0;
}

.cfoot__top {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 32px 40px;
  align-items: start;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
}

@media(max-width:1024px) {
  .cfoot__top {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:600px) {
  .cfoot__top {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Brand */
.cfoot__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cfoot__logo {
  height: 42px;
  flex-shrink: 0;
}

.cfoot__district {
  font-size: .9rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
}

.cfoot__tagline {
  font-size: .72rem;
  color: var(--gold);
  font-weight: 600;
  margin-top: 2px;
}

/* Links */
.cfoot__links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 0;
  flex-direction: column;
  max-height: 160px;
}

.cfoot__links a {
  font-size: .82rem;
  color: rgba(255, 255, 255, .6);
  padding: 3px 0;
  transition: color var(--ease);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  padding-right: 24px;
}

.cfoot__links a::before {
  content: '›';
  color: var(--gold);
}

.cfoot__links a:hover {
  color: var(--gold);
}

/* Contact */
.cfoot__contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cfoot__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .82rem;
  color: rgba(255, 255, 255, .62);
}

.cfoot__contact-item i {
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
  width: 13px;
}

.cfoot__contact-item a {
  color: rgba(255, 255, 255, .62);
  transition: color var(--ease);
}

.cfoot__contact-item a:hover {
  color: var(--gold);
}

/* Social + Visitors */
.cfoot__right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.cfoot__social {
  display: flex;
  gap: 8px;
}

.cfoot__social a {
  width: 34px;
  height: 34px;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: .85rem;
  transition: all var(--ease);
}

.cfoot__social a:hover {
  background: var(--gold);
  color: var(--navy-dark);
}

.cfoot__visitors {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cfoot__visitors-label {
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255, 255, 255, .4);
}

.cfoot__digits {
  display: flex;
  gap: 3px;
}

.cfoot__digit {
  width: 22px;
  height: 26px;
  border-radius: 4px;
  background: rgba(255, 255, 255, .1);
  color: var(--gold);
  font-weight: 800;
  font-size: .88rem;
  font-family: var(--font-heading);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Bottom bar */
.cfoot__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 0;
}

.cfoot__copy,
.cfoot__credit {
  font-size: .78rem;
  color: rgba(255, 255, 255, .38);
}

.cfoot__credit strong {
  color: var(--gold);
  font-weight: 700;
}

/* ── SCROLL TOP ── */
.scroll-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  border: none;
  font-size: 1rem;
  display: grid;
  place-items: center;
  box-shadow: var(--sh-lg);
  opacity: 0;
  visibility: hidden;
  transition: all var(--ease);
  cursor: pointer;
  text-decoration: none;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background: var(--gold);
  color: var(--navy-dark);
  transform: translateY(-4px);
}

/* ── HIDE OLD ELEMENTS ── */
.topbar-two.topbar-one,
.main-header-two,
.mobile-nav__wrapper,
.page-header {
  display: none !important;
}

.custom-cursor__cursor,
.custom-cursor__cursor-two {
  display: none;
}

/* ── RESPONSIVE ── */
@media(max-width:768px) {
  .section-pad {
    padding: 56px 0;
  }

  .about-card {
    padding: 24px 20px;
  }

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

  .stat-card {
    padding: 24px 12px;
  }
  .topbar-inner{
    justify-content: center;
  }

  .site-topbar{
    display: block !important;
  }

  .page-hero{
    min-height: auto;
  }

  .page-hero .container{
    padding-top: 52px;
    padding-bottom: 85px;
  }
}