/* ==========================================================================
   7AM Corp Oy — site stylesheet
   One file, system fonts, no external requests of any kind.
   Works in both the light and the dark theme (prefers-color-scheme).
   ========================================================================== */

:root {
  color-scheme: light dark;

  /* Light theme */
  --bg: #ffffff;
  --surface: #F3F5F7;
  --surface-2: #E8ECF0;
  --border: #DCE1E6;
  --border-strong: #C4CCD4;
  --ink: #131A21;
  --text: #39434C;
  --muted: #6A757F;

  --brand: #135E63;
  --brand-strong: #0C4448;
  --brand-soft: rgba(19, 94, 99, .09);
  --on-brand: #ffffff;

  --accent: #A85B10;
  --accent-soft: rgba(168, 91, 16, .10);

  --hero-1: #10171A;
  --hero-2: #14484D;
  --hero-line: rgba(255, 255, 255, .10);

  --shadow-sm: 0 1px 2px rgba(19, 26, 33, .07);
  --shadow: 0 6px 20px rgba(19, 26, 33, .11);
  --ring: 0 0 0 3px rgba(19, 94, 99, .30);

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

  --container: 1120px;
  --radius: 8px;
  --radius-sm: 6px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0F1317;
    --surface: #161C22;
    --surface-2: #1E262E;
    --border: #29323A;
    --border-strong: #38434D;
    --ink: #E8EDF2;
    --text: #B5C0C9;
    --muted: #85919B;

    --brand: #6FC0C5;
    --brand-strong: #90D3D7;
    --brand-soft: rgba(111, 192, 197, .13);
    --on-brand: #06272A;

    --accent: #E8A055;
    --accent-soft: rgba(232, 160, 85, .14);

    --hero-1: #090F11;
    --hero-2: #103A3F;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, .45);
    --shadow: 0 6px 20px rgba(0, 0, 0, .50);
    --ring: 0 0 0 3px rgba(111, 192, 197, .35);
  }
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  color: var(--ink);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.015em;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(1.9rem, 4.4vw, 2.8rem); }
h2 { font-size: clamp(1.45rem, 3vw, 2rem); }
h3 { font-size: 1.18rem; }
h4 { font-size: 1rem; }

p { margin: 0 0 1rem; }
ul, ol { margin: 0 0 1rem; padding-left: 1.2rem; }
li { margin-bottom: .3rem; }
strong { color: var(--ink); }
small { font-size: .86rem; }
hr { border: 0; border-top: 1px solid var(--border); margin: 2.5rem 0; }
address { font-style: normal; }

code, .mono { font-family: var(--mono); font-size: .92em; }

:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 4px; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--brand);
  color: var(--on-brand);
  padding: .6rem 1rem;
  z-index: 100;
}
.skip-link:focus { left: 0; }

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

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

.section { padding: clamp(2.75rem, 6vw, 4.75rem) 0; }
.section--tight { padding-block: clamp(1.75rem, 3.5vw, 2.75rem); }
.section--alt { background: var(--surface); }

.section-head { max-width: 720px; margin-bottom: 2.25rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p:last-child { margin-bottom: 0; }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .65rem;
}
.lead { font-size: 1.1rem; color: var(--muted); }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }

.grid { display: grid; gap: 1.4rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-sidebar { grid-template-columns: 1.6fr 1fr; gap: 2.5rem; align-items: start; }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-sidebar { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .68rem 1.2rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font: inherit;
  font-weight: 600;
  font-size: .96rem;
  line-height: 1.2;
  cursor: pointer;
  text-decoration: none;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--brand); color: var(--on-brand); }
.btn-primary:hover { background: var(--brand-strong); color: var(--on-brand); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--border-strong); }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); }
.btn-lg { padding: .9rem 1.6rem; font-size: 1.02rem; }
.btn-block { width: 100%; }
.on-dark .btn-ghost { color: #ffffff; border-color: rgba(255, 255, 255, .38); }
.on-dark .btn-ghost:hover { border-color: #ffffff; color: #ffffff; }
.on-dark .btn-primary { background: #ffffff; color: #0E3A3E; }
.on-dark .btn-primary:hover { background: #E8ECF0; color: #0E3A3E; }

/* --------------------------------------------------------------------------
   Header and navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-height: 66px;
}
.brand { display: inline-flex; align-items: center; margin-right: auto; }
.brand img { height: 30px; width: auto; }
.brand:hover { text-decoration: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: var(--bg);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--ink);
}

.site-nav { display: flex; align-items: center; gap: 1.5rem; }
.site-nav ul {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav li { margin: 0; }
.site-nav a {
  position: relative;
  display: inline-block;
  padding: .3rem 0;
  color: var(--text);
  font-size: .94rem;
  font-weight: 500;
}
.site-nav a:hover { color: var(--brand); text-decoration: none; }
.site-nav a.is-active { color: var(--ink); font-weight: 600; }
.site-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--accent);
}

@media (max-width: 980px) {
  .nav-toggle { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 66px;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: .25rem 20px 1.25rem;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
  .site-nav li { border-bottom: 1px solid var(--border); }
  .site-nav a { display: block; padding: .8rem .2rem; }
  .site-nav a.is-active::after { display: none; }
  .site-nav .nav-cta { margin-top: 1rem; }
  .site-nav .btn { width: 100%; }
}

/* --------------------------------------------------------------------------
   Hero and page heading band
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, var(--hero-1) 0%, var(--hero-2) 100%);
  color: rgba(255, 255, 255, .88);
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}
.hero-art { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero .container { position: relative; z-index: 1; }
.hero-inner { max-width: 660px; }
.hero h1 { color: #ffffff; }
.hero .eyebrow { color: #F2B476; }
.hero-sub {
  font-size: clamp(1.02rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, .82);
  margin-bottom: 1.9rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }

.page-hero {
  background: linear-gradient(140deg, var(--hero-1) 0%, var(--hero-2) 100%);
  color: rgba(255, 255, 255, .84);
  padding: clamp(2.25rem, 5vw, 3.75rem) 0;
}
.page-hero h1 { color: #ffffff; }
.page-hero .eyebrow { color: #F2B476; }
.page-hero p { max-width: 640px; margin-bottom: 0; color: rgba(255, 255, 255, .84); }

.breadcrumb { font-size: .85rem; margin-bottom: 1.1rem; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: .4rem; list-style: none; margin: 0; padding: 0; }
.breadcrumb li { margin: 0; color: rgba(255, 255, 255, .66); }
.breadcrumb li::after { content: "/"; margin-left: .4rem; color: rgba(255, 255, 255, .38); }
.breadcrumb li:last-child::after { content: ""; }
.breadcrumb a { color: rgba(255, 255, 255, .78); }

/* --------------------------------------------------------------------------
   Key-figure band
   -------------------------------------------------------------------------- */
.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.fact-num {
  font-size: clamp(1.7rem, 3.4vw, 2.3rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--brand);
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}
.fact-label { color: var(--muted); font-size: .93rem; }
@media (max-width: 620px) { .facts { grid-template-columns: repeat(2, 1fr); } }

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */
.card {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.section--alt .card { background: var(--bg); }
.card h3 { margin-bottom: .45rem; }
.card p { color: var(--muted); }
.card p:last-child { margin-bottom: 0; }
.card .card-more { margin-top: auto; padding-top: .75rem; font-weight: 600; color: var(--brand); }
.card--link { transition: border-color .15s ease, box-shadow .15s ease; }
.card--link:hover { border-color: var(--brand); box-shadow: var(--shadow); text-decoration: none; }

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  border-radius: var(--radius-sm);
  background: var(--brand-soft);
  color: var(--brand);
}
.icon svg {
  width: 24px; height: 24px;
  fill: none; stroke: currentColor; stroke-width: 1.7;
  stroke-linecap: round; stroke-linejoin: round;
}

.badge {
  display: inline-block;
  padding: .22rem .6rem;
  border-radius: 3px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.badge-brand { background: var(--brand-soft); color: var(--brand); }

.check-list { list-style: none; padding: 0; margin: 1rem 0 0; }
.check-list li {
  position: relative;
  padding: .4rem 0 .4rem 1.6rem;
  border-top: 1px solid var(--border);
  color: var(--text);
  margin: 0;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: .1rem; top: .85rem;
  width: 10px; height: 6px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

/* --------------------------------------------------------------------------
   How a job runs
   -------------------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.4rem; }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  margin-bottom: .9rem;
  border-radius: var(--radius-sm);
  background: var(--brand);
  color: var(--on-brand);
  font-weight: 700;
}
.step h3 { font-size: 1.05rem; }
.step p { color: var(--muted); margin-bottom: 0; }
@media (max-width: 1000px) { .steps { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .steps { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   Tables
   -------------------------------------------------------------------------- */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
}
.table { width: 100%; min-width: 560px; border-collapse: collapse; font-size: .96rem; }
.table caption {
  caption-side: top;
  text-align: left;
  padding: .9rem 1rem .3rem;
  color: var(--muted);
  font-size: .88rem;
}
.table th, .table td {
  text-align: left;
  padding: .75rem 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.table thead th { background: var(--surface); color: var(--ink); font-weight: 700; }
.table tbody tr:last-child td { border-bottom: 0; }
.table td.num, .table th.num { text-align: right; white-space: nowrap; font-variant-numeric: tabular-nums; }
.table .sub { display: block; color: var(--muted); font-size: .86rem; }

/* --------------------------------------------------------------------------
   Equipment and technical detail
   -------------------------------------------------------------------------- */
.spec-list { margin: 0; }
.spec-list div {
  display: grid;
  grid-template-columns: 12.5rem 1fr;
  gap: .4rem 1rem;
  padding: .55rem 0;
  border-top: 1px solid var(--border);
}
.spec-list div:first-child { border-top: 0; }
.spec-list dt { font-weight: 600; color: var(--ink); font-size: .93rem; }
.spec-list dd { margin: 0; color: var(--text); }
@media (max-width: 560px) { .spec-list div { grid-template-columns: 1fr; gap: .1rem; } }

.machine {
  border: 1px solid var(--border);
  border-left: 3px solid var(--brand);
  border-radius: var(--radius-sm);
  background: var(--bg);
  padding: 1.15rem 1.25rem;
}
.machine h3 { font-size: 1.05rem; margin-bottom: .25rem; }
.machine p { margin-bottom: .4rem; color: var(--muted); font-size: .95rem; }
.machine ul { list-style: none; padding: 0; margin: 0; font-size: .92rem; color: var(--text); }
.machine li { margin: 0; padding: .12rem 0; }
.machine li span { color: var(--muted); }

/* --------------------------------------------------------------------------
   Articles and text pages
   -------------------------------------------------------------------------- */
.prose { max-width: 720px; }
.prose h2 { margin-top: 2.25rem; }
.prose h3 { margin-top: 1.6rem; }
.prose ul, .prose ol { margin-bottom: 1.25rem; }
.prose blockquote {
  margin: 1.6rem 0;
  padding: .3rem 0 .3rem 1.3rem;
  border-left: 3px solid var(--accent);
  color: var(--ink);
  font-size: 1.08rem;
}
.prose a { text-decoration: underline; text-underline-offset: 2px; }
.prose dl { margin: 0 0 1.25rem; }
.prose dt { font-weight: 700; color: var(--ink); margin-top: .9rem; }
.prose dd { margin: .2rem 0 0; }

.post-meta { color: var(--muted); font-size: .9rem; }
.post-card h3 { margin: .7rem 0 .45rem; font-size: 1.15rem; }
.post-card h3 a { color: var(--ink); }
.post-card h3 a:hover { color: var(--brand); text-decoration: none; }

.legal-doc { max-width: 780px; }
.legal-doc h2 { font-size: 1.25rem; margin-top: 2rem; }
.legal-doc ol { padding-left: 1.4rem; }

/* --------------------------------------------------------------------------
   Vacancies
   -------------------------------------------------------------------------- */
.vacancy {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  background: var(--bg);
  margin-bottom: 1.4rem;
}
.vacancy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.4rem;
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: .92rem;
}
.vacancy-meta li { margin: 0; }
.vacancy-meta strong { color: var(--ink); }

/* --------------------------------------------------------------------------
   People
   -------------------------------------------------------------------------- */
.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.member { display: flex; gap: 1rem; align-items: flex-start; }
.avatar {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  background: var(--brand);
  color: var(--on-brand);
  font-weight: 700;
  letter-spacing: .02em;
}
.avatar-accent { background: var(--accent); color: #ffffff; }
.member h3 { font-size: 1.05rem; margin-bottom: .1rem; }
.member .role { color: var(--accent); font-weight: 600; font-size: .88rem; }
.member p { color: var(--muted); font-size: .94rem; margin: .35rem 0 0; }
.member .contact-line { font-size: .9rem; margin-top: .3rem; }
@media (max-width: 900px) { .team { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .team { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   Forms and notices
   -------------------------------------------------------------------------- */
.field { margin-bottom: 1.1rem; }
.field label { display: block; margin-bottom: .35rem; font-weight: 600; font-size: .93rem; color: var(--ink); }
.field .hint { display: block; margin-top: .3rem; color: var(--muted); font-size: .85rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

input[type="text"], input[type="email"], input[type="tel"], select, textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: var(--bg);
  padding: .65rem .8rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--brand); box-shadow: var(--ring); }
textarea { min-height: 140px; resize: vertical; }

.notice {
  padding: 1rem 1.15rem;
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  background: var(--surface);
}
.notice p:last-child { margin-bottom: 0; }
.notice-ok { border-left-color: var(--brand); background: var(--brand-soft); }
.form-result { margin-top: 1.1rem; }

/* --------------------------------------------------------------------------
   Call-to-action band and info box
   -------------------------------------------------------------------------- */
.cta-band {
  padding: clamp(2rem, 4.5vw, 3.25rem);
  border-radius: var(--radius);
  background: linear-gradient(140deg, var(--hero-1) 0%, var(--hero-2) 100%);
  color: rgba(255, 255, 255, .85);
  text-align: center;
}
.cta-band h2 { color: #ffffff; }
.cta-band p { max-width: 560px; margin: 0 auto 1.6rem; color: rgba(255, 255, 255, .85); }

.info-box {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 1.4rem;
}
.info-box + .info-box { margin-top: 1.4rem; }
.info-box h3 { font-size: 1.02rem; }
.info-box p:last-child, .info-box ul:last-child { margin-bottom: 0; }
.info-box dl { margin: 0; }
.info-box dt { font-weight: 600; color: var(--ink); margin-top: .6rem; }
.info-box dt:first-child { margin-top: 0; }
.info-box dd { margin: 0; color: var(--muted); }

.hours { width: 100%; border-collapse: collapse; font-size: .95rem; }
.hours th { text-align: left; font-weight: 500; color: var(--text); padding: .3rem 0; }
.hours td { text-align: right; padding: .3rem 0; color: var(--muted); font-variant-numeric: tabular-nums; }

.open-state {
  display: inline-block;
  margin-top: .8rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--brand);
}

/* --------------------------------------------------------------------------
   Error page
   -------------------------------------------------------------------------- */
.error-page { text-align: center; padding: clamp(3.5rem, 10vw, 7rem) 0; }
.error-code {
  font-size: clamp(3.5rem, 14vw, 7rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--brand);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.75rem;
  font-size: .93rem;
}
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.2fr; gap: 2rem; }
.footer-brand img { height: 28px; margin-bottom: 1rem; }
.footer-brand p { max-width: 34ch; color: var(--muted); }
.cert-line { font-size: .85rem; color: var(--muted); }
.footer-head {
  font-size: .78rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: .9rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .45rem; }
.site-footer a { color: var(--text); }
.site-footer a:hover { color: var(--brand); }
.site-footer address { color: var(--muted); line-height: 1.75; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: .5rem 1.5rem;
  margin-top: 2.25rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: .85rem;
}
.footer-bottom p { margin: 0; }
.footer-bottom .legal-links { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.footer-bottom .legal-links li { margin: 0; }
.footer-bottom a { color: var(--muted); }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   Print
   -------------------------------------------------------------------------- */
@media print {
  .site-header, .site-footer, .hero-art, .nav-toggle, .cta-band { display: none !important; }
  body { font-size: 12pt; color: #000; background: #fff; }
  a { color: #000; text-decoration: none; }
}
