/* =============================================================================
   BLUE HORSESHOE CAPITAL — styles (v2, Bond-inspired)
   -----------------------------------------------------------------------------
   Composition modeled on bondcap.com: logo-only hero over a giant soft
   letterform (theirs an "O", ours a horseshoe arch), centered serif statement
   blocks between sections, a dark boxless investments grid, and a minimal
   centered footer. Brand theme kept throughout: azure/near-black/white
   palette from the official logo artwork (deep navy #0f3c65 on white),
   Fraunces headlines, and the thin rule motif.
   ============================================================================= */

/* ---------- Tokens ---------- */

:root {
  /* Brand colors — sampled from the official logo artwork (BHS LOGOS.pdf) */
  --blue: #0f3c65;                 /* brand navy — the only color in the logos */
  --blue-deep: #0f3c65;            /* navy is dark enough for small text on light */
  --blue-soft: #7ea6cf;            /* light navy tint for text on dark backgrounds */
  --blue-wash: #e9eff6;            /* faint navy tint for backgrounds */
  --ink: #0a0a0a;
  --muted: #575c63;

  --bg: #fbfcfd;                   /* body / light sections */
  --hairline: rgba(10, 10, 10, 0.1);

  --tile-bg: #e8ebf0;
  --tile-text: #676d75;

  --dark-bg: #0b1a2b;              /* deep navy-black investments section */
  --dark-text: #f2f4f7;
  --dark-muted: rgba(242, 244, 247, 0.62);
  --dark-hairline: rgba(242, 244, 247, 0.14);

  --font-serif: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
               "Helvetica Neue", Arial, sans-serif;
  --font-mono: ui-monospace, "Cascadia Code", "SF Mono", "Segoe UI Mono",
               Menlo, Consolas, monospace;

  --container: 1160px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

html {
  scroll-behavior: smooth;
  /* Bond-style paging: sections settle to the viewport. "proximity" keeps
     scrollbar movement fluid; wheel/keys/touch page via main.js. */
  scroll-snap-type: y proximity;
  background: var(--bg);
}

/* touch devices: firm snapping as a backstop under the JS swipe paging */
@media (pointer: coarse) {
  html {
    scroll-snap-type: y mandatory;
  }
}

.hero,
.statement,
.inv,
.reports,
.team,
.contact {
  scroll-snap-align: start;
}

body {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* thin blue signature bar across the very top of the viewport */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--blue);
  z-index: 300;
}

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

ul {
  list-style: none;
}

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

::selection {
  background: var(--blue);
  color: #ffffff;
}

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

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

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 400;
  padding: 0.6rem 1rem;
  background: var(--blue);
  color: #ffffff;
  font-size: 0.85rem;
  transform: translateY(-300%);
}

.skip-link:focus {
  transform: none;
}

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

/* ---------- Logos (official SVG artwork in assets/) ---------- */

.brand {
  display: inline-flex;
}

.brand__img {
  height: 48px;
  width: auto;
  display: block;
}

.hero__logo {
  margin: 0;
}

.hero__logo img {
  width: clamp(250px, 54vw, 640px);
  height: auto;
  margin-inline: auto;
}

.footer__logo {
  width: clamp(110px, 14vw, 150px);
  height: auto;
  margin-inline: auto;
  margin-top: clamp(3rem, 7vh, 4.5rem);
}

/* ---------- Shared type ---------- */

/* centered section label, Bond-style placement with brand mono/navy */
.section-label {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-align: center;
  color: var(--blue-deep);
}

.section-label--dark {
  color: var(--blue-soft);
}

/* centered serif statement — Bond's signature block, one full page.
   Full-page sections center with flex spacers (::before/::after) so content
   taller than the viewport stays reachable instead of being clipped. */
.statement {
  display: flex;
  flex-direction: column;
  text-align: center;
  min-height: 100vh;
  min-height: 100svh;
  /* top padding clears the fixed header + up-arrow when content overflows */
  padding-block: 8.5rem clamp(4rem, 9vh, 6.5rem);
}

.statement::before,
.statement::after,
.inv::before,
.inv::after,
.reports::before,
.reports::after,
.team::before,
.team::after,
.contact::before,
.contact::after {
  content: "";
  flex: 1 1 0;
}

.statement__text {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.8vw, 3.1rem);
  font-weight: 350;
  line-height: 1.35;
  letter-spacing: -0.01em;
  max-width: 30ch;
  margin-inline: auto;
}

.statement .section-label {
  margin-bottom: 1.6rem;
}

/* *emphasis* from content.js — italic serif accent */
.statement__text em,
.hero__tagline em,
.about__body em,
.contact__heading em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: inherit;
}

.noscript-note {
  color: var(--muted);
  font-style: italic;
  text-align: center;
}

/* ---------- Pill button (Bond-style) ---------- */

.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  background: var(--blue);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.75rem 1.45rem;
  border-radius: 999px;
  transition: background-color 0.3s ease, transform 0.3s var(--ease-out);
}

.btn-pill__arrow {
  transition: transform 0.3s var(--ease-out);
}

.btn-pill:hover,
.btn-pill:focus-visible {
  background: var(--ink);
  transform: translateY(-2px);
}

.btn-pill:hover .btn-pill__arrow,
.btn-pill:focus-visible .btn-pill__arrow {
  transform: translateX(0.3em);
}

/* outlined variant for dark backgrounds (the investments "View All") */
.btn-pill--ghost {
  background: transparent;
  border: 1px solid rgba(242, 244, 247, 0.3);
  color: var(--dark-text);
}

.btn-pill--ghost:hover,
.btn-pill--ghost:focus-visible {
  background: var(--blue);
  border-color: var(--blue);
  color: #ffffff;
}

/* ---------- Header (appears after the hero, monogram centered) ---------- */

.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  padding-block: 1.05rem;
  background: rgba(251, 252, 253, 0.9);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--hairline);
  transform: translateY(-110%);
  transition: transform 0.45s var(--ease-out);
}

.site-header.is-visible {
  transform: none;
}

.site-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.site-nav__links {
  display: flex;
  gap: clamp(1.1rem, 3vw, 2rem);
}

.site-nav__links--left { justify-self: start; }
.site-nav__links--right { justify-self: end; }

.site-nav__links a {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding-block: 0.25rem;
  background-image: linear-gradient(var(--blue), var(--blue));
  background-repeat: no-repeat;
  background-size: 0% 2px;
  background-position: 0 100%;
  transition: color 0.25s ease, background-size 0.3s var(--ease-out);
}

.site-nav__links a:hover,
.site-nav__links a:focus-visible {
  color: var(--ink);
  background-size: 100% 2px;
}

@media (max-width: 640px) {
  .site-nav__links { display: none; }
  .brand__img { height: 42px; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    radial-gradient(1000px 520px at 50% 42%, #ffffff, transparent 64%),
    linear-gradient(#f7f9fc, #f3f5f9);
  overflow: hidden;
}

/* giant soft horseshoe arch — the analog of Bond's giant "O" letterform */
.hero__horseshoe {
  position: absolute;
  left: 50%;
  top: 53%;
  transform: translate(-50%, -50%);
  width: min(155vmin, 1500px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(closest-side,
    transparent 54%,
    rgba(15, 60, 101, 0.07) 62%,
    rgba(10, 10, 10, 0.055) 69%,
    rgba(10, 10, 10, 0.028) 76%,
    transparent 83%);
  -webkit-mask-image: linear-gradient(#000 55%, transparent 88%);
  mask-image: linear-gradient(#000 55%, transparent 88%);
}

.hero__inner {
  position: relative;
}

.hero__tagline {
  margin-top: clamp(2rem, 5vh, 3rem);
  max-width: 38ch;
  margin-inline: auto;
  font-size: 1.15rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.hero__bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.3rem;
}

.hero__chevron-link {
  display: inline-flex;
  padding: 0.5rem 0.75rem;
}

.hero__chevron {
  width: 38px;
  height: 12px;
  color: rgba(10, 10, 10, 0.55);
  animation: chevron-float 2.6s ease-in-out infinite;
  transition: color 0.25s ease;
}

.hero__chevron-link:hover .hero__chevron,
.hero__chevron-link:focus-visible .hero__chevron {
  color: var(--blue);
}

@keyframes chevron-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(5px); }
}

/* Signature load sequence: blocks slide in from either side, the CAPITAL
   rules draw outward from the text, then tagline and CTA rise. */

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}

@keyframes fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.hero__logo img  { animation: rise 1.1s var(--ease-out) 0.2s both; }
.hero__tagline   { animation: rise 0.9s var(--ease-out) 0.75s both; }
.hero__bottom    { animation: rise 0.9s var(--ease-out) 0.95s both; }
.hero__horseshoe { animation: fade 1.6s ease 0.4s both; }

/* ---------- About ---------- */

.about {
  border-top: 1px solid var(--hairline);
}

.about__body {
  margin-top: clamp(2.5rem, 6vh, 4rem);
  max-width: 54ch;
  margin-inline: auto;
  text-align: left;
}

.about__body .lede {
  font-size: 1.2rem;
  line-height: 1.6;
}

.about__body p:not(.lede) {
  color: var(--muted);
}

.about__body p + p {
  margin-top: 1.4rem;
}

/* ---------- Portfolio (dark, boxless, Bond-style) ---------- */

.inv {
  background: var(--dark-bg);
  color: var(--dark-text);
  text-align: center;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding-block: 8.5rem clamp(4rem, 8vh, 6rem);
}

.inv .section-label {
  margin-bottom: clamp(2.5rem, 6vh, 3.5rem);
}

.portfolio-group + .portfolio-group {
  margin-top: clamp(3.5rem, 8vh, 5rem);
}

.group-label {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0.8rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--dark-text);
}

.group-label__count {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  color: var(--dark-muted);
}

.logo-grid {
  margin-top: clamp(1.75rem, 4vh, 2.5rem);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem 1.5rem;
  max-width: 880px;
  margin-inline: auto;
}

@media (min-width: 760px) {
  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem 2rem;
  }
}

/* Boxless entries: monochrome at rest, brighter + blue underline on hover.
   Images render as white silhouettes (Bond-style) on the dark ground. */

.inv-entry {
  position: relative;
  min-height: 76px;
  display: grid;
  place-items: center;
}

.inv-entry::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 50%;
  width: 36px;
  height: 2px;
  margin-left: -18px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform 0.35s var(--ease-out);
}

.inv-entry:hover::after,
.inv-entry:focus-visible::after {
  transform: scaleX(1);
}

.inv-entry img {
  max-height: 34px;
  max-width: 140px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.72;
  transition: opacity 0.3s ease;
}

.inv-entry:hover img,
.inv-entry:focus-visible img {
  opacity: 1;
}

.inv-entry__placeholder {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  padding-left: 0.3em;
  color: rgba(242, 244, 247, 0.4);
  transition: color 0.3s ease;
}

.inv-entry:hover .inv-entry__placeholder,
.inv-entry:focus-visible .inv-entry__placeholder {
  color: var(--dark-text);
}

.inv :focus-visible {
  outline-color: var(--blue-soft);
}

.inv__more {
  margin-top: clamp(2.75rem, 6vh, 4rem);
}

/* ---------- Insights / reports (Bond's Special Reports + year archive) ---------- */

.reports {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding-block: 8.5rem clamp(4rem, 8vh, 6rem);
  text-align: center;
}

.reports .section-label {
  margin-bottom: clamp(2.25rem, 5vh, 3rem);
}

.reports__list {
  display: flex;
  flex-direction: column;
  gap: clamp(1.1rem, 3vh, 1.6rem);
}

.report__row {
  display: inline-block;
}

.report__title {
  font-family: var(--font-serif);
  font-size: clamp(1.55rem, 3.1vw, 2.4rem);
  font-weight: 350;
  line-height: 1.25;
  letter-spacing: -0.01em;
  transition: color 0.25s ease;
}

.report__date {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  white-space: nowrap;
}

a.report__row:hover .report__title,
a.report__row:focus-visible .report__title {
  color: var(--blue-deep);
}

.archive {
  margin-top: clamp(4rem, 9vh, 6rem);
}

.archive__label {
  margin-bottom: 1.5rem;
}

.archive__years {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem 1.5rem;
  font-family: var(--font-mono);
  font-size: 1.02rem;
  color: var(--muted);
}

.archive__years a {
  background-image: linear-gradient(var(--blue), var(--blue));
  background-repeat: no-repeat;
  background-size: 0% 1px;
  background-position: 0 100%;
  transition: color 0.25s ease, background-size 0.3s var(--ease-out);
}

.archive__years a:hover,
.archive__years a:focus-visible {
  color: var(--blue-deep);
  background-size: 100% 1px;
}

/* ---------- Team ---------- */

.team {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding-block: 8.5rem clamp(4rem, 8vh, 6rem);
  text-align: center;
}

.team .section-label {
  margin-bottom: clamp(2.5rem, 6vh, 3.5rem);
}

.team__grid {
  display: grid;
  gap: clamp(2.5rem, 6vh, 3.5rem);
  max-width: 980px;
  margin-inline: auto;
}

@media (min-width: 700px) {
  .team__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }
}

.team-card__photo {
  position: relative;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  background: var(--tile-bg);
  overflow: hidden;
}

/* blue underline bar on hover — the brand rule motif */
.team-card__photo::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s var(--ease-out);
}

.team-card:hover .team-card__photo::after {
  transform: scaleX(1);
}

/* Designed for black-and-white portraits — color images are desaturated. */
.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: transform 0.6s var(--ease-out);
}

.team-card:hover .team-card__photo img {
  transform: scale(1.03);
}

.team-card__photo-placeholder {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  padding-left: 0.3em;
  color: var(--tile-text);
}

.team-card__name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 450;
  line-height: 1.2;
  margin-top: 1.4rem;
}

.team-card__title {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-deep);
  margin: 0.5rem 0 0.7rem;
}

.team-card__bio {
  font-size: 1rem;
  color: var(--muted);
}

/* ---------- Contact / footer (light, centered, minimal) ---------- */

.contact {
  border-top: 1px solid var(--hairline);
  text-align: center;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding-block: 8.5rem 2.25rem;
}

.contact .section-label {
  margin-bottom: 1.6rem;
}

.contact__heading {
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 4.3vw, 3.3rem);
  font-weight: 350;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: clamp(1.75rem, 4vh, 2.5rem);
}

.contact__email {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 3.4vw, 2.2rem);
  font-weight: 350;
  line-height: 1.2;
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--blue);
  text-underline-offset: 0.35em;
  transition: color 0.3s ease;
}

.contact__email:hover,
.contact__email:focus-visible {
  color: var(--blue-deep);
}

.contact__meta {
  margin-top: clamp(2rem, 5vh, 2.75rem);
  font-size: 1rem;
  color: var(--muted);
}

.contact__meta a {
  background-image: linear-gradient(var(--blue), var(--blue));
  background-repeat: no-repeat;
  background-size: 0% 1px;
  background-position: 0 100%;
  transition: color 0.25s ease, background-size 0.3s var(--ease-out);
}

.contact__meta a:hover,
.contact__meta a:focus-visible {
  color: var(--ink);
  background-size: 100% 1px;
}


.footer-nav {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.75rem;
}

.footer-nav a {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--blue-deep);
}

.footer-bar {
  margin-top: clamp(2.5rem, 6vh, 3.5rem);
  padding-top: 1.4rem;
  border-top: 1px solid var(--hairline);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2.5rem;
  align-items: baseline;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-bar__top {
  letter-spacing: 0.08em;
  transition: color 0.25s ease;
}

.footer-bar__top:hover,
.footer-bar__top:focus-visible {
  color: var(--ink);
}

/* ---------- Per-page centered chevrons (injected by main.js) ---------- */

.statement,
.inv,
.reports,
.team,
.contact {
  position: relative;
}

.section-nav__btn {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: grid;
  place-items: center;
  background: none;
  border: 0;
  padding: 0.28rem 0.9rem;
  cursor: pointer;
  color: rgba(10, 10, 10, 0.55);
  transition: color 0.25s ease;
}

/* up arrow at the top of the page (clear of the fixed header), down at the bottom */
.section-nav__btn--up {
  top: 6rem;
}

.section-nav__btn--down {
  bottom: 1.3rem;
}

.section-nav__btn svg {
  width: 34px;
  height: 11px;
}

.section-nav__btn--up svg {
  transform: rotate(180deg);
}

.section-nav__btn--down svg {
  animation: chevron-float 2.6s ease-in-out infinite;
}

.section-nav__btn:hover,
.section-nav__btn:focus-visible {
  color: var(--blue);
}

/* light chevrons on the dark investments page */
.inv .section-nav__btn {
  color: rgba(242, 244, 247, 0.6);
}

.inv .section-nav__btn:hover,
.inv .section-nav__btn:focus-visible {
  color: var(--blue-soft);
}

/* ---------- Section pager (fixed up/down arrows) ---------- */

.pager {
  position: fixed;
  right: clamp(0.9rem, 2vw, 1.5rem);
  bottom: clamp(0.9rem, 2vw, 1.5rem);
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pager__btn {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  background: rgba(251, 252, 253, 0.85);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: var(--ink);
  cursor: pointer;
  transition: color 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
}

.pager__btn svg {
  width: 16px;
  height: 10px;
}

.pager__btn--up svg {
  transform: rotate(180deg);
}

.pager__btn:hover,
.pager__btn:focus-visible {
  color: var(--blue);
  border-color: var(--blue);
}

.pager__btn:disabled {
  opacity: 0.3;
  pointer-events: none;
}

@media (max-width: 640px) {
  .pager__btn {
    width: 38px;
    height: 38px;
  }
}

/* ---------- Scroll-reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.8s var(--ease-out),
    transform 0.8s var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Reduced motion ---------- */

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

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

  .hero__logo img,
  .hero__tagline,
  .hero__bottom,
  .hero__horseshoe,
  .hero__chevron,
  .section-nav__btn--down svg {
    animation: none;
  }

  .site-header {
    transition: none;
  }

  .inv-entry::after,
  .inv-entry img,
  .team-card__photo::after,
  .team-card__photo img,
  .btn-pill,
  .btn-pill__arrow {
    transition: none;
  }

  .btn-pill:hover {
    transform: none;
  }

  .team-card:hover .team-card__photo img {
    transform: none;
  }
}
