:root {
  --bg: #07120d;
  --bg2: #0d2117;
  --panel: rgba(15, 35, 25, .82);
  --panel-strong: rgba(10, 25, 18, .94);
  --green: #82bd5e;
  --green2: #a8dc7e;
  --gold: #d6b45f;
  --cream: #f5f1e8;
  --muted: #b9c7b8;
  --line: rgba(255,255,255,.14);
  --shadow: 0 28px 90px rgba(0,0,0,.42);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--cream);
  background:
    radial-gradient(circle at 72% 10%, rgba(130,189,94,.22), transparent 32%),
    radial-gradient(circle at 12% 88%, rgba(214,180,95,.13), transparent 28%),
    linear-gradient(135deg, #030806 0%, var(--bg) 52%, #102618 100%);
  font-family: "Aptos", "Segoe UI", system-ui, sans-serif;
  overflow-x: hidden;
}
body:before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .26;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}
a { color: inherit; }
.site-shell { width: min(1240px, calc(100% - 32px)); margin: 0 auto; position: relative; z-index: 1; }
.site-header {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 950;
}
.mark {
  width: 42px;
  height: 42px;
  border: 2px solid var(--green);
  border-radius: 12px;
  display: grid;
  place-items: center;
  transform: rotate(45deg);
  background: rgba(130,189,94,.08);
  box-shadow: 0 0 32px rgba(130,189,94,.22);
}
.mark span { transform: rotate(-45deg); color: var(--green2); letter-spacing: -.08em; }
.wordmark { font-size: clamp(1.9rem, 3vw, 2.7rem); letter-spacing: -.07em; line-height: .9; }
.wordmark .lr { color: var(--green); }
.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(14px);
}
.nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 850;
  font-size: .9rem;
  padding: 10px 12px;
  border-radius: 999px;
  white-space: nowrap;
  transition: transform .18s ease, color .18s ease, background .18s ease;
}
.nav a:hover, .nav a.active { color: #07120d; background: var(--green2); transform: translateY(-1px); }
.hero, .page-hero {
  padding: clamp(42px, 8vw, 98px) 0 clamp(42px, 7vw, 82px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
}
.page-hero { grid-template-columns: minmax(0, .9fr) minmax(300px, .7fr); padding-bottom: 36px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 950;
  font-size: .76rem;
  margin-bottom: 16px;
}
.eyebrow:before { content: ""; width: 34px; height: 2px; background: var(--gold); border-radius: 999px; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 18px; font-size: clamp(3rem, 7vw, 7rem); line-height: .88; letter-spacing: -.075em; }
h1 span, h2 span { color: var(--green); }
h2 { font-size: clamp(2rem, 4.4vw, 4.4rem); line-height: .95; letter-spacing: -.065em; }
h3 { letter-spacing: -.035em; }
.lead { color: #e4eadf; font-size: clamp(1.05rem, 1.35vw, 1.34rem); line-height: 1.5; max-width: 760px; font-weight: 560; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 14px 22px;
  text-decoration: none;
  font-weight: 950;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary { color: #07120d; background: linear-gradient(135deg, var(--green), var(--green2)); box-shadow: 0 18px 38px rgba(127,186,91,.22); }
.btn.secondary { color: #fff; background: rgba(255,255,255,.055); border-color: var(--line); }
.btn.gold { color: #07120d; background: var(--gold); }
.panel, .card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.panel { padding: clamp(18px, 3vw, 28px); }
.visual-panel { min-height: 440px; padding: 22px; position: relative; overflow: hidden; }
.visual-panel:before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(214,180,95,.28);
  border-radius: 8px;
  transform: rotate(-2deg);
}
.route-lines { position: absolute; inset: 34px; border-left: 2px solid rgba(130,189,94,.5); border-bottom: 2px solid rgba(214,180,95,.45); transform: skewY(-8deg); }
.signal { position: absolute; width: 13px; height: 13px; border-radius: 50%; background: var(--green2); box-shadow: 0 0 0 8px rgba(130,189,94,.12), 0 0 34px rgba(130,189,94,.55); animation: pulse 2.8s ease-in-out infinite; }
.signal.gold { background: var(--gold); box-shadow: 0 0 0 8px rgba(214,180,95,.12), 0 0 34px rgba(214,180,95,.5); }
.s1 { left: 24%; top: 24%; } .s2 { right: 22%; top: 38%; animation-delay: .4s; } .s3 { left: 40%; bottom: 22%; animation-delay: .8s; }
.stat-grid, .pricing-grid, .steps, .feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.section { padding: 34px 0 76px; }
.section-head { max-width: 820px; margin-bottom: 24px; }
.card { padding: 22px; }
.muted { color: var(--muted); }
.pill-row, .chips { display: flex; flex-wrap: wrap; gap: 8px; }
.pill, .chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 10px;
  color: #eaf2e4;
  background: rgba(255,255,255,.055);
  font-size: .82rem;
  font-weight: 800;
}
.chip input { width: 14px; height: 14px; min-height: 0; padding: 0; accent-color: var(--green); }
.cards { display: grid; gap: 12px; }
.pricing-card { display: flex; flex-direction: column; min-height: 100%; position: relative; overflow: hidden; }
.pricing-card.featured { border-color: rgba(214,180,95,.58); background: linear-gradient(180deg, rgba(214,180,95,.16), rgba(255,255,255,.04)); transform: translateY(-8px); }
.tier-label { color: var(--gold); text-transform: uppercase; letter-spacing: .16em; font-weight: 950; font-size: .72rem; }
.price { font-size: 2.4rem; line-height: 1; color: var(--green2); font-weight: 950; letter-spacing: -.055em; }
.price small { display: block; margin-top: 5px; color: var(--muted); font-size: .88rem; letter-spacing: 0; }
.pricing-card h2, .panel > h2 { font-size: clamp(1.7rem, 3vw, 2.7rem); }
.membership-offers { padding-top: 18px; }
.vehicle-leads-banner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  margin-bottom: 26px;
  padding: clamp(24px, 4vw, 42px);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(214,180,95,.58);
  border-radius: 8px 48px 8px 8px;
  background:
    linear-gradient(110deg, rgba(214,180,95,.2), transparent 45%),
    linear-gradient(135deg, rgba(5,15,10,.98), rgba(17,52,31,.94));
  box-shadow: 0 30px 80px rgba(0,0,0,.44), inset 0 1px 0 rgba(255,255,255,.08);
}
.vehicle-leads-banner:after {
  content: "";
  width: 240px;
  height: 240px;
  position: absolute;
  right: -80px;
  bottom: -140px;
  border: 1px solid rgba(168,220,126,.2);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(168,220,126,.035), 0 0 0 68px rgba(214,180,95,.025);
}
.vehicle-leads-icon {
  width: clamp(72px, 9vw, 104px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(214,180,95,.55);
  border-radius: 50%;
  color: var(--gold);
  background: rgba(0,0,0,.24);
}
.vehicle-leads-icon svg { width: 62%; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.vehicle-leads-banner > div:last-child { position: relative; z-index: 1; }
.vehicle-leads-kicker { display: block; margin-bottom: 9px; color: var(--green2); font-size: .72rem; font-weight: 950; letter-spacing: .18em; text-transform: uppercase; }
.vehicle-leads-banner h2 { max-width: 900px; margin-bottom: 12px; font-size: clamp(2rem, 4vw, 4.25rem); line-height: .92; text-transform: uppercase; }
.vehicle-leads-banner p { max-width: 920px; margin-bottom: 0; color: #e2e9df; font-size: clamp(.98rem, 1.3vw, 1.15rem); line-height: 1.6; }
.membership-pricing-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); align-items: stretch; }
.membership-pricing-grid .pricing-card { padding: 24px 20px; }
.membership-pricing-grid .pricing-card h2 { min-height: 2em; margin: 10px 0 14px; font-size: clamp(1.65rem, 2.45vw, 2.45rem); }
.membership-pricing-grid .pricing-card .muted { min-height: 5.4em; margin-top: 18px; line-height: 1.5; }
.membership-pricing-grid .pricing-card .btn { margin-top: auto; }
.lead-benefit { color: var(--green2) !important; }
.lead-benefit:before { color: var(--gold) !important; }
.registration-levels { display: grid; gap: 18px; }
.registration-levels-head { display: grid; gap: 5px; }
.registration-levels-head h3 { margin: 0; }
.registration-level-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.registration-level {
  min-height: 112px;
  padding: 15px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 7px;
  color: var(--cream);
  background: rgba(255,255,255,.045);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 5px;
  text-align: left;
  font: inherit;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.registration-level:hover { transform: translateY(-2px); border-color: rgba(168,220,126,.55); background: rgba(130,189,94,.1); }
.registration-level:focus-visible { outline: 3px solid rgba(168,220,126,.35); outline-offset: 3px; }
.registration-level strong { font-size: 1.05rem; line-height: 1.15; }
.registration-level > span:last-child { color: var(--green2); font-weight: 900; }
.registration-level-type { color: var(--muted); font-size: .7rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.registration-level-gold { border-color: rgba(214,180,95,.32); }
.registration-level-gold > span:last-child { color: var(--gold); }
.registration-level-supplier { background: rgba(214,180,95,.07); }
.registration-level.selected { border-color: var(--green2); background: rgba(130,189,94,.16); box-shadow: inset 4px 0 0 var(--green2); }
.registration-level-gold.selected { border-color: var(--gold); box-shadow: inset 4px 0 0 var(--gold); }
.registration-intro { padding-bottom: 8px; border-bottom: 1px solid var(--line); }
.registration-intro h2 { margin-bottom: 6px; }
.required-note { float: right; color: var(--green2); font-size: .68rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.contact-preferences > p { margin-top: 0; color: var(--muted); }
.preference-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.form-error { padding: 12px 14px; border: 1px solid #b85f5f; border-radius: 6px; color: #ffd6d6; background: rgba(184,95,95,.12); }
[aria-invalid="true"] { border-color: #d87a7a !important; box-shadow: 0 0 0 2px rgba(216,122,122,.18); }
.clean { padding: 0; margin: 18px 0; list-style: none; display: grid; gap: 10px; }
.clean li { color: #edf4e8; font-weight: 760; line-height: 1.35; }
ul.clean li:before { content: "✓"; color: var(--green2); margin-right: 8px; font-weight: 950; }
ol.clean { list-style: decimal; padding-left: 20px; }
.comparison { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; min-width: 760px; }
th, td { padding: 15px 16px; border-bottom: 1px solid rgba(255,255,255,.1); text-align: center; color: #eef4ea; font-weight: 820; }
th:first-child, td:first-child { text-align: left; color: var(--muted); }
th { color: #fff; background: rgba(255,255,255,.045); }
.tick { color: var(--green2); }
.gold-text { color: var(--gold); }
.not-included { color: #91a092; }
.comparison-highlight td { color: var(--green2); background: rgba(130,189,94,.1); }
.comparison-highlight td:first-child { color: #fff; }
.membership-clarifier { max-width: 920px; margin: 18px auto 0; padding: 18px 20px; border-left: 3px solid var(--gold); background: rgba(255,255,255,.035); }
.membership-clarifier strong { color: var(--gold); }
.membership-clarifier p { margin: 6px 0 0; color: var(--muted); line-height: 1.55; }
.finder-controls, .two-col, .form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.finder-controls { grid-template-columns: 1fr 1fr auto; align-items: end; margin: 24px 0; }
label { display: grid; gap: 7px; color: #fff; font-size: .86rem; font-weight: 850; }
label.chip { display: inline-flex; align-items: center; width: auto; }
input, select, textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: rgba(0,0,0,.24);
  color: #fff;
  padding: 12px 13px;
  outline: none;
  font: inherit;
}
textarea { min-height: 112px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: rgba(163,212,124,.72); box-shadow: 0 0 0 4px rgba(127,186,91,.14); }
fieldset { border: 1px solid rgba(255,255,255,.13); background: rgba(0,0,0,.14); border-radius: 8px; padding: 14px; margin: 0; }
legend { color: var(--gold); font-weight: 950; padding: 0 6px; font-size: .86rem; }
.sell-hero h1 { font-size: clamp(2.65rem, 6.2vw, 5.8rem); }
.sell-assurance h2 { font-size: clamp(1.45rem, 2.4vw, 2.2rem); }
.sell-form { display: grid; gap: 18px; }
.sell-form fieldset { padding: clamp(16px, 2.4vw, 24px); }
.offer-toggle { align-self: end; min-height: 46px; display: inline-flex; align-items: center; gap: 10px; }
.offer-toggle input { width: 18px; height: 18px; min-height: 0; accent-color: var(--green); }
.honeypot { position: absolute; left: -100vw; width: 1px; height: 1px; opacity: 0; }
.status { min-height: 24px; align-self: center; }
.error-text { color: #ffb4a8; }
.wide { grid-column: 1 / -1; }
.map { min-height: 520px; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; background: #0b1b13; position: sticky; top: 18px; }
iframe { width: 100%; height: 520px; border: 0; display: block; }
.workshop-card { padding: 18px; box-shadow: none; }
.meta { color: var(--muted); margin-bottom: 12px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; color: var(--muted); font-size: .84rem; font-weight: 800; }
.breadcrumbs a { color: var(--green2); text-decoration: none; }
.breadcrumbs a:hover, .text-link:hover { text-decoration: underline; }
.location-hero, .profile-hero { align-items: stretch; }
.location-finder { max-width: 720px; margin-top: 30px; }
.location-finder > div { display: grid; grid-template-columns: minmax(180px, 1fr) auto; gap: 10px; }
.finder-assurance { max-width: 720px; margin: 10px 0 0; color: var(--muted); font-size: .84rem; }
.coverage-panel { display: flex; min-height: 310px; flex-direction: column; justify-content: flex-end; align-items: flex-start; padding: clamp(24px, 4vw, 42px); border: 1px solid rgba(168,220,126,.3); border-radius: 8px 54px 8px 8px; background: linear-gradient(160deg, rgba(130,189,94,.17), rgba(8,21,15,.94) 62%); box-shadow: var(--shadow); }
.coverage-panel .coverage-number { color: var(--green2); font-family: Georgia, serif; font-size: clamp(5rem, 10vw, 9rem); line-height: .75; letter-spacing: -.09em; }
.coverage-panel strong { margin-top: 22px; font-size: 1.15rem; }
.coverage-panel > span:not(.coverage-number) { margin-top: 5px; color: var(--muted); }
.coverage-panel a { margin-top: 24px; color: var(--gold); font-weight: 900; }
.section-heading { display: flex; justify-content: space-between; gap: 30px; align-items: end; margin-bottom: 24px; }
.section-heading h2 { margin-bottom: 0; font-size: clamp(2rem, 4vw, 3.8rem); }
.section-heading > p { max-width: 420px; margin-bottom: 4px; color: var(--muted); line-height: 1.6; }
.seo-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.seo-workshop-card { display: grid; gap: 14px; }
.seo-workshop-card p { line-height: 1.55; }
.workshop-card-footer { display: flex; justify-content: space-between; gap: 14px; align-items: center; margin-top: auto; color: var(--muted); font-size: .84rem; }
.text-link { color: var(--green2); font-weight: 900; text-decoration: none; }
.nearby-section { margin-inline: calc(50% - 50vw); padding-inline: max(16px, calc((100vw - 1240px) / 2)); background: rgba(0,0,0,.16); border-block: 1px solid var(--line); }
.coverage-note { margin: 22px 0 70px; padding: clamp(24px, 4vw, 42px); border: 1px solid var(--gold); border-radius: 8px; background: rgba(214,180,95,.08); }
.coverage-note h2 { font-size: clamp(2rem, 4vw, 3.6rem); }
.coverage-note p { max-width: 760px; color: var(--muted); line-height: 1.6; }
.location-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.location-links a { display: flex; justify-content: space-between; gap: 20px; padding: 18px; border: 1px solid var(--line); border-radius: 8px; color: var(--cream); text-decoration: none; background: rgba(255,255,255,.035); }
.location-links a:hover { border-color: var(--green); background: rgba(130,189,94,.08); }
.location-links span { color: var(--muted); text-transform: capitalize; }
.profile-location .coverage-number { font-size: 1rem; }
.profile-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr); gap: clamp(30px, 7vw, 90px); }
.profile-grid h2, .profile-contact h2 { font-size: clamp(2rem, 4vw, 3.8rem); }
.profile-description { color: #e4eadf; font-size: 1.14rem; line-height: 1.75; }
.profile-logo { width: min(180px, 44vw); max-height: 110px; margin: 14px 0; object-fit: contain; object-position: left center; border-radius: 6px; background: rgba(255,255,255,.92); padding: 10px; }
.profile-contact { padding: 24px; border: 1px solid var(--line); border-radius: 8px; background: var(--panel); }
.profile-contact dl { margin: 0; }
.profile-contact dl div { padding: 14px 0; border-top: 1px solid var(--line); }
.profile-contact dt { color: var(--muted); font-size: .75rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.profile-contact dd { margin: 5px 0 0; overflow-wrap: anywhere; }
.large-chips { gap: 12px; }
.large-chips .chip { padding: 10px 14px; font-size: .94rem; }
.dashboard h1 { font-size: clamp(3rem, 6vw, 5.8rem); }
.dashboard-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
  padding-top: 0;
}
.dashboard-grid .wide { grid-column: 1 / -1; }
.dashboard .card .btn { min-height: 42px; padding: 10px 13px; margin-right: 8px; margin-top: 8px; }
.dashboard .form-grid .btn { width: 100%; }
.dashboard [hidden] { display: none !important; }
.animate-in { animation: rise .7s ease both; }
.delay-1 { animation-delay: .08s; } .delay-2 { animation-delay: .16s; } .delay-3 { animation-delay: .24s; }
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%,100% { transform: scale(1); opacity: .85; } 50% { transform: scale(1.35); opacity: 1; } }
@media (prefers-reduced-motion: reduce) { *, *:before, *:after { animation: none !important; transition: none !important; } }
@media (max-width: 980px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  .nav { width: 100%; overflow-x: auto; }
  .hero, .page-hero, .two-col { grid-template-columns: 1fr; }
  .dashboard-head { align-items: flex-start; flex-direction: column; }
  .dashboard-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .membership-pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .membership-pricing-grid .pricing-card h2, .membership-pricing-grid .pricing-card .muted { min-height: 0; }
  .seo-cards, .profile-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .site-shell { width: min(100% - 24px, 620px); }
  .stat-grid, .pricing-grid, .steps, .feature-grid, .finder-controls, .form-grid { grid-template-columns: 1fr; }
  .vehicle-leads-banner { grid-template-columns: 1fr; border-radius: 8px 34px 8px 8px; }
  .vehicle-leads-icon { width: 72px; }
  h1 { font-size: clamp(2.75rem, 16vw, 4.7rem); }
  .visual-panel { min-height: 320px; }
  .registration-level-grid, .preference-grid { grid-template-columns: 1fr; }
  .map { position: static; }
  .location-finder > div, .location-links { grid-template-columns: 1fr; }
  .section-heading, .workshop-card-footer { align-items: flex-start; flex-direction: column; }
}

/* Consumer homepage */
.home-main {
  --home-ink: #102017;
  --home-forest: #10281c;
  --home-forest-deep: #08150f;
  --home-cream: #f2eee3;
  --home-paper: #e5e1d5;
  --home-sage: #9bc477;
  --home-gold: #c8ad68;
  padding-bottom: 0;
}
.home-main h1,
.home-main h2 {
  font-family: "Bodoni 72", Didot, "Iowan Old Style", Georgia, serif;
  font-weight: 500;
}
.home-kicker {
  margin: 0 0 16px;
  color: var(--home-gold);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .2em;
  line-height: 1.2;
  text-transform: uppercase;
}
.home-hero {
  min-height: min(760px, calc(100vh - 110px));
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(400px, .72fr);
  align-items: stretch;
  gap: clamp(26px, 4vw, 60px);
  padding: clamp(38px, 7vw, 88px) 0 clamp(64px, 8vw, 104px);
}
.home-hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 24px 0;
}
.home-hero-copy:before {
  content: "";
  position: absolute;
  top: -22px;
  left: 0;
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, var(--home-gold), transparent);
}
.home-hero h1 {
  max-width: 800px;
  margin: 0 0 26px;
  font-size: clamp(4.3rem, 7.8vw, 8.3rem);
  line-height: .83;
  letter-spacing: -.075em;
}
.home-hero h1 span { color: var(--green2); }
.home-hero-copy > p:not(.home-kicker):not(.confidence-line) {
  max-width: 680px;
  color: #dde5da;
  font-size: clamp(1.08rem, 1.45vw, 1.3rem);
  line-height: 1.62;
}
.home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.home-btn {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 16px 20px;
  border: 1px solid transparent;
  border-radius: 3px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .77rem;
  font-weight: 950;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease;
}
.home-btn span { font-size: 1.15rem; line-height: 1; }
.home-btn:hover { transform: translateY(-3px); }
.home-btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
.home-btn-primary { color: #07120d; background: var(--green2); }
.home-btn-primary:hover { background: #b8e78f; }
.home-btn-outline { color: var(--cream); border-color: rgba(255,255,255,.35); background: rgba(7,18,13,.38); }
.home-btn-outline:hover { border-color: var(--green2); background: rgba(130,189,94,.12); }
.confidence-line {
  margin: 28px 0 0;
  color: #9eae9f;
  font-size: .82rem;
  font-weight: 750;
  letter-spacing: .025em;
}
.confidence-line span { color: var(--home-gold); padding: 0 7px; }
.home-landscape {
  min-height: 590px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 2px 2px 92px 2px;
  box-shadow: 0 36px 100px rgba(0,0,0,.5);
}
.home-landscape:before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(5,13,9,.08), transparent 42%, rgba(5,13,9,.32));
  box-shadow: inset 0 0 0 12px rgba(255,255,255,.025);
}
.home-landscape svg { width: 100%; height: 100%; display: block; object-fit: cover; }
.landscape-label {
  position: absolute;
  z-index: 3;
  top: 28px;
  left: 28px;
  padding-left: 15px;
  border-left: 2px solid var(--home-gold);
}
.landscape-label span {
  display: block;
  margin-bottom: 5px;
  color: var(--home-gold);
  font-size: .65rem;
  font-weight: 950;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.landscape-label strong {
  color: #f4f1e8;
  font-family: "Bodoni 72", Didot, "Iowan Old Style", Georgia, serif;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 500;
  line-height: 1.08;
}
.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(360px, .8fr);
  gap: 36px 80px;
  padding: 48px 0 30px;
  border-top: 1px solid var(--line);
}
.footer-brand p { max-width: 400px; margin: 24px 0 0; color: var(--muted); line-height: 1.6; }
.footer-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px; }
.footer-links h2 {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.footer-links a { display: block; width: fit-content; margin: 0 0 12px; color: #dce4d9; text-decoration: none; font-size: .92rem; }
.footer-links a:hover { color: var(--green2); }
.footer-small {
  grid-column: 1 / -1;
  margin: 16px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #849387;
  font-size: .75rem;
}
@media (max-width: 980px) {
  .home-hero { min-height: 0; grid-template-columns: 1fr; }
  .home-landscape { min-height: 500px; }
}
@media (max-width: 760px) {
  .home-hero { padding-top: 52px; }
  .home-hero h1 { font-size: clamp(3.65rem, 16.5vw, 6.2rem); }
  .home-hero-copy > p:not(.home-kicker):not(.confidence-line) { font-size: 1rem; }
  .home-actions { flex-direction: column; }
  .home-actions .home-btn { width: 100%; }
  .confidence-line { line-height: 1.8; }
  .home-landscape { min-height: 400px; border-radius: 2px 2px 54px 2px; }
  .site-footer { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .home-hero h1 { font-size: clamp(3.25rem, 17vw, 4.7rem); }
  .home-landscape { min-height: 330px; }
  .landscape-label { top: 20px; left: 20px; }
  .footer-links { grid-template-columns: 1fr; }
}
