/* fl718-grand-canyon.css — Grand Canyon Location Page (desktop)  v1.3.0
 *
 * Scope: body.fl718-location-page.fl718-loc-grand-canyon
 * Extracted from grand-canyon-index.html prototype (SCAFFOLD STATUS: COMPLETE).
 * Fonts: DM Sans, Jost (Google Fonts — loaded in functions.php)
 *
 * Photo set note: prototype was built for 21 photos (22 slots incl. hero
 * repeat); live grid ships 20 real WP uploads (19 unique + hero repeated
 * once at grid index 0), per Seamus's photo-content-matching pass, August
 * 2026. Markup lives in templates/page-grand-canyon.php — this file is the
 * CSS layer only and needed no changes for the photo-count difference.
 */

/* ------------------------------------------------------------
   BASE RESET & BODY
   ------------------------------------------------------------ */
body.fl718-location-page.fl718-loc-grand-canyon {
  margin: 0;
  padding: 0;
  /* overflow-x: clip — NOT hidden.
     hidden creates a new scroll container that breaks
     position:sticky. clip clips visually without that side effect. */
  overflow-x: clip;
  background-color: #f9f8f6;
  /* Warm off-white — the right temperature for desert landscapes.
     Grand Canyon, White Sands, Monument Valley all lean warm. */
  color: #1a1a1a;
  -webkit-font-smoothing: antialiased;
}

:where(body.fl718-location-page.fl718-loc-grand-canyon) *,
:where(body.fl718-location-page.fl718-loc-grand-canyon) *::before,
:where(body.fl718-location-page.fl718-loc-grand-canyon) *::after {
  box-sizing: border-box;
}

body.fl718-location-page.fl718-loc-grand-canyon img {
  max-width: 100%;
  display: block;
}

/* ------------------------------------------------------------
   VISUALLY HIDDEN — accessible text, not visible on screen.
   ------------------------------------------------------------ */
body.fl718-location-page.fl718-loc-grand-canyon .fl718-loc-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ------------------------------------------------------------
   MENU CURTAIN
   Not present in the prototype — added for WordPress deploy,
   pattern copied verbatim from Southwest Road Notes (the most
   recent location page to ship it). Requires
   #fl718-danlann-thread, #fl718-danlann-hover-zone,
   #fl718-menu-recall in the page template + fl718-grand-canyon-menu.js.
   ------------------------------------------------------------ */
body.fl718-location-page.fl718-loc-grand-canyon #fl718-danlann-thread {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(180,160,120,0.6) 30%, rgba(180,160,120,0.85) 50%, rgba(180,160,120,0.6) 70%, transparent 100%);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: height 0.2s ease;
}

body.fl718-location-page.fl718-loc-grand-canyon #fl718-danlann-thread.fl718-danlann-thread--breathing {
  animation: fl718GcThreadBreathe 3.8s ease-in-out infinite;
}

@keyframes fl718GcThreadBreathe {
  0%, 100% { opacity: 0.55; }
  50%       { opacity: 0.95; }
}

body.fl718-location-page.fl718-loc-grand-canyon #fl718-danlann-hover-zone {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  z-index: 9998;
  display: none;
  cursor: pointer;
}

body.fl718-location-page.fl718-loc-grand-canyon #fl718-menu-recall {
  position: fixed;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
  font-size: 0.7rem;
  color: rgba(180,160,120,0.75);
  user-select: none;
  line-height: 1;
}

body.fl718-location-page.fl718-loc-grand-canyon #fl718-menu-recall:focus-visible {
  outline: 2px solid rgba(180,160,120,0.6);
  outline-offset: 4px;
  border-radius: 2px;
}

/* ============================================================
   HERO SECTION
   Natural aspect ratio — 2560×1707, ratio 3:2.
   Not forced to 100vh. The photograph dictates the height.
   overflow: clip — correct project convention; prevents scrollWidth
   contribution without breaking position:sticky.
   ============================================================ */

body.fl718-location-page.fl718-loc-grand-canyon .fl718-loc-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: clip;
  background-color: #e8e4de;
  /* Warm light placeholder — image starts visible (blurred), not dark.
     The warm background shows faintly around the blur edge at load. */
}

body.fl718-location-page.fl718-loc-grand-canyon .fl718-loc-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   GALLERY GRID
   Row-based (not masonry) — preserves sequencing control.
   3-col desktop / 2-col tablet / 1-col mobile.
   Natural aspect ratios. Never force uniform image dimensions.
   ============================================================ */

body.fl718-location-page.fl718-loc-grand-canyon .fl718-loc-grid {
  column-count: 3;
  column-gap: 12px;
  max-width: 1400px;
  margin: 0 auto;
  padding: calc(clamp(2.5rem, 5vw, 4rem) + 2rem) 25px clamp(4rem, 6vw, 6rem);
}

@media (max-width: 768px) {
  body.fl718-location-page.fl718-loc-grand-canyon .fl718-loc-grid {
    column-count: 2;
  }
}

@media (max-width: 480px) {
  body.fl718-location-page.fl718-loc-grand-canyon .fl718-loc-grid {
    column-count: 1;
  }
}

/* ------------------------------------------------------------
   GALLERY ITEMS
   opacity: 0 starting state — GSAP handles reveal via
   per-item IntersectionObserver (brightness + opacity).

   Two portrait items live in this grid (server-verified
   1326x2000 originals) — no special CSS needed, break-inside:
   avoid + column layout handle mixed aspect ratios natively.
   ------------------------------------------------------------ */

body.fl718-location-page.fl718-loc-grand-canyon .fl718-loc-item {
  break-inside: avoid;
  margin: 0 0 12px 0;
  overflow: clip;
  opacity: 0;
  cursor: pointer;
  position: relative;
}

body.fl718-location-page.fl718-loc-grand-canyon .fl718-loc-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   THE VEIL — fl718-loc-item__veil
   Inserted by JS (hover IIFE). Concept C "The Shadow Lifts":
   every photograph rests under a warm-dark translucent veil.
   Hover fades the veil away.
   ============================================================ */

body.fl718-location-page.fl718-loc-grand-canyon .fl718-loc-item__veil {
  position: absolute;
  inset: 0;
  background: rgba(18, 14, 10, 0.18);
  pointer-events: none;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  body.fl718-location-page.fl718-loc-grand-canyon .fl718-loc-item__veil {
    display: none !important;
  }
}

/* ============================================================
   LIGHTBOX
   Identical across all photo page types.
   ============================================================ */

body.fl718-location-page.fl718-loc-grand-canyon .fl718-loc-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
  overscroll-behavior: contain;
}

body.fl718-location-page.fl718-loc-grand-canyon .fl718-loc-lightbox.fl718-loc-lightbox--open {
  display: flex;
}

body.fl718-location-page.fl718-loc-grand-canyon .fl718-loc-lightbox__inner {
  position: relative;
  max-width: calc(100vw - 120px);
  max-height: calc(100vh - 120px);
  max-height: calc(100dvh - 120px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

body.fl718-location-page.fl718-loc-grand-canyon .fl718-loc-lightbox__image {
  max-width: 100%;
  max-height: calc(100vh - 180px);
  max-height: calc(100dvh - 180px);
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.06),
    0 4px 14px rgba(0, 0, 0, 0.09),
    0 12px 40px rgba(0, 0, 0, 0.07);
  transition: box-shadow 1.1s ease;
}

body.fl718-location-page.fl718-loc-grand-canyon .fl718-loc-lightbox__caption {
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 1rem;
  color: #8a8580;
  text-align: center;
  margin-top: 1rem;
  line-height: 1.5;
  opacity: 0;
  transition: color 0.85s ease;
}

body.fl718-location-page.fl718-loc-grand-canyon .fl718-loc-lightbox__close {
  position: absolute;
  top: -52px;
  right: -8px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  color: rgba(0, 0, 0, 0.2);
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
  padding: 0;
}

/* Brighten on hover ONLY where a real hovering pointer exists. On touch,
   Safari latches :hover on tap and holds it until you tap elsewhere — that
   left the close control stuck bright after the tap ended (BUG-050 family).
   Guarding with (hover: hover) means touch never enters the state at all,
   so there is nothing to unstick. Nav is intentionally left alone here —
   its own mobile override (fl718-grand-canyon-mobile-v9.css) already pins
   it clean and is excluded from this fix by name. */
@media (hover: hover) and (pointer: fine) {
  body.fl718-location-page.fl718-loc-grand-canyon .fl718-loc-lightbox__close:hover {
    color: rgba(0, 0, 0, 0.65);
  }
}

/* Belt and braces: even if a UA reports (hover: hover) on a touch device,
   pin the color back to rest while the finger is down and after the tap. */
@media (hover: none), (pointer: coarse) {
  body.fl718-location-page.fl718-loc-grand-canyon .fl718-loc-lightbox__close:hover,
  body.fl718-location-page.fl718-loc-grand-canyon .fl718-loc-lightbox__close:focus,
  body.fl718-location-page.fl718-loc-grand-canyon .fl718-loc-lightbox__close:active {
    color: rgba(0, 0, 0, 0.2);
  }
  /* The JS leaves focus on the close button after interaction; without
     this the focus ring persists for the rest of the session. */
  body.fl718-location-page.fl718-loc-grand-canyon .fl718-loc-lightbox__close:focus {
    outline: none;
  }
}

body.fl718-location-page.fl718-loc-grand-canyon .fl718-loc-lightbox__nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 80px;
  background: none;
  border: none;
  color: rgba(0, 0, 0, 0.12);
  font-size: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, opacity 0.2s ease;
  padding: 0;
}

body.fl718-location-page.fl718-loc-grand-canyon .fl718-loc-lightbox__nav:hover {
  color: rgba(0, 0, 0, 0.45);
}

body.fl718-location-page.fl718-loc-grand-canyon .fl718-loc-lightbox__close:focus-visible,
body.fl718-location-page.fl718-loc-grand-canyon .fl718-loc-lightbox__nav:focus-visible {
  outline: 2px solid rgba(80, 60, 40, 0.5);
  outline-offset: 3px;
}

body.fl718-location-page.fl718-loc-grand-canyon .fl718-loc-lightbox__nav--prev { left: 0.5rem; }
body.fl718-location-page.fl718-loc-grand-canyon .fl718-loc-lightbox__nav--next { right: 0.5rem; }

/* Mobile lightbox (desktop file — kept for parity if viewport narrows) */
@media (max-width: 768px) {
  body.fl718-location-page.fl718-loc-grand-canyon .fl718-loc-lightbox__inner {
    max-width: 100vw;
    max-height: 100svh;
  }

  body.fl718-location-page.fl718-loc-grand-canyon .fl718-loc-lightbox__image {
    max-height: calc(100svh - 140px);
  }

  body.fl718-location-page.fl718-loc-grand-canyon .fl718-loc-lightbox:not(.fl718-loc-lightbox--dark) .fl718-loc-lightbox__close {
    position: fixed;
    top: 1rem;
    right: 1rem;
    background: rgba(160, 150, 140, 0.15);
    border-radius: 50%;
    color: rgba(0, 0, 0, 0.35);
  }

  body.fl718-location-page.fl718-loc-grand-canyon .fl718-loc-lightbox--dark .fl718-loc-lightbox__close {
    position: fixed;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
  }

  body.fl718-location-page.fl718-loc-grand-canyon .fl718-loc-lightbox__nav--prev { left: 0; }
  body.fl718-location-page.fl718-loc-grand-canyon .fl718-loc-lightbox__nav--next { right: 0; }
}

/* ============================================================
   LIGHTBOX — WHITE ROOM → DARK TRANSITION
   ============================================================ */

body.fl718-location-page.fl718-loc-grand-canyon .fl718-loc-lightbox__clone {
  position: fixed;
  pointer-events: none;
  z-index: 9500;
  display: block;
}

body.fl718-location-page.fl718-loc-grand-canyon .fl718-loc-lightbox__counter {
  position: fixed;
  top: 1.75rem;
  left: 1.75rem;
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.2);
  letter-spacing: 0.1em;
  opacity: 0;
  pointer-events: none;
  z-index: 9100;
  transition: color 0.85s ease;
}

body.fl718-location-page.fl718-loc-grand-canyon .fl718-loc-lightbox--dark .fl718-loc-lightbox__nav {
  color: rgba(255, 255, 255, 0.22);
}

body.fl718-location-page.fl718-loc-grand-canyon .fl718-loc-lightbox--dark .fl718-loc-lightbox__nav:hover {
  color: rgba(255, 255, 255, 0.82);
}

body.fl718-location-page.fl718-loc-grand-canyon .fl718-loc-lightbox--dark .fl718-loc-lightbox__close {
  color: rgba(255, 255, 255, 0.28);
}

body.fl718-location-page.fl718-loc-grand-canyon .fl718-loc-lightbox--dark .fl718-loc-lightbox__close:hover {
  color: rgba(255, 255, 255, 0.82);
}

body.fl718-location-page.fl718-loc-grand-canyon .fl718-loc-lightbox--dark .fl718-loc-lightbox__counter {
  color: rgba(255, 255, 255, 0.28);
}

body.fl718-location-page.fl718-loc-grand-canyon .fl718-loc-lightbox--dark .fl718-loc-lightbox__caption {
  color: rgba(185, 180, 175, 0.85);
}

body.fl718-location-page.fl718-loc-grand-canyon .fl718-loc-lightbox--dark .fl718-loc-lightbox__image {
  box-shadow:
    0 2px 20px rgba(0, 0, 0, 0.45),
    0 10px 60px rgba(0, 0, 0, 0.55);
}

@media (prefers-reduced-motion: reduce) {
  body.fl718-location-page.fl718-loc-grand-canyon .fl718-loc-lightbox__counter {
    opacity: 1;
    transition: none;
  }
  body.fl718-location-page.fl718-loc-grand-canyon .fl718-loc-lightbox__caption {
    animation: none !important;
    opacity: 1;
    transition: none;
  }
}

@media (max-width: 600px) {
}

@media (max-width: 375px) {
}

/* ============================================================
   PREFERS-REDUCED-MOTION + NO-JS FALLBACKS
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  body.fl718-location-page.fl718-loc-grand-canyon .fl718-loc-item {
    opacity: 1 !important;
    transition: none !important;
  }

  body.fl718-location-page.fl718-loc-grand-canyon .fl718-loc-hero__title,
  body.fl718-location-page.fl718-loc-grand-canyon .fl718-loc-hero__caption {
    opacity: 1 !important;
  }
}

body.fl718-location-page.fl718-loc-grand-canyon:not(.fl718-js-loaded) .fl718-loc-item {
  opacity: 1;
}

body.fl718-location-page.fl718-loc-grand-canyon:not(.fl718-js-loaded) .fl718-loc-hero__title,
body.fl718-location-page.fl718-loc-grand-canyon:not(.fl718-js-loaded) .fl718-loc-hero__caption {
  opacity: 1;
}

/* ============================================================
   HERO OVERLAY — "The Photographer Barely Speaks" (Concept D)
   ============================================================ */

body.fl718-location-page.fl718-loc-grand-canyon .fl718-loc-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

body.fl718-location-page.fl718-loc-grand-canyon .fl718-loc-hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.48) 22%,
    rgba(0, 0, 0, 0.12) 45%,
    rgba(0, 0, 0, 0) 65%
  );
}

body.fl718-location-page.fl718-loc-grand-canyon .fl718-loc-hero__text {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0 clamp(1.5rem, 3.5vw, 3.5rem) clamp(1.25rem, 2.5vw, 3rem);
}

body.fl718-location-page.fl718-loc-grand-canyon .fl718-loc-hero__title {
  font-family: 'Jost', -apple-system, sans-serif;
  font-weight: 200;
  font-size: clamp(2rem, 5.5vw, 6.75rem);
  letter-spacing: 0.18em;
  line-height: 1.0;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  display: block;
  margin: 0 0 0.5em 0;
  opacity: 0;
}

body.fl718-location-page.fl718-loc-grand-canyon .fl718-loc-hero__caption {
  font-family: 'Jost', -apple-system, sans-serif;
  font-weight: 100;
  font-size: clamp(0.65rem, 0.85vw, 0.75rem);
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  display: block;
  margin: 0;
  opacity: 0;
}

/* ------------------------------------------------------------
   HERO TITLE — TOP LEFT, "IN THE SKY"  (v1.1.0, 2026-08-15)
   ------------------------------------------------------------
   Desktop only, per Seamus. Option A of four compared in
   grand-canyon-concepts/gc-hero-title-position-mockup.html.

   WHY THIS IS WRAPPED IN A MEDIA QUERY, AND MUST STAY THAT WAY:
   this file is the BASE stylesheet — functions.php enqueues it on
   every viewport with no wp_is_mobile() guard, and loads
   fl718-grand-canyon-mobile.css on top of it. Editing the hero
   rules above directly would move the mobile title too. Mobile is
   a separate decision, deliberately not made yet.

   WHY A SCRIM IS REQUIRED, measured off the hero's actual pixels
   (left 3-58% of frame, sRGB relative luminance):
       bottom-left rock   mean 77.5  -> white text 8.39:1
       top-left sky       mean 188.9 -> white text 1.88:1   FAILS AA
   The sky is ~4x brighter than the rock the title used to sit on,
   so the unmodified white would land far below the 4.5:1 the rest
   of the site holds to. The top wash brings it to ~5.58:1.

   The bottom half of the gradient is retained: the grid's first
   row sits directly under the hero and still needs the footing.
   ------------------------------------------------------------ */

@media (min-width: 769px) {

  body.fl718-location-page.fl718-loc-grand-canyon .fl718-loc-hero__text {
    bottom: auto;
    top: 0;
    left: 0;
    padding: clamp(5rem, 9vw, 7.5rem) clamp(1.5rem, 3.5vw, 3.5rem) 0;
  }

  /* Full white, not the 0.88 alpha used at the bottom of the frame.
     Measured on the deployed page, the title band renders at mean
     luminance 120.8; white at 0.88 alpha lands 4.37:1 — just under
     AA. Opaque white takes it to 4.83:1. The alpha was doing nothing
     visible against a scrim this dark, so this costs no softness. */
  body.fl718-location-page.fl718-loc-grand-canyon .fl718-loc-hero__title {
    color: #ffffff;
  }

  body.fl718-location-page.fl718-loc-grand-canyon .fl718-loc-hero__gradient {
    background:
      /* top wash — carries the title */
      linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.62) 0%,
        rgba(0, 0, 0, 0.34) 26%,
        rgba(0, 0, 0, 0.06) 48%,
        rgba(0, 0, 0, 0) 62%
      ),
      /* bottom footing — kept, lighter than the original 0.78 */
      linear-gradient(
        to top,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.18) 20%,
        rgba(0, 0, 0, 0) 40%
      );
  }

}

/* ============================================================
   BYLINE — between hero and grid  (2026-08-15)
   ------------------------------------------------------------
   Moved out of the hero at Seamus's request, to the placement
   Quito already uses (fl718-quito-byline-block): its own band on
   the page background rather than text over the photograph.

   Two things this buys beyond the look:
   - No contrast problem. On the warm off-white #f9f8f6 the line
     is dark-on-light and needs no scrim, no shadow, and no
     compromise on the sky. The hero gradient is untouched.
   - It becomes real page text. Inside the hero it lived in an
     aria-hidden overlay and no screen reader ever saw it; here
     it is read like any other prose on the page.

   NOT typeset like Quito's. Quito's four lines are italic Libre
   Baskerville — that page's own voice. Grand Canyon stays in
   Jost, matching its hero title, so the byline reads as this
   page's sentence rather than a borrowed house style.

   Spacing: the grid's own top padding is reduced in the rule
   below so the band occupies that space instead of adding to it.
   The gap between hero and grid grows a little, as asked, rather
   than doubling.
   ============================================================ */

body.fl718-location-page.fl718-loc-grand-canyon .fl718-loc-byline-block {
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(3.5rem, 6vw, 6rem) 25px clamp(2rem, 3.5vw, 3.25rem);
}

body.fl718-location-page.fl718-loc-grand-canyon .fl718-loc-byline {
  font-family: 'Jost', -apple-system, sans-serif;
  font-weight: 300;
  font-size: clamp(1.05rem, 1.6vw, 1.6rem);
  letter-spacing: 0.045em;
  line-height: 1.55;
  color: #4a4038;
  /* Warm dark grey, not the body #1a1a1a. Measured on #f9f8f6 this
     is 7.9:1 — comfortably past AA while staying softer than the
     photographs it introduces. Pure black would shout. */
  margin: 0;
  /* Wide enough to hold the sentence on ONE line at desktop widths.
     At 46ch it broke after "Earth and" — mid-phrase, splitting a pair
     the sentence treats as one thing. The line is short; letting it
     run is better than breaking it in the wrong place. Narrow
     viewports wrap naturally, and the comma is the first break point
     they reach. */
  max-width: 68ch;
  text-wrap: pretty;
}

/* The grid's top padding shrinks because the byline band now sits
   above it and carries its own bottom padding. Without this the two
   stack and the gap doubles. */
body.fl718-location-page.fl718-loc-grand-canyon .fl718-loc-byline-block + main .fl718-loc-grid,
body.fl718-location-page.fl718-loc-grand-canyon .fl718-loc-byline-block ~ main .fl718-loc-grid {
  padding-top: 0;
}

@media (max-width: 768px) {
  body.fl718-location-page.fl718-loc-grand-canyon .fl718-loc-byline-block {
    padding: clamp(2.5rem, 8vw, 3.5rem) 20px clamp(1.5rem, 5vw, 2.25rem);
  }
  body.fl718-location-page.fl718-loc-grand-canyon .fl718-loc-byline {
    font-size: clamp(1rem, 4.2vw, 1.15rem);
  }
}

/* ─────────────────────────────────────────────────────────────
   AFTER-CONTENT (.fl718-loc-after*) — REMOVED 2026-08-21, BUG-061 B5.
   0 page-private rules deleted. This page now renders the shared
   partial (template-parts/after-content.php), styled by
   fl718-after-content.css on desktop and fl718-after-content-mobile-v2.css
   on mobile. The markup these rules targeted no longer exists.

   Safety was established by RENDERING, not grepping (plan §12b): the live
   page was snapshotted at the real viewport, re-rendered with these rules
   stripped, and every element's computed styles diffed. Zero differences.
   ───────────────────────────────────────────────────────────── */
