/* ══════════════════════════════════════════════════════════════════
   Frank Schlichting — Site-wide styles
   Loaded after Saaga's app.min.css. All classes are prefixed "fs-" so
   nothing collides with Saaga's own component classes.
   ══════════════════════════════════════════════════════════════════ */

html.fs-site { scroll-behavior: smooth; }

body.fs-site {
  margin: 0;
  background: var(--fs-dark-base);
  color: var(--fs-body-dark);
  font-family: var(--fs-font-serif);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h2{
  color: #2A2622;
}

body.fs-site a { text-decoration: none; }

/* ---- Layout helpers ---- */
.fs-wrap { max-width: var(--fs-max); margin: 0 auto; padding-right: 40px !important; padding-left: 40px !important; }
.fs-signage { font-family: var(--fs-font-signage); }
.fs-kick {
  font-family: var(--fs-font-signage);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
}
.fs-kick--gold { color: var(--fs-gold); }
.fs-kick--red { color: var(--fs-red); }
.fs-kick--bronze { color: var(--fs-bronze); }
.fs-kick--muted { color: var(--fs-muted-dark-2); }

.fs-section--cream { background: var(--fs-cream); color: var(--fs-ink); }
.fs-section--dark { background: var(--fs-dark-base); color: var(--fs-body-dark); }
.fs-section--raised { background: var(--fs-dark-raised); }
.fs-section--deepest { background: var(--fs-dark-deepest); }

/* ---- Grain overlay (optional per spec, on by default) ---- */
.fs-grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-repeat: repeat;
  background-size: 128px 128px;
  /* fractal noise generated inline via SVG filter — no JS/canvas needed */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='128' height='128'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---- Announcement bar ---- */
.fs-announcement {
  display: block;
  background: var(--fs-dark-deepest);
  border-bottom: 1px solid var(--fs-border-dark);
  color: var(--fs-gold);
  font-size: 13px;
  letter-spacing: 1.2px;
  padding: 11px 16px;
  text-align: center;
  text-transform: uppercase;
  z-index: 1;
}
.fs-announcement strong { color: var(--fs-bone); font-weight: 700; }

/* ---- Header / nav ---- */
.fs-header {
  background: var(--fs-dark-base);
  border-bottom: 1px solid var(--fs-border-dark);
  position: sticky;
  top: 0;
  z-index: 10;
}
.fs-header__row {
  padding-top: 16px;
  padding-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fs-wordmark {
  font-family: var(--fs-font-signage);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--fs-bone);
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.fs-wordmark span { color: var(--fs-gold); }
.fs-nav { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; justify-content: flex-end; }
.fs-nav__link {
  font-family: var(--fs-font-signage);
  color: var(--fs-muted-dark);
  font-size: 16px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  padding-bottom: 3px;
}
.fs-nav__link:hover { color: var(--fs-bone); }
.fs-btn-subscribe {
  font-family: var(--fs-font-signage);
  background: var(--fs-gold);
  color: var(--fs-dark-base);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: var(--fs-radius);
  font-size: 15px;
  border: none;
  cursor: pointer;
  display: inline-block;
}
.fs-btn-subscribe:hover { background: var(--fs-gold-hover); color: var(--fs-dark-base); }

/* active nav state — keyed off Ghost's own {{body_class}} output on
   <body> (set in default.hbs): home-template and page-{slug} are both
   confirmed-reliable Ghost body classes. Letters/Mines aren't wired to
   an active state yet — see the note in header.hbs. */
body.home-template .fs-nav__link--home,
body.page-about .fs-nav__link--about,
body.page-museum .fs-nav__link--museum,
body.page-films .fs-nav__link--films,
body.page-contact .fs-nav__link--contact {
  color: var(--fs-bone);
  border-bottom-color: var(--fs-gold);
}

@media (max-width: 780px) {
  .fs-nav__link { display: none; }
}

/* ---- Buttons ---- */
.fs-btn {
  font-family: var(--fs-font-signage);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--fs-radius);
  border: none;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  line-height: 23px !important;
  height: fit-content;
}
/* Size variants — verified against the canonical file: hero/closer
   buttons, excerpt-panel/inline-form buttons, and the museum outline
   button are three genuinely different sizes, not one. */
.fs-btn--lg { font-size: 16px; padding: 11px 24px; }
.fs-btn--md { font-size: 15px; padding: 10px 20px; }
.fs-btn--sm { font-size: 14.5px; padding: 10px 18px; }

.fs-btn-gold { background: var(--fs-gold); color: var(--fs-dark-base); }
.fs-btn-gold:hover { background: var(--fs-gold-hover); color: var(--fs-dark-base); }
.fs-btn-outline-red {
  border: 1.5px solid var(--fs-red);
  color: var(--fs-red);
  background: transparent;
}
.fs-btn-outline-red:hover { background: var(--fs-red); color: var(--fs-cream); }

/* ---- Forms (newsletter + contact share these) ---- */
.fs-field {
  border-radius: var(--fs-radius);
  font-family: var(--fs-font-serif);
  box-sizing: border-box;
  outline: none;
}
/* Size variants — verified against the canonical file: hero/closer
   newsletter fields, the excerpt-panel field, and Contact's form
   fields are three genuinely different sizes, not one. */
.fs-field--lg { padding: 13px 16px; font-size: 15.5px; }
.fs-field--sm { padding: 11px 14px; font-size: 14.5px; }
.fs-field--form { padding: 12px 14px; font-size: 15.5px; }

.fs-field--dark {
  border: 1px solid #4A4238;
  background: var(--fs-dark-raised);
  color: var(--fs-bone);
}
.fs-field--dark:focus { border-color: var(--fs-gold); }
.fs-field--cream {
  border: 1px solid var(--fs-border-cream);
  background: #FFFFFF;
  color: var(--fs-ink);
}
.fs-field--cream:focus { border-color: var(--fs-gold); }

.fs-newsletter-form { display: flex; flex-wrap: wrap; gap: 10px; }
.fs-newsletter-form input[type="email"] { flex: 1 1 200px; min-width: 0; }
.fs-newsletter-form__note { margin: 12px 0 0; font-size: 13.5px; color: var(--fs-muted-dark-2); }
.fs-newsletter-form__success {
  font-family: var(--fs-font-serif);
  font-size: 15.5px;
}
.fs-newsletter-form__error {
  margin-top: 8px;
  font-size: 13.5px;
  color: var(--fs-red);
}

/* ---- Cards (letter cards, channel cards, mine cards) ---- */
.fs-card {
  background: var(--fs-panel);
  border: 1px solid var(--fs-border-cream);
  border-radius: var(--fs-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--fs-shadow-card);
  transition: border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
  color: inherit;
}
a.fs-card:hover, .fs-card--hover:hover {
  border-color: var(--fs-gold);
  box-shadow: var(--fs-shadow-card-hover);
  transform: translateY(-4px);
  color: inherit;
}
.fs-card__media { height: 190px; background-size: cover; background-position: center; }
.fs-card__body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.fs-card__title { font-family: var(--fs-font-serif); font-size: 21px; line-height: 1.25; margin: 8px 0 0; font-weight: 700; }
.fs-card__blurb { font-size: 15px; color: var(--fs-body-cream-2); margin: 10px 0 0; }
.fs-card__footer { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-top: auto; padding-top: 16px; }
.fs-card__date { font-size: 13px; color: var(--fs-muted-dark-2); }
.fs-card__cta { color: var(--fs-red); font-size: 14px; font-weight: bold; }
.fs-card__cta:hover { text-decoration: underline; color: var(--fs-red); }

/* dashed "coming soon" card variant (mines index) */
.fs-card--dashed { border-style: dashed; opacity: 0.75; }
.fs-card--dashed .fs-card__media { filter: grayscale(0.4); }

/* ---- Stat band ---- */
.fs-statband { display: flex; justify-content: space-around; text-align: center; flex-wrap: wrap; gap: 18px 28px; }
.fs-stat__n { font-family: var(--fs-font-signage); font-size: 36px; font-weight: 700; color: var(--fs-gold); }
.fs-stat__l { font-family: var(--fs-font-signage); font-size: 12.5px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--fs-muted-dark-2); margin-top: 2px; }

/* ---- Chips (nearby workings) ---- */
.fs-chip {
  display: inline-block;
  border: 1.5px solid var(--fs-red);
  color: var(--fs-red);
  padding: 10px 18px;
  border-radius: 999px;
  font-family: var(--fs-font-signage);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}
.fs-chip:hover { background: var(--fs-red); color: #FFFFFF; }

/* ---- Film / video trigger block ---- */
.fs-filmblock {
  position: relative;
  border: 1px solid var(--fs-border-dark);
  border-radius: var(--fs-radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--fs-shadow-media);
  background: #0C0A08;
  transition: border-color 0.28s ease, transform 0.28s ease;
}
.fs-filmblock:hover { border-color: var(--fs-gold); transform: translateY(-4px); }
/* Still image — aspect-ratio based (was a fixed 430px height), and now
   a real <img> with object-fit instead of a CSS background-image, so
   it scales correctly at the new wider max-width instead of looking
   disproportionately tall. */
.fs-filmblock__still { position: relative; aspect-ratio: 2.4 / 1; overflow: hidden; }
.fs-filmblock__still img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.fs-filmblock__play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 92px; height: 92px; border-radius: 50%;
  background: rgba(20,17,14,0.55); border: 2px solid var(--fs-gold);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s ease, transform 0.25s ease;
}
.fs-filmblock:hover .fs-filmblock__play { background: rgba(20,17,14,0.85); transform: translate(-50%,-50%) scale(1.08); }
.fs-filmblock__play-tri {
  width: 0; height: 0; margin-left: 6px;
  border-left: 25px solid var(--fs-gold);
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
}
/* Caption — no longer an absolute-positioned gradient overlay on the
   photo. Sits as a normal block below the still image, on the card's
   own dark background. */
.fs-filmblock__caption {
  padding: 28px 34px 34px;
  color: var(--fs-bone);
}
.fs-filmblock__caption h3 { font-family: var(--fs-font-serif); font-size: 28px; margin: 8px 0 0; font-weight: 700; }
.fs-filmblock__caption p { margin: 12px 0 0; font-size: 16.5px; color: var(--fs-body-dark); max-width: 1160px; line-height: 1.62; }
.fs-filmblock__pill {
  position: absolute; top: 14px; right: 14px;
  background: rgba(13,12,10,0.9); border: 1.5px solid var(--fs-gold); color: var(--fs-gold);
  font-family: var(--fs-font-signage); font-weight: 700; font-size: 14px; letter-spacing: 2px; text-transform: uppercase;
  padding: 10px 18px; border-radius: var(--fs-radius); cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.fs-filmblock__pill:hover { background: var(--fs-gold); color: var(--fs-dark-base); }

/* ---- Danger & respect notice (mine pages) ---- */
.fs-notice {
  margin-top: 22px;
  border: 1px solid rgba(201,162,39,0.45);
  border-radius: var(--fs-radius);
  padding: 20px 24px;
  background: rgba(201,162,39,0.05);
}
.fs-notice p { margin: 10px 0 0; font-size: 14.5px; line-height: 1.65; color: var(--fs-muted-dark); }

/* ---- Video lightbox ---- */
.fs-lightbox {
  position: fixed; inset: 0; background: #000; z-index: 200;
  display: none; align-items: center; justify-content: center; padding: 4vh 4vw;
  cursor: pointer;
}
.fs-lightbox.is-open { display: flex; }
.fs-lightbox__inner {
  position: relative; width: min(1100px, 92vw); aspect-ratio: 16/9;
  background: #000; border: 1px solid var(--fs-border-dark);
  box-shadow: 0 40px 120px rgba(0,0,0,0.8); cursor: default;
}
.fs-lightbox__inner iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
/* Shown instead of the iframe when a trigger has no real video-src
   yet — keeps the person in context rather than silently redirecting
   them away, matching both mockups' .lbx .player placeholder. */
.fs-lightbox__demo {
  position: absolute; inset: 0; background: #0B0908; border: 1px solid var(--fs-border-dark);
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 20px;
}
.fs-lightbox__demo-kick { font-family: var(--fs-font-signage); font-weight: 600; font-size: 12px; letter-spacing: 2.4px; text-transform: uppercase; color: var(--fs-gold); }
.fs-lightbox__demo-title { margin-top: 8px; color: var(--fs-bone); font-size: 19px; font-family: var(--fs-font-serif); }
.fs-lightbox__demo-desc { margin-top: 6px; color: var(--fs-muted-dark); font-size: 13.5px; max-width: 480px; }
.fs-lightbox__close {
  position: absolute; top: -46px; right: 0;
  background: rgba(13,12,10,0.9); border: 1.5px solid var(--fs-gold); color: var(--fs-gold);
  font-family: var(--fs-font-signage); font-weight: 700; font-size: 14px; letter-spacing: 2px; text-transform: uppercase;
  padding: 8px 16px; border-radius: var(--fs-radius); cursor: pointer;
}
.fs-lightbox__close:hover { background: var(--fs-gold); color: var(--fs-dark-base); }

/* ---- Footer ---- */
.fs-footer { padding: 44px 0 54px; color: var(--fs-muted-dark-2); font-size: 14.5px; background: var(--fs-dark-deepest); border-top: 1px solid var(--fs-border-dark); }
.fs-footer__row { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 20px; }
.fs-footer__brand { display: flex; align-items: center; gap: 14px; }
.fs-footer__brand-name { font-family: var(--fs-font-signage); font-weight: 700; color: var(--fs-bone); font-size: 18px; letter-spacing: 1px; text-transform: uppercase; }
.fs-footer__cols { display: flex; gap: 56px; flex-wrap: wrap; }
.fs-footer__col { display: flex; flex-direction: column; gap: 8px; }
.fs-footer__col-title { font-family: var(--fs-font-signage); font-size: 12px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; }
.fs-footer a { color: var(--fs-muted-dark-2); }
.fs-footer a:hover { color: var(--fs-gold); }

/* ---- Plain text link hover (underline) — for links with no other
   component class, e.g. "Watch on YouTube", "More about Frank" ---- */
.fs-underline-hover:hover { text-decoration: underline; }

/* ---- Channel card (Films & Archive section) ---- */
.fs-channel-card {
  border: 1px solid var(--fs-border-dark);
  border-radius: var(--fs-radius);
  background: var(--fs-dark-raised);
  padding: 26px 28px;
  transition: border-color 0.2s ease;
}
.fs-channel-card:hover { border-color: var(--fs-gold); }

/* ---- Callout box (gold left border, cream bg) ---- */
.fs-callout--gold {
  background: var(--fs-panel);
  border-left: 4px solid var(--fs-gold);
  border-radius: 0 2px 2px 0;
  padding: 26px 30px;
  margin: 30px 0;
}

/* ---- Form labels (contact page) ---- */
.fs-form-label {
  font-family: var(--fs-font-signage);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fs-body-cream-2);
  font-weight: 600;
  margin: 18px 0 6px;
  display: block;
}
.fs-field--textarea { resize: vertical; }

/* ---- Info card (Contact page's "Work with Frank" cards) ---- */
.fs-info-card {
  background: var(--fs-panel);
  border: 1px solid var(--fs-border-cream);
  border-radius: 2px;
  padding: 20px 22px;
}
.fs-info-card h3 {
  font-family: var(--fs-font-signage);
  font-size: 19px;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.fs-info-card p {
  margin: 8px 0 0;
  font-size: 14.5px;
  color: var(--fs-body-cream-2);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════════════
   Contact page components (new design — rich form, profile card,
   file dropzone, Work with Frank band)
   ══════════════════════════════════════════════════════════════════ */

/* Two-column layout: form left, profile card right */
.fs-contact-grid { display: grid; grid-template-columns: 1.12fr 0.88fr; gap: 56px; align-items: start; }
@media (max-width: 940px) { .fs-contact-grid { grid-template-columns: 1fr; gap: 36px; } }

/* Rich form fields — a heavier variant than .fs-field, matching the
   Contact mockup exactly (its own border color/shadow, not reusing
   the plainer .fs-field--form used elsewhere) */
.fs-rfield { margin-bottom: 18px; }
.fs-rfield input, .fs-rfield select, .fs-rfield textarea {
  width: 100%; font-family: var(--fs-font-serif); font-size: 15.5px; color: var(--fs-ink);
  background: #FFFDF8; border: 1.5px solid #C9BFA8; border-radius: var(--fs-radius);
  padding: 12px 14px; box-sizing: border-box;
  transition: border-color 0.28s ease, box-shadow 0.28s ease;
}
.fs-rfield textarea { min-height: 150px; resize: vertical; line-height: 1.6; }
.fs-rfield input:focus, .fs-rfield select:focus, .fs-rfield textarea:focus {
  outline: none; border-color: var(--fs-gold); box-shadow: 0 0 0 3px rgba(201,162,39,0.18);
}
.fs-sendrow { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 6px; }
.fs-btn-send {
  display: inline-block; background: var(--fs-closer-accent); border: 1.5px solid var(--fs-closer-accent); color: #fff;
  border-radius: var(--fs-radius); padding: 13px 30px;
  font-family: var(--fs-font-signage); font-weight: 700; font-size: 13px; letter-spacing: 1.8px; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  transition: all 0.28s ease; box-shadow: var(--fs-shadow-card);
}
.fs-btn-send:hover { background: #A93227; border-color: #A93227; transform: translateY(-1px); }
.fs-sendnote { font-size: 13.5px; color: var(--fs-body-cream-2); font-style: italic; max-width: 340px; line-height: 1.5; }

/* File dropzone — visual only until a real form backend is wired;
   see fs_contact_form_action in Ghost Admin */
.fs-dropzone-input { position: absolute; width: 1px; height: 1px; opacity: 0; overflow: hidden; }
.fs-dropzone {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; text-align: center;
  border: 1.5px dashed #C9BFA8; border-radius: 3px; background: #FFFDF8; padding: 24px 20px; cursor: pointer;
  transition: border-color 0.28s ease, background 0.28s ease, transform 0.28s ease;
}
.fs-dropzone:hover, .fs-dropzone.fs-dropzone--over { border-color: var(--fs-gold); background: #FFFCF2; transform: translateY(-1px); }
.fs-dropzone__main { font-family: var(--fs-font-signage); font-weight: 700; font-size: 12.5px; letter-spacing: 1.6px; text-transform: uppercase; color: var(--fs-ink); }
.fs-dropzone__sub { font-size: 13.5px; color: var(--fs-body-cream-2); line-height: 1.6; }
.fs-droplist { margin-top: 10px; display: flex; flex-direction: column; gap: 6px; }
.fs-droplist .fs-fitem {
  display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--fs-body-cream-2);
  background: #FFFDF8; border: 1px solid #E4DCC8; border-radius: var(--fs-radius); padding: 7px 11px;
}
.fs-droplist .fs-fitem b { font-weight: 400; color: var(--fs-ink); }
.fs-droplist .fs-fitem .fs-fitem__size { margin-left: auto; color: var(--fs-muted-dark-2); font-size: 12.5px; }
.fs-dropnote { font-size: 13px; color: var(--fs-body-cream-2); line-height: 1.6; margin-top: 10px; font-style: italic; max-width: 560px; }

/* Profile card (right column) */
.fs-profile-card { border: 1px solid var(--fs-border-cream); border-radius: 3px; overflow: hidden; background: #fff; box-shadow: var(--fs-shadow-card); }
.fs-profile-card img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center 58%; display: block; }
.fs-profile-card__body { padding: 20px 22px 22px; }
.fs-profile-card__kick { font-family: var(--fs-font-signage); font-weight: 700; font-size: 11px; letter-spacing: 2.2px; text-transform: uppercase; color: var(--fs-closer-accent); }
.fs-profile-card h3 { font-size: 21px; margin-top: 6px; font-family: var(--fs-font-serif); }
.fs-profile-card p { font-size: 14.5px; line-height: 1.65; margin-top: 9px; color: var(--fs-body-cream-2); }
.fs-profile-meta { margin-top: 16px; border-top: 1px solid #E4DCC8; padding-top: 14px; font-size: 13.5px; color: var(--fs-body-cream-2); line-height: 1.7; }
.fs-profile-meta b { color: var(--fs-ink); }

/* Work with Frank — photo + 3 cards, light variant */
.fs-wband { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 44px; align-items: center; margin-top: 22px; }
@media (max-width: 1000px) { .fs-wband { grid-template-columns: 1fr; gap: 28px; } }
.fs-wimg { width: 100%; aspect-ratio: 3/2; object-fit: cover; object-position: center 50%; border-radius: 3px; display: block; box-shadow: var(--fs-shadow-card); }
.fs-wgrid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.fs-wcard { border: 1.5px solid var(--fs-ink); border-radius: var(--fs-radius); padding: 22px 24px; background: #FFFDF8; transition: transform 0.28s ease, box-shadow 0.28s ease; }
.fs-wcard:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(43,35,23,0.12); }
.fs-wcard__kick { font-family: var(--fs-font-signage); font-weight: 700; font-size: 12px; letter-spacing: 2.4px; text-transform: uppercase; color: var(--fs-closer-accent); }
.fs-wcard p { font-size: 14.5px; line-height: 1.65; margin-top: 10px; color: var(--fs-body-cream-2); }

/* Work with Frank — dark band variant */
.fs-workdark { background: var(--fs-dark-base); padding: 64px 0 72px; }
.fs-workdark .fs-wcard { background: rgba(255,255,255,0.03); border: 1.5px solid rgba(201,162,39,0.42); }
.fs-workdark .fs-wcard:hover { background: rgba(255,255,255,0.05); box-shadow: 0 12px 30px rgba(0,0,0,0.45); }
.fs-workdark .fs-wcard__kick { color: var(--fs-gold); }
.fs-workdark .fs-wcard p { color: #CFC5B0; }
.fs-workdark .fs-wimg { box-shadow: 0 12px 30px rgba(0,0,0,0.5); border: 1px solid var(--fs-border-dark); }

/* ══════════════════════════════════════════════════════════════════
   Films page components
   ══════════════════════════════════════════════════════════════════ */

/* Feature grid — UNDERMINE + Probably Mental side by side */
.fs-featgrid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 28px; margin-top: 26px; align-items: stretch; }
@media (max-width: 900px) { .fs-featgrid { grid-template-columns: 1fr; } }
.fs-featgrid .fs-filmblock { display: flex; flex-direction: column; margin-top: 0; }
.fs-featgrid .fs-filmblock__still { flex: 1; min-height: 280px; aspect-ratio: auto; }
.fs-featgrid .fs-filmblock__caption { flex: 0 0 auto; }

/* Channel cards — simpler than the homepage's (no play-button/badge
   overlay, just a clean photo + text card as a single link) */
.fs-chcard {
  display: block; text-decoration: none; color: inherit;
  border: 1.5px solid rgba(201,162,39,0.45); border-radius: 3px; overflow: hidden;
  background: rgba(255,255,255,0.02);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.fs-chcard:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.45); }
.fs-chcard img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.fs-chcard__body { padding: 18px 20px 20px; }
.fs-chcard__kick { font-family: var(--fs-font-signage); font-weight: 700; font-size: 11px; letter-spacing: 2.4px; text-transform: uppercase; color: var(--fs-gold); }
.fs-chcard h3 { font-size: 21px; margin-top: 6px; font-family: var(--fs-font-serif); color: var(--fs-bone); }
.fs-chcard p { font-size: 14px; line-height: 1.6; margin-top: 8px; color: #CFC5B0; }
.fs-chcard__go { display: inline-block; margin-top: 12px; font-family: var(--fs-font-signage); font-weight: 700; font-size: 12px; letter-spacing: 1.8px; text-transform: uppercase; color: var(--fs-bone); border-bottom: 1.5px solid var(--fs-gold); padding-bottom: 3px; }

/* Mission section — photo + italic pull-quote, 2 columns */
.fs-mission { display: grid; grid-template-columns: 1.1fr 1fr; gap: 36px; align-items: center; }
@media (max-width: 900px) { .fs-mission { grid-template-columns: 1fr; } }
.fs-mission img { width: 100%; border-radius: 3px; display: block; }
.fs-mission__q { font-size: clamp(19px, 2.2vw, 25px); line-height: 1.5; font-style: italic; }
.fs-mission__who { font-family: var(--fs-font-signage); font-weight: 700; font-size: 12px; letter-spacing: 2.4px; text-transform: uppercase; color: var(--fs-red); margin-top: 14px; }

/* Series grid — 2x2 cards with thumbnails (was plain text rows
   before). Traced precisely against the source's 3 layered .serrow
   rules: base .serrow sets flex-row, but the more specific
   ".sergrid .serrow" rule overrides flex-direction to COLUMN — a
   stacked card (image, then caption, then playlist link below),
   not a side-by-side row. Missed that override on the first pass. */
.fs-sergrid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 44px; margin-top: 24px; }
@media (max-width: 860px) { .fs-sergrid { grid-template-columns: 1fr; } }
.fs-serrow {
  display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
  text-decoration: none; color: inherit;
  background: #fff; border: 1px solid var(--fs-border-cream); border-radius: 3px; overflow: hidden;
  box-shadow: 0 1px 0 var(--fs-border-cream), 0 8px 24px rgba(43,35,23,0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  padding: 0 0 18px;
}
.fs-serrow:hover { transform: translateY(-4px); box-shadow: 0 2px 0 var(--fs-border-cream), 0 14px 30px rgba(43,35,23,0.14); }
.fs-serrow__thumb { width: 100%; aspect-ratio: 16/8; object-fit: cover; border-radius: 2px; display: block; }
.fs-serrow__body { padding: 16px 22px 0; }
.fs-serrow__kick { font-family: var(--fs-font-signage); font-weight: 700; font-size: 13px; letter-spacing: 2.4px; text-transform: uppercase; color: var(--fs-red); }
.fs-serrow p { font-size: 14.5px; line-height: 1.6; margin-top: 5px; color: var(--fs-body-cream-2); }
.fs-serrow__go { margin: 6px 22px 0; display: block; white-space: nowrap; font-family: var(--fs-font-signage); font-weight: 700; font-size: 12px; letter-spacing: 1.8px; text-transform: uppercase; color: var(--fs-red); border-bottom: 1.5px solid var(--fs-gold); padding-bottom: 3px; width: fit-content; }
.fs-serrow:hover .fs-serrow__go { color: var(--fs-ink); }

/* Recommendation dark band — points to the Mine records */
.fs-recdark { padding: 88px 0; }
.fs-recdark__inner { display: flex; align-items: center; justify-content: space-between; gap: 22px; flex-wrap: wrap; }
.fs-recdark h3 { font-size: clamp(22px, 2.4vw, 28px); color: var(--fs-bone); font-family: var(--fs-font-serif); }
.fs-recdark p { font-size: 15px; color: #CFC5B0; margin-top: 6px; max-width: 560px; line-height: 1.6; }

/* ══════════════════════════════════════════════════════════════════
   Mine page components (custom-mine.hbs + the HTML content block
   Frank/Colleen paste into each mine post's editor)
   ══════════════════════════════════════════════════════════════════ */

/* Breadcrumb (dark, under header) */
.fs-breadcrumb {
  background: var(--fs-dark-base);
  border-bottom: 1px solid var(--fs-border-dark);
}
.fs-breadcrumb__row {
  padding: 12px 0;
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--fs-muted-dark-2);
}
.fs-breadcrumb__row a { font-weight: 600; }
.fs-breadcrumb__current { color: var(--fs-bone); }

/* Hero "plaque" (staked/closed dates) — NOT auto-positioned into the
   hero anymore. That required either a fragile CSS overlap trick
   (fought Saaga's own blockquote styling and lost) or a Ghost field
   that doesn't exist (Post only has Title/Feature Image/Excerpt/Tags,
   all already spoken for). Dates now fold into the Excerpt sentence
   itself instead — genuinely inside the hero, no CSS trick needed.
   This class stays available as a manual style if ever wanted
   directly in an HTML block, just not auto-applied to a blockquote. */
.fs-plaque {
  margin-top: 22px;
  display: inline-block;
  border: 1px solid rgba(201,162,39,0.55);
  border-radius: var(--fs-radius);
  padding: 9px 16px;
  font-size: 12.5px;
  letter-spacing: 2.4px;
  color: var(--fs-gold);
  background: rgba(13,12,10,0.45);
  font-family: var(--fs-font-signage);
  text-transform: uppercase;
}

/* Mine page's stat band uses a smaller size than the homepage's —
   verified against mines/phoenix/index.html directly (32px/12px vs
   Home's 36px/12.5px). */
.fs-statband--mine .fs-stat__n { font-size: 32px; }
.fs-statband--mine .fs-stat__l { font-size: 12px; letter-spacing: 2.2px; }

/* The Record card (sticky sidebar) */
/* Sticky wrapper — NEW: now holds both the record card AND the audio
   player together, so they scroll as one unit. Moved position:sticky
   here from .fs-record-card itself, since a single card no longer
   covers the whole sticky column. */
.fs-record-wrap {
  flex: 0 0 340px;
  position: sticky;
  top: 86px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.fs-record-card {
  background: var(--fs-panel);
  border: 1px solid var(--fs-border-cream);
  border-radius: var(--fs-radius);
  padding: 24px 26px;
  box-shadow: var(--fs-shadow-card);
}
.fs-record-card__label {
  font-family: var(--fs-font-signage);
  font-size: 11.5px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--fs-muted-dark-2);
  margin-top: 13px;
}
.fs-record-card__label:first-of-type { margin-top: 0; }
.fs-record-card__value {
  font-size: 14.5px;
  margin-top: 3px;
  line-height: 1.5;
}
.fs-record-card__value--mono {
  font-family: var(--fs-font-mono);
  font-weight: bold;
  letter-spacing: 0.5px;
}

/* Download-the-record block, inside the Record card */
.fs-dlblock { margin-top: 22px; border-top: 1px solid var(--fs-border-cream); padding-top: 20px; }
.fs-dlblock__kick { font-family: var(--fs-font-signage); font-weight: 700; font-size: 11px; letter-spacing: 2.2px; text-transform: uppercase; color: var(--fs-bronze); }
.fs-dlblock__desc { margin: 8px 0 14px; font-size: 13.5px; color: var(--fs-muted-dark-2); line-height: 1.6; }
.fs-btn-dl {
  display: block; text-align: center; background: var(--fs-closer-accent); border: 1.5px solid var(--fs-closer-accent); color: #fff;
  border-radius: var(--fs-radius); padding: 12px 18px;
  font-family: var(--fs-font-signage); font-weight: 700; font-size: 13px; letter-spacing: 1.8px; text-transform: uppercase;
  text-decoration: none; transition: all 0.28s ease; box-shadow: var(--fs-shadow-card);
}
.fs-btn-dl:hover { background: #A93227; border-color: #A93227; transform: translateY(-1px); }
.fs-inboxline { margin-top: 10px; text-align: center; font-size: 13.5px; color: var(--fs-muted-dark-2); }
.fs-inboxline a { color: var(--fs-closer-accent); font-weight: bold; text-decoration: none; }
.fs-inboxline a:hover { text-decoration: underline; }
.fs-rfine { margin-top: 14px; font-size: 12px; font-style: italic; color: var(--fs-muted-dark-2); line-height: 1.5; }

/* Audio player (Frank's narrated overview) */
.fs-audio {
  background: var(--fs-panel); border: 1px solid var(--fs-border-cream); border-left: 3px solid var(--fs-gold);
  border-radius: var(--fs-radius); padding: 16px 20px; box-shadow: var(--fs-shadow-card);
  display: flex; align-items: center; gap: 14px;
}
.fs-aplay {
  flex: none; width: 40px; height: 40px; border-radius: 50%; background: var(--fs-dark-base); position: relative; cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
}
.fs-aplay:hover { transform: scale(1.08); background: var(--fs-border-dark); }
.fs-aplay::after {
  content: ""; position: absolute; left: 15px; top: 11px;
  border-left: 12px solid var(--fs-gold); border-top: 9px solid transparent; border-bottom: 9px solid transparent;
}
.fs-audio__kick { font-family: var(--fs-font-signage); font-weight: 700; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--fs-bronze); }
.fs-audio__desc { margin-top: 2px; font-size: 13.5px; color: var(--fs-muted-dark-2); }

/* Record in Full — long-form section with sticky in-page nav */
.fs-rifgrid { display: grid; grid-template-columns: minmax(0, 68ch) 250px; gap: 54px; justify-content: start; align-items: start; margin-top: 22px; }
@media (max-width: 1080px) { .fs-rifgrid { grid-template-columns: 1fr; gap: 26px; } }
.fs-rifgrid h3 { font-size: 24px; margin: 30px 0 8px; letter-spacing: 0.2px; }
.fs-rifgrid p { max-width: 70ch; line-height: 1.75; margin: 0 0 6px; }
.fs-rifnav { position: sticky; top: 96px; border-left: 2px solid var(--fs-gold); padding-left: 18px; }
.fs-rifnav__kick { font-family: var(--fs-font-signage); font-weight: 700; font-size: 11px; letter-spacing: 2.2px; text-transform: uppercase; color: var(--fs-bronze); }
.fs-rifnav a { display: block; margin-top: 11px; font-size: 14.5px; line-height: 1.45; color: var(--fs-body-cream-2); text-decoration: none; border-bottom: 1px solid transparent; transition: color 0.28s ease, border-color 0.28s ease; }
.fs-rifnav a:hover { color: var(--fs-red); border-color: var(--fs-gold); }
@media (max-width: 1080px) { .fs-rifnav { position: static; display: none; } }

/* FAQ grid — odd-count rule spans the last item full-width so it
   doesn't end up orphaned alone in a 2-column layout */
.fs-qgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px 56px; margin-top: 22px; }
@media (max-width: 900px) { .fs-qgrid { grid-template-columns: 1fr; gap: 24px; } }
.fs-qgrid .fs-qa h3 { margin-top: 0; font-size: 21px; }
.fs-qgrid .fs-qa { break-inside: avoid; }
.fs-qgrid .fs-qa:last-child:nth-child(odd) { grid-column: 1 / -1; }
.fs-qgrid .fs-qa:last-child:nth-child(odd) p { max-width: none; column-count: 2; column-gap: 56px; }
@media (max-width: 900px) { .fs-qgrid .fs-qa:last-child:nth-child(odd) p { column-count: 1; } }

/* Timeline (The Story) */
.fs-timeline { margin-top: 26px; border-left: 2px solid var(--fs-border-cream); }
.fs-timeline-item { position: relative; padding: 0 0 26px 30px; }
.fs-timeline-item:last-child { padding-bottom: 6px; }
.fs-timeline-dot {
  position: absolute; left: -7px; top: 7px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--fs-cream); border: 3px solid var(--fs-red);
}
.fs-timeline-dot--gold { border-color: var(--fs-gold); }
.fs-timeline-date {
  font-family: var(--fs-font-signage);
  font-size: 14px; letter-spacing: 2.4px; text-transform: uppercase;
  color: var(--fs-red); font-weight: 700;
}
.fs-timeline-date--gold { color: #A8861B; }
.fs-timeline-item h3 { font-family: var(--fs-font-serif); font-size: 20px; margin: 3px 0 0; }
.fs-timeline-item p { margin: 7px 0 0; font-size: 15.5px; color: var(--fs-body-cream); line-height: 1.65; }

/* Archive photo cards (simpler than .fs-card — no title/blurb, just
   a photo + one caption line) */
.fs-photocard {
  background: var(--fs-panel);
  border: 1px solid var(--fs-border-cream);
  border-radius: var(--fs-radius);
  overflow: hidden;
  box-shadow: var(--fs-shadow-card);
}
.fs-photocard__media { height: 230px; background-size: cover; background-position: center; }
.fs-photocard__caption { padding: 14px 16px; font-size: 13.5px; color: var(--fs-body-cream); line-height: 1.5; }

/* ---- Prose (letter body, about, museum copy) ---- */
.fs-prose { max-width: 720px; margin: 0 auto; }
.fs-prose p { margin: 0 0 16px; }
.fs-prose--letter { font-size: 17.5px; line-height: 1.8; }
.fs-prose--letter a { color: var(--fs-red); font-weight: bold; }
.fs-prose--letter a:hover { text-decoration: underline; }
/* Ghost's Blockquote card — used for the "— Frank" signature line.
   background/box-shadow explicitly cleared — Saaga's own blockquote
   styling includes a background for its own pull-quotes, which was
   bleeding through since our override never cleared it. */
.fs-prose--letter blockquote {
  font-family: var(--fs-font-serif);
  font-size: 22px;
  font-style: italic;
  color: #5C4630;
  margin: 18px 0 0;
  border: none;
  padding: 0;
  background: none;
  box-shadow: none;
}
/* Template-generated author signature (custom-letter.hbs) — separate
   from the blockquote rule above, which stays available if a letter
   ever needs a genuine in-content quote. */
.fs-letter-signature {
  font-family: var(--fs-font-serif);
  font-size: 22px;
  font-style: italic;
  color: #5C4630;
  margin: 18px 0 0;
}

/* ---- Responsive photo/card grids ---- */
.fs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.fs-grid--narrow { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.fs-grid--closer { grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); }
/* Fixed 3-column grid (Letters archive) — the generic .fs-grid is
   auto-fit and was fitting 4 columns at the site's new 1565px width;
   the mockup specifies a genuinely fixed 3 columns, not "as many as
   fit." */
.fs-grid--fixed3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 920px) { .fs-grid--fixed3 { grid-template-columns: 1fr; } }

/* ---- Hero shared ---- */
.fs-hero { background-size: cover; background-position: center; color: var(--fs-bone); border-bottom: 1px solid var(--fs-border-dark); }
.fs-hero--inset { box-shadow: var(--fs-shadow-hero-inset); }
.fs-hero h1 { font-family: var(--fs-font-serif); font-weight: 700; margin: 8px 0 0; }

/* -----my css applied later------ */
.fs-h-museum-photo{
  flex: 0 0 440px;}
.fs-h-excerpt-photo{
  flex: 1 1 180px;
}
.fs-h-about-photo{
  flex: 0 0 340px;
}
input:focus {
  border-color: #C9A227;
  outline: none;
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.25);
}

@media (max-width:915px){
  .fs-h-museum-photo, .fs-h-excerpt-photo, .fs-h-about-photo{
  flex: 100%;}
}