/* =========================================================
   Rigby Davis Group LLC — dry ice blasting
   Art direction: cold industrial. Steel + graphite surfaces,
   sublimation-vapor cyan as the single accent.
   ========================================================= */

/* ---------- TOKENS ---------- */
:root {
  /* type scale */
  --text-xs: clamp(0.75rem, 0.72rem + 0.15vw, 0.8125rem);
  --text-sm: clamp(0.875rem, 0.84rem + 0.2vw, 0.9375rem);
  --text-base: clamp(1rem, 0.97rem + 0.2vw, 1.0625rem);
  --text-lg: clamp(1.125rem, 1rem + 0.6vw, 1.375rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.2vw, 2.125rem);
  --text-2xl: clamp(2rem, 1.35rem + 2.4vw, 3.25rem);

  /* spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-full: 9999px;

  --content: 1180px;
  --gutter: clamp(1.25rem, 4vw, 3rem);

  --font-display: 'Cabinet Grotesk', 'Trebuchet MS', system-ui, sans-serif;
  --font-body: 'Satoshi', 'Helvetica Neue', Helvetica, system-ui, sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --t: 200ms var(--ease);

  /* fixed values used over photography in both themes */
  --on-photo: #f4f7f8;
  --on-photo-muted: #b9c4c9;
}

/* DARK (default — this is an industrial brand, dark is the primary skin) */
:root,
[data-theme='dark'] {
  --bg: #0b0f12;
  --surface: #111619;
  --surface-2: #161c20;
  --surface-3: #1c2429;
  --border: #263036;
  --border-strong: #33414a;

  --text: #e8edef;
  --text-muted: #9aa8b0;
  --text-faint: #6b7a83;

  --accent: #4fc2d4;
  --accent-hover: #7ad4e2;
  --accent-ink: #062126;
  --accent-soft: rgba(79, 194, 212, 0.12);

  --good: #63c08a;
  --bad: #e0778c;

  --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.6);
}

[data-theme='light'] {
  --bg: #f4f6f7;
  --surface: #ffffff;
  --surface-2: #eceff1;
  --surface-3: #e2e7ea;
  --border: #d3dade;
  --border-strong: #b4c0c6;

  --text: #101a1f;
  --text-muted: #56666e;
  --text-faint: #8b9aa2;

  --accent: #0a6a78;
  --accent-hover: #085764;
  --accent-ink: #ffffff;
  --accent-soft: rgba(10, 106, 120, 0.09);

  --good: #1d7a48;
  --bad: #a3364b;

  --shadow-md: 0 4px 14px rgba(16, 26, 31, 0.09);
  --shadow-lg: 0 18px 44px rgba(16, 26, 31, 0.14);
}

/* ---------- BASE ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.62;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

img,
picture,
svg,
video,
iframe {
  display: block;
  max-width: 100%;
}
img {
  height: auto;
}

ul[role='list'],
ol[role='list'] {
  list-style: none;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}
button {
  cursor: pointer;
  background: none;
  border: none;
}
table {
  border-collapse: collapse;
  width: 100%;
}
a {
  color: var(--accent);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
p,
li,
dd,
figcaption {
  text-wrap: pretty;
}

a,
button,
input,
textarea,
select {
  transition:
    color var(--t),
    background var(--t),
    border-color var(--t),
    box-shadow var(--t),
    transform var(--t);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

::selection {
  background: var(--accent);
  color: var(--accent-ink);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.skip {
  position: absolute;
  left: var(--space-4);
  top: -4rem;
  z-index: 200;
  background: var(--accent);
  color: var(--accent-ink);
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: var(--text-sm);
  text-decoration: none;
}
.skip:focus {
  top: var(--space-4);
}

.wrap {
  width: 100%;
  max-width: var(--content);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---------- SHARED TEXT BITS ---------- */
.eyebrow {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-4);
}

.sub {
  font-size: var(--text-lg);
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 62ch;
  margin-top: var(--space-5);
}

.note {
  font-size: var(--text-sm);
  color: var(--text-muted);
  max-width: 78ch;
  margin-top: var(--space-8);
  padding-left: var(--space-5);
  border-left: 2px solid var(--border-strong);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.01em;
  text-decoration: none;
  padding: 0.875rem var(--space-6);
  border-radius: var(--radius-md);
  white-space: nowrap;
}
.btn:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}
.btn:active {
  transform: none;
}
.btn--sm {
  padding: 0.625rem var(--space-4);
}
.btn--full {
  width: 100%;
  padding-block: 1rem;
}
.btn--ghost {
  background: transparent;
  color: var(--on-photo);
  border: 1px solid rgba(244, 247, 248, 0.4);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover {
  background: rgba(244, 247, 248, 0.12);
  border-color: var(--on-photo);
}

.icon-btn {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  color: var(--text-muted);
  flex: none;
}
.icon-btn:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--accent-soft);
}

/* ---------- HEADER ---------- */
.hdr {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition:
    border-color var(--t),
    background var(--t);
}
.hdr.is-stuck {
  border-bottom-color: var(--border);
}

.hdr__in {
  width: 100%;
  max-width: var(--content);
  margin-inline: auto;
  padding: var(--space-3) var(--gutter);
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--text);
  text-decoration: none;
  flex: none;
}
.brand__mark {
  width: 2rem;
  height: 2rem;
  color: var(--accent);
  flex: none;
}
.brand__txt {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand__txt strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.0625rem;
  letter-spacing: -0.015em;
}
.brand__txt em {
  font-style: normal;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.nav {
  display: flex;
  gap: var(--space-6);
  margin-left: auto;
}
.nav a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  white-space: nowrap;
}
.nav a:hover {
  color: var(--accent);
}

.hdr__act {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex: none;
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }
  .hdr__act {
    margin-left: auto;
  }
}

@media (max-width: 480px) {
  .hdr__in {
    gap: var(--space-2);
    padding-inline: var(--space-4);
  }
  .brand__mark {
    width: 1.75rem;
    height: 1.75rem;
  }
  .brand__txt strong {
    font-size: 0.9375rem;
  }
  .brand__txt em {
    font-size: 0.625rem;
    letter-spacing: 0.18em;
  }
  .hdr__act .btn--sm {
    padding: 0.5rem 0.75rem;
    font-size: 0.8125rem;
  }
  .icon-btn {
    width: 2.25rem;
    height: 2.25rem;
  }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  min-height: clamp(30rem, 82vh, 46rem);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  z-index: -2;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(100deg, rgba(6, 10, 13, 0.94) 0%, rgba(6, 10, 13, 0.72) 46%, rgba(6, 10, 13, 0.3) 100%),
    linear-gradient(to top, rgba(6, 10, 13, 0.9) 0%, rgba(6, 10, 13, 0) 55%);
}
.hero__in {
  width: 100%;
  max-width: var(--content);
  margin-inline: auto;
  padding: var(--space-20) var(--gutter) clamp(var(--space-12), 7vw, var(--space-24));
}
.hero h1 {
  font-size: var(--text-2xl);
  color: var(--on-photo);
  max-width: 20ch;
}
.hero .lede {
  margin-top: var(--space-6);
  font-size: var(--text-lg);
  line-height: 1.5;
  color: var(--on-photo-muted);
  max-width: 56ch;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-8);
}

@media (max-width: 640px) {
  .hero__bg {
    object-position: 70% center;
  }
  .hero h1 {
    max-width: 24ch;
  }
}

/* ---------- CLAIM STRIP ---------- */
.strip {
  background: var(--surface);
  border-block: 1px solid var(--border);
}
.strip ul {
  width: 100%;
  max-width: var(--content);
  margin-inline: auto;
  padding: var(--space-2) var(--gutter);
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.strip li {
  padding: var(--space-6) var(--space-6) var(--space-6) 0;
  font-size: var(--text-sm);
  color: var(--text-muted);
  border-left: 1px solid var(--border);
  padding-left: var(--space-6);
}
.strip li:first-child {
  border-left: 0;
  padding-left: 0;
}
.strip li span {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--text);
  margin-bottom: var(--space-1);
  letter-spacing: -0.01em;
}
@media (max-width: 860px) {
  .strip ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
  .strip li {
    padding: var(--space-5);
    border-left: 1px solid var(--border);
    border-top: 1px solid var(--border);
  }
  .strip li:nth-child(odd) {
    border-left: 0;
    padding-left: 0;
  }
  .strip li:nth-child(1),
  .strip li:nth-child(2) {
    border-top: 0;
  }
}
@media (max-width: 460px) {
  .strip ul {
    grid-template-columns: 1fr;
  }
  .strip li,
  .strip li:nth-child(odd) {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid var(--border);
  }
  .strip li:first-child {
    border-top: 0;
  }
}

/* ---------- SECTIONS ---------- */
.sec {
  padding-block: clamp(var(--space-16), 9vw, var(--space-24));
}
.sec--alt {
  background: var(--surface);
  border-block: 1px solid var(--border);
}

.sec__hd {
  max-width: 68ch;
  margin-bottom: clamp(var(--space-10), 5vw, var(--space-16));
}
.sec__hd h2 {
  font-size: var(--text-xl);
}

/* photographic section (Industries) */
.sec--img {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-block: 1px solid var(--border);
}
.sec__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.sec__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(6, 10, 13, 0.9), rgba(6, 10, 13, 0.82));
}
.sec--img h2 {
  color: var(--on-photo);
}

/* ---------- WORK / GALLERY ---------- */
.vgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(19rem, 1fr));
  gap: var(--space-6);
}

.vcard {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.vcard__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--surface-3);
}
.vcard__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.vcard__body {
  padding: var(--space-5);
}
.vcard__body h3 {
  font-size: var(--text-base);
  font-weight: 700;
}
.vcard__body p {
  margin-top: var(--space-2);
  font-size: var(--text-sm);
  color: var(--text-muted);
}

/* honest empty state while there is no footage yet */
.vempty {
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: clamp(var(--space-8), 5vw, var(--space-16));
  display: grid;
  gap: var(--space-5);
  justify-items: start;
  max-width: 62rem;
}
.vempty svg {
  width: 2.25rem;
  height: 2.25rem;
  color: var(--accent);
}
.vempty h3 {
  font-size: var(--text-lg);
}
.vempty p {
  font-size: var(--text-base);
  color: var(--text-muted);
  max-width: 60ch;
}
.vempty .btn {
  margin-top: var(--space-2);
}

/* ---------- PROCESS ---------- */
.process {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(var(--space-10), 5vw, var(--space-20));
  align-items: start;
}
@media (max-width: 900px) {
  .process {
    grid-template-columns: 1fr;
  }
}
.process__copy h2 {
  font-size: var(--text-xl);
}

.steps {
  list-style: none;
  margin-top: var(--space-10);
  display: grid;
  gap: var(--space-8);
}
.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: var(--space-5);
  row-gap: 0;
  align-items: baseline;
}
.steps__n {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-lg);
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.steps h3 {
  font-size: var(--text-base);
  font-weight: 700;
  letter-spacing: 0;
}
.steps p {
  grid-column: 2;
  margin-top: var(--space-2);
  color: var(--text-muted);
  font-size: var(--text-sm);
  max-width: 54ch;
}

.process__fig {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface-2);
  position: sticky;
  top: 6rem;
}
.process__fig img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.process__fig figcaption {
  padding: var(--space-4) var(--space-5);
  font-size: var(--text-xs);
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}
@media (max-width: 900px) {
  .process__fig {
    position: static;
  }
}

/* ---------- SERVICE CARDS ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17.5rem, 1fr));
  gap: var(--space-5);
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  position: relative;
  transition:
    border-color var(--t),
    transform var(--t),
    box-shadow var(--t);
}
.sec--alt .card {
  background: var(--bg);
}
.card::before {
  content: '';
  position: absolute;
  left: 0;
  top: var(--space-8);
  bottom: var(--space-8);
  width: 2px;
  background: var(--accent);
  opacity: 0;
  transition: opacity var(--t);
}
.card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.card:hover::before {
  opacity: 1;
}
.card h3 {
  font-size: var(--text-base);
  font-weight: 700;
  letter-spacing: -0.005em;
}
.card p {
  margin-top: var(--space-3);
  font-size: var(--text-sm);
  color: var(--text-muted);
}

/* ---------- COMPARISON TABLE ---------- */
.tbl-wrap {
  position: relative;
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg);
  -webkit-overflow-scrolling: touch;
}

.tbl-hint {
  display: none;
  font-size: var(--text-xs);
  color: var(--text-faint);
  margin-top: var(--space-3);
}
@media (max-width: 760px) {
  .tbl-hint {
    display: block;
  }
}
.tbl {
  min-width: 44rem;
  font-size: var(--text-sm);
}
.tbl th,
.tbl td {
  padding: var(--space-4) var(--space-5);
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.tbl thead th {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  background: var(--surface-2);
  white-space: nowrap;
}
.tbl thead th:nth-child(2) {
  color: var(--accent);
}
.tbl tbody th {
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}
.tbl tbody td {
  color: var(--text-muted);
}
.tbl tbody tr:last-child th,
.tbl tbody tr:last-child td {
  border-bottom: 0;
}
.tbl td:nth-child(2) {
  background: var(--accent-soft);
  font-weight: 600;
  color: var(--text);
}
.tbl .y {
  color: var(--good);
}
.tbl .n {
  color: var(--bad);
}
.tbl td.y,
.tbl td.n {
  font-weight: 600;
}

/* ---------- INDUSTRY CHIPS ---------- */
.chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.chips li {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--on-photo);
  padding: 0.625rem var(--space-5);
  border: 1px solid rgba(244, 247, 248, 0.28);
  border-radius: var(--radius-full);
  background: rgba(244, 247, 248, 0.07);
  backdrop-filter: blur(4px);
}

/* ---------- CONTACT ---------- */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(var(--space-10), 5vw, var(--space-20));
  align-items: start;
}
@media (max-width: 900px) {
  .contact {
    grid-template-columns: 1fr;
  }
}
.contact__copy h2 {
  font-size: var(--text-xl);
}

.deets {
  margin-top: var(--space-10);
  display: grid;
  gap: var(--space-6);
}
.deets dt {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: var(--space-1);
}
.deets dd {
  font-size: var(--text-base);
  color: var(--text);
}
.deets a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}
.deets a:hover {
  text-decoration: underline;
}

/* ---------- FORM ---------- */
.form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(var(--space-6), 3vw, var(--space-10));
  display: grid;
  gap: var(--space-5);
}
.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}
@media (max-width: 560px) {
  .row {
    grid-template-columns: 1fr;
  }
}
.field {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.field label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-2);
}
.field label span {
  color: var(--accent);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.75rem var(--space-4);
  font-size: var(--text-sm);
  color: var(--text);
}
.field textarea {
  resize: vertical;
  min-height: 7rem;
  line-height: 1.55;
}
.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, currentColor 50%),
    linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position:
    calc(100% - 1.25rem) 1.2rem,
    calc(100% - 0.9rem) 1.2rem;
  background-size:
    0.35rem 0.35rem,
    0.35rem 0.35rem;
  background-repeat: no-repeat;
  padding-right: var(--space-12);
  text-overflow: ellipsis;
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-faint);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.field.is-bad input,
.field.is-bad textarea {
  border-color: var(--bad);
}

.err {
  font-size: var(--text-xs);
  color: var(--bad);
  margin-top: var(--space-2);
  min-height: 1rem;
}
.err:empty {
  min-height: 0;
  margin-top: 0;
}

.form__note {
  font-size: var(--text-xs);
  color: var(--text-faint);
  text-align: center;
}
.form__ok {
  font-size: var(--text-sm);
  color: var(--good);
  font-weight: 600;
  border: 1px solid color-mix(in srgb, var(--good) 40%, transparent);
  background: color-mix(in srgb, var(--good) 10%, transparent);
  border-radius: var(--radius-md);
  padding: var(--space-4);
}

/* ---------- FOOTER ---------- */
.ftr {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding-block: var(--space-16) var(--space-10);
}
.ftr__in {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-10);
  align-items: start;
}
@media (max-width: 760px) {
  .ftr__in {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
}
.ftr__brand {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}
.ftr__brand .brand__mark {
  width: 2.25rem;
  height: 2.25rem;
}
.ftr__brand p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.75;
}
.ftr__brand strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-base);
  color: var(--text);
  letter-spacing: -0.01em;
}
.ftr__link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}
.ftr__link:hover {
  text-decoration: underline;
}
.ftr__nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
@media (max-width: 760px) {
  .ftr__nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--space-5);
  }
}
.ftr__nav a {
  font-size: var(--text-sm);
  color: var(--text-muted);
  text-decoration: none;
}
.ftr__nav a:hover {
  color: var(--accent);
}
.ftr__legal {
  grid-column: 1 / -1;
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--border);
  font-size: var(--text-xs);
  color: var(--text-faint);
}

/* ---------- MOTION ---------- */
.reveal {
  opacity: 0;
  transform: translateY(14px);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
  transition:
    opacity 700ms var(--ease),
    transform 700ms var(--ease);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .hdr,
  .hero__bg,
  .hero__scrim,
  .sec__bg,
  .sec__scrim,
  .icon-btn,
  .btn {
    display: none !important;
  }
  body {
    background: #fff;
    color: #000;
  }
}
