/* ==========================================================================
   Ferreira & Sons brand stylesheet
   Pantone 201 C (#A4343A) is the single brand colour, shared with Seguin Moreau.
   ========================================================================== */

:root {
  /* Brand */
  --red: #a4343a;
  --red-deep: #7e2229;
  --red-dark: #5c161c;
  --red-tint: #f6ecec;

  /* Neutrals, warmed slightly so they sit well against oak photography */
  --ink: #17120f;
  --ink-soft: #2a221d;
  --ink-line: rgba(255, 255, 255, 0.14);
  --bone: #faf6f1;
  --bone-deep: #f0e7dd;
  --body: #4a403a;
  --muted: #796b62;
  --rule: #e2d6c9;

  --oak: #c9955f;

  /* Type */
  --font-display: "Archivo", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;
  --font-stencil: "Stardos Stencil", var(--font-display);

  /* Layout */
  --page: 1200px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 4px;
  --header-h: 84px;

  --shadow-sm: 0 2px 8px rgba(23, 18, 15, 0.06);
  --shadow-md: 0 12px 32px -12px rgba(23, 18, 15, 0.22);
  --shadow-lg: 0 32px 64px -24px rgba(23, 18, 15, 0.35);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* --------------------------------------------------------------- base ---- */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--body);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.022em;
  margin: 0 0 0.6em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.4rem, 5.6vw, 4.15rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.85rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 1.9vw, 1.45rem); font-weight: 700; letter-spacing: -0.012em; }
h4 { font-size: 1.0625rem; font-weight: 700; letter-spacing: -0.005em; }

p { margin: 0 0 1.15rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--red); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--red-deep); }

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

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

.skip-link {
  position: absolute;
  top: -100px;
  left: var(--gutter);
  z-index: 200;
  background: var(--red);
  color: #fff;
  padding: 0.7rem 1.1rem;
  font-weight: 600;
  border-radius: var(--radius);
}
.skip-link:focus { top: 0.75rem; color: #fff; }

/* ------------------------------------------------------------ helpers ---- */

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

.section { padding: clamp(4rem, 9vw, 7.5rem) 0; }
.section--tight { padding: clamp(3rem, 6vw, 5rem) 0; }

.eyebrow {
  font-family: var(--font-stencil);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--red);
  flex: none;
}
.eyebrow--center { justify-content: center; }

.lede {
  font-size: clamp(1.075rem, 1.6vw, 1.25rem);
  line-height: 1.65;
  color: var(--ink-soft);
}

.section-head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 3.75rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }

/* ------------------------------------------------------------- button ---- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  padding: 0.95rem 1.7rem;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease),
              border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.btn:hover { transform: translateY(-2px); }

.btn--primary { background: var(--red); color: #fff; }
.btn--primary:hover { background: var(--red-deep); color: #fff; }

.btn--outline { border-color: var(--rule); color: var(--ink); background: transparent; }
.btn--outline:hover { border-color: var(--red); color: var(--red); }

.btn--ghost-light {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
  background: transparent;
}
.btn--ghost-light:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

.btn-row { display: flex; flex-wrap: wrap; gap: 0.85rem; }

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--red);
}
.arrow-link::after {
  content: "→";
  transition: transform 0.2s var(--ease);
}
.arrow-link:hover::after { transform: translateX(4px); }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 241, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--rule);
  box-shadow: var(--shadow-sm);
}

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

.brand { display: block; flex: none; }
.brand img { height: 30px; width: auto; }

/* The wordmark is very wide (roughly 11:1), so on narrow screens it has to step
   down to leave room for the menu button beside it. */
@media (max-width: 620px) {
  .site-header__inner { gap: 0.75rem; }
  .brand img { height: 22px; }
  .site-footer__brand img { height: 24px; }
}
@media (max-width: 380px) {
  .brand img { height: 18px; }
  .site-footer__brand img { height: 20px; }
}

.nav { display: flex; align-items: center; gap: 0.35rem; }

/* Every rule here excludes .btn. The CTA in the nav is a filled red button, and
   an unscoped `.nav a` selector outranks `.btn--primary` on specificity, which
   would paint its label dark ink on red. */
.nav a:not(.btn) {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--ink-soft);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.nav a:not(.btn):hover { color: var(--red); background: var(--red-tint); }
.nav a:not(.btn)[aria-current="page"] { color: var(--red); font-weight: 600; }

.nav__cta { margin-left: 0.6rem; padding: 0.7rem 1.3rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 10px;
  background: none;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 940px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bone);
    border-bottom: 1px solid var(--rule);
    padding: 0.75rem var(--gutter) 1.5rem;
    box-shadow: var(--shadow-md);
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 0.85rem 0.5rem; font-size: 1.0625rem; border-bottom: 1px solid var(--rule); border-radius: 0; }
  .nav a:last-of-type { border-bottom: none; }
  .nav__cta { margin: 0.9rem 0 0; justify-content: center; }
}

/* --------------------------------------------------------------- hero ---- */

.hero {
  position: relative;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(23, 18, 15, 0.9) 8%, rgba(23, 18, 15, 0.5) 55%, rgba(23, 18, 15, 0.18) 100%),
    linear-gradient(to top, rgba(23, 18, 15, 0.85), transparent 48%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  padding: clamp(5rem, 13vw, 9.5rem) 0 clamp(4rem, 10vw, 7rem);
  max-width: 800px;
}
.hero h1 { color: #fff; }
.hero .eyebrow { color: #fff; }
.hero .eyebrow::before { background: var(--red); width: 40px; height: 3px; }
.hero__lede {
  font-size: clamp(1.075rem, 1.7vw, 1.3rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  max-width: 58ch;
  margin-bottom: 2.25rem;
}
.hero .btn-row { margin-bottom: 0; }

/* Compact hero for interior pages */
.hero--page .hero__inner { padding: clamp(3.75rem, 9vw, 6.5rem) 0 clamp(3.25rem, 7vw, 5rem); }
.hero--page .hero__media img { opacity: 0.34; }

.crumbs {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.25rem;
}
.crumbs a { color: rgba(255, 255, 255, 0.82); }
.crumbs a:hover { color: #fff; }
.crumbs span { margin: 0 0.5rem; opacity: 0.5; }

/* ------------------------------------------------------- partner strip ---- */

.partners {
  background: var(--bone-deep);
  border-block: 1px solid var(--rule);
  padding: 2.25rem 0;
}
.partners__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(2rem, 6vw, 4.5rem);
}
.partners__label {
  font-family: var(--font-stencil);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  /* Darker than --muted: this sits on --bone-deep, where --muted is only 4.2:1. */
  color: #6a5c53;
}
.partners img {
  height: 74px;
  width: auto;
  opacity: 0.9;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}
.partners a:hover img { opacity: 1; transform: translateY(-2px); }

/* Stand-in for partners whose logo file we do not have yet. Sized to sit on
   the same optical line as the real logos so the strip stays balanced. */
.partner-wordmark {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  min-height: 74px;
  font-family: var(--font-stencil);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.25;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  color: var(--brand);
  opacity: 0.9;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}
.partners a:hover .partner-wordmark { opacity: 1; transform: translateY(-2px); }

.partner-wordmark--pending { color: #6a5c53; opacity: 0.65; }
.partner-wordmark--pending small {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.14em;
}
.site-footer .partner-wordmark { color: rgba(255, 255, 255, 0.85); }
.site-footer .partner-wordmark--pending { color: rgba(255, 255, 255, 0.55); }

/* Copy we are waiting on from the client. Visibly marked so a placeholder is
   never mistaken for finished content. */
.is-placeholder {
  border-left: 3px solid #c9a227;
  background: #fdf8e7;
  padding: 0.75rem 1rem;
  font-style: italic;
  color: #6a5c53;
}

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

.grid { display: grid; gap: clamp(1.25rem, 2.5vw, 2rem); }
.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: 900px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

.solution {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
  color: inherit;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease),
              border-color 0.28s var(--ease);
}
.solution:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--oak);
  color: inherit;
}
.solution__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bone-deep);
}
.solution__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.solution:hover .solution__media img { transform: scale(1.05); }
.solution__body {
  padding: 1.6rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.6rem;
}
.solution__body h3 { margin: 0; }
.solution__body p { font-size: 0.9688rem; color: var(--body); margin: 0; }
.solution__body .arrow-link { margin-top: auto; padding-top: 0.9rem; }

/* Feature rows (alternating image / text) */

.feature {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.feature + .feature { margin-top: clamp(3.5rem, 8vw, 6rem); }
.feature--flip .feature__media { order: 2; }

.feature__media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
@media (max-width: 820px) {
  .feature { grid-template-columns: 1fr; }
  .feature--flip .feature__media { order: 0; }
}

/* ------------------------------------------------------------- panels ---- */

.panel-dark {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.8);
}
.panel-dark h2, .panel-dark h3 { color: #fff; }
.panel-dark .eyebrow { color: #fff; }
.panel-dark .lede { color: rgba(255, 255, 255, 0.8); }

.panel-red {
  background: var(--red);
  color: rgba(255, 255, 255, 0.92);
}
.panel-red h2, .panel-red h3 { color: #fff; }
.panel-red .eyebrow { color: #fff; }
.panel-red .eyebrow::before { background: rgba(255, 255, 255, 0.7); }
.panel-red .lede { color: rgba(255, 255, 255, 0.92); }

/* Stat band */

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
@media (max-width: 720px) { .stats { grid-template-columns: 1fr; text-align: center; } }

.stat__value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1;
  color: #fff;
  letter-spacing: -0.03em;
}
.stat__label {
  font-family: var(--font-stencil);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 0.85rem;
}
.stat__note { font-size: 0.9375rem; color: rgba(255, 255, 255, 0.62); margin-top: 0.4rem; }
.panel-red .stat__note { color: rgba(255, 255, 255, 0.8); }

/* --------------------------------------------------------------- spec ---- */

.spec-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}
.spec-list li {
  position: relative;
  padding-left: 1.85rem;
  font-size: 1rem;
}
.spec-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 9px;
  height: 9px;
  border: 2px solid var(--red);
  border-radius: 50%;
}
.spec-list strong { color: var(--ink); font-weight: 600; }

.panel-dark .spec-list li::before,
.panel-red .spec-list li::before { border-color: rgba(255, 255, 255, 0.75); }
.panel-dark .spec-list strong,
.panel-red .spec-list strong { color: #fff; }

/* Option cards: small tiles describing choices/specs */

.tile {
  background: #fff;
  border: 1px solid var(--rule);
  border-left: 3px solid var(--red);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.6rem;
  /* Always a white card, including inside .panel-dark / .panel-red, so it must
     set its own text colour rather than inherit the panel's light one. */
  color: var(--body);
}
.tile h4 {
  font-family: var(--font-stencil);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.65rem;
}
.tile p { font-size: 0.9688rem; margin: 0; }

/* Partner callout block */

.partner-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: start;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 4vw, 2.75rem);
}
.partner-card + .partner-card { margin-top: 1.5rem; }
.partner-card__logo img { width: 100%; height: auto; }
.partner-card h3 { margin-bottom: 0.75rem; }
@media (max-width: 620px) {
  .partner-card { grid-template-columns: 1fr; }
  .partner-card__logo img { width: 110px; }
}

/* -------------------------------------------------------------- quote ---- */

.pull-quote {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  line-height: 1.32;
  letter-spacing: -0.02em;
  color: #fff;
  text-wrap: balance;
  margin: 0;
}
.pull-quote cite {
  display: block;
  margin-top: 1.5rem;
  font-family: var(--font-stencil);
  font-weight: 700;
  font-size: 0.8125rem;
  font-style: normal;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

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

.people { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (max-width: 720px) { .people { grid-template-columns: 1fr; } }

.person {
  background: #fff;
  border: 1px solid var(--rule);
  border-top: 3px solid var(--red);
  border-radius: var(--radius);
  padding: 1.85rem 1.75rem 2rem;
}
.person h3 { margin-bottom: 0.35rem; }
.person__role {
  font-family: var(--font-stencil);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.25rem;
}
.person__links { display: grid; gap: 0.5rem; font-size: 0.9688rem; }
.person__links a { display: inline-flex; align-items: center; gap: 0.55rem; color: var(--ink-soft); }
.person__links a:hover { color: var(--red); }
.person__links svg { flex: none; color: var(--red); }

/* Form */

.form { display: grid; gap: 1.15rem; }
.form__row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.15rem; }
@media (max-width: 620px) { .form__row { grid-template-columns: 1fr; } }

.field { display: grid; gap: 0.45rem; }
.field label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 0.8rem 0.95rem;
  width: 100%;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field textarea { resize: vertical; min-height: 140px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(164, 52, 58, 0.14);
}
.form__note { font-size: 0.875rem; color: var(--muted); }

.panel-dark .field label { color: rgba(255, 255, 255, 0.85); }
.panel-dark .form__note { color: rgba(255, 255, 255, 0.55); }

.form-hp { position: absolute; left: -9999px; }

/* Submission result. This site has one brand colour (red) plus warmed
   neutrals and --oak, no green anywhere, so success borrows --oak as a warm
   positive accent rather than importing an off-palette colour. */
.form-message {
  border-radius: var(--radius);
  padding: 1.1rem 1.3rem;
  font-size: 0.95rem;
  line-height: 1.55;
}
.form-message strong { display: block; margin-bottom: 0.3rem; font-family: var(--font-display); }
.form-message--success { background: rgba(201, 149, 95, 0.16); border: 1px solid var(--oak); color: #fff; }
.form-message--success strong { color: var(--oak); }
.form-message--error { background: rgba(164, 52, 58, 0.16); border: 1px solid var(--red); color: #fff; }
.form-message--error strong { color: #e8a3a7; }
.form-message--error a { color: #fff; text-decoration: underline; }

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

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9375rem;
  padding: clamp(3.5rem, 7vw, 5rem) 0 2rem;
}
.site-footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--ink-line);
}
@media (max-width: 820px) { .site-footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .site-footer__top { grid-template-columns: 1fr; } }

.site-footer__brand img { height: 30px; width: auto; margin-bottom: 1.35rem; }
.site-footer__brand p { max-width: 34ch; }

.footer-head {
  font-family: var(--font-stencil);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.1rem;
}
.footer-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.footer-list a { color: rgba(255, 255, 255, 0.68); }
.footer-list a:hover { color: #fff; }

.site-footer__partners {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 2rem 0;
  border-bottom: 1px solid var(--ink-line);
}
.site-footer__partners img { height: 56px; width: auto; opacity: 0.72; transition: opacity 0.2s var(--ease); }
.site-footer__partners a:hover img { opacity: 1; }

.site-footer__base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ------------------------------------------------------- reduced motion ---- */

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