@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700;800&family=Barlow+Condensed:wght@600;700;800&display=swap');

:root {
  --navy-950: #03132f;
  --navy-900: #061c42;
  --navy-800: #0b2b5f;
  --gold-500: #d6a21e;
  --gold-400: #edbd3c;
  --ink: #101725;
  --muted: #5d6675;
  --line: #c9ced7;
  --paper: #ffffff;
  --soft: #f4f5f7;
  --success: #0d6b3b;
  --danger: #a02d25;
  --shadow: 12px 12px 0 rgba(3, 19, 47, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: 'Archivo', Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, .button { border-radius: 0; }
:focus-visible { outline: 3px solid var(--gold-400); outline-offset: 3px; }

.skip-link {
  position: fixed; left: 12px; top: -80px; z-index: 1000;
  background: white; color: var(--navy-950); border: 2px solid var(--navy-950); padding: 10px 14px;
}
.skip-link:focus { top: 12px; }

.utility-bar {
  background: var(--navy-950); color: #fff; border-bottom: 3px solid var(--gold-500);
}
.utility-inner, .nav-inner, .container { width: min(1180px, calc(100% - 36px)); margin-inline: auto; }
.utility-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 18px; font-size: .82rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.utility-inner a { color: #fff; text-decoration: none; }

.site-nav { position: relative; z-index: 30; background: #fff; border-bottom: 1px solid var(--line); }
.nav-inner { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.brand img { width: 62px; height: 62px; object-fit: contain; }
.brand-copy { line-height: 1; }
.brand-copy strong { display: block; color: var(--navy-950); font-family: 'Barlow Condensed', sans-serif; font-size: 1.45rem; letter-spacing: .055em; text-transform: uppercase; }
.brand-copy span { display: block; margin-top: 5px; color: var(--muted); font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a { text-decoration: none; font-size: .88rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }
.nav-links a:hover { color: var(--gold-500); }
.nav-toggle { display: none; background: #fff; border: 2px solid var(--navy-950); padding: 9px 11px; font-weight: 800; }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 12px 20px; border: 2px solid var(--navy-950);
  background: var(--navy-950); color: #fff; text-decoration: none; font-weight: 800; letter-spacing: .025em; text-transform: uppercase; cursor: pointer;
  transition: transform .15s ease, background .15s ease, color .15s ease;
}
.button:hover { transform: translate(-2px, -2px); box-shadow: 4px 4px 0 var(--gold-500); }
.button--gold { background: var(--gold-500); color: var(--navy-950); border-color: var(--gold-500); }
.button--white { background: #fff; color: var(--navy-950); border-color: #fff; }
.button--outline { background: transparent; color: var(--navy-950); }
.button[disabled] { opacity: .65; cursor: wait; transform: none; box-shadow: none; }

.hero { position: relative; overflow: hidden; background: var(--navy-950); color: #fff; border-bottom: 8px solid var(--gold-500); }
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 54px 54px; pointer-events: none;
}
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr); min-height: 640px; }
.hero-copy { padding: 88px 54px 84px 0; align-self: center; }
.eyebrow { margin: 0 0 18px; color: var(--gold-400); font-size: .78rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
h1, h2, h3 { font-family: 'Barlow Condensed', Arial, sans-serif; line-height: .98; margin-top: 0; color: var(--navy-950); }
h1 { color: #fff; font-size: clamp(3.7rem, 7vw, 7.2rem); letter-spacing: -.025em; text-transform: uppercase; margin-bottom: 24px; max-width: 900px; }
.hero-copy > p:not(.eyebrow) { max-width: 760px; color: #dce3ee; font-size: 1.12rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 32px; }
.hero-proof { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); border-top: 1px solid rgba(255,255,255,.25); margin-top: 42px; }
.hero-proof div { padding: 18px 16px 0 0; }
.hero-proof strong { display: block; color: #fff; font-family: 'Barlow Condensed'; font-size: 1.2rem; text-transform: uppercase; }
.hero-proof span { color: #aebad0; font-size: .78rem; }
.hero-visual { position: relative; background: #fff; color: var(--ink); border-left: 8px solid var(--gold-500); display: flex; align-items: center; justify-content: center; padding: 44px; }
.hero-visual::after { content: ''; position: absolute; inset: 20px; border: 2px solid var(--navy-950); pointer-events: none; }
.hero-visual img { width: min(100%, 500px); height: auto; aspect-ratio: 1 / 1; object-fit: contain; position: relative; z-index: 1; }
.hero-city-card { position: absolute; z-index: 2; left: 34px; bottom: 34px; width: calc(100% - 68px); padding: 18px 20px; background: var(--navy-950); color: #fff; border-left: 6px solid var(--gold-500); }
.hero-city-card strong { display: block; font-family: 'Barlow Condensed'; font-size: 1.55rem; text-transform: uppercase; }
.hero-city-card span { color: #cbd5e4; font-size: .82rem; }

.section { padding: 92px 0; }
.section--soft { background: var(--soft); border-block: 1px solid var(--line); }
.section--navy { background: var(--navy-950); color: #fff; }
.section-heading { max-width: 780px; margin-bottom: 44px; }
.section-heading h2 { margin-bottom: 16px; font-size: clamp(2.75rem, 5vw, 4.7rem); text-transform: uppercase; }
.section--navy .section-heading h2 { color: #fff; }
.section-heading p { margin: 0; color: var(--muted); font-size: 1.04rem; }
.section--navy .section-heading p { color: #c8d2e1; }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.card { background: #fff; border: 2px solid var(--navy-950); padding: 30px; box-shadow: var(--shadow); }
.card h3 { font-size: 2rem; text-transform: uppercase; margin-bottom: 14px; }
.card p { color: var(--muted); }
.card-label { display: inline-block; background: var(--gold-500); color: var(--navy-950); padding: 5px 9px; font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 16px; }

.machine-card { min-height: 100%; background: #fff; border: 3px solid var(--navy-950); display: grid; grid-template-columns: 160px 1fr; }
.machine-illustration { background: var(--navy-950); padding: 24px; display: flex; justify-content: center; align-items: center; }
.machine-shell { width: 105px; height: 205px; border: 5px solid #fff; padding: 8px; position: relative; }
.machine-window { height: 145px; border: 2px solid var(--gold-400); display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; padding: 5px; }
.machine-window span { border: 1px solid rgba(255,255,255,.75); background: rgba(255,255,255,.08); }
.machine-panel { position: absolute; right: 8px; bottom: 11px; width: 24px; height: 25px; border: 2px solid #fff; }
.machine-copy { padding: 32px; }
.machine-copy h3 { font-size: 2.55rem; text-transform: uppercase; margin-bottom: 12px; }
.machine-copy ul { margin: 18px 0 0; padding-left: 19px; color: var(--muted); }

.check-list { display: grid; gap: 12px; padding: 0; list-style: none; }
.check-list li { display: grid; grid-template-columns: 22px 1fr; gap: 10px; align-items: start; }
.check-list li::before { content: '✓'; color: var(--success); font-weight: 900; }

.process { counter-reset: steps; display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); border: 2px solid var(--navy-950); }
.process-step { counter-increment: steps; position: relative; padding: 30px 24px; border-right: 1px solid var(--navy-950); background: #fff; }
.process-step:last-child { border-right: 0; }
.process-step::before { content: '0' counter(steps); display: block; color: var(--gold-500); font-family: 'Barlow Condensed'; font-weight: 800; font-size: 2.35rem; line-height: 1; margin-bottom: 18px; }
.process-step h3 { font-size: 1.55rem; text-transform: uppercase; margin-bottom: 10px; }
.process-step p { margin: 0; color: var(--muted); font-size: .9rem; }

.stats-band { background: var(--gold-500); color: var(--navy-950); border-block: 4px solid var(--navy-950); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 27px 22px; border-right: 2px solid var(--navy-950); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; font-family: 'Barlow Condensed'; text-transform: uppercase; font-size: 1.45rem; }
.stat span { font-size: .78rem; font-weight: 700; }

.form-layout { display: grid; grid-template-columns: minmax(0,.78fr) minmax(0,1.22fr); gap: 34px; align-items: start; }
.contact-panel { background: var(--navy-950); color: #fff; border-left: 8px solid var(--gold-500); padding: 38px; position: sticky; top: 22px; }
.contact-panel h2 { color: #fff; font-size: 3.2rem; text-transform: uppercase; margin-bottom: 18px; }
.contact-panel p { color: #cad4e3; }
.contact-number { display: block; color: var(--gold-400); font-family: 'Barlow Condensed'; font-size: 2.1rem; font-weight: 800; text-decoration: none; margin: 26px 0; }
.contact-points { border-top: 1px solid rgba(255,255,255,.25); margin-top: 28px; padding-top: 22px; display: grid; gap: 12px; font-size: .86rem; }
.placement-form { background: #fff; border: 2px solid var(--navy-950); padding: 34px; box-shadow: var(--shadow); }
.form-title { display: flex; justify-content: space-between; gap: 16px; border-bottom: 1px solid var(--line); padding-bottom: 18px; margin-bottom: 24px; }
.form-title h2 { font-size: 2.7rem; text-transform: uppercase; margin: 0; }
.form-title span { align-self: center; color: var(--muted); font-size: .78rem; font-weight: 700; }
.form-section { border: 0; margin: 0 0 28px; padding: 0; }
.form-section legend { width: 100%; border-bottom: 2px solid var(--navy-950); padding-bottom: 8px; margin-bottom: 18px; font-weight: 800; font-size: .78rem; text-transform: uppercase; letter-spacing: .11em; color: var(--navy-950); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 17px; }
.field { display: grid; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label, .field-label { font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .035em; }
.field input, .field select, .field textarea {
  width: 100%; border: 1px solid #9fa7b3; border-bottom: 3px solid var(--navy-950); background: #fff; color: var(--ink); padding: 12px 13px; border-radius: 0;
}
.field textarea { min-height: 115px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold-500); outline: 2px solid rgba(214,162,30,.28); }
.choice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice label { display: flex; min-height: 62px; align-items: center; justify-content: center; text-align: center; border: 2px solid var(--navy-950); padding: 10px; font-size: .78rem; font-weight: 800; text-transform: uppercase; cursor: pointer; }
.choice input:checked + label { background: var(--navy-950); color: #fff; box-shadow: inset 0 -5px 0 var(--gold-500); }
.consent { display: grid; grid-template-columns: 20px 1fr; gap: 10px; color: var(--muted); font-size: .78rem; margin: 20px 0; }
.consent input { width: 18px; height: 18px; }
.form-status { min-height: 24px; margin: 14px 0 0; font-weight: 700; font-size: .88rem; }
.form-status.success { color: var(--success); }
.form-status.error { color: var(--danger); }
.honeypot { position: absolute !important; left: -10000px !important; opacity: 0 !important; pointer-events: none !important; }

.city-search-wrap { background: #fff; border: 2px solid var(--navy-950); padding: 24px; box-shadow: var(--shadow); }
.city-search { display: grid; grid-template-columns: 1fr auto; }
.city-search input { min-height: 54px; border: 2px solid var(--navy-950); border-right: 0; padding: 12px 16px; border-radius: 0; }
.city-results { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 10px; margin-top: 20px; }
.city-link { border: 1px solid var(--line); border-left: 4px solid var(--gold-500); padding: 12px; text-decoration: none; background: #fff; }
.city-link strong { display: block; color: var(--navy-950); font-size: .88rem; }
.city-link span { color: var(--muted); font-size: .7rem; }
.city-link:hover { border-color: var(--navy-950); transform: translateY(-1px); }
.city-count { color: var(--muted); font-size: .82rem; margin: 14px 0 0; }
.county-block { margin-bottom: 42px; }
.county-block h2 { font-size: 2.8rem; text-transform: uppercase; padding-bottom: 10px; border-bottom: 4px solid var(--gold-500); margin-bottom: 18px; }
.county-city-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 10px; }
.county-city-grid a { border: 1px solid var(--line); padding: 10px 12px; text-decoration: none; background: #fff; font-size: .85rem; font-weight: 700; }
.county-city-grid a:hover { border-color: var(--navy-950); box-shadow: inset 4px 0 0 var(--gold-500); }

.nearby-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; }
.nearby-link { background: #fff; border: 1px solid var(--line); border-top: 4px solid var(--gold-500); padding: 18px; text-decoration: none; }
.nearby-link strong { display: block; color: var(--navy-950); }
.nearby-link span { color: var(--muted); font-size: .76rem; }

.faq { border-top: 2px solid var(--navy-950); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; padding: 22px 42px 22px 0; font-weight: 800; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; position: absolute; right: 4px; top: 17px; color: var(--gold-500); font-family: 'Barlow Condensed'; font-size: 2rem; }
.faq details[open] summary::after { content: '−'; }
.faq details p { margin: 0; padding: 0 44px 24px 0; color: var(--muted); }

.breadcrumbs { background: var(--soft); border-bottom: 1px solid var(--line); }
.breadcrumbs .container { padding-block: 12px; font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.breadcrumbs a { color: var(--navy-800); text-decoration: none; }

.footer { background: var(--navy-950); color: #fff; border-top: 8px solid var(--gold-500); padding: 56px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 34px; }
.footer h3 { color: #fff; text-transform: uppercase; font-size: 1.45rem; margin-bottom: 14px; }
.footer p, .footer a { color: #bcc7d7; }
.footer a { text-decoration: none; }
.footer-links { display: grid; gap: 9px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.2); margin-top: 38px; padding-top: 20px; display: flex; justify-content: space-between; gap: 20px; font-size: .75rem; color: #99a9bf; }
.mobile-call { display: none; }

.notice { border-left: 6px solid var(--gold-500); background: #fff7dd; padding: 16px 18px; color: #4d3a08; font-size: .84rem; }

@media (max-width: 1000px) {
  .nav-links { display: none; position: absolute; left: 0; right: 0; top: 84px; background: #fff; border-bottom: 3px solid var(--navy-950); padding: 20px; flex-direction: column; align-items: stretch; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: inline-block; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding: 70px 0; }
  .hero-visual { min-height: 460px; border-left: 0; border-top: 8px solid var(--gold-500); }
  .form-layout { grid-template-columns: 1fr; }
  .contact-panel { position: static; }
  .grid-4, .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2) { border-right: 0; }
  .process-step:nth-child(-n+2) { border-bottom: 1px solid var(--navy-950); }
  .city-results, .county-city-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  body { padding-bottom: 62px; }
  .utility-inner { justify-content: center; min-height: 32px; font-size: .68rem; }
  .utility-inner span { display: none; }
  .nav-inner { min-height: 72px; }
  .brand img { width: 50px; height: 50px; }
  .brand-copy strong { font-size: 1.15rem; }
  .brand-copy span { display: none; }
  .nav-links { top: 72px; }
  .hero-copy { padding: 58px 0 54px; }
  h1 { font-size: clamp(3.1rem, 16vw, 5.2rem); }
  .hero-proof { grid-template-columns: 1fr; }
  .hero-proof div { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .hero-visual { min-height: 390px; padding: 48px 32px 90px; }
  .section { padding: 68px 0; }
  .grid-2, .grid-3, .grid-4, .stats-grid, .nearby-grid { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 2px solid var(--navy-950); }
  .stat:last-child { border-bottom: 0; }
  .machine-card { grid-template-columns: 1fr; }
  .machine-illustration { min-height: 250px; }
  .process { grid-template-columns: 1fr; }
  .process-step { border-right: 0; border-bottom: 1px solid var(--navy-950); }
  .process-step:last-child { border-bottom: 0; }
  .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .choice-grid { grid-template-columns: 1fr; }
  .placement-form { padding: 24px 18px; }
  .form-title { display: block; }
  .form-title span { display: block; margin-top: 6px; }
  .city-search { grid-template-columns: 1fr; gap: 8px; }
  .city-search input { border-right: 2px solid var(--navy-950); }
  .city-results, .county-city-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .mobile-call { display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 100; background: var(--gold-500); color: var(--navy-950); min-height: 62px; align-items: center; justify-content: center; text-decoration: none; font-weight: 900; text-transform: uppercase; border-top: 3px solid var(--navy-950); }
}

@media (max-width: 460px) {
  .utility-inner, .nav-inner, .container { width: min(100% - 24px, 1180px); }
  .city-results, .county-city-grid { grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .contact-panel { padding: 28px 22px; }
}
