:root {
  --ffa-yellow: #ffc722;
  --ffa-yellow-dark: #d49d00;
  --ink: #171715;
  --charcoal: #292927;
  --paper: #f5f5f2;
  --white: #ffffff;
  --muted: #6d6d68;
  --line: #deded8;
  --danger: #b42318;
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Work Sans", sans-serif;
}

body.branch-finder-open {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

a {
  color: inherit;
}

button,
select {
  font: inherit;
}

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

.page-shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 20000;
  top: 8px;
  left: 8px;
  padding: 12px 16px;
  color: var(--ink);
  background: var(--ffa-yellow);
  font-weight: 700;
  transform: translateY(-150%);
}

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

.branch-hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: var(--white);
  background: #111;
}

.branch-hero__image,
.branch-hero__shade {
  position: absolute;
  inset: 0;
}

.branch-hero__image {
  background: url("../images/main-slider-img3.jpg") center 41% / cover no-repeat;
  transform: scale(1.015);
  animation: hero-settle 1.2s ease-out both;
}

.branch-hero__shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.73) 47%, rgba(0, 0, 0, 0.26) 76%, rgba(0, 0, 0, 0.5) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.78), transparent 46%);
}

@keyframes hero-settle {
  from {
    opacity: 0;
    transform: scale(1.055);
  }
  to {
    opacity: 1;
    transform: scale(1.015);
  }
}

.social-strip {
  position: relative;
  z-index: 3;
  height: 30px;
}

.social-strip__inner {
  display: flex;
  justify-content: flex-end;
  gap: 4px;
}

.social-strip a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 30px;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.social-strip a:hover,
.social-strip a:focus-visible {
  color: var(--ink);
  background: var(--ffa-yellow);
}

.site-nav {
  position: relative;
  z-index: 5;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.site-nav__inner {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 74px;
}

.site-logo {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: 210px;
  flex: none;
}

.site-logo::before,
.site-logo::after {
  content: "";
  position: absolute;
  z-index: -2;
  top: 0;
  right: 16px;
  bottom: 0;
  left: -100vw;
  background: var(--ffa-yellow);
  transform: skewX(-31deg);
  transform-origin: bottom right;
}

.site-logo::after {
  z-index: -1;
  top: 11px;
  right: 22px;
  background: #080808;
}

.site-logo img {
  display: block;
  width: 166px;
  height: 58px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  min-width: 0;
  flex: 1;
  margin: 0;
  padding: 0;
  list-style: none;
}

.desktop-nav li {
  position: relative;
  display: flex;
}

.desktop-nav a {
  display: flex;
  align-items: center;
  padding: 0 13px;
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
}

.desktop-nav li::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--ffa-yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav li:hover::after,
.desktop-nav .is-current::after {
  transform: scaleX(1);
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.desktop-nav .is-active {
  color: var(--ffa-yellow);
}

.menu-toggle {
  display: none;
  align-self: center;
  width: 44px;
  height: 44px;
  margin-left: auto;
  color: var(--ffa-yellow);
  background: transparent;
  border: 0;
  font-size: 22px;
  cursor: pointer;
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav {
  display: none;
  padding: 12px 24px 20px;
  background: rgba(13, 13, 12, 0.98);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-nav a {
  padding: 13px 0;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
}

.mobile-nav .is-active {
  color: var(--ffa-yellow);
}

.branch-hero__content {
  position: relative;
  z-index: 2;
  padding-top: 112px;
  animation: copy-in 700ms 160ms ease-out both;
}

@keyframes copy-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-kicker {
  margin: 0 0 14px;
  color: var(--ffa-yellow-dark);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.branch-hero .section-kicker {
  color: var(--ffa-yellow);
}

.section-kicker::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  margin: 0 10px 3px 0;
  background: currentColor;
}

.branch-hero h1,
.directory-heading h2,
.finder-callout h2,
.trial-banner h2 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.branch-hero h1 {
  max-width: 820px;
  font-size: 78px;
  line-height: 0.98;
}

.branch-hero h1 span {
  color: var(--ffa-yellow);
}

.branch-hero__intro {
  max-width: 570px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.83);
  font-size: 16px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 16px;
  margin-top: 30px;
}

.hero-actions__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.primary-button,
.secondary-button,
.card-action,
.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.primary-button {
  color: var(--ink);
  background: var(--ffa-yellow);
  box-shadow: 7px 7px 0 rgba(255, 255, 255, 0.14);
}

.primary-button:hover,
.primary-button:focus-visible {
  color: var(--white);
  background: var(--charcoal);
  transform: translateY(-2px);
}

.primary-button--hero {
  min-height: 58px;
  padding-inline: 25px;
  border: 2px solid var(--ffa-yellow);
  font-size: 12px;
  box-shadow:
    7px 7px 0 rgba(255, 255, 255, 0.15),
    0 0 0 1px rgba(255, 199, 34, 0.2);
}

.primary-button--hero .fa-arrow-right {
  margin-left: 5px;
  transition: transform 180ms ease;
}

.primary-button--hero:hover .fa-arrow-right,
.primary-button--hero:focus-visible .fa-arrow-right {
  transform: translateX(3px);
}

.contact-button {
  min-height: 48px;
  color: var(--ink);
  background: var(--white);
}

.contact-button:hover,
.contact-button:focus-visible {
  color: var(--ink);
  background: var(--ffa-yellow);
  transform: translateY(-2px);
}

.contact-button--hero {
  min-height: 58px;
  padding-inline: 23px;
  border: 2px solid var(--white);
  font-size: 12px;
}

.text-link {
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link i {
  margin-left: 6px;
  color: var(--ffa-yellow);
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--ffa-yellow);
}

.branch-stats {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  color: var(--ink);
  background: rgba(255, 199, 34, 0.96);
}

.branch-stats__inner {
  display: flex;
  align-items: center;
  min-height: 94px;
}

.branch-stats__inner > div {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  column-gap: 10px;
  min-width: 150px;
  padding-right: 28px;
  margin-right: 28px;
  border-right: 1px solid rgba(23, 23, 21, 0.25);
}

.branch-stats strong {
  grid-row: 1 / 3;
  font: 700 35px/1 "Oswald", sans-serif;
}

.branch-stats span {
  max-width: 70px;
  color: rgba(23, 23, 21, 0.63);
  font-size: 9px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.branch-stats p {
  margin: 0 0 0 auto;
  color: rgba(23, 23, 21, 0.55);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.finder-callout {
  color: var(--white);
  background: var(--charcoal);
  border-top: 1px solid rgba(255, 199, 34, 0.45);
  border-bottom: 1px solid rgba(255, 199, 34, 0.45);
}

.finder-callout__inner {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  min-height: 190px;
  padding-block: 34px;
}

.finder-callout__icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  color: var(--ink);
  background: var(--ffa-yellow);
  font-size: 28px;
  transform: rotate(-3deg);
}

.finder-callout h2 {
  font-size: 37px;
  line-height: 1.05;
}

.finder-callout p:not(.section-kicker) {
  max-width: 610px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  line-height: 1.65;
}

.secondary-button {
  min-height: 56px;
  padding-inline: 24px;
  color: var(--ink);
  background: var(--ffa-yellow);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.28);
  font-size: 11px;
}

.secondary-button:hover,
.secondary-button:focus-visible {
  color: var(--ffa-yellow);
  background: #10100f;
  transform: translateY(-2px);
}

.finder-callout__support {
  max-width: 250px;
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  line-height: 1.65;
}

.finder-callout__support i { margin-right: 5px; color: var(--ffa-yellow); }
.finder-callout__support a { color: var(--white); font-weight: 700; text-decoration-color: var(--ffa-yellow); text-underline-offset: 3px; }
.finder-callout__support a:hover,
.finder-callout__support a:focus-visible { color: var(--ffa-yellow); }

.directory {
  padding: 80px 0 96px;
  background:
    repeating-linear-gradient(-55deg, transparent, transparent 66px, rgba(0, 0, 0, 0.016) 66px, rgba(0, 0, 0, 0.016) 67px),
    var(--paper);
}

.directory-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  align-items: end;
  gap: 40px;
  margin-bottom: 54px;
}

.directory-heading h2 {
  font-size: 54px;
  line-height: 1;
}

.directory-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.state-group + .state-group {
  margin-top: 58px;
}

.state-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 13px;
  margin-bottom: 16px;
  border-bottom: 3px solid var(--ink);
}

.state-heading h3 {
  margin: 0;
  font: 700 27px/1.1 "Oswald", sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

.state-heading span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.branch-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.branch-card {
  position: relative;
  display: flex;
  min-height: 190px;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  background: var(--white);
  border: 0;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.branch-card::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--ffa-yellow), #ffb300);
  transition: width 300ms ease;
}

.branch-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(255, 199, 34, 0.2);
}

.branch-card:hover::after {
  width: 5px;
}

.branch-card__number {
  position: absolute;
  z-index: 0;
  top: -10px;
  right: -5px;
  color: rgba(0, 0, 0, 0.03);
  font: 700 64px/1 "Work Sans", sans-serif;
  pointer-events: none;
  user-select: none;
}

.branch-card__header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 20px 20px 10px 22px;
}

.branch-card__pin {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: none;
  color: var(--ffa-yellow);
  background: rgba(255, 199, 34, 0.1);
  border: 1px solid rgba(255, 199, 34, 0.25);
  border-radius: 50%;
  font-size: 12px;
  transition: background 300ms ease;
}

.branch-card:hover .branch-card__pin {
  background: rgba(255, 199, 34, 0.18);
}

.branch-card h4 {
  margin: 0;
  font: 700 16px/1.2 "Work Sans", sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

.branch-card h4 a {
  text-decoration: none;
}

.branch-card h4 a::after {
  content: "";
  position: absolute;
  inset: 0;
}

.branch-card__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  padding: 4px 20px 18px 22px;
}

.branch-card__address {
  flex: 1;
  margin: 0 0 14px;
  color: #777;
  font-size: 11.5px;
  line-height: 1.7;
}

.branch-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-start;
  margin-top: auto;
}

.card-action {
  position: relative;
  z-index: 3;
  min-height: 34px;
  padding: 0 16px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--ffa-yellow), #ffb300);
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(255, 199, 34, 0.3);
  font-size: 10px;
  font-weight: 700;
}

.card-action:hover,
.card-action:focus-visible {
  color: var(--ffa-yellow);
  background: #111;
  box-shadow: 0 6px 16px rgba(17, 17, 17, 0.2);
}

.card-action--directions {
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(23, 23, 21, 0.18);
  box-shadow: none;
}

.card-action--directions:hover,
.card-action--directions:focus-visible {
  color: var(--ink);
  background: rgba(255, 199, 34, 0.16);
  border-color: rgba(23, 23, 21, 0.35);
  box-shadow: none;
}

.trial-banner {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  color: var(--white);
  background: #111;
}

.trial-banner__image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.35)),
    url("../images/player-development.jpg") center 42% / cover no-repeat;
}

.trial-banner__inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 440px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.trial-banner h2 {
  margin-bottom: 28px;
  font-size: 55px;
  line-height: 1.05;
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: #151514;
  border-top: 4px solid var(--ffa-yellow);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  min-height: 150px;
}

.footer-logo img {
  display: block;
  width: 170px;
  height: 70px;
  object-fit: contain;
}

.site-footer p {
  max-width: 390px;
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--ffa-yellow);
}

.site-footer .copyright {
  grid-column: 1 / -1;
  max-width: none;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
}

.branch-finder-modal[hidden],
.branch-finder-results[hidden],
.branch-finder-location[hidden] {
  display: none;
}

.branch-finder-modal {
  position: fixed;
  z-index: 10000;
  inset: 0;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  padding: 24px;
  isolation: isolate;
}

.branch-finder-backdrop {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: rgba(7, 8, 6, 0.84);
  backdrop-filter: blur(7px);
  cursor: pointer;
}

.branch-finder-dialog {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  max-height: calc(100dvh - 48px);
  padding: 42px;
  overflow-y: auto;
  overscroll-behavior: contain;
  color: var(--charcoal);
  background:
    repeating-linear-gradient(-55deg, transparent, transparent 60px, rgba(0, 0, 0, 0.018) 60px, rgba(0, 0, 0, 0.018) 61px),
    #f8f8f7;
  border-top: 5px solid var(--ffa-yellow);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.branch-finder-close {
  position: absolute;
  top: 17px;
  right: 17px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--ink);
  background: var(--ffa-yellow);
  border: 3px double #fff;
  border-radius: 50%;
  cursor: pointer;
}

.branch-finder-close:hover,
.branch-finder-close:focus-visible {
  color: var(--ffa-yellow);
  background: var(--ink);
}

.branch-finder-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--ffa-yellow-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.branch-finder-kicker span {
  width: 28px;
  height: 2px;
  background: var(--ffa-yellow);
}

.branch-finder-dialog > h2 {
  max-width: 620px;
  margin: 0;
  font: 700 47px/1.05 "Oswald", sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

.branch-finder-dialog > h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  margin-top: 16px;
  background: var(--ffa-yellow);
}

.branch-finder-dialog > p {
  max-width: 680px;
  margin: 21px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.branch-finder-controls {
  margin-top: 28px;
}

.branch-finder-locate,
.branch-finder-result-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.branch-finder-locate {
  color: var(--ink);
  background: var(--ffa-yellow);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.08);
}

.branch-finder-locate:disabled {
  cursor: wait;
  opacity: 0.72;
}

.branch-finder-locate:not(:disabled):hover,
.branch-finder-locate:focus-visible {
  color: var(--ffa-yellow);
  background: var(--ink);
}

.branch-finder-separator {
  position: relative;
  margin: 24px 0;
  color: rgba(0, 0, 0, 0.35);
  text-align: center;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.branch-finder-separator::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
}

.branch-finder-separator span {
  position: relative;
  padding: 0 13px;
  background: #f8f8f7;
}

.branch-finder-controls label {
  display: block;
  margin-bottom: 9px;
  color: rgba(0, 0, 0, 0.52);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.branch-finder-controls select {
  width: 100%;
  min-height: 52px;
  padding: 0 42px 0 15px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #e4e4e0;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.branch-finder-status {
  min-height: 20px;
  margin: 13px 0 0;
  color: var(--danger);
  font-size: 12px;
  font-weight: 600;
}

.branch-finder-results {
  margin-top: 8px;
}

.branch-finder-location {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding: 14px 15px;
  background: rgba(255, 199, 34, 0.11);
  border: 1px solid rgba(255, 199, 34, 0.34);
  border-radius: 6px;
}

.branch-finder-location-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: none;
  color: var(--ink);
  background: var(--ffa-yellow);
  border-radius: 50%;
}

.branch-finder-location span,
.branch-finder-results-heading span {
  display: block;
  color: var(--ffa-yellow-dark);
  font-size: 9px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.branch-finder-location strong {
  display: block;
  margin-top: 3px;
  color: var(--ink);
  font-size: 14px;
}

.branch-finder-location small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.4;
}

.branch-finder-results-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 12px;
}

.branch-finder-results-heading h3 {
  margin: 4px 0 0;
  font: 700 19px/1.2 "Oswald", sans-serif;
  text-transform: uppercase;
}

.branch-finder-results-heading p {
  max-width: 290px;
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
  text-align: right;
}

.branch-finder-suggestions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.branch-finder-result {
  display: flex;
  min-width: 0;
  min-height: 245px;
  flex-direction: column;
  padding: 16px;
  background: var(--white);
  border-left: 4px solid var(--ffa-yellow);
  border-radius: 6px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.branch-finder-result__top {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
}

.branch-finder-pin {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--ffa-yellow-dark);
  background: rgba(255, 199, 34, 0.1);
  border: 1px solid rgba(255, 199, 34, 0.28);
  border-radius: 50%;
}

.branch-finder-result-copy span {
  color: var(--ffa-yellow-dark);
  font-size: 9px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.branch-finder-result-copy h4 {
  margin: 6px 0;
  font: 700 18px/1.2 "Oswald", sans-serif;
  text-transform: uppercase;
}

.branch-finder-result-copy h4 a {
  text-decoration: none;
}

.branch-finder-result-copy h4 a:hover,
.branch-finder-result-copy h4 a:focus-visible {
  color: var(--ffa-yellow-dark);
}

.branch-finder-result-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.6;
}

.branch-finder-result-actions {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: 7px;
  margin-top: auto;
  padding-top: 15px;
}

.branch-finder-result-actions a {
  min-height: 38px;
  padding: 0 8px;
  color: var(--white);
  background: var(--charcoal);
  font-size: 8px;
}

.branch-finder-result-actions .is-trial {
  color: var(--ink);
  background: var(--ffa-yellow);
}

.branch-finder-result-actions a:hover,
.branch-finder-result-actions a:focus-visible {
  color: var(--white);
  background: #000;
}

:focus-visible {
  outline: 3px solid rgba(255, 199, 34, 0.68);
  outline-offset: 3px;
}

@media (max-width: 1120px) {
  .desktop-nav a {
    padding-inline: 8px;
    font-size: 11px;
  }

  .site-logo {
    width: 185px;
  }

  .site-logo img {
    width: 145px;
  }

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

  .branch-finder-suggestions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .mobile-nav:not([hidden]) {
    display: grid;
  }

  .menu-toggle {
    display: block;
  }

  .branch-hero {
    min-height: 740px;
  }

  .branch-hero h1 {
    font-size: 58px;
  }

  .branch-hero__content {
    padding-top: 96px;
  }

  .branch-stats p {
    display: none;
  }

  .finder-callout__inner {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .finder-callout__icon {
    width: 64px;
    height: 64px;
  }

  .finder-callout__support {
    grid-column: 2;
    justify-self: start;
  }

  .directory-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .site-footer__inner {
    grid-template-columns: 170px minmax(0, 1fr);
    padding-top: 28px;
  }

  .footer-links {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .social-strip {
    display: none;
  }

  .site-nav__inner {
    min-height: 70px;
  }

  .site-logo {
    width: 166px;
  }

  .site-logo::before {
    right: 9px;
  }

  .site-logo::after {
    right: 15px;
  }

  .site-logo img {
    width: 130px;
    height: 52px;
  }

  .branch-hero {
    min-height: 770px;
  }

  .branch-hero__image {
    background-position: 57% center;
  }

  .branch-hero__shade {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5));
  }

  .branch-hero__content {
    padding-top: 92px;
  }

  .branch-hero h1 {
    font-size: 44px;
    line-height: 1.02;
  }

  .branch-hero__intro {
    max-width: 420px;
    font-size: 14px;
    line-height: 1.65;
  }

  .hero-actions {
    align-items: stretch;
    gap: 18px;
  }

  .hero-actions__buttons {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .primary-button,
  .hero-actions .contact-button {
    width: 100%;
  }

  .text-link {
    text-align: center;
  }

  .branch-stats__inner {
    min-height: 88px;
  }

  .branch-stats__inner > div {
    display: block;
    min-width: 0;
    flex: 1;
    padding-right: 10px;
    margin-right: 10px;
    text-align: center;
  }

  .branch-stats__inner > div:last-of-type {
    padding-right: 0;
    margin-right: 0;
    border-right: 0;
  }

  .branch-stats strong,
  .branch-stats span {
    display: block;
    max-width: none;
  }

  .branch-stats strong {
    margin-bottom: 5px;
    font-size: 25px;
  }

  .branch-stats span {
    font-size: 8px;
  }

  .finder-callout__inner {
    display: block;
    padding-block: 42px;
  }

  .finder-callout__icon {
    margin-bottom: 24px;
  }

  .finder-callout h2 {
    font-size: 31px;
  }

  .finder-callout__support { max-width: 430px; margin-top: 18px; }

  .directory {
    padding: 60px 0 70px;
  }

  .directory-heading {
    margin-bottom: 42px;
  }

  .directory-heading h2 {
    font-size: 40px;
  }

  .state-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .state-heading h3 {
    font-size: 24px;
  }

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

  .branch-card {
    min-height: 190px;
  }

  .card-action {
    width: 100%;
  }

  .trial-banner,
  .trial-banner__inner {
    min-height: 390px;
  }

  .trial-banner h2 {
    font-size: 39px;
  }

  .site-footer__inner {
    display: flex;
    min-height: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding-top: 34px;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .site-footer .copyright {
    width: 100%;
  }

  .branch-finder-modal {
    align-items: end;
    padding: 0;
  }

  .branch-finder-dialog {
    width: 100%;
    max-height: 100dvh;
    padding: max(24px, env(safe-area-inset-top)) 16px max(20px, env(safe-area-inset-bottom));
    border-radius: 0;
  }

  .branch-finder-close {
    position: sticky;
    z-index: 3;
    top: max(8px, env(safe-area-inset-top));
    float: right;
    margin: -11px -3px 9px 12px;
  }

  .branch-finder-dialog > h2 {
    clear: both;
    font-size: 35px;
  }

  .branch-finder-dialog > p {
    font-size: 12px;
  }

  .branch-finder-controls {
    clear: both;
  }

  .branch-finder-locate {
    width: 100%;
  }

  .branch-finder-results-heading {
    display: block;
  }

  .branch-finder-results-heading p {
    max-width: none;
    margin-top: 6px;
    text-align: left;
  }

  .branch-finder-suggestions {
    grid-template-columns: 1fr;
  }

  .branch-finder-result {
    min-height: 230px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
