/* ============================================================
   EID PICNIC 2027 — CORE DESIGN SYSTEM
   Jannah Immigrants · Akure
   ============================================================ */

:root {
  --ink: #0d2a20;
  --emerald: #1b6b4a;
  --emerald-2: #14523a;
  --gold: #c9a227;
  --gold-light: #e8c766;
  --gold-dim: #8a7024;
  --ivory: #faf6ea;
  --paper: #fffcf5;
  --ink-text: #16241d;
  --mist: #6f7d75;
  --line: rgba(13, 42, 32, 0.12);
  --shadow-sm: 0 2px 8px rgba(13, 42, 32, 0.08);
  --shadow-md: 0 12px 32px rgba(13, 42, 32, 0.14);
  --shadow-lg: 0 24px 60px rgba(13, 42, 32, 0.22);
  --radius: 20px;
  --radius-sm: 12px;
  --wa: #25d366;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--ink-text);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
section { position: relative; padding: 80px 0; }

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  line-height: 1.08;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.eyebrow {
  font-family: 'Inter', sans-serif; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  font-size: .7rem; color: var(--gold-dim); display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
}
.eyebrow::before { content: ''; width: 30px; height: 1.5px; background: var(--gold-dim); display: inline-block; }
.eyebrow.gold { color: var(--gold); }
.eyebrow.gold::before { background: var(--gold); }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4.2vw, 3rem); margin-bottom: 14px; }
.section-head p { color: var(--mist); font-size: 1.05rem; line-height: 1.6; }
.on-dark h2, .on-dark p, .on-dark .eyebrow { color: var(--ivory); }
.on-dark .eyebrow { color: var(--gold-light); }
.on-dark .eyebrow::before { background: var(--gold-light); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px; padding: 16px 34px; border-radius: 100px;
  font-weight: 600; font-size: .95rem; text-decoration: none; border: none; cursor: pointer;
  transition: transform .25s cubic-bezier(.2, .8, .2, 1), box-shadow .25s ease, background .25s ease;
  white-space: nowrap; letter-spacing: 0.3px;
}
.btn-gold { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: var(--ink); box-shadow: var(--shadow-sm); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; border: 1.5px solid rgba(250, 246, 234, .55); color: var(--ivory); backdrop-filter: blur(4px); }
.btn-outline:hover { background: rgba(250, 246, 234, .12); transform: translateY(-3px); }
.btn-outline-dark { background: transparent; border: 1.5px solid var(--line); color: var(--ink); }
.btn-outline-dark:hover { background: rgba(13, 42, 32, .05); transform: translateY(-3px); }
.btn-wa { background: var(--wa); color: #fff; box-shadow: var(--shadow-sm); }
.btn-wa:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); background: #1ebe5d; }
.btn-sm { padding: 10px 22px; font-size: .8rem; }
.btn-lg { padding: 18px 48px; font-size: 1.1rem; }
.btn-glass { background: rgba(255, 255, 255, 0.08); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.15); color: #fff; }
.btn-glass:hover { background: rgba(255, 255, 255, 0.2); transform: translateY(-3px); }
.btn:disabled, .btn.is-disabled { opacity: .55; cursor: not-allowed; transform: none !important; }

/* Navigation */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 900; padding: 20px 0; transition: background .35s ease, padding .35s ease, box-shadow .35s ease; }
.navbar.scrolled { background: rgba(13, 42, 32, .85); backdrop-filter: blur(16px); padding: 12px 0; box-shadow: 0 8px 30px rgba(0, 0, 0, .2); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 10px; font-family: 'Fraunces', serif; font-size: 1.3rem; color: var(--ivory); text-decoration: none; font-weight: 600; }
.brand .fa-moon { color: var(--gold-light); }
.brand span { color: var(--gold-light); font-style: italic; font-weight: 500; }
.nav-links { display: flex; align-items: center; gap: 38px; list-style: none; }
.nav-links a { text-decoration: none; color: rgba(250, 246, 234, .85); font-size: .9rem; font-weight: 500; transition: color .25s; position: relative; cursor: pointer; }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--gold-light); transition: width .3s; }
.nav-links a:hover { color: var(--ivory); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--gold-light); }
.nav-links a.active::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-toggle { display: none; background: none; border: none; color: var(--ivory); font-size: 1.6rem; cursor: pointer; }

/* Page Hero */
.page-hero {
  padding: 160px 0 70px;
  background: linear-gradient(160deg, rgba(13, 42, 32, .85) 0%, rgba(13, 42, 32, .95) 100%), url('https://images.pexels.com/photos/38581427/pexels-photo-38581427.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover no-repeat;
  color: var(--ivory);
}
.page-hero h1 { font-size: clamp(2.6rem, 5vw, 4rem); color: var(--ivory); }
.page-hero p { color: rgba(250, 246, 234, .8); font-size: 1.2rem; max-width: 600px; margin-top: 12px; }
.breadcrumb { font-size: .8rem; color: rgba(250, 246, 234, .6); margin-top: 18px; display: flex; gap: 8px; align-items: center; }
.breadcrumb a { color: rgba(250, 246, 234, .8); }
.breadcrumb a:hover { color: var(--gold-light); }

/* Grids */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* Cards */
.card-glass {
  background: rgba(255, 255, 255, 0.6); backdrop-filter: blur(8px); border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius); padding: 28px 26px; box-shadow: var(--shadow-sm); transition: all .35s ease;
}
.card-glass:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.card-dark { background: var(--ink); color: var(--ivory); padding: 28px; border-radius: var(--radius); }
.card-dark h3 { color: var(--ivory); }

/* Hero (homepage) */
.hero {
  min-height: 100vh; display: flex; align-items: center; position: relative; color: var(--ivory);
  padding: 140px 0 90px;
  background:
    linear-gradient(160deg, rgba(13, 42, 32, .7) 0%, rgba(13, 42, 32, .85) 70%, rgba(13, 42, 32, .95) 100%),
    url('https://images.pexels.com/photos/38581428/pexels-photo-38581428.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover no-repeat;
  background-attachment: fixed;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; }
.hero h1 { font-size: clamp(2.8rem, 6.5vw, 5rem); margin-bottom: 16px; color: var(--ivory); letter-spacing: -0.02em; }
.hero h1 em { font-style: italic; color: var(--gold-light); font-weight: 500; }
.hero-sub { font-size: 1.2rem; color: rgba(250, 246, 234, .9); max-width: 540px; margin-bottom: 32px; line-height: 1.7; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 10px; }
.hero-note { font-size: .8rem; color: rgba(250, 246, 234, .6); margin-top: 14px; display: flex; align-items: center; gap: 8px; }
.hero-note i { color: var(--gold-light); }

/* Crescent Countdown */
.crescent-wrap { display: flex; flex-direction: column; align-items: center; }
.crescent-arc { width: 100%; max-width: 340px; }
.countdown { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; width: 100%; max-width: 400px; margin-top: -30px; }
.cd-cell {
  background: rgba(250, 246, 234, .08); border: 1px solid rgba(232, 199, 102, .35); backdrop-filter: blur(12px);
  border-radius: 16px; padding: 16px 6px; text-align: center; box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.cd-num { font-family: 'Fraunces', serif; font-size: clamp(1.8rem, 3.6vw, 2.6rem); color: var(--gold-light); font-variant-numeric: tabular-nums; display: block; }
.cd-label { font-size: .6rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(250, 246, 234, .7); margin-top: 4px; display: block; }
.countdown.countdown-lg .cd-num { font-size: clamp(2.2rem, 4.4vw, 3.4rem); }
.countdown-note { text-align: center; font-size: .85rem; color: var(--mist); margin-top: 18px; }

/* Marquee */
.marquee { background: var(--gold); overflow: hidden; padding: 14px 0; }
.marquee-track { display: flex; gap: 48px; white-space: nowrap; width: max-content; }
.marquee-track span { font-family: 'Fraunces', serif; font-style: italic; font-weight: 500; font-size: 1.05rem; color: var(--ink); display: flex; align-items: center; gap: 48px; }
.marquee-track span i { font-size: .6rem; }

/* Gallery Masonry */
.gallery-masonry { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; gap: 16px; }
.g-item { overflow: hidden; border-radius: var(--radius-sm); position: relative; cursor: pointer; box-shadow: var(--shadow-sm); transition: transform .4s ease, box-shadow .4s; }
.g-item:hover { transform: scale(1.02); box-shadow: var(--shadow-md); z-index: 2; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.g-item:hover img { transform: scale(1.06); }
.g-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(13, 42, 32, .4)); opacity: 0; transition: opacity .3s; }
.g-item:hover::after { opacity: 1; }
.g-span2 { grid-column: span 2; grid-row: span 2; }
.g-spanw2 { grid-column: span 2; }

/* Filter buttons */
.filter-bar { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 30px; }
.filter-btn { padding: 8px 20px; border-radius: 100px; border: 1px solid var(--line); background: transparent; cursor: pointer; font-weight: 500; transition: all .25s; }
.filter-btn.active, .filter-btn:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }

/* Lightbox */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0, 0, 0, .9); z-index: 1000; align-items: center; justify-content: center; padding: 20px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90%; max-height: 85vh; border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); }
.lightbox-close { position: absolute; top: 20px; right: 30px; font-size: 2.5rem; color: #fff; cursor: pointer; transition: transform .25s; }
.lightbox-close:hover { transform: rotate(90deg); }
.lightbox-caption { position: absolute; bottom: 24px; left: 0; right: 0; text-align: center; color: rgba(255,255,255,.75); font-size: .85rem; }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2);
  color: #fff; width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1.1rem; transition: background .25s;
}
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,.2); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* Timeline (schedule) */
.timeline-detailed { max-width: 900px; margin: 0 auto; }
.tl-block { display: flex; gap: 30px; margin-bottom: 40px; align-items: flex-start; border-left: 3px solid var(--gold); padding-left: 30px; }
.tl-block .time { font-family: 'Fraunces', serif; font-size: 1.4rem; color: var(--gold); min-width: 140px; }
.tl-block .content h3 { font-size: 1.3rem; margin-bottom: 6px; }
.tl-block .content p { color: var(--mist); line-height: 1.6; }

/* Timeline vertical (about page) */
.timeline-vertical { position: relative; padding-left: 40px; border-left: 2px solid var(--gold); max-width: 700px; margin: 0 auto; }
.tl-item { margin-bottom: 40px; position: relative; }
.tl-item::before { content: ''; position: absolute; left: -46px; top: 6px; width: 14px; height: 14px; border-radius: 50%; background: var(--gold); border: 3px solid var(--paper); }
.tl-item h3 { font-size: 1.3rem; }
.tl-item p { color: var(--mist); line-height: 1.6; }

/* Team */
.team-member { text-align: center; }
.team-member img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; margin: 0 auto 12px; border: 3px solid var(--gold-light); }
.team-member h4 { margin-bottom: 4px; }
.team-member p { color: var(--mist); font-size: .9rem; }

/* Activity cards */
.activity-card { background: var(--paper); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .35s cubic-bezier(.2, .8, .2, 1), box-shadow .35s ease; border: 1px solid var(--line); }
.activity-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.activity-card .act-icon { font-size: 2.8rem; color: var(--gold); padding: 24px 24px 0; }
.activity-card .act-body { padding: 12px 24px 24px; }
.activity-card .act-body h3 { font-size: 1.2rem; margin-bottom: 6px; }
.activity-card .act-body p { color: var(--mist); font-size: .9rem; line-height: 1.6; }

/* Ticket cards */
.ticket-card {
  background: var(--paper); border-radius: var(--radius); padding: 40px 32px; text-align: center;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line); transition: transform .35s ease, box-shadow .35s ease; position: relative;
}
.ticket-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.ticket-card.featured { border: 2px solid var(--gold); }
.ticket-card .ticket-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--ink); font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 6px 16px; border-radius: 100px; }
.ticket-card .ticket-icon { font-size: 2.6rem; color: var(--gold); margin-bottom: 14px; }
.ticket-card h3 { font-size: 1.3rem; margin-bottom: 6px; }
.ticket-card .ticket-note { color: var(--mist); font-size: .9rem; margin-bottom: 18px; }
.ticket-card ul { list-style: none; display: grid; gap: 10px; margin: 18px 0 24px; text-align: left; }
.ticket-card ul li { display: flex; gap: 10px; color: var(--ink-text); font-size: .92rem; }
.ticket-card ul li i { color: var(--gold); margin-top: 3px; }

/* Reserve card */
.reserve-card { max-width: 700px; margin: 0 auto; background: var(--paper); border-radius: var(--radius); padding: 50px 40px; box-shadow: var(--shadow-lg); border: 1px solid var(--line); text-align: center; }
.reserve-card .icon { font-size: 3.5rem; color: var(--gold); margin-bottom: 16px; }
.contact-options { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 20px; }

/* Sponsors */
.sponsor-logo { display: flex; align-items: center; justify-content: center; height: 120px; background: var(--ivory); border-radius: var(--radius-sm); border: 1px dashed var(--line); font-family: 'Fraunces', serif; font-style: italic; color: var(--mist); }
.sponsor-tier-badge { display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 6px 16px; border-radius: 100px; margin-bottom: 14px; }
.sponsor-tier-badge.gold { background: rgba(201,162,39,.15); color: var(--gold-dim); }
.sponsor-tier-badge.silver { background: rgba(111,125,117,.15); color: var(--mist); }
.sponsor-tier-badge.bronze { background: rgba(138,112,36,.12); color: var(--gold-dim); }

/* Vendor/Volunteer lists */
.requirement-list, .benefit-list { list-style: none; display: grid; gap: 12px; }
.requirement-list li, .benefit-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--mist); font-size: .95rem; }
.requirement-list li i, .benefit-list li i { color: var(--gold); margin-top: 3px; }

/* FAQ */
.faq-search { max-width: 600px; margin: 0 auto 40px; }
.faq-search input { width: 100%; padding: 16px 24px; border-radius: 100px; border: 1.5px solid var(--line); font-size: 1rem; background: var(--paper); transition: border-color .3s, box-shadow .3s; }
.faq-search input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(201, 162, 39, .15); }
.faq-empty { text-align: center; color: var(--mist); padding: 30px 0; display: none; }
.faq-empty.show { display: block; }
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; background: var(--paper); transition: border-color .3s; }
.faq-item.hidden { display: none; }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 22px 26px; cursor: pointer; font-weight: 600; font-size: 1rem; background: var(--ivory); transition: background .2s; gap: 16px; }
.faq-q:hover { background: rgba(201, 162, 39, 0.05); }
.faq-q i { transition: transform .3s; color: var(--gold-dim); flex-shrink: 0; }
.faq-item.active .faq-q i { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-item.active .faq-a { max-height: 400px; }
.faq-a p { padding: 0 26px 22px; color: var(--mist); font-size: .94rem; line-height: 1.7; }
.faq-category-tabs { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 30px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.contact-row { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 18px; }
.contact-row i { width: 44px; height: 44px; border-radius: 50%; background: var(--ink); color: var(--gold-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.1rem; }
.contact-row strong { display: block; margin-bottom: 2px; }
.contact-row span { color: var(--mist); font-size: .92rem; }
.social-row { display: flex; gap: 12px; margin-top: 12px; flex-wrap: wrap; }
.social-row a { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; transition: all .25s; color: var(--ink); font-size: 1.1rem; }
.social-row a:hover { background: var(--ink); color: var(--gold-light); border-color: var(--ink); }
.contact-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); height: 400px; }
.contact-map iframe { width: 100%; height: 100%; border: 0; }

/* Contact form */
.contact-form { display: grid; gap: 18px; margin-top: 12px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: grid; gap: 6px; }
.form-group label { font-size: .82rem; font-weight: 600; color: var(--ink); }
.form-group input, .form-group select, .form-group textarea {
  padding: 14px 16px; border-radius: var(--radius-sm); border: 1.5px solid var(--line); background: var(--paper);
  font-family: inherit; font-size: .95rem; color: var(--ink-text); transition: border-color .25s, box-shadow .25s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(201, 162, 39, .12); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: .8rem; color: var(--mist); }
.form-success { display: none; background: rgba(37, 211, 102, .1); border: 1px solid rgba(37, 211, 102, .35); color: var(--emerald-2); padding: 16px 20px; border-radius: var(--radius-sm); font-size: .92rem; }
.form-success.show { display: block; }

/* 404 */
.error-container { max-width: 520px; text-align: center; margin: 0 auto; padding: 60px 20px; }
.error-icon { font-size: 5rem; color: var(--gold); margin-bottom: 16px; }

/* Footer */
footer { background: var(--ink); color: rgba(250, 246, 234, .7); padding: 80px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer-brand p { margin-top: 14px; font-size: .9rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 { color: var(--ivory); font-family: 'Inter', sans-serif; font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { list-style: none; display: grid; gap: 11px; }
.footer-col a { color: rgba(250, 246, 234, .7); font-size: .9rem; transition: color .25s; cursor: pointer; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(250, 246, 234, .12); padding-top: 26px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .8rem; }

/* Floating elements */
.fab-wa {
  position: fixed; bottom: 26px; right: 26px; width: 60px; height: 60px; background: var(--wa); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.6rem; text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .3); z-index: 800;
}
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; background: var(--ink); padding: 14px 20px; display: none;
  align-items: center; justify-content: space-between; gap: 14px; z-index: 790; box-shadow: 0 -8px 24px rgba(0, 0, 0, .2);
  transform: translateY(100%); transition: transform .4s cubic-bezier(.2, .8, .2, 1);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta span { color: var(--ivory); font-size: .85rem; font-weight: 600; }

/* Skip link (accessibility) */
.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--gold); color: var(--ink); padding: 12px 20px;
  z-index: 9999; border-radius: 0 0 8px 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* Utility */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.badge-soon { display: inline-block; background: rgba(201,162,39,.12); color: var(--gold-dim); font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 5px 14px; border-radius: 100px; }

::selection { background: var(--gold-light); color: var(--ink); }
:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 3px; }
