/* ==========================================================================
   EasyTract styles
   Retheme by editing the custom properties in :root.
   Dark sections (hero, outcomes, contact panel, footer) are the tunnel;
   light sections are daylight. Amber is reserved for "flagged".
   ========================================================================== */

:root {
  /* Color */
  --color-night: #050d1f;
  --color-night-2: #0a1630;
  --color-night-line: rgba(124, 186, 255, 0.16);
  --color-bg: #f2f5fa;
  --color-surface: #ffffff;
  --color-ink: #0a1428;
  --color-ink-muted: #4f5a70;
  --color-line: #dde3ee;
  --color-accent: #0055e7;
  --color-accent-hover: #1a6bff;
  --color-signal: #7cbaff;
  --color-flag: #ffb23f;
  --color-on-accent: #ffffff;
  --color-on-dark: #f3f7ff;
  --color-on-dark-muted: #9fb0cf;
  --color-focus: #0055e7;
  --color-focus-on-dark: #7cbaff;

  /* Type */
  --font-sans: "Archivo", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --step--1: 0.875rem;
  --step-0: clamp(1rem, 0.96rem + 0.2vw, 1.125rem);
  --step-1: clamp(1.125rem, 1.05rem + 0.4vw, 1.375rem);
  --step-2: clamp(1.375rem, 1.2rem + 0.8vw, 1.875rem);
  --step-3: clamp(2rem, 1.5rem + 2.2vw, 3.5rem);
  --step-4: clamp(2.75rem, 1.6rem + 5vw, 6rem);
  --leading-tight: 0.98;
  --leading-snug: 1.2;
  --leading-body: 1.6;

  /* Space */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-section: clamp(4.5rem, 3rem + 7vw, 9rem);
  --gutter: clamp(1rem, 0.5rem + 2.5vw, 2.5rem);

  /* Layout and shape: radius grows with the size of the thing it rounds. */
  --container: 76rem;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 28px;
  --header-height: 4.5rem;
  --logo-height: 3.1rem;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* Reset ------------------------------------------------------------------ */
*,
*::before,
*::after { box-sizing: border-box; }

body,
h1, h2, h3, p, ul, ol { margin: 0; }

ul, ol { padding: 0; list-style: none; }

img, svg { display: block; max-width: 100%; }

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

/* Base ------------------------------------------------------------------- */
body {
  font-family: var(--font-sans);
  font-size: var(--step-0);
  line-height: var(--leading-body);
  color: var(--color-ink);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-wrap: break-word;
}

h1, h2, h3 {
  line-height: var(--leading-snug);
  font-weight: 800;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

p { text-wrap: pretty; }

a { color: inherit; }

::selection { background: var(--color-signal); color: var(--color-night); }

:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 3px;
  border-radius: 4px;
}

[id] { scroll-margin-top: var(--header-height); }

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

/* Any dark surface flips the tokens its children read. */
.hero,
.section--dark,
.contact,
.site-header,
.site-footer {
  --color-ink: var(--color-on-dark);
  --color-ink-muted: var(--color-on-dark-muted);
  --color-line: var(--color-night-line);
  --color-focus: var(--color-focus-on-dark);
  color: var(--color-ink);
}

/* Skip link -------------------------------------------------------------- */
.skip-link {
  position: absolute;
  top: var(--space-2);
  left: var(--space-2);
  z-index: 100;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-sm);
  background: var(--color-accent);
  color: var(--color-on-accent);
  font-weight: 700;
  transform: translateY(-200%);
}

.skip-link:focus { transform: none; }

/* Buttons ---------------------------------------------------------------- */
.button {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  min-height: 3.25rem;
  padding: var(--space-3) var(--space-3) var(--space-3) var(--space-6);
  border: 1px solid var(--color-accent);
  border-radius: 999px;
  background: var(--color-accent);
  color: var(--color-on-accent);
  font-size: var(--step-0);
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  box-shadow: 0 0 0 0 rgba(0, 85, 231, 0), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: background-color 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.3s var(--ease);
}

.button:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  box-shadow: 0 10px 36px -8px rgba(26, 107, 255, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

/* The arrow sits in its own disc so it reads as the button's direction. */
.button__icon {
  box-sizing: content-box;
  width: 1.1em;
  height: 1.1em;
  padding: 0.45em;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease);
}

.button:hover .button__icon {
  transform: translateX(3px);
  background: rgba(255, 255, 255, 0.26);
}

.button--small {
  min-height: 2.5rem;
  padding: var(--space-2) var(--space-5);
  font-size: var(--step--1);
}

.button--large {
  min-height: 4rem;
  padding-left: var(--space-7);
  font-size: var(--step-1);
}

.button--outline {
  background: transparent;
  border-color: var(--color-line);
  color: var(--color-ink);
  box-shadow: none;
}

.button--outline:hover {
  background: var(--color-ink);
  border-color: var(--color-ink);
  color: var(--color-night);
  box-shadow: none;
}

/* Eyebrow label ---------------------------------------------------------- */
.eyebrow {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--color-ink-muted);
}

.eyebrow__num {
  display: inline-grid;
  place-items: center;
  min-width: 2.25rem;
  height: 1.6rem;
  padding-inline: var(--space-2);
  border: 1px solid var(--color-line);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--color-accent);
}

.hero .eyebrow,
.section--dark .eyebrow,
.contact .eyebrow { --color-accent: var(--color-signal); }

/* The hero's eyebrow is a live status, not a section number. */
.hero .eyebrow::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--color-signal);
  box-shadow: 0 0 0 4px rgba(124, 186, 255, 0.18), 0 0 14px var(--color-signal);
}

/* Header ----------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 13, 31, 0.72);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid var(--color-line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  min-height: var(--header-height);
}

.site-header__brand { display: inline-flex; flex-shrink: 0; }

.site-header__brand img {
  height: var(--logo-height);
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

/* Section links hide on small screens; the Contact button always shows. */
.site-nav__list { display: none; }

.site-nav__list a {
  position: relative;
  font-size: var(--step--1);
  font-weight: 500;
  text-decoration: none;
  color: var(--color-ink-muted);
  transition: color 0.2s var(--ease);
}

.site-nav__list a::after {
  content: "";
  position: absolute;
  inset: auto 0 -6px;
  height: 2px;
  border-radius: 2px;
  background: var(--color-signal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}

.site-nav__list a:hover { color: var(--color-ink); }
.site-nav__list a:hover::after { transform: scaleX(1); }

@media (min-width: 52rem) {
  .site-nav__list {
    display: flex;
    gap: var(--space-6);
  }
}

/* Hero ------------------------------------------------------------------- */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: calc(var(--header-height) * -1);
  padding-block: calc(var(--header-height) + clamp(3rem, 2rem + 6vw, 7rem)) clamp(4rem, 3rem + 6vw, 8rem);
  background:
    radial-gradient(60rem 40rem at 78% 30%, rgba(0, 85, 231, 0.35), transparent 65%),
    radial-gradient(40rem 30rem at 0% 100%, rgba(0, 85, 231, 0.14), transparent 70%),
    var(--color-night);
}

/* Faint floor grid, fading toward the top. */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(var(--color-night-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--color-night-line) 1px, transparent 1px);
  background-size: 56px 56px;
  background-position: center top;
  opacity: 0.45;
  -webkit-mask-image: linear-gradient(to bottom, transparent 5%, #000 70%, transparent);
  mask-image: linear-gradient(to bottom, transparent 5%, #000 70%, transparent);
}

.hero__inner {
  display: grid;
  gap: var(--space-7);
  align-items: center;
}

.hero__title {
  max-width: 14ch;
  font-size: var(--step-4);
  font-stretch: 118%;
  font-weight: 800;
  line-height: var(--leading-tight);
  letter-spacing: -0.035em;
  background: linear-gradient(180deg, #ffffff 30%, #b9d3ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__lede {
  max-width: 40ch;
  margin-block: var(--space-6) var(--space-7);
  font-size: var(--step-1);
  color: var(--color-ink-muted);
}

.hero__art {
  width: 100%;
  max-width: 22rem;
  margin-inline: auto;
}

@media (min-width: 56rem) {
  .hero__inner { grid-template-columns: 1.15fr 1fr; }
  .hero__art { max-width: none; }
}

/* Hero scene ------------------------------------------------------------- */
.scene {
  width: 100%;
  max-width: 38rem;
  height: auto;
  margin-inline: auto;
  overflow: visible;
  filter: drop-shadow(0 40px 80px rgba(0, 40, 120, 0.55));
}

/* Hidden until the sweep reaches them; shown outright for reduced motion. */
.scene__scan { opacity: 0; }

@media (prefers-reduced-motion: no-preference) {
  .scene__scan { animation: scene-scan 6s var(--ease) infinite; }

  .scene__flag {
    transform-box: fill-box;
    transform-origin: center;
    animation: scene-flag 6s var(--ease) infinite;
  }

  .scene__lens { animation: scene-lens 6s ease-in-out infinite; }
}

@keyframes scene-scan {
  0%   { transform: translateY(0); opacity: 0; }
  6%   { opacity: 1; }
  42%  { transform: translateY(560px); opacity: 1; }
  48%, 100% { transform: translateY(560px); opacity: 0; }
}

@keyframes scene-flag {
  0%, 12%  { opacity: 0; transform: scale(1.25); }
  18%      { opacity: 1; transform: scale(1); }
  22%      { opacity: 0.55; }
  26%      { opacity: 1; }
  88%      { opacity: 1; transform: scale(1); }
  96%, 100% { opacity: 0; transform: scale(1.05); }
}

@keyframes scene-lens {
  0%, 100% { fill: #7cbaff; }
  15%, 85% { fill: #ffb23f; }
}

/* Sections --------------------------------------------------------------- */
.section { padding-block: var(--space-section); }

.section--alt { background: var(--color-surface); }

/* The problem section (".section--band" in the markup) sits in daylight
   right under the dark hero, so it reads as a strong statement. */
.section--band { background: var(--color-surface); border-bottom: 1px solid var(--color-line); }

.section--dark {
  position: relative;
  background:
    radial-gradient(50rem 30rem at 100% 0%, rgba(0, 85, 231, 0.28), transparent 70%),
    var(--color-night);
}

.section__head { margin-bottom: var(--space-8); }

.section__title {
  max-width: 18ch;
  font-size: var(--step-3);
  font-stretch: 112%;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.section__intro {
  max-width: 46ch;
  margin-top: var(--space-5);
  font-size: var(--step-1);
  color: var(--color-ink-muted);
}

.split {
  display: grid;
  gap: var(--space-6);
}

.prose {
  display: grid;
  gap: var(--space-5);
  max-width: 58ch;
  font-size: var(--step-1);
  color: var(--color-ink-muted);
}

.prose p:first-child {
  color: var(--color-ink);
  font-weight: 500;
}

@media (min-width: 56rem) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
    align-items: start;
  }

  .split .prose { padding-top: 3.25rem; }
}

/* Steps ------------------------------------------------------------------ */
.steps {
  position: relative;
  display: grid;
  gap: var(--space-5);
}

.step {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: var(--space-6);
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.step:hover {
  border-color: #bfd3f5;
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -24px rgba(10, 30, 80, 0.35);
}

/* The operator step is where the decision happens, so it is the lit one. */
.step--human {
  background:
    radial-gradient(24rem 16rem at 100% 0%, rgba(124, 186, 255, 0.35), transparent 70%),
    var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-on-accent);
}

.step--human:hover { border-color: var(--color-accent); }

.step__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-7);
}

.step__num {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--color-bg);
  border: 1px solid var(--color-line);
  font-size: var(--step-0);
  font-weight: 800;
  line-height: 1;
  color: var(--color-accent);
  font-variant-numeric: tabular-nums;
}

.step--human .step__num {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--color-on-accent);
}

.step__icon {
  width: 2.75rem;
  height: 2.75rem;
  fill: none;
  stroke: var(--color-accent);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step--human .step__icon { stroke: var(--color-on-accent); }

.step__title {
  margin-bottom: var(--space-3);
  font-size: var(--step-2);
  font-stretch: 106%;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.step p { color: var(--color-ink-muted); }
.step--human p { color: rgba(255, 255, 255, 0.84); }

@media (min-width: 52rem) {
  .steps { grid-template-columns: repeat(3, 1fr); }

  /* Connector running through the numbers: the steps are a sequence. */
  .steps::before {
    content: "";
    position: absolute;
    top: calc(var(--space-6) + 1.375rem);
    left: var(--space-6);
    right: var(--space-6);
    height: 1px;
    background: linear-gradient(90deg, var(--color-line), var(--color-accent));
  }
}

/* Demo animation ---------------------------------------------------------- */
.et-demo {
  --et-ink: var(--color-ink);
  --et-muted: var(--color-ink-muted);
  --et-scene: #e8eef7;
  --et-ground: #cdd7e6;
  --et-steel: #8795ad;
  --et-panel: var(--color-surface);
  --et-line: var(--color-line);
  --et-accent: var(--color-flag);   /* flag amber: highlights only, never text */
  --et-ok: #157a40;

  margin: var(--space-7) 0 0;
  font-family: inherit;
  color: var(--et-ink);
}

.et-demo__frame {
  display: grid;
  grid-template-columns: minmax(0, 1.9fr) minmax(0, 1fr);
  border: 1px solid var(--et-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--et-panel);
  box-shadow: 0 30px 60px -40px rgba(10, 30, 80, 0.35);
}

.et-demo__scene {
  display: flex;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #f4f7fc, var(--et-scene));
}

.et-demo__scene svg { display: block; width: 100%; height: auto; }

/* Scene motion */
.et-car { transform: translateX(-400px); }
.et-marks { opacity: 0; transition: opacity .35s ease; }
.et-car.is-detected .et-marks { opacity: 1; }
.et-brush { transition: transform .7s cubic-bezier(.3, .7, .2, 1); }
.et-demo.is-brush-up .et-brush { transform: translateY(-72px); }

/* Panel */
.et-panel {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-5);
  border-left: 1px solid var(--et-line);
  min-width: 0;
}

.et-panel__title { margin: 0; font-size: var(--step--1); font-weight: 600; color: var(--et-muted); }

.et-panel__thumb {
  border: 1px solid var(--et-line);
  border-radius: var(--radius-sm);
  background: var(--et-scene);
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.et-panel__thumb svg { width: 86%; height: auto; opacity: 0; transition: opacity .3s ease; }
.et-panel__thumb svg.is-shown { opacity: 1; }

.et-rows { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--space-2); }

.et-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 12px;
  border: 1px solid var(--et-line);
  border-left: 4px solid var(--et-accent);
  border-radius: var(--radius-sm);
  font-size: .9375rem;
  font-weight: 600;
  line-height: 1.2;
  transition: border-color .25s ease;
}

.et-row.is-confirmed { border-left-color: var(--et-ok); }
.et-row--empty { border-left-color: var(--et-line); font-weight: 500; color: var(--et-muted); }

.et-pill {
  flex: none;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 700;
  background: var(--et-accent);
  color: var(--et-ink);
  transition: background-color .25s ease, color .25s ease;
}

.et-row.is-confirmed .et-pill { background: var(--et-ok); color: #fff; }

.et-demo__caption { margin: var(--space-3) 2px 0; font-size: var(--step--1); color: var(--et-muted); }

@media (max-width: 720px) {
  .et-demo__frame { grid-template-columns: 1fr; border-radius: var(--radius); }
  .et-panel { border-left: 0; border-top: 1px solid var(--et-line); display: grid; grid-template-columns: 88px minmax(0, 1fr); align-items: start; padding: 14px; }
  .et-rows { min-width: 0; }
  .et-row { font-size: .875rem; padding: 9px 10px; }
  .et-panel__title { grid-column: 1 / -1; }
}

@media (prefers-reduced-motion: reduce) {
  .et-car, .et-brush, .et-marks, .et-row, .et-pill, .et-panel__thumb svg { transition: none !important; }
}

/* Outcomes --------------------------------------------------------------- */
.outcomes {
  display: grid;
  gap: var(--space-5);
}

.outcome {
  padding: var(--space-6);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(124, 186, 255, 0.06), rgba(124, 186, 255, 0));
}

.outcome__title {
  margin-bottom: var(--space-3);
  font-size: var(--step-2);
  font-stretch: 106%;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* A short signal-blue rule sits above each outcome title. */
.outcome__title::before {
  content: "";
  display: block;
  width: 2.5rem;
  height: 3px;
  margin-bottom: var(--space-6);
  border-radius: 3px;
  background: var(--color-signal);
  box-shadow: 0 0 16px var(--color-signal);
}

.outcome p { color: var(--color-ink-muted); max-width: 34ch; }

@media (min-width: 52rem) {
  .outcomes { grid-template-columns: repeat(3, 1fr); }
}

/* Team ------------------------------------------------------------------- */
.team {
  display: grid;
  gap: var(--space-5);
}

.person {
  padding: var(--space-6);
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
}

.person__name {
  font-size: var(--step-2);
  font-stretch: 106%;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.person__role {
  display: inline-block;
  margin-block: var(--space-3) var(--space-5);
  padding: var(--space-1) var(--space-3);
  border-radius: 999px;
  background: #e6efff;
  font-size: var(--step--1);
  font-weight: 700;
  color: var(--color-accent);
}

.person p:last-child { color: var(--color-ink-muted); }

.team__note {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-6);
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--color-ink-muted);
}

.team__note::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--color-accent);
}

@media (min-width: 44rem) {
  .team { grid-template-columns: repeat(2, 1fr); }
}

/* Contact ---------------------------------------------------------------- */
.section--contact {
  padding-top: 0;
  background: var(--color-bg);
}

/* The contact block is a lit panel inside the page, not a full-bleed band. */
.contact {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  gap: var(--space-7);
  padding: clamp(2rem, 1rem + 5vw, 5rem);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(40rem 28rem at 100% 100%, rgba(0, 85, 231, 0.55), transparent 70%),
    radial-gradient(30rem 20rem at 0% 0%, rgba(124, 186, 255, 0.12), transparent 70%),
    var(--color-night);
  box-shadow: 0 40px 80px -40px rgba(5, 13, 31, 0.6);
}

/* .container adds side padding; the panel keeps its own inset instead. */
.container.contact {
  width: calc(100% - var(--gutter) * 2);
  max-width: calc(var(--container) - var(--gutter) * 2);
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(var(--color-night-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--color-night-line) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.35;
  -webkit-mask-image: radial-gradient(circle at 80% 80%, #000, transparent 70%);
  mask-image: radial-gradient(circle at 80% 80%, #000, transparent 70%);
}

.contact__action {
  display: grid;
  gap: var(--space-5);
  justify-items: start;
  align-content: center;
}

.contact__addresses {
  display: grid;
  gap: var(--space-2);
  font-size: var(--step--1);
  color: var(--color-ink-muted);
}

.contact__addresses a {
  text-decoration-color: var(--color-line);
  text-underline-offset: 4px;
  transition: color 0.2s var(--ease), text-decoration-color 0.2s var(--ease);
}

.contact__addresses a:hover {
  color: var(--color-ink);
  text-decoration-color: var(--color-signal);
}

@media (min-width: 56rem) {
  .contact {
    grid-template-columns: 1.3fr 1fr;
    align-items: end;
  }
}

/* Footer ----------------------------------------------------------------- */
.site-footer {
  background: var(--color-night);
  color: var(--color-ink-muted);
  font-size: var(--step--1);
}

.site-footer__inner { padding-block: var(--space-6); }
