/* =========================================================
   MOUNTAIN MACHINE WORKS, INC. — Site Stylesheet
   Precision manufacturing visual system:
   machined graphite / gunmetal / brushed aluminum / precision lime
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Core palette */
  --graphite-950: #10141a;
  --graphite-900: #171d24;
  --graphite-850: #1d242c;
  --graphite-800: #242c34;
  --gunmetal-700: #313b45;
  --gunmetal-600: #3d4854;
  --gunmetal-500: #4c5864;
  --aluminum-400: #8b97a3;
  --aluminum-300: #aab5bf;
  --aluminum-200: #ccd3d9;
  --aluminum-100: #e6e9ec;
  --white: #f5f7f8;

  --lime-600: #6ea616;
  --lime-500: #8fce27;
  --lime-400: #a8e23f;
  --lime-300: #c3ee79;
  --lime-glow: rgba(168, 226, 63, 0.35);

  /* Semantic */
  --bg-page: var(--white);
  --bg-dark: var(--graphite-950);
  --text-body: #2a3138;
  --text-muted: #5b6670;
  --text-on-dark: var(--aluminum-100);
  --text-on-dark-muted: var(--aluminum-400);
  --border-light: #dde2e6;
  --border-dark: var(--gunmetal-600);

  /* Type */
  --font-head: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', 'Segoe UI', Roboto, sans-serif;

  /* Layout */
  --container: 1240px;
  --gutter: 24px;
  --header-h: 84px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; }

html, body {
  background: var(--bg-page);
  color: var(--text-body);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--graphite-950);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.15;
  font-weight: 600;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); letter-spacing: 0.01em; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1rem; letter-spacing: 0.08em; }

p { color: var(--text-body); }
p + p { margin-top: 1em; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: 88px 0; position: relative; }
.section--tight { padding: 56px 0; }
.section--dark {
  background: var(--graphite-950);
  color: var(--text-on-dark);
}
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 {
  color: var(--white);
}
.section--dark p { color: var(--text-on-dark-muted); }
.section--panel { background: var(--graphite-850); color: var(--text-on-dark); }
.section--panel h2, .section--panel h3, .section--panel h4 { color: var(--white); }
.section--panel p { color: var(--text-on-dark-muted); }
.section--alt { background: var(--aluminum-100); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lime-600);
  margin-bottom: 14px;
}
.section--dark .eyebrow, .section--panel .eyebrow { color: var(--lime-400); }
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
  display: inline-block;
}

.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.lede {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 640px;
}
.section--dark .lede, .section--panel .lede { color: var(--text-on-dark-muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  font-family: var(--font-head);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  border: 2px solid transparent;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn-row { display: flex; flex-wrap: wrap; gap: 16px; }

.btn--primary {
  background: var(--lime-500);
  color: var(--graphite-950);
}
.btn--primary:hover {
  background: var(--lime-400);
  box-shadow: 0 0 0 3px var(--lime-glow);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  border-color: var(--aluminum-400);
  color: var(--white);
}
.btn--outline:hover {
  border-color: var(--lime-400);
  color: var(--lime-400);
}

.btn--dark {
  background: var(--graphite-900);
  color: var(--white);
  border-color: var(--graphite-900);
}
.btn--dark:hover {
  background: var(--graphite-800);
  color: var(--lime-400);
}

.btn--sm { padding: 11px 22px; font-size: 0.8rem; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: 0.6; cursor: not-allowed; }

/* ---------- Technical / blueprint decorations ---------- */
.grid-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(168, 226, 63, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 226, 63, 0.07) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9), rgba(0,0,0,0));
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9), rgba(0,0,0,0));
}

.corner-ticks { position: absolute; inset: 28px; pointer-events: none; }
.corner-ticks span { position: absolute; width: 22px; height: 22px; border: 2px solid var(--lime-500); opacity: 0.7; }
.corner-ticks span:nth-child(1) { top: 0; left: 0; border-right: none; border-bottom: none; }
.corner-ticks span:nth-child(2) { top: 0; right: 0; border-left: none; border-bottom: none; }
.corner-ticks span:nth-child(3) { bottom: 0; left: 0; border-right: none; border-top: none; }
.corner-ticks span:nth-child(4) { bottom: 0; right: 0; border-left: none; border-top: none; }

.angle-divider {
  position: relative;
  height: 64px;
  margin-top: -64px;
  background: inherit;
}

.section-cut-bottom {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 46px), 0 100%);
}
.section-cut-top {
  clip-path: polygon(0 46px, 100% 0, 100% 100%, 0 100%);
}

.ruler {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 18px;
  margin: 18px 0 0;
  opacity: 0.8;
}
.ruler span { width: 2px; background: var(--lime-500); height: 6px; }
.ruler span:nth-child(5n) { height: 12px; }
.ruler span:nth-child(10n) { height: 18px; background: var(--lime-400); }

.dim-line {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--aluminum-400);
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.dim-line::before, .dim-line::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gunmetal-500));
}
.dim-line::after { background: linear-gradient(90deg, var(--gunmetal-500), transparent); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(16, 20, 26, 0.94);
  backdrop-filter: saturate(140%) blur(6px);
  border-bottom: 1px solid var(--gunmetal-700);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark { height: 42px; width: auto; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name {
  font-family: var(--font-head);
  color: var(--white);
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.brand__name b { color: var(--lime-400); font-weight: 600; }
.brand__sub {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--aluminum-400);
  margin-top: 3px;
}

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  display: inline-block;
  padding: 10px 16px;
  font-family: var(--font-head);
  font-size: 0.82rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--aluminum-200);
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.main-nav a:hover, .main-nav a[aria-current="page"] {
  color: var(--white);
  border-color: var(--lime-500);
}

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-actions .btn { padding: 12px 22px; }
.phone-link {
  display: none;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  color: var(--white);
  font-size: 0.86rem;
  letter-spacing: 0.04em;
}
.phone-link svg { width: 16px; height: 16px; stroke: var(--lime-400); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--gunmetal-600);
}
.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--white);
  margin: 0 auto;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--graphite-950);
  color: var(--white);
  padding: 96px 0 140px;
  overflow: hidden;
  border-bottom: 1px solid var(--gunmetal-700);
}
.hero::after {
  content: "";
  position: absolute;
  right: -8%;
  top: 10%;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, var(--lime-glow) 0%, transparent 68%);
  pointer-events: none;
}
.hero__grid { position: absolute; inset: 0; }
.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center; }
.hero__copy { max-width: 620px; }
.hero__mark { height: 46px; width: auto; margin-bottom: 26px; opacity: 0.95; }
.hero h1 { color: var(--white); margin-bottom: 22px; }
.hero h1 span { color: var(--lime-400); }
.hero__lede { font-size: 1.14rem; color: var(--aluminum-200); max-width: 560px; margin-bottom: 36px; }
.hero__meta { display: flex; gap: 28px; margin-top: 44px; flex-wrap: wrap; }
.hero__meta div { border-left: 2px solid var(--lime-500); padding-left: 14px; }
.hero__meta strong {
  display: block;
  font-family: var(--font-head);
  color: var(--white);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero__meta span { font-size: 0.8rem; color: var(--aluminum-400); }

.hero__panel {
  position: relative;
  border: 1px solid var(--gunmetal-600);
  background: linear-gradient(160deg, var(--graphite-850), var(--graphite-900));
  padding: 34px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 32px), calc(100% - 32px) 100%, 0 100%);
}
.hero__panel-mark { width: 100%; height: auto; max-width: 300px; margin: 0 auto 22px; display: block; filter: drop-shadow(0 0 26px rgba(168,226,63,0.25)); }
.hero__panel ul { display: flex; flex-direction: column; gap: 14px; }
.hero__panel li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--aluminum-100);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gunmetal-700);
}
.hero__panel li:last-child { border-bottom: none; padding-bottom: 0; }
.hero__panel li svg { width: 18px; height: 18px; stroke: var(--lime-400); flex-shrink: 0; }

/* ---------- Cards / Grids ---------- */
.grid { display: grid; gap: 28px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border-light);
  padding: 34px 30px;
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 0 100%);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 30px -18px rgba(16,20,26,0.35); border-color: var(--lime-500); }
.card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--graphite-950);
  margin-bottom: 20px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
}
.card__icon svg { width: 26px; height: 26px; stroke: var(--lime-400); fill: none; }
.card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.card p { font-size: 0.94rem; color: var(--text-muted); }
.card__index {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: var(--font-head);
  font-size: 0.72rem;
  color: var(--aluminum-300);
  letter-spacing: 0.06em;
}

.card--dark {
  background: var(--graphite-900);
  border-color: var(--gunmetal-700);
}
.card--dark h3 { color: var(--white); }
.card--dark p { color: var(--text-on-dark-muted); }
.card--dark .card__icon { background: var(--graphite-800); border: 1px solid var(--gunmetal-600); }

/* ---------- Process steps ---------- */
.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  margin-top: 20px;
}
.process::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--gunmetal-500) 0 10px, transparent 10px 18px);
}
.process__step { position: relative; padding: 0 14px; text-align: left; }
.process__num {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--graphite-950);
  color: var(--lime-400);
  font-family: var(--font-head);
  font-size: 1rem;
  border: 2px solid var(--lime-500);
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 20% 100%);
}
.process__step h4 { color: var(--white); margin-bottom: 8px; font-size: 0.92rem; }
.process__step p { font-size: 0.85rem; color: var(--text-on-dark-muted); }

/* ---------- Split / feature sections ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split--reverse .split__media { order: 2; }
.split__list { display: flex; flex-direction: column; gap: 18px; margin-top: 24px; }
.split__list li { display: flex; gap: 14px; align-items: flex-start; }
.split__list svg { width: 20px; height: 20px; stroke: var(--lime-600); flex-shrink: 0; margin-top: 2px; }
.section--dark .split__list svg, .section--panel .split__list svg { stroke: var(--lime-400); }
.split__list strong { display: block; font-family: var(--font-head); font-size: 0.92rem; letter-spacing: 0.02em; text-transform: uppercase; margin-bottom: 3px; }

.media-frame {
  position: relative;
  border: 1px solid var(--border-dark);
  background: linear-gradient(150deg, var(--graphite-850), var(--graphite-950));
  aspect-ratio: 4 / 3;
  overflow: hidden;
  clip-path: polygon(26px 0, 100% 0, 100% 100%, 0 100%, 0 26px);
}
.media-frame .grid-overlay { -webkit-mask-image: none; mask-image: none; opacity: 0.9; }
.media-frame__glyph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.media-frame__glyph svg { width: 46%; height: 46%; stroke: var(--lime-500); opacity: 0.85; }
.media-frame__tag {
  position: absolute;
  left: 18px;
  bottom: 16px;
  font-family: var(--font-head);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--aluminum-300);
  border-left: 2px solid var(--lime-500);
  padding-left: 10px;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--graphite-950);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 72px 0;
}
.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cta-band h2 { color: var(--white); margin-bottom: 10px; }
.cta-band p { color: var(--aluminum-300); max-width: 480px; }

/* ---------- Tables ---------- */
.spec-table { width: 100%; border-collapse: collapse; margin-top: 18px; }
.spec-table th, .spec-table td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.94rem;
}
.spec-table th {
  font-family: var(--font-head);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ---------- Forms ---------- */
.form-panel {
  background: var(--white);
  border: 1px solid var(--border-light);
  padding: 40px;
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 0 100%);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label {
  font-family: var(--font-head);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--graphite-900);
}
.form-field .optional { color: var(--text-muted); text-transform: none; font-family: var(--font-body); letter-spacing: 0; font-size: 0.72rem; }
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-bottom: 2px solid var(--gunmetal-500);
  padding: 12px 14px;
  font-size: 0.95rem;
  color: var(--text-body);
  transition: border-color 0.15s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-bottom-color: var(--lime-600);
}
.form-field textarea { resize: vertical; min-height: 120px; }

.file-drop {
  border: 1px dashed var(--aluminum-300);
  background: var(--aluminum-100);
  padding: 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.file-drop:hover, .file-drop.is-dragover { border-color: var(--lime-600); background: #eef7d9; }
.file-drop svg { width: 26px; height: 26px; stroke: var(--gunmetal-500); }
.file-drop small { color: var(--text-muted); font-size: 0.78rem; }
.file-drop input[type="file"] { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.file-list { margin-top: 10px; display: flex; flex-direction: column; gap: 6px; }
.file-list li { font-size: 0.82rem; color: var(--text-body); display: flex; justify-content: space-between; gap: 10px; background: var(--aluminum-100); padding: 6px 10px; }
.file-list button { background: none; border: none; color: var(--text-muted); font-size: 0.9rem; }

.form-note { font-size: 0.82rem; color: var(--text-muted); margin-top: 18px; }
.form-status {
  margin-top: 18px;
  padding: 14px 16px;
  font-size: 0.88rem;
  display: none;
  border-left: 3px solid var(--lime-600);
  background: var(--aluminum-100);
}
.form-status.is-visible { display: block; }
.form-status.is-error { border-left-color: #c0392b; background: #fbeceb; }

/* ---------- Contact info blocks ---------- */
.info-list { display: flex; flex-direction: column; gap: 22px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; }
.info-item__icon {
  width: 44px; height: 44px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--graphite-900); border: 1px solid var(--gunmetal-600);
}
.info-item__icon svg { width: 20px; height: 20px; stroke: var(--lime-400); }
.info-item strong { display: block; font-family: var(--font-head); letter-spacing: 0.04em; text-transform: uppercase; font-size: 0.85rem; color: var(--white); margin-bottom: 4px; }
.info-item a, .info-item span { color: var(--aluminum-300); font-size: 0.94rem; }
.info-item a:hover { color: var(--lime-400); }

.map-frame {
  border: 1px solid var(--gunmetal-600);
  aspect-ratio: 16/10;
  overflow: hidden;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.15) contrast(1.05); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--graphite-950);
  color: var(--aluminum-400);
  border-top: 1px solid var(--gunmetal-700);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--gunmetal-700);
}
.footer-brand__mark { height: 40px; margin-bottom: 16px; }
.footer-brand p { color: var(--aluminum-400); font-size: 0.9rem; max-width: 320px; }
.footer h4 { color: var(--white); margin-bottom: 18px; font-size: 0.82rem; letter-spacing: 0.1em; }
.footer-list { display: flex; flex-direction: column; gap: 11px; }
.footer-list a { font-size: 0.9rem; color: var(--aluminum-400); }
.footer-list a:hover { color: var(--lime-400); }
.footer-address { font-size: 0.9rem; color: var(--aluminum-400); font-style: normal; line-height: 1.7; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 24px;
  font-size: 0.8rem;
  color: var(--aluminum-500, #6b7680);
}
.footer-bottom .footer-list { flex-direction: row; gap: 22px; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background: var(--graphite-950);
  color: var(--white);
  padding: 70px 0 76px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--gunmetal-700);
}
.page-hero__inner { position: relative; z-index: 2; max-width: 760px; }
.page-hero .eyebrow { color: var(--lime-400); }
.page-hero h1 { color: var(--white); }
.page-hero p { color: var(--aluminum-300); margin-top: 16px; font-size: 1.05rem; max-width: 640px; }
.breadcrumb { font-family: var(--font-head); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--aluminum-400); margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--lime-400); }
.breadcrumb span { color: var(--lime-400); margin: 0 8px; }

/* ---------- Legal pages ---------- */
.legal {
  max-width: 820px;
}
.legal h2 { margin-top: 40px; margin-bottom: 14px; font-size: 1.3rem; }
.legal h2:first-child { margin-top: 0; }
.legal p, .legal li { color: var(--text-body); font-size: 0.98rem; }
.legal ul { list-style: disc; padding-left: 22px; margin-top: 10px; display: flex; flex-direction: column; gap: 8px; }
.legal ul li { color: var(--text-body); }
.legal .updated {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime-600);
  border: 1px solid var(--lime-600);
  padding: 6px 12px;
  margin-bottom: 28px;
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 2000;
  background: var(--lime-500); color: var(--graphite-950);
  padding: 12px 18px; font-family: var(--font-head); text-transform: uppercase; font-size: 0.85rem;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__panel { max-width: 480px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  :root { --header-h: 68px; }
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-actions .btn--outline { display: none; }
  .header-actions .btn--primary { display: none; }
  .phone-link { display: none; }
  .header-actions { gap: 10px; }

  .brand__mark { height: 32px; }
  .brand__sub { display: none; }
  .brand__name { font-size: 0.86rem; letter-spacing: 0.02em; white-space: nowrap; }
  .site-header__inner { gap: 10px; }

  .site-header.is-open .main-nav {
    display: flex;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--graphite-950);
    border-bottom: 1px solid var(--gunmetal-700);
    flex-direction: column;
    padding: 8px 0 18px;
    gap: 0;
  }
  .site-header.is-open .main-nav a { padding: 14px var(--gutter); width: 100%; border-bottom: 1px solid var(--gunmetal-800, #232b32); }

  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .process { grid-template-columns: 1fr; gap: 28px; }
  .process::before { display: none; }
  .form-grid { grid-template-columns: 1fr; }
  .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
  .section { padding: 64px 0; }
}

@media (max-width: 520px) {
  .hero { padding: 64px 0 90px; }
  .hero__meta { gap: 18px; }
  .form-panel { padding: 26px 20px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
