/* Homepage v2: compact editorial hierarchy on the existing LIFA visual system. */
.home-page {
  --hp-ink: var(--deep-ink, #07111e);
  --hp-navy: var(--navy, #0f1e36);
  --hp-blue: #1d5877;
  --hp-gold: var(--gold, #eed47d);
  --hp-cream: var(--white, #ffffff);
  --hp-paper: var(--off-white, #f7f9fc);
  --hp-line: #d9e1e7;
  --hp-muted: #586776;
  --hp-radius: 6px;
}

.home-page main .hpv2-section {
  padding: clamp(56px, 7vw, 104px) 0;
  background: #fff;
}

.home-page main .hpv2-section:nth-of-type(odd) { background: var(--hp-paper); }
.home-page main .hpv2-section h2,
.home-page main .hpv2-section h3,
.home-page main .hpv2-section p { max-width: none; }
.home-page main .hpv2-container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.home-page main .hpv2-kicker { display: block; margin: 0 0 16px; color: var(--hp-blue); font: 700 .72rem/1.2 var(--font-ui, Montserrat, sans-serif); letter-spacing: .11em; text-transform: uppercase; }
.home-page main .hpv2-section-head { max-width: 760px; margin: 0 0 42px; }
.home-page main .hpv2-section-head-wide { max-width: 900px; }
.home-page main .hpv2-section-head h2 { margin: 0 0 17px; color: var(--hp-ink); font: 400 clamp(2rem, 4vw, 3.45rem)/1.08 var(--font-heading, Prata, Georgia, serif); letter-spacing: 0; }
.home-page main .hpv2-section-head p { margin: 0; color: var(--hp-muted); font: 400 1.05rem/1.7 var(--font-reading, Open Sans, sans-serif); }
.home-page main .hpv2-copy h2 { margin: 0 0 20px; color: var(--hp-ink); font: 400 clamp(2rem, 4.3vw, 3.4rem)/1.08 var(--font-heading, Prata, Georgia, serif); letter-spacing: 0; }
.home-page main .hpv2-copy p { margin: 0 0 18px; color: var(--hp-muted); font: 400 1rem/1.75 var(--font-reading, Open Sans, sans-serif); }
.home-page main .hpv2-copy .hpv2-lead { color: var(--hp-ink); font-size: 1.08rem; }
.home-page main .hpv2-split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(36px, 7vw, 96px); align-items: center; }
.home-page main .hpv2-figure { position: relative; margin: 0; overflow: hidden; background: var(--hp-navy); border-radius: var(--hp-radius); box-shadow: 0 22px 55px rgba(7, 17, 30, .14); }
.home-page main .hpv2-figure img { display: block; width: 100%; height: auto; aspect-ratio: 1.3; object-fit: cover; }
.home-page main .hpv2-figure figcaption { display: grid; gap: 5px; padding: 18px 20px 20px; color: #fff; background: var(--hp-navy); }
.home-page main .hpv2-figure figcaption span { color: var(--hp-gold); font: 700 .68rem/1.2 var(--font-ui, Montserrat, sans-serif); letter-spacing: .12em; text-transform: uppercase; }
.home-page main .hpv2-figure figcaption strong { font: 400 1rem/1.45 var(--font-heading, Prata, Georgia, serif); }
.home-page main .hpv2-link-row { display: flex; flex-wrap: wrap; gap: 18px 28px; margin-top: 28px; }
.home-page main .hpv2-text-link,
.home-page main .hpv2-card-link { color: var(--hp-blue); font: 700 .78rem/1.35 var(--font-ui, Montserrat, sans-serif); letter-spacing: .04em; text-decoration: none; }
.home-page main .hpv2-text-link:hover,
.home-page main .hpv2-card-link:hover { color: var(--hp-ink); text-decoration: underline; text-underline-offset: 3px; }
.home-page main .hpv2-facts { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; margin-top: clamp(42px, 6vw, 72px); border: 1px solid var(--hp-line); background: var(--hp-line); }
.home-page main .hpv2-facts > div { display: grid; gap: 8px; min-height: 122px; padding: 22px; background: #fff; }
.home-page main .hpv2-facts strong { color: var(--hp-ink); font: 400 1.65rem/1.1 var(--font-heading, Prata, Georgia, serif); }
.home-page main .hpv2-facts span { color: var(--hp-muted); font: 400 .82rem/1.5 var(--font-reading, Open Sans, sans-serif); }
.home-page main .home-signal-item .lifa-number-badge { width: 40px; min-width: 40px; height: 40px; display: grid; place-items: center; }

/* Hero tuning retains the existing full-bleed image and interactive controls. */
.home-page .home-hero .hero-content { max-width: 690px; }
.home-page .home-hero h1 { max-width: 720px; font-size: clamp(2.6rem, 5.5vw, 5.2rem); line-height: 1.04; letter-spacing: 0; }
.home-page .home-hero .hero-primary-description { max-width: 62ch; font-size: clamp(.98rem, 1.3vw, 1.14rem); line-height: 1.65; }
.home-page .home-hero .hero-brand-promise { max-width: 52ch; }
.home-page .home-hero .hero-carousel-wave { position: absolute; z-index: 4; right: 0; bottom: 0; left: 0; height: 3px; overflow: hidden; background: rgba(255, 255, 255, .22); }
.home-page .home-hero .hero-carousel-wave span { display: block; width: 0; height: 100%; background: var(--hp-gold); transform-origin: left center; }
.home-page .home-hero .hero-carousel-wave span.running { animation: hpv2-progress 3s linear forwards; }
@keyframes hpv2-progress { from { width: 0; } to { width: 100%; } }
.home-page .home-hero .hero-media-controls {
  position: absolute;
  z-index: 6;
  right: max(28px, calc((100% - 1180px) / 2));
  bottom: 22px;
  left: auto;
  display: grid;
  width: min(430px, calc(100% - 56px));
  min-width: 0;
  grid-template-columns: 42px auto minmax(0, 1fr) 42px 42px;
  align-items: center;
  gap: 7px;
  padding: 7px;
  color: #fff;
  border: 1px solid rgba(238, 212, 125, .32);
  border-radius: 5px;
  background: rgba(7, 17, 30, .72);
  box-shadow: 0 12px 28px rgba(2, 8, 18, .24);
  backdrop-filter: blur(10px);
}
.home-page .home-hero .hero-media-control {
  display: grid;
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  place-items: center;
  padding: 0;
  color: var(--hp-gold-light, #eed47d);
  border: 1px solid rgba(238, 212, 125, .28);
  border-radius: 3px;
  background: rgba(255, 255, 255, .055);
  cursor: pointer;
}
.home-page .home-hero .hero-media-control svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.home-page .home-hero .hero-media-icon-play { display: none; }
.home-page .home-hero .hero-carousel-toggle[aria-pressed="true"] .hero-media-icon-pause { display: none; }
.home-page .home-hero .hero-carousel-toggle[aria-pressed="true"] .hero-media-icon-play { display: block; }
.home-page .home-hero .hero-media-control:hover,
.home-page .home-hero .hero-media-control:focus-visible { color: var(--hp-ink); border-color: var(--hp-gold); background: var(--hp-gold); }
.home-page .home-hero .hero-media-control:focus-visible { outline: 3px solid #fff; outline-offset: 2px; }
.home-page .home-hero .hero-carousel-count { display: inline-flex; gap: 4px; padding-inline: 4px; color: rgba(255, 255, 255, .6); font: 700 .68rem/1 var(--font-ui, Montserrat, sans-serif); letter-spacing: .04em; white-space: nowrap; }
.home-page .home-hero .hero-carousel-count strong { color: var(--hp-gold-light, #eed47d); }
.home-page .home-hero .hero-media-caption { min-width: 0; overflow: hidden; color: rgba(255, 255, 255, .82); font: 700 .64rem/1.3 var(--font-ui, Montserrat, sans-serif); letter-spacing: .04em; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.home-page .home-hero .hero-slide { cursor: pointer; pointer-events: none; }
.home-page .home-hero .hero-slide.active { pointer-events: auto; }
.home-page .home-hero .hero-slide.active:focus-visible { outline: 3px solid var(--hp-gold); outline-offset: -6px; }
.home-page .home-hero .hero-slide-link {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: block;
  pointer-events: none;
}
.home-page .home-hero .hero-slide-link.is-active { pointer-events: auto; }

/* Premium hero treatment follows the established interior-page pattern:
   a small operating label, a measured statement, then proof and action. */
.home-page .home-hero .hpv2-hero-kicker {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  padding: 8px 13px;
  border: 1px solid rgba(238, 212, 125, .42);
  border-radius: 999px;
  background: rgba(7, 17, 30, .45);
  color: var(--hp-gold-light, #eed47d);
  font: 700 .68rem/1.2 var(--font-ui, Montserrat, sans-serif);
  letter-spacing: .1em;
  text-transform: uppercase;
  box-shadow: 0 10px 26px rgba(2, 8, 18, .18);
  backdrop-filter: blur(8px);
}
.home-page .home-hero .hpv2-hero-kicker-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: var(--hp-gold-light, #eed47d);
  box-shadow: 0 0 0 4px rgba(238, 212, 125, .14);
}
.home-page .home-hero .hpv2-hero-kicker-divider { color: rgba(255, 255, 255, .38); }
.home-page .home-hero .hero-content { max-width: 820px; }
.home-page .home-hero .hero-office-card {
  width: min(100%, 500px);
  margin-bottom: 18px;
  background: rgba(5, 15, 27, .66);
  box-shadow: 0 16px 38px rgba(2, 8, 18, .28);
}
.home-page .home-hero h1 {
  max-width: 820px;
  margin-bottom: 16px;
  font-size: clamp(2.8rem, 5vw, 4.9rem);
  line-height: 1.01;
}
.home-page .home-hero .hero-primary-description {
  display: block !important;
  max-width: 66ch;
  font-size: clamp(.98rem, 1.2vw, 1.08rem);
  line-height: 1.62;
}
.home-page .home-hero .hero-brand-promise {
  display: inline-flex;
  max-width: 66ch;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(238, 212, 125, .34);
  color: rgba(255, 255, 255, .92);
  font-weight: 700;
}
.home-page .home-hero .hero-actions { margin-top: 22px; }

/* The reference homepage uses a two-line editorial statement. Keep the
   hierarchy explicit so the promise remains legible over every photograph. */
.home-page .home-hero h1 span,
.home-page .home-hero h1 em { display: block; }
.home-page .home-hero h1 em {
  margin-top: 7px;
  color: var(--hp-gold-light, #eed47d);
  font-style: normal;
}
.home-page .home-hero .hero-credentials {
  max-width: 980px;
  row-gap: 9px;
}

@media (min-width: 701px) {
  .home-page .home-hero .hero-credentials {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 22px;
    align-items: center;
  }

  .home-page .home-hero .hero-credential-company { grid-column: 1 / span 2; }
  .home-page .home-hero .hero-credential-location { grid-column: 3 / span 2; }
  .home-page .home-hero .hero-credential-service { grid-column: auto; }
}

/* The content column spans the hero for layout purposes. Let pointer input
   pass through its transparent space so the visible image remains a true link;
   restore input on the copy and its controls. */
.home-page .home-hero .hero-content-wrapper { pointer-events: none; }
.home-page .home-hero .hero-content,
.home-page .home-hero .hero-content * { pointer-events: auto; }
.home-page .home-hero::before { pointer-events: none; }

/* Give the expanded hero statement a larger stage. The shared premium layer
   caps the homepage at 900px; this page now carries a long answer, proof row,
   and two actions, so the image and information need additional vertical room. */
@media (min-width: 901px) {
  html body.home-page[data-page-family] .home-hero,
  html body.home-page[data-page-family][data-page-family][data-page-family][data-page-family] .home-hero {
    min-height: min(calc(100svh - 72px), 1040px) !important;
    max-height: 1040px !important;
  }

  html body.home-page[data-page-family] .home-hero .hero-content-wrapper {
    align-items: flex-start !important;
    padding: 92px 0 56px !important;
  }

  html body.home-page[data-page-family] .home-hero .hero-grid {
    grid-template-columns: minmax(0, 980px) !important;
  }

  html body.home-page[data-page-family] .home-hero .hero-content,
  html body.home-page[data-page-family] .home-hero h1 {
    max-width: 980px !important;
  }

  html body.home-page[data-page-family] .home-hero h1 {
    font-size: 4.35rem;
  }

  html body.home-page[data-page-family] .home-hero .hero-primary-description,
  html body.home-page[data-page-family] .home-hero .hero-brand-promise {
    max-width: 900px;
  }

  /* Keep the full proof stack in the desktop first viewport while preserving
     the expanded hero stage and readable type scale. */
  html body.home-page[data-page-family] .home-hero .hero-office-card { margin-bottom: 14px; }
  html body.home-page[data-page-family] .home-hero .hero-brand-promise { margin-top: 12px; padding-top: 11px; }
  html body.home-page[data-page-family] .home-hero .hero-actions { margin-top: 16px; }
  html body.home-page[data-page-family] .home-hero .hero-credentials { margin-top: 18px; padding-top: 11px; }
}

@media (min-width: 901px) and (max-width: 1200px) {
  html body.home-page[data-page-family] .home-hero h1 { font-size: 3.8rem; }
}

@media (min-width: 701px) and (max-width: 1040px) {
  html body.home-page[data-page-family][data-page-family][data-page-family][data-page-family] .home-hero {
    min-height: 760px !important;
  }

  html body.home-page[data-page-family] .home-hero :is(.hero-primary-description, .hero-credentials) {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  html body.home-page[data-page-family] .home-hero .hero-content-wrapper {
    align-items: flex-start !important;
    padding: 82px 0 52px !important;
  }
}

@media (max-width: 700px) {
  html body.home-page[data-page-family][data-page-family][data-page-family][data-page-family] .home-hero {
    min-height: 760px !important;
  }

  html body.home-page[data-page-family] .home-hero .hero-credentials {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
}

/* A dark process band creates the same editorial contrast used on interior
   service pages and makes the six operational outputs easier to scan. */
.home-page main .hpv2-process {
  background: var(--hp-navy) !important;
  color: #fff;
}
.home-page main .hpv2-process .hpv2-kicker { color: var(--hp-gold-light, #eed47d); }
.home-page main .hpv2-process .hpv2-section-head h2,
.home-page main .hpv2-process .hpv2-process-list h3 { color: #fff; }
.home-page main .hpv2-process .hpv2-section-head p,
.home-page main .hpv2-process .hpv2-process-list p { color: rgba(255, 255, 255, .72); }
.home-page main .hpv2-process .hpv2-route-rail { border-color: rgba(255, 255, 255, .22); }
.home-page main .hpv2-process .hpv2-route-rail a { border-color: rgba(255, 255, 255, .18); color: #fff; }
.home-page main .hpv2-process .hpv2-route-rail a:hover,
.home-page main .hpv2-process .hpv2-route-rail a:focus-visible { background: rgba(238, 212, 125, .1); }
.home-page main .hpv2-process .hpv2-route-rail small,
.home-page main .hpv2-process .hpv2-process-list small { color: var(--hp-gold-light, #eed47d); }
.home-page main .hpv2-process .hpv2-process-list li > span {
  border-color: rgba(238, 212, 125, .72);
  color: var(--hp-gold-light, #eed47d);
}
.home-page main .hpv2-process .hpv2-process-note {
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .72);
}
.home-page main .hpv2-process .hpv2-process-note strong { color: #fff; }

/* Services */
.home-page main .hpv2-services { background: #fff; }
.home-page main .hpv2-services-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.home-page main .hpv2-service-card { display: flex; min-height: 255px; flex-direction: column; padding: 26px 24px 24px; border: 1px solid var(--hp-line); border-top: 3px solid var(--hp-gold); border-radius: var(--hp-radius); background: #fff; color: inherit; text-decoration: none; transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.home-page main .hpv2-service-card:hover { border-color: var(--hp-blue); box-shadow: 0 14px 30px rgba(15, 30, 54, .1); transform: translateY(-3px); }
.home-page main .hpv2-index { color: var(--hp-gold); font: 700 .7rem/1 var(--font-ui, Montserrat, sans-serif); letter-spacing: .12em; }
.home-page main .hpv2-service-card h3 { margin: 22px 0 10px; color: var(--hp-ink); font: 400 1.35rem/1.2 var(--font-heading, Prata, Georgia, serif); }
.home-page main .hpv2-service-card p { margin: 0 0 22px; color: var(--hp-muted); font: 400 .92rem/1.62 var(--font-reading, Open Sans, sans-serif); }
.home-page main .hpv2-card-link { margin-top: auto; }
.home-page main .hpv2-section-foot { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 28px; margin-top: 34px; color: var(--hp-muted); font: 400 .9rem/1.5 var(--font-reading, Open Sans, sans-serif); }
.home-page main .hpv2-button { display: inline-flex; min-height: 46px; align-items: center; justify-content: center; padding: 12px 20px; border-radius: 3px; font: 700 .75rem/1.2 var(--font-ui, Montserrat, sans-serif); letter-spacing: .06em; text-transform: uppercase; text-decoration: none; }
.home-page main .hpv2-button-secondary { border: 1px solid var(--hp-navy); background: var(--hp-navy); color: #fff; }
.home-page main .hpv2-button-secondary:hover { background: var(--hp-blue); border-color: var(--hp-blue); }

/* Freight and process */
.home-page main .hpv2-freight { background: var(--hp-cream); }
.home-page main .hpv2-freight-figure { order: 2; }
.home-page main .hpv2-route-list { display: grid; margin: 28px 0; border-top: 1px solid var(--hp-line); }
.home-page main .hpv2-route-list a { display: grid; grid-template-columns: minmax(110px, .7fr) minmax(0, 1.5fr) auto; gap: 16px; align-items: center; padding: 15px 0; border-bottom: 1px solid var(--hp-line); color: var(--hp-ink); text-decoration: none; }
.home-page main .hpv2-route-list a:hover { color: var(--hp-blue); }
.home-page main .hpv2-route-list strong { font: 700 .82rem/1.3 var(--font-ui, Montserrat, sans-serif); }
.home-page main .hpv2-route-list span { color: var(--hp-muted); font: 400 .84rem/1.45 var(--font-reading, Open Sans, sans-serif); }
.home-page main .hpv2-route-list a > span:last-child { color: var(--hp-blue); font-size: 1.1rem; }
.home-page main .hpv2-boundary { padding: 17px 18px; border-left: 3px solid var(--hp-gold); background: rgba(255, 255, 255, .62); font-size: .88rem !important; }
.home-page main .hpv2-route-rail { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin: 0 0 52px; border-top: 1px solid var(--hp-line); border-bottom: 1px solid var(--hp-line); }
.home-page main .hpv2-route-rail a { display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto; column-gap: 12px; align-items: center; padding: 18px 16px; border-right: 1px solid var(--hp-line); color: var(--hp-ink); text-decoration: none; }
.home-page main .hpv2-route-rail a:last-child { border-right: 0; }
.home-page main .hpv2-route-rail a:hover,
.home-page main .hpv2-route-rail a:focus-visible { background: var(--hp-cream); }
.home-page main .hpv2-route-rail span { grid-row: span 2; color: var(--hp-gold); font: 700 .72rem/1 var(--font-ui, Montserrat, sans-serif); }
.home-page main .hpv2-route-rail strong { font: 700 .8rem/1.2 var(--font-ui, Montserrat, sans-serif); }
.home-page main .hpv2-route-rail small { color: var(--hp-muted); font: 400 .78rem/1.4 var(--font-reading, Open Sans, sans-serif); }
.home-page main .hpv2-process-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0 44px; margin: 0; padding: 0; list-style: none; counter-reset: process; }
.home-page main .hpv2-process-list li { display: grid; grid-template-columns: 42px 1fr; gap: 15px; padding: 0 0 34px; }
.home-page main .hpv2-process-list li > span { display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid var(--hp-gold); border-radius: 50%; color: var(--hp-blue); font: 700 .7rem/1 var(--font-ui, Montserrat, sans-serif); }
.home-page main .hpv2-process-list h3 { margin: 3px 0 8px; color: var(--hp-ink); font: 400 1.18rem/1.25 var(--font-heading, Prata, Georgia, serif); }
.home-page main .hpv2-process-list p { margin: 0 0 8px; color: var(--hp-muted); font: 400 .88rem/1.55 var(--font-reading, Open Sans, sans-serif); }
.home-page main .hpv2-process-list small { color: var(--hp-blue); font: 700 .68rem/1.35 var(--font-ui, Montserrat, sans-serif); letter-spacing: .04em; }
.home-page main .hpv2-process-note { margin-top: 12px; padding: 18px 20px; border: 1px solid var(--hp-line); background: #fff; color: var(--hp-muted); font: 400 .88rem/1.6 var(--font-reading, Open Sans, sans-serif); }

/* Category, buyer and market discovery */
.home-page main .hpv2-categories { background: var(--hp-cream); }
.home-page main .hpv2-image-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.home-page main .hpv2-image-grid a { display: flex; min-height: 340px; flex-direction: column; overflow: hidden; border-radius: var(--hp-radius); background: var(--hp-navy); color: #fff; text-decoration: none; }
.home-page main .hpv2-image-grid img { display: block; width: 100%; aspect-ratio: 1.15; object-fit: cover; transition: transform .35s ease; }
.home-page main .hpv2-image-grid a:hover img { transform: scale(1.04); }
.home-page main .hpv2-image-grid a > span { display: grid; gap: 8px; height: 100%; padding: 18px 18px 20px; }
.home-page main .hpv2-image-grid strong { font: 400 1.02rem/1.28 var(--font-heading, Prata, Georgia, serif); }
.home-page main .hpv2-image-grid small { color: rgba(255, 255, 255, .76); font: 400 .78rem/1.45 var(--font-reading, Open Sans, sans-serif); }
.home-page main .hpv2-image-grid em { align-self: end; color: var(--hp-gold); font: 700 .68rem/1.2 var(--font-ui, Montserrat, sans-serif); letter-spacing: .05em; text-transform: uppercase; font-style: normal; }
.home-page main .hpv2-industries { background: #fff; }
.home-page main .hpv2-audience-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.home-page main .hpv2-audience-grid a { display: flex; min-height: 270px; flex-direction: column; padding: 24px; border: 1px solid var(--hp-line); border-radius: var(--hp-radius); color: inherit; text-decoration: none; }
.home-page main .hpv2-audience-grid a:hover { border-color: var(--hp-blue); box-shadow: 0 12px 26px rgba(15, 30, 54, .08); }
.home-page main .hpv2-audience-grid span { color: var(--hp-gold); font: 700 .7rem/1 var(--font-ui, Montserrat, sans-serif); }
.home-page main .hpv2-audience-grid h3 { margin: 24px 0 10px; color: var(--hp-ink); font: 400 1.23rem/1.25 var(--font-heading, Prata, Georgia, serif); }
.home-page main .hpv2-audience-grid p { margin: 0 0 20px; color: var(--hp-muted); font: 400 .87rem/1.55 var(--font-reading, Open Sans, sans-serif); }
.home-page main .hpv2-audience-grid em { margin-top: auto; color: var(--hp-blue); font: 700 .68rem/1.2 var(--font-ui, Montserrat, sans-serif); letter-spacing: .04em; font-style: normal; }
.home-page main .hpv2-markets { background: var(--hp-navy); color: #fff; }
.home-page main .hpv2-markets-layout { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(40px, 8vw, 110px); align-items: start; }
.home-page main .hpv2-markets .hpv2-kicker { color: var(--hp-gold); }
.home-page main .hpv2-markets h2 { margin: 0 0 18px; color: #fff; font: 400 clamp(2rem, 4vw, 3.25rem)/1.08 var(--font-heading, Prata, Georgia, serif); }
.home-page main .hpv2-markets p { margin: 0 0 26px; color: rgba(255, 255, 255, .76); font: 400 .98rem/1.7 var(--font-reading, Open Sans, sans-serif); }
.home-page main .hpv2-markets .hpv2-button-secondary { border-color: var(--hp-gold); background: transparent; color: #fff; }
.home-page main .hpv2-markets .hpv2-button-secondary:hover { background: var(--hp-gold); color: var(--hp-ink); }
.home-page main .hpv2-market-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid rgba(255, 255, 255, .23); }
.home-page main .hpv2-market-links a { display: grid; grid-template-columns: 1fr auto; gap: 7px 18px; padding: 20px 0; border-bottom: 1px solid rgba(255, 255, 255, .23); color: #fff; text-decoration: none; }
.home-page main .hpv2-market-links a:nth-child(odd) { margin-right: 24px; }
.home-page main .hpv2-market-links strong { font: 400 1.18rem/1.2 var(--font-heading, Prata, Georgia, serif); }
.home-page main .hpv2-market-links span:not([aria-hidden]) { grid-column: 1; color: rgba(255, 255, 255, .68); font: 400 .78rem/1.45 var(--font-reading, Open Sans, sans-serif); }
.home-page main .hpv2-market-links span[aria-hidden] { grid-column: 2; grid-row: 1 / span 2; align-self: center; color: var(--hp-gold); font-size: 1.1rem; }

/* Resources, FAQ and form */
.home-page main .hpv2-resources { background: var(--hp-paper); }
.home-page main .hpv2-resource-columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.home-page main .hpv2-resource-columns > div { padding: 24px; border: 1px solid var(--hp-line); border-radius: var(--hp-radius); background: #fff; }
.home-page main .hpv2-resource-columns h3 { margin: 0 0 4px; color: var(--hp-ink); font: 400 1.45rem/1.2 var(--font-heading, Prata, Georgia, serif); }
.home-page main .hpv2-resource-columns a { display: grid; gap: 5px; padding: 19px 0; border-bottom: 1px solid var(--hp-line); color: inherit; text-decoration: none; }
.home-page main .hpv2-resource-columns a:last-child { border-bottom: 0; }
.home-page main .hpv2-resource-columns a:hover strong { color: var(--hp-blue); }
.home-page main .hpv2-resource-columns strong { color: var(--hp-ink); font: 700 .86rem/1.3 var(--font-ui, Montserrat, sans-serif); }
.home-page main .hpv2-resource-columns span { color: var(--hp-muted); font: 400 .83rem/1.5 var(--font-reading, Open Sans, sans-serif); }
.home-page main .hpv2-resource-columns em { color: var(--hp-blue); font: 700 .67rem/1.2 var(--font-ui, Montserrat, sans-serif); letter-spacing: .04em; text-transform: uppercase; font-style: normal; }
.home-page main .hpv2-faq { background: #fff; }
.home-page main .hpv2-faq .hpv2-container { max-width: 940px; }
.home-page main .hpv2-faq .hpv2-section-head { max-width: 700px; }
.home-page main .hpv2-faq .faq-wrap { border-top: 1px solid var(--hp-line); }
.home-page main .hpv2-faq .faq-item { border-bottom: 1px solid var(--hp-line); }
.home-page main .hpv2-faq .faq-question { display: flex; width: 100%; min-height: 64px; align-items: center; justify-content: space-between; gap: 22px; padding: 16px 0; border: 0; background: transparent; color: var(--hp-ink); text-align: left; font: 700 .95rem/1.4 var(--font-ui, Montserrat, sans-serif); cursor: pointer; }
.home-page main .hpv2-faq .faq-question span:last-child { flex: 0 0 28px; color: var(--hp-blue); font-size: 1.35rem; font-weight: 400; text-align: center; }
.home-page main .hpv2-faq .faq-answer { padding: 0 52px 20px 0; }
.home-page main .hpv2-faq .faq-answer p { margin: 0; color: var(--hp-muted); font: 400 .93rem/1.7 var(--font-reading, Open Sans, sans-serif); }
.home-page main .hpv2-request { background: var(--hp-cream); }
.home-page main .hpv2-request-layout { display: grid; grid-template-columns: minmax(250px, .7fr) minmax(0, 1.3fr); gap: clamp(34px, 7vw, 96px); align-items: start; }
.home-page main .hpv2-request-intro h2 { margin: 0 0 18px; color: var(--hp-ink); font: 400 clamp(2rem, 4vw, 3.2rem)/1.08 var(--font-heading, Prata, Georgia, serif); }
.home-page main .hpv2-request-intro > p { margin: 0 0 26px; color: var(--hp-muted); font: 400 .96rem/1.7 var(--font-reading, Open Sans, sans-serif); }
.home-page main .hpv2-request-intro ol { display: grid; gap: 18px; margin: 0; padding: 0; list-style: none; }
.home-page main .hpv2-request-intro li { display: grid; grid-template-columns: 34px 1fr; gap: 12px; }
.home-page main .hpv2-request-intro li > span { color: var(--hp-gold); font: 700 .7rem/1.2 var(--font-ui, Montserrat, sans-serif); }
.home-page main .hpv2-request-intro li strong { display: block; margin-bottom: 3px; color: var(--hp-ink); font: 700 .8rem/1.3 var(--font-ui, Montserrat, sans-serif); }
.home-page main .hpv2-request-intro li small { display: block; color: var(--hp-muted); font: 400 .82rem/1.45 var(--font-reading, Open Sans, sans-serif); }
.home-page main .hpv2-contact-row { display: grid; gap: 10px; margin-top: 34px; padding-top: 20px; border-top: 1px solid var(--hp-line); }
.home-page main .hpv2-contact-row a { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 20px; color: var(--hp-blue); text-decoration: none; }
.home-page main .hpv2-contact-row a:hover { color: var(--hp-ink); }
.home-page main .hpv2-contact-row span { font: 700 .68rem/1.3 var(--font-ui, Montserrat, sans-serif); letter-spacing: .05em; text-transform: uppercase; }
.home-page main .hpv2-contact-row strong { font: 700 .82rem/1.3 var(--font-ui, Montserrat, sans-serif); }
.home-page main .hpv2-form-wrap { padding: clamp(22px, 4vw, 38px); border: 1px solid var(--hp-line); border-radius: var(--hp-radius); background: #fff; box-shadow: 0 18px 44px rgba(15, 30, 54, .08); }
.home-page main .hpv2-form-wrap .home-request-form-heading { margin-bottom: 22px; }

.home-page main a:focus-visible,
.home-page main button:focus-visible,
.home-page main input:focus-visible,
.home-page main select:focus-visible,
.home-page main textarea:focus-visible,
.home-page main summary:focus-visible { outline: 3px solid var(--hp-gold); outline-offset: 3px; }

@media (max-width: 980px) {
  .home-page main .hpv2-services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-page main .hpv2-image-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-page main .hpv2-audience-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-page main .hpv2-process-list { gap: 0 24px; }
  .home-page main .hpv2-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .home-page main .hpv2-section { padding: 48px 0; }
  .home-page main .hpv2-container { width: min(100% - 32px, 620px); }
  .home-page main .hpv2-split,
  .home-page main .hpv2-markets-layout,
  .home-page main .hpv2-request-layout { grid-template-columns: 1fr; gap: 36px; }
  .home-page main .hpv2-freight-figure { order: initial; }
  .home-page main .hpv2-services-grid,
  .home-page main .hpv2-image-grid,
  .home-page main .hpv2-audience-grid,
  .home-page main .hpv2-resource-columns { grid-template-columns: 1fr; }
  .home-page main .hpv2-facts { grid-template-columns: 1fr 1fr; }
  .home-page main .hpv2-facts > div { min-height: 108px; padding: 17px; }
  .home-page main .hpv2-route-rail { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-bottom: 38px; }
  .home-page main .hpv2-route-rail a:nth-child(2) { border-right: 0; }
  .home-page main .hpv2-route-rail a:nth-child(-n + 2) { border-bottom: 1px solid var(--hp-line); }
  .home-page main .hpv2-process-list { grid-template-columns: 1fr; }
  .home-page main .hpv2-process-list li { padding-bottom: 24px; }
  .home-page main .hpv2-market-links { grid-template-columns: 1fr; }
  .home-page main .hpv2-market-links a:nth-child(odd) { margin-right: 0; }
  .home-page main .hpv2-route-list a { grid-template-columns: 1fr auto; gap: 5px 14px; }
  .home-page main .hpv2-route-list a span:not([aria-hidden]) { grid-column: 1; }
  .home-page main .hpv2-route-list a > span:last-child { grid-column: 2; grid-row: 1 / span 2; }
  .home-page main .hpv2-service-card { min-height: 0; padding: 21px 20px 20px; }
  .home-page main .hpv2-service-card h3 { margin: 16px 0 8px; }
  .home-page main .hpv2-service-card p { margin-bottom: 16px; }
  .home-page .home-hero .hpv2-hero-kicker { gap: 8px; padding: 8px 11px; font-size: .62rem; letter-spacing: .07em; }
  .home-page .home-hero .hero-office-card { width: 100%; }
  .home-page .home-hero h1 { line-height: 1.04; }
  .home-page main .hpv2-image-grid a { min-height: 0; }
  .home-page main .hpv2-image-grid img { aspect-ratio: 1.35; }
  .home-page main .hpv2-image-grid a > span { padding: 16px 16px 18px; }
  .home-page main .hpv2-audience-grid a { min-height: 0; padding: 20px; }
  .home-page main .hpv2-audience-grid h3 { margin: 18px 0 8px; }
  .home-page main .hpv2-audience-grid p { margin-bottom: 14px; }
  .home-page .home-hero h1 { font-size: clamp(2.35rem, 10vw, 3.4rem); }
  html body.home-page[data-page-family] .home-hero .hero-primary-description { display: block !important; max-width: 100%; font-size: .95rem; line-height: 1.55; }
  html body.home-page[data-page-family] .home-hero .hero-actions { display: flex !important; flex-direction: column !important; gap: 10px; }
  html body.home-page[data-page-family] .home-hero .hero-actions .btn { width: 100%; min-height: 52px; }
  .home-page .home-hero .hero-carousel-wave { right: 0; bottom: 0; left: 0; }
  .home-page .home-hero .hero-media-controls {
    right: 16px;
    bottom: 14px;
    left: 16px;
    width: auto;
    grid-template-columns: 42px minmax(0, 1fr) 42px 42px;
  }
  .home-page .home-hero .hero-media-caption { display: none; }
  .home-page .home-hero .hero-carousel-count { justify-content: center; }
}

/* Keep the direct answer and proof row available on short desktop viewports.
   The shared legacy parity layer hides hero copy below 800px tall; the v2
   homepage needs this evidence visible for both buyers and answer engines. */
@media (min-width: 761px) and (max-height: 800px) {
  html body.home-page[data-page-family][data-page-family][data-page-family][data-page-family] .home-hero {
    height: auto !important;
    min-height: 900px !important;
    max-height: none !important;
  }
  html body.home-page[data-page-family][data-page-family][data-page-family][data-page-family] .home-hero .hero-primary-description,
  html body.home-page[data-page-family][data-page-family][data-page-family][data-page-family] .home-hero .hero-credentials {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
}

@media (max-width: 460px) {
  .home-page .home-hero .hero-media-controls {
    grid-template-columns: 38px minmax(0, 1fr) 38px 38px;
    gap: 6px;
  }
  .home-page .home-hero .hero-media-control {
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
  }
  .home-page main .hpv2-facts { grid-template-columns: 1fr; }
  .home-page main .hpv2-facts > div { min-height: 0; }
  .home-page main .hpv2-section-head h2,
  .home-page main .hpv2-copy h2,
  .home-page main .hpv2-request-intro h2 { font-size: 2rem; }
  .home-page main .hpv2-form-wrap { padding: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .home-page main .hpv2-service-card,
  .home-page main .hpv2-image-grid img { transition: none; }
  .home-page .home-hero .hero-carousel-wave span.running { animation: none; width: 100%; }
}

/* Rich homepage service ledger: three intentional columns (two routes plus
   the decision file) keep the record visually complete on wide screens. */
@media (min-width: 701px) {
  .home-page main .home-service-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .home-page main .home-service-group-shipping .home-service-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-page main .home-service-record {
    min-height: 100%;
    padding: 25px 23px 22px;
    background: linear-gradient(155deg, #ffffff 0%, #f7f9fc 100%);
    border-left: 1px solid rgba(15, 30, 54, .12);
    box-shadow: inset 4px 0 0 var(--service-accent), -10px 0 24px rgba(7, 17, 30, .035);
  }

  .home-page main .home-service-record h4 {
    margin-bottom: 18px;
    font-size: 1.2rem;
    line-height: 1.15;
  }

  .home-page main .home-service-record dl {
    margin-top: auto;
  }

  .home-page main .home-service-record-note {
    display: grid;
    gap: 5px;
    margin-top: 17px;
    padding-top: 14px;
    border-top: 1px solid rgba(15, 30, 54, .12);
  }

  .home-page main .home-service-record-note span {
    color: var(--service-accent);
    font-size: .56rem;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
  }

  .home-page main .home-service-record-note strong {
    color: #435566;
    font-size: .73rem;
    line-height: 1.45;
  }

  .home-page main .home-service-record-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 17px;
    padding-top: 13px;
    color: var(--service-accent);
    border-top: 1px solid rgba(15, 30, 54, .12);
    font-size: .63rem;
    font-weight: 900;
    letter-spacing: .025em;
    text-decoration: none;
    text-transform: uppercase;
  }

  .home-page main .home-service-record-link span {
    font-size: 1rem;
    line-height: 1;
  }

  .home-page main .home-service-record-link:hover,
  .home-page main .home-service-record-link:focus-visible {
    color: var(--hp-blue, #2f6b63);
    text-decoration: underline;
    text-underline-offset: 4px;
  }
}

@media (max-width: 700px) {
  .home-page main .home-service-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-page main .home-service-record-note {
    display: grid;
    gap: 5px;
    margin-top: 13px;
    padding-top: 12px;
    border-top: 1px solid rgba(15, 30, 54, .1);
  }

  .home-page main .home-service-record-note span {
    color: var(--service-accent);
    font-size: .56rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .home-page main .home-service-record-note strong {
    color: #435566;
    font-size: .74rem;
    line-height: 1.45;
  }

  .home-page main .home-service-record-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 14px;
    padding-top: 12px;
    color: var(--service-accent);
    border-top: 1px solid rgba(15, 30, 54, .1);
    font-size: .61rem;
    font-weight: 900;
    letter-spacing: .02em;
    text-decoration: none;
    text-transform: uppercase;
  }
}
