
:root {
  --fa-black: #0a0a0a;
  --fa-dark: #121212;
  --fa-red: #e0242c;
  --fa-red-dark: #a3161c;
  --fa-white: #f5f5f5;
  --fa-grey: #9a9a9a;
  --fa-line: rgba(255, 255, 255, 0.14);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--fa-black);
  color: var(--fa-white);
  font-family: 'Barlow', -apple-system, 'Segoe UI', Roboto, sans-serif;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ---- Background: mountains + vignette ---- */
.fa-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 120% 60% at 50% -10%, rgba(224,36,44,0.10), transparent 60%),
    linear-gradient(180deg, #161616 0%, #0d0d0d 45%, #070707 100%);
}
.fa-bg svg {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 160%;
  min-width: 1200px;
  height: auto;
  opacity: 0.55;
}
.fa-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 70% at 50% 45%, transparent 40%, rgba(0,0,0,0.75) 100%);
}

/* ---- Layout ---- */
.fa-wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: clamp(2.5rem, 7vw, 5rem) 1.25rem 3rem;
  text-align: center;
  position: relative;
}

/* ---- Logo ---- */
.fa-logo { width: clamp(260px, 70vw, 420px); height: auto; margin: 0 auto; display: block; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.fa-logo-custom img { max-width: clamp(220px, 55vw, 340px); height: auto; }

.fa-brand {
  font-family: 'Barlow Condensed', 'Barlow', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: clamp(3.4rem, 13vw, 5.8rem);
  letter-spacing: 0.02em;
  line-height: 0.95;
  margin-top: 0.5rem;
  text-transform: uppercase;
}
.fa-sub {
  color: var(--fa-red);
  font-family: 'Barlow Condensed', 'Barlow', sans-serif;
  font-weight: 600;
  font-size: clamp(1.3rem, 5vw, 1.9rem);
  letter-spacing: 0.55em;
  text-indent: 0.55em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  justify-content: center;
  margin-top: 0.35rem;
}
.fa-sub::before, .fa-sub::after {
  content: '';
  height: 2px;
  width: clamp(18px, 6vw, 40px);
  background: var(--fa-red);
  clip-path: polygon(0 50%, 15% 0, 100% 0, 100% 100%, 15% 100%);
}
.fa-sub::after { transform: scaleX(-1); }

/* ---- Coming soon ---- */
.fa-coming {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin: clamp(2rem, 6vw, 3.2rem) 0;
  font-size: clamp(0.85rem, 3vw, 1.05rem);
  letter-spacing: 0.5em;
  text-indent: 0.5em;
  text-transform: uppercase;
  color: var(--fa-white);
}
.fa-coming::before, .fa-coming::after {
  content: '';
  height: 1px;
  width: clamp(30px, 8vw, 60px);
}
.fa-coming::before { background: linear-gradient(90deg, transparent, var(--fa-red)); }
.fa-coming::after { background: linear-gradient(90deg, var(--fa-white), transparent); }

/* ---- Headline ---- */
.fa-headline {
  font-family: 'Barlow Condensed', 'Barlow', sans-serif;
  font-weight: 700;
  font-size: clamp(1.9rem, 7.5vw, 3.1rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.fa-lead {
  color: #cfcfcf;
  font-size: clamp(1rem, 3.6vw, 1.2rem);
  font-weight: 300;
  line-height: 1.6;
  max-width: 32rem;
  margin: 0.9rem auto 0;
}

/* ---- Features ---- */
.fa-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: clamp(2.5rem, 7vw, 4rem) 0;
}
.fa-feature {
  padding: 0.25rem 0.5rem;
  border-left: 1px solid var(--fa-line);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}
.fa-feature:first-child { border-left: none; }
.fa-feature svg { width: 44px; height: 44px; stroke: var(--fa-red); fill: none; stroke-width: 1.6; }
.fa-feature span {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fa-white);
  line-height: 1.5;
}

/* ---- Tagline ---- */
.fa-tagline {
  font-family: 'Barlow Condensed', 'Barlow', sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 5.5vw, 2rem);
  letter-spacing: 0.22em;
  text-indent: 0.22em;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8em;
  flex-wrap: wrap;
}
.fa-tagline i {
  font-style: normal;
  color: var(--fa-red);
  font-size: 0.6em;
}

/* ---- Instagram CTA ---- */
.fa-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: clamp(2.2rem, 6vw, 3.2rem) auto 0;
  max-width: 460px;
  padding: 1.1rem 1.5rem;
  border: 1.5px solid var(--fa-red);
  border-radius: 18px;
  text-decoration: none;
  color: var(--fa-white);
  box-shadow: 0 0 24px rgba(224,36,44,0.28), inset 0 0 18px rgba(224,36,44,0.07);
  transition: box-shadow 0.25s ease, transform 0.25s ease, background 0.25s ease;
}
.fa-cta:hover, .fa-cta:focus-visible {
  box-shadow: 0 0 40px rgba(224,36,44,0.5), inset 0 0 24px rgba(224,36,44,0.12);
  transform: translateY(-2px);
  background: rgba(224,36,44,0.06);
}
.fa-cta:focus-visible { outline: 2px solid var(--fa-red); outline-offset: 4px; }
.fa-cta svg { width: 34px; height: 34px; flex-shrink: 0; }
.fa-cta-text { text-align: left; }
.fa-cta-text strong {
  display: block;
  font-size: clamp(0.95rem, 3.4vw, 1.15rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}
.fa-cta-text em {
  font-style: normal;
  color: var(--fa-red);
  font-size: clamp(0.8rem, 3vw, 0.95rem);
  letter-spacing: 0.18em;
}

/* ---- Footer ---- */
.fa-footer {
  margin-top: clamp(3rem, 8vw, 4.5rem);
  padding-top: 1.6rem;
  position: relative;
}
.fa-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(420px, 80%);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--fa-line), transparent);
}
.fa-footer-peak { width: 34px; height: auto; margin-bottom: 0.9rem; }
.fa-footer p {
  color: var(--fa-grey);
  font-size: 0.78rem;
  letter-spacing: 0.45em;
  text-indent: 0.45em;
  text-transform: uppercase;
}

/* ---- Entrance animation ---- */
@media (prefers-reduced-motion: no-preference) {
  .fa-rise { opacity: 0; transform: translateY(18px); animation: fa-rise 0.7s ease forwards; }
  .fa-rise-1 { animation-delay: 0.05s; }
  .fa-rise-2 { animation-delay: 0.2s; }
  .fa-rise-3 { animation-delay: 0.35s; }
  .fa-rise-4 { animation-delay: 0.5s; }
  .fa-rise-5 { animation-delay: 0.65s; }
  @keyframes fa-rise { to { opacity: 1; transform: none; } }
}

/* ---- Responsive ---- */
@media (max-width: 560px) {
  .fa-features { grid-template-columns: repeat(2, 1fr); row-gap: 1.8rem; }
  .fa-feature:nth-child(3) { border-left: none; }
}

/* ---- Crew / Social ---- */
.fa-crew {
  margin: clamp(2.2rem, 6vw, 3.2rem) auto 0;
  max-width: 460px;
  display: grid;
  gap: 0.7rem;
}
.fa-crew-title {
  font-size: 0.78rem;
  letter-spacing: 0.4em;
  text-indent: 0.4em;
  text-transform: uppercase;
  color: var(--fa-grey);
  margin-bottom: 0.3rem;
}
.fa-crew a {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1.1rem;
  border: 1px solid var(--fa-line);
  border-radius: 14px;
  text-decoration: none;
  color: var(--fa-white);
  background: rgba(255,255,255,0.02);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.fa-crew a:hover, .fa-crew a:focus-visible {
  border-color: var(--fa-red);
  background: rgba(224,36,44,0.06);
  transform: translateY(-1px);
}
.fa-crew a:focus-visible { outline: 2px solid var(--fa-red); outline-offset: 3px; }
.fa-crew svg { width: 22px; height: 22px; flex-shrink: 0; stroke: var(--fa-red); fill: none; stroke-width: 3; }
.fa-crew-name {
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
}
.fa-crew-meta {
  margin-left: auto;
  color: var(--fa-grey);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ---- Team ---- */
.fa-team {
  margin: clamp(2.5rem, 7vw, 4rem) auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 560px;
}
.fa-member { display: flex; flex-direction: column; align-items: center; gap: 0.7rem; text-decoration: none; color: var(--fa-white); }
.fa-member-pic {
  width: clamp(84px, 22vw, 120px);
  height: clamp(84px, 22vw, 120px);
  border-radius: 50%;
  border: 2px solid var(--fa-red);
  box-shadow: 0 0 18px rgba(224,36,44,0.25);
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--fa-red);
  overflow: hidden;
}
.fa-member-pic img { width: 100%; height: 100%; object-fit: cover; }
.fa-member strong { font-size: 0.9rem; letter-spacing: 0.08em; font-weight: 600; }
.fa-member em { font-style: normal; color: var(--fa-grey); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; }
.fa-member:hover .fa-member-pic { box-shadow: 0 0 30px rgba(224,36,44,0.5); }

/* ---- Instagram Embeds ---- */
.fa-media {
  margin: clamp(2.5rem, 7vw, 4rem) auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  max-width: 660px;
}
.fa-media .instagram-media { margin: 0 auto !important; min-width: 0 !important; }
.fa-section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(1.3rem, 4.5vw, 1.7rem);
  letter-spacing: 0.18em;
  text-indent: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.fa-section-title small { display: block; font-family: 'Barlow', sans-serif; font-weight: 300; font-size: 0.85rem; letter-spacing: 0.06em; text-transform: none; text-indent: 0; color: var(--fa-grey); margin-top: 0.3rem; }
