/* ═══════════════════════════════════════════
   UTTORALOY CARE FOUNDATION — style.css
   Power BI Dark Gold Theme
═══════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --gold: #C9A84C; --gold2: #E8C96A;
  --dark: #0F1117; --surface: #141820; --card: #1A1F2E;
  --text: #E8E8E8; --muted: #6B7280; --dim: #374151;
  --green: #22c55e; --red: #ef4444;
  --border: rgba(201,168,76,0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { height: 100%; }
body { font-family: 'DM Sans', sans-serif; background: var(--dark); color: var(--text); min-height: 100%; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
button { font-family: inherit; }

/* ── LAYOUT ── */
#sidebar {
  position: fixed; left: 0; top: 0;
  width: 256px; height: 100vh; z-index: 100;
  background: var(--surface);
  border-right: 1px solid var(--border);
  overflow-y: auto; display: flex; flex-direction: column;
  transition: transform 0.3s;
}
#main {
  margin-left: 256px;
  min-height: 100vh;
  display: flex; flex-direction: column;
}
#topbar {
  position: sticky; top: 0; z-index: 50;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  height: 53px;
  display: flex; align-items: center; justify-content: space-between;
}
.content { padding: 24px 28px; flex: 1; }

/* ── SIDEBAR LOGO ── */
.sidebar-logo {
  padding: 16px; display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid var(--border); flex-shrink: 0;
}
.logo-img { width: 38px; height: 38px; object-fit: contain; flex-shrink: 0; }
.logo-name { font-family: 'Syne', sans-serif; font-size: 0.78rem; font-weight: 700; color: var(--gold); letter-spacing: 0.08em; line-height: 1.2; }
.logo-sub { font-size: 0.6rem; color: var(--muted); letter-spacing: 0.05em; }
.nav-section { font-size: 0.58rem; letter-spacing: 0.35em; color: var(--dim); text-transform: uppercase; padding: 12px 16px 3px; }
.nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 16px; color: var(--muted); font-size: 0.84rem;
  border-left: 3px solid transparent; transition: all 0.2s;
}
.nav-item:hover { background: rgba(201,168,76,0.06); color: var(--text); }
.nav-item.active { background: linear-gradient(90deg,rgba(201,168,76,0.12),transparent); border-left-color: var(--gold); color: var(--gold); }
.nav-item i { width: 16px; font-size: 0.82rem; flex-shrink: 0; }
.nav-badge { margin-left: auto; font-size: 0.55rem; padding: 2px 6px; background: rgba(201,168,76,0.15); color: var(--gold); border: 1px solid rgba(201,168,76,0.3); border-radius: 2px; }
.sidebar-footer { padding: 12px 16px; border-top: 1px solid var(--border); margin-top: auto; font-size: 0.65rem; color: var(--dim); line-height: 1.8; }

/* ── TOPBAR ── */
.breadcrumb { font-size: 0.75rem; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.breadcrumb a { color: var(--muted); }
.breadcrumb .current { color: var(--gold); }
.topbar-right { display: flex; align-items: center; gap: 12px; }
.search-box {
  display: flex; align-items: center; gap: 8px;
  background: var(--dark); border: 1px solid var(--border);
  padding: 6px 12px; border-radius: 3px; font-size: 0.78rem;
}
.search-box input { background: none; border: none; color: var(--text); outline: none; width: 120px; font-size: 0.78rem; }
.search-box input::placeholder { color: var(--dim); }
.btn-donate-top {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--dark); font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 0.72rem; padding: 8px 18px; border: none; border-radius: 3px;
  cursor: pointer; letter-spacing: 0.05em; white-space: nowrap;
  text-decoration: none; display: inline-block;
}
#mob-toggle { display: none; background: none; border: none; color: var(--muted); font-size: 1.2rem; cursor: pointer; padding: 4px; }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, #141820 0%, #1A1F2E 60%, #141820 100%);
  padding: 40px 28px 32px; position: relative; overflow: hidden; min-height: 260px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(201,168,76,0.05) 1px,transparent 1px),linear-gradient(90deg,rgba(201,168,76,0.05) 1px,transparent 1px);
  background-size: 40px 40px;
}
.hero-glow {
  position: absolute; top: 40%; left: 15%; width: 500px; height: 500px;
  background: radial-gradient(circle,rgba(201,168,76,0.09) 0%,transparent 65%);
  transform: translate(-50%,-50%); pointer-events: none;
}
.hero-logo { position: absolute; top: 28px; left: 50%; transform: translateX(-50%); width: 80px; height: 80px; object-fit: contain; z-index: 1; }
.hero-inner { position: relative; z-index: 1; }
.hero-tag { display: inline-block; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.3); color: var(--gold); font-size: 0.65rem; letter-spacing: 0.35em; padding: 4px 12px; border-radius: 2px; margin-bottom: 12px; }
.hero h1 { font-family: 'Syne', sans-serif; font-size: clamp(2rem,5vw,4rem); font-weight: 800; line-height: 1.05; color: #fff; margin-bottom: 10px; }
.hero h1 span { background: linear-gradient(135deg,#C9A84C,#E8C96A); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero p { font-size: 0.95rem; color: rgba(232,232,232,0.6); max-width: 520px; line-height: 1.7; margin-bottom: 24px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── CARDS ── */
.card { background: var(--card); border: 1px solid var(--border); border-radius: 4px; }
.metric-card { background: var(--card); border: 1px solid var(--border); border-top: 3px solid var(--gold); border-radius: 4px; padding: 16px; }
.inner-box { background: var(--dark); border: 1px solid rgba(201,168,76,0.07); border-radius: 3px; padding: 14px; }

/* ── GRIDS ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.grid-2-1 { display: grid; grid-template-columns: 2fr 1fr; gap: 16px; }
.grid-1-2 { display: grid; grid-template-columns: 1fr 2fr; gap: 16px; }
.grid-col-2-1 { display: grid; grid-template-columns: 2fr 1fr; gap: 16px; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 { font-family: 'Syne', sans-serif; }
.gold-text { background: linear-gradient(135deg,#C9A84C,#E8C96A); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.page-eyebrow { font-size: 0.6rem; letter-spacing: 0.4em; color: var(--gold); text-transform: uppercase; font-family: 'Syne', sans-serif; display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.page-eyebrow::before { content: ''; display: inline-block; width: 32px; height: 3px; background: linear-gradient(90deg,var(--gold),var(--gold2)); border-radius: 2px; flex-shrink: 0; }
.page-title { font-size: clamp(1.5rem,3vw,2.2rem); font-weight: 700; color: #fff; margin-bottom: 4px; }
.page-sub { font-size: 0.85rem; color: var(--muted); margin-bottom: 24px; }
.sec-eyebrow { font-size: 0.6rem; letter-spacing: 0.35em; color: var(--gold); text-transform: uppercase; font-family: 'Syne', sans-serif; display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.sec-eyebrow::before { content: ''; display: inline-block; width: 28px; height: 3px; background: linear-gradient(90deg,var(--gold),var(--gold2)); border-radius: 2px; flex-shrink: 0; }
.card-title { font-family: 'Syne', sans-serif; font-size: 0.75rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 0.25em; display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.card-title::before { content: ''; display: inline-block; width: 24px; height: 3px; background: linear-gradient(90deg,var(--gold),var(--gold2)); border-radius: 2px; }
.tag { display: inline-block; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.3); color: var(--gold); font-size: 0.68rem; letter-spacing: 0.1em; padding: 3px 10px; border-radius: 2px; }
.tag-green { background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.25); color: #86efac; font-size: 0.68rem; letter-spacing: 0.1em; padding: 3px 10px; border-radius: 2px; display: inline-block; }
.tag-blue { background: rgba(59,130,246,0.08); border: 1px solid rgba(59,130,246,0.25); color: #93c5fd; font-size: 0.68rem; letter-spacing: 0.1em; padding: 3px 10px; border-radius: 2px; display: inline-block; }

/* ── BUTTONS ── */
.btn { display: inline-block; font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.8rem; letter-spacing: 0.05em; padding: 10px 24px; border: none; border-radius: 3px; cursor: pointer; transition: all 0.3s; text-decoration: none; }
.btn-gold { background: linear-gradient(135deg,var(--gold),var(--gold2)); color: var(--dark); }
.btn-gold:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.4); }
.btn-outline { background: transparent; color: var(--gold); border: 1px solid rgba(201,168,76,0.4); }
.btn-outline:hover { background: rgba(201,168,76,0.08); }
.btn-dark { background: var(--dark); color: var(--gold); border: 2px solid rgba(201,168,76,0.2); }
.btn-dark:hover { border-color: var(--gold); }

/* ── PROGRESS BAR ── */
.prog-track { height: 6px; background: rgba(255,255,255,0.06); border-radius: 3px; overflow: hidden; }
.prog-fill { height: 100%; background: linear-gradient(90deg,var(--gold),var(--gold2)); border-radius: 3px; }

/* ── FORM ── */
.form-group { margin-bottom: 16px; }
.form-label { font-size: 0.62rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 6px; }
.form-input { width: 100%; background: var(--dark); border: 1px solid rgba(201,168,76,0.18); color: var(--text); padding: 10px 14px; border-radius: 3px; font-size: 0.88rem; font-family: 'DM Sans', sans-serif; outline: none; transition: border 0.3s; }
.form-input:focus { border-color: var(--gold); }
.form-input::placeholder { color: var(--dim); }
.form-select { width: 100%; background: var(--dark); border: 1px solid rgba(201,168,76,0.18); color: var(--text); padding: 10px 14px; border-radius: 3px; font-size: 0.88rem; font-family: 'DM Sans', sans-serif; outline: none; }

/* ── TABLE ── */
.data-table { width: 100%; border-collapse: collapse; }
.data-table td { padding: 11px 0; border-bottom: 1px solid rgba(201,168,76,0.06); font-size: 0.86rem; vertical-align: top; }
.data-table td:first-child { color: var(--muted); width: 200px; font-size: 0.78rem; letter-spacing: 0.05em; padding-right: 20px; }
.data-table tr:last-child td { border-bottom: none; }
.mono { font-family: 'Courier New', monospace; font-size: 0.9rem; color: var(--gold); }

/* ── STAT BOXES ── */
.stat-box { background: var(--dark); border: 1px solid rgba(201,168,76,0.08); border-radius: 3px; padding: 16px; text-align: center; }
.stat-num { font-size: 2.2rem; font-weight: 700; font-family: 'Syne', sans-serif; background: linear-gradient(135deg,#C9A84C,#E8C96A); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; }
.stat-label { font-size: 0.62rem; letter-spacing: 0.25em; color: var(--muted); text-transform: uppercase; margin-top: 6px; }

/* ── BAR CHART ── */
.bar-chart { display: flex; align-items: flex-end; gap: 10px; height: 140px; padding-bottom: 24px; position: relative; }
.bar-chart::after { content: ''; position: absolute; bottom: 24px; left: 0; right: 0; height: 1px; background: rgba(201,168,76,0.08); }
.bar-item { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.bar { background: linear-gradient(180deg,var(--gold) 0%,rgba(201,168,76,0.25) 100%); border-radius: 3px 3px 0 0; width: 100%; min-width: 20px; }
.bar-val { font-size: 0.65rem; color: var(--gold); font-family: 'Syne', sans-serif; font-weight: 700; }
.bar-lbl { font-size: 0.6rem; color: var(--muted); }

/* ── GALLERY ── */
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.gallery-item { border-radius: 4px; overflow: hidden; position: relative; border: 1px solid var(--border); }
.gallery-item img { width: 100%; height: 200px; object-fit: cover; display: block; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-caption { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent,rgba(15,17,23,0.92)); padding: 24px 12px 10px; }
.gallery-tag { font-size: 0.6rem; letter-spacing: 0.12em; color: var(--gold); }
.gallery-title { font-size: 0.78rem; font-family: 'Syne', sans-serif; color: #fff; margin-top: 2px; }

/* ── TEAM ── */
.team-card { text-align: center; padding: 24px 18px; }
.team-avatar { width: 76px; height: 76px; border-radius: 50%; background: linear-gradient(135deg,var(--gold),var(--gold2)); display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; font-family: 'Syne', sans-serif; font-size: 1.3rem; font-weight: 700; color: var(--dark); overflow: hidden; }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 3px; }
.team-role { font-size: 0.72rem; color: var(--gold); margin-bottom: 10px; }
.team-bio { font-size: 0.78rem; color: var(--muted); line-height: 1.7; }
.team-din { font-size: 0.65rem; color: var(--dim); margin-top: 8px; }

/* ── NEWS ── */
.news-card { padding: 20px; }
.news-card h3 { font-family: 'Syne', sans-serif; font-size: 0.92rem; color: #fff; margin: 8px 0 6px; }
.news-card p { font-size: 0.84rem; color: var(--muted); line-height: 1.75; }
.news-meta { font-size: 0.68rem; color: var(--dim); margin-top: 10px; }

/* ── EVENT ── */
.event-card { display: flex; gap: 14px; padding: 16px; }
.event-date-box { flex-shrink: 0; width: 52px; height: 52px; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.2); border-radius: 4px; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.event-day { font-size: 1.3rem; font-weight: 800; color: var(--gold); font-family: 'Syne', sans-serif; line-height: 1; }
.event-mon { font-size: 0.58rem; color: var(--muted); letter-spacing: 0.15em; }
.event-title { font-family: 'Syne', sans-serif; font-size: 0.88rem; color: #fff; margin-bottom: 3px; }
.event-meta { font-size: 0.72rem; color: var(--muted); }

/* ── FAQ ACCORDION ── */
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: 4px; margin-bottom: 8px; overflow: hidden; }
.faq-btn { width: 100%; text-align: left; background: none; border: none; color: var(--text); padding: 16px 20px; cursor: pointer; display: flex; align-items: center; justify-content: space-between; font-size: 0.88rem; font-family: 'Syne', sans-serif; }
.faq-btn:hover { background: rgba(201,168,76,0.04); }
.faq-icon { color: var(--gold); transition: transform 0.3s; font-size: 0.8rem; }
.faq-icon.open { transform: rotate(180deg); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-body.open { max-height: 300px; }
.faq-body p { padding: 4px 20px 18px; font-size: 0.85rem; color: var(--muted); line-height: 1.75; }

/* ── UPI / DONATE ── */
.upi-box { display: flex; gap: 16px; align-items: center; background: var(--dark); border: 1px solid rgba(201,168,76,0.2); border-radius: 4px; padding: 14px; }
.upi-box img { width: 80px; height: 80px; object-fit: contain; border-radius: 4px; flex-shrink: 0; }
.amt-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }
.amt-chip { padding: 9px 20px; border: 1px solid rgba(201,168,76,0.3); color: var(--gold); background: transparent; border-radius: 3px; cursor: pointer; font-family: 'Syne', sans-serif; font-size: 0.82rem; transition: all 0.25s; }
.amt-chip:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }

/* ── DONATE BANNER ── */
.donate-banner { background: linear-gradient(135deg,var(--gold),var(--gold2)); padding: 24px 28px; border-radius: 4px; display: flex; align-items: center; justify-content: space-between; gap: 20px; position: relative; overflow: hidden; }
.donate-banner::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(0,0,0,0.08) 1px,transparent 1px),linear-gradient(90deg,rgba(0,0,0,0.08) 1px,transparent 1px); background-size: 28px 28px; }
.donate-banner > * { position: relative; z-index: 1; }
.donate-banner h3 { font-family: 'Syne', sans-serif; font-size: 1.3rem; font-weight: 800; color: var(--dark); line-height: 1.2; margin-bottom: 4px; }
.donate-banner p { font-size: 0.85rem; color: rgba(13,9,0,0.65); }

/* ── QUOTE ── */
.quote-block { background: linear-gradient(135deg,#1A1F2E,#2E1F07); border: 1px solid rgba(201,168,76,0.18); padding: 36px 28px; border-radius: 4px; text-align: center; position: relative; overflow: hidden; }
.quote-mark { font-size: 6rem; font-family: Georgia, serif; color: rgba(201,168,76,0.12); line-height: 0.8; display: block; margin-bottom: 12px; }
.quote-text { font-size: clamp(1rem,2.5vw,1.4rem); color: var(--text); line-height: 1.6; font-style: italic; max-width: 700px; margin: 0 auto; }
.quote-author { font-size: 0.65rem; letter-spacing: 0.35em; color: var(--muted); margin-top: 20px; }

/* ── COMPLIANCE ROW ── */
.comp-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid rgba(201,168,76,0.06); font-size: 0.84rem; }
.comp-row:last-child { border-bottom: none; }
.comp-label { color: var(--muted); font-size: 0.78rem; }
.comp-val-ok { color: #86efac; font-size: 0.78rem; font-family: monospace; }
.comp-val-pend { color: #fcd34d; font-size: 0.78rem; }

/* ── QUICK ACTION ── */
.quick-action { display: flex; align-items: center; gap: 10px; padding: 11px 14px; background: none; border: 1px solid rgba(201,168,76,0.12); border-radius: 3px; color: var(--muted); font-size: 0.84rem; cursor: pointer; width: 100%; text-align: left; transition: all 0.2s; text-decoration: none; }
.quick-action:hover { background: rgba(201,168,76,0.06); border-color: rgba(201,168,76,0.25); color: var(--text); }
.quick-action i { color: var(--gold); width: 16px; }
.quick-action .arrow { margin-left: auto; font-size: 0.65rem; color: var(--dim); }

/* ── SITE FOOTER ── */
.site-footer { background: var(--surface); border-top: 1px solid var(--border); padding: 24px 28px; }
.footer-top { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 16px; }
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo img { width: 32px; height: 32px; object-fit: contain; }
.footer-name { font-family: 'Syne', sans-serif; font-size: 0.75rem; font-weight: 700; color: var(--gold); letter-spacing: 0.1em; }
.footer-type { font-size: 0.62rem; color: var(--dim); }
.footer-regs { display: flex; flex-wrap: wrap; gap: 12px; font-size: 0.65rem; color: var(--dim); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding-top: 16px; border-top: 1px solid rgba(201,168,76,0.06); }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-links a { font-family: 'Syne', sans-serif; font-size: 0.68rem; color: var(--dim); letter-spacing: 0.08em; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 0.65rem; color: var(--dim); }

/* ── SIDEBAR OVERLAY (mobile) ── */
#sidebar-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.75); z-index: 90; }
#sidebar-overlay.show { display: block; }

/* ── MOBILE ── */
@media(max-width: 768px) {
  #sidebar { transform: translateX(-100%); }
  #sidebar.open { transform: translateX(0); box-shadow: 8px 0 32px rgba(0,0,0,0.6); }
  #main { margin-left: 0 !important; }
  #mob-toggle { display: flex !important; }
  .search-box { display: none; }
  .grid-2,.grid-3,.grid-4,.grid-2-1,.grid-1-2,.grid-col-2-1 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .donate-banner { flex-direction: column; text-align: center; }
  .footer-top,.footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-logo { display: none; }
  .content { padding: 16px; }
  .hide-mobile { display: none; }
}

/* ── MISC UTILITIES ── */
::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: rgba(201,168,76,0.3); border-radius: 2px; }
.mb-3 { margin-bottom: 12px; } .mb-4 { margin-bottom: 16px; } .mb-5 { margin-bottom: 20px; } .mb-6 { margin-bottom: 24px; } .mb-8 { margin-bottom: 32px; }
.mt-3 { margin-top: 12px; } .mt-4 { margin-top: 16px; } .mt-6 { margin-top: 24px; }
.p-4 { padding: 16px; } .p-5 { padding: 20px; } .p-6 { padding: 24px; }
.flex { display: flex; } .flex-wrap { flex-wrap: wrap; } .items-center { align-items: center; } .items-start { align-items: flex-start; } .justify-between { justify-content: space-between; } .gap-2 { gap: 8px; } .gap-3 { gap: 12px; } .gap-4 { gap: 16px; } .flex-1 { flex: 1; } .flex-shrink-0 { flex-shrink: 0; }
.text-gold { color: var(--gold); } .text-white { color: #fff; } .text-muted { color: var(--muted); } .text-green { color: #86efac; } .text-center { text-align: center; }
.text-xs { font-size: 0.75rem; } .text-sm { font-size: 0.85rem; } .font-bold { font-weight: 700; } .font-syne { font-family: 'Syne', sans-serif; }
.mono { font-family: 'Courier New', monospace; } .w-full { width: 100%; } .rounded { border-radius: 4px; }
.space-y-2 > * + * { margin-top: 8px; } .space-y-3 > * + * { margin-top: 12px; } .space-y-4 > * + * { margin-top: 16px; }
.divider { height: 1px; background: rgba(201,168,76,0.08); margin: 20px 0; }
.overflow-hidden { overflow: hidden; }
.relative { position: relative; }
.sticky-section { position: sticky; top: 53px; }

/* ── DESKTOP OVERRIDES ── */
@media(min-width:769px) {
  /* Restore 2-column layout for desktop on sections that use 1-col for mobile */
  .desk-2col { grid-template-columns: 2fr 1fr !important; }
  .desk-grid-4 { grid-template-columns: repeat(4,1fr) !important; }
}
