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

:root {
  --primary:   #1a3a8f;   /* bleu royal */
  --primary-dark: #0f2561;
  --accent:    #cc2936;   /* rouge */
  --accent-light: #e04555;
  --bg:        #faf8f4;   /* warm off-white, like beach sand in shade */
  --bg-white:  #ffffff;
  --bg-sand:   #f5ede0;   /* light sand */
  --text:      #1e1e1e;
  --text-muted:#7a6f65;   /* warm grey */
  --border:    #e8e0d6;   /* sandy border */
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --container: 1160px;
  --radius:    6px;
}

html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--bg); color: var(--text); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

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

/* ── Top Bar ───────────────────────────────────────────────────────────────── */
.top-bar { background: var(--primary-dark); color: rgba(255,255,255,0.75); font-size: .75rem; padding: 6px 0; }
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; }
.top-bar-tagline { font-style: italic; }

/* ── Header ────────────────────────────────────────────────────────────────── */
.site-header { background: var(--bg-sand); border-bottom: 3px solid var(--accent); padding: 18px 0; text-align: center; }
.site-logo { display: inline-block; }
.site-logo img { display: block; max-width: 100%; height: auto; }

/* ── Main Nav ──────────────────────────────────────────────────────────────── */
.main-nav { background: var(--primary); }
.nav-inner { display: flex; align-items: center; gap: 0; overflow-x: auto; }
.main-nav a { display: inline-block; padding: 12px 18px; font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.85); letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; transition: color .2s, background .2s; }
.main-nav a:hover, .main-nav a.active { color: #fff; background: rgba(255,255,255,.12); }
.nav-home { border-right: 1px solid rgba(255,255,255,.15); }

/* ── Post Cards ────────────────────────────────────────────────────────────── */
.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.post-card { background: var(--bg-white); border-radius: var(--radius); overflow: hidden; box-shadow: 0 1px 4px rgba(0,0,0,.07); transition: box-shadow .2s; }
.post-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.13); }
.card-img-link { display: block; overflow: hidden; background: var(--border); height: 210px; }
.card-img-link img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; display: block; }
.post-card:hover .card-img-link img { transform: scale(1.04); }
.card-img-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #1a3a8f 0%, #2a5abf 100%); }
.card-body { padding: 18px 20px 22px; }
.card-cat { display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.card-cat:hover { text-decoration: underline; }
.card-title { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; line-height: 1.3; margin-bottom: 10px; }
.card-title a:hover { color: var(--accent); }
.card-excerpt { font-size: .88rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 12px; }
.card-meta { display: flex; gap: 12px; font-size: .75rem; color: var(--text-muted); }

/* ── Featured Post ─────────────────────────────────────────────────────────── */
.home-featured { background: var(--bg-white); padding: 32px 0; border-bottom: 1px solid var(--border); }
.featured-post { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.featured-img-link { display: block; aspect-ratio: 16/9; overflow: hidden; border-radius: var(--radius); background: linear-gradient(135deg, var(--primary) 0%, #2a5abf 100%); }
.featured-img-link img { width: 100%; height: 100%; object-fit: cover; }
.featured-body { padding: 8px 0; }
.featured-title { font-family: var(--font-head); font-size: 2rem; font-weight: 700; line-height: 1.2; margin: 12px 0 16px; }
.featured-title a:hover { color: var(--accent); }
.featured-excerpt { font-size: 1rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.btn-read-more { display: inline-block; font-size: .85rem; font-weight: 600; color: var(--accent); border-bottom: 2px solid var(--accent); padding-bottom: 2px; transition: opacity .2s; }
.btn-read-more:hover { opacity: .75; }

/* ── Section Header ────────────────────────────────────────────────────────── */
.home-grid { padding: 48px 0; }
.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; flex-wrap: wrap; gap: 12px; }
.section-title { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; position: relative; padding-bottom: 10px; }
.section-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 3px; background: var(--accent); }

/* ── Category Tabs ─────────────────────────────────────────────────────────── */
.cat-tabs, .feed-tabs-wrap { display: flex; gap: 6px; flex-wrap: wrap; }
.feed-tab { border: 1px solid var(--border); background: var(--bg-white); padding: 6px 14px; border-radius: 20px; font-size: .78rem; font-weight: 600; cursor: pointer; transition: all .2s; color: var(--text-muted); }
.feed-tab:hover, .feed-tab.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.feed-tabs-wrap { margin-bottom: 28px; }

/* ── View All ──────────────────────────────────────────────────────────────── */
.view-all-wrap { text-align: center; margin-top: 40px; }
.btn-view-all { display: inline-block; padding: 12px 32px; border: 2px solid var(--primary); color: var(--primary); font-weight: 600; font-size: .9rem; border-radius: var(--radius); transition: all .2s; }
.btn-view-all:hover { background: var(--primary); color: #fff; }

/* ── Blog Header ───────────────────────────────────────────────────────────── */
.blog-header { background: var(--primary); color: #fff; padding: 48px 0 40px; }
.blog-header-title { font-family: var(--font-head); font-size: 2.2rem; font-weight: 700; margin-bottom: 10px; }
.blog-header-sub { font-size: 1rem; opacity: .8; }
.blog-section { padding: 48px 0; }

/* ── Lead Magnet Band ──────────────────────────────────────────────────────── */
.lead-magnet { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%); color: #fff; padding: 64px 0; }
.lead-magnet-inner { display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; }
.lead-eyebrow { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.lead-magnet h2 { font-family: var(--font-head); font-size: 1.9rem; font-weight: 700; margin-bottom: 16px; line-height: 1.25; }
.lead-magnet p { font-size: .95rem; opacity: .85; margin-bottom: 20px; }
.lead-checklist { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.lead-checklist li { font-size: .9rem; opacity: .9; }
.btn-primary { display: inline-block; background: var(--accent); color: #fff; padding: 14px 28px; border-radius: var(--radius); font-weight: 700; font-size: .95rem; white-space: nowrap; transition: opacity .2s; }
.btn-primary:hover { opacity: .88; }
.form-note { font-size: .75rem; opacity: .65; margin-top: 10px; }

/* ── Newsletter Band ───────────────────────────────────────────────────────── */
.newsletter-band { background: var(--bg-sand); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 40px 0; }
.newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.newsletter-text h3 { font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; margin-bottom: 6px; }
.newsletter-text p { font-size: .9rem; color: var(--text-muted); }
.btn-newsletter { display: inline-block; background: var(--primary); color: #fff; padding: 12px 26px; border-radius: var(--radius); font-weight: 600; font-size: .9rem; white-space: nowrap; transition: opacity .2s; }
.btn-newsletter:hover { opacity: .85; }

/* ── Post Layout ───────────────────────────────────────────────────────────── */
.post-layout { display: grid; grid-template-columns: 1fr 300px; gap: 48px; padding-top: 32px; padding-bottom: 64px; align-items: start; }
.post-main { min-width: 0; }

/* breadcrumb */
.breadcrumb { background: var(--bg-white); border-bottom: 1px solid var(--border); padding: 12px 0; font-size: .82rem; color: var(--text-muted); }
.breadcrumb .container { display: flex; gap: 6px; align-items: center; }
.breadcrumb a:hover { color: var(--accent); }

/* post header */
.post-header { margin-bottom: 32px; }
.post-cat-badge { display: inline-block; background: var(--accent); color: #fff; font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 4px 12px; border-radius: 20px; margin-bottom: 16px; }
.post-title { font-family: var(--font-head); font-size: 2.2rem; font-weight: 700; line-height: 1.2; margin-bottom: 16px; }
.post-meta { display: flex; gap: 16px; font-size: .8rem; color: var(--text-muted); flex-wrap: wrap; }

/* post body */
.post-body { font-size: 1rem; line-height: 1.85; color: #2c2c2c; }
.post-body h2 { font-family: var(--font-head); font-size: 1.55rem; font-weight: 700; margin: 2.2rem 0 1rem; color: var(--primary); }
.post-body h3 { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; margin: 1.8rem 0 .8rem; }
.post-body p { margin-bottom: 1.4rem; }
.post-body strong { font-weight: 600; color: var(--text); }
.post-body ul, .post-body ol { margin: 0 0 1.4rem 1.4rem; }
.post-body li { margin-bottom: .5rem; }
.post-body a { color: var(--accent); text-decoration: underline; }
.post-body a:hover { opacity: .8; }

/* video embed — 16:9 responsive wrapper */
.video-embed { position: relative; margin: 2.5rem 0; border-radius: var(--radius); overflow: hidden; background: #000; }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; display: block; }
.video-embed::before { content: ''; display: block; padding-top: 56.25%; /* 16:9 */ }
/* Shorts / vertical format */
.video-embed--shorts::before { padding-top: 177.78%; /* 9:16 */ max-width: 360px; margin: auto; }
/* Placeholder shown when no iframe is present */
.video-embed-placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%); color: #fff; }
.video-embed-placeholder-inner { display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; padding: 20px; }
.video-embed-placeholder svg { opacity: .7; }
.video-embed-placeholder p { font-size: .95rem; opacity: .85; }
.video-embed-placeholder a { color: rgba(255,255,255,.9); text-decoration: underline; }
/* form placeholder block */
.form-placeholder-block { border: 2px dashed rgba(255,255,255,.4); border-radius: var(--radius); padding: 32px 20px; text-align: center; }
.form-placeholder-inner { display: flex; flex-direction: column; gap: 8px; }
.form-placeholder-label { font-size: .95rem; font-weight: 600; color: rgba(255,255,255,.9); }
.form-placeholder-note { font-size: .78rem; color: rgba(255,255,255,.65); }

/* post cta box */
.post-cta-box { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%); color: #fff; border-radius: var(--radius); padding: 36px; margin-top: 48px; }
.post-cta-box h3 { font-family: var(--font-head); font-size: 1.35rem; margin-bottom: 10px; }
.post-cta-box p { font-size: .9rem; opacity: .85; margin-bottom: 20px; }

/* ── Sidebar ───────────────────────────────────────────────────────────────── */
.post-sidebar { position: sticky; top: 24px; display: flex; flex-direction: column; gap: 24px; }
.sidebar-widget { background: var(--bg-white); border-radius: var(--radius); padding: 22px; border: 1px solid var(--border); }
.sidebar-widget--cta { background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary) 100%); color: #fff; border-color: transparent; }
.widget-title { font-family: var(--font-head); font-size: 1rem; font-weight: 700; margin-bottom: 16px; }
.sidebar-widget--cta .widget-title { color: #fff; }
.widget-eyebrow { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 6px; }
.related-posts { display: flex; flex-direction: column; gap: 14px; }
.related-item { border-bottom: 1px solid var(--border); padding-bottom: 14px; }
.related-item:last-child { border-bottom: none; padding-bottom: 0; }
.related-item a { font-size: .88rem; font-weight: 600; line-height: 1.4; display: block; margin-bottom: 4px; }
.related-item a:hover { color: var(--accent); }
.related-date { font-size: .75rem; color: var(--text-muted); }
.sidebar-cats { display: flex; flex-direction: column; gap: 10px; }
.sidebar-cats a { font-size: .88rem; padding: 8px 0; border-bottom: 1px solid var(--border); font-weight: 500; transition: color .2s; }
.sidebar-cats a:last-child { border-bottom: none; }
.sidebar-cats a:hover { color: var(--accent); }
.sidebar-widget--cta p { font-size: .85rem; opacity: .8; margin-bottom: 16px; }
.btn-sidebar-cta { display: inline-block; background: var(--accent); color: #fff; padding: 10px 20px; border-radius: var(--radius); font-weight: 700; font-size: .85rem; transition: opacity .2s; }
.btn-sidebar-cta:hover { opacity: .85; }

/* ── Footer ────────────────────────────────────────────────────────────────── */
.site-footer { background: var(--primary); color: rgba(255,255,255,.8); padding: 48px 0 28px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 2fr; gap: 40px; margin-bottom: 32px; }
.footer-logo { font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; color: #fff; display: block; margin-bottom: 12px; }
.footer-desc { font-size: .85rem; line-height: 1.6; opacity: .75; }
.footer-nav h4 { font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 14px; }
.footer-nav a { display: block; font-size: .85rem; padding: 5px 0; opacity: .75; transition: opacity .2s; }
.footer-nav a:hover { opacity: 1; }
.footer-legal { font-size: .78rem; opacity: .55; line-height: 1.6; }
.footer-legal p { margin-bottom: 6px; }

/* ── EEAT Author Box ───────────────────────────────────────────────────────── */
.author-box { display: flex; gap: 24px; background: var(--bg-sand); border: 1px solid var(--border); border-left: 4px solid var(--accent); border-radius: var(--radius); padding: 28px; margin: 48px 0 32px; }
.author-avatar { flex-shrink: 0; }
.author-avatar-img { width: 72px; height: 72px; border-radius: 50%; overflow: hidden; }
.author-avatar-img svg { width: 100%; height: 100%; }
.author-info { flex: 1; min-width: 0; }
.author-label { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin-bottom: 4px; }
.author-name { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--primary); }
.author-bio { font-size: .9rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 12px; }
.author-credentials { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.credential-badge { display: inline-block; background: rgba(44, 95, 110, 0.1); color: var(--primary); font-size: .75rem; font-weight: 600; padding: 3px 10px; border-radius: 20px; }
.author-trust { font-size: .85rem; color: var(--text-muted); line-height: 1.6; border-top: 1px solid var(--border); padding-top: 12px; }
.author-trust strong { color: var(--text); }

/* ── FIX #1: Post cover image ──────────────────────────────────────────────── */
.post-cover-img { width: 100%; height: 420px; object-fit: cover; border-radius: var(--radius); margin-bottom: 2.5rem; display: block; }

/* ── FIX #2: Table styles ──────────────────────────────────────────────────── */
.post-body table { width: 100%; border-collapse: collapse; margin: 1.8rem 0; font-size: .9rem; }
.post-body th { background: var(--primary); color: #fff; padding: 10px 14px; text-align: left; font-weight: 600; font-size: .82rem; letter-spacing: .04em; }
.post-body td { padding: 10px 14px; border-bottom: 1px solid var(--border); color: #333; }
.post-body tr:last-child td { border-bottom: none; }
.post-body tr:nth-child(even) td { background: var(--bg-sand); }

/* ── FIX #3: sr-only for hidden dateModified ───────────────────────────────── */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ── FIX #9: Mobile menu toggle ────────────────────────────────────────────── */
.mobile-menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 10px 20px; position: absolute; right: 0; top: 50%; transform: translateY(-50%); z-index: 200; }
.mobile-menu-toggle span { display: block; width: 24px; height: 2px; background: rgba(255,255,255,.9); border-radius: 2px; transition: all .25s; }
.mobile-menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Footer update (4-col) ─────────────────────────────────────────────────── */
.footer-inner { grid-template-columns: 2fr 1fr 1fr 1fr; }
.footer-disclaimer { font-size: .78rem; opacity: .6; margin-top: 10px; line-height: 1.5; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 16px 0; margin-top: 32px; font-size: .78rem; opacity: .5; }
.footer-bottom a { opacity: .8; }
.footer-bottom a:hover { opacity: 1; }
.nav-sep { flex: 1; }

/* ── Static Pages (About / Contact / Legal / Team / Method) ─────────────────── */
.static-page { padding: 48px 0 80px; max-width: 860px; }
.static-header { margin-bottom: 48px; padding-bottom: 32px; border-bottom: 2px solid var(--border); }
.static-eyebrow { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.static-title { font-family: var(--font-head); font-size: 2.4rem; font-weight: 700; line-height: 1.2; margin-bottom: 18px; color: var(--primary); }
.static-lead { font-size: 1.1rem; color: var(--text-muted); line-height: 1.75; }
.static-meta { font-size: .85rem; color: var(--text-muted); margin-top: 12px; }
.static-body { font-size: 1rem; line-height: 1.8; }
.static-body p { margin-bottom: 1.2rem; color: #333; }
.static-body ul { margin: 0 0 1.2rem 1.4rem; }
.static-body li { margin-bottom: .6rem; color: #333; }
.static-body strong { color: var(--text); }
.inline-link { color: var(--accent); font-weight: 600; text-decoration: underline; }
.inline-link:hover { opacity: .8; }
.about-section { margin-bottom: 48px; padding-bottom: 40px; border-bottom: 1px solid var(--border); }
.about-section:last-child { border-bottom: none; }
.about-section h2 { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--primary); margin-bottom: 16px; }
.about-section h3 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }

/* About pillars */
.about-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 24px; }
.pillar-card { background: var(--bg-sand); border-radius: var(--radius); padding: 22px; border-top: 3px solid var(--accent); }
.pillar-card h3 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.pillar-card p { font-size: .88rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* Team */
.team-grid { display: flex; flex-direction: column; gap: 40px; margin-bottom: 48px; }
.team-member { display: flex; gap: 28px; align-items: flex-start; padding: 32px; background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius); }
.team-avatar { flex-shrink: 0; }
.team-avatar--placeholder { width: 80px; height: 80px; border-radius: 50%; overflow: hidden; }
.team-avatar--placeholder svg { width: 100%; height: 100%; }
.team-info { flex: 1; }
.team-name { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.team-role { font-size: .82rem; font-weight: 600; color: var(--accent); letter-spacing: .05em; text-transform: uppercase; margin-bottom: 6px; }
.team-location { display: flex; align-items: center; gap: 5px; font-size: .82rem; color: var(--text-muted); margin-bottom: 14px; }
.team-bio { font-size: .92rem; color: #444; line-height: 1.7; margin-bottom: 14px; }
.team-expertise { display: flex; flex-wrap: wrap; gap: 8px; }
.team-expertise span { background: rgba(44,95,110,.08); color: var(--primary); font-size: .75rem; font-weight: 600; padding: 4px 12px; border-radius: 20px; }
.standards-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 24px; }
.standard-item { padding: 20px; background: var(--bg-sand); border-radius: var(--radius); }
.standard-item h3 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.standard-item p { font-size: .88rem; color: var(--text-muted); line-height: 1.6; margin: 0; }
.team-standards { margin-top: 48px; }

/* Contact */
.contact-layout { display: grid; grid-template-columns: 1fr 340px; gap: 56px; align-items: start; }
.contact-layout h2 { font-family: var(--font-head); font-size: 1.4rem; margin-bottom: 24px; color: var(--primary); }
.typeform-embed-placeholder { background: var(--bg-sand); border: 2px dashed var(--border); border-radius: var(--radius); padding: 56px 32px; text-align: center; }
.typeform-embed-inner { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.typeform-icon { font-size: 2.5rem; }
.typeform-label { font-size: 1rem; font-weight: 600; color: var(--text-muted); }
.typeform-note { font-size: .78rem; color: var(--text-muted); }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-block { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.contact-block h3 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 14px; }
.contact-block p { font-size: .88rem; color: var(--text-muted); line-height: 1.6; margin: 0; }
.contact-block--note { border-left: 3px solid var(--accent); }
.contact-reasons { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.contact-reasons li { border-bottom: 1px solid var(--border); padding-bottom: 12px; }
.contact-reasons li:last-child { border-bottom: none; padding-bottom: 0; }
.contact-reasons strong { display: block; font-size: .88rem; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.contact-reasons p { font-size: .82rem; margin: 0; }

/* Legal pages */
.static-page--legal { max-width: 760px; }
.legal-section { margin-bottom: 36px; padding-bottom: 32px; border-bottom: 1px solid var(--border); }
.legal-section:last-child { border-bottom: none; }
.legal-section h2 { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; color: var(--primary); margin-bottom: 14px; }

/* ── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 1060px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 960px) {
  /* FIX #9: mobile menu */
  .mobile-menu-toggle { display: flex; }
  .main-nav { position: relative; }
  .main-nav .nav-inner { display: none; flex-direction: column; padding: 8px 0; }
  .main-nav .nav-inner.open { display: flex; }
  .main-nav .nav-inner a { padding: 10px 20px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav-sep { display: none; }
  .posts-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-post { grid-template-columns: 1fr; gap: 24px; }
  .featured-title { font-size: 1.5rem; }
  .post-layout { grid-template-columns: 1fr; }
  .post-sidebar { position: static; }
  .lead-magnet-inner { grid-template-columns: 1fr; }
  .about-pillars { grid-template-columns: 1fr; }
  .standards-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .team-member { flex-direction: column; }
}

@media (max-width: 600px) {
  .posts-grid { grid-template-columns: 1fr; }
  .logo-main { font-size: 1.8rem; }
  .post-title { font-size: 1.6rem; }
  .static-title { font-size: 1.7rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .newsletter-inner { flex-direction: column; align-items: flex-start; }
  .section-header { flex-direction: column; align-items: flex-start; }
  .author-box { flex-direction: column; }
}
