@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@300;400;500;600;700;800&family=Noto+Sans+Sinhala:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-1: #0b0304;
  --bg-2: #150609;
  --bg-3: #22090d;
  --card: rgba(255,255,255,0.05);
  --card-strong: rgba(255,255,255,0.08);
  --border: rgba(255,255,255,0.10);
  --gold: #d4af37;
  --gold-soft: #f3d77a;
  --text: #ffffff;
  --muted: rgba(255,255,255,0.72);
  --muted-2: rgba(255,255,255,0.58);
  --shadow: 0 18px 60px rgba(0,0,0,0.35);
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: 'Noto Sans', 'Noto Sans Sinhala', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(212,175,55,0.10), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(123,17,40,0.22), transparent 22%),
    linear-gradient(180deg, var(--bg-3), var(--bg-1));
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.14;
  mask-image: radial-gradient(circle at center, black 38%, transparent 88%);
  z-index: -2;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

/* =========================
   NAVBAR / GLOBAL
========================= */

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(20, 6, 8, 0.72);
  border-bottom: 1px solid rgba(212,175,55,0.08);
}

.topbar-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(212,175,55,0.28);
  background: #2a0b11;
  color: var(--gold-soft);
  font-weight: 900;
  letter-spacing: 0.16em;
  flex-shrink: 0;
  box-shadow: 0 0 28px rgba(212,175,55,0.08);
}

.brand-kicker {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--gold);
  margin-bottom: 4px;
}

.brand-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255,255,255,0.76);
  font-size: 14px;
}

.nav-links a {
  position: relative;
  transition: color .25s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
  transition: width .25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-soft);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(212,175,55,0.2);
  background: rgba(255,255,255,0.04);
  color: white;
  cursor: pointer;
}

.page-shell {
  padding: 52px 0 70px;
}

.footer {
  padding: 0 0 32px;
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
}

.hero-badge,
.section-kicker,
.panel-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(212,175,55,0.18);
  background: rgba(255,255,255,0.04);
  color: var(--gold-soft);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.gold-text {
  color: var(--gold-soft);
}

/* =========================
   BUTTONS
========================= */

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 18px;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
  font-weight: 700;
}

.primary-btn {
  background: var(--gold);
  color: #2a0b11;
  box-shadow: 0 14px 44px rgba(212,175,55,0.18);
}

.secondary-btn {
  background: rgba(255,255,255,0.05);
  color: white;
  border: 1px solid rgba(255,255,255,0.14);
}

.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-2px);
}

/* =========================
   HOME PAGE
========================= */

.home-hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: center;
  min-height: calc(100vh - 150px);
}

.home-hero-content h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.home-hero-content p {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.9;
  font-size: 16px;
}

.home-quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.quick-card,
.home-hero-card,
.home-intro-card,
.preview-card,
.home-cta-card,
.panel,
.article-card,
.article-hero-card,
.reading-card,
.related-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.quick-card,
.home-hero-card,
.home-intro-card,
.preview-card,
.home-cta-card,
.article-card,
.related-card {
  transition: transform .28s ease, border-color .28s ease, background .28s ease;
}

.quick-card:hover,
.home-hero-card:hover,
.home-intro-card:hover,
.preview-card:hover,
.home-cta-card:hover,
.article-card:hover,
.related-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212,175,55,0.28);
  background: var(--card-strong);
}

.quick-card {
  padding: 16px;
}

.quick-card strong {
  display: block;
  color: var(--gold-soft);
  font-size: 18px;
  margin-bottom: 4px;
}

.quick-card span {
  color: rgba(255,255,255,0.62);
  font-size: 14px;
}

.home-hero-card {
  padding: 26px;
  background: linear-gradient(180deg, rgba(123,17,40,0.34), rgba(255,255,255,0.04));
}

.home-hero-card h2,
.home-intro-card h2,
.home-cta-card h2,
.section-heading-row h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.08;
}

.vision-list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.vision-item {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.08);
}

.vision-number {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(212,175,55,0.12);
  color: var(--gold-soft);
  font-size: 14px;
  font-weight: 800;
}

.vision-item h3,
.preview-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.vision-item p,
.home-intro-card p,
.preview-card p,
.home-cta-card p,
.section-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 15px;
}

.home-intro-section {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 22px;
  margin-top: 18px;
}

.home-intro-card {
  padding: 28px;
}

.home-preview-section {
  padding-top: 34px;
}

.section-heading-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 22px;
}

.section-note {
  max-width: 520px;
  color: var(--muted-2);
}

.home-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.preview-card {
  padding: 24px;
}

.preview-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(212,175,55,0.10);
  border: 1px solid rgba(212,175,55,0.24);
  color: var(--gold-soft);
  font-size: 22px;
  margin-bottom: 16px;
}

.preview-card span {
  display: inline-block;
  margin-top: 14px;
  color: var(--gold-soft);
  font-weight: 600;
}

.home-cta-section {
  padding-top: 34px;
}

.home-cta-card {
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 22px;
  background: linear-gradient(135deg, rgba(123,17,40,0.68), rgba(33,10,14,0.94));
}

/* =========================
   DISCOVER / ARTICLES LIST
========================= */

.hero {
  margin-bottom: 28px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero p {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.85;
  font-size: 16px;
}

.section-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 24px;
  align-items: start;
}

.panel {
  padding: 22px;
  position: sticky;
  top: 92px;
}

.panel h3,
.reading-card h2 {
  margin: 0 0 14px;
  font-size: 20px;
}

.panel p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 15px;
}

.search-box,
.filter-select {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.18);
  color: white;
  border-radius: 14px;
  padding: 13px 14px;
  outline: none;
}

.search-box::placeholder {
  color: rgba(255,255,255,0.42);
}

.filter-group {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.tag-btn {
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.78);
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
  transition: .25s ease;
}

.tag-btn:hover,
.tag-btn.active {
  border-color: rgba(212,175,55,0.28);
  color: var(--gold-soft);
  background: rgba(212,175,55,0.08);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.article-card {
  overflow: hidden;
}

.article-thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(123,17,40,0.18));
}

.article-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-body {
  padding: 20px;
}

.article-meta,
.reading-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}

.article-tag,
.reading-tag {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(212,175,55,0.10);
  color: var(--gold-soft);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.meta-text {
  color: rgba(255,255,255,0.52);
  font-size: 13px;
}

.article-card h3,
.related-card h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.35;
}

.article-card p,
.related-card p,
.reading-body p,
.reading-body li {
  color: var(--muted);
  line-height: 1.85;
  font-size: 15px;
}

.read-link,
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--gold-soft);
  font-weight: 600;
}

.empty-state {
  display: none;
  padding: 30px;
  text-align: center;
  border: 1px dashed rgba(212,175,55,0.2);
  border-radius: var(--radius-lg);
  color: var(--muted);
}

/* =========================
   FULL ARTICLE PAGE
========================= */

.reading-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 24px;
}

.reading-card,
.article-hero-card {
  overflow: hidden;
}

.article-hero-card {
  margin-bottom: 20px;
}

.reading-cover {
  aspect-ratio: 16 / 7;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(212,175,55,0.12), rgba(123,17,40,0.22));
}

.reading-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reading-inner {
  padding: 26px;
}

.reading-card h1 {
  margin: 0;
  font-size: clamp(28px, 5vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.reading-excerpt {
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.9;
  font-size: 16px;
}

.reading-body {
  padding: 28px 26px 30px;
}

.reading-body h2,
.reading-body h3 {
  margin: 28px 0 12px;
  line-height: 1.2;
}

.reading-body ul {
  padding-left: 20px;
}

.related-list {
  display: grid;
  gap: 16px;
}

.related-card {
  padding: 18px;
}

.hidden {
  display: none !important;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 980px) {
  .home-hero,
  .home-intro-section,
  .home-preview-grid,
  .home-cta-card,
  .section-grid,
  .reading-layout {
    grid-template-columns: 1fr;
  }

  .home-hero,
  .home-intro-section,
  .home-preview-grid {
    display: grid;
  }

  .home-cta-card {
    display: grid;
  }

  .home-quick-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .panel {
    position: static;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    padding: 16px;
    border-radius: 20px;
    background: rgba(20, 6, 8, 0.96);
    border: 1px solid rgba(212,175,55,0.12);
    backdrop-filter: blur(18px);
    flex-direction: column;
    align-items: flex-start;
    display: none;
    gap: 16px;
  }

  .nav-links.show {
    display: flex;
  }

  .menu-btn {
    display: inline-grid;
    place-items: center;
  }

  .article-grid {
    grid-template-columns: 1fr;
  }

  .section-heading-row {
    display: block;
  }

  .section-note {
    margin-top: 12px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 20px, 1180px);
  }

  .brand-title {
    font-size: 12px;
    max-width: 160px;
  }

  .brand-kicker {
    font-size: 8px;
    letter-spacing: 0.14em;
  }

  .page-shell {
    padding-top: 28px;
  }

  .hero-badge,
  .section-kicker,
  .panel-kicker {
    width: 100%;
    justify-content: center;
    text-align: center;
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .home-hero {
    min-height: auto;
    gap: 18px;
  }

  .home-hero-content h1 {
    font-size: clamp(32px, 11vw, 48px);
    line-height: 1.01;
  }

  .hero h1 {
    font-size: clamp(30px, 10vw, 42px);
  }

  .hero-actions {
    flex-direction: column;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
  }

  .home-quick-grid,
  .home-preview-grid {
    grid-template-columns: 1fr;
  }

  .quick-card,
  .home-hero-card,
  .home-intro-card,
  .preview-card,
  .home-cta-card,
  .panel,
  .article-body,
  .reading-inner,
  .reading-body,
  .related-card {
    padding: 18px;
  }

  .vision-item {
    grid-template-columns: 34px 1fr;
    padding: 14px;
  }

  .vision-number {
    width: 34px;
    height: 34px;
    font-size: 13px;
  }

  .vision-item h3,
  .preview-card h3,
  .article-card h3,
  .related-card h3 {
    font-size: 19px;
  }

  .home-hero-card h2,
  .home-intro-card h2,
  .home-cta-card h2,
  .section-heading-row h2 {
    font-size: clamp(24px, 8vw, 32px);
  }
}
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <title>Ananda College Research & Exploration Society</title>
  <meta name="description" content="Official home page of the Ananda College Research & Exploration Society." />
  <link rel="stylesheet" href="styles.css" />
</head>
<body>
  <header class="topbar">
    <div class="container topbar-inner">
      <a href="index.html" class="brand">
        <div class="brand-icon">AR</div>
        <div>
          <div class="brand-kicker">Ananda College</div>
          <div class="brand-title">Research &amp; Exploration Society</div>
        </div>
      </a>

      <nav class="nav-links" id="navLinks">
        <a href="index.html" class="active">Home</a>
        <a href="discover.html">Articles</a>
        <a href="projects.html">Projects</a>
        <a href="officials.html">Officials</a>
        <a href="join.html">Join</a>
      </nav>

      <button class="menu-btn" id="menuBtn" aria-label="Open menu">
        <span></span>
        <span></span>
        <span></span>
      </button>
    </div>
  </header>

  <div class="mobile-menu-overlay" id="mobileMenuOverlay">
    <button class="mobile-close" id="mobileClose" aria-label="Close menu">×</button>
    <div class="mobile-menu-inner">
      <a href="index.html" class="active">Home</a>
      <a href="discover.html">Articles</a>
      <a href="projects.html">Projects</a>
      <a href="officials.html">Officials</a>
      <a href="join.html">Join</a>
    </div>
  </div>

  <main class="page-shell home-page-clean">
    <section class="container home-hero refined-hero">
      <div class="home-hero-content hero-reveal hero-reveal-1">
        <div class="hero-badge">Research • Inquiry • Exploration • Innovation</div>
        <h1>A home for <span class="gold-text">curious minds</span>.</h1>
        <p>
          The Ananda College Research &amp; Exploration Society is a student-led platform built for questions, ideas, discovery,
          and meaningful work. Clean, focused, and forward-looking — just like the society itself.
        </p>

        <div class="hero-actions">
          <a href="discover.html" class="primary-btn">Explore Articles</a>
          <a href="projects.html" class="secondary-btn">View Projects</a>
        </div>
      </div>

      <div class="home-hero-visual hero-reveal hero-reveal-2">
        <div class="home-hero-card refined-vision-card">
          <div class="section-kicker">Society Vision</div>
          <h2>Turning curiosity into action.</h2>

          <div class="vision-list compact-vision-list">
            <div class="vision-item">
              <div class="vision-number">01</div>
              <div>
                <h3>Question</h3>
                <p>Think deeper. Ask sharper questions.</p>
              </div>
            </div>

            <div class="vision-item">
              <div class="vision-number">02</div>
              <div>
                <h3>Explore</h3>
                <p>Go beyond the classroom and investigate ideas.</p>
              </div>
            </div>

            <div class="vision-item">
              <div class="vision-number">03</div>
              <div>
                <h3>Create</h3>
                <p>Turn thought into articles, projects, and impact.</p>
              </div>
            </div>
          </div>
        </div>
      </div>
    </section>

    <section class="container home-preview-section minimal-home-section hero-reveal hero-reveal-3">
      <div class="section-heading-row refined-heading-row">
        <div>
          <div class="section-kicker">Main Sections</div>
          <h2>Go deeper through the website.</h2>
        </div>
      </div>

      <div class="home-preview-grid refined-preview-grid">
        <a href="discover.html" class="preview-card refined-card">
          <div class="preview-icon">✦</div>
          <h3>Articles</h3>
          <p>Facts, ideas, and bilingual content in English and Sinhala.</p>
          <span>Open page →</span>
        </a>

        <a href="projects.html" class="preview-card refined-card">
          <div class="preview-icon">◎</div>
          <h3>Projects</h3>
          <p>Research work, exploration-based initiatives, and featured student creations.</p>
          <span>Open page →</span>
        </a>

        <a href="officials.html" class="preview-card refined-card">
          <div class="preview-icon">◈</div>
          <h3>Officials</h3>
          <p>Meet the board and the students guiding the society forward.</p>
          <span>Open page →</span>
        </a>
      </div>
    </section>

    <section class="container home-cta-section hero-reveal hero-reveal-4">
      <div class="home-cta-card refined-cta-card">
        <div>
          <div class="section-kicker">Join the society</div>
          <h2>Ideas deserve a place to grow.</h2>
          <p>
            If you want to write, research, explore, and build something meaningful, this is your place.
          </p>
        </div>

        <div class="hero-actions cta-actions-right">
          <a href="join.html" class="primary-btn">Join Now</a>
        </div>
      </div>
    </section>
  </main>

  <footer class="footer">
    <div class="container">Ananda College Research &amp; Exploration Society</div>
  </footer>

  <script src="site.js"></script>
</body>
</html>

/* Refined home page */
.home-page-clean {
  padding-top: 34px;
}

.refined-hero {
  min-height: calc(100vh - 140px);
  gap: 34px;
}

.refined-hero .home-hero-content p {
  max-width: 640px;
}

.refined-vision-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(123,17,40,0.38), rgba(255,255,255,0.04));
}

.refined-vision-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at top right, rgba(212,175,55,0.12), transparent 30%);
}

.compact-vision-list {
  gap: 12px;
}

.minimal-home-section {
  padding-top: 16px;
}

.refined-heading-row {
  align-items: center;
  margin-bottom: 18px;
}

.refined-preview-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.refined-card {
  min-height: 100%;
}

.refined-cta-card {
  align-items: center;
}

.cta-actions-right {
  margin-top: 0;
  flex-shrink: 0;
}

.hero-reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.7s ease forwards;
}

.hero-reveal-1 { animation-delay: 0.08s; }
.hero-reveal-2 { animation-delay: 0.18s; }
.hero-reveal-3 { animation-delay: 0.26s; }
.hero-reveal-4 { animation-delay: 0.34s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fullscreen mobile menu */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(11, 3, 4, 0.96);
  backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .28s ease, visibility .28s ease;
}

.mobile-menu-overlay.show {
  opacity: 1;
  visibility: visible;
}

.mobile-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(212,175,55,0.18);
  background: rgba(255,255,255,0.05);
  color: white;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.mobile-menu-inner {
  width: min(420px, calc(100% - 36px));
  display: grid;
  gap: 14px;
  text-align: center;
}

.mobile-menu-inner a {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 22px;
  font-weight: 700;
  color: rgba(255,255,255,0.88);
  transition: transform .22s ease, border-color .22s ease, color .22s ease;
}

.mobile-menu-inner a:hover,
.mobile-menu-inner a.active {
  transform: translateY(-2px);
  border-color: rgba(212,175,55,0.26);
  color: var(--gold-soft);
}

.menu-btn {
  display: none;
  padding: 0;
}

.menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  background: white;
  border-radius: 999px;
}

.menu-btn span + span {
  margin-top: 4px;
}

@media (max-width: 980px) {
  .refined-preview-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nav-links {
    display: none !important;
  }

  .menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .refined-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .home-hero-visual {
    order: 2;
  }

  .home-hero-content {
    order: 1;
  }

  .home-intro-section {
    grid-template-columns: 1fr;
  }

  .refined-cta-card {
    grid-template-columns: 1fr;
    display: grid;
  }
}

@media (max-width: 560px) {
  .home-page-clean {
    padding-top: 18px;
  }

  .refined-hero .home-hero-content h1 {
    font-size: clamp(30px, 11vw, 42px);
    line-height: 1.02;
  }

  .refined-hero .home-hero-content p,
  .vision-item p,
  .preview-card p,
  .refined-cta-card p {
    font-size: 14px;
    line-height: 1.75;
  }

  .hero-actions {
    flex-direction: column;
  }

  .home-quick-grid,
  .refined-preview-grid {
    grid-template-columns: 1fr;
  }

  .home-hero-card,
  .preview-card,
  .home-intro-card,
  .refined-cta-card {
    padding: 18px;
  }

  .mobile-menu-inner a {
    font-size: 20px;
    padding: 16px 18px;
  }
}
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(11, 3, 4, 0.96);
  backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .28s ease, visibility .28s ease;
}

.mobile-menu-overlay.show {
  opacity: 1;
  visibility: visible;
}
/* JOIN PAGE PREMIUM */
.join-page-premium {
  padding-top: 34px;
}

.join-hero-premium {
  text-align: center;
  padding-bottom: 26px;
}

.join-hero-premium .hero-badge {
  margin-bottom: 18px;
}

.join-hero-premium h1 {
  margin: 0;
  font-size: clamp(38px, 7vw, 72px);
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.join-hero-premium p {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--muted);
  line-height: 1.9;
  font-size: 16px;
}

.join-main-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  background: linear-gradient(180deg, rgba(123,17,40,0.18), rgba(255,255,255,0.03));
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  overflow: hidden;
}

.join-main-left,
.join-main-right {
  padding: 30px;
}

.join-main-left {
  border-right: 1px solid rgba(255,255,255,0.08);
}

.join-main-left h2,
.join-main-right h3 {
  margin: 0;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.08;
}

.join-main-left p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.85;
  font-size: 15px;
  max-width: 620px;
}

.join-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.join-benefit {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.join-benefit strong {
  display: block;
  color: var(--gold-soft);
  font-size: 18px;
  margin-bottom: 6px;
}

.join-benefit span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.join-main-right {
  background: rgba(0,0,0,0.12);
}

.join-main-right h3 {
  margin-bottom: 18px;
}

.join-contact-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.join-contact-row span {
  color: rgba(255,255,255,0.58);
  font-size: 14px;
}

.join-contact-row strong {
  color: white;
  font-size: 15px;
  text-align: right;
  line-height: 1.6;
}

.join-main-right .hero-actions {
  margin-top: 22px;
}

@media (max-width: 980px) {
  .join-main-card {
    grid-template-columns: 1fr;
  }

  .join-main-left {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .join-benefits {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .join-page-premium {
    padding-top: 18px;
  }

  .join-hero-premium h1 {
    font-size: clamp(30px, 11vw, 44px);
    line-height: 1.02;
  }

  .join-hero-premium p {
    font-size: 14px;
    line-height: 1.75;
  }

  .join-main-left,
  .join-main-right {
    padding: 18px;
  }

  .join-contact-row {
    flex-direction: column;
    gap: 6px;
  }

  .join-contact-row strong {
    text-align: left;
  }
}
/* COOLER HOME SECTIONS SHOWCASE */
.home-sections-showcase {
  padding-top: 34px;
}

.showcase-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 22px;
}

.showcase-head h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
}

.showcase-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
}

.showcase-main-card,
.showcase-side-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow);
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}

.showcase-main-card:hover,
.showcase-side-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212,175,55,0.28);
  background: var(--card-strong);
}

.showcase-main-card {
  min-height: 420px;
  display: flex;
  align-items: end;
  background:
    radial-gradient(circle at top right, rgba(212,175,55,0.12), transparent 30%),
    linear-gradient(180deg, rgba(123,17,40,0.32), rgba(15,6,8,0.92));
}

.showcase-main-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), transparent 20%),
    radial-gradient(circle at 85% 20%, rgba(212,175,55,0.12), transparent 24%);
  pointer-events: none;
}

.showcase-content {
  position: relative;
  z-index: 2;
  padding: 28px;
  max-width: 560px;
}

.showcase-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(212,175,55,0.10);
  border: 1px solid rgba(212,175,55,0.24);
  color: var(--gold-soft);
  font-size: 22px;
  margin-bottom: 16px;
}

.showcase-label {
  color: var(--gold-soft);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 10px;
}

.showcase-main-card h3,
.showcase-side-card h3 {
  margin: 0 0 10px;
  line-height: 1.15;
}

.showcase-main-card h3 {
  font-size: clamp(28px, 4vw, 40px);
  max-width: 12ch;
}

.showcase-side-card h3 {
  font-size: 22px;
}

.showcase-main-card p,
.showcase-side-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 15px;
}

.showcase-main-card span,
.showcase-side-card span {
  display: inline-block;
  margin-top: 16px;
  color: var(--gold-soft);
  font-weight: 600;
}

.showcase-side {
  display: grid;
  gap: 22px;
}

.showcase-side-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
  padding: 24px;
  min-height: 199px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
}

@media (max-width: 980px) {
  .showcase-layout {
    grid-template-columns: 1fr;
  }

  .showcase-side {
    grid-template-columns: 1fr 1fr;
  }

  .showcase-main-card {
    min-height: 340px;
  }
}

@media (max-width: 760px) {
  .showcase-head {
    display: block;
    margin-bottom: 18px;
  }

  .showcase-head .section-note {
    margin-top: 10px;
  }

  .showcase-side {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .home-sections-showcase {
    padding-top: 26px;
  }

  .showcase-head h2 {
    font-size: 28px;
    line-height: 1.08;
  }

  .showcase-main-card {
    min-height: 280px;
    border-radius: 22px;
  }

  .showcase-content,
  .showcase-side-card {
    padding: 18px;
  }

  .showcase-side-card {
    grid-template-columns: 48px 1fr;
    min-height: auto;
    border-radius: 22px;
  }

  .showcase-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    font-size: 18px;
    margin-bottom: 14px;
  }

  .showcase-main-card h3 {
    font-size: 28px;
  }

  .showcase-side-card h3 {
    font-size: 18px;
  }

  .showcase-main-card p,
  .showcase-side-card p {
    font-size: 14px;
    line-height: 1.7;
  }
}
.topbar-inner {
  justify-content: space-between;
}
.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.25);
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(212,175,55,0.08);
}

.brand-logo img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(20, 6, 8, 0.72);
  border-bottom: 1px solid rgba(212,175,55,0.08);
}

.topbar-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.24);
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}

.nav-links a {
  position: relative;
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  text-decoration: none;
  transition: color .25s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: #d4af37;
  transition: width .25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #f3d77a;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(212,175,55,0.18);
  background: rgba(255,255,255,0.04);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.menu-btn span {
  width: 18px;
  height: 2px;
  background: white;
  border-radius: 999px;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(11, 3, 4, 0.96);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .28s ease, visibility .28s ease;
}

.mobile-menu-overlay.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(212,175,55,0.18);
  background: rgba(255,255,255,0.05);
  color: white;
  font-size: 28px;
  cursor: pointer;
}

.mobile-menu-inner {
  min-height: 100vh;
  width: min(420px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.mobile-menu-inner a {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.9);
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
}

.mobile-menu-inner a.active {
  color: #f3d77a;
  border-color: rgba(212,175,55,0.24);
}

@media (max-width: 760px) {
  .nav-links {
    display: none;
  }

  .menu-btn {
    display: inline-flex;
  }
}

@media (min-width: 761px) {
  .mobile-menu-overlay {
    display: none;
  }
}
/* =========================
   JOIN PAGE PREMIUM
========================= */

.join-premium-page {
  padding-top: 34px;
}

/* HERO */
.join-premium-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
  min-height: calc(100vh - 140px);
}

.join-premium-copy h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.join-premium-copy p {
  max-width: 640px;
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.9;
  font-size: 16px;
}

/* RIGHT PANEL */
.join-premium-panel {
  position: relative;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(123,17,40,0.35), rgba(255,255,255,0.04));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.join-glow-line {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.6;
}

.join-premium-panel h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.1;
}

/* BENEFITS */
.join-benefit-list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.join-benefit-item {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.08);
}

.join-benefit-no {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(212,175,55,0.12);
  color: var(--gold-soft);
  font-weight: 800;
}

.join-benefit-item h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.join-benefit-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* HIGHLIGHT STRIP */
.join-highlight-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.join-highlight-card {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  text-align: center;
  transition: 0.25s ease;
}

.join-highlight-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212,175,55,0.3);
}

.join-highlight-card strong {
  display: block;
  color: var(--gold-soft);
  font-size: 18px;
}

.join-highlight-card span {
  font-size: 14px;
  color: var(--muted);
}

/* CONTACT SECTION */
.join-contact-premium {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  margin-top: 28px;
}

.join-contact-main {
  padding: 28px;
  border-radius: 26px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(123,17,40,0.2), rgba(255,255,255,0.04));
  box-shadow: var(--shadow);
}

.join-contact-main h2 {
  margin: 0;
  font-size: 34px;
}

.join-contact-main p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.8;
}

/* CONTACT GRID */
.join-contact-grid-premium {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 22px;
}

.join-contact-box {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.18);
  text-align: center;
}

.join-contact-icon {
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--gold-soft);
}

.join-contact-box span {
  display: block;
  font-size: 13px;
  color: var(--muted);
}

.join-contact-box strong {
  display: block;
  margin-top: 6px;
  font-size: 14px;
}

/* SIDE CARD */
.join-side-card-premium {
  padding: 26px;
  border-radius: 26px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
}

.join-side-card-premium h3 {
  margin: 0;
  font-size: 20px;
}

.join-side-card-premium p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.join-side-divider {
  height: 1px;
  margin: 18px 0;
  background: rgba(255,255,255,0.08);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 980px) {
  .join-premium-hero,
  .join-contact-premium {
    grid-template-columns: 1fr;
  }

  .join-highlight-strip {
    grid-template-columns: 1fr;
  }

  .join-contact-grid-premium {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .join-premium-copy h1 {
    font-size: clamp(30px, 11vw, 44px);
    line-height: 1.02;
  }

  .join-premium-copy p {
    font-size: 14px;
  }

  .join-premium-panel,
  .join-contact-main,
  .join-side-card-premium {
    padding: 18px;
  }

  .join-contact-main h2 {
    font-size: 26px;
  }
}
/* =========================
   PREMIUM EFFECTS
========================= */

/* Hover light tracking */
.hover-light-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hover-light-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(
    circle at var(--mx, 50%) var(--my, 50%),
    rgba(243, 215, 122, 0.16),
    transparent 20%
  );
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
  z-index: 0;
}

.hover-light-card:hover::before {
  opacity: 1;
}

.hover-light-card > * {
  position: relative;
  z-index: 1;
}

/* Animated glow line */
.join-glow-line {
  position: absolute;
  top: 0;
  left: -30%;
  height: 3px;
  width: 160%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(212, 175, 55, 0.15) 20%,
    rgba(243, 215, 122, 0.9) 50%,
    rgba(212, 175, 55, 0.15) 80%,
    transparent 100%
  );
  animation: glowSweep 4.2s linear infinite;
  opacity: 0.8;
}

@keyframes glowSweep {
  0% {
    transform: translateX(-12%);
  }
  100% {
    transform: translateX(12%);
  }
}

/* Parallax hero */
.parallax-section {
  position: relative;
  overflow: hidden;
}

.join-parallax-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(212,175,55,0.08), transparent 22%),
    radial-gradient(circle at 80% 30%, rgba(123,17,40,0.16), transparent 24%);
  transform: translateY(0);
  transition: transform 0.08s linear;
}

.join-floating-line {
  position: absolute;
  width: 180px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(243,215,122,0.65), transparent);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.line-1 {
  top: 18%;
  right: 8%;
  transform: rotate(-12deg);
  animation: floatLine1 5s ease-in-out infinite;
}

.line-2 {
  bottom: 14%;
  left: 10%;
  transform: rotate(8deg);
  animation: floatLine2 6s ease-in-out infinite;
}

@keyframes floatLine1 {
  0%, 100% { transform: translateY(0) rotate(-12deg); opacity: 0.35; }
  50% { transform: translateY(10px) rotate(-12deg); opacity: 0.7; }
}

@keyframes floatLine2 {
  0%, 100% { transform: translateY(0) rotate(8deg); opacity: 0.3; }
  50% { transform: translateY(-8px) rotate(8deg); opacity: 0.65; }
}

/* Keep content above parallax background */
.join-premium-hero > *:not(.join-parallax-bg):not(.join-floating-line) {
  position: relative;
  z-index: 1;
}

/* Slight premium hover lift */
.join-highlight-card,
.join-contact-main,
.join-side-card-premium,
.join-premium-panel {
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

.join-highlight-card:hover,
.join-contact-main:hover,
.join-side-card-premium:hover,
.join-premium-panel:hover {
  transform: translateY(-4px);
  border-color: rgba(212,175,55,0.28);
  box-shadow: 0 24px 80px rgba(0,0,0,0.42);
}

/* Mobile: reduce effect intensity */
@media (max-width: 760px) {
  .join-floating-line {
    width: 120px;
    opacity: 0.35;
  }

  .hover-light-card::before {
    background: radial-gradient(
      circle at var(--mx, 50%) var(--my, 50%),
      rgba(243, 215, 122, 0.10),
      transparent 22%
    );
  }

  .join-glow-line {
    animation-duration: 5.2s;
  }
}
/* =========================
   OFFICIALS PAGE - CLEAN REBUILD
========================= */

.officials-page {
  padding-top: 34px;
}

.officials-hero {
  text-align: center;
  padding-bottom: 26px;
}

.officials-hero h1 {
  margin: 0;
  font-size: clamp(38px, 7vw, 68px);
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.officials-hero p {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--muted);
  line-height: 1.9;
  font-size: 16px;
}

.officials-section-block {
  margin-top: 34px;
}

.section-heading-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 18px;
}

/* Featured president */
.featured-official-wrap {
  margin-top: 14px;
}

.featured-official-card {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 0;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(123,17,40,0.18), rgba(255,255,255,0.04));
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.featured-official-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212,175,55,0.26);
}

.featured-official-image {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
}

.featured-official-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 18%;
}

.featured-official-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-official-content h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.08;
}

.featured-official-content p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 58ch;
}

.official-role-pill {
  display: inline-block;
  margin-top: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  background: rgba(212,175,55,0.14);
  color: var(--gold-soft);
  border: 1px solid rgba(212,175,55,0.22);
}

/* Grids */
.officials-grid {
  display: grid;
  gap: 22px;
  margin-top: 18px;
}

.executive-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.committee-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Cards */
.official-card {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.official-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212,175,55,0.24);
}

/* Image frame — same size for all cards */
.official-thumb {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
}

.official-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 18%;
}

/* Body */
.official-body {
  padding: 18px;
}

.official-body h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.3;
}

.official-position {
  display: inline-block;
  margin-top: 8px;
  font-size: 12px;
  color: var(--gold-soft);
  background: rgba(212,175,55,0.10);
  border: 1px solid rgba(212,175,55,0.18);
  padding: 6px 10px;
  border-radius: 999px;
}

/* Glow tracking support */
.hover-light-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hover-light-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(
    circle at var(--mx, 50%) var(--my, 50%),
    rgba(243, 215, 122, 0.14),
    transparent 20%
  );
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
  z-index: 0;
}

.hover-light-card:hover::before {
  opacity: 1;
}

.hover-light-card > * {
  position: relative;
  z-index: 1;
}

/* Previous board */
.previous-board-section {
  margin-top: 36px;
}

.previous-board-card {
  margin-top: 18px;
  padding: 26px;
  border-radius: 26px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(123,17,40,0.16), rgba(255,255,255,0.04));
  box-shadow: var(--shadow);
}

.previous-board-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 22px;
}

.previous-board-item {
  display: flex;
  flex-direction: column;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.06);
}

.previous-board-item strong {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 6px;
}

.previous-board-item span {
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 1100px) {
  .executive-grid,
  .committee-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .featured-official-card {
    grid-template-columns: 1fr;
  }

  .featured-official-image {
    min-height: 260px;
  }

  .previous-board-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .officials-page {
    padding-top: 18px;
  }

  .officials-hero h1 {
    font-size: clamp(30px, 11vw, 44px);
    line-height: 1.02;
  }

  .officials-hero p {
    font-size: 14px;
    line-height: 1.75;
  }

  .section-heading-row {
    display: block;
    margin-bottom: 14px;
  }

  .featured-official-image {
    min-height: 220px;
  }

  .executive-grid,
  .committee-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .official-thumb {
    height: 240px;
  }

  .official-body,
  .featured-official-content,
  .previous-board-card {
    padding: 18px;
  }

  .previous-board-item {
    padding: 12px 14px;
  }
}
/* HARD OVERRIDE FOR OFFICIALS LAYOUT */
.featured-official-card {
  display: grid !important;
  grid-template-columns: 320px 1fr !important;
  gap: 0 !important;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(123,17,40,0.18), rgba(255,255,255,0.04));
  box-shadow: var(--shadow);
}

.featured-official-image {
  min-height: 340px !important;
  max-height: 340px !important;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
}

.featured-official-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 18%;
}

.featured-official-content {
  padding: 28px !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.executive-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 22px !important;
}

.committee-grid-fixed {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 22px !important;
}

.official-card {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  box-shadow: var(--shadow);
}

.official-thumb {
  height: 260px !important;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
}

.official-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover !important;
  object-position: center 18% !important;
}

.official-body {
  padding: 18px !important;
}

.official-body h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.3;
}

.official-position {
  display: inline-block;
  margin-top: 8px;
  font-size: 12px;
  color: var(--gold-soft);
  background: rgba(212,175,55,0.10);
  border: 1px solid rgba(212,175,55,0.18);
  padding: 6px 10px;
  border-radius: 999px;
}

@media (max-width: 1100px) {
  .executive-grid,
  .committee-grid-fixed {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 900px) {
  .featured-official-card {
    grid-template-columns: 1fr !important;
  }

  .featured-official-image {
    min-height: 260px !important;
    max-height: 260px !important;
  }
}

@media (max-width: 560px) {
  .executive-grid,
  .committee-grid-fixed {
    grid-template-columns: 1fr !important;
  }

  .official-thumb {
    height: 220px !important;
  }

  .featured-official-image {
    min-height: 220px !important;
    max-height: 220px !important;
  }
}
/* Floating Background Layer */
.bg-animation-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* Placed behind all content */
  pointer-events: none;
  overflow: hidden;
}

.star-cluster-1, .star-cluster-2 {
  position: absolute;
  top: 0;
  left: 0;
  background: transparent;
}

/* Small, faster stars */
.star-cluster-1 {
  width: 1px;
  height: 1px;
  /* Using your gold variable for some stars */
  box-shadow: 200px 300px #fff, 600px 100px #fff, 1000px 800px var(--gold), 1400px 400px #fff, 400px 900px #fff, 1800px 200px #fff, 100px 600px var(--gold-soft);
  animation: moveUp 80s linear infinite;
}

/* Larger, slower stars */
.star-cluster-2 {
  width: 2px;
  height: 2px;
  box-shadow: 300px 700px #fff, 900px 200px var(--gold-soft), 1500px 900px #fff, 500px 100px #fff, 1200px 500px var(--gold);
  animation: moveUp 120s linear infinite;
}

@keyframes moveUp {
  from { transform: translateY(0); }
  to { transform: translateY(-1000px); }
}

/* Reset Topbar to ensure it stays on top */
.topbar {
  z-index: 100 !important;
  position: sticky !important;
}
/* ===================== */
/* FOOTER - CLEAN MOBILE */
/* ===================== */

.footer {
  position: relative;
  margin-top: 72px;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.34));
  backdrop-filter: blur(14px);
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      120deg,
      transparent 0%,
      rgba(212,175,55,0.04) 20%,
      rgba(123,17,40,0.10) 50%,
      rgba(212,175,55,0.04) 80%,
      transparent 100%
    );
  background-size: 200% 200%;
  animation: footerGradientMove 12s ease-in-out infinite;
  pointer-events: none;
}

.footer-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.footer-glow::before,
.footer-glow::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.2;
}

.footer-glow::before {
  width: 220px;
  height: 220px;
  background: rgba(212,175,55,0.10);
  top: -90px;
  left: 8%;
}

.footer-glow::after {
  width: 260px;
  height: 260px;
  background: rgba(123,17,40,0.16);
  bottom: -120px;
  right: 8%;
}

@keyframes footerGradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.footer-inner {
  position: relative;
  z-index: 1;
  padding: 34px 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.footer-logo {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.24);
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 24px rgba(212,175,55,0.08);
  flex-shrink: 0;
}

.footer-logo img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.footer-brand-text {
  min-width: 0;
}

.footer-kicker {
  font-size: 10px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 4px;
}

.footer-brand-text h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.2;
  color: white;
  font-weight: 700;
}

.footer-brand-text p {
  margin: 6px 0 0;
  font-size: 13px;
  color: rgba(255,255,255,0.56);
}

.footer-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 18px 22px;
}

.footer-nav a {
  position: relative;
  color: rgba(255,255,255,0.76);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  box-shadow: 0 0 10px rgba(243,215,122,0.45);
  transition: width 0.28s ease;
}

.footer-nav a:hover {
  color: var(--gold-soft);
  transform: translateY(-1px);
}

.footer-nav a:hover::after {
  width: 100%;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  padding: 14px 0 18px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 12px;
  color: rgba(255,255,255,0.42);
  letter-spacing: 0.04em;
}

/* tablet */
@media (max-width: 760px) {
  .footer-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    padding: 24px 0 20px;
  }

  .footer-brand {
    align-items: center;
  }

  .footer-nav {
    justify-content: flex-start;
  }
}

/* mobile */
@media (max-width: 560px) {
  .footer {
    margin-top: 48px;
  }

  .footer-inner {
    padding: 20px 0 16px;
    gap: 18px;
  }

  .footer-brand {
    align-items: flex-start;
    gap: 14px;
  }

  .footer-logo {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    margin-top: 2px;
  }

  .footer-kicker {
    font-size: 8px;
    letter-spacing: 0.12em;
  }

  .footer-brand-text h3 {
    font-size: 14px;
    line-height: 1.35;
    max-width: 220px;
  }

  .footer-brand-text p {
    font-size: 12px;
    margin-top: 4px;
  }

  .footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 14px;
    align-items: start;
  }

  .footer-nav a {
    display: inline-block;
    font-size: 13px;
    line-height: 1.4;
    padding-bottom: 2px;
  }

  .footer-nav a::after {
    bottom: -4px;
  }

  .footer-bottom {
    padding: 12px 0 16px;
    font-size: 11px;
    line-height: 1.6;
  }
}
/* ===================== */
/* FOOTER */
/* ===================== */

.footer {
  position: relative;
  margin-top: 72px;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.34));
  backdrop-filter: blur(14px);
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      120deg,
      transparent 0%,
      rgba(212,175,55,0.04) 20%,
      rgba(123,17,40,0.10) 50%,
      rgba(212,175,55,0.04) 80%,
      transparent 100%
    );
  background-size: 200% 200%;
  animation: footerGradientMove 12s ease-in-out infinite;
  pointer-events: none;
}

.footer-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.footer-glow::before,
.footer-glow::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
}

.footer-glow::before {
  width: 220px;
  height: 220px;
  background: rgba(212,175,55,0.10);
  top: -90px;
  left: 8%;
}

.footer-glow::after {
  width: 260px;
  height: 260px;
  background: rgba(123,17,40,0.16);
  bottom: -120px;
  right: 8%;
}

@keyframes footerGradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.footer-inner {
  position: relative;
  z-index: 1;
  padding: 34px 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.footer-logo {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.24);
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 24px rgba(212,175,55,0.08);
  flex-shrink: 0;
}

.footer-logo img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.footer-brand-text {
  min-width: 0;
}

.footer-kicker {
  font-size: 10px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 4px;
}

.footer-brand-text h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.2;
  color: white;
  font-weight: 700;
}

.footer-brand-text p {
  margin: 6px 0 0;
  font-size: 13px;
  color: rgba(255,255,255,0.56);
}

.footer-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 18px 22px;
}

.footer-nav a {
  position: relative;
  color: rgba(255,255,255,0.76);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  box-shadow: 0 0 10px rgba(243,215,122,0.45);
  transition: width 0.28s ease;
}

.footer-nav a:hover {
  color: var(--gold-soft);
  transform: translateY(-1px);
}

.footer-nav a:hover::after {
  width: 100%;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  padding: 14px 0 18px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 12px;
  color: rgba(255,255,255,0.42);
  letter-spacing: 0.04em;
}

/* tablet */
@media (max-width: 760px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 24px 0 20px;
  }

  .footer-brand {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .footer-nav {
    justify-content: center;
    gap: 14px 18px;
  }
}

/* mobile */
@media (max-width: 560px) {
  .footer {
    margin-top: 48px;
  }

  .footer-inner {
    padding: 22px 0 18px;
    gap: 18px;
  }

  .footer-brand {
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    padding: 18px 16px;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.08);
    background: linear-gradient(
      180deg,
      rgba(255,255,255,0.05),
      rgba(255,255,255,0.02)
    );
    box-shadow: 0 16px 40px rgba(0,0,0,0.18);
  }

  .footer-logo {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    margin: 0 auto;
    box-shadow: 0 0 26px rgba(212,175,55,0.12);
  }

  .footer-brand-text {
    width: 100%;
    text-align: center;
  }

  .footer-kicker {
    font-size: 8px;
    letter-spacing: 0.14em;
    margin-bottom: 6px;
  }

  .footer-brand-text h3 {
    font-size: 14px;
    line-height: 1.35;
    max-width: 230px;
    margin: 0 auto;
  }

  .footer-brand-text p {
    font-size: 12px;
    margin-top: 5px;
    color: rgba(255,255,255,0.6);
  }

  .footer-nav {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .footer-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 12px;
    border-radius: 14px;
    font-size: 13px;
    text-align: center;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.8);
  }

  .footer-nav a::after {
    display: none;
  }

  .footer-nav a:hover {
    transform: translateY(-1px);
    color: var(--gold-soft);
    border-color: rgba(212,175,55,0.22);
    background: rgba(212,175,55,0.06);
  }

  .footer-bottom {
    margin-top: 2px;
    padding: 12px 0 16px;
    font-size: 11px;
    line-height: 1.6;
  }
}
/* =========================
   SURVEY PAGE - SIMPLE
========================= */

.survey-page {
  padding-top: 28px;
}

.survey-hero {
  text-align: center;
  padding-bottom: 24px;
}

.survey-hero h1 {
  margin: 0;
  font-size: clamp(34px, 6vw, 62px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.survey-hero p {
  max-width: 680px;
  margin: 16px auto 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 15px;
}

.survey-topics-wrap {
  margin-top: 12px;
}

.survey-topics-head {
  margin-bottom: 18px;
}

.survey-topics-head h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.1;
}

.survey-topics-note {
  margin-top: 8px;
  max-width: 560px;
  color: rgba(255,255,255,0.56);
  line-height: 1.7;
  font-size: 14px;
}

.survey-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.survey-card {
  padding: 20px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.survey-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212,175,55,0.22);
}

.featured-survey-card {
  grid-column: span 2;
  background: linear-gradient(180deg, rgba(123,17,40,0.18), rgba(255,255,255,0.04));
}

.survey-card-top {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.survey-status,
.survey-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.78);
}

.survey-status.live {
  background: rgba(212,175,55,0.10);
  border-color: rgba(212,175,55,0.20);
  color: var(--gold-soft);
}

.survey-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
}

.survey-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 14px;
}

.survey-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 14px;
  color: rgba(255,255,255,0.56);
  font-size: 13px;
}

.survey-btn {
  display: inline-flex;
  margin-top: 16px;
}

.survey-card-placeholder {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 220px;
  text-align: center;
}

.survey-plus {
  width: 50px;
  height: 50px;
  margin: 0 auto 12px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(212,175,55,0.10);
  border: 1px solid rgba(212,175,55,0.18);
  color: var(--gold-soft);
  font-size: 28px;
  font-weight: 700;
}

.survey-info-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.survey-info-card {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  text-align: center;
}

.survey-info-card strong {
  display: block;
  color: var(--gold-soft);
  font-size: 17px;
  margin-bottom: 4px;
}

.survey-info-card span {
  font-size: 14px;
  color: var(--muted);
}

/* simpler hover light */
.hover-light-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hover-light-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(
    circle at var(--mx, 50%) var(--my, 50%),
    rgba(243, 215, 122, 0.10),
    transparent 22%
  );
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
  z-index: 0;
}

.hover-light-card:hover::before {
  opacity: 1;
}

.hover-light-card > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .survey-grid {
    grid-template-columns: 1fr;
  }

  .featured-survey-card {
    grid-column: span 1;
  }

  .survey-info-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .survey-page {
    padding-top: 18px;
  }

  .survey-hero h1 {
    font-size: clamp(28px, 10vw, 42px);
    line-height: 1.04;
  }

  .survey-hero p {
    font-size: 14px;
  }

  .survey-topics-head h2 {
    font-size: 22px;
  }

  .survey-grid {
    gap: 14px;
  }

  .survey-card {
    padding: 16px;
    border-radius: 18px;
  }

  .survey-card h3 {
    font-size: 19px;
  }

  .survey-card p,
  .survey-info-card span {
    font-size: 13px;
  }

  .survey-card-placeholder {
    min-height: 180px;
  }

  .survey-info-card {
    padding: 14px;
  }
}