/* ============================================================
   TRIDENT ALISKA 
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Big+Shoulders+Display:wght@600;800&family=Space+Grotesk:wght@400;500;600&display=swap');

:root {
  --black: #0a0806;
  --charcoal: #15110b;
  --surface: #1c1610;
  --border: #332815;
  --gold: #d4af37;
  --gold-bright: #f4cf6a;
  --gold-deep: #9c6f1e;
  --bronze: #6b4a18;
  --cream: #f4ecd8;
  --muted: #9c8e72;
  --gold-glow: rgba(212, 175, 55, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 160px;
}

body {
  background: var(--black);
  color: var(--cream);
  font-family: 'Space Grotesk', sans-serif;
  overflow-x: hidden;
  position: relative;
}

/* ---- ambient noise / grain texture ---- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a {
  text-decoration: none;
}

/* header */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 8, 6, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.navbar {
  padding: 18px 0;
}

.logo-icon {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 1.55rem;
  letter-spacing: 0.5px;
  color: var(--cream) !important;
  position: relative;
  background: linear-gradient(100deg, var(--cream) 30%, var(--gold-bright) 50%, var(--cream) 70%);
  background-size: 220% auto;
  background-position: 0% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 7s linear infinite;
}

.navbar-brand img {
  height: 70px;
}

.footer-brand .logo img {
  height: 70px;
}

@keyframes shimmer {
  0% {
    background-position: 0% 0;
  }

  100% {
    background-position: -220% 0;
  }
}

.navbar-nav {
  gap: 6px;
  align-items: center;
}

.nav-link {
  color: var(--muted) !important;
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.3px;
  padding: 8px 16px !important;
  position: relative;
  transition: color .25s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 4px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s cubic-bezier(.2, .9, .3, 1);
}

.nav-link:hover {
  color: var(--gold-bright) !important;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.navbar-toggler {
  border: 1px solid var(--border) !important;
  background: var(--surface);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px var(--gold-glow) !important;
}

.navbar-toggler i {
  color: var(--gold-bright);
  font-size: 1.4rem;
}

/* dropdown caret + open state */
.nav-link.dropdown-toggle::after {
  vertical-align: 1px;
  margin-left: 6px;
  transition: transform .25s ease;
}

.nav-item.dropdown.show .nav-link.dropdown-toggle::after {
  transform: rotate(180deg);
}

.nav-item.dropdown.show .nav-link {
  color: var(--gold-bright) !important;
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
}

/* dropdown panel */
.dropdown-menu {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px;
  margin-top: 5px !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(212, 175, 55, 0.05);
  min-width: 220px;
  transition: max-height 0.3s ease-in-out, opacity 0.25s ease-in-out;

}

.dropdown-item {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.2px;
  padding: 10px 14px;
  border-radius: 7px;
  transition: background .2s, color .2s, padding-left .2s;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background: rgba(212, 175, 55, 0.08);
  color: var(--gold-bright);
  padding-left: 18px;
}

.dropdown-item:active {
  background: rgba(212, 175, 55, 0.14);
  color: var(--gold-bright);
}

.dropdown-divider {
  border-top: 1px solid var(--border);
  margin: 6px 4px;
  opacity: 1;
}

.nav-item.dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
}

/* Smooth fade in/out */
.dropdown-menu {
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

/* Hide by default when JS toggles the class */
.dropdown-menu.hiding {
    opacity: 0;
    visibility: hidden;
    display: block !important;
    pointer-events: none;
}

/* on mobile the dropdown sits inline inside the collapsed menu, not floating */
@media (max-width:991px) {
  .dropdown-menu {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 4px 0 4px 14px;
    margin-top: 4px !important;
  }

  .dropdown-item {
    color: var(--muted);
  }
}

/* ============================================================
   HERO — wild signature, with particles.js network background
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px 100px;
  overflow: hidden;
  isolation: isolate;
}

/* particles.js mounts here, behind everything else in the hero */
#particles-js {
  position: absolute;
  inset: 0;
  z-index: -3;
}

/* rotating conic gold halo behind the headline */
.hero::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1400px;
  height: 1400px;
  transform: translate(-50%, -50%);
  background: conic-gradient(from 0deg,
      transparent 0deg,
      var(--gold-glow) 40deg,
      transparent 90deg,
      transparent 180deg,
      rgba(244, 207, 106, 0.22) 230deg,
      transparent 280deg,
      transparent 360deg);
  animation: spin 22s linear infinite;
  z-index: -2;
  filter: blur(40px);
}

/* radial vignette to keep edges dark and particles from feeling busy at the borders */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 40%, transparent 0%, var(--black) 85%);
  z-index: -1;
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.hero>span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-bright);
  font-weight: 600;
  padding: 8px 20px;
  border: 1px solid var(--gold-deep);
  border-radius: 30px;
  background: rgba(212, 175, 55, 0.06);
  margin-bottom: 32px;
  animation: fadeUp .9s ease both;
  position: relative;
  z-index: 1;
}

.hero>span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 10px var(--gold-bright);
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

.hero h1 {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: clamp(2.6rem, 7vw, 6rem);
  line-height: 1.02;
  letter-spacing: -1px;
  color: var(--cream);
  max-width: 1100px;
  margin: 0 0 36px;
  animation: fadeUp 1s ease .1s both;
  position: relative;
  z-index: 1;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(100deg, var(--gold-deep) 30%, var(--gold-bright) 50%, var(--gold-deep) 70%);
  background-size: 220% auto;
  background-position: 0% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldflow 7s linear infinite;
  position: relative;
}

@keyframes goldflow {
  0% {
    background-position: 0% 0;
  }

  100% {
    background-position: -220% 0;
  }
}

.hero p {
  max-width: 690px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--muted);
  margin: 0 auto;
  animation: fadeUp 1.1s ease .2s both;
  position: relative;
  z-index: 1;
}

.partner-link {
  color: var(--gold-bright);
  font-weight: 600;
  border-bottom: 1px solid var(--gold-deep);
  transition: color .2s, border-color .2s;
}

.partner-link:hover {
  color: var(--cream);
  border-color: var(--gold-bright);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  #particles-js {
    display: none;
  }
}

/* ============================================================
   SHARED SECTION SCAFFOLDING
   ============================================================ */
.section {
  position: relative;
  padding: 120px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.76rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-bright);
  font-weight: 600;
  margin-bottom: 18px;
}

.eyebroww {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.76rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-bright);
  font-weight: 600;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold-bright);
}

.section-head {
  max-width: 680px;
  margin-bottom: 64px;
}

.section-head h2 {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.5px;
  color: var(--cream);
}

.section-head h2 em {
  font-style: normal;
  background: linear-gradient(110deg, var(--gold-deep) 0%, var(--gold-bright) 35%, var(--gold) 60%, var(--gold-bright) 85%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-head p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* ============================================================
   MISSION
   ============================================================ */
.mission {
  position: relative;
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.mission-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 64px;
  align-items: start;
}

.mission-numeral {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(7rem, 16vw, 13rem);
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--gold-deep);
  position: relative;
  user-select: none;
}

.mission-numeral::after {
  content: "01";
  position: absolute;
  inset: 0;
  color: transparent;
  background: linear-gradient(180deg, var(--gold-glow), transparent 70%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-stroke: 1.5px var(--gold-bright);
  opacity: 0.5;
}

.mission-copy p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--cream);
  margin-bottom: 24px;
}

.mission-copy p:first-of-type {
  font-size: 1.4rem;
  font-weight: 500;
}

.mission-copy strong {
  color: var(--gold-bright);
  font-weight: 600;
}

.mission-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.mission-tag {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.4px;
  color: var(--gold-bright);
  border: 1px solid var(--gold-deep);
  border-radius: 30px;
  padding: 7px 16px;
  background: rgba(212, 175, 55, 0.05);
}

/* ============================================================
   SOLUTIONS
   ============================================================ */
.solutions {
  border-top: 1px solid var(--border);
  background:
    radial-gradient(ellipse 60% 50% at 85% 0%, rgba(212, 175, 55, 0.06), transparent 60%);
}

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

.solution-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px 32px;
  transition: transform .35s cubic-bezier(.2, .9, .3, 1), border-color .3s, background .3s;
  overflow: hidden;
}

.solution-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  transition: width .4s ease;
}

.solution-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-deep);
  background: #221a10;
}

.solution-card:hover::before {
  width: 100%;
}

.solution-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: var(--gold-deep);
  margin-bottom: 20px;
  display: block;
}

.solution-card h3 {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.solution-card p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.solution-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--gold-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.solution-icon i {
  color: var(--gold-bright);
  font-size: 1.3rem;
}

.reveal-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── See more collapse ── */
.collapse-extra {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.35s ease;
  opacity: 0;
}

.collapse-extra.is-open {
  grid-template-rows: 1fr;
  opacity: 1;
}

.collapse-inner {
  overflow: hidden;
}

.see-more-toggle {
  display: inline-flex;
  align-items: center;
  /* gap: 6px; */
  margin-bottom: 9px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.see-more-toggle .chevron {
  transition: transform 0.3s ease;
}

.see-more-toggle.is-open .chevron {
  transform: rotate(180deg);
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1000px;
  height: 1000px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--gold-glow), transparent 65%);
  opacity: 0.18;
  filter: blur(30px);
}

.stats-row {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.stat {
  text-align: center;
  border-right: 1px solid var(--border);
}

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

.stat-num {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  letter-spacing: -1px;
  background: linear-gradient(110deg, var(--gold-deep), var(--gold-bright));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.stat-label {
  margin-top: 8px;
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   IMPACT
   ============================================================ */
.impact {
  border-top: 1px solid var(--border);
}

.impact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 96px;
}

.impact-row:last-child {
  margin-bottom: 0;
}

.impact-row.reverse .impact-visual {
  order: 2;
}

.impact-row.reverse .impact-copy {
  order: 1;
}

.impact-visual {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 16px;
  background:
    linear-gradient(155deg, var(--surface) 0%, var(--charcoal) 60%),
    repeating-linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0 2px, transparent 2px 18px);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.impact-visual::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-glow), transparent 70%);
  filter: blur(20px);
  opacity: 0.6;
}

.impact-visual i {
  font-size: 3.4rem;
  color: var(--gold-bright);
  position: relative;
  z-index: 1;
  opacity: 0.85;
}

.impact-copy .eyebrow {
  margin-bottom: 14px;
}

.impact-copy h3 {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--cream);
  margin-bottom: 18px;
  letter-spacing: -0.4px;
}

.impact-copy p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 20px;
}

.impact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.impact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--cream);
}

.impact-list li i {
  color: var(--gold-bright);
  margin-top: 3px;
  font-size: 0.9rem;
}

/* ============================================================
   PARTNERS
   ============================================================ */
.partners {
  border-top: 1px solid var(--border);
  background: var(--charcoal);
}

.partner-row {
  max-width: 1200px !important;
}

.partners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.partner-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--gold-deep);
  border-radius: 16px;
  padding: 44px 40px;
  overflow: hidden;
}

.partner-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(212, 175, 55, 0.08), transparent 50%);
  pointer-events: none;
}

.partner-card .partner-mark {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 18px;
  display: block;
}

.partner-card h3 {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--cream);
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.partner-card .partner-loc {
  font-size: 0.85rem;
  color: var(--gold-bright);
  margin-bottom: 18px;
  display: block;
}

.partner-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.partner-card a.partner-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--gold-bright);
  border-bottom: 1px solid var(--gold-deep);
  padding-bottom: 3px;
  transition: gap .2s, color .2s;
}

.partner-card a.partner-cta:hover {
  gap: 12px;
  color: var(--cream);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  text-align: center;
  padding: 140px 24px;
  overflow: hidden;
  isolation: isolate;
  border-top: 1px solid var(--border);
}

.cta-banner {
  background-image:
    url('../images/inde.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  /* overflow: hidden; */
}

.cta-banner::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1200px;
  height: 1200px;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.7);
  animation: spin 26s linear infinite reverse;
  filter: blur(50px);
  z-index: -2;
}

.cta-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

.cta-banner h2 {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  letter-spacing: -1px;
  color: var(--cream);
  max-width: 780px;
  margin: 0 auto 28px;
  line-height: 1.05;
}

.cta-banner h2 em {
  font-style: normal;
  background: linear-gradient(110deg, var(--gold-deep) 0%, var(--gold-bright) 40%, var(--gold) 70%);
  background-size: 260% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-banner p {
  max-width: 560px;
  margin: 0 auto 40px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold-bright));
  color: var(--black);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.3px;
  padding: 15px 34px;
  border-radius: 8px;
  transition: filter .25s, transform .25s, box-shadow .25s;
}

.btn-gold:hover {
  filter: brightness(1.12);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--gold-glow);
  color: var(--black);
}

.btn-gold i {
  font-size: 1rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--charcoal);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  top: -200px;
  left: 50%;
  width: 900px;
  height: 400px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse closest-side, var(--gold-glow), transparent);
  opacity: 0.25;
  pointer-events: none;
}

.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 24px 48px;
  display: grid;
  grid-template-columns: 1.3fr 1.3fr 1.3fr;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.footer-brand .logo-text {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--cream);
}

.footer-brand .logo-text span {
  color: var(--gold-bright);
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 260px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 26px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  border: 1px solid var(--border);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: border-color .2s, color .2s, background .2s, transform .2s;
}

.social-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.social-btn:hover {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
  background: rgba(212, 175, 55, 0.08);
  transform: translateY(-3px);
}

.footer-col h4,
.footer-address h4,
.footer-newsletter h4 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 22px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: var(--muted);
  transition: color .2s, padding-left .2s;
}

.footer-col ul li a:hover {
  color: var(--gold-bright);
  padding-left: 4px;
}

.address-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 15px;
  line-height: 1.5;
}

.address-item svg {
  width: 16px;
  height: 16px;
  fill: var(--gold-bright);
  flex-shrink: 0;
  margin-top: 2px;
}

.newsletter-form {
  display: flex;
  border: 1px solid var(--border);
  border-radius: 9px;
  overflow: hidden;
  background: var(--surface);
  transition: border-color .2s, box-shadow .2s;
}

.newsletter-form:focus-within {
  border-color: var(--gold-bright);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 12px 14px;
  font-size: 0.88rem;
  color: var(--cream);
  font-family: inherit;
}

.newsletter-form input::placeholder {
  color: var(--muted);
}

.newsletter-form button {
  background: linear-gradient(135deg, var(--gold-deep), var(--gold-bright));
  border: none;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: filter .2s;
}

.newsletter-form button:hover {
  filter: brightness(1.15);
}

.newsletter-form button svg {
  width: 16px;
  height: 16px;
  stroke: #0a0806;
  stroke-width: 2.5;
  fill: none;
}

.footer-bar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 22px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.footer-bar p {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
}

.footer-bar p span {
  color: var(--gold-bright);
  font-weight: 600;
}

.footer-bar-links {
  display: flex;
  gap: 24px;
}

.footer-bar-links a {
  font-size: 0.8rem;
  color: var(--muted);
  transition: color .2s;
}

.footer-bar-links a:hover {
  color: var(--gold-bright);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:991px) {
  .navbar-collapse {
    background: var(--surface);
    margin-top: 14px;
    padding: 18px;
    border-radius: 10px;
    border: 1px solid var(--border);
  }

  .nav-link::after {
    display: none;
  }

  .section {
    padding: 90px 24px;
  }

  .mission-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .mission-numeral {
    font-size: 5rem;
  }

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

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

  .stat {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-bottom: 24px;
  }

  .stat:nth-child(2n) {
    border-right: none;
  }

  .impact-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .impact-row.reverse .impact-visual {
    order: 1;
  }

  .impact-row.reverse .impact-copy {
    order: 2;
  }

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

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width:576px) {
  .hero {
    min-height: 80vh;
    padding: 60px 20px 70px;
  }

  .section {
    padding: 70px 20px;
  }

  .stats-row {
    grid-template-columns: 1fr;
    padding: 56px 20px;
  }

  .stat {
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
  }

  .partner-card {
    padding: 32px 26px;
  }

  .cta-banner {
    padding: 100px 20px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

/* compact page header, quieter cousin of the homepage hero */
.page-header {
  position: relative;
  padding: 150px 24px 90px;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(212, 175, 55, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 60% 80% at 50% 30%, rgba(0, 0, 0, 0.9), transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 60% 80% at 50% 30%, rgba(0, 0, 0, 0.9), transparent 75%);
}

.page-header::after {
  content: "";
  position: absolute;
  top: -15%;
  left: 50%;
  width: 700px;
  height: 500px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse closest-side, var(--gold-glow), transparent 70%);
  opacity: 0.3;
  filter: blur(30px);
  z-index: -1;
}

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

.page-header h1 {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  letter-spacing: -1px;
  color: var(--cream);
  margin: 0 auto 18px;
  line-height: 1.04;
}

.page-header h1 em {
  font-style: normal;
  background: linear-gradient(110deg, var(--gold-deep), var(--gold-bright), var(--gold));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-header h1,
.page-header p {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

.page-header p {
  max-width: 560px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.get-in-touch {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url('../images/office.jpeg');
  background-size: cover, cover;
  background-position: center, center;
  background-attachment: scroll, scroll;
  position: relative;
}

/* contact layout: form + info column */
.contact-section {
  border-top: 1px solid var(--border);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 56px;
  align-items: start;
}

/* form panel */
.contact-form-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 44px 40px;
}

.contact-form-panel h2 {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--cream);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.contact-form-panel>p {
  color: var(--muted);
  font-size: 0.93rem;
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.78rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--gold-bright);
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 13px 16px;
  font-size: 0.94rem;
  color: var(--cream);
  font-family: inherit;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpolyline points='2,3 5,7 8,3' fill='none' stroke='%23d4af37' stroke-width='1.4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 38px;
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.form-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 18px;
}

.form-note i {
  color: var(--gold-bright);
}

/* honeypot — visually hidden, still in the tab/DOM flow so bots that
   auto-fill find it, but real users and screen readers skip it */
.hp-field{
  position:absolute;
  left:-9999px;
  width:1px;
  height:1px;
  overflow:hidden;
}

.field-error{
  display:block;
  /* min-height:16px; */
  font-size:0.78rem;
  color:#e2685c;
  margin-top:6px;
}

.form-group input.has-error,
.form-group textarea.has-error{
  border-color:#e2685c;
  box-shadow:0 0 0 3px rgba(226,104,92,0.18);
}

.form-status{
  font-size:0.88rem;
  /* line-height:1.5; */
}
.form-status:empty{ margin:0; }
.form-status.success,
.form-status.error{
  margin:4px 0 20px;
}
.form-status.success{ color:#7fd99a; }
.form-status.error{ color:#e2685c; }

.btn-gold:disabled{
  opacity:0.6;
  cursor:not-allowed;
  transform:none !important;
}

/* info column */
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.office-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 30px 30px 28px;
  transition: border-color .25s, transform .25s;
  overflow: hidden;
}

.office-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  transition: width .4s ease;
}

.office-card:hover {
  border-color: var(--gold-deep);
  transform: translateY(-3px);
}

.office-card:hover::before {
  width: 100%;
}

.office-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-bright);
  font-weight: 600;
  margin-bottom: 16px;
}

.office-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 8px var(--gold-bright);
}

.office-card h3 {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 4px;
  letter-spacing: -0.2px;
}

.office-card .office-entity {
  font-size: 0.84rem;
  color: var(--gold-bright);
  margin-bottom: 18px;
  display: block;
}

.office-detail {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 10px;
  line-height: 1.55;
}

.office-detail:last-child {
  margin-bottom: 0;
}

.office-detail i {
  color: var(--gold-deep);
  margin-top: 2px;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.office-detail a {
  color: var(--muted);
  transition: color .2s;
}

.office-detail a:hover {
  color: var(--gold-bright);
}

/* general contact card */
.general-card {
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 30px;
}

.general-card h4 {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-bright);
  font-weight: 600;
  margin-bottom: 18px;
}

.general-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.general-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.general-row:first-of-type {
  padding-top: 0;
}

.general-row .icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--gold-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.general-row .icon-circle i {
  color: var(--gold-bright);
  font-size: 0.95rem;
}

.general-row a,
.general-row span.value {
  color: var(--cream);
  font-size: 0.92rem;
  font-weight: 500;
}

.general-row a:hover {
  color: var(--gold-bright);
}

.general-row .label {
  display: block;
  font-size: 0.74rem;
  color: var(--muted);
  margin-bottom: 2px;
}

@media (max-width:991px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .page-header {
    padding: 120px 24px 70px;
  }
}

@media (max-width:576px) {
  .contact-form-panel {
    padding: 32px 24px;
  }

  .office-card {
    padding: 26px 24px;
  }

  .general-card {
    padding: 24px 22px;
  }
}

/* .section[id] {
  scroll-margin-top: 160px;
} */

/* ============================================================
   EVENTS LISTING
   ============================================================ */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.event-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .35s cubic-bezier(.2, .9, .3, 1), border-color .3s;
}

.event-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-deep);
}

.event-card-banner {
  position: relative;
  height: 230px;
  background:
    radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.16), transparent 60%),
    linear-gradient(155deg, var(--charcoal) 0%, var(--surface) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.event-card-banner i {
  font-size: 2.4rem;
  color: var(--gold-deep);
  opacity: 0.7;
}

.event-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.event-card-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 8, 6, 0.15) 0%, rgba(10, 8, 6, 0.65) 100%);
  z-index: 1;
  pointer-events: none;
}

.event-date-badge {
  z-index: 2;
}

.event-date-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold-bright));
  color: var(--black);
  border-radius: 10px;
  padding: 8px 14px;
  text-align: center;
  line-height: 1.1;
  z-index: 1;
}

.event-date-badge .day {
  display: block;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
}

.event-date-badge .month {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
}

.event-card-body {
  padding: 26px 26px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.event-tag {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-bright);
  border: 1px solid var(--gold-deep);
  border-radius: 30px;
  padding: 5px 13px;
  background: rgba(212, 175, 55, 0.05);
  margin-bottom: 16px;
}

.event-card-body h3 {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--cream);
  letter-spacing: -0.3px;
  margin-bottom: 12px;
  line-height: 1.2;
}

.event-card-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.event-card-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: var(--muted);
}

.event-card-meta i {
  color: var(--gold-deep);
  font-size: 0.85rem;
  width: 14px;
}

.event-card-body p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 22px;
  flex: 1;
}

.event-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--gold-bright);
  border-bottom: 1px solid var(--gold-deep);
  padding-bottom: 3px;
  align-self: flex-start;
  transition: gap .2s, color .2s;
}

.event-card-cta:hover {
  gap: 12px;
  color: var(--cream);
}

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

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

/* ============================================================
   EVENT DETAIL
   ============================================================ */
.event-hero {
  position: relative;
  padding: 100px 24px 70px;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.event-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(212, 175, 55, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 60% 80% at 50% 30%, rgba(0, 0, 0, 0.9), transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 60% 80% at 50% 30%, rgba(0, 0, 0, 0.9), transparent 75%);
}

.event-hero::after {
  content: "";
  position: absolute;
  top: -15%;
  left: 50%;
  width: 700px;
  height: 500px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse closest-side, var(--gold-glow), transparent 70%);
  opacity: 0.3;
  filter: blur(30px);
  z-index: -1;
}

.event-hero .back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 26px;
  transition: color .2s, gap .2s;
}

.event-hero .back-link:hover {
  color: var(--gold-bright);
  gap: 12px;
}

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

.event-hero h1 {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  letter-spacing: -1px;
  color: var(--cream);
  max-width: 820px;
  margin: 0 auto 30px;
  line-height: 1.06;
}

.event-meta-bar {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.event-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.86rem;
  color: var(--cream);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 9px 18px;
}

.event-meta-pill i {
  color: var(--gold-bright);
  font-size: 0.9rem;
}

.event-detail-banner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 0px 24px;
}

.event-detail-banner img {
  width: 100%;
  aspect-ratio: 21/8;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--border);
  display: block;
}

@media (max-width:576px) {
  .event-detail-banner img {
    aspect-ratio: 16/10;
  }
}

.event-body-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 56px;
  align-items: start;
}

.event-main h2 {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--cream);
  margin: 44px 0 18px;
  letter-spacing: -0.3px;
}

.event-main h2:first-child {
  margin-top: 0;
}

.event-main p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 18px;
}

.agenda-list {
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--border);
  margin-left: 6px;
}

.agenda-item {
  position: relative;
  padding: 0 0 30px 30px;
}

.agenda-item:last-child {
  padding-bottom: 0;
}

.agenda-item::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 2px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 0 4px var(--black), 0 0 10px var(--gold-glow);
}

.agenda-time {
  display: block;
  font-size: 0.76rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-bright);
  font-weight: 600;
  margin-bottom: 6px;
}

.agenda-item h4 {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 1.08rem;
  color: var(--cream);
  margin-bottom: 6px;
  letter-spacing: -0.2px;
}

.agenda-item p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.speakers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.speaker-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
}

.speaker-avatar {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--gold-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}

.speaker-avatar i {
  color: var(--gold-bright);
  font-size: 1.2rem;
}

.speaker-info h4 {
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 2px;
}

.speaker-info span {
  font-size: 0.8rem;
  color: var(--muted);
}

/* sidebar */
.event-sidebar {
  position: sticky;
  top: 130px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.register-card {
  background: var(--surface);
  border: 1px solid var(--gold-deep);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
}

.register-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(212, 175, 55, 0.08), transparent 55%);
  pointer-events: none;
}

.register-card h3 {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 6px;
}

.register-card>p {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 22px;
}

.register-facts {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.register-facts .fact {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--cream);
}

.register-facts .fact i {
  color: var(--gold-deep);
  margin-top: 3px;
  font-size: 0.85rem;
}

.register-facts .fact .label {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 1px;
}

.register-card .btn-gold {
  width: 100%;
  justify-content: center;
}

.share-card {
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 24px;
}

.share-card h4 {
  font-size: 0.74rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-bright);
  font-weight: 600;
  margin-bottom: 16px;
}

.share-card .footer-socials {
  margin-top: 0;
}

@media (max-width:991px) {
  .event-body-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .event-sidebar {
    position: static;
  }

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

  .event-hero {
    padding: 120px 24px 60px;
  }
}


/* Hero */
.container {
  max-width: 1200px;
}

.news-hero {
  padding: 88px 0 94px;
  border-bottom: 1px solid var(--border);
}

.news-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.news-hero-visual {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: linear-gradient(145deg, var(--charcoal), var(--surface));
  border: 1px solid var(--border);
}

.news-hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(212, 175, 55, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(107, 74, 24, 0.25) 0%, transparent 50%);
}

.news-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: opacity 0.5s ease, transform 0.6s ease;
}

.news-hero-visual:hover img {
  opacity: 0.9;
  transform: scale(1.03);
}

.news-hero-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(10, 8, 6, 0.85);
  border: 1px solid var(--gold-bright);
  color: var(--gold-bright);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  backdrop-filter: blur(4px);
}

.news-hero-content h1 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  font-weight: 800;
  color: var(--cream);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.news-hero-content h1 em {
  color: var(--gold);
  font-style: normal;
}

.news-hero-content p {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 24px;
  max-width: 480px;
  line-height: 1.7;
}

.news-hero-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  color: var(--muted);
}

.news-hero-meta .dot {
  width: 4px;
  height: 4px;
  background: var(--bronze);
  border-radius: 50%;
}

.news-hero-meta .author {
  color: var(--cream);
  font-weight: 600;
}

.news-meta{
  display:flex;
  align-items:center;
  gap:16px;
  font-size:0.82rem;
  color:var(--muted);
  margin-bottom:22px;
}
.news-meta span{ display:flex; align-items:center; gap:6px; }
.news-meta i{ color:var(--gold-deep); }

.read-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: gap 0.3s ease;
}

.read-link:hover {
  gap: 14px;
  color: var(--gold-bright);
}

/* Section headers */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 16px;
  /* border-bottom: 1px solid var(--border); */
}

.section-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--cream);
  letter-spacing: -0.01em;
}

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

.view-all {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.25s ease;
}

.view-all:hover {
  color: var(--gold);
}

/* News grid */
.news-grid {
  padding: 64px 0;
}

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

/* Card */
.card {
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-deep);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(212, 175, 55, 0.08);
}

.card-image {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--surface), #251e14);
  position: relative;
  overflow: hidden;
}

.card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--charcoal) 0%, transparent 40%);
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transition: opacity 0.4s ease, transform 0.5s ease;
}

.card:hover .card-image img {
  opacity: 0.85;
  transform: scale(1.05);
}

.card-category {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(10, 8, 6, 0.8);
  border: 1px solid var(--border);
  color: var(--gold);
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  z-index: 2;
}

.card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-date {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-date::before {
  content: "";
  width: 16px;
  height: 1px;
  background: var(--bronze);
}

.card h3 {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--cream);
  margin-bottom: 10px;
  transition: color 0.25s ease;
}

.card:hover h3 {
  color: var(--gold-bright);
}

.card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}

.card-footer {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-author {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

.card-readtime {
  font-size: 12px;
  color: var(--bronze);
}

/* Trending sidebar section */
.trending-strip {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(28, 22, 16, 0.5) 0%, transparent 100%);
}

.trending-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trend-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}

.trend-item:hover {
  background: rgba(212, 175, 55, 0.04);
  border-color: var(--border);
}

.trend-rank {
  font-size: 32px;
  font-weight: 800;
  color: var(--bronze);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  transition: color 0.3s ease;
}

.trend-item:hover .trend-rank {
  color: var(--gold);
}

.trend-content h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.4;
  margin-bottom: 6px;
  transition: color 0.25s ease;
}

.trend-item:hover h4 {
  color: var(--gold-bright);
}

.trend-content span {
  font-size: 12px;
  color: var(--muted);
}

/* Categories */
.categories {
  padding: 48px 0;
}

.cat-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cat-pill {
  padding: 10px 20px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--charcoal);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
}

.cat-pill:hover,
.cat-pill.active {
  border-color: var(--gold);
  color: var(--gold-bright);
  background: rgba(212, 175, 55, 0.06);
  box-shadow: 0 0 16px var(--gold-glow);
}

/* Newsletter */
.newsletter {
  padding: 80px 0;
  text-align: center;
}

.newsletter-box {
  max-width: 560px;
  margin: 0 auto;
  padding: 48px 40px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: linear-gradient(145deg, var(--charcoal), var(--surface));
  position: relative;
  overflow: hidden;
}

.newsletter-box::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 60%);
  opacity: 0.4;
  pointer-events: none;
}

.newsletter h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--cream);
  margin-bottom: 10px;
  position: relative;
}

.newsletter p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 28px;
  position: relative;
}

.nl-form {
  display: flex;
  gap: 12px;
  position: relative;
}

.nl-form input {
  flex: 1;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--black);
  color: var(--cream);
  font-size: 14px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.nl-form input::placeholder {
  color: var(--bronze);
}

.nl-form input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.nl-form button {
  padding: 14px 28px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold));
  color: var(--black);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nl-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--gold-glow);
}

/* Responsive */
@media (max-width: 1024px) {
  .news-hero-grid {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .trending-list {
    grid-template-columns: 1fr;
  }

  .nl-form {
    flex-direction: column;
  }

  .news-hero {
    padding: 32px 0 48px;
  }
}

/* news detail */

article .container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Breadcrumb */
.breadcrumb {
  padding-top: 32px;
  margin-bottom: 24px;
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.25s ease;
}

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

.breadcrumb span {
  color: var(--bronze);
  margin: 0 8px;
  font-size: 13px;
}

.breadcrumb .current {
  color: var(--cream);
  font-size: 13px;
}

/* Article header */
.article-header {
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}

.article-category {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 20px;
}

.article-category::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.article-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.article-title em {
  color: var(--gold);
  font-style: normal;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.meta-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.meta-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-deep), var(--bronze));
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--cream);
}

.meta-author-info strong {
  display: block;
  font-size: 14px;
  color: var(--cream);
  font-weight: 600;
}

.meta-author-info span {
  font-size: 12px;
  color: var(--muted);
}

.meta-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
}

.meta-stats {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--muted);
}

.meta-stats svg {
  vertical-align: middle;
  margin-right: 4px;
}

/* Share bar */
.share-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
}

.share-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-right: 6px;
}

.share-btn {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--charcoal);
  color: var(--muted);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.share-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 12px var(--gold-glow);
  transform: translateY(-2px);
}

/* Hero image */
.article-hero {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 48px;
  border: 1px solid var(--border);
}

.article-hero img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.85;
  transition: opacity 0.5s ease;
}

.article-hero:hover img {
  opacity: 1;
}

.article-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--black), transparent);
  pointer-events: none;
}

/* .hero-caption {
    position: relative;
    bottom: 16px;
    left: 20px;
    font-size: 12px;
    color: var(--muted);
    z-index: 2;
    font-style: italic;
  } */

/* Article body */
.article-body {
  font-size: 17px;
  color: var(--cream);
}

.article-body p {
  margin-bottom: 24px;
  color: #c4b89a;
}

.article-body h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--cream);
  margin: 48px 0 20px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.article-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--gold-bright);
  margin: 36px 0 16px;
}

.article-body blockquote {
  margin: 36px 0;
  padding: 24px 28px;
  border-left: 3px solid var(--gold);
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.06), transparent);
  border-radius: 0 10px 10px 0;
  font-size: 20px;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.5;
  font-style: italic;
}

.article-body blockquote cite {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  font-style: normal;
}

.article-body ul,
.article-body ol {
  margin: 0 0 24px 24px;
  color: #c4b89a;
}

.article-body li {
  margin-bottom: 10px;
  padding-left: 8px;
}

.article-body li::marker {
  color: var(--gold);
}

.article-body a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--bronze);
  transition: text-decoration-color 0.25s ease, color 0.25s ease;
}

.article-body a:hover {
  color: var(--gold-bright);
  text-decoration-color: var(--gold);
}

.article-body strong {
  color: var(--cream);
  font-weight: 700;
}

/* Inline image */
.inline-figure {
  margin: 40px 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.inline-figure img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.8;
  transition: opacity 0.4s ease;
}

.inline-figure:hover img {
  opacity: 1;
}

.inline-figure figcaption {
  padding: 12px 16px;
  font-size: 12px;
  color: var(--muted);
  background: var(--charcoal);
  border-top: 1px solid var(--border);
}

/* Pull stat */
.pull-stat {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 40px 0;
  padding: 28px;
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: border-color 0.3s ease;
}

.pull-stat:hover {
  border-color: var(--gold-deep);
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.stat-label {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
}

.stat-label strong {
  display: block;
  color: var(--cream);
  font-size: 16px;
  margin-bottom: 4px;
}

/* Tags */
.article-tags {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.tags-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.tag {
  padding: 6px 14px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--charcoal);
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s ease;
}

.tag:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
  background: rgba(212, 175, 55, 0.06);
}

/* Author bio */
.author-bio {
  margin-top: 48px;
  padding: 28px;
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: border-color 0.3s ease;
}

.author-bio:hover {
  border-color: var(--gold-deep);
}

.bio-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-deep), var(--bronze));
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 22px;
  color: var(--cream);
  flex-shrink: 0;
}

.bio-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 6px;
}

.bio-content .bio-role {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.bio-content p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* Related */
.related-section {
  padding: 64px 0 80px;
  border-top: 1px solid var(--border);
  margin-top: 64px;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
}

.section-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--cream);
  letter-spacing: -0.01em;
}

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

.view-all {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.25s ease;
}

.view-all:hover {
  color: var(--gold);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.related-card {
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.related-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-deep);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(212, 175, 55, 0.06);
}

.related-card .thumb {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--surface), #251e14);
  position: relative;
  overflow: hidden;
}

.related-card .thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--charcoal) 0%, transparent 40%);
}

.related-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transition: opacity 0.4s ease, transform 0.5s ease;
}

.related-card:hover .thumb img {
  opacity: 0.8;
  transform: scale(1.05);
}

.related-card .rc-body {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.rc-date {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.rc-body h4 {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--cream);
  margin-bottom: 10px;
  transition: color 0.25s ease;
}

.related-card:hover h4 {
  color: var(--gold-bright);
}

.rc-body p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
}

.rc-footer {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--bronze);
}

/* Reading progress */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold), var(--gold-bright));
  z-index: 101;
  width: 0%;
  transition: width 0.1s linear;
}

/* Responsive */
@media (max-width: 1024px) {
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .article-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .meta-divider {
    display: none;
  }

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

  .pull-stat {
    flex-direction: column;
    text-align: center;
  }

  .author-bio {
    flex-direction: column;
    text-align: center;
  }

  .article-body {
    font-size: 16px;
  }
}

/* ── Gallery ── */
.gallery-section {
  margin-top: 64px;
}

.gallery-section h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--cream);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.gallery-section .gallery-sub {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 28px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--charcoal);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.gallery-item:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: var(--gold-deep);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(212, 175, 55, 0.08);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.75;
  transition: opacity 0.4s ease, transform 0.5s ease;
}

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

.gallery-item .zoom-icon {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(10, 8, 6, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .zoom-icon {
  opacity: 1;
}

.gallery-item .zoom-icon svg {
  width: 32px;
  height: 32px;
  color: var(--gold-bright);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6));
}

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 8, 6, 0.95);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-img-wrap {
  position: relative;
  max-width: 85vw;
  max-height: 85vh;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  transform: scale(0.92);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox.active .lightbox-img-wrap {
  transform: scale(1);
}

.lightbox-img-wrap img {
  max-width: 85vw;
  max-height: 85vh;
  display: block;
  object-fit: contain;
}

.lightbox-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(10, 8, 6, 0.9), transparent);
  color: var(--cream);
  font-size: 14px;
  font-weight: 500;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--charcoal);
  color: var(--muted);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 10;
}

.lightbox-close:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 16px var(--gold-glow);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--charcoal);
  color: var(--muted);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 10;
}

.lightbox-nav:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 16px var(--gold-glow);
}

.lightbox-nav.prev {
  left: 24px;
}

.lightbox-nav.next {
  right: 24px;
}

.lightbox-counter {
  position: absolute;
  top: 24px;
  left: 24px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.04em;
  background: var(--charcoal);
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid var(--border);
}

/* Responsive */
@media (max-width: 1024px) {
  .event-grid {
    grid-template-columns: 1fr;
  }

  .event-sidebar {
    position: static;
  }

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

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

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

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

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

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

  .lightbox-nav {
    display: none;
  }
}

/* Page hero */
  .privacy-page-hero {
    padding: 64px 0 48px;
    border-bottom: 1px solid var(--border);
    text-align: center;
  }
  .privacy-page-hero .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--gold);
    margin-bottom: 16px;
  }
  .privacy-page-hero .eyebrow::before {
    content: "";
    width: 24px;
    height: 1px;
    background: var(--gold);
  }
  .privacy-page-hero .eyebrow::after {
    content: "";
    width: 24px;
    height: 1px;
    background: var(--gold);
  }
  .privacy-page-hero h1 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    color: var(--cream);
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 16px;
  }
  .privacy-page-hero h1 em {
    color: var(--gold);
    font-style: normal;
  }
  .privacy-page-hero .last-updated {
    font-size: 14px;
    color: var(--muted);
  }
  .privacy-page-hero .last-updated strong {
    color: var(--cream);
    font-weight: 600;
  }
  /* Layout */
  .policy-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 64px;
    padding: 48px 0 80px;
    align-items: start;
  }

  /* Main content */
  .policy-content {
    min-width: 0;
  }
  .policy-section {
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
    scroll-margin-top: 96px;
  }
  .policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .policy-section h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 20px;
    line-height: 1.3;
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .policy-section h2 .section-num {
    font-size: 13px;
    font-weight: 800;
    color: var(--gold);
    width: 32px;
    height: 32px;
    border: 1px solid var(--gold);
    border-radius: 8px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
  }
  .policy-section h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gold-bright);
    margin: 28px 0 12px;
  }
  .policy-section p {
    font-size: 16px;
    color: #b8aa8a;
    margin-bottom: 16px;
  }
  .policy-section ul, .policy-section ol {
    margin: 0 0 16px 20px;
    color: #b8aa8a;
    font-size: 16px;
  }
  .policy-section li {
    margin-bottom: 8px;
    padding-left: 4px;
  }
  .policy-section li::marker {
    color: var(--gold);
  }
  .policy-section a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: var(--bronze);
    transition: text-decoration-color 0.25s ease, color 0.25s ease;
  }
  .policy-section a:hover {
    color: var(--gold-bright);
    text-decoration-color: var(--gold);
  }

  /* Info box */
  .info-box {
    background: var(--charcoal);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px 24px;
    margin: 24px 0;
    display: flex;
    align-items: flex-start;
    gap: 14px;
  }
  .info-box-icon {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: rgba(212,175,55,0.08);
    border: 1px solid var(--gold-deep);
    display: grid;
    place-items: center;
    color: var(--gold);
    flex-shrink: 0;
  }
  .info-box p {
    margin: 0;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
  }
  .info-box p strong {
    color: var(--cream);
  }

  /* Definition list */
  .def-list {
    margin: 20px 0;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
  }
  .def-item {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    background: var(--charcoal);
  }
  .def-item:last-child { border-bottom: none; }
  .def-term {
    font-size: 14px;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 4px;
  }
  .def-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
  }

  /* Sidebar TOC */
  .policy-sidebar {
    position: sticky;
    top: 130px;
  }
  .toc-card {
    background: var(--charcoal);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
  }
  .toc-card h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 16px;
  }
  .toc-list {
    list-style: none;
  }
  .toc-list li { margin-bottom: 2px; }
  .toc-list a {
    display: block;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    color: var(--muted);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    border-left: 2px solid transparent;
  }
  .toc-list a:hover {
    color: var(--cream);
    background: rgba(212,175,55,0.04);
  }
  .toc-list a.active {
    color: var(--gold-bright);
    background: rgba(212,175,55,0.06);
    border-left-color: var(--gold);
    font-weight: 600;
  }

  /* ============================================
   RESPONSIVE OVERRIDES — Privacy Policy
   ============================================ */

/* ── Tablet & below (≤1023px) ────────────── */
@media (max-width: 1023px) {
  .policy-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 32px 0 60px;
  }

  .policy-sidebar {
    position: static;        /* un-stick */
    top: auto;
    order: 1;               /* move TOC above content on mobile */
  }

  .policy-section {
    margin-bottom: 36px;
    padding-bottom: 36px;
    scroll-margin-top: 80px;
  }

  .policy-section h2 {
    font-size: 20px;
    gap: 10px;
  }
  .policy-section h2 .section-num {
    width: 28px;
    height: 28px;
    font-size: 11px;
    border-radius: 6px;
  }

  .policy-section h3 {
    font-size: 16px;
    margin: 22px 0 10px;
  }

  .policy-section p,
  .policy-section ul,
  .policy-section ol {
    font-size: 15px;
  }

  .info-box {
    padding: 16px 18px;
    gap: 12px;
  }
  .info-box-icon {
    width: 32px;
    height: 32px;
  }
  .info-box p {
    font-size: 13px;
  }

  .def-item {
    padding: 14px 16px;
  }
  .def-term, .def-desc {
    font-size: 13px;
  }

  .toc-card {
    padding: 20px;
    border-radius: 12px;
  }
  .toc-list a {
    padding: 7px 10px;
    font-size: 13px;
  }
}

/* ── Mobile (≤767px) ──────────────────────── */
@media (max-width: 767px) {
  .policy-layout {
    gap: 28px;
    padding: 24px 0 48px;
  }

  .policy-section {
    margin-bottom: 28px;
    padding-bottom: 28px;
    scroll-margin-top: 72px;
  }

  .policy-section h2 {
    font-size: 18px;
    gap: 8px;
    flex-wrap: wrap;         /* allow wrap if title is long */
  }
  .policy-section h2 .section-num {
    width: 26px;
    height: 26px;
    font-size: 10px;
  }

  .policy-section h3 {
    font-size: 15px;
    margin: 20px 0 8px;
  }

  .policy-section p,
  .policy-section ul,
  .policy-section ol {
    font-size: 14px;
    line-height: 1.65;
  }

  .policy-section ul,
  .policy-section ol {
    margin-left: 16px;
  }
  .policy-section li {
    margin-bottom: 6px;
    padding-left: 2px;
  }

  /* Info box stack vertically on very small screens */
  .info-box {
    flex-direction: column;
    gap: 10px;
    padding: 14px 16px;
  }

  /* Definition list tighter */
  .def-list {
    border-radius: 10px;
  }
  .def-item {
    padding: 12px 14px;
  }

  /* Sidebar / TOC */
  .toc-card {
    padding: 16px;
    border-radius: 10px;
  }
  .toc-card h4 {
    font-size: 12px;
    margin-bottom: 12px;
  }
  .toc-list a {
    padding: 6px 8px;
    font-size: 12px;
    border-radius: 6px;
  }

  .contact-cta {
    padding: 16px;
  }
  .contact-cta h4 {
    font-size: 14px;
  }
  .contact-cta p {
    font-size: 13px;
  }
}

/* ── Small Mobile (≤480px) ──────────────── */
@media (max-width: 480px) {
  .policy-section h2 {
    font-size: 17px;
  }
  .policy-section h3 {
    font-size: 14px;
  }
  .policy-section p,
  .policy-section ul,
  .policy-section ol {
    font-size: 13.5px;
  }

  .info-box {
    margin: 16px 0;
  }
}

  /* Contact CTA */
  .contact-cta {
    margin-top: 24px;
    background: linear-gradient(145deg, var(--charcoal), var(--surface));
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
  }
  .contact-cta h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 8px;
  }
  .contact-cta p {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 16px;
    line-height: 1.6;
  }
  .contact-cta a {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--gold-deep), var(--gold));
    color: var(--black);
    font-weight: 700;
    font-size: 13px;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .contact-cta a:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px var(--gold-glow);
  }

/* Card hover hint */
  .image-card {
    position: relative;
    display: inline-block;
    border-radius: 18px;
    overflow: hidden;
    cursor: zoom-in;
    border: none;
    transition: box-shadow 0.3s ease;
  }
  .image-card:hover {
    box-shadow: 0 0 24px rgba(212, 175, 55, 0.2);
  }
  .image-card img {
    display: block;
    max-width: 100%;
    transition: transform 0.4s ease;
  }
  .image-card:hover img {
    transform: scale(1.03);
  }

  /* Dialog backdrop + box */
  .img-dialog {
    padding: 0;
    border: none;
    background: transparent;
    max-width: 90vw;
    max-height: 90vh;
  }
  .img-dialog::backdrop {
    background: rgba(10, 8, 6, 0.92);
    backdrop-filter: blur(6px);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .img-dialog[open]::backdrop {
    opacity: 1;
  }

  /* Dialog image wrap */
  .img-dialog-inner {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border, #332815);
    box-shadow: 0 24px 64px rgba(0,0,0,0.6);
  }
  .img-dialog-inner img {
    display: block;
    max-width: 85vw;
    max-height: 85vh;
    object-fit: contain;
  }

  /* Close button */
  .img-dialog-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid var(--border, #332815);
    background: rgba(21, 17, 11, 0.9);
    color: var(--muted, #9c8e72);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 2;
  }
  .img-dialog-close:hover {
    border-color: var(--gold, #d4af37);
    color: var(--gold, #d4af37);
  }

  /* Open animation */
  .img-dialog[open] {
    animation: dialogIn 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  @keyframes dialogIn {
    from { opacity: 0; transform: scale(0.92); }
    to   { opacity: 1; transform: scale(1); }
  }

  /* ============================================================
   NEWS — magazine layout
   ============================================================ */
.news-featured{
  position:relative;
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:0;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:18px;
  overflow:hidden;
  /* margin-bottom:80px; */
}
.news-featured-image{
  position:relative;
  min-height:340px;
}
.news-featured-image img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}
.news-featured-body{
  padding:44px 44px 40px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.news-featured-body .event-tag{ margin-bottom:18px; }
.news-featured-body h2{
  font-family:'Big Shoulders Display', sans-serif;
  font-weight:800;
  font-size:clamp(1.6rem, 3vw, 2.2rem);
  color:var(--cream);
  line-height:1.12;
  letter-spacing:-0.4px;
  margin-bottom:16px;
}
.news-featured-body p{
  color:var(--muted);
  font-size:0.96rem;
  line-height:1.75;
  margin-bottom:24px;
}
.news-meta{
  display:flex;
  align-items:center;
  gap:16px;
  font-size:0.82rem;
  color:var(--muted);
  margin-bottom:22px;
}
.news-meta span{ display:flex; align-items:center; gap:6px; }
.news-meta i{ color:var(--gold-deep); }

@media (max-width:820px){
  .news-featured{ grid-template-columns:1fr; }
  .news-featured-image{ min-height:220px; }
  .news-featured-body{ padding:34px 28px; }
}


  /* ============================================================
   NEWS DETAIL MODAL
   ============================================================ */
.news-modal .modal-content{
  background:var(--surface);
  border:1px solid var(--gold-deep);
  border-radius:18px;
  overflow:hidden;
  position:relative;
}
.news-modal .modal-dialog{ max-width:760px; }

.btn-close-gold{
  position:absolute;
  top:18px; right:18px;
  z-index:3;
  width:38px; height:38px;
  border-radius:50%;
  border:1px solid rgba(244,236,216,0.25);
  background:rgba(10,8,6,0.55);
  backdrop-filter:blur(6px);
  color:var(--cream);
  display:flex; align-items:center; justify-content:center;
  font-size:0.9rem;
  transition:background .2s, border-color .2s, transform .2s;
}
.btn-close-gold:hover{
  background:rgba(212,175,55,0.18);
  border-color:var(--gold-bright);
  color:var(--gold-bright);
  transform:rotate(90deg);
}

.modal-banner{
  position:relative;
  width:100%;
  aspect-ratio:16/8;
  overflow:hidden;
}
.modal-banner img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}
.modal-banner::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, transparent 60%, var(--surface) 100%);
}

.modal-body-content{
  padding:8px 40px 40px;
  max-height:min(60vh, 560px);
  overflow-y:auto;
}
.modal-body-content .event-tag{ margin-top:-18px; position:relative; z-index:1; }
.modal-body-content h2{
  font-family:'Big Shoulders Display', sans-serif;
  font-weight:800;
  font-size:1.5rem;
  color:var(--cream);
  line-height:1.2;
  letter-spacing:-0.3px;
  margin:16px 0 14px;
}
.modal-body-content .news-meta{
  flex-wrap:wrap;
  margin-bottom:22px;
}
.modal-body-content p{
  color:var(--muted);
  font-size:0.94rem;
  line-height:1.75;
  margin-bottom:16px;
}
.modal-body-content p em{
  color:var(--gold-bright);
  font-style:normal;
  font-weight:500;
}
.modal-body-content .event-card-cta{ margin-top:6px; }

/* scrollbar inside modal body, dark themed */
/* .modal-body-content::-webkit-scrollbar{ width:8px; }
.modal-body-content::-webkit-scrollbar-track{ background:transparent; }
.modal-body-content::-webkit-scrollbar-thumb{
  background:var(--gold-deep);
  border-radius:8px;
} */

.modal-backdrop.show{ opacity:0.85; }

@media (max-width:576px){
  .modal-banner{ aspect-ratio:16/10; }
  .modal-body-content{ padding:8px 22px 30px; }
}
