

.fj-wrap {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.75rem);
}

.fj-section { padding-block: clamp(3.5rem, 7vw, 6rem); }

.fj-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-primary);
  margin-bottom: 1rem;
}

.fj-rule {
  display: block;
  width: 64px;
  height: 3px;
  margin: 1.4rem 0 0;
  background: var(--brand-accent);
  border-radius: 2px;
}

.fj-h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  line-height: 1.1;
  color: var(--ink);
  margin: 0;
}

.fj-h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 0.75rem;
}

.fj-lead {
  font-size: 1.075rem;
  line-height: 1.6;
  color: #4A4138;
  margin: 1.25rem 0 0;
}

.fj-measure { max-width: 64ch; }

.fj-section-head { margin-bottom: clamp(2rem, 4vw, 3rem); }
.fj-section-head .fj-rule { margin-bottom: 0.4rem; }

.fj-btn {
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.01em;
  padding-inline: 1.9rem;
}
.fj-btn--ghost {
  background: transparent;
  border: 1.5px solid var(--brand-primary);
  color: var(--brand-primary);
}
.fj-btn--ghost:hover,
.fj-btn--ghost:focus-visible {
  background: var(--brand-primary);
  color: var(--brand-on-primary);
}

.fj-hero {
  padding-block: clamp(3rem, 6vw, 5.5rem) clamp(3rem, 6vw, 5rem);
  background:
    radial-gradient(120% 120% at 88% 8%, rgba(251, 139, 36, 0.10), transparent 55%),
    var(--paper);
  border-bottom: 1px solid var(--line);
}
.fj-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.fj-hero__copy { max-width: 36rem; }

.fj-display {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
}
.fj-display em {
  font-style: italic;
  font-weight: 700;
  color: var(--brand-primary);
}

.fj-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.9rem;
}

.fj-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem 2.4rem;
  list-style: none;
  margin: 2.2rem 0 0;
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--line);
}
.fj-trust li { font-size: 0.95rem; color: #5A5044; }
.fj-trust strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
}

.fj-hero__media { position: relative; margin: 0; }
.fj-hero__media img {
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 24px 60px -28px rgba(43, 37, 32, 0.55);
}
.fj-hero__cap {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  right: 1rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: #FFF6E8;
  background: rgba(15, 76, 92, 0.86);
  padding: 0.55rem 0.85rem;
  border-radius: 4px;
}

.fj-about__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.fj-about__body p {
  font-size: 1.08rem;
  line-height: 1.65;
  color: #463E35;
  margin: 0 0 1.1rem;
}
.fj-about__body p:last-child { margin-bottom: 0; }
.fj-dropcap::first-letter {
  float: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 0.78;
  padding: 0.18rem 0.55rem 0 0;
  color: var(--brand-primary);
}

.fj-library { background: var(--paper-2); border-block: 1px solid var(--line); }
.fj-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.fj-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 14px 34px -26px rgba(43, 37, 32, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.fj-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px -24px rgba(43, 37, 32, 0.55);
}
.fj-card__media { position: relative; aspect-ratio: 3 / 2; }
.fj-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fj-card__dur {
  position: absolute;
  bottom: 0.6rem;
  right: 0.6rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #FFF6E8;
  background: rgba(15, 76, 92, 0.9);
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
}
.fj-card__body { padding: 1.25rem 1.3rem 1.45rem; }
.fj-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-primary);
  margin-bottom: 0.55rem;
}
.fj-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.18;
  color: var(--ink);
  margin: 0 0 0.5rem;
}
.fj-card__body p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: #574D42;
  margin: 0;
}
.fj-library__more {
  margin: 2.4rem auto 0;
  max-width: 60ch;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: #463E35;
}

.fj-band {
  background: var(--ink);
  color: #F6F1E7;
  padding-block: clamp(3rem, 6vw, 4.5rem);
}
.fj-band__kicker {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  color: #FFFBF3;
  text-align: center;
  margin: 0 0 2.4rem;
}
.fj-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.fj-stat { padding: 0.5rem 0.75rem; }
.fj-stat__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 1;
  color: var(--brand-accent);
}
.fj-stat__label {
  display: block;
  margin-top: 0.65rem;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  color: #E7DFD2;
}

.fj-coach-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}
.fj-coach { margin: 0; }
.fj-coach img {
  width: 100%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
  border-radius: 6px;
  display: block;
  box-shadow: 0 14px 30px -24px rgba(43, 37, 32, 0.5);
}
.fj-coach figcaption {
  margin-top: 0.85rem;
  padding-left: 0.7rem;
  border-left: 3px solid var(--brand-accent);
}
.fj-coach__role {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--ink);
}
.fj-coach__sub {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.85rem;
  color: #6A5F50;
}

.fj-plan-section {
  background: var(--brand-primary);
  color: var(--brand-on-primary);
}
.fj-plan__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.fj-eyebrow--on-color { color: var(--brand-accent); }
.fj-h2--on-color { color: #FFFBF3; }
.fj-rule--on-color { background: var(--brand-accent); }
.fj-lead--on-color { color: #EAF1F2; }

.fj-includes {
  list-style: none;
  margin: 1.8rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}
.fj-includes li {
  position: relative;
  padding-left: 1.9rem;
  font-size: 1rem;
  line-height: 1.45;
  color: #F2F6F6;
}
.fj-includes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.18em;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 999px;
  background: var(--brand-accent);
}
.fj-includes li::after {
  content: "";
  position: absolute;
  left: 0.34rem;
  top: 0.5em;
  width: 0.32rem;
  height: 0.16rem;
  border-left: 2px solid #1a1a1a;
  border-bottom: 2px solid #1a1a1a;
  transform: rotate(-45deg);
}

.fj-plan__card {
  background: var(--paper-2);
  color: var(--ink);
  border-radius: 10px;
  padding: 2.2rem 2rem;
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.55);
}
.fj-plan__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--ink);
  margin: 0 0 0.75rem;
}
.fj-plan__price {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-bottom: 1rem;
}
.fj-plan__amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3rem;
  line-height: 1;
  color: var(--brand-primary);
}
.fj-plan__per { font-size: 1rem; color: #6A5F50; }
.fj-plan__desc {
  font-size: 0.97rem;
  line-height: 1.55;
  color: #4A4138;
  margin-bottom: 1.4rem;
}
.fj-plan__card .fj-btn { margin-top: 0.25rem; }
.fj-plan__trial {
  margin: 1rem 0 0;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--brand-primary);
}
.fj-plan__descriptor {
  margin: 1rem 0 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: #6A5F50;
}

.fj-contact { background: var(--paper-2); border-top: 1px solid var(--line); }
.fj-contact__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.fj-contact p { color: #463E35; line-height: 1.6; }
.fj-contact__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.75rem;
  margin-top: 1.1rem;
}
.fj-contact__links a {
  font-weight: 600;
  color: var(--brand-primary);
  text-decoration: none;
  border-bottom: 1.5px solid var(--brand-accent);
}
.fj-contact__links a:hover,
.fj-contact__links a:focus-visible { color: var(--brand-accent); }
.fj-contact__addr { font-size: 0.95rem; }
.fj-contact__desc { font-size: 0.95rem; }
.fj-contact__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.4rem;
  list-style: none;
  margin: 1.1rem 0 0;
  padding: 0;
}
.fj-contact__legal a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand-primary);
  text-decoration: none;
}
.fj-contact__legal a:hover,
.fj-contact__legal a:focus-visible { text-decoration: underline; }

@media (max-width: 960px) {
  .fj-hero__grid,
  .fj-about__grid,
  .fj-plan__grid,
  .fj-contact__grid { grid-template-columns: 1fr; }
  .fj-hero__media { order: -1; }
  .fj-hero__media img { max-height: 420px; }
  .fj-cards { grid-template-columns: repeat(2, 1fr); }
  .fj-coach-grid { grid-template-columns: repeat(3, 1fr); }
  .fj-stats { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.5rem; }
}

@media (max-width: 560px) {
  .fj-cards { grid-template-columns: 1fr; }
  .fj-coach-grid { grid-template-columns: repeat(2, 1fr); }
  .fj-trust { gap: 1.2rem 1.8rem; }
  .fj-cta-row .fj-btn { flex: 1 1 auto; text-align: center; }
}

body { background: var(--paper); color: var(--ink); font-family: var(--font-body); }

.fj-topbar {
  background: #0C3E4B;
  color: #E7DFD2;
  font-family: var(--font-body);
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(251, 139, 36, 0.30);
}
.fj-topbar__inner {
  max-width: 1180px; margin-inline: auto;
  padding: 0.34rem clamp(1.25rem, 4vw, 2.75rem);
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; flex-wrap: wrap; min-height: 34px;
}
.fj-topbar__hours { opacity: 0.9; }
.fj-topbar__links a { color: var(--brand-accent); text-decoration: none; white-space: nowrap; font-weight: 600; }
.fj-topbar__links a:hover { text-decoration: underline; }
@media (max-width: 560px) { .fj-topbar__inner { justify-content: center; } .fj-topbar__hours { display: none; } }

.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.site-header .brand,
.site-footer .brand { display: inline-flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.site-header .brand .fj-logo,
.site-footer .brand .fj-logo { color: var(--brand-primary); display: inline-flex; }
.site-header .brand .fj-logo-word,
.site-footer .brand .fj-logo-word {
  font-family: var(--font-display); font-weight: 800; font-size: 1.28rem;
  letter-spacing: -0.01em; color: var(--ink); line-height: 1;
}
.site-header .nav-menu a {
  color: var(--ink); font-family: var(--font-body); font-weight: 600;
  text-decoration: none;
}
.site-header .nav-menu a:hover { color: var(--brand-primary); }
.site-header .nav-menu .btn-primary { color: var(--brand-on-primary); }
.nav-toggle { color: var(--ink); border-color: var(--line); }

.btn-primary {
  background: var(--brand-primary);
  border: 1.5px solid var(--brand-primary);
  color: var(--brand-on-primary);
  font-family: var(--font-body); font-weight: 600;
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--brand-primary-dark); border-color: var(--brand-primary-dark);
  color: var(--brand-on-primary); box-shadow: 0 8px 20px -10px rgba(15,76,92,0.6);
}
.btn-outline {
  background: transparent; border: 1.5px solid var(--brand-primary);
  color: var(--brand-primary); font-weight: 600;
}
.btn-outline:hover, .btn-outline:focus-visible { background: var(--brand-primary); color: var(--brand-on-primary); }

.site-footer {
  background: #F3ECDC;
  color: var(--ink);
  border-top: 1px solid var(--line);
}
.site-footer h4 { font-family: var(--font-display); color: var(--ink); }
.site-footer a { color: #4A4138; text-decoration: none; }
.site-footer a:hover { color: var(--brand-primary); text-decoration: underline; }
.site-footer .footer-bottom { color: #6A5F50; border-top: 1px solid var(--line); }

.legal-prose {
  color: var(--ink); line-height: 1.7; font-size: 1.02rem;
  font-family: var(--font-body);
}
.legal-prose h1, .legal-prose h2, .legal-prose h3 {
  font-family: var(--font-display); color: var(--ink); line-height: 1.2;
}
.legal-prose a { color: var(--brand-primary); border-bottom: 1px solid var(--brand-accent); text-decoration: none; }
.legal-prose a:hover { color: var(--brand-accent); }

.signup-section { background: var(--paper); color: var(--ink); }
.signup-title { font-family: var(--font-display); color: var(--ink); }
.signup-form-card, .signup-aside, .signup-summary {
  background: var(--paper-2); border: 1px solid var(--line); border-radius: 10px;
}
.signup-aside__title, .signup-summary__title { font-family: var(--font-display); color: var(--ink); }

.fj-faq { background: var(--paper-2); border-top: 1px solid var(--line); }
.fj-faq__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 2.5rem; margin-top: 2rem; }
.fj-faq__item {
  border-bottom: 1px solid var(--line); padding: 0.3rem 0;
}
.fj-faq__q {
  font-family: var(--font-display); font-weight: 700; font-size: 1.12rem;
  color: var(--ink); cursor: pointer; padding: 0.95rem 2rem 0.95rem 0; position: relative;
  list-style: none;
}
.fj-faq__q::-webkit-details-marker { display: none; }
.fj-faq__q::after {
  content: "+"; position: absolute; right: 0.2rem; top: 0.8rem;
  font-size: 1.4rem; color: var(--brand-accent); font-family: var(--font-body);
}
.fj-faq__item[open] .fj-faq__q::after { content: "\2013"; }
.fj-faq__a { padding: 0 0 1.1rem; }
.fj-faq__a p { color: #4A4138; line-height: 1.6; margin: 0; font-size: 0.98rem; }
@media (max-width: 760px) { .fj-faq__grid { grid-template-columns: 1fr; } }

.fj-lib-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}
.fj-lib-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 3 / 2;
  background: #1a1514;
  text-decoration: none;
}
.fj-lib-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.28s ease, filter 0.28s ease;
}
.fj-lib-thumb:hover img,
.fj-lib-thumb:focus-visible img {
  transform: scale(1.04);
  filter: brightness(0.88);
}
.fj-lib-chip {
  position: absolute;
  bottom: 0.65rem;
  left: 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FFF6E8;
  background: rgba(15, 76, 92, 0.88);
  padding: 0.22rem 0.65rem;
  border-radius: 999px;
  pointer-events: none;
}
@media (max-width: 760px) {
  .fj-lib-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
}
@media (max-width: 480px) {
  .fj-lib-grid { grid-template-columns: 1fr 1fr; gap: 0.4rem; }
}

.signup-grid { grid-template-columns: 0.85fr 1.15fr; }
@media (max-width: 860px) { .signup-grid { grid-template-columns: 1fr; } }
