/* ==========================================================================
   Elevation Six Limited
   1.  Tokens
   2.  Reset & base
   3.  Typography
   4.  Layout primitives
   5.  Icons
   6.  Buttons & links
   7.  Header & navigation
   8.  Hero
   9.  Section headers
   10. Split rows
   11. Cards
   12. Feature & industry blocks
   13. Process
   14. Image placeholders
   15. Tables
   16. Forms
   17. Dark bands & CTA
   18. Footer
   19. Utilities
   20. Print
   ========================================================================== */

/* 1. Tokens ---------------------------------------------------------------- */
:root {
  /* Brand */
  --black: #0a0a0a;
  --ink-900: #101010;
  --ink-800: #171717;
  --ink-line: #2c2c2c;
  --char: #1a1a1a;
  --slate: #4d4d4d;
  --mute: #767676;
  --line: #e6e4e0;
  --line-strong: #cbc8c2;
  --white: #ffffff;
  --off: #f6f5f2;
  --gold: #b8862f;
  --gold-deep: #90671f;
  --gold-light: #d8ab55;

  /* Type - Inter across the whole site */
  --font: "Inter", -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;

  --fs-display: clamp(2.75rem, 6.4vw, 5.25rem);
  --fs-h2: clamp(2rem, 4.2vw, 3.5rem);
  --fs-h3: clamp(1.1875rem, 1.5vw, 1.4375rem);
  --fs-lede: clamp(1.125rem, 1.5vw, 1.375rem);
  --fs-body: 1.0625rem;
  --fs-small: 0.9375rem;
  --fs-label: 0.75rem;

  /* Space */
  --section-y: clamp(5.5rem, 10vw, 10rem);
  --section-y-tight: clamp(4rem, 7vw, 7rem);
  --gutter: clamp(1.5rem, 2.4vw, 2.25rem);
  --wrap: 1280px;
  --wrap-narrow: 780px;
  --pad-x: clamp(1.25rem, 5vw, 4rem);

  --label-track: 0.18em;
}

/* 2. Reset & base ---------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--white);
  color: var(--char);
  font-family: var(--font);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; display: block; }
img { height: auto; }
a { color: inherit; text-decoration: none; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--black);
  color: var(--white);
  padding: 1rem 1.5rem;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

/* 3. Typography ------------------------------------------------------------ */
h1, h2, h3, h4 {
  margin: 0;
  color: var(--black);
  font-weight: 700;
  text-wrap: balance;
}

h1 {
  font-size: var(--fs-display);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

h2 {
  font-size: var(--fs-h2);
  line-height: 1.06;
  letter-spacing: -0.028em;
}

h3 {
  font-size: var(--fs-h3);
  line-height: 1.3;
  letter-spacing: -0.015em;
  font-weight: 600;
}

h4 { font-size: 1rem; font-weight: 600; letter-spacing: -0.01em; }

p { margin: 0 0 1.25rem; max-width: 68ch; }
p:last-child { margin-bottom: 0; }

.lede {
  font-size: var(--fs-lede);
  line-height: 1.55;
  color: var(--slate);
  max-width: 52ch;
}

/* Tracked label, set in Inter rather than a second family */
.label {
  display: inline-block;
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: var(--label-track);
  text-transform: uppercase;
  color: var(--gold-deep);
  line-height: 1.4;
}
.label--mute { color: var(--mute); }

/* Eyebrow: label preceded by a short gold rule */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1.75rem;
}
.eyebrow::before {
  content: "";
  width: 40px;
  height: 2px;
  background: var(--gold);
  flex: none;
}

/* 4. Layout primitives ----------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
.wrap--narrow { max-width: var(--wrap-narrow); }

.section { padding-block: var(--section-y); }
.section--tight { padding-block: var(--section-y-tight); }
.section--tint { background: var(--off); }
.section--dark { background: var(--ink-900); color: #c9c9c9; }
.section--dark h2,
.section--dark h3 { color: var(--white); }
.section--dark p { color: #a9a9a9; }
.section--ruled { border-top: 1px solid var(--line); }
.section--dark.section--ruled { border-top-color: var(--ink-line); }

/* 5. Icons ----------------------------------------------------------------- */
/* One family: 24px grid, 1.5px stroke, square caps, mitred joins. */
.icon {
  width: 24px;
  height: 24px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: square;
  stroke-linejoin: miter;
}
.icon--lg { width: 32px; height: 32px; stroke-width: 1.25; }
.icon--sm { width: 18px; height: 18px; }
.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

/* 6. Buttons & links ------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 58px;
  padding: 0 2rem;
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--white);
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-align: center;
}
.btn:hover { background: var(--gold-deep); border-color: var(--gold-deep); }
.btn .icon { stroke-width: 1.75; }

.btn--gold { background: var(--gold); border-color: var(--gold); color: var(--black); }
.btn--gold:hover { background: var(--black); border-color: var(--black); color: var(--white); }

.btn--outline { background: transparent; color: var(--black); }
.btn--outline:hover { background: var(--black); color: var(--white); }

.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn--ghost:hover { background: var(--white); border-color: var(--white); color: var(--black); }

.btn--lg { min-height: 66px; padding: 0 2.75rem; font-size: 1rem; }
.btn--block { width: 100%; }

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}
.actions--flush { margin-top: 0; }

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--black);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--line-strong);
}
.link-more:hover { color: var(--gold-deep); border-bottom-color: var(--gold); }

/* 7. Header & navigation --------------------------------------------------- */
.site-header {
  position: relative;
  z-index: 60;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 96px;
}

.brand { display: flex; align-items: center; gap: 0.875rem; }
.brand__mark { width: 40px; height: 40px; flex: none; }
.brand__name {
  display: block;
  font-size: 1.1875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  color: var(--black);
}
.brand__sub {
  display: block;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 6px;
}

.nav { display: flex; align-items: center; gap: 2.25rem; }
.nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--char);
  padding-block: 0.75rem;
  border-bottom: 2px solid transparent;
}
.nav a:hover { color: var(--gold-deep); }
.nav a[aria-current="page"] { border-bottom-color: var(--gold); font-weight: 600; }
.nav .btn { min-height: 50px; padding: 0 1.5rem; font-size: 0.875rem; border-bottom-width: 1px; }
.nav .btn:hover { color: var(--white); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-strong);
  padding: 0.875rem;
  cursor: pointer;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--black); margin: 4px 0; }

@media (max-width: 1000px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem var(--pad-x) 2rem;
    box-shadow: 0 24px 40px -32px rgba(0,0,0,0.5);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 1.125rem 0; border-bottom: 1px solid var(--line); font-size: 1.0625rem; }
  .nav a[aria-current="page"] { border-bottom-color: var(--gold); }
  .nav .btn { margin-top: 1.5rem; min-height: 58px; }
  .nav-toggle { display: block; }
  .header-bar { min-height: 82px; }
}

/* 8. Hero ------------------------------------------------------------------ */
.hero {
  position: relative;
  background: var(--ink-900);
  color: var(--white);
  min-height: min(86vh, 820px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__scrim { position: absolute; inset: 0; z-index: -1; background: rgba(10, 10, 10, 0.68); }
.hero__inner { padding-block: clamp(5rem, 11vw, 9rem) clamp(2.5rem, 4vw, 3.5rem); }
.hero h1 { color: var(--white); max-width: 17ch; margin-bottom: 2rem; }
.hero .lede { color: #d4d4d4; max-width: 48ch; }
.hero .eyebrow::before { background: var(--gold-light); }
.hero .label { color: var(--gold-light); }

/* Stat strip docked to the base of the hero */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.18);
}
.hero-stats > div {
  padding: 1.75rem 1.5rem 1.75rem 0;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.hero-stats > div:last-child { border-right: 0; }
.hero-stats > div + div { padding-left: 1.5rem; }
.stat__value {
  display: block;
  font-size: clamp(1.0625rem, 1.5vw, 1.375rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1.2;
}
.stat__label {
  display: block;
  margin-top: 0.5rem;
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: var(--label-track);
  text-transform: uppercase;
  color: #8f8f8f;
}
@media (max-width: 860px) {
  .hero { min-height: 0; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stats > div:nth-child(2n) { border-right: 0; }
  .hero-stats > div:nth-child(n + 3) { border-top: 1px solid rgba(255,255,255,0.12); }
  .hero-stats > div:nth-child(odd) { padding-left: 0; }
}

/* Interior page hero - same dark treatment, shallower */
.page-hero { min-height: min(56vh, 520px); }
.page-hero .hero__inner { padding-block: clamp(4rem, 8vw, 7rem) clamp(3rem, 6vw, 5rem); }
.page-hero h1 { max-width: 20ch; margin-bottom: 1.5rem; }
.page-hero.hero--plain { min-height: 0; background: var(--white); color: var(--char); }
.page-hero.hero--plain h1 { color: var(--black); }
.page-hero.hero--plain .lede { color: var(--slate); }
.page-hero.hero--plain .eyebrow::before { background: var(--gold); }
.page-hero.hero--plain .label { color: var(--gold-deep); }

/* 9. Section headers ------------------------------------------------------- */
.section-head { margin-bottom: clamp(3rem, 5vw, 4.5rem); max-width: 60ch; }
.section-head h2 { margin-bottom: 1.5rem; }
.section-head p { color: var(--slate); max-width: 56ch; font-size: 1.125rem; }
.section--dark .section-head p { color: #a9a9a9; }

/* Header with an action pinned to the right on wide screens */
.section-head--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  max-width: none;
}
.section-head--row > div { max-width: 60ch; }
.section-head--row .link-more { flex: none; margin-bottom: 0.5rem; }
@media (max-width: 800px) {
  .section-head--row { flex-direction: column; align-items: flex-start; gap: 1.75rem; }
}

/* 10. Split rows ----------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.split--top { align-items: start; }
.split--text-first { grid-template-columns: 1.05fr 0.95fr; }
.split--media-first { grid-template-columns: 0.95fr 1.05fr; }
.split__media { min-width: 0; }
.split__body { min-width: 0; max-width: 58ch; }
.split__body h2 { margin-bottom: 1.75rem; }
.split__body p { color: var(--slate); }

/* Reverse visual order without changing DOM order */
.split--reverse .split__media { order: 2; }
@media (max-width: 900px) {
  .split,
  .split--text-first,
  .split--media-first { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
}

/* 11. Cards ---------------------------------------------------------------- */
.grid { display: grid; gap: var(--gutter); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1040px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

/* Image-led card: no box, a hairline rule and generous internal space */
.card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: transparent;
}
.card__media { margin-bottom: 1.75rem; }
.card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}
.section--dark .card__body { border-top-color: var(--ink-line); }
.card .label { margin-bottom: 0.875rem; }
.card h3 { margin-bottom: 0.875rem; }
.card p { color: var(--slate); font-size: var(--fs-small); max-width: 42ch; }
.section--dark .card p { color: #a3a3a3; }
.card__foot { margin-top: auto; padding-top: 1.75rem; }
.card__foot .link-more { border-bottom: none; padding-bottom: 0; }

/* Project card adds a meta line and a status pill */
.card__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--mute);
  font-size: var(--fs-small);
  margin-bottom: 1rem;
}
.card__meta .icon { stroke: var(--gold); }

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: var(--label-track);
  text-transform: uppercase;
  padding: 0.5rem 0.875rem;
  border: 1px solid var(--line-strong);
  color: var(--slate);
}

/* Testimonial */
.quote-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 2.25rem;
  background: var(--off);
  border-top: 3px solid var(--gold);
}
.section--tint .quote-card { background: var(--white); }
.quote-card blockquote {
  margin: 0 0 2rem;
  font-size: 1.1875rem;
  line-height: 1.55;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--char);
}
.quote-card cite { display: block; margin-top: auto; font-style: normal; }

/* 12. Feature & industry blocks -------------------------------------------- */
.feature { display: flex; flex-direction: column; }
.feature .icon { stroke: var(--gold); margin-bottom: 1.5rem; }
.feature h3 { margin-bottom: 0.75rem; }
.feature p { color: var(--slate); font-size: var(--fs-small); max-width: 40ch; }
.section--dark .feature p { color: #a3a3a3; }
.section--dark .feature .icon { stroke: var(--gold-light); }

.feature--ruled { border-top: 1px solid var(--line); padding-top: 2rem; }

/* Feature block used as a link */
a.feature:hover h3 { color: var(--gold-deep); }
a.feature:hover .icon { stroke: var(--gold-deep); }
.section--dark a.feature:hover h3 { color: var(--gold-light); }
.section--dark .feature--ruled { border-top-color: var(--ink-line); }

/* Checked capability list */
.spec-list { list-style: none; margin: 0 0 2rem; padding: 0; }
.spec-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--slate);
  font-size: var(--fs-small);
}
.spec-list li:first-child { border-top: 1px solid var(--line); }
.spec-list .icon { stroke: var(--gold); margin-top: 3px; }
.section--dark .spec-list li { border-color: var(--ink-line); color: #a9a9a9; }
.section--dark .spec-list li:first-child { border-top-color: var(--ink-line); }

/* Industry list - ruled rows with icons */
.industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.industry {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 2.25rem 2rem 2.25rem 0;
  border-top: 1px solid var(--ink-line);
}
.industry .icon { stroke: var(--gold-light); margin-top: 2px; }
.industry h3 { font-size: 1.0625rem; margin-bottom: 0.375rem; }
.industry p { font-size: var(--fs-small); color: #9d9d9d; margin: 0; max-width: 34ch; }
@media (max-width: 980px) { .industry-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .industry-grid { grid-template-columns: 1fr; } }

/* 13. Process -------------------------------------------------------------- */
.process { list-style: none; margin: 0; padding: 0; }
.process > li {
  display: grid;
  grid-template-columns: 120px 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
  padding: clamp(2rem, 3.5vw, 3rem) 0;
  border-top: 1px solid var(--line);
}
.process > li:last-child { border-bottom: 1px solid var(--line); }
.process__num {
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--line-strong);
}
.process h3 { margin-bottom: 0; }
.process p { color: var(--slate); font-size: var(--fs-small); margin: 0; }
.section--dark .process > li { border-color: var(--ink-line); }
.section--dark .process__num { color: #3a3a3a; }
@media (max-width: 860px) {
  .process > li { grid-template-columns: 64px 1fr; gap: 1.25rem 1.5rem; }
  .process p { grid-column: 2; }
}

/* 14. Image placeholders --------------------------------------------------- */
/* Deliberate, labelled stand-ins for the files in /images/. */
.ph {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  text-align: center;
  padding: 1.5rem;
  aspect-ratio: 3 / 2;
  background: var(--ink-800);
  overflow: hidden;
}
.ph::before,
.ph::after { content: ""; position: absolute; background: var(--gold); }
.ph::before { top: 20px; left: 20px; width: 34px; height: 2px; }
.ph::after { top: 20px; left: 20px; width: 2px; height: 34px; }

.ph .icon { stroke: #454545; margin-bottom: 0.25rem; }
.ph__label {
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: var(--label-track);
  text-transform: uppercase;
  color: #c4c4c4;
  max-width: 32ch;
}
.ph__file { font-size: 0.75rem; letter-spacing: 0.06em; color: #7d7d7d; }

.ph--wide { aspect-ratio: 21 / 9; }
.ph--portrait { aspect-ratio: 4 / 5; }
.ph--map { aspect-ratio: 16 / 9; }

/* Real photography drops into the same slots as the placeholders above and
   inherits the same framing, so the two can sit side by side while the
   photo library is filled out. */
.media {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  background: var(--ink-800);
}
.hero__media .media,
.cta-band__media .media { aspect-ratio: auto; height: 100%; }

.hero__media .ph,
.cta-band__media .ph { aspect-ratio: auto; height: 100%; }
.hero__media .ph__label,
.hero__media .ph__file,
.cta-band__media .ph__label,
.cta-band__media .ph__file { display: none; }

/* Legible caption naming the image that belongs behind the scrim */
.media-note {
  position: absolute;
  right: var(--pad-x);
  bottom: 1.5rem;
  z-index: 1;
  margin: 0;
  padding: 0.5rem 0.875rem;
  border: 1px solid rgba(255,255,255,0.22);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9a9a9a;
  background: rgba(10,10,10,0.5);
}
@media (max-width: 700px) { .media-note { display: none; } }
.hero__media .ph::before,
.hero__media .ph::after,
.cta-band__media .ph::before,
.cta-band__media .ph::after { display: none; }

/* 15. Tables --------------------------------------------------------------- */
.table-scroll { overflow-x: auto; }
.table { width: 100%; border-collapse: collapse; font-size: var(--fs-small); min-width: 520px; }
.table caption {
  text-align: left;
  padding-bottom: 1.25rem;
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: var(--label-track);
  text-transform: uppercase;
  color: var(--mute);
}
.table th, .table td {
  text-align: left;
  padding: 1.125rem 1.5rem 1.125rem 0;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.table thead th {
  border-bottom: 2px solid var(--black);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: var(--label-track);
  text-transform: uppercase;
  color: var(--black);
}
.table td { color: var(--slate); }
.table td:first-child { color: var(--black); font-weight: 500; }

/* 16. Forms ---------------------------------------------------------------- */
.form-panel {
  background: var(--white);
  border: 1px solid var(--line-strong);
  padding: clamp(1.75rem, 3.5vw, 3rem);
}

.field { margin-bottom: 1.75rem; }
.field label,
.fieldset legend {
  display: block;
  margin-bottom: 0.625rem;
  padding: 0;
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: var(--label-track);
  text-transform: uppercase;
  color: var(--black);
}
.req { color: var(--gold-deep); }

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 56px;
  padding: 0.875rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: 0;
}
.field textarea { min-height: 180px; resize: vertical; line-height: 1.6; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--mute); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--black); }
.field [aria-invalid="true"] { border-color: #9e2b1c; }
.field__hint { display: block; margin-top: 0.625rem; font-size: 0.875rem; color: var(--mute); }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 660px) { .field-row { grid-template-columns: 1fr; } }

.fieldset { border: 0; margin: 0 0 1.75rem; padding: 0; }

/* File upload stand-in - no handler is wired up yet */
.upload {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  border: 1px dashed var(--line-strong);
  background: var(--off);
  color: var(--slate);
  font-size: var(--fs-small);
}
.upload .icon { stroke: var(--gold); }
.upload strong { display: block; color: var(--black); font-weight: 600; }

.form-note { font-size: 0.875rem; color: var(--mute); margin-top: 1.25rem; }
.form-status { min-height: 1.5rem; margin-top: 1.25rem; font-size: var(--fs-small); color: #9e2b1c; }

/* Contact detail rows */
.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li {
  display: flex;
  gap: 1.25rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line);
}
.contact-list li:first-child { border-top: 1px solid var(--line); }
.contact-list .icon { stroke: var(--gold); margin-top: 4px; }
.contact-list h3 { font-size: 1rem; margin-bottom: 0.375rem; }
.contact-list p { margin: 0; font-size: var(--fs-small); color: var(--slate); }

/* 17. Dark bands & CTA ----------------------------------------------------- */
.cta-band {
  position: relative;
  background: var(--ink-900);
  color: var(--white);
  isolation: isolate;
  padding-block: clamp(5rem, 9vw, 8.5rem);
}
.cta-band__media { position: absolute; inset: 0; z-index: -2; }
.cta-band__scrim { position: absolute; inset: 0; z-index: -1; background: rgba(10,10,10,0.78); }
.cta-band h2 { color: var(--white); max-width: 20ch; margin-bottom: 1.5rem; }
.cta-band p { color: #b4b4b4; max-width: 48ch; font-size: 1.125rem; }
.cta-band .eyebrow::before { background: var(--gold-light); }
.cta-band .label { color: var(--gold-light); }

.band-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
}
@media (max-width: 860px) { .band-split { grid-template-columns: 1fr; align-items: start; } }

.chips { display: flex; flex-wrap: wrap; gap: 0.625rem; }
.chips span {
  padding: 0.625rem 1.125rem;
  border: 1px solid var(--ink-line);
  color: #c4c4c4;
  font-size: var(--fs-small);
}
.section--dark .chips span:hover { border-color: var(--gold); color: var(--gold-light); }

/* 18. Footer --------------------------------------------------------------- */
.site-footer { background: var(--ink-900); color: #a3a3a3; border-top: 3px solid var(--gold); }
.footer-main { padding-block: clamp(4rem, 7vw, 6.5rem) clamp(3rem, 5vw, 4rem); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
}
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand__mark { margin-bottom: 1.75rem; }
.footer-brand__name {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-brand p { font-size: var(--fs-small); color: #9d9d9d; max-width: 38ch; margin-bottom: 2rem; }

.footer-col h4 {
  color: var(--white);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: var(--label-track);
  text-transform: uppercase;
  margin: 0 0 1.5rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 0.875rem; }
.footer-col a, .footer-col p { font-size: var(--fs-small); color: #a3a3a3; margin: 0; }
.footer-col a:hover { color: var(--gold-light); }

.footer-contact li { display: flex; gap: 0.875rem; margin-bottom: 1.5rem; }
.footer-contact .icon { stroke: var(--gold); margin-top: 2px; }
.footer-contact strong { display: block; color: var(--white); font-weight: 500; font-size: var(--fs-small); }
.footer-contact span { font-size: 0.8125rem; color: #8a8a8a; }

.social { display: flex; gap: 0.75rem; }
.social a {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--ink-line);
  color: #a3a3a3;
}
.social a:hover { border-color: var(--gold); color: var(--gold-light); }

.footer-legal {
  border-top: 1px solid var(--ink-line);
  padding-block: 1.75rem 2.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-legal p { font-size: 0.8125rem; color: #7a7a7a; margin: 0; }
.footer-legal nav { display: flex; flex-wrap: wrap; gap: 2rem; }
.footer-legal nav a { font-size: 0.8125rem; color: #8a8a8a; }
.footer-legal nav a:hover { color: var(--gold-light); }

/* 19. Utilities ------------------------------------------------------------ */
.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;
}
.tbd { color: var(--gold-deep); }
.mt-sm { margin-top: 1rem; }
.mb-sm { margin-bottom: 1rem; }
.mt-md { margin-top: clamp(2rem, 3vw, 3rem); }
.mt-lg { margin-top: clamp(3rem, 5vw, 5rem); }

.prose h2 { margin: 3.5rem 0 1.5rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 2.5rem 0 1rem; }
.prose p, .prose ul { color: var(--slate); }
.prose ul { padding-left: 1.25rem; margin: 0 0 1.25rem; max-width: 68ch; }
.prose li { margin-bottom: 0.625rem; }

/* 20. Print ---------------------------------------------------------------- */
@media print {
  .site-header, .site-footer, .cta-band, .nav-toggle, .actions, .hero__media { display: none; }
  .hero, .page-hero { background: #fff; color: #000; min-height: 0; }
  .hero h1, .page-hero h1 { color: #000; }
  body { font-size: 11pt; }
}
