/* ==========================================================================
   Citadel Automation Solutions - citadelautomationsolutions.com
   Muted industrial palette: ink, steel, brand blue. Mobile-first.
   ========================================================================== */

:root {
  --ink-900: #070c14;
  --ink-850: #0a111b;
  --ink-800: #0e1621;
  --ink-700: #16202d;

  --paper: #e8eef5;
  --steel-100: #c7d2de;
  --steel-300: #a0adbc;
  --steel-500: #79879a;

  --line: rgba(232, 238, 245, 0.11);
  --line-strong: rgba(232, 238, 245, 0.22);
  --brand-blue: #3f8fd8;
  --brand-navy: #1b5486;
  --accent: #4a9ae8;
  --accent-hover: #6bb0f2;
  --on-accent: #06121f;

  --font-sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;

  --wrap: 1120px;
  --gutter: clamp(20px, 5vw, 48px);
  --radius: 2px;

  --step-0: clamp(1rem, 0.97rem + 0.15vw, 1.06rem);
  --step-1: clamp(1.08rem, 1rem + 0.4vw, 1.28rem);
  --step-2: clamp(1.35rem, 1.2rem + 0.7vw, 1.7rem);
  --step-3: clamp(1.85rem, 1.5rem + 1.7vw, 2.7rem);
  --step-hero: clamp(2.1rem, 1.45rem + 3.2vw, 3.7rem);

  --surface: var(--ink-900);
}

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

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

body {
  margin: 0;
  background: var(--ink-900);
  color: var(--paper);
  font-family: var(--font-sans);
  font-size: var(--step-0);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 650;
  text-wrap: balance;
}

p,
ul,
ol,
dl,
dd {
  margin: 0;
}

ul,
ol {
  padding: 0;
}

a {
  color: inherit;
}

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

button {
  font: inherit;
}

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

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

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

.wrap--narrow {
  max-width: 780px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--accent);
  color: var(--on-accent);
  padding: 0.6rem 1rem;
  font-weight: 600;
  text-decoration: none;
}

.skip-link:focus {
  left: var(--gutter);
  top: 8px;
}

/* ---------------------------------------------------------------- header -- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 12, 20, 0.88);
  backdrop-filter: blur(10px);
}

.site-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 66px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  padding-block: 10px;
}

.wordmark {
  width: 91px;
  height: 26px;
}

.wordmark--footer {
  width: 112px;
  height: 32px;
}

.wordmark__face {
  fill: var(--brand-blue);
}

.wordmark__shade {
  fill: var(--brand-navy);
}

.wordmark__text {
  fill: var(--paper);
  font-family: var(--font-sans);
  font-weight: 650;
}

.wordmark__dot {
  fill: var(--accent);
}

.site-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px clamp(14px, 2.4vw, 30px);
  list-style: none;
}

.site-nav__link {
  display: block;
  padding-block: 6px;
  color: var(--steel-100);
  font-size: 0.94rem;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}

.site-nav__link:hover {
  color: var(--paper);
}

.site-nav__link[aria-current="page"] {
  color: var(--paper);
  border-bottom-color: var(--accent);
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  color: var(--paper);
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--accent);
}

.nav-toggle__bars {
  position: relative;
}

.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle__bars::before {
  top: -5px;
}

.nav-toggle__bars::after {
  top: 5px;
}

@media (max-width: 719px) {
  .js .nav-toggle {
    display: inline-flex;
  }

  .js .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    padding: 0.5rem var(--gutter) 1.5rem;
    background: var(--ink-850);
    border-bottom: 1px solid var(--line);
  }

  .js .site-nav[data-open="true"] {
    display: block;
  }

  .js .site-nav__list {
    flex-direction: column;
    gap: 0;
  }

  .js .site-nav__link {
    padding: 15px 0;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--line);
  }

  .js .site-nav__link[aria-current="page"] {
    border-bottom-color: var(--line);
    color: var(--accent);
  }
}
/* ------------------------------------------------------------------ hero -- */

.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(52px, 9vw, 104px) clamp(30px, 5vw, 48px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, var(--line) 1px, transparent 1px);
  background-size: 92px 100%;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), transparent 82%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), transparent 82%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(58% 46% at 10% -8%, rgba(74, 154, 232, 0.16), transparent 70%);
  pointer-events: none;
}

.hero > .wrap {
  position: relative;
}

.hero__inner {
  max-width: 74ch;
}

.hero__headline {
  font-size: var(--step-hero);
  line-height: 1.03;
  letter-spacing: -0.032em;
  max-width: 24ch;
}

.hero__lede {
  margin-top: 1.2rem;
  max-width: 64ch;
  color: var(--steel-300);
  font-size: var(--step-1);
  line-height: 1.55;
}

.hero__action {
  margin-top: clamp(24px, 3.5vw, 34px);
}

/* ------------------------------------------------------- buttons / links -- */

.button {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.35rem;
  background: var(--accent);
  color: var(--on-accent);
  font-size: 1rem;
  font-weight: 650;
  letter-spacing: 0.005em;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: background-color 0.15s ease, transform 0.15s ease;
}

.button:hover {
  background: var(--accent-hover);
}

.button:active {
  transform: translateY(1px);
}

.button--large {
  padding: 0.95rem 1.6rem;
  font-size: 1.05rem;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 2px;
  color: var(--paper);
  font-size: 0.95rem;
  text-decoration: none;
  border-bottom: 1px solid var(--line-strong);
}

.link-arrow::after {
  content: "\2192";
  color: var(--accent);
  transition: transform 0.15s ease;
}

.link-arrow:hover {
  border-bottom-color: var(--accent);
}

.link-arrow:hover::after {
  transform: translateX(3px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  color: var(--steel-500);
  font-family: var(--font-mono);
  font-size: 0.71rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow__dot {
  flex: none;
  width: 6px;
  height: 6px;
  background: var(--accent);
}

/* ------------------------------------------------------------- fact rail -- */

.fact-rail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  margin-top: clamp(36px, 6vw, 60px);
  background: var(--line);
  border: 1px solid var(--line);
}

.fact {
  padding: clamp(16px, 2.2vw, 22px);
  background: var(--surface);
}

.fact__value {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}

.fact__label {
  margin-top: 0.35rem;
  color: var(--steel-500);
  font-size: 0.88rem;
  line-height: 1.5;
}

@media (min-width: 700px) {
  .fact-rail {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* -------------------------------------------------------------- sections -- */

.site-main {
  display: block;
}

.section {
  padding-block: clamp(46px, 8vw, 92px);
  border-top: 1px solid var(--line);
}

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

.section-head {
  max-width: 66ch;
  margin-bottom: clamp(26px, 4vw, 44px);
}

.section-head__title {
  font-size: var(--step-3);
  line-height: 1.08;
  letter-spacing: -0.026em;
}

.section-head__intro {
  margin-top: 0.85rem;
  color: var(--steel-300);
  font-size: var(--step-1);
}

.section-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 26px;
  margin-top: clamp(24px, 3.5vw, 36px);
}

/* ------------------------------------------------------------ page tail -- */

.page-tail {
  padding-block: 0 clamp(48px, 7vw, 84px);
}

.page-tail__action {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 26px;
}

.page-tail__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: clamp(30px, 4vw, 44px) 0 0;
  padding: 0;
  list-style: none;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}

.page-tail__links a {
  color: var(--steel-300);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.page-tail__links a:hover {
  color: var(--paper);
  border-bottom-color: var(--accent);
}

/* ------------------------------------------------------------ page head -- */

.page-head {
  padding-block: clamp(44px, 7vw, 84px) clamp(30px, 5vw, 54px);
}

.page-head__inner {
  max-width: 70ch;
}

.page-head__title {
  font-size: var(--step-hero);
  line-height: 1.04;
  letter-spacing: -0.032em;
}

.page-head__lede {
  margin-top: 1rem;
  color: var(--steel-300);
  font-size: var(--step-1);
  max-width: 62ch;
}

.page-head__note {
  margin-top: 1.5rem;
  max-width: 62ch;
  padding: 0.8rem 1rem;
  background: var(--ink-850);
  border-left: 2px solid var(--accent);
  color: var(--steel-300);
  font-size: 0.9rem;
}

/* ------------------------------------------------------------- services -- */

.tiles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  margin: 0;
  background: var(--line);
  border: 1px solid var(--line);
  list-style: none;
}

.tile {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: clamp(20px, 2.6vw, 28px);
  background: var(--surface);
  transition: background-color 0.15s ease;
}

.tile:hover {
  background: var(--ink-800);
}

.tile__index {
  color: var(--steel-500);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

.tile__title {
  font-size: var(--step-1);
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.tile__link {
  text-decoration: none;
}

.tile__link:hover {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.tile__body {
  color: var(--steel-300);
  font-size: 0.95rem;
}

@media (min-width: 640px) {
  .tiles {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .tiles {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ------------------------------------------------- sections: service list */

.service-list {
  border-top: 1px solid var(--line);
}

.service {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(10px, 2vw, 24px);
  padding-block: clamp(26px, 4vw, 46px);
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 90px;
}

@media (min-width: 860px) {
  .service {
    grid-template-columns: 84px minmax(0, 1fr);
  }
}

.service__index {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
}

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

.service__summary {
  margin: 0.7rem 0 1.2rem;
  max-width: 62ch;
  color: var(--steel-300);
  font-size: var(--step-1);
}

.note {
  margin-top: 1.4rem;
  padding: 0.85rem 1rem;
  max-width: 70ch;
  background: var(--ink-850);
  border-left: 2px solid var(--accent);
  color: var(--steel-300);
  font-size: 0.9rem;
}

/* ---------------------------------------------------------- capabilities -- */

.capability-groups {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 3.5vw, 42px);
}

@media (min-width: 760px) {
  .capability-groups {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1040px) {
  .capability-groups {
    grid-template-columns: repeat(3, 1fr);
  }
}

.capability__name {
  margin-bottom: 0.9rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
  font-weight: 600;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.chip {
  padding: 5px 9px;
  background: var(--ink-800);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--steel-100);
  font-family: var(--font-mono);
  font-size: 0.78rem;
}

.chips--tight .chip {
  padding: 4px 7px;
  font-size: 0.74rem;
}

.chips--muted .chip {
  background: transparent;
  color: var(--steel-500);
}

/* -------------------------------------------------------------- checklists */

.checklist {
  display: grid;
  gap: 0.55rem;
  list-style: none;
}

.checklist li {
  position: relative;
  padding-left: 1.3rem;
  color: var(--steel-100);
  font-size: 0.95rem;
  line-height: 1.5;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 9px;
  height: 1px;
  background: var(--accent);
}

.checklist--tight li {
  color: var(--steel-300);
  font-size: 0.9rem;
}

/* ----------------------------------------------------------- work cards -- */

.work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 2vw, 22px);
  list-style: none;
}

@media (min-width: 720px) {
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.work-card {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: clamp(20px, 2.4vw, 28px);
  background: var(--ink-800);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.work-card__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 16px;
  color: var(--steel-500);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.work-card__context {
  color: var(--accent);
}

.work-card__title {
  font-size: var(--step-1);
  line-height: 1.22;
  letter-spacing: -0.015em;
}

.work-card__summary {
  color: var(--steel-300);
  font-size: 0.95rem;
}

.work-card__kind {
  margin-top: auto;
  padding-top: 0.4rem;
  color: var(--steel-500);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ----------------------------------------------------------------- about -- */

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 64px);
}

@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: minmax(0, 1.55fr) minmax(270px, 0.85fr);
  }
}

.prose {
  max-width: 68ch;
}

.prose h2 {
  margin-top: 2.2rem;
  font-size: var(--step-2);
  letter-spacing: -0.02em;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p {
  margin-bottom: 1.15rem;
  color: var(--steel-100);
}

.prose ul,
.prose ol {
  margin-bottom: 1.15rem;
  padding-left: 1.15rem;
  color: var(--steel-100);
}

.prose li {
  margin-bottom: 0.4rem;
}

.prose a {
  color: var(--accent);
  text-underline-offset: 3px;
}

.prose code {
  padding: 0.1em 0.35em;
  background: var(--ink-800);
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 0.9em;
}

.credentials {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  list-style: none;
}

.credential {
  padding: 16px 18px;
  background: var(--surface);
}

.credential__title {
  font-size: 0.98rem;
  font-weight: 600;
}

.credential__meta {
  margin-top: 0.3rem;
  color: var(--steel-500);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.credential__sep {
  margin: 0 0.5em;
}

.timeline {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  list-style: none;
}

.timeline__item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.4rem;
  padding: clamp(18px, 2.4vw, 26px);
  background: var(--ink-800);
}

@media (min-width: 760px) {
  .timeline__item {
    grid-template-columns: 150px minmax(0, 1fr);
    gap: clamp(16px, 3vw, 36px);
  }
}

.timeline__period {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
}

.timeline__role {
  font-size: 1.08rem;
  letter-spacing: -0.01em;
}

.timeline__context {
  margin-top: 0.2rem;
  color: var(--steel-500);
  font-size: 0.85rem;
}

.timeline__line {
  margin-top: 0.55rem;
  max-width: 72ch;
  color: var(--steel-300);
  font-size: 0.95rem;
}

/* ------------------------------------------------------------ industries -- */

.industry-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(14px, 1.8vw, 20px);
  list-style: none;
}

@media (min-width: 760px) {
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1040px) {
  .industry-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.industry {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: clamp(18px, 2.2vw, 24px);
  background: var(--ink-800);
  border: 1px solid var(--line);
}

.industry__name {
  font-size: 1.02rem;
  letter-spacing: -0.01em;
}

.industry__scope {
  color: var(--steel-300);
  font-size: 0.92rem;
}

.industry__proof {
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
  color: var(--steel-500);
  font-size: 0.85rem;
}

/* --------------------------------------------------------------- contact -- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 56px);
}

@media (min-width: 880px) {
  .contact-grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(250px, 0.75fr);
  }
}

.contact-grid__label {
  margin-bottom: 1rem;
  color: var(--steel-500);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-grid__email {
  margin-bottom: clamp(28px, 4vw, 44px);
}

/* The published address is long (info@citadelautomationsolutions.com), so the button has to
   be able to break it instead of forcing the grid wider than the viewport. */
.contact-grid__email .button--large {
  display: inline-block;
  max-width: 100%;
  font-size: clamp(0.88rem, 0.72rem + 0.9vw, 1.05rem);
  overflow-wrap: anywhere;
  text-align: center;
}

.contact-grid__primary .checklist {
  max-width: 56ch;
}

.details {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.detail {
  padding: 14px 16px;
  background: var(--surface);
}

.detail dt {
  color: var(--steel-500);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.detail dd {
  margin-top: 0.35rem;
  font-size: 0.98rem;
}

.contact-form {
  display: grid;
  gap: 1.1rem;
  max-width: 52ch;
  margin-top: clamp(28px, 4vw, 44px);
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  color: var(--steel-500);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.field input,
.field textarea {
  padding: 0.7rem 0.8rem;
  background: var(--ink-800);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--paper);
  font: inherit;
}

.field--action {
  display: block;
}

/* ------------------------------------------------------------- CTA band -- */

.cta-band {
  background: var(--ink-800);
  border-top: 1px solid var(--line);
}

.cta-band__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 32px);
  padding-block: clamp(44px, 7vw, 80px);
}

@media (min-width: 820px) {
  .cta-band__inner {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.cta-band__title {
  max-width: 26ch;
  font-size: var(--step-3);
  line-height: 1.1;
  letter-spacing: -0.026em;
}

.cta-band__body {
  margin-top: 0.9rem;
  max-width: 54ch;
  color: var(--steel-300);
  font-size: var(--step-1);
}

.cta-band__action {
  flex: none;
}

/* ---------------------------------------------------------------- footer -- */

.site-footer {
  padding-block: clamp(32px, 5vw, 56px) clamp(24px, 4vw, 34px);
  border-top: 1px solid var(--line);
}

.site-footer__top {
  display: flex;
  flex-direction: column;
  gap: clamp(22px, 3vw, 40px);
}

@media (min-width: 760px) {
  .site-footer__top {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}

.site-footer__line {
  margin: 1rem 0 0.35rem;
  max-width: 44ch;
  color: var(--steel-300);
  font-size: 0.95rem;
}

.site-footer__domain {
  color: var(--steel-500);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  list-style: none;
}

.site-footer__links a {
  color: var(--steel-100);
  font-size: 0.92rem;
  text-decoration: none;
}

.site-footer__links a:hover {
  color: var(--accent);
}

.site-footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: clamp(24px, 4vw, 40px);
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--steel-500);
  font-size: 0.82rem;
}

@media (min-width: 760px) {
  .site-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.site-footer__privacy a {
  color: var(--steel-300);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

