:root {
  --ink: #171b19;
  --muted: #65706a;
  --paper: #ffffff;
  --surface: #f3f5f2;
  --line: #d9dfdb;
  --accent: #d9ff45;
  --dark-surface: #222824;
  --radius: 8px;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: Manrope, Arial, sans-serif; font-size: 16px; line-height: 1.55; }
a { color: inherit; }
img { display: block; max-width: 100%; }

.site-header { position: sticky; top: 0; z-index: 20; min-height: 76px; display: flex; align-items: center; justify-content: space-between; padding: 0 5vw; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.96); backdrop-filter: blur(10px); }
.brand { display: inline-flex; align-items: center; gap: 9px; color: var(--ink); text-decoration: none; font-size: 13px; font-weight: 800; letter-spacing: .06em; white-space: nowrap; }
.brand span { display: grid; place-items: center; width: 31px; height: 31px; border-radius: 5px; background: var(--ink); color: var(--accent); font-size: 11px; letter-spacing: 0; }
.site-nav { display: flex; align-items: center; gap: 25px; }
.site-nav a, .nav-group > a { color: var(--ink); text-decoration: none; font-size: 13px; font-weight: 700; }
.nav-group { position: relative; padding: 28px 0; }
.subnav { position: absolute; top: 68px; left: -18px; display: none; min-width: 210px; padding: 12px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.subnav a { display: block; padding: 8px 10px; font-size: 12px; }
.nav-group:hover .subnav, .nav-group:focus-within .subnav { display: block; }
.site-nav a:hover, .site-nav a:focus-visible, .text-link:hover { color: #4f6100; }
.nav-cta { padding: 11px 16px; border-radius: var(--radius); background: var(--ink); color: var(--paper) !important; }
.nav-cta:hover, .nav-cta:focus-visible { background: #3b443e; color: var(--paper) !important; }
.menu-button { display: none; border: 0; background: none; color: var(--ink); font: 700 12px Manrope, sans-serif; }

.hero, .page-hero { max-width: var(--max); margin: auto; }
.hero { min-height: 650px; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 7vw; padding: 82px 5vw 88px; }
.hero-copy { max-width: 510px; }
.eyebrow, .kicker, .card-label { margin: 0 0 18px; color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .11em; line-height: 1.3; text-transform: uppercase; }
h1, h2, h3, p { overflow-wrap: anywhere; }
h1, h2, h3 { line-height: 1.05; letter-spacing: -.045em; }
h1 { margin: 0; font-size: clamp(44px, 6.2vw, 82px); }
h2 { margin: 0; font-size: clamp(34px, 4.4vw, 58px); }
h3 { margin: 0; font-size: 22px; }
.lead { max-width: 650px; margin: 24px 0 0; color: var(--muted); font-size: 18px; }
.hero-points { display: grid; gap: 8px; margin: 28px 0 0; padding: 0; list-style: none; color: var(--muted); font-size: 14px; }
.hero-points li::before { content: '—'; margin-right: 9px; color: var(--ink); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 20px; min-height: 48px; padding: 12px 17px; border: 1px solid var(--ink); border-radius: var(--radius); color: var(--ink); background: transparent; font-size: 13px; font-weight: 800; text-decoration: none; cursor: pointer; }
.button-primary { background: var(--ink); color: var(--paper); }
.button-primary span { color: var(--accent); font-size: 18px; }
.button:hover, .button:focus-visible { border-color: #4f6100; }
.button-primary:hover, .button-primary:focus-visible { background: #39413c; color: var(--paper); }
.button-secondary { border-color: var(--line); }

.image-placeholder { position: relative; display: flex; min-height: 100%; overflow: hidden; align-items: flex-end; padding: 20px; border-radius: var(--radius); background: linear-gradient(135deg, #26302b 0%, #4b5a50 55%, #202622 100%); color: #fff; }
.image-placeholder::before, .image-placeholder::after { content: ''; position: absolute; border: 1px solid rgba(217,255,69,.55); transform: rotate(-16deg); }
.image-placeholder::before { width: 48%; aspect-ratio: 1; top: 17%; left: 25%; border-radius: 36%; }
.image-placeholder::after { width: 72%; aspect-ratio: 1; top: 4%; left: 13%; border-radius: 40%; border-color: rgba(255,255,255,.22); }
.placeholder-label { position: relative; z-index: 1; display: grid; gap: 3px; color: #f6f8f4; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.placeholder-label small { color: var(--accent); font-size: 10px; letter-spacing: .03em; text-transform: none; }
.hero-image { aspect-ratio: 4 / 3; }

.section { padding: 100px max(5vw, calc((100vw - var(--max)) / 2)); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 48px; }
.section-head > div { max-width: 680px; }
.section-head p:not(.eyebrow) { margin: 14px 0 0; color: var(--muted); }
.capability-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.capability-card { display: grid; grid-template-columns: 150px 1fr; gap: 25px; padding: 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.capability-card .image-placeholder { grid-row: span 2; aspect-ratio: 4 / 3; min-height: 0; padding: 12px; }
.capability-card h3 { align-self: end; }
.capability-card p:not(.card-label) { align-self: start; margin: 0; color: var(--muted); font-size: 14px; }
.capability-card a:not(.button) { text-decoration: none; }
.link-row { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 25px; color: var(--muted); font-size: 13px; font-weight: 800; }
.link-row a { text-decoration: none; }
.link-row a:hover { color: var(--ink); }

.parts-section { background: var(--surface); }
.parts-grid, .finish-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.part-card, .finish-card { min-width: 0; }
.part-card .image-placeholder, .finish-card .image-placeholder { aspect-ratio: 1; min-height: 0; margin-bottom: 15px; }
.part-card h3, .finish-card h3 { font-size: 17px; letter-spacing: -.025em; }
.part-card p, .finish-card p { margin: 4px 0 0; color: var(--muted); font-size: 13px; }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat { padding: 24px 0; border-right: 1px solid var(--line); }
.stat:not(:first-child) { padding-left: 24px; }
.stat:last-child { border-right: 0; }
.stat strong { display: block; font-size: 26px; letter-spacing: -.04em; }
.stat span { color: var(--muted); font-size: 12px; }
.stat em { display: block; margin-top: 5px; color: #8a4036; font-size: 11px; font-style: normal; }

.material-grid, .industry-grid, .resource-grid, .content-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.material-card, .industry-card, .resource-card, .content-card { min-height: 220px; padding: 26px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.material-card h3, .industry-card h3, .resource-card h3, .content-card h3 { margin-top: 38px; }
.material-card p, .industry-card p, .resource-card p, .content-card p { color: var(--muted); font-size: 14px; }
.grade-list, .spec-list { display: flex; flex-wrap: wrap; gap: 6px 15px; margin: 17px 0 0; padding: 0; list-style: none; color: var(--muted); font-size: 12px; }
.grade-list li::after { content: ' ·'; color: var(--line); margin-left: 8px; }
.grade-list li:last-child::after { content: ''; }

.quality-band { background: var(--dark-surface); color: var(--paper); }
.quality-band .eyebrow, .quality-band .muted { color: #afbab0; }
.quality-layout { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 8vw; }
.quality-layout p:not(.eyebrow) { color: #c3cbc4; }
.quality-list { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 54px; border-top: 1px solid #4b554d; }
.quality-list article { padding: 20px 18px 0 0; border-right: 1px solid #4b554d; }
.quality-list article + article { padding-left: 18px; }
.quality-list article:last-child { border-right: 0; }
.quality-list strong { color: var(--accent); font-size: 12px; }
.quality-list p { margin: 9px 0 0; font-size: 14px; }

.industries-short { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.industries-short article { padding-top: 17px; border-top: 1px solid var(--ink); }
.industries-short h3 { margin: 18px 0 8px; font-size: 20px; }
.industries-short p { margin: 0; color: var(--muted); font-size: 13px; }

.rfq-cta { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 30px; background: var(--accent); }
.rfq-cta h2 { max-width: 630px; }
.rfq-cta p { margin: 13px 0 0; max-width: 580px; }
.file-types { margin: 14px 0 0; color: var(--muted); font-size: 12px; font-weight: 800; letter-spacing: .06em; }

.page-hero { padding: 90px max(5vw, calc((100vw - var(--max)) / 2)) 75px; border-bottom: 1px solid var(--line); }
.page-hero h1 { max-width: 900px; font-size: clamp(42px, 6vw, 76px); }
.page-hero .lead { max-width: 720px; }
.service-hero { display: grid; grid-template-columns: 1fr .85fr; gap: 8vw; align-items: center; }
.service-hero .image-placeholder { aspect-ratio: 4 / 3; min-height: 0; }
.spec-table { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.spec-table div { padding: 20px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.spec-table dt { color: var(--muted); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.spec-table dd { margin: 10px 0 0; font-weight: 800; }
.article-layout { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(250px, .6fr); gap: 9vw; }
.article-body { max-width: 780px; }
.article-body h2 { margin: 0 0 17px; font-size: 30px; }
.article-body h2:not(:first-child) { margin-top: 60px; }
.article-body h3 { margin: 30px 0 7px; font-size: 19px; }
.article-body p, .article-body li { color: var(--muted); }
.article-body ul { padding-left: 20px; }
.article-aside { align-self: start; padding: 25px; border-top: 2px solid var(--ink); background: var(--surface); }
.article-aside p:not(.eyebrow) { color: var(--muted); font-size: 14px; }
.article-aside a { display: block; margin-top: 17px; font-size: 13px; font-weight: 800; text-decoration: none; }
.process-list { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.process-list li { display: grid; grid-template-columns: 62px 1fr; gap: 20px; padding: 25px 0; border-bottom: 1px solid var(--line); }
.process-list li > span { color: var(--muted); font-size: 12px; font-weight: 800; }
.process-list h3 { font-size: 22px; }
.process-list p { margin: 7px 0 0; color: var(--muted); }
.location-block { padding: 72px 5vw; text-align: center; background: var(--surface); }
.location-block h2 { max-width: 720px; margin: 0 auto 28px; }

.quote-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 9vw; max-width: var(--max); margin: auto; padding: 90px 5vw; }
.quote-heading h1 { font-size: clamp(42px, 5vw, 65px); }
.quote-heading > p:not(.eyebrow) { max-width: 450px; color: var(--muted); }
.contact-details { display: grid; gap: 7px; margin-top: 28px; }
.contact-details a { font-weight: 800; }
.quote-form { display: flex; flex-direction: column; gap: 19px; }
.quote-form label { display: flex; flex-direction: column; gap: 7px; color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.quote-form input, .quote-form textarea, .quote-form select { width: 100%; padding: 11px 12px; border: 1px solid var(--line); border-radius: 5px; background: var(--paper); color: var(--ink); font: 500 15px Manrope, sans-serif; }
.quote-form input:focus, .quote-form textarea:focus, .quote-form select:focus { outline: 2px solid var(--accent); outline-offset: 1px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { margin: 0; color: var(--muted); font-size: 12px; }
.location-with-map { display: grid; grid-template-columns: 1fr 1fr; min-height: 330px; background: var(--surface); }
.location-copy { padding: 70px 5vw; }
.location-copy h2 { font-size: 34px; }
.location-copy p:last-child { max-width: 480px; color: var(--muted); }
.location-map iframe { width: 100%; height: 100%; min-height: 330px; border: 0; filter: grayscale(1); }

footer { display: grid; grid-template-columns: 1fr 1.5fr 1fr; gap: 30px; padding: 36px 5vw; background: var(--ink); color: var(--paper); font-size: 12px; }
footer .brand { color: var(--paper); }
footer p { margin: 0; color: #b8c0b8; }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 18px; }
footer a:not(.brand) { color: #e6ece5; text-decoration: none; }
footer a:hover { color: var(--accent); }

@media (max-width: 900px) {
  .site-nav { gap: 14px; }
  .hero, .service-hero { gap: 45px; }
  .capability-card { grid-template-columns: 115px 1fr; }
  .industries-short { grid-template-columns: repeat(2, 1fr); }
  .material-grid, .industry-grid, .resource-grid, .content-grid { grid-template-columns: repeat(2, 1fr); }
  .spec-table { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .site-header { min-height: 66px; padding: 0 20px; }
  .menu-button { display: block; }
  .site-nav { position: absolute; top: 65px; left: 0; right: 0; display: none; align-items: stretch; flex-direction: column; gap: 0; padding: 12px 20px 20px; border-bottom: 1px solid var(--line); background: var(--paper); }
  .site-nav.open { display: flex; }
  .site-nav a, .nav-group > a { display: block; padding: 11px 0; }
  .nav-group { padding: 0; }
  .subnav { position: static; display: grid; min-width: 0; padding: 0 0 5px 12px; border: 0; border-left: 1px solid var(--line); border-radius: 0; }
  .subnav a { padding: 6px 0; }
  .hero, .service-hero, .article-layout, .quote-section, .location-with-map, .rfq-cta { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 65px 20px 70px; }
  .hero h1 { font-size: clamp(43px, 14vw, 66px); }
  .hero-image { min-height: 0; }
  .section, .page-hero { padding: 70px 20px; }
  .section-head { display: block; margin-bottom: 34px; }
  .section-head .button { margin-top: 22px; }
  .capability-grid, .material-grid, .industry-grid, .resource-grid, .content-grid, .parts-grid, .finish-grid { grid-template-columns: 1fr; }
  .capability-card { grid-template-columns: 125px 1fr; }
  .quality-layout { grid-template-columns: 1fr; gap: 25px; }
  .quality-list { grid-template-columns: 1fr; margin-top: 38px; }
  .quality-list article, .quality-list article + article { padding: 17px 0; border-right: 0; border-bottom: 1px solid #4b554d; }
  .quality-list article:last-child { border-bottom: 0; }
  .industries-short { grid-template-columns: 1fr 1fr; gap: 24px 18px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat { border-bottom: 1px solid var(--line); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(3) { grid-column: span 2; }
  .stat:not(:first-child) { padding-left: 18px; }
  .form-row { grid-template-columns: 1fr; }
  .quote-section { padding: 70px 20px; }
  .location-copy { padding: 55px 20px; }
  .location-map iframe { min-height: 260px; }
  footer { grid-template-columns: 1fr; padding: 28px 20px; }
}

/* Homepage first-screen treatment. The rest of the site keeps the shared system above. */
.home-page .site-header {
  position: relative;
  min-height: 76px;
  padding-inline: max(5vw, calc((100vw - var(--max)) / 2));
  border-bottom-color: #30363a;
  background: #111315;
  backdrop-filter: none;
}

.home-page .brand { color: #f4f6f5; }
.home-page .brand span { background: #f4f6f5; color: #111315; }
.home-page .site-nav { gap: clamp(16px, 2vw, 29px); }
.home-page .site-nav a,
.home-page .nav-group > a { color: #d3d8d9; }
.home-page .site-nav a:hover,
.home-page .site-nav a:focus-visible { color: #fff; }
.home-page .nav-group { padding-block: 28px; }
.home-page .subnav {
  top: calc(100% - 1px);
  left: -18px;
  min-width: 285px;
  padding: 10px;
  border-color: #394146;
  border-radius: 0;
  background: #1a1e21;
  box-shadow: 0 18px 35px rgba(0,0,0,.22);
}
.home-page .subnav a { padding: 9px 10px; color: #d3d8d9; font-size: 12px; line-height: 1.35; }
.home-page .subnav a:hover,
.home-page .subnav a:focus-visible { background: #252b2f; color: #fff; }
.home-page .nav-cta {
  padding: 11px 15px;
  border-radius: 3px;
  background: #1e6fa8;
  color: #fff !important;
}
.home-page .nav-cta span { margin-left: 5px; color: #bfe3ff; }
.home-page .nav-cta:hover,
.home-page .nav-cta:focus-visible { background: #2b82bd; }
.home-page .menu-button { color: #fff; }

.home-page .hero {
  max-width: none;
  min-height: 88vh;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  grid-template-rows: 1fr auto;
  gap: clamp(42px, 3.5vw, 56px);
  padding: clamp(66px, 8vh, 94px) max(5vw, calc((100vw - var(--max)) / 2)) clamp(58px, 7vh, 78px);
  background: #111315;
  color: #f4f6f5;
}
.home-page .hero-copy { grid-column: 1; grid-row: 1; max-width: 740px; align-self: center; }
.home-page .hero-eyebrow { display: flex; align-items: center; gap: 11px; margin-bottom: 23px; color: #aeb8bb; }
.home-page .hero-eyebrow::before { content: ''; width: 34px; height: 2px; flex: 0 0 auto; background: #2b82bd; }
.home-page .hero h1 { max-width: 750px; font-size: clamp(54px, 4.45vw, 68px); letter-spacing: -.06em; line-height: .98; }
.home-page .hero h1 span { display: block; }
.home-page .hero .lead { max-width: 670px; margin-top: 27px; color: #bcc5c7; font-size: clamp(16px, 1.35vw, 19px); line-height: 1.5; }
.home-page .hero-actions { margin-top: 35px; }
.home-page .hero .button { min-height: 49px; border-radius: 3px; border-color: #647078; color: #eef2f2; }
.home-page .hero .button-primary { border-color: #1e6fa8; background: #1e6fa8; color: #fff; }
.home-page .hero .button-primary span { color: #d3ecff; }
.home-page .hero .button:hover,
.home-page .hero .button:focus-visible { border-color: #78b8e2; background: #20272b; }
.home-page .hero .button-primary:hover,
.home-page .hero .button-primary:focus-visible { border-color: #2b82bd; background: #2b82bd; }

.home-page .hero-image {
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 100%;
  align-self: center;
  aspect-ratio: 4 / 5;
  min-height: 0;
  padding: 30px;
  border: 1px solid #3c464b;
  border-radius: 0;
  background: #1a2024;
  color: #f4f6f5;
}
.home-page .hero-image::before,
.home-page .hero-image::after { display: none; }
.home-page .placeholder-grid {
  position: absolute;
  inset: 20px;
  border: 1px solid #39454b;
  background-image: linear-gradient(#2a3439 1px, transparent 1px), linear-gradient(90deg, #2a3439 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: .55;
}
.home-page .placeholder-grid::before,
.home-page .placeholder-grid::after { content: ''; position: absolute; background: #4a8bb7; opacity: .75; }
.home-page .placeholder-grid::before { top: 16%; bottom: 16%; left: 50%; width: 1px; }
.home-page .placeholder-grid::after { left: 16%; right: 16%; top: 50%; height: 1px; }
.home-page .hero-placeholder-copy { position: relative; z-index: 1; display: grid; gap: 8px; max-width: 330px; margin-top: auto; }
.home-page .placeholder-kicker { color: #8fc7ed; font-size: 11px; font-weight: 800; letter-spacing: .13em; }
.home-page .hero-placeholder-copy strong { font-size: clamp(20px, 2vw, 28px); line-height: 1.08; letter-spacing: -.035em; }
.home-page .hero-placeholder-copy > span:not(.placeholder-kicker) { color: #c4cccf; font-size: 12px; line-height: 1.45; }
.home-page .hero-placeholder-copy small { margin-top: 12px; padding-top: 12px; border-top: 1px solid #4a565c; color: #aeb8bb; font-size: 11px; line-height: 1.7; }
.home-page .hero-placeholder-copy b { color: #d7ebf8; font-weight: 700; }
.home-page .engineering-tags { position: absolute; z-index: 1; top: 29px; right: 28px; display: grid; gap: 14px; }
.home-page .engineering-tags span { display: grid; gap: 2px; padding-left: 9px; border-left: 2px solid #2b82bd; text-align: left; }
.home-page .engineering-tags b { color: #edf2f2; font-size: 10px; letter-spacing: .08em; }
.home-page .engineering-tags small { color: #89969c; font-size: 9px; letter-spacing: .08em; }

.home-page .hero-specs {
  grid-column: 1;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #3c464b;
}
.home-page .hero-specs > div { min-width: 0; padding: 19px 20px 0 0; border-right: 1px solid #3c464b; }
.home-page .hero-specs > div + div { padding-left: 20px; }
.home-page .hero-specs > div:last-child { border-right: 0; }
.home-page .hero-specs strong { display: block; color: #f4f6f5; font-size: clamp(20px, 2vw, 27px); line-height: 1.15; letter-spacing: -.045em; }
.home-page .hero-specs span { display: block; margin-top: 6px; color: #929da1; font-size: 11px; line-height: 1.35; }

@media (max-width: 980px) {
  .home-page .site-nav { gap: 13px; }
  .home-page .site-nav a, .home-page .nav-group > a { font-size: 12px; }
  .home-page .hero { gap: 42px; }
  .home-page .hero h1 { font-size: clamp(50px, 5.5vw, 64px); }
}

@media (max-width: 820px) {
  .home-page .site-header { min-height: 66px; padding-inline: 20px; }
  .home-page .menu-button { display: block; }
  .home-page .site-nav { position: absolute; top: 65px; left: 0; right: 0; display: none; align-items: stretch; flex-direction: column; gap: 0; padding: 12px 20px 20px; border-bottom: 1px solid #394146; background: #111315; }
  .home-page .site-nav.open { display: flex; }
  .home-page .site-nav a, .home-page .nav-group > a { display: block; padding: 11px 0; font-size: 13px; }
  .home-page .nav-group { padding: 0; }
  .home-page .subnav { position: static; display: grid; min-width: 0; padding: 0 0 5px 12px; border: 0; border-left: 1px solid #394146; border-radius: 0; box-shadow: none; }
  .home-page .subnav a { padding: 7px 0; font-size: 12px; }
  .home-page .nav-cta { margin-top: 7px; padding: 12px 14px !important; text-align: center; }
  .home-page .hero { min-height: 0; grid-template-columns: 1fr; grid-template-rows: auto; gap: 45px; padding: 72px 20px 60px; }
  .home-page .hero-copy, .home-page .hero-image, .home-page .hero-specs { grid-column: 1; grid-row: auto; }
  .home-page .hero-copy { max-width: none; }
  .home-page .hero h1 { max-width: 700px; font-size: clamp(46px, 8vw, 62px); }
  .home-page .hero h1 span { display: inline; }
  .home-page .hero-image { width: 100%; height: auto; aspect-ratio: 4 / 5; }
  .home-page .hero-specs { grid-template-columns: 1fr; }
  .home-page .hero-specs > div,
  .home-page .hero-specs > div + div { padding: 15px 0; border-right: 0; border-bottom: 1px solid #3c464b; }
  .home-page .hero-specs > div:last-child { border-bottom: 0; }
}

@media (max-width: 520px) {
  .home-page .hero { gap: 34px; padding-top: 58px; }
  .home-page .hero-eyebrow { align-items: flex-start; font-size: 10px; }
  .home-page .hero-eyebrow::before { width: 24px; margin-top: 5px; }
  .home-page .hero h1 { font-size: clamp(44px, 12.5vw, 52px); }
  .home-page .hero .lead { margin-top: 22px; font-size: 16px; }
  .home-page .hero-actions { flex-direction: column; align-items: stretch; margin-top: 28px; }
  .home-page .hero-actions .button { width: 100%; }
  .home-page .hero-image { padding: 22px; }
  .home-page .placeholder-grid { inset: 14px; background-size: 28px 28px; }
  .home-page .engineering-tags { top: 21px; right: 20px; gap: 10px; }
  .home-page .engineering-tags b { font-size: 9px; }
  .home-page .hero-placeholder-copy { max-width: 245px; }
  .home-page .hero-placeholder-copy strong { font-size: 21px; }
}
