/* =========================================================
   Park Electric LLC — stylesheet
   Palette pulled from brand logo (bolt gold #F4D000 on black).
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Barlow:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&family=Yellowtail&display=swap');

:root{
  --black:        #0a0a0a;
  --near-black:   #161616;
  --charcoal:     #2b2b2b;
  --gold:         #f4d000;
  --gold-bright:  #fff2b0;
  --gold-deep:    #b89400;
  --white:        #ffffff;
  --paper:        #f7f7f7;
  --line:         #2b2b2b;
  --line-soft:    #e7e7e7;
  --ink:          #14140f;
  --ink-soft:     #4a4a4a;

  --font-display: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body:    'Barlow', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-script:  'Yellowtail', cursive;

  --container: 1180px;
  --radius: 14px;
  --radius-badge: 999px;
  --shadow-hard: 6px 6px 0 var(--black);
  --shadow-stamp: 5px 5px 0 var(--black);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}
img{ max-width: 100%; height: auto; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4{ margin: 0; font-family: var(--font-display); font-weight: 600; letter-spacing: .005em; line-height: 1.08; }
p{ margin: 0; }

:focus-visible{
  outline: 3px solid var(--gold-deep);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

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

.eyebrow-hidden{ /* screen-reader only labels, not visual eyebrow chrome */
  position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}

/* ---------- buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  padding: 15px 28px;
  border: 3px solid var(--black);
  border-radius: var(--radius-badge);
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}
.btn-gold{
  background: var(--gold);
  color: var(--black);
  box-shadow: var(--shadow-hard);
}
.btn-gold:hover{ transform: translate(-2px,-2px); box-shadow: 8px 8px 0 var(--black); }
.btn-line{
  background: transparent;
  color: var(--white);
  border-color: var(--gold);
}
.btn-line:hover{ background: var(--gold); color: var(--black); }
.btn-dark{
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-dark:hover{ background: var(--near-black); }

/* ---------- header ---------- */
.site-header{
  position: sticky; top: 0; z-index: 50;
  background: var(--white);
  border-bottom: 3px solid var(--black);
}
.site-header .wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  padding-bottom: 8px;
  gap: 24px;
}
.brand{ display: flex; align-items: center; }
.brand img{ height: 78px; width: auto; }
@media (max-width: 900px){
  .brand img{ height: 60px; }
}
.main-nav{ display: flex; align-items: center; gap: 34px; }
.main-nav a{
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color .15s ease, color .15s ease;
}
.main-nav a:hover, .main-nav a[aria-current="page"]{
  border-color: var(--gold);
}
.header-cta{ display: flex; align-items: center; gap: 18px; }
.header-phone{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: .02em;
  white-space: nowrap;
}
.header-phone span{ display:block; font-family: var(--font-body); font-weight:600; font-size: 11px; letter-spacing:.08em; color: var(--ink-soft); text-transform: uppercase; }

.nav-check{ display:none; }
.nav-toggle-btn{
  display:none;
  align-items:center; justify-content:center;
  width:46px; height:46px;
  border:2px solid var(--black); border-radius:8px;
  cursor:pointer; background:var(--white); flex-shrink:0;
}
.nav-toggle-btn svg{ width:22px; height:22px; }
.nav-toggle-btn .icon-close{ display:none; }
.nav-mobile-cta{ display:none; }

@media (max-width: 900px){
  .header-phone{ display:none; }
  .header-cta .btn-gold{ display:none; }
  .nav-toggle-btn{ display:flex; }

  .main-nav{
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-bottom: 3px solid var(--black);
    max-height: 0;
    overflow: hidden;
    transition: max-height .28s ease;
  }
  .main-nav a{
    padding: 16px 28px;
    border-bottom: 1px solid var(--line-soft);
    border-radius: 0;
  }
  .main-nav a:hover, .main-nav a[aria-current="page"]{
    border-bottom-color: var(--gold);
    background: var(--paper);
  }
  .nav-mobile-cta{ display:block; }
  .nav-mobile-call{ font-weight: 800; color: var(--gold-deep); }
  .nav-mobile-quote{
    text-align:center; font-weight:800;
    background: var(--gold); border: 3px solid var(--black); border-radius: var(--radius-badge);
    margin: 16px 28px 20px;
    padding: 13px;
  }
  .nav-check:checked ~ .main-nav{ max-height: 480px; }
  .nav-check:checked ~ .header-cta .nav-toggle-btn .icon-open{ display:none; }
  .nav-check:checked ~ .header-cta .nav-toggle-btn .icon-close{ display:block; }
}

/* ---------- hero ---------- */
.hero{
  position: relative;
  background-color: var(--black);
  background-image: url('../images/bg-circuit.svg');
  background-repeat: repeat;
  background-size: 260px 260px;
  color: var(--white);
  overflow: hidden;
}
.hero .wrap{
  padding-top: 76px;
  padding-bottom: 110px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 40px;
  align-items: center;
}
.hero-eyebrow{
  color: var(--gold);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .02em;
  margin-bottom: 18px;
}
.hero h1{
  font-size: clamp(40px, 5.6vw, 68px);
  color: var(--white);
}
.hero h1 em{
  font-style: normal;
  color: var(--gold);
}
.hero .script-accent{ margin-top: 14px; }
.hero p.lede{
  font-family: var(--font-body);
  font-size: 19px;
  color: #d9d6c7;
  max-width: 46ch;
  margin-top: 20px;
  font-weight: 400;
}
.hero-actions{ display:flex; gap: 16px; margin-top: 36px; flex-wrap: wrap; }
.hero-art{ position: relative; display:flex; justify-content:center; align-items:flex-end; height: 100%; }
.hero-art .sunburst-frame{ width: 100%; max-width: 380px; }
.hero-art img{ width: min(300px, 78%); height: auto; filter: drop-shadow(0 30px 40px rgba(0,0,0,.5)); }

@media (max-width: 860px){
  .hero .wrap{
    grid-template-columns: 1fr;
    padding-top: 44px;
    padding-bottom: 48px;
    gap: 12px;
    text-align: left;
  }
  .hero h1{ font-size: clamp(32px, 9vw, 46px); }
  .hero p.lede{ max-width: 100%; font-size: 17px; }
  .hero-actions{ margin-top: 28px; }
  .hero-art{ order: -1; align-items: center; margin-bottom: 8px; }
  .hero-art .sunburst-frame{ max-width: 220px; }
  .hero-art img{ width: min(180px, 60%); height: auto; }
}
@media (max-width: 420px){
  .hero-actions{ flex-direction: column; align-items: stretch; }
  .hero-actions .btn{ justify-content: center; }
}
.hero-bolt-bg{
  position:absolute; inset:0; opacity:.08; pointer-events:none;
}

.zig{
  height: 34px;
  width: 100%;
  display: block;
  background: var(--white);
  clip-path: polygon(0% 100%, 0% 40%, 4% 100%, 8% 40%, 12% 100%, 16% 40%, 20% 100%, 24% 40%, 28% 100%, 32% 40%, 36% 100%, 40% 40%, 44% 100%, 48% 40%, 52% 100%, 56% 40%, 60% 100%, 64% 40%, 68% 100%, 72% 40%, 76% 100%, 80% 40%, 84% 100%, 88% 40%, 92% 100%, 96% 40%, 100% 100%, 100% 100%);
}
.zig-flip{ transform: scaleY(-1); }

/* ---------- trust bar ---------- */
.trust-bar{
  background: var(--gold);
  border-bottom: 3px solid var(--black);
}
.trust-bar ul{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-bar li{
  padding: 20px 18px;
  text-align: center;
  font-weight: 700;
  font-size: 14.5px;
  border-left: 2px solid rgba(10,10,10,.18);
}
.trust-bar li:first-child{ border-left: none; }
@media (max-width: 800px){
  .trust-bar ul{ grid-template-columns: repeat(2,1fr); }
  .trust-bar li:nth-child(3){ border-left:none; }
}

/* ---------- section scaffolding ---------- */
.section{ padding: 92px 0; }
.section-tight{ padding: 60px 0; }
.section-black{
  background-color: var(--black);
  background-image: url('../images/bg-circuit.svg');
  background-repeat: repeat;
  background-size: 260px 260px;
  color: var(--white);
}
.section-paper{
  background-color: var(--paper);
  background-image: url('../images/bg-bolts.svg');
  background-repeat: repeat;
  background-size: 420px 420px;
}
.section-head{ max-width: 640px; margin-bottom: 52px; }
.section-head h2{ font-size: clamp(30px, 3.6vw, 44px); }
.section-head p{ margin-top: 16px; font-size: 17px; color: var(--ink-soft); }
.section-black .section-head p{ color: #c9c6b7; }

/* ---------- service cards ---------- */
.service-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.service-card{
  background: var(--white);
  border: 3px solid var(--black);
  border-radius: var(--radius);
  box-shadow: var(--shadow-stamp);
  padding: 32px 28px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.service-card:hover{ background: var(--paper); transform: translate(-2px,-2px); box-shadow: 7px 7px 0 var(--black); }
.service-card .icon{ width: 46px; height: 46px; margin-bottom: 22px; }
.service-card h3{ font-family: var(--font-body); font-weight: 800; font-size: 18px; margin-bottom: 10px; }
.service-card p{ font-size: 15px; color: var(--ink-soft); }
@media (max-width: 860px){ .service-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .service-grid{ grid-template-columns: 1fr; } }

/* ---------- category blocks (residential/commercial/home service) ---------- */
.cat-list{ display:flex; flex-direction:column; gap: 20px; }
.cat-row{
  display:grid; grid-template-columns: 220px 1fr; gap: 30px;
  background: var(--white); border: 3px solid var(--black); border-radius: var(--radius); box-shadow: var(--shadow-stamp);
  padding: 34px 34px;
}
.cat-row h3{ font-size: 24px; font-family: var(--font-display); align-self:start; }
.cat-row p{ color: var(--ink-soft); font-size: 16px; max-width: 62ch; }
@media (max-width: 700px){ .cat-row{ grid-template-columns: 1fr; gap: 10px; } }

/* ---------- generac / spotlight banner ---------- */
.spotlight{
  background-color: var(--near-black);
  background-image: url('../images/bg-circuit.svg');
  background-repeat: repeat;
  background-size: 200px 200px;
  color: var(--white);
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}
.spotlight .wrap{
  display:grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items:center;
  padding: 78px 28px;
}
.spotlight-badge{
  display:inline-flex; align-items:center; gap:10px;
  background: var(--gold); color: var(--black); font-weight: 800; font-size: 13px;
  padding: 8px 14px; border-radius: 999px; margin-bottom: 20px; letter-spacing:.02em;
}
.spotlight h2{ font-size: clamp(28px,3.4vw,40px); }
.spotlight p{ color:#cfccbd; margin-top:16px; font-size:16.5px; max-width: 52ch; }
.spotlight-art{ display:flex; justify-content:center; }
.spotlight-art .sunburst-frame{ width: 100%; max-width: 320px; }
.spotlight-art img{ width: min(220px,74%); height: auto; }
@media (max-width: 820px){ .spotlight .wrap{ grid-template-columns: 1fr; } .spotlight-art{ order:-1; } }

/* ---------- process steps ---------- */
.process{ display:grid; grid-template-columns: repeat(4,1fr); gap: 30px; }
.process-step{ position:relative; padding-top: 6px; }
.process-num{ font-family: var(--font-display); font-weight: 700; font-size: 46px; color: var(--gold); -webkit-text-stroke: 1.5px var(--black); }
.process-step h3{ font-family: var(--font-body); font-weight:800; font-size:17px; margin: 10px 0 8px; }
.process-step p{ font-size: 14.5px; color: var(--ink-soft); }
@media (max-width: 900px){ .process{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px){ .process{ grid-template-columns: 1fr; } }

/* ---------- reviews ---------- */
.review-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.review-card{ background: var(--paper); border: 3px solid var(--black); border-radius: var(--radius); box-shadow: var(--shadow-stamp); padding: 28px; }
.review-stars{ color: var(--gold-deep); letter-spacing: 2px; margin-bottom: 14px; font-size: 15px; }
.review-card p.quote{ font-size: 15.5px; color: var(--ink); }
.review-card .who{ margin-top: 16px; font-weight: 700; font-size: 14px; }
@media (max-width: 860px){ .review-grid{ grid-template-columns: 1fr; } }

/* ---------- area list ---------- */
.area-list{ display:flex; flex-wrap:wrap; gap: 12px; }
.area-list li{
  border: 2px solid var(--black); padding: 10px 18px; font-weight: 700; font-size: 14.5px; border-radius: 999px;
  background: var(--white);
}

/* ---------- CTA banner ---------- */
.cta-banner{
  background-color: var(--gold);
  background-image: url('../images/bg-bolts.svg');
  background-repeat: repeat;
  background-size: 320px 320px;
  border-top: 3px solid var(--black);
  border-bottom: 3px solid var(--black);
}
.cta-banner .wrap{
  display:flex; align-items:center; justify-content:space-between; gap: 30px; padding: 54px 28px; flex-wrap: wrap;
}
.cta-banner h2{ font-size: clamp(26px,3vw,36px); max-width: 18ch; }
.cta-banner .btn-dark{ flex-shrink:0; }

/* ---------- footer ---------- */
.site-footer{ background: var(--black); color: #cfccbd; }
.footer-top{
  display:grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 40px; padding: 66px 0 46px;
  border-bottom: 1px solid var(--line);
}
.footer-brand img{ height: 46px; margin-bottom: 18px; }
.footer-brand p{ font-size: 14.5px; max-width: 32ch; }
.footer-col h4{ font-family: var(--font-body); font-weight: 800; font-size: 13px; letter-spacing:.06em; color: var(--white); margin-bottom: 16px; }
.footer-col ul{ display:flex; flex-direction:column; gap: 11px; }
.footer-col a{ font-size: 14.5px; }
.footer-col a:hover{ color: var(--gold); }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding: 26px 0; font-size: 13px; flex-wrap:wrap; gap: 12px; }
.footer-social{ display:flex; gap:16px; }
@media (max-width: 820px){ .footer-top{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .footer-top{ grid-template-columns: 1fr; } }

/* ---------- generic page hero (interior pages) ---------- */
.page-hero{
  background-color: var(--black);
  background-image: url('../images/bg-circuit.svg');
  background-repeat: repeat;
  background-size: 260px 260px;
  color: var(--white);
  padding: 62px 0 70px;
}
.page-hero .kicker{ color: var(--gold); font-weight:700; font-size:14px; margin-bottom:14px; }
.page-hero h1{ font-size: clamp(34px,4.6vw,54px); }
.page-hero p{ margin-top:16px; color:#d9d6c7; font-size:17px; max-width: 60ch; }

/* ---------- about page ---------- */
.about-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items:center; }
.about-img{ display:flex; justify-content:center; }
.about-img .sunburst-frame{ width: 100%; max-width: 380px; }
.about-img img{ width: min(300px, 76%); height: auto; }
.values-grid{ display:grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.value-card{ background: var(--white); border: 3px solid var(--black); border-radius: var(--radius); box-shadow: var(--shadow-stamp); padding: 30px; }
.value-card h3{ font-family: var(--font-body); font-weight:800; font-size:17px; margin-bottom:8px; }
.value-card p{ font-size:14.5px; color: var(--ink-soft); }
@media (max-width: 860px){ .about-grid{ grid-template-columns:1fr; } .about-grid .about-img{ order:-1; } }
@media (max-width: 560px){ .values-grid{ grid-template-columns:1fr; } }

.mascot-banner{
  display:flex; align-items:center; gap: 44px; background: var(--paper); border: 2px solid var(--black); padding: 40px;
}
.mascot-banner img{ width: 150px; flex-shrink:0; }
.mascot-banner h3{ font-family: var(--font-body); font-weight:800; font-size:19px; margin-bottom:10px; }
.mascot-banner p{ font-size:15px; color:var(--ink-soft); }
@media (max-width: 620px){ .mascot-banner{ flex-direction:column; text-align:center; } }

/* ---------- contact page ---------- */
.contact-grid{ display:grid; grid-template-columns: .85fr 1.15fr; gap: 54px; align-items:start; }
.contact-cards{ display:flex; flex-direction:column; gap: 18px; }
.contact-card{ background: var(--white); border: 3px solid var(--black); border-radius: var(--radius); box-shadow: var(--shadow-stamp); padding: 26px 28px; display:flex; gap: 16px; align-items:flex-start; }
.contact-card .ico{ width: 26px; height:26px; flex-shrink:0; margin-top:2px; }
.contact-card h4{ font-family: var(--font-body); font-weight:800; font-size:15px; margin-bottom:4px; }
.contact-card p, .contact-card a{ font-size:15px; color: var(--ink-soft); }
.contact-card a:hover{ color: var(--gold-deep); }
@media (max-width: 900px){ .contact-grid{ grid-template-columns:1fr; } }

.form-card{ background: var(--paper); border: 3px solid var(--black); border-radius: var(--radius); box-shadow: var(--shadow-stamp); padding: 40px; }
.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field{ margin-bottom: 20px; }
.field label{ display:block; font-weight:700; font-size:13.5px; margin-bottom:8px; }
.field input, .field select, .field textarea{
  width:100%; border: 2px solid var(--black); border-radius: 8px; padding: 13px 14px;
  font-family: var(--font-body); font-size: 15px; background: var(--white); color: var(--ink);
}
.field textarea{ resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus{ outline: 3px solid var(--gold-deep); outline-offset: 1px; }
.hp-field{ position:absolute; left:-9999px; }
@media (max-width: 620px){ .form-row{ grid-template-columns:1fr; } }

/* ---------- FAQ ---------- */
.faq-list{ border-top: 2px solid var(--black); }
.faq-item{ border-bottom: 2px solid var(--black); }
.faq-item summary{
  cursor: pointer; list-style:none; padding: 22px 4px; font-weight:700; font-size:16.5px;
  display:flex; justify-content:space-between; align-items:center; gap: 20px;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{ content:"+"; font-family: var(--font-display); font-size: 26px; color: var(--gold-deep); flex-shrink:0; }
.faq-item[open] summary::after{ content:"–"; }
.faq-item p{ padding: 0 4px 24px; color: var(--ink-soft); font-size: 15.5px; max-width: 68ch; }

/* ---------- 404 / thanks ---------- */
.center-page{ min-height: 56vh; display:flex; align-items:center; justify-content:center; text-align:center; padding: 90px 28px; }
.center-page h1{ font-size: clamp(40px,6vw,80px); }
.center-page p{ margin: 18px auto 30px; color: var(--ink-soft); font-size: 17px; max-width: 46ch; }

/* ---------- misc ---------- */
.visually-hidden{ position:absolute; width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0); white-space:nowrap; }
.license-note{ font-size: 13px; color: #9a9788; }

/* ---------- retro sunburst badge frame ---------- */
.sunburst-frame{ position: relative; display:flex; justify-content:center; align-items:center; }
.sunburst-frame::before{
  content:"";
  position: absolute;
  inset: 0;
  background-image: url('../images/sunburst.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 96% auto;
  z-index: 0;
  animation: sunburst-spin 50s linear infinite;
}
.sunburst-frame img{ position: relative; z-index: 1; }
@keyframes sunburst-spin{ to{ transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce){
  .sunburst-frame::before{ animation: none; }
}

/* ---------- retro script accent ---------- */
.script-accent{
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--gold);
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1;
  display: block;
}
.script-accent-dark{ color: var(--gold-deep); }

/* ---------- retro divider row ---------- */
.divider-row{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  margin: 0 0 22px;
  color: var(--gold-deep);
}
.divider-row .bolt{ width: 16px; height: 16px; }
.divider-row .bolt path{ fill: currentColor; }
.section-black .divider-row, .article-hero .divider-row{ color: var(--gold); }

/* ---------- insights / articles ---------- */
.insight-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.insight-card{
  background: var(--white);
  border: 3px solid var(--black);
  border-radius: var(--radius);
  box-shadow: var(--shadow-stamp);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: background .15s ease, transform .15s ease, box-shadow .15s ease;
}
.insight-card:hover{ background: var(--paper); transform: translate(-2px,-2px); box-shadow: 7px 7px 0 var(--black); }
.insight-card .insight-thumb{
  aspect-ratio: 16 / 9;
  background: var(--near-black);
  overflow: hidden;
  border-bottom: 3px solid var(--black);
}
.insight-card .insight-thumb img{ width:100%; height:100%; object-fit: cover; }
.insight-card .insight-body{ padding: 30px 32px 34px; }
.insight-tag{
  display:inline-block; font-weight: 800; font-size: 12px; letter-spacing: .05em;
  color: var(--gold-deep); margin-bottom: 12px;
}
.insight-card h3{ font-family: var(--font-body); font-weight: 800; font-size: 21px; margin-bottom: 12px; }
.insight-card p{ font-size: 15px; color: var(--ink-soft); margin-bottom: 18px; }
.insight-read{ font-weight: 700; font-size: 14.5px; display:inline-flex; align-items:center; gap:8px; }
.insight-meta{ font-size: 13px; color: var(--ink-soft); margin-top: 14px; }
@media (max-width: 760px){ .insight-grid{ grid-template-columns: 1fr; } }

.article-hero{
  background-color: var(--black);
  background-image: url('../images/bg-circuit.svg');
  background-repeat: repeat;
  background-size: 260px 260px;
  color: var(--white);
  padding: 46px 0 0;
}
.article-hero .wrap{ padding-bottom: 46px; }
.back-link{ display:inline-flex; align-items:center; gap:8px; font-weight:700; font-size:14px; color: var(--gold); margin-bottom: 26px; }
.article-hero .insight-tag{ color: var(--gold); }
.article-hero h1{ font-size: clamp(32px,4.2vw,48px); margin: 14px 0 18px; max-width: 22ch; }
.article-byline{ display:flex; gap:18px; flex-wrap:wrap; font-size: 14px; color:#c9c6b7; }
.article-banner{ border-top: 3px solid var(--gold); }
.article-banner img{ width:100%; display:block; }

.article-body{ max-width: 720px; margin: 0 auto; padding: 66px 0; }
.article-body p{ font-size: 17px; color: var(--ink); margin-bottom: 22px; }
.article-body h2{ font-family: var(--font-body); font-weight: 800; font-size: 25px; margin: 44px 0 16px; }
.article-body h3{ font-family: var(--font-body); font-weight: 800; font-size: 19px; margin: 32px 0 12px; }
.article-body ul{ margin: 0 0 22px; padding-left: 22px; list-style: disc; }
.article-body ul li{ font-size: 16.5px; color: var(--ink); margin-bottom: 10px; padding-left: 4px; }
.article-body strong{ font-weight: 700; }
.article-pull{
  border-left: 4px solid var(--gold);
  padding: 4px 0 4px 24px;
  margin: 34px 0;
  font-family: var(--font-script);
  font-weight: 400;
  font-size: 30px;
  line-height: 1.3;
  color: var(--black);
}
.article-cta{
  background: var(--paper);
  border: 3px solid var(--black);
  border-radius: var(--radius);
  box-shadow: var(--shadow-stamp);
  padding: 34px 36px;
  margin-top: 20px;
  display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap;
}
.article-cta h3{ font-family: var(--font-body); font-weight:800; font-size:19px; margin-bottom:6px; }
.article-cta p{ font-size:14.5px; color: var(--ink-soft); margin:0; }

