/*
Theme Name: Vugo Modern
Theme URI: https://www.govugo.com/
Author: Vugo
Description: Modern Vugo WordPress theme based on the 2026 mobility media mockup.
Version: 0.1.0
Text Domain: vugo-modern
*/

:root {
  --ink: #161616;
  --ink-soft: #242424;
  --cream: #f7f3ea;
  --orange: #f47a20;
  --line-light: rgba(255, 255, 255, 0.2);
  --line-dark: rgba(22, 22, 22, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Aptos, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 5px;
}

.globalHeader {
  position: sticky;
  z-index: 100;
  top: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.25rem;
  min-height: 5.1rem;
  padding: 0 clamp(1.35rem, 5vw, 5rem);
  border-bottom: 1px solid rgba(247, 243, 234, 0.14);
  background: rgba(22, 22, 22, 0.94);
  color: white;
  backdrop-filter: blur(18px);
}

.headerBrand {
  display: grid;
  gap: 0.08rem;
  justify-items: start;
  width: min-content;
}

.headerBrand .wordmark {
  font-size: 1.52rem;
  line-height: 0.92;
}

.headerBrand > span:last-child {
  color: #bdb8b1;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.mainNav {
  display: flex;
  justify-content: center;
  justify-self: center;
  gap: 0.15rem;
  width: fit-content;
  padding: 0.34rem;
  border: 1px solid rgba(247, 243, 234, 0.16);
  border-radius: 999px;
  background: rgba(247, 243, 234, 0.07);
  box-shadow: inset 0 1px 0 rgba(247, 243, 234, 0.08);
}

.mainNav ul,
.mainNav li {
  display: contents;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mainNav li::marker {
  content: "";
}

.mainNav a {
  padding: 0.58rem 0.78rem;
  border-radius: 999px;
  color: #ddd8d0;
  font-size: 0.74rem;
  font-weight: 800;
  white-space: nowrap;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.mainNav a:hover {
  background: var(--cream);
  color: var(--ink);
}

.headerLogin {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.95rem;
  border: 1px solid var(--orange);
  border-radius: 999px;
  background: var(--orange);
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 900;
  box-shadow: 0 0.75rem 2rem rgba(244, 122, 32, 0.2);
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.headerLogin:hover {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--ink);
}

.mobileNav {
  display: none;
  justify-self: end;
}

.mobileNav summary {
  cursor: pointer;
  list-style: none;
  padding: 0.6rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 900;
}

.mobileNav summary::-webkit-details-marker {
  display: none;
}

.mobileNavPanel {
  position: absolute;
  top: calc(100% + 1px);
  right: 0;
  left: 0;
  display: grid;
  padding: 1rem 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: var(--ink);
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.28);
}

.mobileNavPanel a {
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
  font-weight: 800;
}

.mobileNavPanel .mobileLogin {
  margin-top: 0.75rem;
  padding: 0.9rem 1rem;
  border: 0;
  border-radius: 999px;
  background: var(--orange);
  color: var(--ink);
  text-align: center;
}

.section {
  padding: clamp(5rem, 9vw, 9rem) clamp(1.35rem, 5vw, 5rem);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--ink);
  color: white;
}

.heroBackdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.98) 0%, rgba(10, 10, 10, 0.88) 45%, rgba(10, 10, 10, 0.25) 100%),
    url("assets/img/vugo-campaign-collage.jpg") center/cover;
  opacity: 0.42;
  filter: saturate(0.75);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(to right, black, transparent 72%);
}

.siteHeader,
.heroContent {
  position: relative;
  z-index: 2;
}

.siteHeader {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem clamp(1.35rem, 5vw, 5rem);
  border-bottom: 1px solid var(--line-light);
}

.wordmark {
  width: fit-content;
  color: var(--orange);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0;
}

.brandTile {
  display: grid;
  width: clamp(7rem, 13vw, 12rem);
  aspect-ratio: 1;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 22%;
  background: var(--orange);
  color: var(--ink);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
  font-size: clamp(1.55rem, 3vw, 2.8rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.brandTileCompact {
  width: 6.5rem;
  margin-bottom: 2.5rem;
  font-size: 1.55rem;
}

.desktopNav {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 0.82rem;
  font-weight: 700;
}

.desktopNav a,
.footerLinkGroup a {
  transition: color 180ms ease;
}

.desktopNav a:hover,
.footerLinkGroup a:hover {
  color: var(--orange);
}

.portalButton {
  justify-self: end;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.portalButton:hover {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--ink);
}

.heroContent {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(20rem, 0.9fr);
  gap: clamp(3rem, 7vw, 8rem);
  align-items: center;
  min-height: calc(100svh - 154px);
  padding: clamp(4rem, 8vw, 7rem) clamp(1.35rem, 5vw, 5rem);
}

.heroCopy {
  max-width: 54rem;
}

.eyebrow {
  margin: 0 0 1.25rem;
  color: #6b645c;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 2px;
  margin-right: 0.65rem;
  vertical-align: 0.25em;
  background: var(--orange);
}

.eyebrow.light {
  color: #d2cdc4;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: "Aptos Display", Aptos, "Helvetica Neue", Arial, sans-serif;
}

h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(3.7rem, 7.6vw, 7.9rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.88;
}

h1 em {
  color: var(--orange);
  font-style: normal;
}

.heroIntro {
  max-width: 40rem;
  margin: 0;
  color: #e2ded6;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.55;
}

.buttonRow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.3rem;
}

.primaryButton {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-width: 13rem;
  padding: 0.95rem 1.1rem 0.95rem 1.25rem;
  border-radius: 999px;
  background: var(--orange);
  color: var(--ink);
  font-size: 0.83rem;
  font-weight: 900;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.primaryButton:hover {
  transform: translateY(-2px);
  background: var(--orange);
}

.arrow {
  display: inline-grid;
  width: 1.8rem;
  height: 1.8rem;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-size: 1rem;
}

.textLink {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.15rem;
  font-size: 0.83rem;
  font-weight: 800;
}

.lightLink {
  color: #f4efe7;
}

.heroVisual {
  position: relative;
}

.heroImageFrame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 1.5rem;
  background: #292929;
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.38);
  transform: rotate(1.5deg);
}

.heroImageFrame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 8, 8, 0.7), transparent 46%);
}

.heroImageFrame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 57% center;
}

.imageLabel {
  position: absolute;
  z-index: 1;
  right: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  color: white;
}

.imageLabel span {
  color: #d3cdc4;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.imageLabel strong {
  max-width: 11rem;
  font-size: 1.15rem;
  text-align: right;
}

.intentBadge {
  position: absolute;
  right: -1.25rem;
  bottom: 14%;
  display: grid;
  width: 8.5rem;
  height: 8.5rem;
  place-content: center;
  border: 8px solid var(--ink);
  border-radius: 50%;
  background: var(--orange);
  color: var(--ink);
  text-align: center;
  transform: rotate(-7deg);
}

.intentBadge span {
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
}

.intentBadge strong {
  max-width: 5rem;
  font-size: 1rem;
  line-height: 1.05;
}

.manifesto {
  background: var(--cream);
}

.manifesto .sectionHead {
  grid-template-columns: minmax(0, 1fr);
  gap: 1.35rem;
  align-items: start;
  max-width: 72rem;
}

.manifesto .sectionHead .eyebrow {
  margin-bottom: 0;
}

.manifesto .sectionHead h2 {
  max-width: 56rem;
}

.manifesto .sectionHead > p:last-child {
  max-width: 38rem;
  font-size: clamp(1rem, 1.45vw, 1.18rem);
}

.sectionHead {
  display: grid;
  grid-template-columns: 1fr minmax(24rem, 2fr) 1fr;
  gap: 3rem;
  align-items: end;
  padding-bottom: clamp(3rem, 6vw, 6rem);
  border-bottom: 1px solid var(--line-dark);
}

.sectionHead .eyebrow {
  align-self: start;
}

.sectionHead h2,
.surfaceIntro h2,
.proofCopy h2,
.coverageTitle h2,
.portalCopy h2,
.finalCta h2 {
  margin-bottom: 0;
  font-size: clamp(2.6rem, 5.2vw, 5.4rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.95;
}

.sectionHead > p:last-child {
  max-width: 24rem;
  margin: 0;
  color: #5f5952;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.principles article {
  min-height: 21rem;
  padding: 2.5rem;
  border-right: 1px solid var(--line-dark);
}

.principles article:first-child {
  padding-left: 0;
}

.principles article:last-child {
  border-right: 0;
}

.principleNumber,
.cardIndex {
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
}

.principles h3 {
  margin: 7rem 0 0.8rem;
  font-size: 2rem;
  letter-spacing: 0;
}

.principles p {
  max-width: 20rem;
  margin: 0;
  color: #625c55;
}

.surfaces {
  background: var(--ink);
  color: white;
}

.surfaceIntro {
  display: grid;
  grid-template-columns: 0.8fr 1.5fr 0.8fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.surfaceIntro .eyebrow {
  align-self: start;
}

.surfaceIntro > p:last-child {
  margin: 0;
  color: #c8c2b9;
}

.surfaceGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.surfaceCard {
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: 1.25rem;
  background: var(--ink-soft);
}

.surfaceImage {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.surfaceImage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent 45%);
}

.surfaceImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.75, 0.3, 1);
}

.surfaceCard:hover .surfaceImage img {
  transform: scale(1.025);
}

.surfaceTag {
  position: absolute;
  z-index: 1;
  right: 1rem;
  bottom: 1rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: var(--cream);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 900;
}

.surfaceCopy {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.25rem;
  padding: 1.5rem;
  align-items: start;
}

.surfaceCopy h3 {
  margin-bottom: 0.35rem;
  font-size: 1.7rem;
  letter-spacing: 0;
}

.surfaceCopy p {
  max-width: 30rem;
  margin: 0;
  color: #bdb8b1;
}

.proof {
  display: grid;
  grid-template-columns: minmax(18rem, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
  background: #0e0e0e;
  color: white;
}

.proofImage {
  position: relative;
  overflow: hidden;
  min-height: 40rem;
  border-radius: 50rem 50rem 1rem 1rem;
  background: #242424;
}

.proofImage img {
  width: 100%;
  height: 100%;
  min-height: 40rem;
  object-fit: cover;
  object-position: 32% center;
}

.proofImage::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  border-radius: inherit;
}

.proofCopy h2 {
  max-width: 46rem;
}

.proofIntro {
  max-width: 42rem;
  margin: 1.5rem 0 3.5rem;
  color: #c8c2b9;
  font-size: 1.08rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
}

.stat {
  display: grid;
  gap: 0.7rem;
  padding: 1.6rem 1.25rem 0 0;
}

.stat strong {
  color: var(--orange);
  font-size: clamp(1.8rem, 3vw, 3.1rem);
  letter-spacing: 0;
}

.stat span {
  color: #a9a49d;
  font-size: 0.76rem;
}

.coverage {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 3rem;
  background: var(--cream);
}

.coverageTitle h2 {
  max-width: 55rem;
}

.coverageIntro {
  align-self: end;
  max-width: 25rem;
  margin: 0;
  color: #5f5952;
}

.cityGrid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 3rem;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.cityGrid span {
  display: flex;
  gap: 1rem;
  align-items: center;
  min-height: 5.25rem;
  padding: 1.2rem;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  font-weight: 800;
}

.cityGrid b {
  color: var(--orange);
  font-size: 0.7rem;
}

.portal {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  background: var(--ink);
  color: white;
}

.portalMark {
  width: clamp(7rem, 13vw, 12rem);
  overflow: hidden;
  border-radius: 25%;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.18);
}

.portalMark img {
  width: 100%;
}

.portalCopy h2 {
  max-width: 51rem;
  font-size: clamp(2.5rem, 4.7vw, 4.8rem);
}

.portalCopy > p:last-child {
  max-width: 43rem;
  margin: 1.4rem 0 0;
  color: #d2cdc4;
}

.portalCta {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.7rem 0.7rem 0.7rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 900;
  white-space: nowrap;
}

.portalCta .arrow {
  background: var(--orange);
  color: var(--ink);
}

.finalCta {
  display: grid;
  min-height: 42rem;
  align-content: center;
  background: var(--orange);
  color: var(--ink);
}

.finalCta .eyebrow {
  color: var(--ink);
}

.finalCta .eyebrow::before {
  background: var(--ink);
}

.finalCta h2 {
  max-width: 66rem;
  font-size: clamp(3.2rem, 7vw, 7.6rem);
}

.finalCtaActions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
}

.darkButton {
  background: var(--ink);
  color: white;
}

.darkButton:hover {
  background: var(--cream);
  color: var(--ink);
}

.darkButton .arrow {
  background: var(--orange);
  color: var(--ink);
}

.finalCtaActions > span {
  font-size: 0.85rem;
  font-weight: 800;
}

.siteFooter {
  display: grid;
  grid-template-columns: minmax(15rem, 0.75fr) minmax(14rem, 0.55fr) minmax(26rem, 1.4fr);
  gap: clamp(2rem, 4vw, 4rem);
  padding: clamp(4.5rem, 8vw, 7rem) clamp(1.35rem, 5vw, 5rem) 2rem;
  border-top: 0.5rem solid var(--orange);
  background: var(--ink);
  color: white;
}

.footerBrandPanel,
.footerContactPanel {
  display: grid;
  align-content: start;
}

.footerBrandPanel {
  gap: 1.2rem;
}

.footerBrandPanel .wordmark {
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.9;
}

.footerBrandPanel p {
  max-width: 18rem;
  margin: 0;
  color: white;
  font-size: clamp(1.6rem, 2.7vw, 2.65rem);
  font-weight: 800;
  line-height: 1;
}

.footerBrandPanel span {
  max-width: 22rem;
  color: #aaa59e;
  font-size: 0.88rem;
}

.footerContactPanel {
  gap: 1rem;
}

.footerContactPanel .eyebrow {
  margin-bottom: 0;
}

.footerContactPanel > a {
  color: var(--orange);
  font-size: 1.05rem;
  font-weight: 800;
}

.footerContactPanel address {
  color: #aaa59e;
  font-size: 0.86rem;
  font-style: normal;
}

.footerSocials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.footerSocials a {
  padding: 0.4rem 0.62rem;
  border: 1px solid rgba(247, 243, 234, 0.18);
  border-radius: 999px;
  color: #ddd8d0;
  font-size: 0.68rem;
  font-weight: 900;
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.footerSocials a:hover {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--ink);
}

.footerLinkColumns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 3rem);
}

.footerLinkGroup {
  display: grid;
  align-content: start;
  gap: 0.7rem;
  padding-top: 0.2rem;
}

.footerLinkGroup h2 {
  margin: 0 0 0.4rem;
  color: white;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footerLinkGroup a {
  width: fit-content;
  color: #aaa59e;
  font-size: 0.84rem;
  font-weight: 800;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.footerLinkGroup a:hover {
  color: var(--orange);
  transform: translateX(3px);
}

.footerMeta {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: clamp(2rem, 4vw, 4rem);
  padding-top: 1.35rem;
  border-top: 1px solid var(--line-light);
  color: #77736d;
  font-size: 0.68rem;
}

.audiencePaths {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: clamp(3rem, 6vw, 5rem);
}

.audiencePath {
  display: grid;
  align-content: start;
  min-height: 32rem;
  padding: clamp(2rem, 4vw, 4rem);
  border-radius: 1.25rem;
  transition: transform 220ms ease;
}

.audiencePath:hover {
  transform: translateY(-5px);
}

.audiencePath h3 {
  max-width: 36rem;
  margin: 7rem 0 1.5rem;
  font-size: clamp(2rem, 3.7vw, 3.8rem);
  letter-spacing: 0;
  line-height: 0.98;
}

.audiencePath p {
  max-width: 32rem;
  margin: 0;
}

.darkPath {
  background: var(--ink);
  color: white;
}

.darkPath p {
  color: #bdb8b1;
}

.orangePath {
  background: var(--orange);
  color: var(--ink);
}

.orangePath .principleNumber {
  color: var(--ink);
}

.pathLink {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 2.5rem;
  font-size: 0.8rem;
  font-weight: 900;
}

.orangePath .arrow {
  background: var(--ink);
}

.pageHero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(22rem, 0.95fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
  min-height: calc(100svh - 4.8rem);
  padding: clamp(4rem, 8vw, 8rem) clamp(1.35rem, 5vw, 5rem);
  overflow: hidden;
  background: var(--ink);
  color: white;
}

.pageHeroCopy {
  max-width: 58rem;
}

.pageHero h1 {
  margin-bottom: 1.7rem;
  font-size: clamp(3.6rem, 6.5vw, 7rem);
  line-height: 0.91;
}

.pageHero h1 em {
  color: var(--orange);
}

.pageHeroIntro {
  max-width: 43rem;
  margin: 0;
  color: #d0cbc3;
  font-size: clamp(1.05rem, 1.55vw, 1.3rem);
  line-height: 1.6;
}

.pageHeroImage {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 1.5rem;
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.36);
}

.pageHeroImage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.58), transparent 45%);
}

.pageHeroImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pageHeroImage > span {
  position: absolute;
  z-index: 1;
  right: 1.25rem;
  bottom: 1.25rem;
  left: 1.25rem;
  color: white;
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.textOnlyHero {
  grid-template-columns: minmax(0, 1fr);
  min-height: 38rem;
}

.textOnlyHero .pageHeroCopy {
  max-width: 78rem;
}

.featureSection {
  padding: clamp(5rem, 9vw, 9rem) clamp(1.35rem, 5vw, 5rem);
  background: var(--cream);
}

.featureSectionHead {
  display: grid;
  grid-template-columns: 0.7fr 1.7fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 4rem;
}

.featureSectionHead h2,
.formatCopy h2,
.partnerPaths h2,
.storySection h2,
.contactPaths h2,
.contactDetails h2,
.loginPanel h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 5.2rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.96;
}

.featureGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.featureGrid article {
  min-height: 21rem;
  padding: 2rem;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.featureGrid article > span {
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 900;
}

.featureGrid h3 {
  margin: 5.5rem 0 0.8rem;
  font-size: 1.65rem;
  letter-spacing: 0;
}

.featureGrid p {
  margin: 0;
  color: #625c55;
}

.servicesCatalog {
  display: grid;
  gap: clamp(3rem, 6vw, 5rem);
  padding: clamp(5rem, 9vw, 9rem) clamp(1.35rem, 5vw, 5rem);
  background: var(--cream);
}

.servicesCatalogIntro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.45fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
}

.servicesCatalogIntro h2 {
  max-width: 72rem;
  margin: 0;
  font-size: clamp(2.8rem, 5.8vw, 6.2rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.94;
}

.servicesCatalogIntro > p:last-child {
  margin: 0;
  color: #5f5952;
  font-weight: 650;
}

.serviceGroups {
  display: grid;
  gap: 1px;
  background: var(--line-dark);
}

.serviceGroup {
  display: grid;
  grid-template-columns: minmax(18rem, 0.7fr) minmax(0, 1.3fr);
  min-height: 35rem;
  background: var(--cream);
}

.serviceGroupHead {
  display: grid;
  align-content: start;
  padding: clamp(2rem, 4.5vw, 4.5rem);
  border-right: 1px solid var(--line-dark);
}

.serviceGroupHead > span {
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
}

.serviceGroupHead .eyebrow {
  margin: 4rem 0 1.2rem;
}

.serviceGroupHead h3 {
  max-width: 36rem;
  margin: 0 0 1.2rem;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.98;
}

.serviceGroupHead > p:last-child {
  max-width: 34rem;
  margin: 0;
  color: #625c55;
}

.serviceCards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-left: 0;
}

.serviceCards article {
  display: grid;
  align-content: end;
  min-height: 17rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.serviceCards article:hover {
  background: var(--orange);
  transform: translateY(-2px);
}

.serviceCards h4 {
  margin: 0 0 0.75rem;
  font-family: "Aptos Display", Aptos, "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.45rem, 2.4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

.serviceCards p {
  max-width: 35rem;
  margin: 0;
  color: #625c55;
}

.serviceCards article:hover p {
  color: var(--ink);
}

.formatSection {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 48rem;
  background: var(--ink);
  color: white;
}

.formatImage {
  min-height: 40rem;
}

.formatImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.formatCopy {
  display: grid;
  align-content: center;
  padding: clamp(3rem, 7vw, 7rem);
}

.formatList {
  display: grid;
  margin-top: 3rem;
  border-top: 1px solid var(--line-light);
}

.formatList span {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line-light);
  color: #cbc6bf;
  font-size: 0.83rem;
  font-weight: 800;
}

.quoteSection {
  padding: clamp(5rem, 10vw, 10rem) clamp(1.35rem, 10vw, 10rem);
  background: var(--orange);
}

.quoteSection blockquote {
  max-width: 75rem;
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 5.5rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

.quoteSection p {
  margin: 2rem 0 0;
  font-size: 0.78rem;
  font-weight: 900;
}

.darkQuote {
  background: var(--ink);
  color: white;
}

.darkQuote p {
  color: #d2cdc4;
}

.pageCta {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(18rem, 0.6fr);
  gap: 4rem;
  align-items: end;
  min-height: 36rem;
  padding: clamp(5rem, 9vw, 9rem) clamp(1.35rem, 5vw, 5rem);
  background: var(--orange);
}

.pageCta h2 {
  max-width: 65rem;
  margin: 0;
  font-size: clamp(3rem, 6.4vw, 6.8rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.93;
}

.pageCta > div:last-child p {
  max-width: 30rem;
  margin: 0 0 2rem;
  font-weight: 650;
}

.partnerPaths {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  padding: 1px;
  background: var(--line-dark);
}

.partnerPaths article {
  min-height: 38rem;
  padding: clamp(3rem, 6vw, 6rem);
  background: var(--cream);
}

.partnerPaths article:nth-child(2) {
  background: var(--cream);
}

.partnerPaths h2 {
  margin-bottom: 1.5rem;
}

.partnerPaths article > p:not(.eyebrow) {
  max-width: 35rem;
  color: #5e5851;
}

.partnerPaths .textLink {
  margin-top: 2rem;
}

.storySection {
  padding: clamp(5rem, 10vw, 10rem) clamp(1.35rem, 8vw, 8rem);
  background: var(--cream);
}

.storySection h2 {
  max-width: 78rem;
}

.storyColumns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin: 4rem 0 0 34%;
}

.storyColumns p {
  margin: 0;
  color: #5f5952;
}

.aboutAudience {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--ink);
}

.aboutAudience a {
  display: grid;
  min-height: 31rem;
  padding: 2.5rem;
  border-right: 1px solid var(--line-light);
  color: white;
  transition: background 180ms ease;
}

.aboutAudience a:hover {
  background: var(--ink-soft);
}

.aboutAudience a > span {
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.aboutAudience h3 {
  margin: auto 0 2rem;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  letter-spacing: 0;
  line-height: 1;
}

.aboutAudience .arrow {
  justify-self: end;
}

.contactPaths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--cream);
}

.contactPaths article {
  min-height: 44rem;
  padding: clamp(2rem, 4vw, 4rem);
  border-right: 1px solid var(--line-dark);
}

.contactPaths article > span {
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
}

.contactPaths .eyebrow {
  margin-top: 7rem;
}

.contactPaths h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(2.2rem, 3.8vw, 4rem);
}

.contactPaths article > p:not(.eyebrow) {
  min-height: 7rem;
  color: #5e5851;
}

.contactDetails {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 0.8fr);
  gap: 3rem;
  padding: clamp(5rem, 9vw, 9rem) clamp(1.35rem, 5vw, 5rem);
  background: var(--ink);
  color: white;
}

.contactDetails div:not(:first-child) {
  display: grid;
  align-content: end;
  gap: 0.55rem;
}

.contactDetails div:not(:first-child) > span {
  color: #aaa59e;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contactDetails a,
.contactDetails address {
  color: white;
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 700;
}

.legalGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 1px;
  gap: 1px;
  background: var(--line-dark);
}

.legalGrid > a {
  display: grid;
  min-height: 28rem;
  padding: clamp(2rem, 5vw, 5rem);
  background: var(--cream);
  transition: background 180ms ease;
}

.legalGrid > a:hover {
  background: var(--cream);
}

.legalGrid > a > span {
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
}

.legalGrid h2 {
  align-self: end;
  margin: 5rem 0 0.8rem;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  letter-spacing: 0;
}

.legalGrid p {
  max-width: 32rem;
  margin: 0;
  color: #5f5952;
}

.legalGrid strong {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line-dark);
  font-size: 0.8rem;
}

.legalNote {
  padding: 2rem clamp(1.35rem, 5vw, 5rem);
  background: var(--cream);
}

.legalNote p {
  max-width: 70rem;
  margin: 0;
  color: #6b645c;
  font-size: 0.8rem;
}

.loginPage {
  background: var(--ink);
}

.loginShell {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(22rem, 0.85fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
  min-height: calc(100svh - 4.8rem);
  padding: clamp(4rem, 8vw, 8rem) clamp(1.35rem, 7vw, 7rem);
  color: white;
}

.loginBrand h1 {
  max-width: 56rem;
  font-size: clamp(3.2rem, 6vw, 6.4rem);
}

.loginBrand h1 em {
  color: var(--orange);
}

.loginBrand > p:last-child {
  max-width: 42rem;
  color: #c7c1b9;
}

.loginPanel {
  padding: clamp(2rem, 4vw, 3.5rem);
  border-radius: 1.25rem;
  background: var(--cream);
  color: var(--ink);
}

.statusPill {
  display: inline-block;
  margin-bottom: 2.5rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: var(--orange);
  color: var(--ink);
  font-size: 0.65rem;
  font-weight: 900;
  text-transform: uppercase;
}

.loginPanel h2 {
  font-size: clamp(2.3rem, 4vw, 4rem);
}

.loginPanel > p {
  color: #5f5952;
}

.loginPreviewFields {
  display: grid;
  gap: 0.8rem;
  margin: 2rem 0 1rem;
}

.loginPreviewFields span {
  padding: 1rem;
  border: 1px solid var(--line-dark);
  border-radius: 0.6rem;
  background: var(--cream);
  color: #8a837a;
  font-size: 0.78rem;
}

.loginPanel button {
  width: 100%;
  padding: 1rem;
  border: 0;
  border-radius: 999px;
  background: #b8b2aa;
  color: #4a4540;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 900;
}

.loginPanel > a {
  display: block;
  margin-top: 1.4rem;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
}

.newsPreview {
  background: var(--cream);
}

.newsPreviewHead {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 3rem;
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.newsPreviewHead h2,
.faqIntro h2 {
  max-width: 58rem;
  margin: 0;
  font-size: clamp(2.8rem, 5.6vw, 5.8rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.95;
}

.newsGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.newsGrid > a {
  display: grid;
  min-height: 29rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.newsGrid > a:hover {
  background: var(--orange);
  transform: translateY(-3px);
}

.newsIndex {
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
}

.newsGrid > a:hover .newsIndex,
.newsGrid > a:hover .newsMeta span {
  color: var(--ink);
}

.newsMeta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  align-self: end;
  margin-top: 5rem;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.newsMeta span {
  color: var(--orange);
}

.newsMeta time {
  color: #6b645c;
}

.newsGrid h3 {
  margin: 1.1rem 0 2.5rem;
  font-size: clamp(1.65rem, 2.5vw, 2.5rem);
  letter-spacing: 0;
  line-height: 1.04;
}

.newsGrid strong,
.newsArchive strong {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--line-dark);
  font-size: 0.78rem;
}

.newsArchive {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  padding: 1px;
  background: var(--line-dark);
}

.newsArchive > a {
  display: grid;
  min-height: 38rem;
  padding: clamp(2rem, 5vw, 5rem);
  background: var(--cream);
  transition: background 180ms ease;
}

.newsArchive > a:hover {
  background: var(--orange);
}

.newsArchive > a:hover .newsIndex,
.newsArchive > a:hover .newsMeta span {
  color: var(--ink);
}

.newsArchive h2 {
  max-width: 39rem;
  margin: 1.2rem 0;
  font-size: clamp(2.2rem, 4vw, 4.25rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.98;
}

.newsArchive p {
  max-width: 35rem;
  margin: 0 0 3rem;
  color: #5f5952;
}

.faqSection {
  display: grid;
  grid-template-columns: minmax(18rem, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(3rem, 8vw, 8rem);
  padding: clamp(5rem, 9vw, 9rem) clamp(1.35rem, 5vw, 5rem);
  background: var(--cream);
}

.faqIntro {
  align-self: start;
}

.faqIntro > p:last-child {
  max-width: 32rem;
  color: #5f5952;
}

.faqList {
  border-top: 1px solid var(--line-dark);
}

.faqList details {
  border-bottom: 1px solid var(--line-dark);
}

.faqList summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1.25rem;
  align-items: start;
  padding: 1.7rem 0;
  cursor: pointer;
  list-style: none;
}

.faqList summary::-webkit-details-marker {
  display: none;
}

.faqList summary > span,
.faqList summary small {
  color: var(--orange);
  font-size: 0.68rem;
  font-weight: 900;
}

.faqList summary div {
  display: grid;
  gap: 0.35rem;
}

.faqList summary small {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faqList summary strong {
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  letter-spacing: 0;
  line-height: 1.2;
}

.faqList summary b {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  font-size: 1.15rem;
  transition: transform 180ms ease;
}

.faqList details[open] summary b {
  transform: rotate(45deg);
}

.faqList details > p {
  max-width: 48rem;
  margin: 0;
  padding: 0 3.25rem 2rem;
  color: #5f5952;
}

@media (max-width: 1000px) {
  .mainNav,
  .headerLogin {
    display: none;
  }

  .globalHeader {
    grid-template-columns: 1fr auto;
  }

  .mobileNav {
    display: block;
  }

  .desktopNav {
    display: none;
  }

  .siteHeader {
    grid-template-columns: 1fr auto;
  }

  .heroContent,
  .sectionHead,
  .surfaceIntro,
  .proof,
  .coverage,
  .portal,
  .pageHero,
  .featureSectionHead,
  .formatSection,
  .pageCta,
  .loginShell,
  .faqSection,
  .servicesCatalogIntro,
  .serviceGroup {
    grid-template-columns: 1fr;
  }

  .heroContent {
    min-height: auto;
    padding-top: 5rem;
  }

  .heroVisual {
    max-width: 34rem;
    margin-left: auto;
  }

  .pageHeroImage {
    max-width: 38rem;
    aspect-ratio: 5 / 4;
    margin-left: auto;
  }

  .heroImageFrame {
    aspect-ratio: 5 / 4;
  }

  .sectionHead {
    gap: 1rem;
  }

  .sectionHead > p:last-child,
  .surfaceIntro > p:last-child {
    max-width: 40rem;
  }

  .principles article {
    min-height: 18rem;
    padding: 2rem 1.5rem;
  }

  .principles h3 {
    margin-top: 5rem;
  }

  .surfaceIntro {
    gap: 1rem;
  }

  .proofImage {
    min-height: 31rem;
    border-radius: 18rem 18rem 1rem 1rem;
  }

  .proofImage img {
    min-height: 31rem;
  }

  .coverageIntro {
    max-width: 42rem;
  }

  .cityGrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featureGrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .newsGrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .formatImage {
    max-height: 40rem;
  }

  .partnerPaths,
  .aboutAudience,
  .contactPaths,
  .contactDetails {
    grid-template-columns: repeat(2, 1fr);
  }

  .contactPaths article:last-child,
  .contactDetails div:first-child {
    grid-column: 1 / -1;
  }

  .contactDetails div:first-child {
    margin-bottom: 2rem;
  }

  .pageCta {
    align-items: start;
  }

  .portalCta {
    width: fit-content;
  }

  .siteFooter {
    grid-template-columns: 1fr 1fr;
  }

  .footerLinkColumns,
  .footerMeta {
    grid-column: 1 / -1;
  }

  .serviceGroupHead {
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }
}

@media (max-width: 700px) {
  .section {
    padding: 4.5rem 1.25rem;
  }

  .siteHeader {
    padding: 1.2rem 1.25rem;
  }

  .portalButton {
    padding: 0.6rem 0.8rem;
  }

  .heroContent {
    gap: 3rem;
    padding: 4rem 1.25rem;
  }

  h1 {
    font-size: clamp(3.45rem, 17vw, 5rem);
  }

  .heroImageFrame {
    aspect-ratio: 4 / 4.8;
  }

  .intentBadge {
    right: -0.75rem;
    width: 7rem;
    height: 7rem;
  }

  .principles,
  .surfaceGrid,
  .stats,
  .cityGrid,
  .siteFooter,
  .audiencePaths,
  .newsGrid,
  .newsArchive,
  .featureGrid,
  .partnerPaths,
  .aboutAudience,
  .contactPaths,
  .contactDetails,
  .legalGrid,
  .storyColumns,
  .serviceCards {
    grid-template-columns: 1fr;
  }

  .serviceCards article {
    min-height: 14rem;
  }

  .footerMeta {
    display: grid;
  }

  .footerLinkColumns {
    grid-template-columns: 1fr;
  }

  .footerBrandPanel p {
    max-width: 22rem;
  }

  .principles article,
  .principles article:first-child {
    min-height: auto;
    padding: 2rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .principles article:last-child {
    border-bottom: 0;
  }

  .principles h3 {
    margin-top: 3rem;
  }

  .surfaceCopy {
    grid-template-columns: auto 1fr;
  }

  .surfaceCopy .arrow {
    display: none;
  }

  .stats {
    gap: 1rem;
  }

  .stat {
    grid-template-columns: 8rem 1fr;
    align-items: center;
    padding-top: 1rem;
    border-bottom: 1px solid var(--line-light);
  }

  .coverage {
    gap: 1.5rem;
  }

  .cityGrid {
    margin-top: 1.5rem;
  }

  .audiencePath {
    min-height: 28rem;
  }

  .audiencePath h3 {
    margin-top: 4rem;
  }

  .pageHero {
    min-height: auto;
    padding-top: 4.5rem;
  }

  .pageHeroImage {
    aspect-ratio: 4 / 4.8;
  }

  .featureGrid article {
    min-height: 18rem;
  }

  .formatSection {
    min-height: auto;
  }

  .formatImage {
    min-height: 26rem;
  }

  .formatCopy {
    padding: 4rem 1.25rem;
  }

  .pageCta {
    min-height: 32rem;
  }

  .partnerPaths article {
    min-height: 30rem;
  }

  .storyColumns {
    gap: 1.5rem;
    margin: 3rem 0 0;
  }

  .aboutAudience a {
    min-height: 24rem;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .contactPaths article {
    min-height: auto;
    padding: 4rem 1.25rem;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .contactPaths .eyebrow {
    margin-top: 3.5rem;
  }

  .contactPaths article > p:not(.eyebrow) {
    min-height: auto;
    margin-bottom: 2rem;
  }

  .contactPaths article:last-child,
  .contactDetails div:first-child {
    grid-column: auto;
  }

  .contactDetails {
    gap: 2.5rem;
  }

  .contactDetails div:not(:first-child) {
    align-content: start;
  }

  .legalGrid > a {
    min-height: 24rem;
  }

  .loginShell {
    min-height: auto;
  }

  .portalMark {
    width: 7rem;
  }

  .finalCta {
    min-height: 36rem;
  }

  .siteFooter {
    gap: 1.5rem;
  }

  .newsPreviewHead {
    grid-template-columns: 1fr;
  }

  .newsGrid > a,
  .newsArchive > a {
    min-height: 28rem;
  }

  .faqList details > p {
    padding-left: 3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
