/*
Theme Name: Free Amos Don
Theme URI: https://freeamosdon.com
Author: Chan Inthisone
Author URI: https://webprintlab.com
Description: Child theme of GeneratePress for the Free Amos Don justice campaign. Built by Chan Inthisone for WebPrintLab. Editorial dark/gold aesthetic with custom Gutenberg blocks per section.
Template: generatepress
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: freeamos-child
*/

/* ============================================================
   FREE AMOS DON — BRAND TOKENS
   Palette, typography and spacing shared across theme + blocks.
   theme.json exposes the same values to the block editor.
   ============================================================ */
:root {
  /* Core palette */
  --fa-black: #0a0a0a;
  --fa-deep: #111111;
  --fa-surface: #1a1a1a;
  --fa-gold: #c9a84c;
  --fa-gold-light: #e8c97a;
  --fa-gold-dim: rgba(201, 168, 76, 0.15);
  --fa-cream: #f5f0e8;
  --fa-white: #ffffff;
  --fa-red: #8b1a1a;
  --fa-text-muted: #888888;

  /* Hairline borders (gold at low alpha) */
  --fa-border: rgba(201, 168, 76, 0.12);
  --fa-border-strong: rgba(201, 168, 76, 0.3);

  /* Typography */
  --fa-font-display: 'Playfair Display', Georgia, serif;
  --fa-font-serif: 'Cormorant Garamond', Georgia, serif;
  --fa-font-sans: 'DM Sans', system-ui, sans-serif;

  /* Layout */
  --fa-container: 1200px;
  --fa-gutter: 48px;
  --fa-gutter-mobile: 24px;
}

/* ============================================================
   GLOBAL RESET / BASE
   GeneratePress is intentionally unopinionated; we set the
   campaign's dark base and typography here.
   ============================================================ */
html { scroll-behavior: smooth; }

body.freeamos {
  background: var(--fa-black);
  color: var(--fa-cream);
  font-family: var(--fa-font-sans);
  font-weight: 300;
  overflow-x: hidden;
}

/* Neutralise GeneratePress content spacing so full-bleed sections
   can control their own padding. GP wraps content in #content.site-content
   > .content-area > main; strip its container padding/max-width so our
   sections run edge-to-edge. */
body.freeamos #content,
body.freeamos .site-content,
body.freeamos .site-main,
body.freeamos .content-area,
body.freeamos .inside-article,
body.freeamos .fa-main {
  margin: 0;
  padding: 0;
  max-width: none;
}

/* The fixed nav overlaps the top of the document. Regular content needs
   to clear it; full-bleed hero sections deliberately sit UNDER the
   translucent nav, so they opt out with `.fa-bleed-top`. */
body.freeamos .fa-main { padding-top: 72px; }
.admin-bar.freeamos .fa-main { padding-top: 104px; } /* + 32px desktop admin bar */
@media screen and (max-width: 782px) {
  /* Mobile admin bar is position:absolute (scrolls away), so the nav sits at
     top:0 and content only needs to clear the 72px nav — no admin-bar offset. */
  .admin-bar.freeamos .fa-main { padding-top: 72px; }
}

/* Opt-out for full-bleed first sections (e.g. the hero block). GeneratePress
   nests the block deep inside .content-area > .site-main > article >
   .inside-article > .entry-content, so we can't rely on :first-child at the
   .fa-main level. Instead, when a .fa-bleed-top exists anywhere in the main,
   remove the main's top offset and pull the section up under the fixed nav. */
body.freeamos .fa-main:has(.fa-bleed-top) { padding-top: 0; }
.admin-bar.freeamos .fa-main:has(.fa-bleed-top) { padding-top: 0; }

/* Collapse GP's wrapper padding/margins above the bleed section and let it
   sit flush at the document top (behind the translucent nav). */
body.freeamos .content-area:has(.fa-bleed-top),
body.freeamos .site-main:has(.fa-bleed-top),
body.freeamos .inside-article:has(.fa-bleed-top),
body.freeamos .entry-content:has(.fa-bleed-top) {
  margin-top: 0;
  padding-top: 0;
}

body.freeamos a { color: var(--fa-gold); }

/* Force the campaign's dark base onto every GeneratePress structural
   wrapper so no white container background bleeds through between
   full-bleed sections. */
body.freeamos #page,
body.freeamos .site,
body.freeamos #content,
body.freeamos .site-content,
body.freeamos .content-area,
body.freeamos .site-main,
body.freeamos article,
body.freeamos .entry-content,
body.freeamos .fa-main,
/* GeneratePress applies a white background to .inside-article in its
   separate-containers layout — override it (more specific than GP's rule). */
body.freeamos .separate-containers .inside-article,
body.freeamos .inside-article {
  background: var(--fa-black) !important;
}

/* Shared section rhythm reused by block markup */
.fa-section { padding: 100px var(--fa-gutter); }
.fa-container { max-width: var(--fa-container); margin: 0 auto; }

/* Anchor targets scroll to sit just below the fixed nav (~72px) instead of
   hiding under it when reached via a #section nav link. */
[id="story"],
[id="testimonials"],
[id="behind-ink"],
[id="events"],
[id="take-action"],
[id="newsletter"],
[id="ink-from-honey"] { scroll-margin-top: 84px; }

.fa-section-label {
  font-family: var(--fa-font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fa-gold);
  margin-bottom: 16px;
}

/* ============================================================
   HERO BLOCK  (blocks/hero)
   ============================================================ */
.fa-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--fa-gutter) 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1008 0%, #0d0d0d 50%, #1a0808 100%);
}

/* Optional background image sits behind the gradient overlay. */
.fa-hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* Gradient + tint overlay so text stays legible over any image. */
.fa-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 70% 40%, rgba(139, 26, 26, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(201, 168, 76, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.3) 0%, rgba(10, 10, 10, 0.85) 60%, var(--fa-black) 100%);
}

.fa-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.fa-hero-eyebrow {
  font-family: var(--fa-font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--fa-gold);
  margin-bottom: 24px;
}

.fa-hero-title {
  font-family: var(--fa-font-display);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 900;
  line-height: 0.95;
  color: var(--fa-white);
  margin-bottom: 32px;
}

.fa-hero-title span,
.fa-hero-title-emphasis {
  color: var(--fa-gold);
  font-style: italic;
}

.fa-hero-subtitle {
  font-family: var(--fa-font-serif);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-style: italic;
  color: var(--fa-cream);
  max-width: 560px;
  line-height: 1.6;
  margin-bottom: 48px;
}

.fa-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.fa-hero-scroll {
  position: absolute;
  bottom: 32px;
  right: var(--fa-gutter);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.fa-hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fa-text-muted);
  writing-mode: vertical-rl;
}

.fa-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--fa-gold), transparent);
  animation: faScrollPulse 2s infinite;
}

@keyframes faScrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

@media (prefers-reduced-motion: reduce) {
  .fa-scroll-line { animation: none; }
}

/* Editor: the hero can't be 100vh inside the canvas; cap it and keep the
   background image visible on the block wrapper itself. */
.fa-hero--editor {
  min-height: 520px;
  background-size: cover;
  background-position: center;
}
.fa-hero--editor .fa-hero-title,
.fa-hero--editor .fa-hero-subtitle,
.fa-hero--editor .fa-hero-eyebrow { margin-left: 0; }

/* ============================================================
   STORY SECTION BLOCK  (blocks/story)
   ============================================================ */
.fa-story {
  background: var(--fa-deep);
  border-top: 1px solid var(--fa-border);
}

.fa-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.fa-story-left { position: sticky; top: 100px; }

/* Mobile: stack the two story columns into one and un-stick the left. */
@media (max-width: 900px) {
  .fa-story-grid { grid-template-columns: 1fr; gap: 48px; }
  .fa-story-left { position: static; top: auto; }
}

.fa-story-title {
  font-family: var(--fa-font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--fa-white);
  margin-bottom: 32px;
}

.fa-story-title em { color: var(--fa-gold); font-style: italic; }

.fa-story-body,
.fa-story-body p {
  font-family: var(--fa-font-serif);
  font-size: 1.25rem;
  line-height: 1.9;
  color: rgba(245, 240, 232, 0.8);
  margin-bottom: 24px;
}

/* Right column pieces stack with breathing room. */
.fa-story-right > * { margin-bottom: 32px; }
.fa-story-right > *:last-child { margin-bottom: 0; }

/* ---- Pull quote (blocks/pull-quote) ---- */
.fa-pull-quote {
  border-left: 3px solid var(--fa-gold);
  padding: 24px 32px;
  margin: 40px 0;
  background: var(--fa-gold-dim);
}
.fa-pull-quote p {
  font-family: var(--fa-font-display);
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--fa-cream);
  margin: 0;
}
.fa-pull-quote cite {
  display: block;
  margin-top: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fa-gold);
  font-style: normal;
}

/* ---- Rights box (blocks/rights-box) ---- */
.fa-rights-box {
  background: rgba(139, 26, 26, 0.15);
  border: 1px solid rgba(139, 26, 26, 0.3);
  padding: 28px 32px;
  margin-top: 32px;
}
.fa-rights-box h4 {
  font-family: var(--fa-font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #cc4444;
  margin: 0 0 12px;
}
.fa-rights-box p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.75);
  margin: 0;
}

/* ---- Video (blocks/video) ---- */
.fa-video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: var(--fa-deep);
  background-size: cover;
  background-position: center;
  border: 1px solid var(--fa-gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.fa-play-btn {
  width: 52px;
  height: 52px;
  border: 2px solid var(--fa-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--fa-gold);
  transition: background 0.2s;
  text-decoration: none;
  /* Reset native <button> chrome — this class is shared by a/span/button. */
  background: transparent;
  padding: 0;
  font: inherit;
  line-height: 0;
}
.fa-play-btn:hover { background: var(--fa-gold-dim); }
.fa-play-btn svg { margin-left: 4px; }

/* ---- Video lightbox modal ---- */
html.fa-modal-open { overflow: hidden; }
.fa-video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.fa-video-modal.is-open { display: flex; }
.fa-video-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(4px);
}
.fa-video-modal-dialog {
  position: relative;
  width: 100%;
  max-width: 960px;
  z-index: 1;
}
.fa-video-modal-body {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid var(--fa-gold-dim);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}
.fa-video-modal-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.fa-video-modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  padding: 0;
  background: transparent;
  border: 0;
  color: var(--fa-cream);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s;
}
.fa-video-modal-close:hover { color: var(--fa-gold); }

@media (max-width: 640px) {
  .fa-video-modal { padding: 16px; }
  .fa-video-modal-close { top: -40px; }
}

/* Story columns as core-block hosts: the seeded core/heading + core/paragraph
   carry our brand classes, so style those explicitly (front end + editor). */
.fa-story .fa-story-title,
.fa-story h2.fa-story-title { /* core/heading with .fa-story-title */
  font-family: var(--fa-font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--fa-white);
  margin-bottom: 32px;
}
.fa-story p.fa-story-body { /* core/paragraph with .fa-story-body */
  font-family: var(--fa-font-serif);
  font-size: 1.25rem;
  line-height: 1.9;
  color: rgba(245, 240, 232, 0.8);
  margin-bottom: 24px;
}
.fa-story p.fa-section-label {
  font-family: var(--fa-font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fa-gold);
  margin-bottom: 16px;
}

/* Editor: force the two story columns side-by-side (the grid class is on the
   InnerBlocks wrapper) and un-stick the left column so both are fully visible
   while editing. */
.fa-story--editor .fa-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.fa-story--editor .fa-story-left { position: static; }
.fa-story-col--editor { min-height: 60px; }
/* WordPress wraps each inner block list item; keep spacing sane in editor. */
.fa-story--editor .fa-story-right > * { margin-bottom: 32px; }

/* ============================================================
   BEHIND THE INK SECTION  (blocks/behind-ink)
   ============================================================ */
.fa-behind-ink {
  background: var(--fa-surface);
  border-top: 1px solid var(--fa-border);
  border-bottom: 1px solid var(--fa-border);
}

.fa-series-header {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 64px;
}

.fa-series-title {
  font-family: var(--fa-font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  font-style: italic;
  color: var(--fa-white);
  line-height: 1.05;
  margin: 0;
}
.fa-series-title span { color: var(--fa-gold); display: block; }

.fa-series-desc {
  font-family: var(--fa-font-serif);
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.75);
  padding-top: 12px;
  margin: 0;
}

/* Grid uses a 1px gold gap so items are separated by hairline dividers. */
.fa-series-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(201, 168, 76, 0.1);
}

.fa-series-item {
  background: var(--fa-surface);
  padding: 40px;
  transition: background 0.2s;
  text-decoration: none;
  display: block;
}
.fa-series-item:hover { background: rgba(201, 168, 76, 0.05); }

.fa-series-num {
  font-family: var(--fa-font-display);
  font-size: 0.85rem;
  color: var(--fa-gold);
  letter-spacing: 0.1em;
  margin: 0 0 16px;
}

.fa-series-item-title {
  font-family: var(--fa-font-display);
  font-size: 1.3rem;
  color: var(--fa-white);
  margin: 0 0 12px;
}

.fa-series-item-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--fa-text-muted);
  margin: 0;
}

@media (max-width: 900px) {
  .fa-series-header { grid-template-columns: 1fr; gap: 24px; }
  .fa-series-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SINGLE EPISODE  (single-episode.php)
   ============================================================ */
.fa-single-episode { background: var(--fa-black); padding-top: 160px; }
.fa-single-episode-inner { max-width: 900px; }
.fa-single-episode-title {
  font-family: var(--fa-font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--fa-white);
  line-height: 1.1;
  margin: 8px 0 40px;
}
.fa-single-episode-body {
  font-family: var(--fa-font-serif);
  font-size: 1.2rem;
  line-height: 1.9;
  color: rgba(245, 240, 232, 0.8);
  margin-top: 40px;
}

/* ============================================================
   TAKE ACTION SECTION  (blocks/take-action, step, letter-box)
   ============================================================ */
.fa-take-action { background: var(--fa-black); padding: 120px var(--fa-gutter); }

.fa-action-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.fa-action-title {
  font-family: var(--fa-font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--fa-white);
  line-height: 1.05;
  margin: 0 0 24px;
}
.fa-action-title span { color: var(--fa-gold); font-style: italic; }

.fa-action-body {
  font-family: var(--fa-font-serif);
  font-size: 1.3rem;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.75);
  max-width: 600px;
  margin: 0 auto 64px;
}

/* Steps grid — 1px gold gap for hairline dividers, left-aligned text. */
.fa-action-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201, 168, 76, 0.15);
  margin-bottom: 64px;
  text-align: left;
}

.fa-step { background: var(--fa-deep); padding: 40px 32px; }

.fa-step-num {
  font-family: var(--fa-font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--fa-gold);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 16px;
}
.fa-step-title {
  font-family: var(--fa-font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fa-white);
  margin: 0 0 12px;
}
.fa-step-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--fa-text-muted);
  margin: 0;
}

/* Letter box */
.fa-letter-box {
  background: var(--fa-surface);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 48px;
  text-align: left;
  margin-bottom: 40px;
}
.fa-letter-title {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--fa-gold);
  margin: 0 0 24px;
}
.fa-letter-body {
  font-family: var(--fa-font-serif);
  font-size: 1.1rem;
  line-height: 1.9;
  color: rgba(245, 240, 232, 0.8);
}
.fa-letter-address {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--fa-gold-dim);
  font-size: 0.85rem;
  color: var(--fa-text-muted);
  line-height: 1.8;
}
.fa-letter-address strong { color: var(--fa-cream); }

.fa-action-cta > * { margin: 0 8px; }

/* Editor: keep the CTA span-buttons inline; steps stack naturally in the
   inner-blocks list (front end applies the true 3-col grid). */
.fa-take-action--editor .fa-action-inner-blocks { text-align: left; margin-bottom: 40px; }

@media (max-width: 900px) {
  .fa-take-action { padding: 80px var(--fa-gutter-mobile); }
  .fa-action-steps { grid-template-columns: 1fr; }
  .fa-letter-box { padding: 32px 24px; }
}

/* ============================================================
   EVENTS / CALENDAR SECTION  (blocks/events)
   ============================================================ */
.fa-events {
  background: var(--fa-deep);
  border-top: 1px solid var(--fa-border);
}

.fa-events-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.fa-events-title {
  font-family: var(--fa-font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--fa-white);
  margin: 0;
}
.fa-events-cta { white-space: nowrap; }

.fa-event-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid rgba(245, 240, 232, 0.06);
  transition: background 0.2s;
  text-decoration: none;
}
.fa-event-row:hover { background: rgba(201, 168, 76, 0.03); }

.fa-event-date-block { text-align: center; }
.fa-event-month {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fa-gold);
  margin: 0;
}
.fa-event-day {
  font-family: var(--fa-font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--fa-white);
  line-height: 1;
  margin: 0;
}
.fa-event-year {
  font-size: 0.7rem;
  color: var(--fa-text-muted);
  margin: 0;
}

.fa-event-info h3 {
  font-family: var(--fa-font-display);
  font-size: 1.3rem;
  color: var(--fa-white);
  margin: 0 0 6px;
}
.fa-event-info p {
  font-size: 0.85rem;
  color: var(--fa-text-muted);
  margin: 0;
}

.fa-event-tag {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid var(--fa-border-strong);
  color: var(--fa-gold);
  white-space: nowrap;
}

/* Archive: past events block */
.fa-events-past-title {
  font-family: var(--fa-font-display);
  font-size: 1.4rem;
  color: var(--fa-text-muted);
  margin: 64px 0 16px;
}
.fa-events-past { opacity: 0.6; }

/* Single event */
.fa-single-event { background: var(--fa-black); padding-top: 160px; }
.fa-single-event-inner { max-width: 820px; }
.fa-single-event-head {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin: 24px 0 40px;
}
.fa-event-date-block--lg .fa-event-day { font-size: 3.5rem; }
.fa-single-event-title {
  font-family: var(--fa-font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--fa-white);
  line-height: 1.1;
  margin: 16px 0 8px;
}
.fa-single-event-meta { color: var(--fa-text-muted); margin: 0; }
.fa-single-event-body {
  font-family: var(--fa-font-serif);
  font-size: 1.2rem;
  line-height: 1.9;
  color: rgba(245, 240, 232, 0.8);
  margin-top: 24px;
}
.fa-single-event-cta { margin-top: 40px; }

@media (max-width: 900px) {
  .fa-events-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .fa-event-row { grid-template-columns: 80px 1fr; }
  .fa-event-tag { display: none; }
  .fa-single-event-head { flex-direction: column; gap: 20px; }
}

/* ============================================================
   INK FROM HONEY / MOVEMENT BAND  (blocks/movement, link-button)
   The one bright, gold-inverted section.
   ============================================================ */
.fa-movement {
  background: var(--fa-gold);
  padding: 100px var(--fa-gutter);
  text-align: center;
}

.fa-movement-inner { max-width: 700px; margin: 0 auto; }

/* Label is dark/translucent on the gold background. */
.fa-movement-label { color: rgba(10, 10, 10, 0.5); }

.fa-movement-title {
  font-family: var(--fa-font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--fa-black);
  line-height: 1.05;
  margin: 0 0 24px;
}

.fa-movement-body {
  font-family: var(--fa-font-serif);
  font-size: 1.3rem;
  line-height: 1.8;
  color: rgba(10, 10, 10, 0.75);
  max-width: 600px;
  margin: 0 auto 48px;
}

.fa-movement-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Link buttons: dark pills on the gold band. */
.fa-link-button {
  display: inline-block;
  background: var(--fa-black);
  color: var(--fa-gold);
  padding: 16px 36px;
  font-family: var(--fa-font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.fa-link-button:hover { background: #1a1a1a; color: var(--fa-gold); }

/* Editor: keep the gold band + centered inner while editing; the InnerBlocks
   button list stays horizontal & centered. */
.fa-movement--editor .fa-movement-links { justify-content: center; }
.fa-movement--editor .fa-link-button { text-decoration: none; }

@media (max-width: 900px) {
  .fa-movement { padding: 80px var(--fa-gutter-mobile); }
}

/* ============================================================
   PRESS SECTION  (blocks/press)
   ============================================================ */
.fa-press { background: var(--fa-black); }

.fa-press-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}
.fa-press-title {
  font-family: var(--fa-font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--fa-white);
  margin: 0;
}
.fa-press-title em { color: var(--fa-gold); font-style: italic; }
.fa-press-cta { white-space: nowrap; }

.fa-press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.fa-press-card {
  display: flex;
  flex-direction: column;
  background: var(--fa-surface);
  border: 1px solid rgba(201, 168, 76, 0.1);
  padding: 32px;
  text-decoration: none;
  transition: border-color 0.3s, transform 0.3s;
}
.fa-press-card:hover { border-color: rgba(201, 168, 76, 0.4); transform: translateY(-4px); }

.fa-press-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  min-height: 24px;
}
.fa-press-logo { max-height: 28px; width: auto; opacity: 0.9; }
.fa-press-outlet {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fa-gold);
}
.fa-press-date { font-size: 0.72rem; color: var(--fa-text-muted); white-space: nowrap; }

.fa-press-headline {
  font-family: var(--fa-font-display);
  font-size: 1.25rem;
  line-height: 1.3;
  color: var(--fa-white);
  margin: 0 0 12px;
}
.fa-press-excerpt {
  font-family: var(--fa-font-serif);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.75);
  margin: 0 0 16px;
}
.fa-press-outlet-sub {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fa-text-muted);
  margin-bottom: 12px;
}
.fa-press-readmore {
  margin-top: auto;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fa-gold);
}

/* Single press */
.fa-single-press { background: var(--fa-black); padding-top: 160px; }
.fa-single-press-inner { max-width: 760px; }
.fa-single-press-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0 16px;
}
.fa-single-press-meta .fa-press-logo { max-height: 40px; }
.fa-single-press-title {
  font-family: var(--fa-font-display);
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 700;
  color: var(--fa-white);
  line-height: 1.15;
  margin: 0 0 20px;
}
.fa-single-press-excerpt {
  font-family: var(--fa-font-serif);
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--fa-cream);
  border-left: 3px solid var(--fa-gold);
  padding-left: 24px;
  margin: 0 0 32px;
}
.fa-single-press-body {
  font-family: var(--fa-font-serif);
  font-size: 1.15rem;
  line-height: 1.9;
  color: rgba(245, 240, 232, 0.8);
}
.fa-single-press-cta { margin-top: 40px; }

@media (max-width: 900px) {
  .fa-press-grid { grid-template-columns: 1fr; }
  .fa-press-header { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ============================================================
   PAGE HERO  (archive / landing headers — reusable)
   ============================================================ */
.fa-page-hero {
  position: relative;
  padding: 200px var(--fa-gutter) 80px;
  background: linear-gradient(135deg, #1a1008 0%, #0d0d0d 55%, #1a0808 100%);
  overflow: hidden;
}
.fa-page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 75% 30%, rgba(139, 26, 26, 0.22) 0%, transparent 60%),
    radial-gradient(ellipse at 15% 90%, rgba(201, 168, 76, 0.1) 0%, transparent 55%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.2) 0%, var(--fa-black) 100%);
}
.fa-page-hero-content { position: relative; z-index: 1; }
.fa-page-hero-title {
  font-family: var(--fa-font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.02;
  color: var(--fa-white);
  margin: 0 0 20px;
}
.fa-page-hero-title span { color: var(--fa-gold); font-style: italic; }
.fa-page-hero-sub {
  font-family: var(--fa-font-serif);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  line-height: 1.6;
  color: rgba(245, 240, 232, 0.75);
  max-width: 620px;
  margin: 0;
}

/* ============================================================
   SINGLE TESTIMONIAL  (single-testimonial.php)
   ============================================================ */
.fa-single-testimonial { background: var(--fa-black); padding-top: 160px; }
.fa-single-testimonial-inner { max-width: 860px; }
.fa-back-link {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fa-text-muted);
  text-decoration: none;
  margin-bottom: 40px;
  transition: color 0.2s;
}
.fa-back-link:hover { color: var(--fa-gold); }
.fa-single-video { margin-bottom: 48px; }
.fa-single-quote {
  border-left: 3px solid var(--fa-gold);
  padding: 8px 0 8px 36px;
  margin: 0 0 32px;
}
.fa-single-quote p {
  font-family: var(--fa-font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-style: italic;
  line-height: 1.4;
  color: var(--fa-cream);
  margin: 0;
}
.fa-single-attribution .fa-testimonial-name { font-size: 0.85rem; }
.fa-single-attribution .fa-testimonial-role { font-size: 0.85rem; }

/* ============================================================
   PAGINATION (archive)
   ============================================================ */
.fa-section .pagination,
.fa-section nav.pagination {
  margin-top: 64px;
  display: flex;
  justify-content: center;
  gap: 12px;
}
.fa-section .pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--fa-border);
  color: var(--fa-cream);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.fa-section .pagination .page-numbers:hover { border-color: var(--fa-gold); color: var(--fa-gold); }
.fa-section .pagination .page-numbers.current {
  background: var(--fa-gold);
  color: var(--fa-black);
  border-color: var(--fa-gold);
}

/* ============================================================
   TESTIMONIALS SECTION  (blocks/testimonials)
   ============================================================ */
.fa-testimonials { background: var(--fa-black); }

.fa-testimonials-header {
  margin: 0 auto 64px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.fa-testimonials-title {
  font-family: var(--fa-font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--fa-white);
  margin: 0;
}
.fa-testimonials-title em { color: var(--fa-gold); font-style: italic; }

.fa-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.fa-testimonial-card {
  background: var(--fa-surface);
  border: 1px solid rgba(201, 168, 76, 0.1);
  padding: 40px 32px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.fa-testimonial-card:hover {
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateY(-4px);
}
.fa-testimonial-card::before {
  content: '\201C';
  font-family: var(--fa-font-display);
  font-size: 6rem;
  color: var(--fa-gold);
  opacity: 0.15;
  position: absolute;
  top: 8px;
  left: 24px;
  line-height: 1;
  pointer-events: none;
}

.fa-testimonial-card .fa-video { margin-bottom: 24px; }

.fa-testimonial-quote {
  font-family: var(--fa-font-serif);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.85);
  margin: 0 0 20px;
}
.fa-testimonial-name {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fa-gold);
  margin: 0;
}
.fa-testimonial-role {
  font-size: 0.75rem;
  color: var(--fa-text-muted);
  margin: 4px 0 0;
}

.fa-testimonials-cta { text-align: center; margin-top: 48px; }

.fa-testimonials-empty {
  color: var(--fa-text-muted);
  font-style: italic;
  text-align: center;
  padding: 40px 0;
}

@media (max-width: 900px) {
  .fa-testimonials-grid { grid-template-columns: 1fr; }
  .fa-testimonials-header { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ============================================================
   NAV / HEADER  (header.php)
   ============================================================ */
.fa-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999; /* above page content, below the WP admin bar (99999) */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px var(--fa-gutter);
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--fa-gold-dim);
}

/* When logged in on DESKTOP, push the fixed nav below the WP admin bar
   (32px, position:fixed) so it isn't hidden behind it. */
.admin-bar .fa-nav { top: 32px; }

/* On mobile (<=782px) the WP admin bar is position:absolute and SCROLLS
   AWAY with the page, so reserving 46px would leave a permanent empty gap
   above the nav. Keep the nav flush at top:0 — it scrolls under the admin
   bar just like the admin bar's own behaviour. */
@media screen and (max-width: 782px) {
  .admin-bar .fa-nav { top: 0; }
}

/* GeneratePress can constrain #page / .site with a max-width and
   transforms that break position:fixed. Neutralise for our layout so
   the nav stays truly sticky across the whole viewport. */
body.freeamos #page,
body.freeamos .site {
  overflow: visible;
  transform: none;
}

.fa-nav-logo {
  font-family: var(--fa-font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--fa-gold);
  letter-spacing: 0.05em;
  text-decoration: none;
}

.fa-nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.fa-nav-links a {
  color: var(--fa-cream);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
}

.fa-nav-links a:hover { opacity: 1; color: var(--fa-gold); }

/* CTA styling applied to the last menu item via .fa-nav-cta,
   or to any menu item given the `nav-cta` CSS class in the menu UI. */
.fa-nav-links a.fa-nav-cta,
.fa-nav-links .menu-item-cta a,
.fa-nav-links .nav-cta a {
  background: var(--fa-gold);
  color: var(--fa-black);
  padding: 10px 22px;
  font-weight: 500;
  opacity: 1;
  transition: background 0.2s;
}

.fa-nav-links a.fa-nav-cta:hover,
.fa-nav-links .menu-item-cta a:hover,
.fa-nav-links .nav-cta a:hover { background: var(--fa-gold-light); color: var(--fa-black); }

/* Mobile menu toggle (hidden on desktop) */
.fa-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--fa-cream);
  cursor: pointer;
  padding: 8px;
}
.fa-nav-toggle svg { display: block; }

/* ============================================================
   BUTTONS (shared by hero, take-action, movement, etc.)
   ============================================================ */
.fa-btn-primary,
.fa-btn-ghost,
.fa-btn-dark {
  display: inline-block;
  padding: 16px 36px;
  font-family: var(--fa-font-sans);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}

/* Scoped under body.freeamos so button text colors beat GeneratePress's
   generic `a { color }` link rule (which was turning the primary button's
   text gold-on-gold). */
body.freeamos a.fa-btn-primary,
.fa-btn-primary {
  background: var(--fa-gold);
  color: var(--fa-black);
  font-weight: 500;
}
body.freeamos a.fa-btn-primary:hover,
.fa-btn-primary:hover { background: var(--fa-gold-light); color: var(--fa-black); transform: translateY(-2px); }

body.freeamos a.fa-btn-ghost,
.fa-btn-ghost {
  border: 1px solid rgba(245, 240, 232, 0.3);
  color: var(--fa-cream);
  font-weight: 400;
}
body.freeamos a.fa-btn-ghost:hover,
.fa-btn-ghost:hover { border-color: var(--fa-gold); color: var(--fa-gold); transform: translateY(-2px); }

body.freeamos a.fa-btn-dark,
.fa-btn-dark {
  background: var(--fa-black);
  color: var(--fa-gold);
  font-weight: 500;
}
body.freeamos a.fa-btn-dark:hover,
.fa-btn-dark:hover { background: #1a1a1a; color: var(--fa-gold); }

/* ============================================================
   NEWSLETTER  (rendered in footer.php above the footer)
   ============================================================ */
.fa-newsletter {
  background: var(--fa-black);
  padding: 100px var(--fa-gutter);
  text-align: center;
  border-top: 1px solid var(--fa-border);
}

.fa-newsletter-title {
  font-family: var(--fa-font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--fa-white);
  margin-bottom: 16px;
}

.fa-newsletter-sub {
  font-family: var(--fa-font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(245, 240, 232, 0.6);
  max-width: 500px;
  margin: 0 auto 40px;
}

.fa-email-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
}

.fa-email-input {
  flex: 1;
  background: var(--fa-surface);
  border: 1px solid var(--fa-border-strong);
  border-right: none;
  padding: 16px 20px;
  color: var(--fa-cream);
  font-family: var(--fa-font-sans);
  font-size: 0.9rem;
  outline: none;
}
.fa-email-input::placeholder { color: var(--fa-text-muted); }
.fa-email-input:focus { border-color: rgba(201, 168, 76, 0.5); }

.fa-email-btn {
  background: var(--fa-gold);
  border: none;
  padding: 16px 28px;
  color: var(--fa-black);
  font-family: var(--fa-font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.fa-email-btn:hover { background: var(--fa-gold-light); }

/* ============================================================
   FOOTER  (footer.php)
   ============================================================ */
.fa-footer {
  background: var(--fa-deep);
  border-top: 1px solid var(--fa-border);
  padding: 48px var(--fa-gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.fa-footer-brand { font-family: var(--fa-font-serif); font-style: italic; }
.fa-footer-brand h3 { font-size: 1.3rem; color: var(--fa-gold); margin: 0 0 4px; }
.fa-footer-brand p { font-size: 0.8rem; color: var(--fa-text-muted); letter-spacing: 0.05em; margin: 0; }

.fa-footer-faith {
  font-family: var(--fa-font-serif);
  font-size: 1rem;
  font-style: italic;
  color: rgba(245, 240, 232, 0.4);
  text-align: center;
  margin: 0;
}

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

.fa-social-link {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fa-text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.fa-social-link:hover { color: var(--fa-gold); }

/* ============================================================
   SCROLL REVEAL (progressive enhancement; JS adds .is-visible)
   ============================================================ */
.fa-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s, transform 0.7s;
}
.fa-reveal.is-visible { opacity: 1; transform: translateY(0); }

/* No-JS / reduced-motion safety: never hide content permanently */
.no-js .fa-reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .fa-reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  :root { --fa-gutter: var(--fa-gutter-mobile); }

  .fa-nav { padding: 16px 24px; }
  .fa-nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(10, 10, 10, 0.98);
    border-bottom: 1px solid var(--fa-border);
    padding: 12px 24px 24px;
  }
  .fa-nav-links.is-open { display: flex; }
  .fa-nav-links li { padding: 12px 0; }
  .fa-nav-toggle { display: inline-flex; }

  .fa-section { padding: 70px var(--fa-gutter-mobile); }

  .fa-footer { flex-direction: column; gap: 24px; text-align: center; }
  .fa-footer-social { justify-content: center; }
}
