/* ============================================================================
   WTL homepage (build-48)

   The converting homepage sections, rendered in the LIVE theme design system
   (warm paper, --gold accents, 3px --radius, IBM Plex Mono detail type) so the
   homepage stays cohesive with the category/vendor/region pages it links into.
   Layout + structure port from the Claude Design "Homepage" mock.

   Mobile-first: single-column base, widening at breakpoints. Desktop is the
   progressive enhancement, never the design target. Depends on inventory.css
   for the :root design tokens (enqueued first).
   ========================================================================== */

/* ---- Hero ----------------------------------------------------------------
   EVERY hero rule below is scoped to .home (the front-page <main class="home">).
   Since build-59 the /truckloads/ archive loads home.css too (it reuses the shared
   why/proof/final sections), so an un-scoped `.hero*` rule here would bleed onto the
   archive's own inventory hero. .home-scoping keeps the homepage hero here and lets the
   archive keep its native inventory.css hero. (The lower-section rules further down are
   intentionally NOT scoped: the archive shares them.) */
.home .hero {
  background: var(--navy);
  color: var(--paper);
  overflow: hidden;
}
.home .hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(36px, 5vw, 56px);
  align-items: center;
  padding-top: clamp(40px, 4vw, 60px);
  padding-bottom: clamp(40px, 4vw, 60px);
}
@media (min-width: 920px) {
  /* Desktop hero spaced to MATCH the inventory hero (/truckloads/) exactly, per Joe
     (build-60). The build-58 version forced min-height:100svh + align-items:center,
     which CENTERED the content and split the leftover space into a large symmetric gap
     ABOVE and BELOW it (the "gaps are bigger than inventory" complaint). The inventory
     hero never centers: it pins the content to a fixed top padding (clamp 48-86px), the
     headline carries it down, and it ends on a fixed bottom padding (clamp 40-64px). So
     this drops the centering and uses inventory's EXACT hero padding values, so the
     header->first-text gap and the last-box->fold gap are identical to every inventory
     page. The homepage carries more content than the inventory hero, so it naturally
     fills the fold the same way. The headline is width-capped so it stacks to ~3-4 short
     left-aligned lines instead of leaking right, sized to fill the vertical space it
     shares with the rest of the copy. Mobile (<920) keeps the approved build-52 hero. */
  .home .hero__inner {
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
    align-items: stretch;
    padding-top: clamp(48px, 6vw, 86px);
    padding-bottom: clamp(40px, 5vw, 64px);
  }
  .home .hero__copy { gap: 18px; }
  .home .hero__title {
    font-size: clamp(42px, 3.6vw, 52px);
    line-height: 1.06;
    letter-spacing: -.02em;
    max-width: 15ch;
    text-wrap: wrap;
  }
  /* Hero image fills the right column to the height of the copy column (Joe, build-62):
     align-items:stretch makes .hero__visual span the full row height, and the photo drops
     its fixed aspect-ratio to fill it top to bottom, so the image reaches from the headline
     row down to the promise box (not the short bottom-aligned box it was). The floating
     stat cards stay pinned to the visual's top-left / bottom-right corners. Desktop only;
     mobile keeps the 4/3.1 aspect-ratio photo (a full-height image makes no sense stacked). */
  .home .hero__visual { display: flex; }
  .home .hero__photo {
    aspect-ratio: auto;
    flex: 1;
    min-height: clamp(360px, 42vw, 540px);
  }
  /* The qualifier pill reuses inventory.css .hero__qual; align-self:flex-start keeps it
     content-width + left-aligned here (the copy column is align-items:stretch on desktop).
     Mobile centers it via .home .hero__copy { align-items:center } below. */
  .home .hero__qual { align-self: flex-start; }
}

.home .hero__copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.hero__rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(215, 168, 73, .14);
  font: 700 12px var(--body);
  color: rgba(243, 243, 243, .92);
}
.hero__stars { display: inline-flex; gap: 1px; }
.hero__eyebrow {
  font: 700 12px/1 var(--mono);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-light);
}
/* Qualifier pill (CRO baseline) reuses inventory.css .hero__qual; reset its margin-top:20px
   since the hero copy column spaces children with flex gap. align-self lives in the >=920px
   block; mobile inherits the column's centering. */
.home .hero__qual { margin-top: 0; }

/* Scoped under .home (the front-page <main class="home">) on purpose: inventory.css
   defines `.hero h1 { font-size: clamp(46px,7.2vw,104px) }` for the inventory hero,
   and that descendant selector (0,1,1) out-specifies a bare `.hero__title` (0,1,0),
   so it silently governed the homepage headline through build-52. `.home .hero__title`
   (0,2,0) wins cleanly. The font-family/weight/color/balance here apply on every
   width; the actual size override lives in the >=920px block so mobile keeps the
   approved inventory .hero h1 sizing (which a smaller balanced headline destabilizes
   under inventory's grid min-width:0, causing wrap overflow). */
.home .hero__title {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  color: #fff;
  text-wrap: balance;
}
.hero__title-accent { color: var(--gold-light); }

.home .hero__sub {
  margin: 0;
  font-size: clamp(1.02rem, .8vw + .85rem, 1.1rem);
  line-height: 1.5;
  color: rgba(243, 243, 243, .80);
  max-width: 54ch;
}

.hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 2px;
}
.hero__cta-row .btn {
  padding: 15px 26px;
  font-size: 16px;
  gap: 10px;
}
.btn__arrow { transition: transform .15s ease; }
.hero__cta-row .btn:hover .btn__arrow { transform: translateX(3px); }
.hero__live {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font: 600 14px var(--body);
  color: rgba(243, 243, 243, .85);
}
.hero__live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 3px rgba(29, 124, 111, .32);
}

.hero__checks {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}
.hero__checks li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: 600 14px var(--body);
  color: rgba(243, 243, 243, .85);
}

.hero__promise {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  padding: 14px 18px;
  border: 1px solid rgba(242, 205, 124, .34);
  background: rgba(215, 168, 73, .10);
  border-radius: var(--radius);
  max-width: 48ch;
}
.hero__promise svg { flex: none; margin-top: 1px; }
.hero__promise span {
  font: 600 15px var(--body);
  color: rgba(243, 243, 243, .92);
  line-height: 1.5;
}

/* Hero visual: real photo (build-68) + floating stat cards. The photo fills the frame
   via object-fit:cover (portrait crop on desktop, landscape on mobile); the 1600x1600
   square source keeps the subject centered through both crops. navy-700 is the load
   fallback if the image is slow or fails. */
.hero__visual { position: relative; }
.hero__photo {
  position: relative;
  aspect-ratio: 4 / 3.1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy-700);
  border: 1px solid rgba(243, 243, 243, .12);
  box-shadow: 0 30px 60px rgba(0, 0, 0, .34);
}
.hero__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__stat {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 11px;
  background: #fff;
  border-radius: var(--radius);
  padding: 11px 15px;
  box-shadow: 0 14px 30px rgba(29, 44, 60, .24);
}
.hero__stat--a { top: 16px; left: 8px; }
.hero__stat--b { bottom: 16px; right: 8px; }
@media (min-width: 920px) {
  .hero__stat--a { left: -10px; }
  .hero__stat--b { right: -10px; }
}
.hero__stat-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: var(--gold);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.hero__stat-icon--verified {
  background: rgba(29, 124, 111, .14);
  color: var(--teal);
}
.hero__stat-text b {
  display: block;
  font: 800 17px var(--display);
  line-height: 1;
  color: var(--ink);
}
.hero__stat-text span {
  font: 500 12px var(--body);
  color: var(--ink-soft);
  margin-top: 3px;
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .btn__arrow { transition: none; }
}

/* Mobile hero: center the whole stack (Joe, build-52). Desktop keeps the two-column
   left-aligned layout; below the 920px single-column breakpoint everything centers to
   match the headline and subheadline (badges, eyebrow, CTA row, checklist, promise). */
@media (max-width: 919px) {
  .home .hero__copy { align-items: center; text-align: center; }
  .home .hero__badges,
  .home .hero__cta-row,
  .home .hero__checks { justify-content: center; }
  .home .hero__promise { flex-direction: column; align-items: center; text-align: center; }
  /* Mobile breathing room + CTA above the fold (Joe, build-67). The hero felt cramped and the
     primary CTA fell below the fold. The headline at inventory's 46px dominated and ate the
     vertical budget, so shrink it; open the copy gap a touch for breathing room; trim the hero
     padding so the whole stack lifts. Net: the CTA rises above the fold and the stack reads
     less tight. The headline keeps text-wrap:balance (the base rule) for clean centered breaks. */
  .home .hero__inner { padding-top: 30px; padding-bottom: 36px; }
  .home .hero__copy { gap: 22px; }
  .home .hero__title { font-size: clamp(31px, 8.2vw, 39px); line-height: 1.1; }
}

/* ---- Vendor wall (18 launch codes, guardrail #3: codes face public) ------- */
.home-vendors {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.home-vendors__eyebrow {
  display: inline-block;
  font: 600 12px/1 var(--mono);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.home-vendors__title {
  margin: 12px auto 0;
  max-width: 24ch;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.2vw + .4rem, 1.8rem);
  line-height: 1.15;
  color: var(--ink);
  text-wrap: balance;
}
.vendor-wall {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: clamp(20px, 3vw, 28px);
}
/* Vendor chips are links to each /truckloads/vendors/<code>/ page (build-61), so they
   carry anchor affordances: no underline, a hover lift to gold, and a focus ring. */
.vendor-chip {
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  font: 700 14px var(--mono);
  letter-spacing: .04em;
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(29, 44, 60, .05);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease, color .15s ease;
}
.vendor-chip:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  color: var(--gold-dark);
  box-shadow: 0 10px 22px rgba(29, 44, 60, .12);
}
.vendor-chip:focus-visible {
  outline: 2px solid var(--gold-dark);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  .vendor-chip { transition: none; }
}

/* ---- Browse truckloads --------------------------------------------------- */
.home-browse { background: var(--paper); }

.home-browse__head {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.home-browse__pulse {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(29, 124, 111, .10);
  color: var(--teal);
  font: 600 12.5px/1 var(--body);
}
.home-browse__pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 3px rgba(29, 124, 111, .18);
}

.home-browse__title {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.7rem, 3vw + .4rem, 2.4rem);
  line-height: 1.12;
  letter-spacing: -.01em;
  color: var(--ink);
  text-wrap: balance;
}

.home-browse__lede {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ---- Category grid (12 canonical categories) ----------------------------- */
.cat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: clamp(28px, 4vw, 48px);
}
@media (min-width: 560px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .cat-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}
@media (min-width: 1140px) {
  .cat-grid { grid-template-columns: repeat(4, 1fr); }
}

.cat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 2.4vw, 26px);
  text-decoration: none;
  color: inherit;
  box-shadow: 0 1px 2px rgba(29, 44, 60, .05);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.cat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(29, 44, 60, .13);
  border-color: var(--gold);
}
.cat-card:focus-visible {
  outline: 2px solid var(--gold-dark);
  outline-offset: 2px;
}

.cat-card--featured {
  border: 1.5px solid var(--gold);
  box-shadow: 0 1px 2px rgba(29, 44, 60, .05), 0 12px 28px rgba(29, 44, 60, .10);
}

.cat-card__flag {
  position: absolute;
  top: -10px;
  left: clamp(20px, 2.4vw, 26px);
  background: var(--gold);
  color: var(--navy);
  font: 700 10.5px/1 var(--mono);
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
}

.cat-card__icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--gold-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cat-card--featured .cat-card__icon {
  background: var(--gold);
  color: var(--navy);
}

.cat-card__title {
  margin: 0;
  font: 700 1.06rem/1.25 var(--body);
  color: var(--ink);
}

.cat-card__desc {
  margin: 0;
  font-size: .9rem;
  line-height: 1.55;
  color: var(--ink-soft);
  flex: 1;
}

.cat-card__count {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: 600 12.5px var(--mono);
  color: var(--gold-dark);
}
.cat-card__count-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
}

.cat-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font: 700 13.5px var(--body);
  color: var(--gold-dark);
}
.cat-card__arrow { transition: transform .15s ease; }
.cat-card:hover .cat-card__arrow { transform: translateX(3px); }

/* ---- Browse-all banner --------------------------------------------------- */
.home-browse__banner {
  margin: clamp(26px, 3.5vw, 40px) auto 0;
  max-width: 760px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 28px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 26px;
  text-align: center;
  box-shadow: 0 1px 2px rgba(29, 44, 60, .05);
}
.home-browse__banner-text {
  margin: 0;
  font: 600 1.02rem/1.45 var(--body);
  color: var(--ink);
}

@media (prefers-reduced-motion: reduce) {
  .cat-card,
  .cat-card__arrow { transition: none; }
}

/* ---- Shared centered eyebrow (flanking rules) ---------------------------- */
.home-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font: 600 12px/1 var(--mono);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.home-eyebrow span {
  width: 22px;
  height: 2px;
  background: currentColor;
  opacity: .7;
}

/* ---- Why / repeat-buyer -------------------------------------------------- */
.home-why { background: var(--muted-ivory); }
.home-why__head {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.home-why__title {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.7rem, 3vw + .4rem, 2.5rem);
  line-height: 1.12;
  letter-spacing: -.01em;
  color: var(--ink);
  text-wrap: balance;
}
.home-why__lede {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.home-why__stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 840px;
  margin: clamp(32px, 4vw, 48px) auto 0;
}
@media (min-width: 620px) {
  .home-why__stats { grid-template-columns: repeat(3, 1fr); }
}
.why-stat {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 28px);
  text-align: center;
  box-shadow: 0 1px 2px rgba(29, 44, 60, .05);
}
.why-stat__k {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  line-height: 1;
  color: var(--ink);
}
.why-stat__l {
  margin-top: 8px;
  font: 600 13px var(--body);
  color: var(--ink-soft);
}

.home-why__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 840px;
  margin: 16px auto 0;
}
@media (min-width: 720px) {
  .home-why__cards { grid-template-columns: repeat(2, 1fr); }
}
.why-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 11px;
  box-shadow: 0 1px 2px rgba(29, 44, 60, .05);
}
.why-card__icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: var(--muted-ivory);
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.why-card h3 {
  margin: 0;
  font: 700 1.08rem var(--body);
  color: var(--ink);
}
.why-card p {
  margin: 0;
  font-size: .95rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.home-why__promise {
  max-width: 840px;
  margin: 16px auto 0;
  background: rgba(215, 168, 73, .10);
  border: 1px solid rgba(168, 121, 37, .30);
  border-radius: var(--radius);
  padding: clamp(18px, 3vw, 26px);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.home-why__promise-icon {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: var(--gold);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.home-why__promise h3 {
  margin: 0 0 5px;
  font: 700 1.05rem var(--body);
  color: var(--ink);
}
.home-why__promise p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ---- Proof / reviews (navy) ---------------------------------------------- */
.home-proof {
  background: var(--navy);
  color: var(--paper);
}
.home-proof__head {
  max-width: 660px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.home-proof__rating {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 15px;
  border-radius: 999px;
  background: rgba(243, 243, 243, .08);
  font: 600 13px var(--body);
  color: rgba(243, 243, 243, .9);
}
.home-proof__stars {
  display: inline-flex;
  gap: 1px;
  align-items: center;
}
.home-proof__title {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.7rem, 3vw + .4rem, 2.5rem);
  line-height: 1.12;
  color: #fff;
  text-wrap: balance;
}
.home-proof__lede {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.55;
  color: rgba(243, 243, 243, .74);
  max-width: 46ch;
}
.home-proof__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: clamp(32px, 4vw, 52px);
}
@media (min-width: 760px) {
  .home-proof__grid { grid-template-columns: repeat(3, 1fr); }
}
.review {
  background: #fff;
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .22);
}
.review__stars { display: inline-flex; gap: 2px; }
.review__q {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 500;
}
.review__by {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.review__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: 700 16px var(--display);
  flex: none;
}
.review__name {
  font: 700 14px var(--body);
  color: var(--ink);
}
.review__role {
  font: 400 13px var(--body);
  color: var(--ink-faint);
}

/* ---- Final CTA ----------------------------------------------------------- */
.home-final { background: var(--paper); }
.home-final__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.home-final__title {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.4vw + .4rem, 2.7rem);
  line-height: 1.08;
  letter-spacing: -.015em;
  color: var(--ink);
  text-wrap: balance;
}
.home-final__checks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 22px;
}
.home-final__checks li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: 600 14px var(--body);
  color: var(--ink-soft);
}
.home-final__inner .btn {
  padding: 16px 30px;
  font-size: 17px;
  gap: 11px;
}
.home-final__contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 24px;
  font: 600 14px var(--body);
  color: var(--ink-faint);
  margin-top: 4px;
}
.home-final__contact a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink);
  text-decoration: none;
}
.home-final__contact a:hover { color: var(--gold-dark); }
