/* ── FREE BEACH PAGE AUDIT (/free-beach-page-audit) ─────────────────────── */

.fba-main {
  background: var(--sand);
  min-height: 100vh;
  padding: clamp(4rem, 8vw, 8rem) var(--gutter);
}

.fba-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

/* ── LEFT ─────────────────────────────────────────── */
.fba-eyebrow {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sun);
  margin-bottom: 1.5rem;
}

.fba-title {
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -.02em;
  margin-bottom: 1.5rem;
}

.fba-sub {
  color: var(--taupe);
  font-size: .97rem;
  line-height: 1.8;
  margin-bottom: 2.75rem;
}

.fba-deliverables {
  display: flex;
  flex-direction: column;
  margin-bottom: 2.5rem;
}

.fba-d {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 1.25rem;
  padding: 1.4rem 0;
  border-top: 1px solid rgba(0,0,0,.08);
}

.fba-d:last-child {
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.fba-d-num {
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: rgba(184,130,30,.45);
  line-height: 1;
  padding-top: .1rem;
}

.fba-d-text h4 {
  color: var(--ink);
  font-size: .9rem;
  font-weight: 500;
  margin-bottom: .25rem;
}

.fba-d-text p {
  color: var(--taupe);
  font-size: .82rem;
  line-height: 1.6;
  margin: 0;
}

.fba-trust {
  color: var(--taupe);
  font-size: .8rem;
  line-height: 1.7;
  font-style: italic;
  opacity: .7;
}

/* ── RIGHT: dark panel against light page ─────────── */
.fba-form-panel {
  background: var(--ink);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 3px;
  padding: 2.5rem;
  position: sticky;
  top: 2rem;
}

.fba-form-eyebrow {
  font-family: var(--f-display);
  font-size: 1.65rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1.75rem;
  line-height: 1.2;
}

.fba-form-eyebrow mark {
  background: var(--sun);
  color: var(--white);
  padding: 0 .18em;
  border-radius: 2px;
}

.fba-privacy {
  font-size: .73rem;
  color: rgba(255,255,255,.22);
  margin-top: 1rem;
  text-align: center;
  line-height: 1.5;
}

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 900px) {
  .fba-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .fba-main {
    padding: 3rem var(--gutter);
  }

  .fba-form-panel {
    position: static;
  }
}
