/* ============================================================
   JaysonElliott.com — Main Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

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

:root {
  --navy:   #0f1c2e;
  --navy2:  #162238;
  --slate:  #2a3f58;
  --gold:   #b8945a;
  --gold2:  #d4a96a;
  --gold3:  #f0c882;
  --cream:  #f7f3ee;
  --cream2: #ede8e0;
  --cream3: #e3ddd4;
  --text:   #1a2332;
  --muted:  #6b7a8d;
  --muted2: #8a98a8;
  --white:  #ffffff;
  --success:#2a6642;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 2px 8px rgba(15,28,46,.06);
  --shadow-md: 0 6px 20px rgba(15,28,46,.08);
  --shadow-lg: 0 12px 36px rgba(15,28,46,.12);
  --transition: all .2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--text);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold2); }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(28px, 4vw, 42px); font-weight: 700; }
h2 { font-size: clamp(22px, 3vw, 30px); font-weight: 700; }
h3 { font-size: clamp(16px, 2vw, 20px); font-weight: 600; }
h4 { font-size: 16px; font-weight: 600; }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--gold2);
  display: block;
  margin-bottom: 10px;
}

/* ── LAYOUT ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 32px; }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 32px; }

section { padding: 64px 32px; }
section.alt { background: var(--cream); }
section.dark { background: var(--navy); }
section.dark2 { background: var(--navy2); }

.section-inner { max-width: 1160px; margin: 0 auto; }
.sec-head { margin-bottom: 36px; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

/* ── NAVIGATION ── */
.nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(184,148,90,.1);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
}
.nav-logo {
  font-family: var(--font-serif);
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .3px;
  flex-shrink: 0;
}
.nav-logo span { color: var(--gold2); }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-link {
  color: rgba(255,255,255,.65);
  font-size: 12.5px;
  font-weight: 500;
  padding: 6px 11px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: .2px;
}
.nav-link:hover, .nav-link.active {
  background: rgba(184,148,90,.15);
  color: var(--gold2);
}
.nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-size: 12.5px;
  letter-spacing: .3px;
  margin-left: 8px;
  transition: background .2s;
}
.nav-cta:hover { background: var(--gold2); color: var(--white); }
.nav-hamburger { display: none; cursor: pointer; padding: 8px; }
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); margin: 5px 0; transition: var(--transition);
}

/* ── HERO ── */
.hero {
  background: var(--navy);
  padding: 72px 32px 60px;
}
.hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 56px;
  align-items: center;
}
.hero-eyebrow { margin-bottom: 16px; }
.hero h1 { color: var(--white); margin-bottom: 16px; }
.hero h1 em { font-style: normal; color: var(--gold2); }
.hero-sub {
  font-size: 15.5px;
  color: rgba(255,255,255,.68);
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 24px;
}
.hero-tags { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-tag {
  background: rgba(184,148,90,.13);
  border: 1px solid rgba(184,148,90,.28);
  color: var(--gold2);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: .3px;
}
.hero-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-photo { position: relative; }
.hero-photo-frame {
  width: 220px; height: 270px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(184,148,90,.35);
}
.hero-photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.hero-badge {
  position: absolute;
  bottom: -14px; right: -12px;
  background: var(--gold);
  color: var(--white);
  font-size: 10px; font-weight: 700;
  padding: 8px 13px;
  border-radius: var(--radius-md);
  text-align: center;
  line-height: 1.4;
  letter-spacing: .2px;
  box-shadow: var(--shadow-md);
}

/* ── BUTTONS ── */
.btn { display: inline-block; font-size: 13px; font-weight: 600; padding: 10px 20px; border-radius: var(--radius-sm); cursor: pointer; transition: var(--transition); text-decoration: none; letter-spacing: .2px; }
.btn-primary { background: var(--gold); color: var(--white); }
.btn-primary:hover { background: var(--gold2); color: var(--white); }
.btn-outline { background: transparent; color: rgba(255,255,255,.8); border: 1px solid rgba(255,255,255,.25); }
.btn-outline:hover { border-color: var(--gold2); color: var(--gold2); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--slate); color: var(--white); }

/* ── CREDENTIAL STRIP ── */
.cred-strip {
  background: var(--navy2);
  border-bottom: 1px solid rgba(184,148,90,.1);
}
.cred-strip-inner {
  max-width: 1160px; margin: 0 auto;
  padding: 14px 32px;
  display: flex; gap: 20px; align-items: center; flex-wrap: wrap;
}
.cred-label { font-size: 9.5px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; color: var(--muted); flex-shrink: 0; }
.creds { display: flex; gap: 5px; flex-wrap: wrap; }
.cred-pill { font-size: 11px; font-weight: 500; color: rgba(255,255,255,.5); background: rgba(255,255,255,.055); padding: 3px 9px; border-radius: 3px; }

/* ── CARDS ── */
.card { background: var(--white); border: 1px solid var(--cream2); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card-body { padding: 20px; }

/* Pillar cards */
.pillar { border-top: 3px solid transparent; }
.pillar:hover { border-top-color: var(--gold); }
.pillar-icon { width: 36px; height: 36px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 17px; margin-bottom: 14px; }
.pillar h3 { font-size: 16px; margin-bottom: 8px; }
.pillar p { font-size: 13px; color: var(--muted); line-height: 1.65; }
.pillar-cta { font-size: 11.5px; font-weight: 700; color: var(--gold); margin-top: 12px; display: block; }

/* Post cards */
.post-card { cursor: pointer; }
.post-card.featured { grid-column: span 2; display: grid; grid-template-columns: 1fr 1fr; }
.post-img { height: 160px; background: linear-gradient(135deg, var(--navy2), var(--slate)); display: flex; align-items: center; justify-content: center; font-size: 32px; }
.post-card.featured .post-img { height: auto; min-height: 220px; }
.post-tag { font-size: 9.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 3px 8px; border-radius: 3px; display: inline-block; margin-bottom: 10px; }
.tag-ai { background: rgba(184,148,90,.12); color: var(--gold); }
.tag-biz { background: rgba(42,63,88,.1); color: var(--slate); }
.tag-fut { background: rgba(42,102,66,.1); color: var(--success); }
.post-title { font-family: var(--font-serif); font-size: 15.5px; font-weight: 600; color: var(--navy); line-height: 1.35; margin-bottom: 8px; }
.post-excerpt { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 12px; }
.post-meta { font-size: 11px; color: var(--muted2); display: flex; gap: 10px; align-items: center; }

/* Network cards */
.net-card { border-radius: var(--radius-lg); padding: 20px 22px; border: 1px solid; transition: var(--transition); }
.net-card:hover { transform: translateY(-2px); }
.nc-primary { background: var(--navy); border-color: rgba(184,148,90,.25); }
.nc-spoke { background: var(--white); border-color: var(--cream2); }
.nc-coming { background: var(--cream); border-color: var(--cream3); }
.nc-label { font-size: 9px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; margin-bottom: 7px; }
.nc-primary .nc-label { color: var(--gold2); }
.nc-spoke .nc-label, .nc-coming .nc-label { color: var(--muted); }
.nc-name { font-family: var(--font-serif); font-size: 18px; font-weight: 700; margin-bottom: 8px; line-height: 1.2; }
.nc-primary .nc-name { color: var(--white); }
.nc-spoke .nc-name { color: var(--navy); }
.nc-coming .nc-name { color: var(--slate); }
.nc-desc { font-size: 12.5px; line-height: 1.65; margin-bottom: 12px; }
.nc-primary .nc-desc { color: rgba(255,255,255,.6); }
.nc-spoke .nc-desc, .nc-coming .nc-desc { color: var(--muted); }
.nc-link { font-size: 12px; font-weight: 700; letter-spacing: .2px; }
.nc-primary .nc-link { color: var(--gold2); }
.nc-spoke .nc-link { color: var(--gold); }
.nc-coming .nc-link { color: var(--muted); }

/* Status badges */
.badge { display: inline-block; font-size: 9px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 2px 7px; border-radius: 3px; margin-left: 6px; vertical-align: middle; }
.badge-live { background: rgba(42,102,66,.12); color: var(--success); }
.badge-soon { background: rgba(184,148,90,.12); color: var(--gold); }

/* ── STATS ── */
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--cream2); }
.stat-box { background: var(--white); padding: 28px; text-align: center; }
.stat-num { font-family: var(--font-serif); font-size: 30px; font-weight: 700; color: var(--navy); }
.stat-label { font-size: 11px; color: var(--muted); margin-top: 4px; }

/* ── VIDEO CARDS ── */
.vid-card { border-radius: var(--radius-lg); overflow: hidden; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.07); transition: var(--transition); }
.vid-card:hover { transform: translateY(-2px); border-color: rgba(184,148,90,.3); }
.vid-thumb { height: 120px; background: linear-gradient(135deg, var(--slate), var(--navy)); display: flex; align-items: center; justify-content: center; position: relative; }
.play-btn { width: 44px; height: 44px; background: rgba(184,148,90,.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; color: white; transition: var(--transition); }
.vid-card:hover .play-btn { background: var(--gold); transform: scale(1.08); }
.vid-area { position: absolute; top: 10px; left: 10px; background: rgba(0,0,0,.55); color: var(--gold2); font-size: 9px; font-weight: 700; letter-spacing: 1.3px; text-transform: uppercase; padding: 3px 8px; border-radius: 3px; }
.vid-info { padding: 14px 16px; }
.vid-title { font-size: 13px; font-weight: 500; color: rgba(255,255,255,.84); line-height: 1.45; margin-bottom: 5px; }
.vid-duration { font-size: 10.5px; color: rgba(255,255,255,.38); }

/* ── SPEAKING TOPICS ── */
.topic-card { background: var(--white); border: 1px solid var(--cream2); border-left: 3px solid var(--gold); border-radius: 0 var(--radius-md) var(--radius-md) 0; padding: 18px 20px; }
.topic-card h3 { font-size: 14.5px; margin-bottom: 7px; }
.topic-card p { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ── TIMELINE ── */
.timeline { margin-top: 24px; }
.tl-item { display: flex; gap: 14px; margin-bottom: 14px; }
.tl-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); margin-top: 6px; flex-shrink: 0; }
.tl-text { font-size: 13px; color: var(--muted); line-height: 1.6; }
.tl-text strong { color: var(--navy); font-weight: 600; }

/* ── MEDIA LOGOS ── */
.media-logos { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 20px; }
.media-logo { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-sm); padding: 6px 12px; font-size: 10px; font-weight: 600; color: rgba(255,255,255,.45); letter-spacing: .5px; }

/* ── QUOTE ── */
.quote-block { border-left: 3px solid var(--gold); padding: 16px 22px; margin: 20px 0; background: var(--cream); border-radius: 0 var(--radius-md) var(--radius-md) 0; }
.quote-block p { font-family: var(--font-serif); font-style: italic; font-size: 16px; color: var(--navy); line-height: 1.65; margin: 0; }
.quote-attr { font-size: 12px; color: var(--muted); margin-top: 8px; padding-left: 22px; }

/* ── BLOG POST BODY ── */
.post-body-content { max-width: 760px; }
.post-body-content h2 { font-size: 22px; margin: 36px 0 14px; color: var(--navy); }
.post-body-content h3 { font-size: 18px; margin: 28px 0 10px; }
.post-body-content p { font-size: 15px; color: var(--text); line-height: 1.8; margin-bottom: 18px; }
.post-body-content ul, .post-body-content ol { margin: 16px 0 18px 22px; }
.post-body-content li { font-size: 15px; color: var(--text); line-height: 1.7; margin-bottom: 6px; }
.post-body-content strong { color: var(--navy); font-weight: 600; }
.post-body-content em { font-style: italic; }
.post-body-content hr { border: none; border-top: 1px solid var(--cream2); margin: 32px 0; }
.post-body-content blockquote { border-left: 3px solid var(--gold); padding: 14px 20px; margin: 24px 0; background: var(--cream); }
.post-body-content blockquote p { font-style: italic; color: var(--navy); }
.post-meta-bar { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin: 16px 0 36px; padding-bottom: 16px; border-bottom: 1px solid var(--cream2); }
.post-series-tag { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 10px; border-radius: 3px; }
.post-author { font-size: 12.5px; color: var(--muted); }
.post-date { font-size: 12.5px; color: var(--muted2); }
.post-read-time { font-size: 12.5px; color: var(--muted2); }

/* FAQ section in posts */
.faq-section { background: var(--cream); border-radius: var(--radius-lg); padding: 28px 32px; margin: 36px 0; }
.faq-section h3 { font-size: 18px; margin-bottom: 20px; }
.faq-item { border-bottom: 1px solid var(--cream2); padding: 14px 0; }
.faq-item:last-child { border-bottom: none; padding-bottom: 0; }
.faq-q { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.faq-a { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* Related resources */
.related-box { background: var(--navy); border-radius: var(--radius-lg); padding: 24px 28px; margin: 36px 0; }
.related-box h3 { color: var(--white); font-size: 15px; margin-bottom: 14px; }
.related-link { display: flex; align-items: center; gap: 10px; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.06); text-decoration: none; transition: var(--transition); }
.related-link:last-child { border-bottom: none; padding-bottom: 0; }
.related-link:hover .related-link-text { color: var(--gold2); }
.related-link-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.related-link-text { font-size: 13px; color: rgba(255,255,255,.7); }
.related-link-domain { font-size: 11px; color: var(--gold); margin-left: auto; font-weight: 600; }

/* Post navigation */
.post-nav { display: flex; justify-content: space-between; align-items: center; padding: 24px 0; border-top: 1px solid var(--cream2); margin-top: 40px; gap: 16px; flex-wrap: wrap; }
.post-nav-link { font-size: 13px; font-weight: 600; color: var(--navy); text-decoration: none; display: flex; align-items: center; gap: 8px; transition: color .15s; }
.post-nav-link:hover { color: var(--gold); }

/* ── CONTACT FORM ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 36px; align-items: start; }
.form-card { background: var(--cream); border-radius: var(--radius-lg); padding: 28px 30px; border: 1px solid var(--cream2); }
.form-title { font-family: var(--font-serif); font-size: 18px; font-weight: 600; color: var(--navy); margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-field { margin-bottom: 14px; }
.form-label { font-size: 11px; font-weight: 600; color: var(--navy); margin-bottom: 4px; display: block; letter-spacing: .3px; }
.form-input {
  width: 100%; padding: 9px 12px;
  border: 1px solid var(--cream2); border-radius: var(--radius-sm);
  font-size: 13.5px; font-family: var(--font-sans);
  background: var(--white); color: var(--navy);
  transition: border .18s;
}
.form-input:focus { outline: none; border-color: var(--gold); }
textarea.form-input { resize: vertical; min-height: 100px; }
select.form-input { cursor: pointer; }
.form-submit {
  background: var(--navy); color: var(--white);
  font-size: 13px; font-weight: 700;
  padding: 11px 24px; border-radius: var(--radius-sm);
  cursor: pointer; border: none; font-family: var(--font-sans);
  transition: background .18s; letter-spacing: .2px;
}
.form-submit:hover { background: var(--slate); }
.form-note { font-size: 10.5px; color: var(--muted2); margin-top: 10px; line-height: 1.55; }

/* Contact routing */
.c-route { background: var(--white); border-radius: var(--radius-md); padding: 14px 16px; margin-bottom: 10px; border: 1px solid var(--cream2); transition: border .18s; text-decoration: none; display: block; }
.c-route:hover { border-color: var(--gold); }
.c-route-label { font-size: 9.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 3px; }
.c-route-text { font-size: 12.5px; color: var(--muted); margin-bottom: 3px; }
.c-route-link { font-size: 12px; font-weight: 600; color: var(--navy); }

/* ── NEWSLETTER ── */
.nl-band { background: var(--navy); padding: 52px 32px; text-align: center; border-top: 1px solid rgba(184,148,90,.15); }
.nl-band h2 { color: var(--white); margin-bottom: 10px; font-size: 24px; }
.nl-band p { font-size: 14px; color: rgba(255,255,255,.6); margin-bottom: 24px; line-height: 1.7; max-width: 480px; margin-left: auto; margin-right: auto; }
.nl-form { display: flex; gap: 10px; max-width: 440px; margin: 0 auto; }
.nl-input { flex: 1; padding: 11px 14px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-sm); color: var(--white); font-size: 14px; font-family: var(--font-sans); }
.nl-input:focus { outline: none; border-color: var(--gold); }
.nl-input::placeholder { color: rgba(255,255,255,.35); }
.nl-btn { background: var(--gold); color: var(--white); font-size: 13px; font-weight: 700; padding: 11px 18px; border-radius: var(--radius-sm); cursor: pointer; white-space: nowrap; border: none; font-family: var(--font-sans); transition: background .18s; }
.nl-btn:hover { background: var(--gold2); }

/* ── PAGE HEADER ── */
.page-hdr { background: var(--navy); padding: 52px 32px 44px; border-bottom: 1px solid rgba(184,148,90,.12); }
.page-hdr-inner { max-width: 1160px; margin: 0 auto; }
.page-hdr h1 { color: var(--white); margin-bottom: 10px; }
.page-hdr p { font-size: 15px; color: rgba(255,255,255,.6); max-width: 600px; line-height: 1.7; }

/* ── FOOTER ── */
.footer { background: #0a1422; padding: 52px 32px 24px; }
.footer-inner { max-width: 1160px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 32px; }
.ft-brand { font-family: var(--font-serif); color: var(--white); font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.ft-brand span { color: var(--gold2); }
.ft-tagline { font-size: 12.5px; color: rgba(255,255,255,.38); line-height: 1.65; margin-bottom: 12px; }
.ft-disclaimer { font-size: 10.5px; color: rgba(255,255,255,.26); line-height: 1.6; }
.ft-col-title { font-size: 9.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold2); margin-bottom: 12px; }
.ft-link { font-size: 12.5px; color: rgba(255,255,255,.47); display: block; margin-bottom: 7px; text-decoration: none; transition: color .15s; }
.ft-link:hover { color: var(--gold2); }
.ft-link .soon { font-size: 9px; color: var(--gold); font-weight: 700; margin-left: 4px; letter-spacing: .5px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.05); padding-top: 20px; display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; flex-wrap: wrap; }
.ft-copy { font-size: 11px; color: rgba(255,255,255,.28); }
.ft-legal { font-size: 10px; color: rgba(255,255,255,.22); max-width: 400px; line-height: 1.55; text-align: right; }

/* ── CHECK LIST ── */
.check-list { list-style: none; }
.check-list li { display: flex; gap: 9px; align-items: flex-start; padding: 5px 0; font-size: 13px; color: var(--muted); }
.check-list li::before { content: "✓"; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ── DIVIDERS ── */
.divider { height: 1px; background: var(--cream2); margin: 0 32px; }
.gold-divider { height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin: 0 32px; opacity: .25; }

/* ── SEO BOX ── */
.seo-box { background: var(--cream); border-left: 3px solid var(--gold); border-radius: 0 var(--radius-md) var(--radius-md) 0; padding: 16px 20px; margin-bottom: 16px; }
.seo-box h4 { font-size: 14px; margin-bottom: 6px; color: var(--navy); }
.seo-box p { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-photo { display: none; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .contact-grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  section { padding: 48px 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 62px; left: 0; right: 0; background: var(--navy); padding: 16px; border-bottom: 1px solid rgba(184,148,90,.1); z-index: 99; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .post-card.featured { grid-column: span 1; grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .nl-form { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .ft-legal { text-align: left; }
}
