/* ════════════════════════════════════════
   ROOT & RESET
════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #0b1f3a;
  --navy-mid: #132d52;
  --teal: #0f7ea3;
  --teal-dark: #0a6385;
  --teal-light: #e8f5fb;
  --teal-xlight: #f0f9fd;
  --gold: #c49b3c;
  --gold-light: #fdf6e7;
  --gold-pale: #fffbf2;
  --tp: #0b1f3a;
  --ts: #3d5169;
  --tm: #6b84a0;
  --bl: rgba(11, 31, 58, .08);
  --bm: rgba(11, 31, 58, .14);
  --white: #ffffff;
  --surf: #f7f9fc;
  --surf2: #edf1f6;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(11, 31, 58, .06);
  --shadow-md: 0 6px 24px rgba(11, 31, 58, .10);
  --shadow-lg: 0 16px 48px rgba(11, 31, 58, .14);
  --trans: all .22s ease;
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--white);
  color: var(--tp);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit
}

img {
  max-width: 100%;
  display: block
}


/* ════════════════════════════════════════
   TOPBAR
════════════════════════════════════════ */
.topbar {
  background: var(--navy);
  padding: 8px 0;
  font-size: 12px;
}

.topbar a {
  color: rgba(255, 255, 255, .55);
  transition: color .2s
}

.topbar a:hover {
  color: rgba(255, 255, 255, .9)
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, .55);
  font-size: 12px;
}

.contact-item svg {
  opacity: .6
}

.topbar-links {
  display: flex;
  align-items: center
}

.topbar-links a {
  padding: 0 12px;
  border-right: 1px solid rgba(255, 255, 255, .1);
  font-size: 11.5px;
  letter-spacing: .02em;
}

.topbar-links a:last-child {
  border-right: none;
  padding-right: 0
}

.lang-btn {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--gold);
  border: 1px solid rgba(196, 155, 60, .35);
  border-radius: 4px;
  padding: 3px 10px;
  background: rgba(196, 155, 60, .08);
  cursor: pointer;
  transition: var(--trans);
  white-space: nowrap;
}

.lang-btn:hover {
  background: rgba(196, 155, 60, .18);
  border-color: rgba(196, 155, 60, .6)
}


/* ════════════════════════════════════════
   HEADER
════════════════════════════════════════ */
.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(13, 110, 253, 0.08),
      transparent);
  animation: shine 6s infinite linear;
}

@keyframes shine {
  0% {
    left: -60%;
  }

  100% {
    left: 120%;
  }
}

.site-header {
  background: var(--white);
  padding: 16px 0;
  border-bottom: 1px solid var(--bl);
  position: relative;
}

.site-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal) 0%, var(--gold) 50%, var(--teal) 100%);
  opacity: .35;
}

/* .site-header .container>div {
  position: relative;
}

.site-header .container>div::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.6;
} */

.tz-ribbon {
  height: 4px;
  background: linear-gradient(90deg,
      #00a3dd 0%,
      #1b5e20 33%,
      #fcd116 66%,
      #000000 100%);
}

.brand-meta {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--tm);
  font-weight: 500;
  line-height: 1.6;
}

.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 3.5vw, 1.85rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .01em;
  line-height: 1.1;
  margin-top: 2px;
}

.brand-name span {
  color: var(--teal)
}

.coat-arms,
.seal-circle {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 50%;
  border: 1.5px solid var(--bl);
  background: var(--surf);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}


/* ════════════════════════════════════════
   NAV  —  FIXED
   Your HTML structure inside .nav-bar is:
     .nav-home-btn | .nav-d-links | .nav-casehub | .nav-srch | .ham-btn
   There is NO .nav-desktop wrapper, so every
   responsive rule must target the real classes.
════════════════════════════════════════ */
.site-nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow .3s;
}

.site-nav.scrolled {
  box-shadow: 0 4px 24px rgba(11, 31, 58, .32)
}

.nav-bar {
  display: flex;
  align-items: center;
  min-height: 52px;
}

.nav-home-btn {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal);
  color: #fff;
  flex-shrink: 0;
  transition: background .2s;
  border: none;
  cursor: pointer;
}

.nav-home-btn:hover {
  background: var(--teal-dark)
}

/* ── Desktop links: HIDDEN on mobile (default) ── */
.nav-d-links {
  display: none;
  /* mobile-first: off */
  align-items: center;
  flex: 1;
  min-width: 0;
}

/* ── Case hub: HIDDEN on mobile (default) ── */
.nav-casehub {
  display: none;
  /* mobile-first: off */
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--gold);
  padding: 16px 18px;
  border-left: 1px solid rgba(255, 255, 255, .08);
  white-space: nowrap;
  transition: background .2s;
  cursor: pointer;
  flex-shrink: 0;
  letter-spacing: .02em;
}

.nav-casehub:hover {
  background: rgba(196, 155, 60, .1)
}

/* ── Search icon: always visible, pushes right on mobile ── */
.nav-srch {
  width: 48px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  /* fill space left by hidden nav-d-links */
  color: rgba(255, 255, 255, .55);
  cursor: pointer;
  transition: color .2s;
  border: none;
  background: none;
  flex-shrink: 0;
}

.nav-srch:hover {
  color: #fff
}

/* ── Hamburger: VISIBLE on mobile (default) ── */
.ham-btn {
  display: flex;
  /* mobile-first: on */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius-sm);
  cursor: pointer;
  margin-right: 8px;
  flex-shrink: 0;
  transition: border-color .2s;
}

.ham-btn:hover {
  border-color: rgba(255, 255, 255, .35)
}

.ham-bar {
  width: 20px;
  height: 1.5px;
  background: rgba(255, 255, 255, .8);
  border-radius: 2px;
  transition: transform .28s ease, opacity .2s;
}

.ham-btn.is-open .ham-bar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg)
}

.ham-btn.is-open .ham-bar:nth-child(2) {
  opacity: 0
}

.ham-btn.is-open .ham-bar:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg)
}

/* ── Desktop breakpoint: flip everything ── */
@media (min-width: 992px) {
  .nav-d-links {
    display: flex
  }

  /* show desktop nav */
  .nav-casehub {
    display: flex
  }

  /* show case hub   */
  .ham-btn {
    display: none
  }

  /* hide hamburger  */
  .nav-srch {
    margin-left: 0
  }

  /* nav-d-links is flex:1, pushes naturally */
}

/* ── Individual nav items ── */
.ndi {
  position: relative
}

.ndl {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .02em;
  color: rgba(255, 255, 255, .78);
  padding: 16px 14px;
  white-space: nowrap;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: color .2s, background .2s;
  position: relative;
}

.ndl::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .22s ease;
  border-radius: 2px;
}

.ndl:hover,
.ndl.is-active {
  color: #fff
}

.ndl:hover::after,
.ndi.is-open>.ndl::after {
  transform: scaleX(1)
}

.ndl .chv {
  font-size: 9px;
  opacity: .45;
  display: inline-block;
  transition: transform .22s;
}

.ndi.is-open>.ndl .chv {
  transform: rotate(180deg)
}

/* ── Desktop dropdown panel ── */
.ndd {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--bl);
  border-top: 2px solid var(--teal);
  border-radius: 0 var(--radius-md) var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .18s, transform .18s, visibility .18s;
  z-index: 2000;
  overflow: hidden;
}

.ndi.is-open>.ndd {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Hover-open on desktop only */
@media (min-width: 992px) {
  .ndi:hover>.ndd {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* Block dropdown from appearing on mobile (JS may still add is-open) */
@media (max-width: 991.98px) {
  .ndd {
    display: none !important
  }
}

.ndd a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ts);
  padding: 10px 16px;
  border-bottom: 1px solid var(--bl);
  transition: background .15s, color .15s, padding-left .15s;
}

.ndd a:last-child {
  border-bottom: none
}

.ndd a:hover {
  background: var(--teal-xlight);
  color: var(--teal);
  padding-left: 22px
}

.ndd a::before {
  content: '›';
  color: var(--teal);
  font-size: 15px;
  flex-shrink: 0
}


/* ════════════════════════════════════════
   MOBILE MENU
════════════════════════════════════════ */
.mob-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .38s ease;
  background: #0d2442;
  border-top: 1px solid rgba(255, 255, 255, .06);
  width: 100%;
}

.mob-menu.is-open {
  max-height: 1400px
}

.mob-sec-label {
  font-size: 9.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .28);
  padding: 12px 18px 4px;
  font-weight: 500;
}

.mob-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: rgba(255, 255, 255, .72);
  padding: 13px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  cursor: pointer;
  transition: background .15s;
  user-select: none;
}

.mob-item:hover {
  background: rgba(255, 255, 255, .04);
  color: #fff
}

.mob-item .mchv {
  font-size: 11px;
  opacity: .4;
  transition: transform .22s;
  flex-shrink: 0;
}

.mob-item.is-open .mchv {
  transform: rotate(180deg)
}

.mob-sub {
  display: none;
  background: rgba(0, 0, 0, .18)
}

.mob-sub.is-open {
  display: block
}

.mob-sub a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, .52);
  padding: 10px 18px 10px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
  transition: color .15s, background .15s;
}

.mob-sub a::before {
  content: '›';
  color: var(--gold);
  font-size: 14px;
  flex-shrink: 0
}

.mob-sub a:hover {
  color: #fff;
  background: rgba(255, 255, 255, .03)
}

.mob-plain-link {
  display: block;
  padding: 13px 18px;
  font-size: 14px;
  color: rgba(255, 255, 255, .72);
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  transition: background .15s, color .15s;
}

.mob-plain-link:hover {
  background: rgba(255, 255, 255, .04);
  color: #fff
}

.mob-casehub {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--gold);
  padding: 14px 18px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}


/* ════════════════════════════════════════
   SEARCH OVERLAY
════════════════════════════════════════ */
.srch-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 31, 58, .97);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s, visibility .22s;
}

.srch-overlay.is-open {
  opacity: 1;
  visibility: visible
}

.srch-box {
  width: min(600px, 90vw)
}

.srch-lbl {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .38);
  display: block;
  margin-bottom: 1.2rem;
}

.srch-row {
  display: flex;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255, 255, 255, .06);
}

.srch-row input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 15px 18px;
  font-size: 17px;
  color: #fff;
  font-family: inherit;
  min-width: 0;
}

.srch-row input::placeholder {
  color: rgba(255, 255, 255, .25)
}

.srch-row button {
  background: var(--teal);
  border: none;
  padding: 0 22px;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  font-family: inherit;
  transition: background .2s;
  white-space: nowrap;
  font-weight: 500;
  letter-spacing: .04em;
}

.srch-row button:hover {
  background: var(--teal-dark)
}

.srch-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .5);
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  transition: var(--trans);
  padding: 0;
}

.srch-close:hover {
  color: #fff;
  background: rgba(255, 255, 255, .15)
}


/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.hero-bg-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.hero-bg-svg svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .18
}

.hero-cnt {
  position: relative;
  z-index: 2;
  padding: 3.5rem 0
}

@media (min-width: 992px) {
  .hero-cnt {
    padding: 4.5rem 0
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1rem;
  background: rgba(196, 155, 60, .1);
  border: 1px solid rgba(196, 155, 60, .25);
  border-radius: 2rem;
  padding: 5px 14px;
}

.hero-eyebrow span {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  opacity: .8
}

.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4.8vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 1.3rem;
  letter-spacing: -.01em;
}

.hero-h1 em {
  color: var(--gold);
  font-style: normal
}

.hero-p {
  font-size: 15px;
  color: rgba(255, 255, 255, .58);
  line-height: 1.85;
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  border-radius: 2rem;
  padding: 12px 26px;
  transition: var(--trans);
  cursor: pointer;
  font-family: inherit;
  letter-spacing: .02em;
  border: none;
}

.hero-cta.primary {
  background: var(--gold);
  color: var(--navy)
}

.hero-cta.primary:hover {
  background: #d4a83e;
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(196, 155, 60, .35);
}

.hero-cta.outline {
  background: transparent;
  color: rgba(255, 255, 255, .78);
  border: 1px solid rgba(255, 255, 255, .22);
}

.hero-cta.outline:hover {
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border-color: rgba(255, 255, 255, .4);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.hs {
  padding-right: 2rem;
  border-right: 1px solid rgba(255, 255, 255, .1)
}

.hs:last-child {
  border-right: none;
  padding-right: 0
}

.hs-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1
}

.hs-lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, .42);
  margin-top: 4px;
  letter-spacing: .04em
}

/* Hero carousel */
.hero-carousel {
  position: relative;
  z-index: 2;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .03);
  box-shadow: 0 24px 64px rgba(0, 0, 0, .35);
}

.hc-track {
  display: flex;
  transition: transform .55s cubic-bezier(.4, 0, .2, 1)
}

.hc-slide {
  flex: 0 0 100%;
  position: relative;
  overflow: hidden
}

.hc-slide-inner {
  width: 100%;
  aspect-ratio: 16/10;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 1.75rem 1.8rem;
  position: relative;
}

.hc-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center
}

.hc-bg-1 {
  background: linear-gradient(160deg, rgba(15, 126, 163, .85) 0%, rgba(11, 31, 58, .97) 100%)
}

.hc-bg-2 {
  background: linear-gradient(160deg, rgba(10, 80, 55, .85) 0%, rgba(11, 31, 58, .97) 100%)
}

.hc-bg-3 {
  background: linear-gradient(160deg, rgba(140, 80, 20, .8) 0%, rgba(11, 31, 58, .97) 100%)
}

.hc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 31, 58, .92) 0%, rgba(11, 31, 58, .25) 55%, transparent 100%);
}

.hc-content {
  position: relative;
  z-index: 2
}

.hc-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--navy);
  padding: 4px 11px;
  border-radius: 2rem;
  margin-bottom: .65rem;
  display: inline-block;
}

.hc-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  margin-bottom: .4rem;
}

.hc-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, .52);
  margin-bottom: .65rem;
  line-height: 1.5
}

.hc-read {
  font-size: 12px;
  font-weight: 500;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap .15s;
}

.hc-read:hover {
  gap: 9px
}

.hc-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 1.1rem;
  background: rgba(11, 31, 58, .7);
  border-top: 1px solid rgba(255, 255, 255, .07);
  backdrop-filter: blur(4px);
}

.hc-dots {
  display: flex;
  gap: 5px;
  align-items: center
}

.hc-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .22);
  cursor: pointer;
  transition: background .2s, width .22s;
  border: none;
  padding: 0;
}

.hc-dot.active {
  width: 20px;
  border-radius: 10px;
  background: var(--gold)
}

.hc-arrows {
  display: flex;
  gap: .4rem
}

.hc-arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s;
  user-select: none;
}

.hc-arrow:hover {
  background: rgba(255, 255, 255, .2)
}

.hc-counter {
  font-size: 11px;
  color: rgba(255, 255, 255, .35);
  letter-spacing: .06em
}

.hc-progress {
  height: 2px;
  background: rgba(255, 255, 255, .08)
}

.hc-progress-fill {
  height: 100%;
  background: var(--gold);
  width: 0
}

.hc-progress-fill.running {
  width: 100%;
  transition: width 5s linear
}


/* ════════════════════════════════════════
   SHARED ATOMS
════════════════════════════════════════ */
.sep {
  height: 1px;
  background: var(--bl)
}

.ey {
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: .45rem;
}

.stitle {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.65rem, 3.8vw, 2.4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--tp);
  margin-bottom: 1rem;
}

.dline {
  width: 36px;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  border-radius: 2px;
  margin-bottom: 1.4rem;
}

.bt {
  font-size: 15px;
  color: var(--ts);
  line-height: 1.82
}

.llbl {
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--tm);
  font-weight: 600;
  margin-bottom: .9rem;
}

.pbtn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--navy);
  border: 1px solid var(--bm);
  border-radius: 2rem;
  padding: 10px 24px;
  background: transparent;
  cursor: pointer;
  transition: var(--trans);
  letter-spacing: .02em;
  font-family: inherit;
  white-space: nowrap;
}

.pbtn:hover {
  background: var(--teal-light);
  border-color: var(--teal);
  color: var(--teal)
}

.pbtn .a {
  transition: transform .18s;
  display: inline-block
}

.pbtn:hover .a {
  transform: translateX(4px)
}

.pbtn-g {
  color: var(--navy);
  background: var(--gold);
  border-color: var(--gold)
}

.pbtn-g:hover {
  background: #d4a83e;
  border-color: #d4a83e;
  color: var(--navy)
}

.sec {
  padding: 4rem 0
}

@media (min-width: 992px) {
  .sec {
    padding: 5.5rem 0
  }
}


/* ════════════════════════════════════════
   PAGE BANNER
════════════════════════════════════════ */
.page-banner {
  background: var(--navy);
  padding: 2.5rem 0;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .04;
  background-image: repeating-linear-gradient(45deg, #fff 0, #fff 1px, transparent 0, transparent 50%);
  background-size: 20px 20px;
  pointer-events: none;
}

.page-banner-inner {
  position: relative;
  z-index: 1
}

.page-banner-ey {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: .5rem;
}

.page-banner-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
  margin-bottom: .6rem;
}

.page-banner-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.7
}


/* ════════════════════════════════════════
   BREADCRUMB
════════════════════════════════════════ */
.breadcrumb-wrap {
  background: var(--white);
  border-bottom: 1px solid var(--bl);
  padding: .65rem 0;
}

.breadcrumb {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 12.5px;
}

.breadcrumb-item {
  color: var(--tm)
}

.breadcrumb-item a {
  color: var(--teal)
}

.breadcrumb-item a:hover {
  color: var(--navy)
}

.breadcrumb-item+.breadcrumb-item::before {
  content: '›';
  padding: 0 .5rem;
  color: var(--tm);
  opacity: .5;
}

.breadcrumb-item.active {
  color: var(--ts);
  font-weight: 500
}


/* ════════════════════════════════════════
   PAGE LAYOUT
════════════════════════════════════════ */
.page-layout {
  padding: 2.5rem 0 4rem
}

@media (min-width: 992px) {
  .page-layout {
    padding: 3rem 0 5rem
  }
}

.main-card {
  background: var(--white);
  border: 1px solid var(--bl);
  border-radius: 14px;
  padding: 2rem 2.25rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 575px) {
  .main-card {
    padding: 1.4rem 1.25rem
  }
}

/* ToC */
.toc {
  background: var(--teal-light);
  border: 1px solid var(--teal-light);
  border-radius: 11px;
  padding: 1.2rem 1.4rem;
  margin-bottom: 2rem;
}

.toc-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .8rem;
}

.toc ol {
  padding-left: 1.1rem;
  margin: 0
}

.toc li {
  font-size: 13.5px;
  color: var(--teal);
  margin-bottom: .35rem;
  line-height: 1.5
}

.toc a {
  color: var(--teal);
  transition: color .15s
}

.toc a:hover {
  color: var(--navy);
  text-decoration: underline
}

/* Content typography */
.content-section {
  margin-bottom: 2.5rem
}

.content-section:last-child {
  margin-bottom: 0
}

.cs-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 600;
  margin-right: .65rem;
  flex-shrink: 0;
}

.cs-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--tp);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.cs-body {
  font-size: 15px;
  color: var(--ts);
  line-height: 1.85
}

.cs-body p {
  margin-bottom: 1rem
}

.cs-body p:last-child {
  margin-bottom: 0
}

/* Step list */
.step-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0
}

.step-list li {
  display: flex;
  gap: .9rem;
  padding: .85rem 0;
  border-bottom: 1px solid var(--bl);
}

.step-list li:last-child {
  border-bottom: none
}

.step-num {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 12.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.step-text-head {
  font-size: 14px;
  font-weight: 500;
  color: var(--tp);
  margin-bottom: .2rem
}

.step-text-body {
  font-size: 13.5px;
  color: var(--ts);
  line-height: 1.7
}

/* Info / warning boxes */
.info-box {
  background: var(--teal-light);
  border: 1px solid var(--teal-light);
  border-left: 3px solid var(--teal);
  border-radius: 0 10px 10px 0;
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
  display: flex;
  gap: .85rem;
  align-items: flex-start;
}

.info-box-icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px
}

.info-box-text {
  font-size: 13.5px;
  color: var(--ts);
  line-height: 1.7
}

.info-box-text strong {
  color: var(--tp)
}

.warn-box {
  background: #fdf6e3;
  border: 1px solid #f0d878;
  border-left: 3px solid var(--gold);
  border-radius: 0 10px 10px 0;
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
  display: flex;
  gap: .85rem;
  align-items: flex-start;
}

.warn-box-icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px
}

.warn-box-text {
  font-size: 13.5px;
  color: #6b5800;
  line-height: 1.7
}

/* Fees table */
.fee-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2rem 0;
  font-size: 13.5px
}

.fee-table th {
  background: var(--navy);
  color: #fff;
  padding: .65rem 1rem;
  text-align: left;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .04em;
}

.fee-table th:first-child {
  border-radius: 8px 0 0 0
}

.fee-table th:last-child {
  border-radius: 0 8px 0 0
}

.fee-table td {
  padding: .65rem 1rem;
  border-bottom: 1px solid var(--bl);
  color: var(--ts)
}

.fee-table tr:last-child td {
  border-bottom: none
}

.fee-table tr:nth-child(even) td {
  background: var(--surf)
}

.fee-table td:last-child {
  font-weight: 500;
  color: var(--tp)
}

/* Download rows */
.content-dl {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .9rem 1.1rem;
  background: var(--surf);
  border: 1px solid var(--bl);
  border-radius: 10px;
  margin-bottom: .55rem;
  transition: border-color .2s;
}

.content-dl:hover {
  border-color: var(--teal)
}

.cdl-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 8px;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}

.cdl-info {
  flex: 1;
  min-width: 0
}

.cdl-title {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--tp);
  margin-bottom: 1px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cdl-meta {
  font-size: 11px;
  color: var(--tm)
}

.cdl-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 500;
  color: var(--teal);
  padding: 6px 12px;
  border: 1px solid rgba(15, 126, 163, .2);
  border-radius: 2rem;
  white-space: nowrap;
  transition: background .2s;
  flex-shrink: 0;
}

.cdl-btn:hover {
  background: var(--teal-light)
}

/* Contact card */
.contact-card {
  background: var(--navy);
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
  color: #fff;
  margin-top: 1.5rem;
}

.cc-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: .9rem;
}

.cc-item {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: 13.5px;
  color: rgba(255, 255, 255, .65);
  margin-bottom: .65rem;
}

.cc-icon {
  opacity: .55;
  flex-shrink: 0
}


/* ════════════════════════════════════════
   SIDEBAR
════════════════════════════════════════ */
.sidebar {
  position: sticky;
  top: 80px
}

@media (max-width: 767px) {
  .sidebar {
    position: static
  }
}

.sb-card {
  background: var(--white);
  border: 1px solid var(--bl);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.sb-head {
  padding: .9rem 1.2rem;
  border-bottom: 1px solid var(--bl);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sb-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--tp)
}

.sb-all {
  font-size: 11.5px;
  color: var(--teal);
  font-weight: 500;
  transition: color .15s
}

.sb-all:hover {
  color: var(--navy)
}

.sbn-item {
  display: flex;
  gap: .75rem;
  padding: .85rem 1.2rem;
  border-bottom: 1px solid var(--bl);
  transition: background .15s;
  cursor: pointer;
}

.sbn-item:last-child {
  border-bottom: none
}

.sbn-item:hover {
  background: var(--surf)
}

.sbn-thumb {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.sbn-info {
  flex: 1;
  min-width: 0
}

.sbn-tag {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 1px 7px;
  border-radius: 2rem;
  margin-bottom: .3rem;
  display: inline-block;
}

.sbn-tag-nw {
  background: #fdf6e3;
  color: #856b1a
}

.sbn-tag-ev {
  background: var(--teal-light);
  color: var(--teal)
}

.sbn-tag-an {
  background: #fdeaea;
  color: #a03232
}

.sbn-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--tp);
  line-height: 1.32;
  margin-bottom: .25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sbn-date {
  font-size: 11px;
  color: var(--tm)
}

.sba-item {
  padding: .85rem 1.2rem;
  border-bottom: 1px solid var(--bl);
  transition: background .15s;
  cursor: pointer;
}

.sba-item:last-child {
  border-bottom: none
}

.sba-item:hover {
  background: var(--surf)
}

.sba-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 5px;
}

.sba-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--tp);
  line-height: 1.38;
  margin-bottom: .25rem
}

.sba-meta {
  font-size: 11px;
  color: var(--tm);
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap
}

.sba-new {
  font-size: 9.5px;
  font-weight: 600;
  background: #fdeaea;
  color: #a03232;
  padding: 1px 7px;
  border-radius: 2rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.sbq-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .7rem 1.2rem;
  border-bottom: 1px solid var(--bl);
  font-size: 13px;
  color: var(--ts);
  transition: background .15s, color .15s;
  cursor: pointer;
}

.sbq-item:last-child {
  border-bottom: none
}

.sbq-item:hover {
  background: var(--teal-light);
  color: var(--teal)
}

.sbq-icon {
  font-size: 14px;
  opacity: .55
}

.sb-poll {
  padding: 1.1rem 1.2rem
}

.poll-q {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--tp);
  margin-bottom: 1rem;
  line-height: 1.45
}

.poll-opt {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .55rem .75rem;
  border: 1px solid var(--bl);
  border-radius: 8px;
  margin-bottom: .5rem;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  font-size: 13px;
  color: var(--ts);
}

.poll-opt:hover,
.poll-opt.voted {
  border-color: var(--teal);
  background: var(--teal-light);
  color: var(--teal)
}

.poll-bar-wrap {
  flex: 1;
  height: 5px;
  background: var(--surf2);
  border-radius: 3px;
  display: none
}

.poll-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: var(--teal)
}

.poll-opt.voted .poll-bar-wrap {
  display: block
}

.poll-pct {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--teal);
  min-width: 28px;
  text-align: right;
  display: none
}

.poll-opt.voted .poll-pct {
  display: block
}

.poll-total {
  font-size: 11px;
  color: var(--tm);
  margin-top: .5rem;
  text-align: center
}


/* ════════════════════════════════════════
   PEOPLE CARDS
════════════════════════════════════════ */
.pc {
  background: var(--white);
  border: 1px solid var(--bl);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--trans);
  box-shadow: var(--shadow-sm);
}

.pc:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md)
}

.pc+.pc {
  margin-top: .85rem
}

.av {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--bl);
  display: flex;
  align-items: center;
  justify-content: center;
}

.av img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.av-c {
  background: var(--teal-light)
}

.av-r {
  background: #e8f4ea
}

.pn {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--tp);
  margin: 0 0 3px;
  line-height: 1.25
}

.pp {
  font-size: 11.5px;
  color: var(--tm);
  margin: 0 0 6px;
  letter-spacing: .02em
}

.pbadge {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 2rem;
  letter-spacing: .04em
}

.pb-c {
  background: var(--teal-light);
  color: var(--teal)
}

.pb-r {
  background: #e8f4ea;
  color: #1a7a4a
}


/* ════════════════════════════════════════
   SERVICES
════════════════════════════════════════ */
.svc {
  background: var(--white);
  border: 1px solid var(--bl);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  height: 100%;
  transition: var(--trans);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.svc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform: scaleX(0);
  transition: transform .28s ease;
}

.svc:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px)
}

.svc:hover::before {
  transform: scaleX(1)
}

.si {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 22px;
  flex-shrink: 0;
}

.si-b {
  background: var(--teal-dark)
}

.si-g {
  background: #e8f4ea
}

.si-a {
  background: var(--gold-light)
}

.si-r {
  background: #fdeaea
}

.st {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--tp);
  margin-bottom: .5rem
}

.sd {
  font-size: 13.5px;
  color: var(--ts);
  line-height: 1.75;
  margin-bottom: 1rem
}

.sl {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap .15s;
}

.sl:hover {
  gap: 8px;
  color: var(--navy)
}


/* ════════════════════════════════════════
   CASES
════════════════════════════════════════ */
.cr {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem .75rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--bl);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: var(--trans);
  margin-bottom: .6rem;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.cr:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
  transform: translateX(3px)
}

.cn {
  font-family: 'Playfair Display', serif;
  font-size: .78rem;
  font-weight: 600;
  color: var(--teal);
  min-width: 110px;
  letter-spacing: .03em
}

.ctitle {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--tp);
  flex: 1;
  line-height: 1.35;
  min-width: 150px
}

.cmeta {
  display: flex;
  align-items: center;
  gap: .45rem;
  flex-shrink: 0;
  margin-left: auto
}

.ctag {
  font-size: 10.5px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 2rem;
  letter-spacing: .04em
}

.t-op {
  background: var(--teal-light);
  color: var(--teal)
}

.t-cl {
  background: var(--surf2);
  color: var(--ts)
}

.t-ap {
  background: var(--gold-light);
  color: #7d5c12
}

.cyr {
  font-size: 11px;
  color: var(--tm)
}

.carr {
  color: var(--teal);
  opacity: .35;
  font-size: 16px;
  transition: opacity .2s, transform .2s;
  flex-shrink: 0
}

.cr:hover .carr {
  opacity: 1;
  transform: translateX(4px)
}

.sbar {
  height: 6px;
  border-radius: 3px
}

.stats-card {
  background: var(--surf);
  border: 1px solid var(--bl);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  height: 100%;
  box-shadow: var(--shadow-sm);
}

.case-search-wrap {
  display: flex;
  gap: .45rem
}

.case-search-wrap input {
  flex: 1;
  padding: 10px 14px;
  font-size: 13.5px;
  border: 1px solid var(--bm);
  border-radius: var(--radius-sm);
  outline: none;
  font-family: inherit;
  color: var(--tp);
  min-width: 0;
  transition: border-color .2s;
}

.case-search-wrap input:focus {
  border-color: var(--teal)
}

.case-search-wrap button {
  padding: 10px 16px;
  background: var(--teal);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 13px;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  font-weight: 500;
  transition: background .2s;
}

.case-search-wrap button:hover {
  background: var(--teal-dark)
}


/* ════════════════════════════════════════
   ACTS / DOWNLOADS
════════════════════════════════════════ */
.ac {
  background: var(--white);
  border: 1px solid var(--bl);
  border-radius: var(--radius-md);
  padding: 1.05rem 1.35rem;
  display: flex;
  align-items: center;
  gap: .9rem;
  transition: var(--trans);
  margin-bottom: .65rem;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.ac:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md)
}

.ai {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  background: var(--teal-light);
  flex-shrink: 0;
}

.ati {
  flex: 1;
  min-width: 0
}

.atitle {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--tp);
  line-height: 1.3;
  margin-bottom: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ameta {
  font-size: 11px;
  color: var(--tm)
}

.adl {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
  color: var(--teal);
  padding: 7px 14px;
  border: 1px solid rgba(15, 126, 163, .2);
  border-radius: 2rem;
  white-space: nowrap;
  transition: var(--trans);
  flex-shrink: 0;
  background: var(--teal-xlight);
}

.adl:hover {
  background: var(--teal-light);
  border-color: var(--teal)
}


/* ════════════════════════════════════════
   NEWS
════════════════════════════════════════ */
.nc {
  background: var(--white);
  border: 1px solid var(--bl);
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 100%;
  transition: var(--trans);
  box-shadow: var(--shadow-sm);
}

.nc:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px)
}

.nth {
  width: 100%;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px
}

.nt-b {
  background: linear-gradient(135deg, #c8e8f5, #a8d0e8)
}

.nt-g {
  background: linear-gradient(135deg, #c0e8cc, #a0d0b4)
}

.nt-a {
  background: linear-gradient(135deg, #f0e0c0, #e0c890)
}

.nb {
  padding: 1.1rem 1.4rem 1.45rem
}

.ntag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 2rem;
  margin-bottom: .65rem;
  display: inline-block;
}

.ntag-ev {
  background: var(--teal-light);
  color: var(--teal)
}

.ntag-nw {
  background: var(--gold-light);
  color: #7d5c12
}

.ntag-an {
  background: #fdeaea;
  color: #a03232
}

.ntitle {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--tp);
  line-height: 1.32;
  margin-bottom: .5rem
}

.nexc {
  font-size: 13px;
  color: var(--ts);
  line-height: 1.7;
  margin-bottom: .75rem
}

.ndate {
  font-size: 11px;
  color: var(--tm)
}

.feat-thumb {
  aspect-ratio: 4/3;
  background: linear-gradient(160deg, rgba(15, 126, 163, .5), rgba(11, 31, 58, .9));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 1.5rem;
  position: relative;
}

.feat-badge {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--navy);
  padding: 4px 12px;
  border-radius: 2rem;
  margin-bottom: .65rem;
  display: inline-block;
}

.feat-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.25
}


/* ════════════════════════════════════════
   SECTION LABELS
════════════════════════════════════════ */
.sec-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
  gap: 1rem
}

.sec-label {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--tp);
  line-height: 1.2
}

.sec-sublabel {
  font-size: 11px;
  color: var(--tm);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 2px
}

.sec-divider {
  width: 100%;
  height: 1px;
  background: var(--bl);
  margin-bottom: 2rem
}


/* ════════════════════════════════════════
   MEMBER CARDS
════════════════════════════════════════ */
.member-card {
  background: var(--white);
  border: 1px solid var(--bl);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  transition: var(--trans);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.member-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px)
}

.member-card:hover .mc-photo-overlay {
  opacity: 1
}

.member-card:hover .mc-view-btn {
  transform: translateY(0);
  opacity: 1
}

.mc-photo-wrap {
  position: relative;
  aspect-ratio: 3/3.2;
  overflow: hidden;
  background: linear-gradient(145deg, var(--surf2), var(--teal-light));
}

.mc-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease
}

.member-card:hover .mc-photo {
  transform: scale(1.04)
}

.mc-initials {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(15, 126, 163, .35);
  letter-spacing: -.02em;
  user-select: none;
}

.mc-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 31, 58, .85) 0%, rgba(11, 31, 58, .1) 60%, transparent 100%);
  opacity: 0;
  transition: opacity .3s ease;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.mc-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 2rem;
  padding: 6px 14px;
  transform: translateY(8px);
  opacity: 0;
  transition: transform .28s ease, opacity .28s ease;
  backdrop-filter: blur(6px);
}

.mc-role-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2rem;
}

.rb-chair {
  background: rgba(196, 155, 60, .9);
  color: var(--navy)
}

.rb-member {
  background: rgba(15, 126, 163, .85);
  color: #fff
}

.rb-alternate {
  background: rgba(11, 31, 58, .8);
  color: rgba(255, 255, 255, .9);
  border: 1px solid rgba(255, 255, 255, .2)
}

.rb-admin {
  background: rgba(26, 120, 70, .85);
  color: #fff
}

.mc-body {
  padding: 1.3rem 1.4rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column
}

.mc-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--tp);
  margin-bottom: .2rem;
  line-height: 1.25
}

.mc-position {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--teal);
  letter-spacing: .04em;
  margin-bottom: .65rem;
  text-transform: uppercase
}

.mc-divider {
  height: 1px;
  background: var(--bl);
  margin-bottom: .75rem
}

.mc-meta {
  font-size: 12.5px;
  color: var(--ts);
  line-height: 1.7;
  margin-bottom: .9rem;
  flex: 1
}

.mc-quals {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin-bottom: .85rem
}

.mc-qual {
  font-size: 10.5px;
  font-weight: 500;
  padding: 2.5px 9px;
  border-radius: 2rem;
  background: var(--surf2);
  color: var(--tm);
  border: 1px solid var(--bl)
}

.mc-links {
  display: flex;
  align-items: center;
  gap: .45rem;
  margin-top: auto
}

.mc-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--teal);
  border: 1px solid rgba(15, 126, 163, .2);
  border-radius: 2rem;
  padding: 5px 12px;
  background: var(--teal-xlight);
  transition: var(--trans);
}

.mc-link-btn:hover {
  background: var(--teal-light);
  border-color: var(--teal);
  color: var(--teal-dark)
}


/* ════════════════════════════════════════
   ADMIN STAFF — LIST
════════════════════════════════════════ */
.staff-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.35rem;
  border: 1px solid var(--bl);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: var(--trans);
  margin-bottom: .6rem;
  box-shadow: var(--shadow-sm);
}

.staff-row:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
  transform: translateX(4px)
}

.staff-avatar {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 1.5px solid var(--bl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.staff-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.sa-teal {
  background: var(--teal-light);
  color: var(--teal)
}

.sa-green {
  background: #e8f4ea;
  color: #1a7a4a
}

.sa-gold {
  background: var(--gold-light);
  color: #8a6a1a
}

.sa-navy {
  background: var(--surf2);
  color: var(--navy)
}

.staff-info {
  flex: 1;
  min-width: 0
}

.staff-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--tp);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.staff-role {
  font-size: 11.5px;
  color: var(--teal);
  font-weight: 500;
  letter-spacing: .04em;
  margin-bottom: 3px
}

.staff-dept {
  font-size: 11px;
  color: var(--tm)
}

.staff-badge {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2rem;
  white-space: nowrap;
  flex-shrink: 0
}

.sb-registry {
  background: var(--teal-light);
  color: var(--teal)
}

.sb-finance {
  background: var(--gold-light);
  color: #7a5c12
}

.sb-hr {
  background: #e8f4ea;
  color: #1a7a4a
}

.sb-ict {
  background: var(--surf2);
  color: var(--ts)
}

.sb-legal {
  background: #fdeaea;
  color: #a03232
}


/* ════════════════════════════════════════
   CONTACT CTA BANNER
════════════════════════════════════════ */
.contact-banner {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2.75rem 2.5rem;
  position: relative;
  overflow: hidden;
  margin-top: 4rem;
}

.contact-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.contact-banner::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 50%;
  aspect-ratio: 1;
  background: radial-gradient(ellipse, rgba(196, 155, 60, .15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cb-inner {
  position: relative;
  z-index: 1
}

.cb-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: .65rem;
  line-height: 1.2
}

.cb-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, .5);
  line-height: 1.75;
  margin-bottom: 1.5rem
}

.cb-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: .02em;
  border-radius: 2rem;
  padding: 12px 26px;
  transition: var(--trans);
  cursor: pointer;
  font-family: inherit;
  border: none;
}

.cb-btn.primary {
  background: var(--gold);
  color: var(--navy)
}

.cb-btn.primary:hover {
  background: #d4a83e;
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(196, 155, 60, .35)
}

.cb-btn.outline {
  background: transparent;
  color: rgba(255, 255, 255, .75);
  border: 1px solid rgba(255, 255, 255, .22)
}

.cb-btn.outline:hover {
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border-color: rgba(255, 255, 255, .4)
}


/* ════════════════════════════════════════
   VISITORS SECTION
════════════════════════════════════════ */
.visitors-section {
  background: var(--navy);
  padding: 4rem 0;
  position: relative;
  overflow: hidden
}

.visitors-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.visitors-section::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -5%;
  width: 50%;
  aspect-ratio: 1;
  background: radial-gradient(ellipse, rgba(15, 126, 163, .15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.vis-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: var(--radius-md);
  padding: 1.6rem 1.3rem;
  text-align: center;
  transition: var(--trans);
}

.vis-card:hover {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .18);
  transform: translateY(-2px)
}

.vis-icon {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto .9rem;
  font-size: 20px
}

.vis-icon i {
  color: #fff
}

.vi-teal {
  background: rgba(15, 126, 163, .3)
}

.vi-gold {
  background: rgba(196, 155, 60, .22)
}

.vi-green {
  background: rgba(34, 139, 82, .22)
}

.vi-red {
  background: rgba(220, 53, 69, .18)
}

.vis-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: .3rem
}

.vis-lbl {
  font-size: 11.5px;
  color: rgba(255, 255, 255, .45);
  letter-spacing: .07em;
  text-transform: uppercase;
  font-weight: 500
}

.vis-trend {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 11px;
  font-weight: 500;
  margin-top: .5rem;
  padding: 2px 9px;
  border-radius: 2rem
}

.vt-up {
  background: rgba(34, 197, 94, .12);
  color: #4ade80
}

.vt-dn {
  background: rgba(239, 68, 68, .12);
  color: #f87171
}

.vis-divider {
  height: 1px;
  background: rgba(255, 255, 255, .07);
  margin: 2.5rem 0
}

.vis-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  display: inline-block;
  margin-right: 5px;
  animation: pulse-dot 1.8s ease-in-out infinite
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .4;
    transform: scale(.7)
  }
}

.vis-bar-wrap {
  background: rgba(255, 255, 255, .07);
  border-radius: 6px;
  height: 6px;
  margin-top: .5rem
}

.vis-bar-fill {
  height: 100%;
  border-radius: 6px;
  transition: width 1.2s ease
}


/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, .65);
  padding: 4rem 0 0
}

.fb-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: .3rem
}

.fb-sub {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35)
}

.fh {
  font-size: 10.5px;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255, 255, 255, .38);
  margin-bottom: 1.1rem
}

.fl {
  list-style: none;
  padding: 0
}

.fl li {
  margin-bottom: .5rem
}

.fl a {
  font-size: 13px;
  color: rgba(255, 255, 255, .52);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .2s, padding-left .18s
}

.fl a::before {
  content: '›';
  color: var(--gold);
  font-size: 14px;
  flex-shrink: 0
}

.fl a:hover {
  color: #fff;
  padding-left: 4px
}

.fci {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: .85rem;
  font-size: 13px;
  color: rgba(255, 255, 255, .52)
}

.fci-ic {
  width: 15px;
  height: 15px;
  min-width: 15px;
  margin-top: 2px;
  opacity: .45
}

.mapf {
  width: 100%;
  height: 190px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, .1);
  background: linear-gradient(135deg, #0d2442, #132d52);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: .4rem;
}

.soc-row {
  display: flex;
  gap: .5rem;
  margin-top: 1rem;
  flex-wrap: wrap
}

.soc-btn {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.soc-btn:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

/* Optional brand hover colors */
.soc-btn:hover .bi-facebook {
  color: #1877f2;
}

.soc-btn:hover .bi-instagram {
  color: #e4405f;
}

.soc-btn:hover .bi-youtube {
  color: #ff0000;
}

.soc-btn:hover .bi-linkedin {
  color: #0a66c2;
}

.soc-btn:hover .bi-twitter-x {
  color: #000;
}

.f-sep {
  height: 1px;
  background: rgba(255, 255, 255, .07);
  margin: 3.5rem 0 0
}

.f-bot {
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: 11.5px;
  color: rgba(255, 255, 255, .28);
}

.f-bot a {
  color: rgba(255, 255, 255, .32);
  transition: color .2s
}

.f-bot a:hover {
  color: rgba(255, 255, 255, .65)
}

.f-bot-links {
  display: flex;
  flex-wrap: wrap;
  gap: .25rem
}

.f-bot-links a {
  margin-left: .85rem
}


/* ════════════════════════════════════════
   RESPONSIVE TWEAKS
════════════════════════════════════════ */
@media (max-width: 575px) {
  .topbar .contact-item {
    display: none !important
  }

  .topbar-links {
    display: none !important
  }

  .brand-name {
    font-size: 1.1rem
  }

  .hero-cnt {
    padding: 2rem 0
  }

  .hero-stats {
    gap: .8rem 1.4rem
  }

  .hs {
    padding-right: 1.4rem
  }

  .atitle {
    white-space: normal
  }

  .adl {
    display: none
  }
}

@media (max-width: 767px) {
  .f-bot {
    flex-direction: column;
    text-align: center
  }

  .f-bot-links {
    justify-content: center
  }

  .f-bot-links a {
    margin-left: .55rem
  }
}


/* ════════════════════════════════════════
   ACCESSIBILITY
════════════════════════════════════════ */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 3px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--gold);
  color: var(--navy);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 13px;
  z-index: 99999;
  transition: top .2s;
}

.skip-link:focus {
  top: 1rem
}