:root{
  --gold: #7a0d2d;
  --gold-2: #5f0a23;
  --user-gold: #d7b24b;
  --user-gold-2: #bc952f;

  --navy: #343A40;
  --navy-2: #2a2f34;
  --navbar-text: #ffffff;

  --sky: #eaf2fb;
  --ink: #0b1220;
  --muted: #64748b;

  --card: rgba(255,255,255,.92);

  --shadow: 0 24px 70px rgba(2,6,23,.12);
  --shadow-sm: 0 14px 36px rgba(2,6,23,.10);

  --radius: 1.35rem;
  --radius-sm: 1rem;

  --font-sans: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;

  /* alturas para mega menu */
  --topbar-h: 44px;
  --navbar-h: 72px;
  --mega-top: calc(var(--topbar-h) + var(--navbar-h));
}

html{ scroll-behavior:smooth; }

body{
  font-family: var(--font-sans);
  letter-spacing: -0.2px;
  text-rendering: geometricPrecision;
  color: var(--ink);
  background: #fff;
}

body.topbar-hidden{
  --mega-top: var(--navbar-h);
}

h1,h2,h3,h4,h5,h6{
  letter-spacing: -0.5px;
}

/* ===============================
   Buttons
   =============================== */

.btn-pill{ border-radius: 999px; }

.btn-brand{
  --bs-btn-bg: var(--gold);
  --bs-btn-border-color: var(--gold);
  --bs-btn-hover-bg: var(--gold-2);
  --bs-btn-hover-border-color: var(--gold-2);
  --bs-btn-color: #ffffff;
  font-weight: 700;
}

.btn-outline-brand{
  --bs-btn-color: #111;
  --bs-btn-border-color: rgba(0,0,0,.22);
  --bs-btn-hover-bg: rgba(0,0,0,.06);
  --bs-btn-hover-border-color: rgba(0,0,0,.30);
  --bs-btn-hover-color: #111;
  border-width: 2px;
}

.btn-primary{
  --bs-btn-bg: var(--gold);
  --bs-btn-border-color: var(--gold);
  --bs-btn-hover-bg: var(--gold-2);
  --bs-btn-hover-border-color: var(--gold-2);
  --bs-btn-color: #ffffff;
  --bs-btn-hover-color: #ffffff;
  --bs-btn-active-bg: #4e081d;
  --bs-btn-active-border-color: #4e081d;
  font-weight: 700;
}

.pagination .page-link{
  --bs-pagination-color: #5f0a23;
  --bs-pagination-hover-color: #47081b;
  --bs-pagination-bg: #fff;
  --bs-pagination-hover-bg: rgba(122,13,45,.12);
  --bs-pagination-border-color: rgba(122,13,45,.35);
  --bs-pagination-hover-border-color: rgba(122,13,45,.5);
  --bs-pagination-active-color: #ffffff;
  --bs-pagination-active-bg: var(--gold);
  --bs-pagination-active-border-color: var(--gold);
  border-color: rgba(122,13,45,.35);
  color: #5f0a23;
  background: #fff;
  font-weight: 700;
}

.pagination .page-link:hover{
  color: #47081b;
  background: rgba(122,13,45,.12);
  border-color: rgba(122,13,45,.5);
}

.pagination .page-item.active .page-link{
  color: #ffffff;
  background: var(--gold);
  border-color: var(--gold);
}

/* ===============================
   Topbar + Navbar
   =============================== */

.topbar{
  transition: transform .25s ease, opacity .25s ease;
  position: relative;
  z-index: 1030;
}
.topbar.is-hidden{ transform: translateY(-110%); opacity: 0; pointer-events:none; }

.topbar-solid{
  background: var(--gold-2);
  color: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(255,255,255,.20);
}
.topbar-links a{ color: rgba(255,255,255,.9); }
.topbar-links a:hover{ color:#fff; text-decoration: underline; }

.badge-switch{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:.25rem .55rem;
  border-radius:999px;
  font-size:.75rem;
  font-weight:700;
  border:1px solid rgba(255,255,255,.28);
  text-decoration:none;
}
.badge-switch-light{ color:#fff; }
.badge-switch:hover{ background: rgba(255,255,255,.10); }

.navbar-solid{
  background: #fff;
  border-bottom: 1px solid rgba(2,6,23,.10);
  box-shadow: 0 10px 24px rgba(2,6,23,.08);
}

.navbar-solid .navbar-toggler{ border-color: rgba(122,13,45,.28); }
.navbar-solid .navbar-toggler-icon{ filter: none; }

.navbar-solid .nav-link{ color: #5f0a23 !important; }
.navbar-solid .nav-link:hover{ background: rgba(122,13,45,.08); color: #5f0a23 !important; }
.navbar-solid .nav-link.active{ background: rgba(122,13,45,.12); color: #5f0a23 !important; }

.brand-logo{ height: 50px; width:auto; }

.brand-text{
  line-height: 1.08;
}
.brand-text-l1{
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .07em;
  color: #5f0a23;
}
.brand-text-l2{
  font-size: .70rem;
  font-weight: 800;
  letter-spacing: .08em;
  color: #7a0d2d;
}

.navbar .nav-link{
  font-weight: 650;
  color: #5f0a23;
  padding: .9rem 1rem;
  border-radius: 999px;
}
.navbar .nav-link:hover{ background: rgba(122,13,45,.08); color: #5f0a23; }
.navbar .nav-link.active{ color: #5f0a23; background: rgba(122,13,45,.12); }

.navbar-solid .btn-outline-light{
  --bs-btn-color: #5f0a23;
  --bs-btn-border-color: rgba(122,13,45,.35);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #7a0d2d;
  --bs-btn-hover-border-color: #7a0d2d;
}

.btn-user-gold{
  --bs-btn-bg: var(--user-gold);
  --bs-btn-border-color: var(--user-gold);
  --bs-btn-hover-bg: var(--user-gold-2);
  --bs-btn-hover-border-color: var(--user-gold-2);
  --bs-btn-color: #3f2b06;
  --bs-btn-hover-color: #3f2b06;
  font-weight: 800;
}
.btn-user-gold .avatar-initials{
  background: rgba(255,255,255,.42);
  border: 1px solid rgba(63,43,6,.18);
  color: #3f2b06;
}
.user-dropdown-menu{
  border: 1px solid rgba(2,6,23,.10);
  border-radius: 16px;
  padding: .45rem;
  min-width: 270px;
  box-shadow: 0 18px 34px rgba(2,6,23,.16);
}
.user-dropdown-menu .dropdown-divider{
  margin: .45rem 0;
}
.user-dropdown-item{
  display: flex;
  align-items: center;
  gap: .6rem;
  border-radius: 12px;
  padding: .62rem .72rem;
  font-weight: 700;
  color: #1f2937;
}
.user-dropdown-item i{
  font-size: 1rem;
  color: #7a0d2d;
}
.user-dropdown-item:hover{
  background: rgba(122,13,45,.08);
  color: #5f0a23;
}
.user-dropdown-item--danger{
  color: #be123c;
}
.user-dropdown-item--danger i{
  color: #be123c;
}
.user-dropdown-item--danger:hover{
  background: rgba(190,18,60,.10);
  color: #9f1239;
}

.nav-mega{ position: relative; }

/* ===============================
   Mega menu
   =============================== */

.mega-backdrop{
  position: fixed;
  inset: 0;
  background: rgba(2,6,23,.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
  z-index: 1040;
}
.mega-backdrop.is-open{ opacity: 1; pointer-events: auto; }

.mega-panel{
  position: fixed;
  left: 0; right: 0;
  top: var(--mega-top);
  max-height: calc(100vh - var(--mega-top));
  overflow: auto;
  background:
    radial-gradient(1200px 700px at 15% 20%, rgba(122,13,45,.18), transparent 60%),
    linear-gradient(180deg, var(--navy-2), var(--navy));
  color: #fff;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: transform .18s ease, opacity .18s ease;
  z-index: 1050;
  padding: 1.25rem 0 2rem;
}
.mega-panel.is-open{
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
@media (max-width: 991.98px){
  .mega-panel, .mega-backdrop{ display:none; }
}

.mega-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: .25rem 0 1rem;
  border-bottom: 1px solid rgba(255,255,255,.12);
  margin-bottom: 1.25rem;
}
.mega-kicker{
  font-size:.75rem;
  letter-spacing:.12em;
  text-transform:uppercase;
  color: rgba(255,255,255,.70);
}
.mega-title{ font-size:1.35rem; font-weight: 800; }

.mega-link{
  display:flex;
  align-items:center;
  gap:.35rem;
  color: rgba(255,255,255,.90);
  text-decoration:none;
  padding:.55rem .65rem;
  border-radius: .85rem;
}
.mega-link:hover{ background: rgba(255,255,255,.10); color:#fff; }

.mega-notariales-scroll{
  max-height: 380px;
  overflow-y: auto;
  padding-right: .35rem;
}

.mega-notariales-scroll::-webkit-scrollbar{
  width: 8px;
}

.mega-notariales-scroll::-webkit-scrollbar-thumb{
  background: rgba(255,255,255,.28);
  border-radius: 999px;
}

.mega-card{
  display:flex;
  align-items:flex-start;
  gap:.85rem;
  text-decoration:none;
  color:#fff;
  padding:.9rem 1rem;
  border-radius: 1.1rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  margin-bottom: .8rem;
}
.mega-card:hover{ background: rgba(255,255,255,.12); }

.mega-icon{
  width: 44px; height: 44px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(122,13,45,.16);
  border: 1px solid rgba(122,13,45,.35);
  font-size: 1.25rem;
}

.mega-highlight{
  padding: 1rem 1.1rem;
  border-radius: 1.25rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
}

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

.mega-tile{
  display:flex;
  align-items:center;
  gap:.7rem;
  padding: .9rem 1rem;
  border-radius: 1.15rem;
  text-decoration:none;
  color:#fff;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  font-weight: 700;
}
.mega-tile:hover{ background: rgba(255,255,255,.12); }

/* ===============================
   Mobile nav
   =============================== */

.mobile-nav .offcanvas-header{ border-bottom:1px solid rgba(2,6,23,.08); }

.mobile-link{
  display:block;
  padding:.6rem .2rem;
  text-decoration:none;
  color: var(--ink);
  font-weight: 650;
}
.mobile-link:hover{ color: #111; }

/* ===============================
   Sections
   =============================== */

.section-pad{ padding: 4.5rem 0; }
@media (max-width: 575.98px){
  .section-pad{ padding: 3.2rem 0; }
}

.section-soft{
  background:
    radial-gradient(900px 500px at 12% 30%, rgba(0,0,0,.05), transparent 60%),
    radial-gradient(800px 520px at 88% 70%, rgba(122,13,45,.10), transparent 60%),
    linear-gradient(180deg, #fff, #f8fbff);
}

.kicker{
  display:inline-block;
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #111;
  font-weight: 800;
}

/* ===============================
   Quienes somos
   =============================== */
.section-title{
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
  padding-bottom: .4rem;
  margin-bottom: 1.2rem;
}

.consejo-list p{
  font-size: .92rem;
  line-height: 1.35;
}

.org-chart{
  display: grid;
  gap: 1.4rem;
}

.org-level{
  display: grid;
  gap: .9rem;
  justify-content: center;
}

.org-top{
  justify-items: center;
}

.org-mid{
  grid-template-columns: repeat(3, minmax(180px, 1fr));
}

.org-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: .9rem;
}

.org-grid--fiscal{
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.org-card{
  border: 1px solid rgba(2,6,23,.08);
  padding: .9rem 1rem;
  background: #fff;
  box-shadow: 0 6px 18px rgba(2,6,23,.06);
}

.org-card--primary{
  border-color: rgba(122,13,45,.5);
  box-shadow: 0 10px 24px rgba(122,13,45,.18);
}

.org-role{
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 800;
  color: #111;
}

.org-name{
  font-size: .92rem;
  margin-top: .25rem;
  font-weight: 600;
  color: var(--ink);
}

@media (max-width: 991.98px){
  .org-mid{ grid-template-columns: 1fr; }
}

/* ===============================
   Autoridades
   =============================== */
.authorities-hero{
  position: relative;
  background:
    radial-gradient(900px 420px at 15% 0%, rgba(122,13,45,.35), transparent 55%),
    radial-gradient(700px 320px at 90% 15%, rgba(0,0,0,.35), transparent 60%),
    linear-gradient(180deg, #0b0f1a, #1a1f2b);
  color: #fff;
  overflow: hidden;
}

.authorities-hero::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,.08), transparent 40%);
  opacity: .6;
  pointer-events: none;
}

.authorities-badge{
  background: var(--gold);
  color: #fff;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .5rem .9rem;
  border-radius: 999px;
}

.authorities-badge--ghost{
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
}

.authorities-photo{
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 10;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
  background: #0b0f1a;
}

.authorities-photo .carousel-inner,
.authorities-photo .carousel-item{
  height: 100%;
}

.authorities-photo img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.authorities-photo figcaption{
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: .4rem .75rem;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
  background: rgba(10,10,10,.72);
  color: #fff;
  border-radius: 999px;
}

.authorities-section{
  background: #f6f3ec;
}

.authorities-spotlight{
  margin-top: -80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.authorities-spotlight-card{
  background: #fff;
  border-radius: 16px;
  padding: 1.25rem 1.25rem 1.1rem;
  box-shadow: 0 12px 28px rgba(2,6,23,.08);
  border: 1px solid rgba(2,6,23,.06);
}

.authorities-spotlight-card--primary{
  border: 1px solid rgba(122,13,45,.6);
  box-shadow: 0 16px 40px rgba(122,13,45,.18);
}

.authorities-role{
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 800;
  color: #6a1230;
}

.authorities-name{
  font-weight: 700;
  margin-top: .3rem;
  color: #111;
}

.authorities-note{
  margin-top: .35rem;
  color: #6b7280;
  font-size: .88rem;
}

.authorities-group{
  background: #fff;
  border-radius: 16px;
  padding: 1.25rem;
  border: 1px solid rgba(2,6,23,.06);
  box-shadow: 0 10px 24px rgba(2,6,23,.06);
}

.authorities-group--soft{
  background: #fdfbf6;
}

.authorities-group-title{
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 800;
  color: #7a1538;
  margin-bottom: 1rem;
}

.authorities-list{
  display: grid;
  gap: .6rem;
}

.authorities-item{
  background: #fff;
  border-radius: 12px;
  padding: .7rem .9rem;
  border: 1px solid rgba(2,6,23,.06);
  font-weight: 600;
  color: #111;
}

.authorities-group--soft .authorities-item{
  background: #fff;
}

.authorities-divider{
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(122,13,45,.6), transparent);
  margin: 2.5rem 0;
}

.authorities-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.authorities-tile{
  padding: 1rem;
  border-radius: 14px;
  border: 1px dashed rgba(122,13,45,.45);
  background: rgba(255,255,255,.7);
}

@media (max-width: 991.98px){
  .authorities-spotlight{ margin-top: -40px; }
}

/* ===============================
   HERO
   =============================== */

.hero-premium{
  position: relative;
  background: #fff;
  background-image: none;
  overflow: hidden;
}

.hero-premium--full .container-fluid{ max-width: 100%; }

/* slider wrapper */
.hero-slider-card{
  border-radius: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

/* slide */
.hero-slide{
  position: relative;
  border-radius: 0;
  min-height: 320px;
  height: clamp(320px, 42vh, 460px);
  overflow: hidden;
  background: #0b1220;
}

.hero-slide-img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* legibilidad */
.hero-gradient{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(2,6,23,.28) 0%, rgba(2,6,23,.12) 55%, rgba(2,6,23,.10) 100%),
    linear-gradient(180deg, rgba(2,6,23,.00) 0%, rgba(2,6,23,.45) 70%, rgba(2,6,23,.85) 100%);
  pointer-events:none;
}

/* banner inferior */
.hero-banner{
  position:absolute;
  left: 0; right: 0; bottom: 0;
  padding: 22px 26px;
  background: rgba(11,11,11,.78);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,.10);
  color:#fff;
}

.hero-chip{
  display:inline-flex;
  align-items:center;
  padding:.35rem .65rem;
  border-radius:999px;
  background: rgba(122,13,45,.95);
  color:#fff;
  font-weight:800;
  letter-spacing:.08em;
  font-size:.72rem;
  margin-bottom: 10px;
}

.hero-banner-title{
  font-weight: 900;
  font-size: clamp(1.35rem, 2.3vw, 2.2rem);
  line-height: 1.12;
  margin-bottom: 6px;
}

.hero-banner-sub{
  color: rgba(255,255,255,.85);
  max-width: 80ch;
  font-size: 1.05rem;
}

.hero-banner-link{
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  margin-top: 10px;
  color: var(--gold);
  font-weight: 800;
  text-decoration:none;
}
.hero-banner-link:hover{ text-decoration: underline; }

/* flechas */
.hero-arrow{
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(2,6,23,.35);
  color:#fff;
  display:grid;
  place-items:center;
  z-index: 10;
  box-shadow: 0 12px 30px rgba(2,6,23,.25);
  transition: background .18s ease, transform .18s ease;
}
.hero-arrow:hover{
  background: rgba(2,6,23,.55);
  transform: translateY(-50%) scale(1.04);
}
.hero-arrow-prev{ left: 18px; }
.hero-arrow-next{ right: 18px; }

/* dots */
.hero-dots{
  position:absolute;
  left: 0; right: 0;
  bottom: 88px;
  display:flex;
  justify-content:center;
  z-index: 11;
}

.hero-dots .swiper-pagination-bullet{
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,.75);
  opacity: .7;
}

.hero-dots .swiper-pagination-bullet-active{
  opacity: 1;
  background: var(--gold);
}

/* mobile */
@media (max-width: 991.98px){
  .hero-slide{
    height: clamp(260px, 34vh, 360px);
    min-height: 260px;
  }
  .hero-banner{ padding: 18px 16px; }
  .hero-dots{ bottom: 92px; }
}

/* panel derecho */
.hero-side{
  height: 100%;
  border-radius: 26px;
  background: linear-gradient(180deg, var(--navy), var(--navy-2));
  box-shadow: var(--shadow-sm);
  padding: 16px;
  display:flex;
  flex-direction:column;
  gap:12px;
  color:#fff;
}

.hero-side-card{
  display:block;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.12);
  color:#fff;
  text-decoration:none;
  transition: transform .18s ease, background .18s ease;
}
.hero-side-card:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.14);
}

.hero-side-thumb{
  width:72px;
  height:72px;
  object-fit:cover;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.18);
}

.hero-side-cta{
  margin-top:auto;
  padding: 14px;
  border-radius: 18px;
  background: rgba(122,13,45,.18);
  border: 1px solid rgba(122,13,45,.28);
  color:#fff;
}

/* ===============================
   Tabs / cards / eventos
   =============================== */

.section-tabs{ padding-top: 3.4rem; }

.nav-tabs-lg{
  border-bottom: none;
  background: #fff;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.nav-tabs-lg .nav-link{
  border: none;
  border-radius: 0;
  font-weight: 900;
  letter-spacing: .04em;
  padding: 1.25rem 1rem;
  color: rgba(2,6,23,.70);
  background: transparent;
}
.nav-tabs-lg .nav-link.active{
  color: #111;
  background:
    radial-gradient(700px 220px at 50% 0%, rgba(122,13,45,.16), transparent 60%),
    rgba(0,0,0,.04);
}


/* Tabs premium */
.tabs-premium .nav-pills .nav-link{
  border-radius: 999px;
  padding: .65rem 1rem;
  border: 1px solid rgba(2,6,23,.10);
  background: rgba(255,255,255,.82);
  color: var(--ink);
  box-shadow: 0 12px 26px rgba(2,6,23,.06);
}
.tabs-premium .nav-pills .nav-link.active{
  background: linear-gradient(180deg, var(--gold), var(--gold-2));
  border-color: rgba(11,42,90,.18);
  color:#fff;
  text-shadow: 0 1px 1px rgba(0,0,0,.22);
}
.tabs-premium .nav-pills .nav-link:focus-visible{
  outline: 2px solid rgba(122,13,45,.35);
  outline-offset: 2px;
}

.wide-card{
  display:flex;
  background: #fff;
  border-radius: 1.6rem;
  box-shadow: var(--shadow-sm);
  overflow:hidden;
  min-height: 180px;
}
.wide-card-img{ width: 42%; object-fit: cover; }
.wide-card-body{ padding: 1.35rem 1.5rem; }
@media (max-width: 991.98px){
  .wide-card{ flex-direction: column; }
  .wide-card-img{ width: 100%; height: 240px; }
}

.icon-card{
  display:block;
  text-decoration:none;
  color: var(--ink);
  background: #fff;
  border-radius: 1.6rem;
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(2,6,23,.06);
  text-align:center;
  transition: transform .18s ease, box-shadow .18s ease;
}
.icon-card i{ font-size: 2.1rem; color: #111; }
.icon-card .fw-semibold{ color: var(--gold); }
.icon-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.icon-card:hover .fw-semibold{ color: var(--gold-2); }

.event-card{
  display:block;
  border-radius: 22px;
  overflow:hidden;
  background:#fff;
  border: 1px solid rgba(2,6,23,.08);
  box-shadow: var(--shadow-sm);
  text-decoration:none;
  color: inherit;
  transition: transform .2s ease, box-shadow .2s ease;
}
.event-card:hover{ transform: translateY(-3px); box-shadow: var(--shadow); }
.event-card-img{ width:100%; height:240px; object-fit:cover; display:block; }
.event-card-img--placeholder{
  background:
    radial-gradient(420px 180px at 20% 20%, rgba(122,13,45,.22), transparent 60%),
    linear-gradient(180deg, #f4f7fb, #e8eef7);
  color: #31415b;
}
.event-card-body{ padding: 18px 18px 20px; }
.event-link{ display:inline-flex; align-items:center; font-weight:700; color: #111; }

.home-news-spotlight{
  max-width: 460px;
  margin: 0 auto;
}

.home-news-card{
  position: relative;
  display: block;
  min-height: 420px;
  border-radius: 28px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 30px 60px rgba(15,23,42,.16);
  transition: transform .2s ease, box-shadow .2s ease;
}

.home-news-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 38px 70px rgba(15,23,42,.2);
}

.home-news-card-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-news-card-overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15,23,42,.14) 0%, rgba(15,23,42,.3) 45%, rgba(15,23,42,.78) 100%),
    radial-gradient(460px 220px at 50% 15%, rgba(255,255,255,.28), transparent 60%);
}

.home-news-card-content{
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 1.6rem;
}

.home-news-card-logo{
  width: 94px;
  height: 94px;
  object-fit: contain;
  margin: 0 auto 1.4rem;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.25));
}

.home-news-card-kicker{
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: .55rem;
  opacity: .9;
}

.home-news-card-title{
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: .98;
  margin-bottom: .6rem;
}

.home-news-card-copy{
  max-width: 24ch;
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(255,255,255,.88);
}

.preview-banner{
  position: relative;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(11,18,32,.96), rgba(42,47,52,.92)),
    linear-gradient(180deg, var(--navy), var(--navy-2));
  color: #fff;
  padding: .95rem 0;
  border-bottom: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 10px 26px rgba(2,6,23,.16);
}

.news-hero{
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 7rem;
  background:
    radial-gradient(900px 360px at 10% 10%, rgba(122,13,45,.26), transparent 60%),
    radial-gradient(920px 420px at 90% 15%, rgba(21,33,59,.24), transparent 60%),
    linear-gradient(180deg, #fbfcfe 0%, #eef3f9 100%);
}

.news-hero-bg{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255,255,255,.62), transparent 35%),
    radial-gradient(800px 240px at 50% 100%, rgba(255,255,255,.55), transparent 60%);
  pointer-events: none;
}

.news-hero-copy{
  position: relative;
}

.news-meta-row{
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}

.news-chip{
  display: inline-flex;
  align-items: center;
  padding: .48rem .9rem;
  border-radius: 999px;
  background: rgba(20,36,63,.92);
  color: #fff;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.news-chip--accent{
  background: linear-gradient(180deg, var(--gold), var(--gold-2));
  color: #111;
}

.news-chip--soft{
  background: rgba(255,255,255,.78);
  color: #21324c;
  border: 1px solid rgba(33,50,76,.10);
}

.news-title{
  font-size: clamp(2.4rem, 6vw, 4.9rem);
  line-height: .98;
  letter-spacing: -0.05em;
  color: #0f172a;
  max-width: 11ch;
}

.news-lead{
  max-width: 60ch;
  font-size: 1.2rem;
  line-height: 1.75;
  color: #526277;
}

.news-submeta{
  font-size: .96rem;
  color: #667487;
  font-weight: 600;
}

.news-side-glance{
  padding: 1.4rem 1.5rem;
  border-radius: 26px;
  color: #fff;
  background:
    radial-gradient(320px 160px at 15% 10%, rgba(122,13,45,.35), transparent 60%),
    linear-gradient(180deg, #1d2f4c, #0f172a);
  box-shadow: 0 26px 54px rgba(15,23,42,.22);
}

.news-side-glance-label{
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 800;
  color: rgba(255,255,255,.72);
  margin-bottom: .7rem;
}

.news-stage{
  position: relative;
  margin-top: -4.25rem;
  padding-bottom: 4.5rem;
  z-index: 1;
}

.news-article-shell{
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(17,24,39,.06);
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(17,24,39,.10);
  backdrop-filter: blur(14px);
}

.news-cover-wrap{
  padding: 1.2rem 1.2rem 0;
}

.news-detail-cover{
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 24px 50px rgba(15,23,42,.14);
}

.news-article-body{
  padding: 2rem 2.2rem 2.3rem;
}

.news-sidebar{
  position: sticky;
  top: 110px;
  display: grid;
  gap: 1rem;
}

.news-aside-card{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(17,24,39,.06);
  border-radius: 28px;
  padding: 1.4rem;
  box-shadow: 0 18px 44px rgba(17,24,39,.08);
}

.news-aside-title{
  font-size: 1.15rem;
  font-weight: 800;
  color: #17243b;
  margin-bottom: 1rem;
}

.news-mini-list{
  display: grid;
  gap: .85rem;
}

.news-mini-card{
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: linear-gradient(180deg, #f8fbff, #eef4fb);
  border: 1px solid rgba(17,24,39,.06);
  transition: transform .18s ease, box-shadow .18s ease;
}

.news-mini-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(17,24,39,.08);
}

.news-mini-card-title{
  font-weight: 700;
  color: #14243f;
  margin-bottom: .35rem;
}

.news-mini-card-meta{
  font-size: .9rem;
  color: #667487;
}

.news-detail-content{
  font-size: 1.08rem;
  line-height: 1.95;
  color: #243245;
}

.news-detail-content h1,
.news-detail-content h2,
.news-detail-content h3,
.news-detail-content h4{
  font-weight: 800;
  color: #14243f;
  line-height: 1.1;
  margin-top: 2.35rem;
  margin-bottom: .95rem;
}

.news-detail-content h1{ font-size: 2.2rem; }
.news-detail-content h2{ font-size: 1.8rem; }
.news-detail-content h3{ font-size: 1.45rem; }
.news-detail-content h4{ font-size: 1.2rem; }

.news-detail-content p,
.news-detail-content ul,
.news-detail-content ol,
.news-detail-content blockquote{
  margin-bottom: 1.2rem;
}

.news-detail-content ul,
.news-detail-content ol{
  padding-left: 1.35rem;
}

.news-detail-content a{
  color: #1b4c8d;
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}

.news-detail-content strong{
  color: #0f172a;
}

.news-detail-content blockquote{
  border-left: 4px solid rgba(122,13,45,.85);
  padding: 1rem 1.2rem 1rem 1.3rem;
  color: #556274;
  background:
    linear-gradient(180deg, #fffdf7, #f8f3e6);
  border-radius: 0 20px 20px 0;
}

.news-detail-content img{
  max-width: 100%;
  height: auto;
  display: block;
  margin: 2rem auto;
  border-radius: 22px;
  box-shadow: 0 22px 46px rgba(15,23,42,.12);
}

@media (max-width: 991.98px){
  .home-news-card{
    min-height: 380px;
  }

  .news-hero{
    padding: 3.5rem 0 5.25rem;
  }

  .news-stage{
    margin-top: -2.5rem;
    padding-bottom: 3rem;
  }

  .news-sidebar{
    position: static;
  }

  .news-article-body{
    padding: 1.35rem 1.1rem 1.5rem;
  }
}

@media (max-width: 575.98px){
  .home-news-spotlight{
    max-width: 100%;
  }

  .home-news-card{
    min-height: 340px;
    border-radius: 24px;
  }

  .home-news-card-content{
    padding: 1.25rem;
  }

  .home-news-card-logo{
    width: 74px;
    height: 74px;
    margin-bottom: 1.1rem;
  }

  .home-news-card-copy{
    max-width: none;
    font-size: .96rem;
  }
}


/* ===============================
   Map
   =============================== */

.map-card{
  border-radius: 26px;
  overflow:hidden;
  background:#fff;
  border: 1px solid rgba(2,6,23,.08);
  box-shadow: var(--shadow);
}
.map-frame{ height: 420px; }
.map-frame iframe{ width:100%; height:100%; border:0; }
.map-content{
  padding: 26px;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
@media (max-width: 991.98px){
  .map-frame{ height: 320px; }
}

/* ===============================
   CTA section
   =============================== */

.section-cta{
  background:
    radial-gradient(900px 500px at 20% 20%, rgba(122,13,45,.22), transparent 60%),
    linear-gradient(180deg, var(--navy-2), var(--navy));
}

.cta-panel{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 1.8rem;
  padding: 2.4rem 2.2rem;
  box-shadow: 0 24px 70px rgba(2,6,23,.25);
}

/* ===============================
   Footer
   =============================== */

.footer-solid{
  background: linear-gradient(180deg, var(--navy), var(--navy-2));
  color: rgba(255, 255, 255, .92);
}
.footer-logo{ height: 52px; width:auto; }
.footer-brand{
  display:flex;
  align-items:center;
  gap:.8rem;
}
.footer-brand-name{
  margin:0;
  color:#fff;
  font-weight:700;
  letter-spacing:.01em;
}
.footer-brand-text{
  display:flex;
  flex-direction:column;
  line-height:1.08;
}
.footer-brand-l1{
  font-size:.74rem;
  font-weight:900;
  letter-spacing:.07em;
  color:#fff;
}
.footer-brand-l2{
  font-size:.70rem;
  font-weight:800;
  letter-spacing:.08em;
  color:rgba(255,255,255,.86);
}

.footer-title{
  font-weight: 900;
  letter-spacing:.12em;
  font-size: .75rem;
  color: rgba(255,255,255,.72);
  margin-bottom: .65rem;
}

.footer-link{
  display:block;
  color: rgba(255, 255, 255, .92);
  text-decoration:none;
  padding:.25rem 0;
}
.footer-link:hover{ color:#fff; text-decoration: underline; }

.footer-bottom{
  border-top: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: rgba(255,255,255,.92);
}
.dev-logo{ height: 45px; width:auto; opacity:.95; }

/* ===============================
   Utility
   =============================== */

.min-w-0{ min-width:0; }

.page-hero-solid{
  background:
    radial-gradient(900px 500px at 15% 20%, rgba(122,13,45,.22), transparent 60%),
    linear-gradient(180deg, var(--navy-2), var(--navy));
}

/* ===============================
   Service Pages
   =============================== */

.service-hero{
  position: relative;
  overflow: hidden;
  padding: 4.25rem 0 3.2rem;
  background:
    radial-gradient(720px 320px at 12% 8%, rgba(122,13,45,.18), transparent 60%),
    radial-gradient(860px 360px at 88% 12%, rgba(52,58,64,.18), transparent 62%),
    linear-gradient(180deg, #fbfcfe 0%, #eef3f9 100%);
}

.service-hero::after{
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(122,13,45,.35), transparent);
}

.service-shell{
  position: relative;
  margin-top: -1.25rem;
  padding-bottom: 4.5rem;
}

.service-nav{
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-top: 1.8rem;
}

.service-nav-link{
  display: inline-flex;
  align-items: center;
  padding: .6rem .95rem;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(17,24,39,.08);
  color: #253245;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(2,6,23,.06);
}

.service-nav-link:hover{
  color: #5f0a23;
  border-color: rgba(122,13,45,.28);
}

.service-card{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(17,24,39,.06);
  border-radius: 30px;
  padding: 1.6rem;
  box-shadow: 0 18px 46px rgba(17,24,39,.08);
}

.service-card--hero{
  padding: 1.6rem 1.7rem;
}

.service-card--soft{
  background: linear-gradient(180deg, #fffdf8, #f8f4ea);
}

.service-card--accent{
  background:
    radial-gradient(320px 160px at 15% 10%, rgba(122,13,45,.22), transparent 60%),
    linear-gradient(180deg, #1d2f4c, #0f172a);
  color: #060101;
}

.service-card--accent .text-secondary{
  color: rgba(255,255,255,.7) !important;
}

.service-grid{
  display: grid;
  gap: 1.2rem;
}

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

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

.service-chip{
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .42rem .8rem;
  border-radius: 999px;
  background: rgba(122,13,45,.1);
  color: #5f0a23;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.service-chip--light{
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,.16);
}

.service-title{
  font-size: clamp(2.1rem, 4.4vw, 4rem);
  line-height: .98;
  letter-spacing: -0.04em;
  margin: .85rem 0 1rem;
  color: #0f172a;
}

.service-title em{
  font-style: normal;
  color: #5f0a23;
}

.service-lead{
  max-width: 64ch;
  font-size: 1.08rem;
  line-height: 1.85;
  color: #526277;
}

.service-stats{
  display: grid;
  gap: .9rem;
}

.service-stat{
  padding: 1rem 1.05rem;
  border-radius: 20px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(17,24,39,.06);
}

.service-stat-label{
  display: block;
  font-size: .74rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #7a0d2d;
  font-weight: 800;
  margin-bottom: .3rem;
}

.service-step{
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(17,24,39,.08);
}

.service-step:last-child{
  border-bottom: none;
  padding-bottom: 0;
}

.service-step-badge{
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #7a0d2d, #5f0a23);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 14px 28px rgba(122,13,45,.22);
}

.service-mini-title{
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 800;
  color: #7a0d2d;
  margin-bottom: .3rem;
}

.service-table{
  width: 100%;
  border-collapse: collapse;
}

.service-table thead th{
  padding: .95rem 1rem;
  background: #14243f;
  color: #fff;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 800;
}

.service-table thead th:first-child{
  border-top-left-radius: 18px;
}

.service-table thead th:last-child{
  border-top-right-radius: 18px;
}

.service-table tbody td{
  padding: 1rem;
  border-bottom: 1px solid rgba(17,24,39,.08);
  vertical-align: top;
  color: #253245;
}

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

.service-list{
  display: grid;
  gap: .7rem;
  padding-left: 1.15rem;
  color: #31415b;
}

.service-checklist{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .7rem;
}

.service-checklist li{
  position: relative;
  padding-left: 1.5rem;
  color: #31415b;
}

.service-checklist li::before{
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #7a0d2d;
  font-weight: 900;
}

.service-faq .accordion-item{
  border: 1px solid rgba(17,24,39,.08);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: .8rem;
  box-shadow: 0 10px 24px rgba(17,24,39,.05);
}

.service-faq .accordion-button{
  font-weight: 700;
  color: #17243b;
  background: #fff;
  box-shadow: none;
}

.service-faq .accordion-button:not(.collapsed){
  color: #5f0a23;
  background: #fff9f5;
}

.service-faq .accordion-body{
  color: #526277;
  line-height: 1.8;
}

.service-note{
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: linear-gradient(180deg, #fffdf7, #f8f3e6);
  border: 1px solid rgba(122,13,45,.14);
}

.service-contact-card{
  height: 100%;
}

@media (max-width: 991.98px){
  .service-grid--3,
  .service-grid--2{
    grid-template-columns: 1fr;
  }

  .service-shell{
    margin-top: 0;
    padding-bottom: 3rem;
  }
}

@media (max-width: 575.98px){
  .service-hero{
    padding: 3rem 0 2.2rem;
  }

  .service-card{
    border-radius: 24px;
    padding: 1.2rem;
  }

  .service-nav{
    gap: .55rem;
  }

  .service-nav-link{
    font-size: .92rem;
    padding: .55rem .8rem;
  }

  .service-step{
    grid-template-columns: 48px minmax(0, 1fr);
    gap: .8rem;
  }

  .service-step-badge{
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }
}

/* Info tiles */
.tile-card{
  display:flex;
  flex-direction:column;
  gap:10px;
  padding: 22px;
  border-radius: 22px;
  background:#fff;
  border: 1px solid rgba(2,6,23,.08);
  box-shadow: 0 14px 30px rgba(2,6,23,.07);
  text-decoration:none;
  color: inherit;
  min-height: 140px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.tile-card:hover{ transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.tile-icon{
  width:46px; height:46px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  background: rgba(122,13,45,.18);
  border: 1px solid rgba(122,13,45,.25);
  color: var(--navy);
  font-size: 1.3rem;
}


.avatar-initials{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(11,18,32,.2);
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .03em;
}
.avatar-initials--sm{
  width: 30px;
  height: 30px;
  font-size: .72rem;
}
