/*
Theme Name:  DOT Compliance Watch
Theme URI:   https://dotcompliancewatch.com
Author:      DOT Compliance Watch
Author URI:  https://dotcompliancewatch.com
Description: Official theme for DOT Compliance Watch. Matches the DCM plugin suite — dark navy, gold accents, Plus Jakarta Sans typography. Includes full-width page support, custom header/footer, and compliance-focused layouts.
Version:     1.0.0
License:     GPL-2.0+
Text Domain: dot-compliance-watch
Tags:        custom-header, custom-logo, custom-menu, full-width-template, threaded-comments, translation-ready
*/

/* ═══════════════════════════════════════════════════════════════════════════
   DOT COMPLIANCE WATCH — THEME STYLESHEET
   Aesthetic: Industrial Authority · Plus Jakarta Sans + Inter
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Google Fonts loaded via functions.php ─────────────────────────────── */

:root {
  /* Brand palette */
  --ink:         #0A1628;
  --ink-80:      #1E2D40;
  --ink-60:      #4A5568;
  --ink-40:      #718096;
  --ink-20:      #94A3B8;
  --ink-10:      #F1F5F9;
  --gold:        #E8920A;
  --gold-lt:     #FEF3C7;
  --gold-dk:     #92400E;
  --gold-mid:    #F59E0B;
  --blue:        #1E40AF;
  --blue-lt:     #DBEAFE;
  --green:       #15803D;
  --green-lt:    #DCFCE7;
  --red:         #DC2626;
  --red-lt:      #FEE2E2;
  --border:      #E2E8F0;
  --border-md:   #CBD5E1;
  --white:       #FFFFFF;
  --bg:          #F8FAFC;

  /* Typography */
  --ff-display:  'Plus Jakarta Sans', sans-serif;
  --ff-body:     'Inter', sans-serif;

  /* Spacing */
  --max-w:       1100px;
  --max-w-sm:    760px;

  /* Radius */
  --r:           8px;
  --r-lg:        14px;
  --r-xl:        20px;

  /* Shadows */
  --sh-sm:  0 1px 3px rgba(10,22,40,.06), 0 2px 8px rgba(10,22,40,.04);
  --sh-md:  0 4px 16px rgba(10,22,40,.08), 0 8px 24px rgba(10,22,40,.05);
  --sh-lg:  0 12px 40px rgba(10,22,40,.14);
}

/* ── CSS Reset ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Typography ─────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 0.6em;
  letter-spacing: -0.3px;
}
h1 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; letter-spacing: -0.5px; }
h2 { font-size: clamp(22px, 3vw, 32px); }
h3 { font-size: clamp(18px, 2.5vw, 22px); }
h4 { font-size: 18px; }
h5 { font-size: 15px; }
h6 { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; }

p { margin: 0 0 1.25rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--blue); text-decoration: none; transition: color .15s; }
a:hover { color: var(--gold); }

strong, b { font-weight: 600; }
em { font-style: italic; }

ul, ol { margin: 0 0 1.25rem; padding-left: 1.5rem; }
li { margin-bottom: .4rem; }

blockquote {
  border-left: 3px solid var(--gold);
  margin: 1.5rem 0;
  padding: .75rem 1.25rem;
  background: var(--gold-lt);
  border-radius: 0 var(--r) var(--r) 0;
  font-style: italic;
  color: var(--ink-60);
}

code {
  font-family: 'Courier New', monospace;
  font-size: .875rem;
  background: var(--ink-10);
  color: var(--blue);
  padding: 2px 6px;
  border-radius: 4px;
}

pre {
  background: var(--ink);
  color: #e2e8f0;
  padding: 1.25rem;
  border-radius: var(--r);
  overflow-x: auto;
  font-size: .875rem;
}

pre code { background: none; color: inherit; padding: 0; }

hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2rem 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: .875rem;
  margin-bottom: 1.5rem;
}
th {
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  text-align: left;
  font-family: var(--ff-display);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
}
td { padding: 10px 14px; border-bottom: 1px solid var(--border); }
tr:last-child td { border-bottom: none; }
tr:nth-child(even) td { background: var(--ink-10); }

/* ── Layout ─────────────────────────────────────────────────────────────── */
.site {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-content {
  flex: 1;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}
.container-sm { max-width: var(--max-w-sm); margin: 0 auto; padding: 0 32px; }

@media (max-width: 640px) {
  .container, .container-sm { padding: 0 20px; }
}

/* ── Site Header ────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(10, 22, 40, .97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.site-header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
@media (max-width: 640px) { .site-header-inner { padding: 0 20px; } }

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.site-logo-mark svg { width: 20px; height: 20px; }
.site-logo-name {
  font-family: var(--ff-display);
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.2px;
  line-height: 1.2;
}
.site-logo-name span { display: block; font-size: 10px; font-weight: 500; color: rgba(255,255,255,.45); letter-spacing: .5px; text-transform: uppercase; }

/* Primary nav */
.primary-nav { display: flex; align-items: center; gap: 4px; }
.primary-nav a {
  color: rgba(255,255,255,.65);
  font-size: 13px;
  font-weight: 500;
  padding: 7px 13px;
  border-radius: 7px;
  text-decoration: none;
  transition: all .15s;
  white-space: nowrap;
}
.primary-nav a:hover { color: #fff; background: rgba(255,255,255,.08); }
.primary-nav a.current-menu-item { color: var(--gold); }

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.btn-nav-login {
  color: rgba(255,255,255,.65) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  padding: 7px 13px !important;
  border-radius: 7px !important;
  transition: all .15s !important;
}
.btn-nav-login:hover { color: #fff !important; background: rgba(255,255,255,.08) !important; }
.btn-nav-signup {
  background: var(--gold) !important;
  color: var(--ink) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  padding: 8px 18px !important;
  border-radius: 8px !important;
  transition: all .15s !important;
  white-space: nowrap;
}
.btn-nav-signup:hover { background: #d4830a !important; transform: translateY(-1px) !important; }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  width: 38px; height: 38px;
  border-radius: 8px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 18px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .2s;
}
@media (max-width: 860px) {
  .menu-toggle { display: flex; }
  .primary-nav {
    display: none;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: rgba(10,22,40,.98);
    border-bottom: 1px solid rgba(255,255,255,.08);
    flex-direction: column;
    padding: 12px 20px 20px;
    align-items: flex-start;
    gap: 2px;
  }
  .primary-nav.open { display: flex; }
  .primary-nav a { width: 100%; padding: 10px 14px; font-size: 14px; }
  .header-cta { gap: 6px; }
  .btn-nav-login { display: none; }
}

/* Gold accent bar under header */
.header-accent-bar { height: 2px; background: var(--gold); }

/* ── Page Hero (inner pages) ────────────────────────────────────────────── */
.page-hero {
  background: var(--ink);
  padding: 64px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.page-hero-glow {
  position: absolute; top: -80px; left: 50%; transform: translateX(-50%);
  width: 500px; height: 300px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(232,146,10,.15) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(232,146,10,.12);
  border: 1px solid rgba(232,146,10,.3);
  color: var(--gold-mid);
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 30px; margin-bottom: 18px;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.page-hero h1 { color: #fff; margin-bottom: 14px; }
.page-hero p   { color: rgba(255,255,255,.6); font-size: 17px; max-width: 520px; margin: 0 auto; }

/* ── Main Content Area ──────────────────────────────────────────────────── */
.content-area {
  padding: 64px 0;
}
.content-area-tight { padding: 40px 0; }

/* Entry (post/page content) */
.entry {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-sm);
  overflow: hidden;
}
.entry-header { padding: 36px 40px 0; }
.entry-content {
  padding: 28px 40px 40px;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink-60);
}
.entry-content h2, .entry-content h3, .entry-content h4 { color: var(--ink); margin-top: 2rem; }
.entry-content a { color: var(--blue); }
.entry-content a:hover { color: var(--gold); }

@media (max-width: 640px) {
  .entry-header { padding: 24px 22px 0; }
  .entry-content { padding: 20px 22px 32px; }
}

/* ── Sidebar ────────────────────────────────────────────────────────────── */
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px;
  margin-bottom: 20px;
  box-shadow: var(--sh-sm);
}
.widget-title {
  font-family: var(--ff-display);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ink);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
}

/* ── Blog Archive ───────────────────────────────────────────────────────── */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.post-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.post-card-stripe { height: 3px; background: var(--gold); }
.post-card-thumb { aspect-ratio: 16/9; overflow: hidden; }
.post-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.post-card:hover .post-card-thumb img { transform: scale(1.04); }
.post-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.post-card-cat {
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold-dk); background: var(--gold-lt);
  padding: 3px 9px; border-radius: 20px; display: inline-block; margin-bottom: 10px;
}
.post-card-title { font-size: 17px; font-weight: 800; color: var(--ink); margin-bottom: 8px; line-height: 1.3; }
.post-card-title a { color: inherit; text-decoration: none; }
.post-card-title a:hover { color: var(--gold); }
.post-card-excerpt { font-size: 13px; color: var(--ink-60); line-height: 1.6; flex: 1; margin-bottom: 16px; }
.post-card-meta { font-size: 11px; color: var(--ink-20); display: flex; align-items: center; gap: 10px; }
.post-card-meta a { color: var(--ink-40); text-decoration: none; }

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 22px; border-radius: var(--r); border: none;
  font-family: var(--ff-display); font-size: 14px; font-weight: 700;
  cursor: pointer; text-decoration: none; transition: all .18s;
  white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--ink); box-shadow: 0 4px 14px rgba(232,146,10,.3); }
.btn-primary:hover { background: #d4830a; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(232,146,10,.4); color: var(--ink); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--ink-80); transform: translateY(-1px); color: #fff; }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--border-md); }
.btn-outline:hover { background: var(--ink-10); color: var(--ink); }
.btn-outline-white { background: transparent; color: rgba(255,255,255,.8); border: 1.5px solid rgba(255,255,255,.2); }
.btn-outline-white:hover { background: rgba(255,255,255,.08); color: #fff; }
.btn-lg { padding: 14px 32px; font-size: 15px; }
.btn-sm { padding: 7px 14px; font-size: 12px; border-radius: 7px; }

/* ── Cards ──────────────────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-sm);
  overflow: hidden;
}
.card-body { padding: 24px; }
.card-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  font-family: var(--ff-display);
  font-size: 14px; font-weight: 700; color: var(--ink);
}

/* ── Badges ─────────────────────────────────────────────────────────────── */
.badge {
  display: inline-block; padding: 3px 10px;
  border-radius: 20px; font-size: 11px; font-weight: 700;
  letter-spacing: .3px; white-space: nowrap;
}
.badge-gold   { background: var(--gold-lt);  color: var(--gold-dk); }
.badge-blue   { background: var(--blue-lt);  color: var(--blue); }
.badge-green  { background: var(--green-lt); color: var(--green); }
.badge-red    { background: var(--red-lt);   color: var(--red); }
.badge-slate  { background: var(--ink-10);   color: var(--ink-40); }

/* ── Notice / Alert Boxes ───────────────────────────────────────────────── */
.notice {
  padding: 14px 18px;
  border-radius: var(--r);
  font-size: 14px; line-height: 1.55;
  margin-bottom: 1.25rem;
  display: flex; align-items: flex-start; gap: 10px;
}
.notice-info    { background: var(--blue-lt);  border: 1px solid #bfdbfe; color: var(--blue); }
.notice-success { background: var(--green-lt); border: 1px solid #bbf7d0; color: var(--green); }
.notice-warning { background: var(--gold-lt);  border: 1px solid #fde68a; color: var(--gold-dk); }
.notice-danger  { background: var(--red-lt);   border: 1px solid #fca5a5; color: var(--red); }

/* ── Forms (contact, comment, search) ──────────────────────────────────── */
.form-group { margin-bottom: 18px; display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 13px; font-weight: 600; color: var(--ink); }
.form-input {
  width: 100%; padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--r); font-size: 14px;
  color: var(--ink); background: var(--white);
  font-family: var(--ff-body); outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.form-input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,.1); }
.form-input::placeholder { color: #cbd5e1; }
textarea.form-input { resize: vertical; min-height: 110px; }

/* WP comment form */
#respond { margin-top: 2rem; }
#commentform input[type="text"],
#commentform input[type="email"],
#commentform input[type="url"],
#commentform textarea {
  width: 100%; padding: 10px 14px;
  border: 1px solid var(--border); border-radius: var(--r);
  font-family: var(--ff-body); font-size: 14px;
  color: var(--ink); outline: none;
  transition: border-color .15s;
}
#commentform input:focus, #commentform textarea:focus { border-color: var(--blue); }
#commentform .comment-form-comment { margin-bottom: 16px; }
#commentform input[type="submit"] {
  background: var(--gold); color: var(--ink);
  border: none; padding: 11px 24px; border-radius: var(--r);
  font-family: var(--ff-display); font-size: 14px; font-weight: 700;
  cursor: pointer; transition: all .18s;
}
#commentform input[type="submit"]:hover { background: #d4830a; transform: translateY(-1px); }

/* Search form */
.search-form { display: flex; gap: 8px; }
.search-field { flex: 1; padding: 10px 14px; border: 1px solid var(--border); border-radius: var(--r); font-family: var(--ff-body); font-size: 14px; outline: none; }
.search-field:focus { border-color: var(--blue); }
.search-submit { background: var(--gold); color: var(--ink); border: none; padding: 10px 18px; border-radius: var(--r); font-family: var(--ff-display); font-weight: 700; cursor: pointer; }

/* ── Pagination ─────────────────────────────────────────────────────────── */
.pagination {
  display: flex; align-items: center; gap: 4px;
  justify-content: center; margin-top: 40px; flex-wrap: wrap;
}
.pagination .page-numbers {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 8px;
  font-size: 13px; font-weight: 600;
  border: 1px solid var(--border); color: var(--ink);
  text-decoration: none; transition: all .15s;
}
.pagination .page-numbers:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.pagination .page-numbers.current { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.pagination .prev, .pagination .next { width: auto; padding: 0 14px; font-family: var(--ff-display); }

/* ── Site Footer ────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  border-top: 2px solid var(--gold);
}

.footer-main {
  padding: 64px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }

.footer-brand {}
.footer-brand .site-logo { margin-bottom: 14px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.65; max-width: 240px; }

.footer-col-title {
  font-family: var(--ff-display);
  font-size: 12px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--gold); margin-bottom: 14px;
}
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.5); text-decoration: none; transition: color .15s; }
.footer-links a:hover { color: #fff; }

.footer-contact p { font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 8px; }
.footer-contact a { color: rgba(255,255,255,.5); text-decoration: none; transition: color .15s; }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,.25); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,.3); text-decoration: none; transition: color .15s; }
.footer-legal a:hover { color: rgba(255,255,255,.6); }

/* ── Page Templates ─────────────────────────────────────────────────────── */

/* Full-width template */
.template-full-width .site-content { padding: 0; }
.template-full-width .entry { background: none; border: none; border-radius: 0; box-shadow: none; }
.template-full-width .entry-content { padding: 0; }

/* ── Section Components ─────────────────────────────────────────────────── */
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-dark { background: var(--ink); }
.section-light { background: var(--white); }
.section-label {
  font-size: 10px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--ink-20);
  margin-bottom: 10px; display: block; text-align: center;
}
.section-dark .section-label { color: rgba(255,255,255,.25); }
.section-title {
  font-family: var(--ff-display); font-size: clamp(24px,3.5vw,34px);
  font-weight: 800; color: var(--ink); text-align: center;
  margin-bottom: 14px; letter-spacing: -.5px;
}
.section-dark .section-title { color: #fff; }
.section-sub {
  font-size: 16px; color: var(--ink-60); text-align: center;
  max-width: 560px; margin: 0 auto 48px; line-height: 1.65;
}
.section-dark .section-sub { color: rgba(255,255,255,.55); }

/* Feature grid */
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.feature-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 24px;
  box-shadow: var(--sh-sm); transition: transform .2s, box-shadow .2s;
  position: relative; overflow: hidden;
}
.feature-item::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .2s;
}
.feature-item:hover::before { transform: scaleX(1); }
.feature-item:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.feature-icon { font-size: 32px; margin-bottom: 14px; display: block; }
.feature-title { font-family: var(--ff-display); font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.feature-desc  { font-size: 13px; color: var(--ink-60); line-height: 1.6; }

/* Stats row */
.stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 32px; text-align: center; }
.stat-num { font-family: var(--ff-display); font-size: 40px; font-weight: 800; color: var(--gold); line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 13px; color: rgba(255,255,255,.5); font-weight: 500; }

/* ── WP Core Classes ────────────────────────────────────────────────────── */
.screen-reader-text {
  position: absolute !important; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.wp-block-image { margin-bottom: 1.5rem; }
.wp-block-image img { border-radius: var(--r); }
.alignleft  { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.aligncenter { margin-left: auto; margin-right: auto; text-align: center; }
.alignfull  { width: 100vw; margin-left: calc(50% - 50vw); }
.alignwide  { margin-left: -60px; margin-right: -60px; }
.wp-caption { font-size: 13px; color: var(--ink-40); font-style: italic; margin-top: 6px; text-align: center; }

/* Comments */
.comment-list { list-style: none; margin: 0; padding: 0; }
.comment { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.comment-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-size: 13px; color: var(--ink-40); }
.comment-author img { border-radius: 50%; }
.comment-content { font-size: 14px; color: var(--ink-60); line-height: 1.7; }
.reply a { font-size: 12px; color: var(--blue); text-decoration: none; font-weight: 600; }

/* ── Utilities ──────────────────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.text-muted  { color: var(--ink-40); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.gap-sm { gap: 8px; }
.gap-md { gap: 16px; }
.gap-lg { gap: 24px; }
.flex    { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 760px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }

/* ── Scroll animation ───────────────────────────────────────────────────── */
@keyframes dcw-up { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
.dcw-animate { animation: dcw-up .5s ease both; }
.dcw-delay-1 { animation-delay: .1s; }
.dcw-delay-2 { animation-delay: .2s; }
.dcw-delay-3 { animation-delay: .3s; }
