/*
Theme Name: totalvenueproductions
Theme URI: https://totalvenueproduction.com
Author: totalvenueproductions
Author URI: https://totalvenueproduction.com
Description: Custom theme for totalvenueproductions — operations, emergency response, and workforce staffing.
Version: 1.0.0
License: Private
Text Domain: totalvenueproductions
*/

/* ─── CSS VARIABLES ─── */
:root {
  --black: #0a0b0d;
  --charcoal: #12151a;
  --steel: #1e232c;
  --slate: #2c3340;
  --muted: #8a94a6;
  --light: #c8d0dc;
  --white: #eef1f5;
  --amber: #e8a020;
  --tier1: #e8a020;
  --tier2: #c0392b;
  --tier3: #2a6fa8;
  --tier3-dim: rgba(42,111,168,0.1);
  --discord: #5865F2;
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--light);
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  line-height: 1.6;
}
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
}

a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }
p { line-height: 1.7; }

/* ─── UTILITY ─── */
.container { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
.mono { font-family: 'Share Tech Mono', monospace; font-size: 0.75rem; letter-spacing: 0.12em; color: var(--muted); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem;
}
.eyebrow::before { content: ''; display: block; width: 16px; height: 2px; background: currentColor; }
.eyebrow span { font-family: 'Share Tech Mono', monospace; font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; }

.slash-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.slash-list li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.88rem; color: var(--light); line-height: 1.4; }
.slash-list li::before { content: '//'; font-family: 'Share Tech Mono', monospace; font-size: 0.7rem; color: var(--amber); flex-shrink: 0; margin-top: 2px; }

/* ─── BUTTONS ─── */
.btn-amber {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: var(--amber); color: var(--black);
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 0.9rem; letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: background 0.2s, transform 0.2s;
  border: none; cursor: pointer;
}
.btn-amber:hover { background: #ffc040; transform: translateY(-1px); }

.btn-blue {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: var(--tier3); color: var(--white);
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 0.9rem; letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: background 0.2s, transform 0.2s;
  border: none; cursor: pointer;
}
.btn-blue:hover { background: #3d8fd4; transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 2rem;
  border: 1px solid rgba(200,208,220,0.2); color: var(--light);
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600;
  font-size: 0.9rem; letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; background: transparent;
  transition: border-color 0.2s, color 0.2s;
  cursor: pointer;
}
.btn-ghost:hover { border-color: var(--light); color: var(--white); }

.btn-dark {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: var(--black); color: var(--amber);
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 0.9rem; letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: background 0.2s;
}
.btn-dark:hover { background: var(--charcoal); }

/* ─── HEADER / NAV ─── */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,11,13,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232,160,32,0.2);
}
#site-header nav {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 0 2rem; height: 64px;
}
.site-logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.logo-mark {
  width: 36px; height: 36px; background: var(--amber);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 0.55rem;
  color: var(--black); letter-spacing: -0.05em;
}
.logo-text { display: flex; flex-direction: column; gap: 1px; }
.logo-text strong { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.25rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); line-height: 1; }
.logo-text small { font-family: 'Share Tech Mono', monospace; font-size: 0.6rem; letter-spacing: 0.2em; color: var(--amber); text-transform: uppercase; }

/* Primary nav menu */
#primary-menu { display: flex; list-style: none; gap: 0.25rem; align-items: center; }
#primary-menu a {
  display: block; padding: 0.5rem 1rem;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600;
  font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; color: var(--muted);
  transition: color 0.2s;
}
#primary-menu a:hover,
#primary-menu .current-menu-item > a,
#primary-menu .current-page-ancestor > a { color: var(--white); }
#primary-menu .menu-item-cta > a {
  background: var(--amber); color: var(--black) !important;
  padding: 0.5rem 1.25rem !important;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
#primary-menu .menu-item-cta > a:hover { background: #ffc040 !important; }

/* Header Social Media Links */
.header-social {
  display: flex; align-items: center; gap: 1rem;
}
.header-social .social-icon {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  color: var(--muted); text-decoration: none;
  transition: color 0.2s;
}
.header-social .social-icon:hover {
  color: var(--amber);
}
.header-social .social-icon svg {
  width: 100%; height: 100%;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none; background: none; border: none; color: var(--light);
  cursor: pointer; padding: 0.5rem;
}

/* ─── BREADCRUMB ─── */
.breadcrumb {
  position: absolute; top: 80px; left: 2rem;
  display: flex; align-items: center; gap: 0.5rem; z-index: 2;
}
.breadcrumb a, .breadcrumb span {
  font-family: 'Share Tech Mono', monospace; font-size: 0.62rem;
  letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; color: var(--muted);
}
.breadcrumb a:hover { color: var(--amber); }
.breadcrumb .sep { color: rgba(255,255,255,0.2); }
.breadcrumb .current { color: var(--amber); }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  min-height: 60vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 8rem 2rem 5rem;
  position: relative; overflow: hidden;
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(232,160,32,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,160,32,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 30% 60%, black, transparent);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(3rem, 8vw, 7rem); line-height: 0.9; color: var(--white); margin-bottom: 1.25rem; }
.page-hero h1 em { font-style: normal; color: var(--amber); }
.page-hero .hero-sub { font-size: 1.1rem; color: var(--muted); max-width: 560px; line-height: 1.7; margin-bottom: 2.5rem; font-weight: 400; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* Division hero color variants */
.page-hero.tier1 .page-hero-grid { background-image: linear-gradient(rgba(232,160,32,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(232,160,32,0.05) 1px, transparent 1px); }
.page-hero.tier2 .page-hero-grid { background-image: linear-gradient(rgba(192,57,43,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(192,57,43,0.05) 1px, transparent 1px); }
.page-hero.tier3 .page-hero-grid { background-image: linear-gradient(rgba(42,111,168,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(42,111,168,0.05) 1px, transparent 1px); }

/* Division badge */
.division-tag { display: inline-flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.division-num {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 0.75rem; letter-spacing: 0.2em; color: var(--white);
  padding: 0.2rem 0.6rem;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
.division-num.t1 { background: var(--tier1); color: var(--black); }
.division-num.t2 { background: var(--tier2); }
.division-num.t3 { background: var(--tier3); }
.division-label { font-family: 'Share Tech Mono', monospace; font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; }
.division-label.t1 { color: var(--tier1); }
.division-label.t2 { color: var(--tier2); }
.division-label.t3 { color: var(--tier3); }

/* ─── STATS STRIP ─── */
.stats-strip { padding: 1.5rem 2rem; }
.stats-strip.amber { background: var(--tier1); }
.stats-strip.red { background: var(--tier2); }
.stats-strip.blue { background: var(--tier3); }
.stats-strip-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; gap: 3rem; align-items: center; flex-wrap: wrap;
}
.strip-stat { text-align: center; }
.strip-stat-num { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 2rem; color: var(--white); line-height: 1; }
.stats-strip.amber .strip-stat-num { color: var(--black); }
.strip-stat-label { font-family: 'Share Tech Mono', monospace; font-size: 0.6rem; letter-spacing: 0.15em; color: rgba(255,255,255,0.6); text-transform: uppercase; }
.stats-strip.amber .strip-stat-label { color: rgba(10,11,13,0.55); }
.strip-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); flex-shrink: 0; }
.strip-tagline { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.1rem; color: var(--white); letter-spacing: 0.05em; text-transform: uppercase; flex: 1; text-align: right; }
.stats-strip.amber .strip-tagline { color: var(--black); }

/* ─── CONTENT SECTIONS ─── */
.section-black { background: var(--black); padding: 6rem 2rem; }
.section-charcoal { background: var(--charcoal); padding: 6rem 2rem; }
.section-steel { background: var(--steel); padding: 6rem 2rem; }

.section-title { font-size: clamp(2rem, 4vw, 3.5rem); color: var(--white); margin-top: 0.5rem; margin-bottom: 1.25rem; }
.section-lead { color: var(--muted); max-width: 580px; line-height: 1.7; margin-bottom: 3rem; }

/* ─── GRID LAYOUTS ─── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.two-col.start { align-items: start; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.four-col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.05); }

/* ─── CARDS ─── */
.card { background: var(--charcoal); border: 1px solid rgba(255,255,255,0.06); padding: 2rem; transition: background 0.2s; }
.card:hover { background: var(--steel); }
.card.border-amber { border-top: 3px solid var(--amber); }
.card.border-red { border-top: 3px solid var(--tier2); }
.card.border-blue { border-top: 3px solid var(--tier3); }
.card h3, .card h4 { color: var(--white); margin-bottom: 0.5rem; }
.card p { color: var(--muted); font-size: 0.88rem; line-height: 1.6; }

/* Gap grid (1px gap between cells) */
.gap-grid { display: grid; gap: 1px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.05); }
.gap-grid .cell { background: var(--charcoal); padding: 2rem; transition: background 0.2s; }
.gap-grid .cell:hover { background: var(--steel); }

/* ─── HIGHLIGHT BOXES ─── */
.highlight-amber {
  background: rgba(232,160,32,0.06);
  border: 1px solid rgba(232,160,32,0.2);
  border-left: 3px solid var(--amber);
  padding: 1.25rem 1.5rem;
}
.highlight-blue {
  background: rgba(42,111,168,0.08);
  border: 1px solid rgba(42,111,168,0.2);
  border-left: 3px solid var(--tier3);
  padding: 1.25rem 1.5rem;
}
.highlight-red {
  background: rgba(192,57,43,0.06);
  border: 1px solid rgba(192,57,43,0.2);
  border-left: 3px solid var(--tier2);
  padding: 1.25rem 1.5rem;
}
.highlight-label {
  font-family: 'Share Tech Mono', monospace; font-size: 0.62rem;
  letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 0.6rem;
  display: flex; align-items: center; gap: 0.4rem;
}

/* ─── FORMS ─── */
.tv-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-family: 'Share Tech Mono', monospace; font-size: 0.62rem;
  letter-spacing: 0.15em; color: var(--muted); text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--steel);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
  padding: 0.875rem 1rem;
  font-family: 'Barlow', sans-serif; font-size: 0.95rem; font-weight: 300;
  width: 100%; outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: rgba(232,160,32,0.5); }
.form-group select option { background: var(--steel); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-note {
  font-family: 'Share Tech Mono', monospace; font-size: 0.6rem;
  letter-spacing: 0.1em; color: var(--muted); margin-top: 0.75rem; line-height: 1.6;
}

/* ─── CTA BANDS ─── */
.cta-band { padding: 5rem 2rem; position: relative; overflow: hidden; }
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}
.cta-band.amber { background: var(--amber); }
.cta-band.blue { background: var(--tier3); }
.cta-band.red { background: var(--tier2); }
.cta-band-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 3rem; flex-wrap: wrap; position: relative; z-index: 1;
}
.cta-band.amber .cta-band-inner h2 { color: var(--black); }
.cta-band.amber .cta-band-inner p { color: rgba(10,11,13,0.65); }
.cta-band.blue .cta-band-inner h2,
.cta-band.red .cta-band-inner h2 { color: var(--white); }
.cta-band.blue .cta-band-inner p,
.cta-band.red .cta-band-inner p { color: rgba(255,255,255,0.75); }
.cta-band h2 { font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 0.75rem; }
.cta-band p { font-size: 1rem; line-height: 1.6; max-width: 500px; }
.cta-band-actions { display: flex; gap: 1rem; flex-shrink: 0; flex-wrap: wrap; }

/* ─── RELATED DIVISIONS ─── */
.related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.related-card {
  background: var(--steel); border: 1px solid rgba(255,255,255,0.06);
  padding: 1.75rem; text-decoration: none;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.2s;
}
.related-card:hover { background: var(--slate); }
.related-div-tag { font-family: 'Share Tech Mono', monospace; font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; display: block; margin-bottom: 0.4rem; }
.related-card h4 { font-size: 1.3rem; color: var(--white); margin-bottom: 0.25rem; }
.related-card p { font-size: 0.82rem; color: var(--muted); line-height: 1.5; font-family: 'Barlow', sans-serif; font-weight: 300; text-transform: none; letter-spacing: 0; }
.related-arrow { color: var(--muted); flex-shrink: 0; margin-left: 1rem; transition: transform 0.2s, color 0.2s; }
.related-card:hover .related-arrow { transform: translateX(4px); color: var(--white); }

/* ─── FOOTER ─── */
#site-footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 3rem 2rem;
}
.footer-inner {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand .logo-text strong { font-size: 1.5rem; }
.footer-brand p { color: var(--muted); font-size: 0.88rem; line-height: 1.7; margin-top: 1rem; max-width: 280px; }

/* Footer Social Media Links */
.footer-social {
  display: flex; align-items: center; gap: 1rem; margin-top: 1.5rem;
}
.footer-social .social-icon {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  color: var(--muted); text-decoration: none;
  transition: color 0.2s;
}
.footer-social .social-icon:hover {
  color: var(--amber);
}
.footer-social .social-icon svg {
  width: 100%; height: 100%;
}

.footer-col h4 { font-family: 'Share Tech Mono', monospace; font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--amber); margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul a { font-size: 0.88rem; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1400px; margin: 2rem auto 0;
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-family: 'Share Tech Mono', monospace; font-size: 0.62rem; letter-spacing: 0.1em; color: var(--muted); text-transform: uppercase; }

/* ─── BLOG / ARCHIVE ─── */
.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.post-card { background: var(--charcoal); border: 1px solid rgba(255,255,255,0.06); overflow: hidden; text-decoration: none; display: block; transition: background 0.2s; }
.post-card:hover { background: var(--steel); }
.post-card-thumb { aspect-ratio: 16/9; overflow: hidden; }
.post-card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-card-body { padding: 1.5rem; }
.post-card-meta { font-family: 'Share Tech Mono', monospace; font-size: 0.6rem; letter-spacing: 0.12em; color: var(--amber); text-transform: uppercase; margin-bottom: 0.5rem; }
.post-card h3 { font-size: 1.2rem; color: var(--white); margin-bottom: 0.5rem; }
.post-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }
.single-post { max-width: 800px; margin: 0 auto; padding: 8rem 2rem 6rem; }
.single-post h1 { font-size: clamp(2rem, 5vw, 4rem); color: var(--white); margin-bottom: 1.5rem; }
.post-meta { font-family: 'Share Tech Mono', monospace; font-size: 0.65rem; letter-spacing: 0.12em; color: var(--amber); text-transform: uppercase; margin-bottom: 2rem; }
.post-content { color: var(--muted); line-height: 1.9; font-size: 1rem; }
.post-content h2, .post-content h3 { color: var(--white); margin: 2rem 0 1rem; }
.post-content p { margin-bottom: 1.25rem; }
.post-content a { color: var(--amber); }

/* ─── WORDPRESS ALIGNMENT CLASSES ─── */
.alignleft { float: left; margin-right: 1.5rem; margin-bottom: 1rem; }
.alignright { float: right; margin-left: 1.5rem; margin-bottom: 1rem; }
.aligncenter { display: block; margin: 0 auto 1rem; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.8rem; color: var(--muted); margin-top: 0.4rem; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1200px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1024px) {
  .two-col { grid-template-columns: 1fr; gap: 3rem; }
  .three-col { grid-template-columns: 1fr 1fr; }
  .four-col { grid-template-columns: 1fr 1fr; }
  .posts-grid { grid-template-columns: 1fr 1fr; }
  .related-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  #primary-menu { display: none; }
  #primary-menu.open { display: flex; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--charcoal); padding: 1rem 2rem 2rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .menu-toggle { display: block; }
  .three-col { grid-template-columns: 1fr; }
  .posts-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .cta-band-inner { flex-direction: column; }
  .stats-strip-inner { justify-content: center; }
}
@media (max-width: 480px) {
  .four-col { grid-template-columns: 1fr; }
  .tv-form { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
}
