/*
Theme Name: ccarico
Theme URI: https://ccarico.com
Author: Carl "Wes" Carico
Author URI: https://ccarico.com
Description: Custom theme for ccarico.com — Authoritative Academic / Legal Credentialing Platform. Fonts: Cormorant Garamond (display) + Source Serif 4 (body) + DM Sans (UI).
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 7.4
License: Proprietary
Text Domain: ccarico
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Source+Serif+4:ital,opsz,wght@0,8..60,300;0,8..60,400;0,8..60,600;1,8..60,300;1,8..60,400&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

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

:root {
  --bg: #0B1421;
  --bg-2: #101C2E;
  --bg-card: #131F31;
  --bg-card-2: #182538;
  --navy: #0E1E35;
  --gold: #B8892A;
  --gold-l: #D4A040;
  --gold-dim: rgba(184,137,42,.12);
  --gold-border: rgba(184,137,42,.25);
  --steel: #3A5472;
  --border: #1A2D42;
  --border-l: #213548;
  --text: #E4E9F0;
  --text-muted: #7A8FA3;
  --text-dim: #3D566E;
  --white: #F4F6F9;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Source Serif 4', Georgia, serif;
  --font-ui: 'DM Sans', system-ui, sans-serif;

  --radius: 3px;
  --radius-l: 6px;
  --max-w: 1160px;
  --nav-h: 72px;
  --pad: clamp(60px, 8vw, 96px);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

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

/* ── Container ──────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* ── Typography ─────────────────────────────────────────── */
.name-display {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 110px);
  font-weight: 300;
  line-height: .9;
  letter-spacing: .01em;
  color: var(--white);
}
.name-display em { font-style: italic; color: var(--gold); }
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 400;
  line-height: .95;
  letter-spacing: .01em;
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 48px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: .01em;
}
.display-sm {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 400;
  line-height: 1.2;
}
.label {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}
.lead {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
}
.body-text {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-muted);
}
.body-text p { margin-bottom: 16px; }
.body-text p:last-child { margin-bottom: 0; }
.body-text strong { color: var(--text); font-weight: 600; }
.body-text em { font-style: italic; }

/* ── Rule / divider ─────────────────────────────────────── */
.rule { border: none; border-top: 1px solid var(--border); }
.rule-gold { border: none; border-top: 1px solid var(--gold-border); }
.accent-line {
  display: block;
  width: 32px; height: 2px;
  background: var(--gold);
  margin-bottom: 18px;
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-ui);
  font-size: 13px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 13px 28px;
  border-radius: var(--radius);
  cursor: pointer; border: none;
  transition: all .2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--bg); }
.btn-primary:hover { background: var(--gold-l); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(184,137,42,.25); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border-l); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-1px); }
.btn-text {
  background: transparent; padding: 0; border: none;
  font-family: var(--font-ui); font-size: 13px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold); cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap .2s;
}
.btn-text:hover { gap: 10px; }
.btn-text::after { content: '→'; }

/* ── Navigation ─────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100; height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .3s, box-shadow .3s;
}
.nav.scrolled {
  background: rgba(11,20,33,.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-name {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 400;
  letter-spacing: .04em; color: var(--white);
  line-height: 1.1;
}
.nav-name small {
  display: block; font-size: 10px;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--text-muted); font-family: var(--font-ui);
  font-weight: 400;
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-family: var(--font-ui); font-size: 12px;
  font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: var(--text-muted);
  transition: color .2s; position: relative;
  white-space: nowrap;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -3px; left: 0; right: 0; height: 1px;
  background: var(--gold); transform: scaleX(0);
  transform-origin: left; transition: transform .25s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.nav-ew { color: var(--gold); }
.nav-links a.nav-ew:hover { color: var(--gold-l); }
.nav-cta { margin-left: 16px; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--text); transition: all .3s; }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

.nav-mobile {
  display: none; position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(11,20,33,.98); backdrop-filter: blur(20px);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 20px 24px; z-index: 99;
  flex-direction: column;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-ui); font-size: 14px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-muted); padding: 12px 0;
  border-bottom: 1px solid var(--border); transition: color .2s;
}
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile .btn { margin-top: 16px; justify-content: center; }

/* ── Page hero (inner pages) ────────────────────────────── */
.page-hero {
  padding-top: calc(var(--nav-h) + 56px);
  padding-bottom: 56px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; top: 0; right: 0; width: 40%; height: 100%;
  background: radial-gradient(ellipse 80% 100% at 100% 50%, rgba(184,137,42,.05) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-ui); font-size: 11px;
  font-weight: 500; letter-spacing: .15em;
  text-transform: uppercase; color: var(--text-dim);
  margin-bottom: 24px;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: var(--text-dim); }

/* ── Sections ───────────────────────────────────────────── */
section { position: relative; padding: var(--pad) 0; }
.section-dark { background: var(--bg); }
.section-mid { background: var(--bg-2); }
.section-card { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* ── Cards ──────────────────────────────────────────────── */
.card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-l); padding: clamp(24px,3vw,36px);
  transition: border-color .25s, transform .25s;
}
.card:hover { border-color: var(--border-l); transform: translateY(-2px); }
.card-gold { border-top: 2px solid var(--gold); }
.card-left { border-left: 3px solid var(--gold); }

/* ── Credential badge ───────────────────────────────────── */
.cred-strip { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.cred-pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 14px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 2px;
  font-family: var(--font-ui); font-size: 11px;
  font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: var(--text-muted);
}
.cred-pill-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ── Service cards ──────────────────────────────────────── */
.service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-l); overflow: hidden; }
.service-card {
  background: var(--bg-card); padding: 36px 28px;
  display: flex; flex-direction: column; gap: 16px;
  transition: background .25s;
}
.service-card:hover { background: var(--bg-card-2); }
.service-icon {
  width: 48px; height: 48px;
  background: var(--gold-dim); border: 1px solid var(--gold-border);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.service-title { font-family: var(--font-display); font-size: 22px; font-weight: 500; color: var(--white); letter-spacing: .02em; }
.service-desc { font-family: var(--font-ui); font-size: 14px; color: var(--text-muted); line-height: 1.7; flex: 1; }

/* ── Focus list (expert witness areas) ──────────────────── */
.focus-list { display: flex; flex-direction: column; gap: 0; }
.focus-item {
  padding: 22px 0; border-bottom: 1px solid var(--border);
  display: grid; grid-template-columns: 48px 1fr; gap: 20px; align-items: start;
}
.focus-item:last-child { border-bottom: none; }
.focus-num { font-family: var(--font-display); font-size: 28px; font-weight: 300; color: var(--gold); line-height: 1; padding-top: 2px; }
.focus-title { font-family: var(--font-display); font-size: 19px; font-weight: 500; color: var(--white); margin-bottom: 6px; letter-spacing: .01em; }
.focus-desc { font-family: var(--font-ui); font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ── Bio block ──────────────────────────────────────────── */
.bio-layout { display: grid; grid-template-columns: 280px 1fr; gap: clamp(40px,6vw,80px); align-items: start; }

/* ── Publications ───────────────────────────────────────── */
.book-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 24px; }
.book-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-l); overflow: hidden;
  transition: border-color .25s, transform .25s;
  display: flex; flex-direction: column;
  text-decoration: none;
}
.book-card:hover { border-color: var(--gold-border); transform: translateY(-4px); }
.book-cover-wrap { background: var(--navy); padding: 24px; display: flex; justify-content: center; border-bottom: 1px solid var(--border); }
.book-cover-wrap img { height: 200px; width: auto; object-fit: contain; box-shadow: 0 8px 32px rgba(0,0,0,.5); }
.book-info { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.book-title-text { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--white); line-height: 1.3; }
.book-subtitle-text { font-family: var(--font-ui); font-size: 12px; font-style: italic; color: var(--text-muted); line-height: 1.4; }
.book-meta { font-family: var(--font-ui); font-size: 11px; color: var(--text-dim); margin-top: auto; padding-top: 12px; }
.book-amazon { font-family: var(--font-ui); font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-top: 8px; display: inline-block; }

/* ── Article list ───────────────────────────────────────── */
.article-list { display: flex; flex-direction: column; gap: 0; }
.article-item {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 18px 0; border-bottom: 1px solid var(--border);
  text-decoration: none; transition: padding-left .2s;
}
.article-item:last-child { border-bottom: none; }
.article-item:hover { padding-left: 8px; }
.article-item:hover .article-title { color: var(--gold); }
.article-title { font-family: var(--font-display); font-size: 18px; font-weight: 400; color: var(--white); }
.article-pub { font-family: var(--font-ui); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-dim); flex-shrink: 0; }

/* ── Quote / callout ────────────────────────────────────── */
.quote-block {
  border-left: 3px solid var(--gold);
  padding: 20px 28px;
  background: var(--gold-dim);
  border-radius: 0 var(--radius-l) var(--radius-l) 0;
}
.quote-block p {
  font-family: var(--font-display); font-size: clamp(17px,2.2vw,22px);
  font-style: italic; font-weight: 400;
  line-height: 1.55; color: var(--white);
}
.quote-block cite {
  display: block; margin-top: 10px;
  font-family: var(--font-ui); font-size: 11px;
  font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold); font-style: normal;
}

/* ── Alert / notice box ─────────────────────────────────── */
.notice {
  padding: 18px 22px; border-radius: var(--radius);
  border: 1px solid var(--gold-border);
  background: var(--gold-dim);
  font-family: var(--font-ui); font-size: 13px;
  color: var(--text-muted); line-height: 1.65;
}
.notice strong { color: var(--text); }

/* ── Grid helpers ───────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: clamp(24px,3vw,48px); }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(20px,2.5vw,36px); }

/* ── Utilities ──────────────────────────────────────────── */
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.italic { font-style: italic; }
.mt-8 { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.flex { display: flex; }
  .flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.gap-16 { gap: 16px; }

/* ── Forms ──────────────────────────────────────────────── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-label { font-family: var(--font-ui); font-size: 11px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--text-muted); }
.form-input, .form-select, .form-textarea {
  background: var(--bg); border: 1px solid var(--border-l);
  border-radius: var(--radius); padding: 13px 16px;
  font-family: var(--font-ui); font-size: 15px;
  color: var(--text); outline: none; width: 100%;
  transition: border-color .2s, box-shadow .2s;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-dim); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,137,42,.1);
}
.form-textarea { resize: vertical; min-height: 130px; }
.form-alert { padding: 13px 18px; border-radius: var(--radius); font-family: var(--font-ui); font-size: 14px; display: none; }
.form-alert.success { background: rgba(39,174,96,.1); border: 1px solid rgba(39,174,96,.25); color: #4bc46d; display: block; }
.form-alert.error { background: rgba(184,50,50,.1); border: 1px solid rgba(184,50,50,.25); color: #e05a5a; display: block; }

/* ── Footer ─────────────────────────────────────────────── */
footer {
  background: var(--bg-card); border-top: 1px solid var(--border);
  padding: 56px 0 28px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 48px; }
.footer-name { font-family: var(--font-display); font-size: 22px; font-weight: 400; color: var(--white); margin-bottom: 10px; }
.footer-brand p { font-family:var(--font-ui); font-size: 13px; color: var(--text-muted); line-height: 1.7; max-width: 280px; }
.footer-col-title { font-family: var(--font-ui); font-size: 10px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-family: var(--font-ui); font-size: 13px; color: var(--text-muted); transition: color .2s; }
.footer-links a:hover { color: var(--text); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-family: var(--font-ui); font-size: 12px; color: var(--text-dim); }
.footer-bottom a { font-family: var(--font-ui); font-size: 12px; color: var(--text-dim); transition: color .2s; }
.footer-bottom a:hover { color: var(--gold); }
.footer-trademark { font-family: var(--font-ui); font-size: 11px; color: var(--text-dim); }

/* ── Scroll reveal ──────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ── Hero (home page) ───────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: var(--nav-h);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 85% 40%, rgba(184,137,42,.06) 0%, transparent 60%),
              linear-gradient(160deg, var(--bg-2) 0%, var(--bg) 55%);
}
.hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(184,137,42,.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(184,137,42,.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 100% at 100% 50%, black 0%, transparent 70%);
}
.hero .container { position: relative; z-index: 1; padding-top: 80px; padding-bottom: 80px; }
.hero-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 32px; }
.hero-eyebrow-line { width: 28px; height: 1px; background: var(--gold); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow  { animation: fadeUp .7s ease both .1s; }
.hero-name     { animation: fadeUp .8s ease both .2s; }
.hero-role     { animation: fadeUp .7s ease both .4s; }
.hero-bio      { animation: fadeUp .7s ease both .55s; }
.hero-creds    { animation: fadeUp .7s ease both .7s; }
.hero-actions  { animation: fadeUp .7s ease both .85s; }

.hero-name { margin-bottom: 16px; }
.hero-role {
  font-family: var(--font-ui); font-size: 13px; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 32px; display: flex; align-items: center; flex-wrap: wrap; gap: 12px;
}
.hero-role-sep { color: var(--border-l); }
.hero-bio {
  max-width: 560px; font-family: var(--font-body);
  font-size: clamp(15px.8vw,18px); font-weight: 300;
  color: var(--text-muted); line-height: 1.8; margin-bottom: 36px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

/* Stats row */
.stats-row {
  display: grid; grid-template-columns: repeat(4,1fr);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--bg-card);
}
.stat-cell { padding: 28px 24px; border-right: 1px solid var(--border); }
.stat-cell:last-child { border-right: none; }
.stat-val {
  font-family: var(--font-display); font-size: clamp(32px,4vw,52px);
  color: var(--gold); line-height: 1; margin-bottom: 6px;
}
.stat-lbl {
  font-family: var(--font-ui); font-size: 11px; font-weight: 500;
  letter-spacing: .15em; text-transform: uppercase; color: var(--text-muted);
}

/* ── Responsive ─────────────────────────────────────────── */
@media(max-width:1000px) {
  .service-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .bio-layout { grid-template-columns: 1fr; }
}
@media(max-width:760px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .book-grid { grid-template-columns: repeat(2,1fr); }
  .focus-item { grid-template-columns: 36px 1fr; }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell:nth-child(3) { border-top: 1px solid var(--border); }
  .hero-role { flex-direction: column; gap: 4px; }
  .hero-role-sep { display: none; }
}
@media(max-width:520px) {
  :root { --pad: 48px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .book-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-row { grid-template-columns: 1fr; }
  .stat-cell { border-right: none; border-bottom: 1px solid var(--border); }
}

@media print {
  .nav, footer .footer-bottom { display: none; }
  body { background: #fff; color: #000; font-family: Georgia, serif; }
  .card, .service-card { border: 1px solid #ccc; }
  a[href]::after { content: " (" attr(href) ")"; font-size: 11px; color: #666; }
}

/* ── WordPress Admin Bar — push fixed nav down ─────────────── */
.admin-bar .nav { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar .nav { top: 46px; } }
