/* ============================================
   AIMSAT AFRICA – STYLESHEET
   ============================================ */

:root {
  --gold: #c9a84c;
  --dark: #0d0d0d;
  --dark2: #111;
  --card: #161616;
  --border: #2a2a2a;
  --text: #e8e8e8;
  --muted: #888;
  --red: #c0392b;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--text);
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

/* ---- NAVBAR ---- */
#header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
}

/* TEXT LOGO in navbar */
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.6rem;
  cursor: pointer;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 6px;
}

.nav-links a {
  padding: 8px 13px;
  border-radius: 6px;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .2s, background .2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: rgba(201,168,76,.08);
}

/* ---- HERO ---- */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
  background: radial-gradient(ellipse at center, #3a0a0a 0%, #1a0505 40%, #0d0d0d 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content { position: relative; z-index: 1; max-width: 720px; }

.hero-logo {
  width: 260px;
  max-width: 80vw;
  margin: 0 auto 28px;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.5));
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 12px;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 1.05rem;
  color: #bbb;
  max-width: 560px;
  margin: 0 auto 36px;
}

.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .2s;
  border: none;
  font-family: 'Lato', sans-serif;
}

.btn-primary {
  background: var(--gold);
  color: #111;
}
.btn-primary:hover { opacity: .85; transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover { background: var(--gold); color: #111; }

.btn-whatsapp { background: #25D366; color: #fff; }
.btn-whatsapp:hover { background: #1ebe5d; }

.full-width { width: 100%; text-align: center; }

/* ---- PAGE HERO ---- */
.page-hero {
  background: radial-gradient(ellipse at center, #3a0a0a 0%, #1a0505 50%, #0d0d0d 100%);
  padding: 100px 24px 60px;
  text-align: center;
}

.page-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: #fff;
  margin-bottom: 12px;
}

.page-hero-content p {
  color: var(--gold);
  font-style: italic;
  font-size: 1.05rem;
}

/* ---- SECTION TITLE ---- */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--gold);
  text-align: center;
  margin-bottom: 40px;
}

/* ---- PILLARS ---- */
.pillars { padding: 80px 0; }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.pillar-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  transition: transform .25s, box-shadow .25s;
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.4);
}

.pillar-icon { font-size: 2.8rem; margin-bottom: 18px; }

.pillar-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 14px;
  line-height: 1.3;
}

.pillar-card p { color: #aaa; margin-bottom: 24px; font-size: .95rem; }

/* ---- COLLEGE ---- */
.college-section { padding: 70px 0 90px; }

.intro-text {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
  color: #aaa;
  font-size: 1.05rem;
  line-height: 1.8;
}

.price-badge-wrap { text-align: center; margin-bottom: 40px; }

.price-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 12px;
  padding: 16px 32px;
  gap: 4px;
}

.price-badge strong { font-size: 2rem; color: var(--gold); font-family: 'Playfair Display', serif; }
.price-badge span { color: #aaa; font-size: .85rem; }

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.course-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  position: relative;
  transition: transform .25s;
}

.course-card:hover { transform: translateY(-4px); }

.featured-course { border-color: rgba(201,168,76,.4); }

.popular-tag {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--gold);
  color: #111;
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.course-icon { font-size: 2.4rem; margin-bottom: 14px; }

.course-card h3 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.course-card p { color: #aaa; font-size: .93rem; margin-bottom: 18px; }

.course-highlights { list-style: none; margin-bottom: 20px; }
.course-highlights li { color: #bbb; font-size: .88rem; padding: 4px 0; }

.course-price { font-size: 1.4rem; font-weight: 700; color: var(--gold); margin-bottom: 20px; }
.course-price span { font-size: .85rem; color: var(--muted); font-weight: 400; }

.enrol-note {
  background: rgba(201,168,76,.07);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 12px;
  padding: 20px 24px;
  color: #aaa;
  font-size: .92rem;
  text-align: center;
}

.enrol-note a { color: var(--gold); }

/* ---- SEASONS / CONTEST ---- */
.seasons-section { padding: 70px 0 90px; }

.season-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 36px;
}

.featured-season { border-color: rgba(201,168,76,.4); }

.season-header {
  background: rgba(201,168,76,.07);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--border);
}

.season-badge {
  background: var(--gold);
  color: #111;
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  white-space: nowrap;
}

.season-badge.latest { background: var(--red); color: #fff; }

.season-header h2 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 1.25rem;
}

.season-body {
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 28px;
}

.season-winner h3, .season-media h3 {
  color: var(--gold);
  margin-bottom: 14px;
  font-size: 1rem;
}

.winner-name { font-size: 1.1rem; font-weight: 700; color: #fff; }

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  background: #000;
  margin-bottom: 16px;
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
}

.contest-cta {
  margin-top: 48px;
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 12px;
  padding: 24px 28px;
  text-align: center;
  color: #ccc;
}

.contest-cta a { color: var(--gold); }
.contest-cta a:hover { text-decoration: underline; }

/* ---- GALLERY ---- */
.gallery-public-section { padding: 60px 0 80px; }

.gallery-filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }

.filter-btn {
  padding: 8px 20px;
  border: 2px solid var(--gold);
  background: transparent;
  color: var(--gold);
  border-radius: 30px;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  font-size: .9rem;
  transition: all .2s;
}

.filter-btn.active, .filter-btn:hover { background: var(--gold); color: #111; }

.gallery-category { margin-bottom: 52px; }

.gallery-category-title {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.gallery-grid-pub {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  background: #1a1a1a;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}

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

.gallery-video-item iframe,
.gallery-video-item video {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  display: block;
}

.gallery-caption {
  padding: 10px 12px;
  font-size: .85rem;
  color: #ccc;
}

.gallery-empty-cat {
  color: var(--muted);
  font-style: italic;
  font-size: .92rem;
  padding: 16px 0;
}

.gallery-empty-msg { text-align: center; padding: 80px 20px; color: #888; }
.gallery-empty-msg .empty-icon { font-size: 4rem; margin-bottom: 16px; }
.gallery-empty-msg h3 { color: #bbb; margin-bottom: 8px; }

/* Lightbox */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
#lightbox.open { display: flex; }
#lightboxImg { max-width: 90vw; max-height: 88vh; border-radius: 8px; }
#lightboxClose {
  position: absolute;
  top: 20px;
  right: 28px;
  font-size: 2.2rem;
  color: #fff;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

/* ---- ABOUT ---- */
.about-section { padding: 70px 0 90px; }

.about-mission { margin-bottom: 56px; }
.about-mission h2 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.about-mission p { color: #aaa; margin-bottom: 16px; font-size: .97rem; }
.about-mission em { color: var(--gold); font-style: italic; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 56px;
}

.value-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 22px;
  text-align: center;
}

.value-card span { font-size: 2.2rem; display: block; margin-bottom: 12px; }
.value-card h4 { color: var(--gold); margin-bottom: 8px; font-size: 1.05rem; }
.value-card p { color: #aaa; font-size: .9rem; }

.about-values h2 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.founder-section { }
.founder-section h2 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 1.8rem;
  margin-bottom: 28px;
}

.founder-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
}

.founder-photo-wrap img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.founder-photo-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: #111;
  border-radius: 12px;
  border: 2px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.founder-bio h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 6px;
}

.founder-title { color: var(--gold); font-size: .9rem; margin-bottom: 18px; }
.founder-bio p { color: #aaa; margin-bottom: 14px; font-size: .95rem; }
.founder-bio em { color: var(--gold); font-style: italic; }
.founder-bio strong { color: #ddd; }

/* ---- CONTACT ---- */
.contact-section { padding: 70px 0 90px; }

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

.contact-info-panel h2,
.contact-form-panel h2 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.contact-info-panel > p { color: #aaa; margin-bottom: 28px; font-size: .95rem; }

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-icon { font-size: 1.4rem; margin-top: 2px; }

.contact-item h4 { color: var(--gold); font-size: .9rem; margin-bottom: 4px; }
.contact-item a, .contact-item p { color: #bbb; font-size: .93rem; }
.contact-item a:hover { color: var(--gold); }

.contact-socials { display: flex; flex-direction: column; gap: 10px; margin-top: 28px; }

/* ---- FORMS ---- */
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group label {
  display: block;
  color: #bbb;
  font-size: .88rem;
  margin-bottom: 6px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: #111;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: 'Lato', sans-serif;
  font-size: .95rem;
  transition: border-color .2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group select option { background: #111; }

.form-success {
  margin-top: 20px;
  background: rgba(37,211,102,.1);
  border: 1px solid rgba(37,211,102,.3);
  border-radius: 10px;
  padding: 16px 20px;
  color: #25D366;
  font-size: .93rem;
}

/* ---- PARTNERSHIP ---- */
.partnership-section { padding: 70px 0 90px; }

.tabs { display: flex; gap: 4px; margin-bottom: 32px; border-bottom: 1px solid var(--border); }

.tab-btn {
  padding: 12px 24px;
  background: transparent;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  font-size: .95rem;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all .2s;
}

.tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); }

.tab-content { display: none; }
.tab-content.active { display: block; }

.form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
}

.form-card h2 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.form-card > p { color: #aaa; margin-bottom: 28px; font-size: .95rem; }

/* ---- FOOTER ---- */
.footer {
  background: #080808;
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand img { height: 48px; margin-bottom: 10px; }
.footer-brand p { color: var(--muted); font-style: italic; font-size: .9rem; }

.footer-info h4, .footer-social h4 {
  color: var(--gold);
  margin-bottom: 14px;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-info p, .footer-info a {
  color: var(--muted);
  font-size: .88rem;
  margin-bottom: 8px;
  display: block;
}

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

.footer-social { display: flex; flex-direction: column; gap: 10px; }
.footer-social h4 { margin-bottom: 4px; }

.social-btn {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 700;
  transition: opacity .2s;
  text-align: center;
}
.social-btn:hover { opacity: .85; }
.facebook { background: #1877f2; color: #fff; }
.youtube { background: #ff0000; color: #fff; }
.whatsapp-foot { background: #25D366; color: #fff; }

.footer-bottom {
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 18px 24px;
  color: var(--muted);
  font-size: .83rem;
}

/* ---- SOCIAL BUTTONS (contact page) ---- */
.contact-socials .social-btn { width: 100%; }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: rgba(10,10,10,.98);
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--border);
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; font-size: 1rem; }

  .season-body { grid-template-columns: 1fr; }
  .founder-card { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .season-header { flex-direction: column; align-items: flex-start; gap: 8px; }
}

.tba { color: #666; font-style: italic; font-size: .92rem; }
.loading-text { color: #666; font-style: italic; padding: 20px 0; }

/* ---- STATS SECTION ---- */
.stats-section {
  background: #0a0a0a;
  border-top: 1px solid #1e1e1e;
  border-bottom: 1px solid #1e1e1e;
  padding: 64px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 24px 16px;
  border-right: 1px solid #1e1e1e;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: #c9a84c;
  line-height: 1;
  margin-bottom: 10px;
}
.stat-number .plus { color: #c9a84c; }
.stat-divider {
  width: 36px;
  height: 2px;
  background: #c9a84c;
  margin: 0 auto 10px;
}
.stat-label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 4px;
}
.stat-sub { font-size: .78rem; color: #666; }

/* ---- GALLERY PREVIEW (homepage) ---- */
.home-gallery-section { padding: 72px 0; background: #0d0d0d; }
.home-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}
.home-gallery-item {
  border-radius: 10px;
  overflow: hidden;
  background: #161616;
  cursor: pointer;
  position: relative;
}
.home-gallery-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}
.home-gallery-item:hover img { transform: scale(1.04); }
.home-gallery-item iframe,
.home-gallery-item video {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  display: block;
}
.gallery-view-all { text-align: center; margin-top: 8px; }

/* ---- QUICK LINKS ---- */
.quick-links-section {
  padding: 64px 0;
  background: #080808;
  border-top: 1px solid #1e1e1e;
}
.quick-links-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: #fff;
  text-align: center;
  margin-bottom: 36px;
}
.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}
.quick-link-card {
  display: block;
  background: #141414;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  color: #e0e0e0;
  text-decoration: none;
  transition: border-color .2s, background .2s, transform .2s;
}
.quick-link-card:hover {
  border-color: #c9a84c;
  background: #161616;
  transform: translateY(-3px);
  color: #fff;
}
.quick-link-card.primary {
  border-color: rgba(201,168,76,.4);
  background: rgba(201,168,76,.06);
}
.quick-link-card.primary:hover { background: rgba(201,168,76,.12); }
.quick-link-card .ql-label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 6px;
}
.quick-link-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.3;
}
.quick-link-card p { font-size: .82rem; color: #777; line-height: 1.5; }

/* Lightbox */
#lb { display:none; position:fixed; inset:0; background:rgba(0,0,0,.93); z-index:9999; align-items:center; justify-content:center; }
#lb.open { display:flex; }
#lb img { max-width:90vw; max-height:88vh; border-radius:8px; }
#lb-close { position:absolute; top:20px; right:28px; font-size:2rem; color:#fff; cursor:pointer; background:none; border:none; }

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-item { border-right: 1px solid #1e1e1e; border-bottom: 1px solid #1e1e1e; }
  .stat-item:nth-child(3) { border-right: none; }
  .stat-item:nth-child(4) { border-bottom: none; }
  .stat-item:nth-child(5) { border-right: none; border-bottom: none; }
  .stat-number { font-size: 2rem; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid #1e1e1e; }
  .stat-item:nth-child(4) { border-right: none; border-bottom: none; }
  .stat-item:nth-child(5) { border-right: none; border-bottom: none; }
}
