:root {
  --brand: #00acc1;
  --brand-deep: #008fa3;
  --ink: #111111;
  --muted: #5b5b55;
  --soft: #f1f1ec;
  --rule: #d7d7cf;
  --white: #ffffff;
  --display: "Arial Black", "Arial Narrow", Arial, sans-serif;
  --body: Arial, Helvetica, sans-serif;
  --gutter: clamp(1.25rem, 4vw, 4.5rem);
  --container: 100rem;
  --transition: 220ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 7.5rem;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-150%);
  transition: transform var(--transition);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: rgb(255 255 255 / 96%);
  border-bottom: 1px solid var(--ink);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 28px rgb(0 0 0 / 8%);
  backdrop-filter: blur(12px);
}

.header-inner {
  width: min(100%, var(--container));
  min-height: 6.75rem;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: minmax(14rem, 1fr) auto minmax(14rem, 1fr);
  align-items: center;
  gap: 2.5rem;
}

.brand-lockup,
.footer-brand {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.1rem, 1.5vw, 1.55rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.brand-lockup {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-mark {
  width: 3rem;
  height: 3rem;
  overflow: hidden;
  background: #00acc1;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2.75rem);
}

.site-nav a {
  position: relative;
  padding: 0.35rem 0;
  font-size: 0.96rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--brand);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  min-height: 3.4rem;
  padding: 0.8rem 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--ink);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    background var(--transition),
    transform var(--transition);
}

.header-cta:hover,
.header-cta:focus-visible {
  background: #2a2a27;
  transform: translateY(-2px);
}

.header-cta svg,
.button-dark svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.menu-toggle {
  display: none;
}

.hero {
  min-height: calc(100vh - 6.75rem);
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 47%) minmax(0, 53%);
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-height: 48rem;
  padding: clamp(4rem, 7vw, 7.5rem) clamp(2rem, 5vw, 5.5rem) 4rem var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.hero-copy::before {
  position: absolute;
  top: 0;
  right: 0;
  left: var(--gutter);
  height: 1px;
  background: var(--ink);
  content: "";
}

.hero-copy::after {
  position: absolute;
  top: -1px;
  right: -2.05rem;
  width: 4.2rem;
  height: 4.2rem;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--white);
  content: "";
  transform: rotate(45deg);
}

.hero h1 {
  max-width: 15ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.25rem, 4.3vw, 5.2rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.93;
}

.hero h1 span {
  color: var(--ink);
}

.hero-intro {
  max-width: 35rem;
  margin: clamp(2rem, 3.2vw, 3.25rem) 0 0;
  padding-left: 1.25rem;
  border-left: 2px solid var(--ink);
  color: #454541;
  font-size: clamp(1rem, 1.35vw, 1.3rem);
  line-height: 1.5;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.button {
  min-height: 4.2rem;
  padding: 1rem 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.3rem;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  transition:
    background var(--transition),
    color var(--transition),
    transform var(--transition);
}

.button svg,
.audience a svg,
.map-link svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.7;
}

.button-primary {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}

.button-secondary {
  background: var(--white);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--ink);
  color: var(--white);
}

.hero-proof {
  margin-top: clamp(2rem, 3vw, 3.2rem);
  display: flex;
  flex-wrap: wrap;
  gap: 1.35rem 2.4rem;
}

.proof-item {
  min-height: 2.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: #4b4b47;
  font-size: 0.95rem;
}

.proof-item svg {
  width: 1.6rem;
  height: 1.6rem;
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.proof-item strong {
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.6rem;
  letter-spacing: -0.04em;
}

.hero-media {
  position: relative;
  min-height: 48rem;
  overflow: hidden;
  background: var(--white);
  border-left: 1px solid var(--rule);
  isolation: isolate;
}

.hero-media .orbit-art {
  position: absolute;
  inset: 2.5rem 1.5rem 4.5rem;
  width: calc(100% - 3rem);
  height: calc(100% - 7rem);
  object-fit: contain;
  transform: translate3d(var(--orbit-x, 0px), var(--orbit-y, 0px), 0);
  transition: transform 500ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.hero-media-label {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 3.7rem;
  padding: 0.8rem clamp(1rem, 2.5vw, 2.5rem);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--brand);
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-media-label span + span::before {
  margin-right: 1.5rem;
  content: "/";
}

.section {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: clamp(5.5rem, 9vw, 9rem) var(--gutter);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(3rem, 0.35fr) minmax(18rem, 1.25fr) minmax(18rem, 1fr);
  gap: clamp(1.5rem, 4vw, 5rem);
  align-items: start;
}

.section-index,
.contact-index {
  color: #797973;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.section-heading h2,
.contact h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.8rem, 5vw, 5.65rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.section-copy {
  max-width: 38rem;
  padding-top: 0.5rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.25rem);
}

.section-copy p {
  margin: 0;
}

.section-copy p + p {
  margin-top: 1.3rem;
}

.about {
  background: var(--white);
}

.facts {
  margin-top: clamp(4rem, 7vw, 7rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.fact {
  min-height: 12rem;
  padding: 2rem clamp(1rem, 2vw, 2rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.fact + .fact {
  border-left: 1px solid var(--rule);
}

.fact strong {
  font-family: var(--display);
  font-size: clamp(2.5rem, 4vw, 4.75rem);
  letter-spacing: -0.06em;
  line-height: 1;
}

.fact span {
  max-width: 12rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.brands {
  background: var(--white);
  border-top: 1px solid var(--rule);
}

.brands .section-grid {
  grid-template-columns: 1fr;
  gap: 1rem;
}

.brands .section-index {
  width: 3rem;
  padding-bottom: 0.45rem;
  border-bottom: 4px solid var(--brand);
  color: var(--brand-deep);
  font-size: 1.05rem;
}

.brands .section-copy {
  max-width: 58rem;
  padding-top: 0;
}

.brand-carousel {
  margin-top: clamp(3rem, 5.5vw, 5.5rem);
  display: grid;
  grid-template-columns: 3.75rem minmax(0, 1fr) 3.75rem;
  gap: clamp(1rem, 2.5vw, 2.5rem);
  align-items: center;
}

.brand-viewport {
  min-width: 0;
  overflow: hidden;
}

.brand-track {
  min-height: 15rem;
  display: grid;
  grid-template-columns:
    minmax(0, 0.65fr) minmax(0, 0.85fr) minmax(0, 1.6fr)
    minmax(0, 0.85fr) minmax(0, 0.65fr);
  align-items: center;
  transform: translateX(0);
}

.brand-slide {
  position: relative;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.45;
  transform: scale(0.62);
  transition:
    opacity 360ms cubic-bezier(0.2, 0.75, 0.25, 1),
    transform 360ms cubic-bezier(0.2, 0.75, 0.25, 1),
    filter 360ms ease;
}

.brand-slide[data-offset="-1"],
.brand-slide[data-offset="1"] {
  z-index: 1;
  opacity: 0.72;
  transform: scale(0.82);
}

.brand-slide[data-offset="0"] {
  z-index: 2;
  opacity: 1;
  transform: scale(1.08);
}

.brand-select {
  width: 100%;
  min-width: 0;
  height: 11rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.brand-select img {
  width: 100%;
  height: 8.5rem;
  object-fit: contain;
}

.brand-slide:not([data-offset="0"]) .brand-select:hover,
.brand-slide:not([data-offset="0"]) .brand-select:focus-visible {
  transform: scale(1.05);
}

.brand-arrow {
  width: 3.75rem;
  height: 3.75rem;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  transition:
    background var(--transition),
    color var(--transition),
    transform var(--transition);
}

.brand-arrow:hover,
.brand-arrow:focus-visible {
  background: var(--brand);
  color: var(--ink);
  transform: translateY(-2px);
}

.brand-arrow svg {
  width: 1.45rem;
  height: 1.45rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.6;
}

.brand-detail {
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  padding-top: clamp(2rem, 3vw, 3rem);
  display: grid;
  grid-template-columns: minmax(3.5rem, 1fr) minmax(18rem, 54rem) minmax(3.5rem, 1fr);
  gap: 1.5rem;
  border-top: 1px solid var(--ink);
}

.brand-detail-copy {
  grid-column: 2;
  text-align: center;
}

.brand-detail h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.7rem, 2.5vw, 2.7rem);
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.brand-detail p {
  max-width: 50rem;
  margin: 0.9rem auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  line-height: 1.5;
}

.brand-position {
  grid-column: 3;
  justify-self: end;
  align-self: end;
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-position strong {
  color: var(--brand-deep);
  font-size: 1.35rem;
}

.network {
  padding-bottom: 0;
}

.audience-split {
  margin: clamp(4rem, 7vw, 7rem) calc(var(--gutter) * -1) 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.audience {
  min-height: 32rem;
  padding: clamp(2.5rem, 5vw, 5.5rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.audience-light {
  background: var(--brand);
}

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

.audience-number {
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.audience h3 {
  max-width: 10ch;
  margin: auto 0 1.5rem;
  font-family: var(--display);
  font-size: clamp(2.5rem, 4.5vw, 5.25rem);
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.audience p {
  max-width: 34rem;
  margin: 0;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
}

.audience a {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
  font-weight: 900;
  text-underline-offset: 0.35rem;
}

.contact {
  width: min(100%, var(--container));
  margin: 0 auto;
  background: var(--brand);
}

.contact-main {
  padding: clamp(5rem, 8vw, 8.5rem) var(--gutter);
  display: grid;
  grid-template-columns: minmax(20rem, 1.4fr) minmax(18rem, 0.85fr) minmax(10rem, 0.45fr);
  gap: clamp(2.5rem, 6vw, 7rem);
  align-items: end;
}

.contact-index {
  display: block;
  margin-bottom: 1.5rem;
  color: #083c43;
}

.contact-copy p {
  max-width: 43rem;
  margin: 2rem 0;
  color: #0b353a;
  font-size: clamp(1rem, 1.35vw, 1.25rem);
}

.button-dark {
  width: fit-content;
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: #2a2a27;
}

.contact-details {
  padding-top: 2rem;
  border-top: 1px solid var(--ink);
}

.detail-label {
  display: block;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-details address {
  color: #0b353a;
  font-style: normal;
  font-size: 1rem;
}

.map-link {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 900;
  text-underline-offset: 0.3rem;
}

.contact-qr {
  text-align: center;
}

.qr-frame {
  padding: 0.6rem;
  background: var(--white);
  border: 1px solid var(--ink);
}

.qr-frame img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.contact-qr p {
  margin: 0.8rem 0 0;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-frame {
  height: 27rem;
  border-top: 1px solid var(--ink);
  filter: grayscale(1) contrast(1.05);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.site-footer {
  width: min(100%, var(--container));
  min-height: 8.5rem;
  margin: 0 auto;
  padding: 2rem var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  background: var(--ink);
  color: var(--white);
}

.site-footer p {
  margin: 0;
  color: #c9c9c1;
  font-size: 0.82rem;
}

.site-footer p:last-child {
  justify-self: end;
}

.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition:
    opacity 650ms ease,
    transform 650ms cubic-bezier(0.22, 0.8, 0.28, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid #2f7bf2;
  outline-offset: 4px;
}

@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: 1fr auto auto;
    gap: 1.5rem;
  }

  .site-nav {
    gap: 1.3rem;
  }

  .header-cta span {
    display: none;
  }

  .header-cta {
    width: 3.4rem;
    padding: 0;
    justify-content: center;
  }

  .hero {
    grid-template-columns: minmax(0, 52%) minmax(0, 48%);
  }

  .hero h1 {
    font-size: clamp(3.3rem, 5.8vw, 5.5rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .contact-main {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .contact-qr {
    display: none;
  }
}

@media (max-width: 900px) {
  .header-inner {
    min-height: 5.5rem;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: auto;
    padding-top: 5rem;
    padding-bottom: 4rem;
  }

  .hero-copy::after {
    display: none;
  }

  .hero-media {
    min-height: 33rem;
    border-top: 1px solid var(--rule);
    border-left: 0;
  }

  .section-grid {
    grid-template-columns: 3rem 1fr;
  }

  .section-copy {
    grid-column: 2;
  }

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

  .fact:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--rule);
  }

  .fact:nth-child(4) {
    border-top: 1px solid var(--rule);
  }

  .brand-track {
    min-height: 13rem;
  }

  .brand-select {
    height: 10rem;
    padding: 0.75rem;
  }

  .brand-select img {
    height: 7.5rem;
  }

  .audience-split {
    grid-template-columns: 1fr;
  }

  .audience {
    min-height: 29rem;
  }

  .contact-main {
    grid-template-columns: 1fr;
  }

  .contact-details {
    max-width: 35rem;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer p:first-of-type {
    display: none;
  }
}

@media (max-width: 760px) {
  :root {
    --gutter: 1.25rem;
  }

  .site-header {
    position: sticky;
  }

  .site-header.is-scrolled {
    position: sticky;
  }

  .header-inner {
    position: relative;
    grid-template-columns: 1fr auto;
  }

  .brand-mark {
    width: 2.6rem;
    height: 2.6rem;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    width: auto;
    min-height: 2.9rem;
    padding: 0 0.45rem 0 0;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.45rem;
    border: 0;
    background: transparent;
    color: var(--ink);
    font: 800 0.82rem/1 var(--body);
  }

  .menu-toggle-lines,
  .menu-toggle-lines::before,
  .menu-toggle-lines::after {
    width: 1.25rem;
    height: 2px;
    display: block;
    background: currentColor;
    content: "";
    transition: transform var(--transition);
  }

  .menu-toggle-lines {
    position: relative;
    flex: 0 0 1.25rem;
  }

  .menu-toggle-lines::before {
    position: absolute;
    top: -0.38rem;
  }

  .menu-toggle-lines::after {
    position: absolute;
    top: 0.38rem;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle-lines {
    background: transparent;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle-lines::before {
    top: 0;
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle-lines::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    height: calc(100vh - 5.5rem);
    padding: 2.5rem var(--gutter);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--brand);
    border-top: 1px solid var(--ink);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 1.2rem 0;
    border-bottom: 1px solid rgb(17 17 17 / 25%);
    font-family: var(--display);
    font-size: clamp(2rem, 9vw, 3.5rem);
    letter-spacing: -0.05em;
  }

  .hero-copy {
    padding-top: 3rem;
    padding-bottom: 2.5rem;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 11.3vw, 3rem);
  }

  .hero-intro {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-media {
    min-height: 27rem;
  }

  .hero-media-label {
    justify-content: space-between;
    gap: 0.25rem;
    padding-right: 0.65rem;
    padding-left: 0.65rem;
    font-size: 0.52rem;
    letter-spacing: 0.06em;
  }

  .hero-media-label span + span::before {
    content: "";
    margin-right: 0;
  }

  .section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .section-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .section-copy {
    grid-column: auto;
  }

  .section-heading h2,
  .contact h2 {
    font-size: clamp(2.75rem, 13vw, 4.4rem);
  }

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

  .fact {
    min-height: 9rem;
    padding: 1.5rem 0;
  }

  .fact + .fact,
  .fact:nth-child(3),
  .fact:nth-child(4) {
    border-top: 1px solid var(--rule);
    border-left: 0;
  }

  .brand-carousel {
    margin-top: 2.5rem;
    grid-template-columns: 2.75rem minmax(0, 1fr) 2.75rem;
    gap: 0.35rem;
  }

  .brand-arrow {
    width: 2.75rem;
    height: 2.75rem;
  }

  .brand-arrow svg {
    width: 1.2rem;
    height: 1.2rem;
  }

  .brand-track {
    min-height: 10rem;
  }

  .brand-select {
    height: 7.5rem;
    padding: 0.2rem;
  }

  .brand-select img {
    height: 5.5rem;
  }

  .brand-slide {
    opacity: 0.3;
    transform: scale(0.6);
  }

  .brand-slide[data-offset="-1"],
  .brand-slide[data-offset="1"] {
    opacity: 0.65;
    transform: scale(0.8);
  }

  .brand-slide[data-offset="0"] {
    transform: scale(1.1);
  }

  .brand-detail {
    margin-top: 1rem;
    padding-top: 2rem;
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .brand-detail-copy,
  .brand-position {
    grid-column: 1;
  }

  .brand-position {
    justify-self: center;
  }

  .audience {
    min-height: 27rem;
    padding: 2.25rem var(--gutter);
  }

  .contact-main {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .map-frame {
    height: 21rem;
  }

  .site-footer {
    min-height: 10rem;
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .site-footer p:last-child {
    justify-self: start;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
