/* ═══════════════════════════════════════════════════════════════
   shared.css — emarketingstuff.com
   Font: Cormorant Garant (display) + DM Sans (body)
═══════════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garant:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── RESET ─────────────────────────────────────────────────── */
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:'DM Sans',system-ui,sans-serif;
  font-weight:400;
  font-size:16px;
  line-height:1.6;
  transition:background .25s,color .25s;
}

/* ── DARK (default) ────────────────────────────────────────── */
body{
  --bg:#0b0f19;
  --surface:#101726;
  --surface2:#151d2d;
  --gold:#d4af37;
  --gold2:#f0cc6a;
  --gold-dim:rgba(212,175,55,.15);
  --text:#e8eaf0;
  --text-dim:#b8c3d6;
  --text-faint:#6b7a90;
  --border:rgba(212,175,55,.14);
  --border-soft:rgba(255,255,255,.06);
  --accent:#4d9af8;
  --btn-bg:#d4af37;
  --btn-text:#07090f;
  --card-bg:rgba(16,23,38,.9);
  --line:rgba(212,175,55,.10);
  background:var(--bg);
  color:var(--text);
}

/* ── LIGHT ─────────────────────────────────────────────────── */
body.light{
  --bg:#fafaf8;
  --surface:#fff;
  --surface2:#f4f1ea;
  --gold:#b8932a;
  --gold2:#c8a032;
  --gold-dim:rgba(184,147,42,.12);
  --text:#1a1a18;
  --text-dim:#5a5a50;
  --text-faint:#9a9a88;
  --border:rgba(184,147,42,.18);
  --border-soft:rgba(0,0,0,.06);
  --accent:#2463e8;
  --btn-bg:#b8932a;
  --btn-text:#fff;
  --card-bg:#fff;
  --line:rgba(184,147,42,.10);
  background:var(--bg);
  color:var(--text);
}

/* ── TYPOGRAPHY ────────────────────────────────────────────── */
h1,h2,h3,h4{
  font-family:'Cormorant Garant',Georgia,serif;
  font-weight:500;
  line-height:1.15;
  color:var(--text);
  margin:0;
}
p,li,label,input,textarea,button{
  font-family:'DM Sans',system-ui,sans-serif;
}

/* ── HEADER ────────────────────────────────────────────────── */
.site-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 28px;
  min-height:112px;
  height:112px;
  overflow:visible;
  background:var(--surface);
  border-bottom:1px solid var(--border);
  position:sticky;
  top:0;
  z-index:100;
  transition:background .25s,border .25s;
}
body:not(.light) .site-header{
  background:rgba(11,15,25,.94);
  backdrop-filter:blur(12px);
}
.brand{display:flex;align-items:center;text-decoration:none;line-height:0;flex-shrink:0;overflow:visible}
.brand img{width:465px;max-width:40vw;height:auto;display:block;object-fit:contain;flex-shrink:0;margin:-140px 0}
body:not(.light) .brand img{
  opacity:.9;
  filter:brightness(.82) saturate(.88) drop-shadow(0 6px 14px rgba(212,175,55,.12));
  transition:filter .25s,opacity .25s;
}
body:not(.light) .brand:hover img{opacity:1;filter:brightness(.92) saturate(.96) drop-shadow(0 6px 14px rgba(212,175,55,.18))}

.site-nav{
  display:flex;
  align-items:center;
  gap:24px;
  flex-shrink:0;
}
.site-nav a{
  font-family:'DM Sans',sans-serif;
  font-size:14px;
  font-weight:500;
  letter-spacing:.04em;
  color:var(--text-dim);
  text-decoration:none;
  transition:color .2s;
}
.site-nav a:hover,.site-nav a.active{color:var(--gold2)}
.site-nav a.active{color:var(--gold)}

/* scheme toggle */
.scheme-toggle{
  display:flex;align-items:center;gap:0;
  background:var(--border-soft);
  border-radius:99px;padding:3px;
  border:1px solid var(--border);
  flex-shrink:0;
}
.scheme-toggle button{
  border:none;background:transparent;cursor:pointer;
  width:34px;height:30px;border-radius:99px;
  display:grid;place-items:center;
  font-size:15px;transition:background .2s;padding:0;line-height:1;
}
.scheme-toggle button.active{
  background:var(--surface2);
  box-shadow:0 1px 4px rgba(0,0,0,.2);
}
.nav-right{display:flex;align-items:center;gap:20px;flex-shrink:0}

/* ── FOOTER ────────────────────────────────────────────────── */
.site-footer{
  padding:28px 52px;
  border-top:1px solid var(--border);
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:12px;
}
.site-footer p{
  font-size:13px;
  color:var(--text-faint);
  margin:0;
}
.site-footer a{color:var(--gold);text-decoration:none;font-size:13px}
.site-footer a:hover{color:var(--gold2)}
.footer-links{display:flex;gap:20px;align-items:center}

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:0 28px;height:44px;
  border-radius:4px;
  font-family:'DM Sans',sans-serif;
  font-size:13px;font-weight:600;letter-spacing:.08em;text-transform:uppercase;
  text-decoration:none;cursor:pointer;border:none;
  transition:filter .2s,opacity .2s;
}
.btn-primary{background:var(--btn-bg);color:var(--btn-text);box-shadow:0 8px 24px rgba(212,175,55,.18)}
.btn-primary:hover{filter:brightness(1.08)}
.btn-outline{background:transparent;color:var(--gold);border:1px solid var(--border);box-shadow:none}
.btn-outline:hover{border-color:var(--gold2);color:var(--gold2)}
body.light .btn-outline{color:var(--gold);border-color:var(--border)}

/* ── PAGE SHELL ────────────────────────────────────────────── */
.page-content{max-width:1100px;margin:0 auto;padding:72px 52px}
@media(max-width:900px){.page-content{padding:48px 24px}}
@media(max-width:600px){.page-content{padding:36px 18px}}

/* ── SECTION LABEL ─────────────────────────────────────────── */
.section-label{
  display:inline-block;
  font-family:'DM Sans',sans-serif;
  font-size:11px;font-weight:600;
  letter-spacing:.14em;text-transform:uppercase;
  color:var(--gold);
  margin-bottom:14px;
}

/* ── DIVIDER ───────────────────────────────────────────────── */
.gold-rule{width:40px;height:1px;background:var(--gold);margin:16px 0 28px;opacity:.7}

/* ── CARDS ─────────────────────────────────────────────────── */
.card{
  background:var(--card-bg);
  border:1px solid var(--border);
  border-radius:6px;
  padding:28px 26px;
  transition:border-color .2s;
}
.card:hover{border-color:rgba(212,175,55,.35)}
body.light .card:hover{border-color:rgba(184,147,42,.35)}

/* ── STAT STRIP ────────────────────────────────────────────── */
.stat-strip{display:grid;gap:1px;background:var(--border)}
.stat-strip-inner{display:grid;grid-template-columns:repeat(4,1fr)}
@media(max-width:700px){.stat-strip-inner{grid-template-columns:repeat(2,1fr)}}
.stat-item{padding:28px 24px;background:var(--surface)}
.stat-num{
  font-family:'Cormorant Garant',serif;
  font-size:40px;font-weight:400;
  color:var(--gold);line-height:1;
}
.stat-label{font-size:12px;color:var(--text-faint);font-weight:500;margin-top:6px;letter-spacing:.04em}

/* ── QUOTE ─────────────────────────────────────────────────── */
.pull-quote{
  border-left:2px solid var(--gold);
  padding:4px 0 4px 24px;
  margin:36px 0;
}
.pull-quote p{
  font-family:'Cormorant Garant',serif;
  font-size:22px;font-weight:400;font-style:italic;
  color:var(--text-dim);line-height:1.5;margin:0;
}
.pull-quote cite{display:block;margin-top:10px;font-size:13px;font-weight:500;color:var(--text-faint);font-style:normal}

/* ── RESPONSIVE HEADER ─────────────────────────────────────── */
@media(max-width:900px){
  .site-header{padding:12px 20px;min-height:auto;height:auto;flex-wrap:wrap;gap:12px}
  .brand img{width:260px;max-width:68vw;margin:0}
  .site-nav{gap:18px;flex-wrap:wrap;justify-content:center;width:100%;order:3}
  .site-nav a{font-size:13px}
  .nav-right{order:2}
  .brand{order:1}
}
@media(max-width:600px){
  .brand img{width:230px;max-width:72vw}
  .site-nav{gap:14px}
  .site-nav a{font-size:12px}
}

/* ── MOBILE SCHEME PERSIST ─────────────────────────────────── */
.scheme-toggle button:hover{opacity:.8}
