:root {
  --fa-bg: #f4f4f1;
  --fa-surface: #ffffff;
  --fa-ink: #171717;
  --fa-muted: #6f6f6f;
  --fa-soft: #e9e7e1;
  --fa-line: rgba(23, 23, 23, 0.10);
  --fa-dark: #242424;
  --fa-dark-2: #111111;
  --fa-radius-lg: 30px;
  --fa-radius-md: 22px;
  --fa-radius-sm: 14px;
  --fa-shadow: 0 22px 55px rgba(17, 17, 17, 0.12);
  --fa-shadow-soft: 0 14px 38px rgba(17, 17, 17, 0.09);
  --fa-max: 1120px;
  --fa-single: 590px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.fa-theme,
body {
  margin: 0;
  background: var(--fa-bg);
  color: var(--fa-ink);
  font-family: Inter, Montserrat, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

img {
  max-width: 100%;
  height: auto;
}

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

.fa-site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.fa-global-header {
  width: 100%;
  padding: 18px 16px 0;
  position: relative;
  z-index: 10;
}

.fa-global-header__inner {
  width: min(var(--fa-max), 100%);
  margin: 0 auto;
  min-height: 58px;
  border: 1px solid var(--fa-line);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 10px 8px 12px;
}

.fa-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.fa-brand__mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--fa-dark);
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: 13px;
}

.fa-brand__text {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fa-global-nav,
.fa-global-nav__menu {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.fa-global-nav a,
.fa-global-nav__menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 15px;
  border-radius: 999px;
  color: #f7f7f4;
  background: linear-gradient(180deg, #333, #191919);
  font-size: 13px;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14);
}

.fa-main {
  width: min(var(--fa-max), calc(100% - 28px));
  margin: 0 auto;
  padding: 34px 0 62px;
  flex: 1;
}

.fa-main--home {
  padding-top: 28px;
}

.fa-home-hero {
  min-height: 270px;
  display: grid;
  place-items: center;
  padding: 22px 0 28px;
}

.fa-home-hero__card,
.fa-archive-hero,
.fa-404-card {
  width: min(760px, 100%);
  margin: 0 auto;
  background: radial-gradient(circle at 10% 0%, rgba(255,255,255,.22), transparent 32%), linear-gradient(180deg, #2d2d2d, #171717);
  color: #fff;
  border-radius: var(--fa-radius-lg);
  padding: 42px 28px;
  text-align: center;
  box-shadow: var(--fa-shadow);
  border: 1px solid rgba(255,255,255,.08);
}

.fa-home-hero__card h1,
.fa-archive-hero h1,
.fa-404-card h1 {
  margin: 10px auto 10px;
  max-width: 720px;
  font-size: clamp(38px, 8vw, 74px);
  line-height: .95;
  letter-spacing: -0.07em;
  font-weight: 900;
}

.fa-home-hero__card p,
.fa-archive-hero p,
.fa-404-card p {
  margin: 0 auto;
  max-width: 560px;
  color: rgba(255,255,255,.76);
  font-size: 16px;
}

.fa-kicker,
.fa-section-head__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: #1f1f1f;
  background: #fff;
  border: 1px solid rgba(255,255,255,.35);
}

.fa-section-head__eyebrow {
  background: var(--fa-dark);
  color: #fff;
}

.fa-grid-section {
  padding-top: 18px;
}

.fa-section-head {
  width: min(760px, 100%);
  margin: 0 auto 26px;
  text-align: center;
}

.fa-section-head h2 {
  margin: 10px 0 6px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
  letter-spacing: -0.06em;
  font-weight: 900;
}

.fa-section-head p {
  margin: 0;
  color: var(--fa-muted);
}

.fa-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.fa-list-card {
  background: var(--fa-surface);
  border: 1px solid rgba(23,23,23,.08);
  border-radius: 24px;
  box-shadow: var(--fa-shadow-soft);
  overflow: hidden;
  min-width: 0;
  transition: transform .18s ease, box-shadow .18s ease;
}

.fa-list-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 55px rgba(17,17,17,.13);
}

.fa-list-card__image {
  min-height: 210px;
  aspect-ratio: 1.42 / 1;
  display: block;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #2a2a2a, #737268);
}

.fa-list-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.fa-list-card__image::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(0deg, rgba(0,0,0,.50), transparent);
  pointer-events: none;
}

.fa-list-card__image-placeholder {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 32% 18%, rgba(255,255,255,.28), transparent 26%), linear-gradient(135deg, #2b2b2b, #777464);
}

.fa-list-card__pill {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  max-width: calc(100% - 24px);
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  color: #1b1b1b;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 10px;
  backdrop-filter: blur(12px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fa-list-card__body {
  padding: 17px 16px 18px;
}

.fa-list-card__title {
  margin: 0 0 8px;
  font-size: 19px;
  line-height: 1.13;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.fa-list-card__text {
  min-height: 42px;
  margin: 0 0 14px;
  color: var(--fa-muted);
  font-size: 14px;
  line-height: 1.45;
}

.fa-list-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  color: var(--fa-muted);
  font-size: 12px;
  border-top: 1px solid var(--fa-line);
  padding-top: 12px;
  margin-bottom: 14px;
}

.fa-list-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.fa-list-card__meta span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--fa-dark);
  opacity: .22;
}

.fa-list-card__button,
.fa-load-more,
.fa-button-dark,
.fa-button-light {
  width: 100%;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.fa-list-card__button,
.fa-load-more,
.fa-button-dark {
  background: linear-gradient(180deg, #333, #151515);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16), 0 10px 20px rgba(0,0,0,.10);
}

.fa-button-light {
  background: #fff;
  color: #151515;
  border: 1px solid var(--fa-line);
}

.fa-load-more {
  width: min(360px, 100%);
  margin: 30px auto 0;
  display: flex;
}

.fa-empty-card,
.fa-empty-links {
  background: #fff;
  border: 1px dashed rgba(23,23,23,.20);
  border-radius: var(--fa-radius-md);
  padding: 28px;
  text-align: center;
  color: var(--fa-muted);
}

.fa-empty-card h2,
.fa-empty-links strong {
  color: var(--fa-ink);
}

.fa-single-main {
  width: min(var(--fa-single), calc(100% - 24px));
  margin: 0 auto;
  padding: 28px 0 62px;
  flex: 1;
}

.fa-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--fa-muted);
  font-size: 12px;
}

.fa-breadcrumbs a {
  color: #2f2f2f;
  font-weight: 700;
}

.fa-breadcrumbs__sep {
  opacity: .42;
}

.fa-profile-card {
  background: #fff;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(23,23,23,.08);
  box-shadow: var(--fa-shadow);
}

.fa-profile-card__cover {
  min-height: 260px;
  aspect-ratio: 1.66 / 1;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 50% 20%, rgba(255,255,255,.20), transparent 28%), linear-gradient(135deg, #292929, #68655b);
}

.fa-profile-card__cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.fa-profile-card__cover::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  background: linear-gradient(0deg, rgba(0,0,0,.36), transparent);
}

.fa-profile-card__cover-pill {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  background: rgba(255,255,255,.88);
  color: #1b1b1b;
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .02em;
  backdrop-filter: blur(12px);
}

.fa-profile-card__body {
  padding: 0 24px 28px;
}

.fa-profile-card__topline {
  margin-top: -42px;
  position: relative;
  z-index: 4;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
}

.fa-profile-card__avatar {
  width: 86px;
  height: 86px;
  flex: 0 0 86px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #262626;
  color: #fff;
  border: 7px solid #fff;
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
  font-weight: 900;
  letter-spacing: -0.08em;
}

.fa-profile-card__badge {
  max-width: 58%;
  margin-bottom: 6px;
  border: 1px solid var(--fa-line);
  background: #fafaf7;
  color: var(--fa-muted);
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fa-profile-card__title-row {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.fa-profile-card__title-row h1 {
  margin: 0;
  font-size: clamp(30px, 7vw, 46px);
  line-height: .98;
  letter-spacing: -0.07em;
  font-weight: 900;
}

.fa-verified {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #29aee4;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.fa-profile-card__location {
  margin: 4px 0 16px;
  color: var(--fa-muted);
  font-size: 13px;
  font-weight: 700;
}

.fa-profile-card__description {
  color: #555;
  font-size: 15px;
  line-height: 1.55;
  border-top: 1px solid var(--fa-line);
  padding-top: 16px;
}

.fa-profile-card__description p {
  margin: 0 0 10px;
}

.fa-profile-card__stats {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin: 18px 0;
  color: var(--fa-muted);
  font-size: 13px;
}

.fa-profile-card__stats strong {
  color: var(--fa-ink);
  font-size: 20px;
  letter-spacing: -0.04em;
}

.fa-linktree {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.fa-linktree__item {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 74px;
  border-radius: 20px;
  padding: 12px;
  border: 1px solid rgba(23,23,23,.08);
  background: linear-gradient(180deg, #ffffff, #f8f8f4);
  color: var(--fa-ink);
  box-shadow: 0 10px 24px rgba(17,17,17,.06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.fa-linktree__item:hover {
  transform: translateY(-1px);
  border-color: rgba(23,23,23,.18);
  box-shadow: 0 16px 32px rgba(17,17,17,.10);
}

.fa-linktree__icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--fa-dark);
  color: #fff;
  font-weight: 900;
}

.fa-linktree__content {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.fa-linktree__title {
  font-size: 15px;
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.fa-linktree__text {
  color: var(--fa-muted);
  font-size: 12px;
  line-height: 1.35;
}

.fa-linktree__badge {
  max-width: 92px;
  padding: 6px 9px;
  border-radius: 999px;
  background: #eeeeea;
  color: #4d4d4d;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}



.fa-map-section {
  margin-top: 18px;
  border: 1px solid rgba(23,23,23,.08);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #f9f9f5);
  box-shadow: 0 12px 28px rgba(17,17,17,.07);
  overflow: hidden;
}

.fa-map-section__head {
  padding: 18px 18px 14px;
}

.fa-map-section__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: #eeeeea;
  color: #4f4f4f;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.fa-map-section h2 {
  margin: 10px 0 6px;
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.fa-map-section p {
  margin: 0;
  color: var(--fa-muted);
  font-size: 13px;
  line-height: 1.45;
}

.fa-map-section__frame {
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 260px;
  background: #e9e7e1;
  border-top: 1px solid rgba(23,23,23,.08);
  border-bottom: 1px solid rgba(23,23,23,.08);
}

.fa-map-section__frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.fa-map-section__caption {
  padding: 12px 18px 15px;
  font-size: 12px !important;
  color: #6d6d6d !important;
}

.fa-profile-card__content {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--fa-line);
  color: #444;
  font-size: 15px;
}

.fa-profile-card__content h2,
.fa-profile-card__content h3 {
  color: var(--fa-ink);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.fa-404-card {
  margin-top: 28px;
}

.fa-404-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 24px auto;
  max-width: 420px;
}

.fa-404-card form,
.fa-404-card .search-form {
  width: min(420px, 100%);
  margin: 0 auto;
  display: flex;
  gap: 8px;
}

.fa-404-card input[type="search"] {
  min-height: 44px;
  flex: 1;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  padding: 0 14px;
}

.fa-404-card input[type="submit"],
.fa-404-card button[type="submit"] {
  border: 0;
  border-radius: 999px;
  padding: 0 16px;
  background: #fff;
  color: #151515;
  font-weight: 800;
}

.fa-global-footer {
  margin-top: auto;
  padding: 0 16px 18px;
}

.fa-global-footer__inner {
  width: min(var(--fa-max), 100%);
  margin: 0 auto;
  border-radius: 26px;
  background: #202020;
  color: rgba(255,255,255,.72);
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.fa-global-footer strong {
  color: #fff;
}

.fa-global-footer p {
  margin: 4px 0 0;
  font-size: 13px;
}

.fa-global-footer a {
  color: #fff;
  font-weight: 800;
}

@media (min-width: 680px) {
  .fa-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fa-404-actions {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 980px) {
  .fa-global-header {
    padding-top: 22px;
  }

  .fa-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
  }

  .fa-home-hero {
    min-height: 330px;
  }

  .fa-list-card__image {
    min-height: 196px;
  }
}

@media (max-width: 520px) {
  :root {
    --fa-radius-lg: 24px;
  }

  .fa-global-header {
    padding: 12px 10px 0;
  }

  .fa-global-header__inner {
    min-height: 52px;
    padding: 7px 8px;
  }

  .fa-brand__mark {
    width: 34px;
    height: 34px;
    font-size: 12px;
  }

  .fa-brand__text {
    max-width: 150px;
    font-size: 14px;
  }

  .fa-global-nav a,
  .fa-global-nav__menu a {
    min-height: 34px;
    padding: 0 12px;
    font-size: 12px;
  }

  .fa-global-nav a:nth-child(n+2) {
    display: none;
  }

  .fa-main {
    width: min(100% - 18px, var(--fa-max));
    padding-top: 20px;
  }

  .fa-home-hero__card,
  .fa-archive-hero,
  .fa-404-card {
    padding: 34px 18px;
  }

  .fa-profile-card {
    border-radius: 26px;
  }

  .fa-profile-card__body {
    padding: 0 18px 22px;
  }

  .fa-profile-card__cover {
    min-height: 220px;
  }

  .fa-profile-card__avatar {
    width: 78px;
    height: 78px;
    flex-basis: 78px;
  }

  .fa-linktree__item {
    grid-template-columns: 34px 1fr;
  }

  .fa-linktree__badge {
    grid-column: 2;
    justify-self: start;
  }

  .fa-map-section__head {
    padding: 16px 15px 12px;
  }

  .fa-map-section h2 {
    font-size: 20px;
  }

  .fa-map-section__frame {
    min-height: 230px;
    aspect-ratio: 4 / 3;
  }

  .fa-global-footer__inner {
    display: block;
    text-align: center;
  }

  .fa-global-footer a {
    display: inline-flex;
    margin-top: 10px;
  }
}
