:root {
  --ink: #0b0b0c;
  --ink-soft: #171719;
  --gold: #f5b800;
  --gold-bright: #ffd02a;
  --cream: #f4f1e8;
  --paper: #fffdf7;
  --muted: #6f6b61;
  --line: rgba(11, 11, 12, 0.15);
  --radius: 22px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 184px;
}
main,
section[id] {
  scroll-margin-top: 184px;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .17;
  background-image: radial-gradient(rgba(0,0,0,.25) .45px, transparent .45px);
  background-size: 5px 5px;
  z-index: 20;
  mix-blend-mode: multiply;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 100;
  background: var(--gold);
  padding: 12px 18px;
  font-weight: 900;
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

.site-header {
  min-height: 184px;
  padding: 12px clamp(20px, 5vw, 76px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: white;
  background: rgba(11, 11, 12, .96);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(16px);
}
.brand, .footer-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; text-transform: uppercase; }
.brand-logo {
  width: clamp(310px, 31vw, 520px);
  height: clamp(96px, 10vw, 160px);
  overflow: hidden;
  flex: 0 1 auto;
}
.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
.brand-mark {
  width: 44px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--gold);
  font-weight: 1000;
  font-style: italic;
  letter-spacing: -3px;
  clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
}
.brand strong, .footer-brand strong { display: block; font-size: 15px; line-height: 1; letter-spacing: .05em; }
.brand small, .footer-brand small { display: block; margin-top: 4px; font-size: 10px; letter-spacing: .17em; color: #bcb9b1; }
.site-header nav { display: flex; align-items: center; gap: clamp(16px, 2.5vw, 34px); }
.site-header nav a { text-decoration: none; font-size: 13px; font-weight: 800; letter-spacing: .05em; }
.site-header nav a:not(.nav-call):hover { color: var(--gold); }
.nav-call { background: var(--gold); color: var(--ink); padding: 12px 17px; transform: skew(-5deg); }
.nav-toggle { display: none; color: white; background: transparent; border: 1px solid rgba(255,255,255,.35); padding: 9px 13px; font-weight: 800; }

.hero {
  min-height: calc(100vh - 78px);
  padding: clamp(50px, 8vw, 110px) clamp(20px, 5vw, 76px);
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: center;
  color: white;
  background:
    radial-gradient(circle at 15% 20%, rgba(245, 184, 0, .18), transparent 30%),
    linear-gradient(120deg, #0a0a0b 0%, #111113 62%, #202023 100%);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "STL";
  position: absolute;
  right: -2vw;
  bottom: -9vw;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.08);
  font-size: clamp(170px, 28vw, 450px);
  font-weight: 1000;
  font-style: italic;
  line-height: 1;
  pointer-events: none;
}
.hero-copy, .hero-visual { position: relative; z-index: 1; }
.eyebrow { margin: 0 0 18px; text-transform: uppercase; letter-spacing: .18em; font-size: 12px; font-weight: 950; color: #a9830e; }
.hero .eyebrow, .storm-section .eyebrow, .contact-section .eyebrow { color: var(--gold); }
h1, h2, h3, p { text-wrap: pretty; }
h1, h2, h3 { font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; text-transform: uppercase; letter-spacing: .015em; margin-top: 0; line-height: .94; }
h1 { margin-bottom: 26px; font-size: clamp(60px, 7vw, 112px); font-weight: 900; }
h1 em { color: var(--gold); font-style: normal; }
.hero-lede { max-width: 610px; margin: 0 0 30px; color: #ccc9c1; font-size: clamp(18px, 1.7vw, 23px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  padding: 0 23px;
  border: 2px solid transparent;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .045em;
  font-weight: 950;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  clip-path: polygon(4% 0, 100% 0, 96% 100%, 0 100%);
}
.button:hover { transform: translateY(-3px); }
.button-primary { color: var(--ink); background: var(--gold); box-shadow: 0 14px 36px rgba(245, 184, 0, .2); }
.button-primary:hover { background: var(--gold-bright); box-shadow: 0 18px 44px rgba(245, 184, 0, .3); }
.button-ghost { color: white; border-color: rgba(255,255,255,.5); }
.button-ghost:hover { background: white; color: var(--ink); }
.button-dark { color: white; background: var(--ink); }
.trust-row { margin-top: 35px; display: flex; flex-wrap: wrap; gap: 10px 20px; color: #a8a69f; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.trust-row span::before { content: "✓"; color: var(--gold); margin-right: 7px; }

.hero-visual { transform: rotate(1deg); }
.hero-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 1748 / 900;
  object-fit: contain;
  border-radius: 18px;
  border: 6px solid white;
  box-shadow: var(--shadow);
}
.hero-badge {
  position: absolute;
  right: -25px;
  top: -44px;
  width: 125px;
  height: 125px;
  display: grid;
  place-items: center;
  text-align: center;
  z-index: 2;
  color: var(--ink);
  background: var(--gold);
  border-radius: 50%;
  font-size: 14px;
  line-height: 1.1;
  font-weight: 1000;
  text-transform: uppercase;
  transform: rotate(11deg);
  box-shadow: 0 0 0 7px var(--ink), 0 0 0 9px var(--gold);
}
.hero-contact { position: absolute; bottom: -28px; left: 35px; background: white; color: var(--ink); padding: 12px 22px; box-shadow: 0 12px 40px rgba(0,0,0,.25); transform: rotate(-2deg); }
.hero-contact span { display: block; text-transform: uppercase; letter-spacing: .15em; font-size: 9px; font-weight: 900; color: var(--muted); }
.hero-contact a { display: block; font-size: 21px; font-weight: 1000; text-decoration: none; }

.marquee { overflow: hidden; white-space: nowrap; background: var(--gold); border-top: 4px solid var(--ink); border-bottom: 4px solid var(--ink); transform: rotate(-1deg) scale(1.02); position: relative; z-index: 3; }
.marquee div { width: max-content; padding: 17px 0; font: 900 20px/1 Impact, sans-serif; letter-spacing: .08em; animation: marquee 24s linear infinite; }
.marquee span { margin: 0 18px; }
@keyframes marquee { to { transform: translateX(-50%); } }

.section { padding: clamp(80px, 10vw, 150px) clamp(20px, 7vw, 110px); }
.section-heading { max-width: 780px; margin-bottom: 50px; }
h2 { margin-bottom: 22px; font-size: clamp(46px, 6vw, 84px); }
h3 { margin-bottom: 14px; font-size: 29px; }
.section-heading > p:last-child { max-width: 680px; color: var(--muted); font-size: 18px; }

.services { background: var(--cream); }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.service-card {
  min-height: 340px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 7px solid var(--ink);
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.service-card:hover { transform: translateY(-9px); background: var(--ink); color: white; border-top-color: var(--gold); }
.service-number { display: block; margin-bottom: auto; color: var(--gold); font-weight: 1000; font-style: italic; font-size: 22px; }
.service-card p { margin: 0 0 24px; color: var(--muted); }
.service-card:hover p { color: #c7c5bf; }
.service-card a { font-size: 12px; font-weight: 950; text-transform: uppercase; letter-spacing: .06em; text-decoration-color: var(--gold); text-underline-offset: 4px; }

.storm-section { display: grid; grid-template-columns: minmax(360px, .85fr) minmax(0, 1.15fr); min-height: 760px; color: white; background: var(--ink); }
.storm-image { position: relative; overflow: hidden; }
.storm-image::after { content: ""; position: absolute; inset: 0; box-shadow: inset -70px 0 90px rgba(11,11,12,.72); }
.storm-image img { width: 100%; height: 100%; object-fit: cover; }
.storm-tag { position: absolute; bottom: 30px; left: 30px; z-index: 2; padding: 10px 15px; background: var(--gold); color: var(--ink); font-weight: 1000; text-transform: uppercase; letter-spacing: .06em; transform: rotate(-2deg); }
.storm-copy { padding: clamp(70px, 9vw, 140px); align-self: center; }
.large-copy { max-width: 750px; font-size: clamp(19px, 2vw, 27px); color: #d1cec6; }
.check-list { list-style: none; margin: 40px 0; padding: 0; max-width: 760px; }
.check-list li { position: relative; padding: 18px 0 18px 42px; border-top: 1px solid rgba(255,255,255,.15); color: #bab8b2; }
.check-list li:last-child { border-bottom: 1px solid rgba(255,255,255,.15); }
.check-list li::before { content: "✓"; position: absolute; left: 4px; color: var(--gold); font-weight: 1000; }
.check-list strong { color: white; }
.text-link { color: var(--gold); text-transform: uppercase; letter-spacing: .05em; font-weight: 950; text-underline-offset: 6px; }

.process { background: var(--paper); }
.process-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.process-list li { display: grid; grid-template-columns: 110px 1fr; gap: 30px; padding: 36px 0; border-bottom: 1px solid var(--line); }
.process-list li > span { width: 72px; height: 72px; display: grid; place-items: center; background: var(--gold); font: 1000 34px/1 Impact, sans-serif; clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%); }
.process-list h3 { margin-bottom: 8px; font-size: clamp(28px, 3vw, 43px); }
.process-list p { max-width: 660px; margin: 0; color: var(--muted); font-size: 17px; }

.home-blog { background: #e9e4d8; }
.blog-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.blog-card {
  min-height: 360px;
  padding: clamp(26px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 15px 45px rgba(30, 25, 10, .07);
  transition: transform .2s ease, box-shadow .2s ease;
}
.blog-card:hover { transform: translateY(-7px); box-shadow: 0 24px 55px rgba(30, 25, 10, .12); }
.blog-card h3 { font-size: clamp(28px, 3vw, 40px); }
.blog-card > p:not(.post-meta) { color: var(--muted); }
.blog-card a { margin-top: auto; padding-top: 28px; color: #856500; font-size: 12px; font-weight: 950; text-transform: uppercase; letter-spacing: .06em; text-underline-offset: 5px; }
.post-meta { color: #856500; font-size: 10px; font-weight: 950; text-transform: uppercase; letter-spacing: .13em; }
.blog-all-button { margin-top: 30px; }

.eddie-break { display: grid; grid-template-columns: minmax(270px, .45fr) minmax(0, 1fr); align-items: end; min-height: 540px; padding: 0 clamp(20px, 9vw, 140px); background: var(--gold); overflow: hidden; }
.eddie-cutout { align-self: stretch; display: flex; align-items: end; justify-content: center; }
.eddie-cutout img { height: 96%; width: auto; max-width: 100%; object-fit: cover; object-position: top; filter: drop-shadow(20px 15px 0 rgba(0,0,0,.13)); }
.eddie-break-copy { padding: 70px 0 75px clamp(30px, 7vw, 110px); }
.eddie-break-copy .eyebrow { color: #6b5200; }
.eddie-break-copy h2 { max-width: 850px; }
.eddie-break-copy p { max-width: 680px; font-size: 20px; margin-bottom: 28px; }

.contact-section { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(50px, 9vw, 140px); color: white; background: var(--ink-soft); }
.contact-copy > p:not(.eyebrow) { color: #b9b7b1; font-size: 18px; }
.direct-contact { margin-top: 42px; display: grid; gap: 14px; }
.direct-contact a { display: block; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.15); text-decoration: none; }
.direct-contact span { display: block; color: var(--gold); text-transform: uppercase; letter-spacing: .1em; font-size: 10px; font-weight: 900; }
.direct-contact strong { display: block; margin-top: 4px; font-size: clamp(19px, 2vw, 26px); overflow-wrap: anywhere; }
.quote-form { padding: clamp(26px, 4vw, 52px); color: var(--ink); background: var(--paper); border-top: 9px solid var(--gold); box-shadow: var(--shadow); }
.quote-form label { display: grid; gap: 7px; margin-bottom: 18px; font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.quote-form input, .quote-form select, .quote-form textarea { width: 100%; border: 1px solid #c8c4b8; border-radius: 0; background: white; padding: 13px; color: var(--ink); outline: none; text-transform: none; letter-spacing: normal; }
.quote-form textarea { resize: vertical; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(245,184,0,.22); }
.quote-form .button { width: 100%; border: 0; }
.form-note { margin: 14px 0 0; color: var(--muted); font-size: 11px; text-align: center; }
.quote-form .button:disabled { cursor: wait; opacity: .72; transform: none; }

.thank-you-page {
  min-height: calc(100vh - 184px);
  padding: clamp(70px, 10vw, 150px) clamp(20px, 7vw, 110px);
  display: grid;
  place-items: center;
  color: white;
  background:
    radial-gradient(circle at 20% 20%, rgba(245,184,0,.2), transparent 32%),
    var(--ink);
}
.thank-you-card { width: min(850px, 100%); padding: clamp(32px, 6vw, 74px); border: 1px solid rgba(255,255,255,.14); border-top: 9px solid var(--gold); background: var(--ink-soft); box-shadow: var(--shadow); }
.thank-you-card h1 { font-size: clamp(54px, 8vw, 100px); }
.thank-you-card > p:not(.eyebrow) { max-width: 680px; margin-bottom: 30px; color: #cac7bf; font-size: clamp(18px, 2vw, 23px); }

.faq { background: var(--cream); }
.faq-list { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { padding: 25px 48px 25px 0; cursor: pointer; list-style: none; font-weight: 900; font-size: clamp(18px, 2vw, 24px); position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 10px; top: 20px; color: var(--gold); font-size: 32px; transition: transform .2s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { max-width: 760px; margin: -4px 0 27px; color: var(--muted); }

footer { padding: 48px clamp(20px, 7vw, 110px) 35px; display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center; color: white; background: #050506; border-top: 1px solid rgba(255,255,255,.12); }
.footer-links { display: flex; gap: 25px; flex-wrap: wrap; justify-content: flex-end; }
.footer-links a { color: var(--gold); font-weight: 900; text-decoration: none; }
footer > p { grid-column: 1 / -1; margin: 0; padding-top: 24px; color: #75736e; border-top: 1px solid rgba(255,255,255,.1); font-size: 12px; }
.mobile-bar { display: none; }

.blog-hero {
  padding: clamp(80px, 10vw, 145px) clamp(20px, 7vw, 110px);
  color: white;
  background:
    linear-gradient(110deg, rgba(11,11,12,.98), rgba(11,11,12,.78)),
    url("assets/elevated-eddie-header.png") center 52% / cover;
  border-bottom: 9px solid var(--gold);
}
.blog-hero .eyebrow { color: var(--gold); }
.blog-hero h1 { max-width: 1050px; margin-bottom: 24px; font-size: clamp(58px, 9vw, 124px); }
.blog-hero > p:last-child { max-width: 700px; color: #cac7bf; font-size: clamp(18px, 2vw, 24px); }
.blog-index { background: var(--cream); }
.blog-index .blog-card { min-height: 410px; }
.article-hero {
  padding: clamp(70px, 9vw, 130px) clamp(20px, 9vw, 150px) clamp(65px, 8vw, 105px);
  color: white;
  background: var(--ink);
  border-bottom: 9px solid var(--gold);
}
.article-hero .eyebrow { color: var(--gold); }
.article-hero h1 { max-width: 1100px; margin-bottom: 28px; font-size: clamp(52px, 7.5vw, 108px); }
.article-deck { max-width: 820px; margin: 0 0 26px; color: #cac7bf; font-size: clamp(19px, 2vw, 25px); }
.article-meta { display: flex; flex-wrap: wrap; gap: 12px 26px; color: #97948c; font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.article-layout { display: grid; grid-template-columns: minmax(0, 760px) minmax(250px, 330px); justify-content: center; gap: clamp(50px, 8vw, 120px); padding: clamp(65px, 8vw, 115px) clamp(20px, 7vw, 110px); }
.article-body { font-family: Georgia, "Times New Roman", serif; font-size: clamp(18px, 1.6vw, 21px); line-height: 1.78; }
.article-body > p:first-child { font-size: 1.16em; }
.article-body h2 { margin: 62px 0 20px; font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: clamp(38px, 5vw, 61px); line-height: 1; }
.article-body h3 { margin: 38px 0 12px; font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: 31px; line-height: 1.05; }
.article-body a { color: #705600; text-decoration-thickness: 2px; text-underline-offset: 4px; }
.article-body ul, .article-body ol { padding-left: 25px; }
.article-body li { margin-bottom: 12px; }
.article-callout { margin: 42px 0; padding: 26px 30px; background: var(--cream); border-left: 7px solid var(--gold); font-family: Inter, ui-sans-serif, system-ui, sans-serif; }
.article-callout strong { display: block; margin-bottom: 5px; text-transform: uppercase; }
.article-sidebar { align-self: start; position: sticky; top: 110px; }
.sidebar-card { padding: 30px; color: white; background: var(--ink); border-top: 7px solid var(--gold); }
.sidebar-card img { width: 100%; max-height: 240px; object-fit: cover; object-position: top; margin-bottom: 24px; }
.sidebar-card h2 { font-size: 38px; }
.sidebar-card p { color: #bbb8b0; }
.sidebar-card .button { width: 100%; margin-top: 9px; }
.article-nav { margin-top: 18px; padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.article-nav a { display: block; margin: 8px 0; font-size: 13px; font-weight: 900; text-transform: uppercase; }
.blog-cta { padding: clamp(65px, 8vw, 105px) clamp(20px, 7vw, 110px); text-align: center; background: var(--gold); }
.blog-cta h2 { max-width: 900px; margin-left: auto; margin-right: auto; }
.blog-cta p { max-width: 650px; margin: 0 auto 28px; font-size: 19px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1180px) {
  .nav-toggle { display: block; }
  .site-header nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 20px;
    background: #111113;
    flex-direction: column;
    align-items: stretch;
    border-top: 1px solid rgba(255,255,255,.12);
  }
  .site-header nav.is-open { display: flex; }
  .site-header nav a { padding: 8px 0; font-size: 15px; }
  .nav-call { text-align: center; padding: 13px !important; }
}

@media (max-width: 1050px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { max-width: 800px; }
  .hero-visual { max-width: 850px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .storm-copy { padding: 70px 45px; }
  .contact-section { grid-template-columns: 1fr; }
  .blog-card-grid { grid-template-columns: 1fr 1fr; }
  .blog-card:last-child { grid-column: 1 / -1; }
  .contact-copy { max-width: 800px; }
  .article-layout { grid-template-columns: minmax(0, 1fr); }
  .article-sidebar { position: static; }
  .sidebar-card { display: grid; grid-template-columns: 180px 1fr; gap: 28px; align-items: center; }
  .sidebar-card img { margin: 0; max-height: 240px; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 112px; }
  main, section[id] { scroll-margin-top: 112px; }
  body { padding-bottom: 61px; }
  .site-header { min-height: 112px; padding: 10px 18px; gap: 12px; }
  .brand-logo { width: min(72vw, 300px); height: 92px; }
  .thank-you-header .brand-logo { width: min(58vw, 220px); }
  .thank-you-header .button { min-height: 44px; padding: 0 15px; font-size: 12px; }
  .nav-toggle { display: block; }
  .site-header nav { display: none; position: absolute; top: 100%; left: 0; right: 0; padding: 20px; background: #111113; flex-direction: column; align-items: stretch; border-top: 1px solid rgba(255,255,255,.12); }
  .site-header nav.is-open { display: flex; }
  .site-header nav a { padding: 8px 0; font-size: 15px; }
  .nav-call { text-align: center; padding: 13px !important; }
  .hero { padding-top: 60px; grid-template-columns: minmax(0, 1fr); gap: 65px; }
  h1 { font-size: clamp(54px, 18vw, 76px); }
  .hero-visual { margin-right: 8px; }
  .hero-badge { width: 94px; height: 94px; right: -6px; top: -40px; font-size: 11px; }
  .hero-contact { left: 15px; padding: 9px 15px; }
  .hero-contact a { font-size: 18px; }
  .trust-row { display: grid; }
  .section { padding-top: 80px; padding-bottom: 80px; }
  .service-grid { grid-template-columns: 1fr; }
  .blog-card-grid { grid-template-columns: 1fr; }
  .blog-card:last-child { grid-column: auto; }
  .blog-card { min-height: 300px; }
  .service-card { min-height: 260px; }
  .storm-section { grid-template-columns: 1fr; }
  .storm-image { min-height: 500px; }
  .storm-image::after { box-shadow: inset 0 -60px 90px rgba(11,11,12,.7); }
  .storm-copy { padding: 70px 24px; }
  .process-list li { grid-template-columns: 72px 1fr; gap: 18px; }
  .process-list li > span { width: 58px; height: 58px; }
  .eddie-break { grid-template-columns: 1fr; padding: 0 24px; }
  .eddie-cutout { max-height: 420px; order: 2; }
  .eddie-break-copy { padding: 70px 0 35px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .blog-hero, .article-hero { padding-left: 24px; padding-right: 24px; }
  .article-layout { padding-left: 24px; padding-right: 24px; }
  .article-body h2 { margin-top: 46px; }
  .sidebar-card { display: block; }
  .sidebar-card img { width: min(100%, 280px); margin: 0 auto 24px; }
  footer { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; flex-direction: column; gap: 8px; }
  .mobile-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 60; display: grid; grid-template-columns: 1fr 1fr; height: 61px; box-shadow: 0 -8px 30px rgba(0,0,0,.25); }
  .mobile-bar a { display: grid; place-items: center; text-decoration: none; text-transform: uppercase; letter-spacing: .04em; font-weight: 1000; background: var(--gold); }
  .mobile-bar a:first-child { color: white; background: var(--ink); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
