/* ============================================================
   HOMEPAGE — Editorial B&W identity
   Pure white body + neutral grays + black accents.
   One dark anchor: the keyboard-photo hero at top.
   ============================================================ */

/* ============================================================
   HERO — dark photo background, centered, animated search
   ============================================================ */
.hero, .hero--photo {
  position: relative;
  min-height: clamp(420px, 62vh, 560px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(2.25rem, 5vw, 3.5rem) 0;
  background: #0a0a0a;
}

/* Kill the legacy .hero overrides from components.css */
.hero::before,
.hero::after {
  content: none !important;
  display: none !important;
}

.hero__photo {
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  filter: contrast(1.1);
  z-index: -2;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  /* Slightly darker overlay — photo still comes through, text easier to read. */
  background:
    radial-gradient(ellipse 90% 70% at 50% 50%, rgba(0, 0, 0, 0.32) 0%, rgba(0, 0, 0, 0.65) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.55) 100%);
  z-index: -1;
}

.hero__inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 3vw, 2rem);
  text-align: center;
  position: relative;
  color: #ffffff;
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  margin-bottom: 1.1rem;
  padding: 0.4rem 0.9rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero__title {
  font-family: var(--font-family-heading);
  font-weight: 800;
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin: 0 auto 1.1rem;
  max-width: 18ch;
  text-wrap: balance;
}
.hero__title em {
  font-style: italic;
  font-weight: 800;
  color: #ffffff;
}

.hero__sub {
  font-size: clamp(0.98rem, 1.3vw, 1.1rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 auto 1.6rem;
  max-width: 580px;
}

/* Functional search bar with animated placeholder */
.hero__search {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 14px;
  padding: 0.7rem 0.7rem 0.7rem 1.2rem;
  max-width: 580px;
  width: 100%;
  margin: 0 auto 1.5rem;
  box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  font-size: 1.02rem;
  color: #0a0a0a;
  position: relative;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.hero__search:focus-within {
  border-color: #0a0a0a;
  box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.5), 0 0 0 3px rgba(255, 255, 255, 0.15);
}
.hero__search-icon {
  color: #525252;
  flex-shrink: 0;
}

/* Field wrapper — input always present, overlay sits on top of it */
.hero__search-field {
  flex: 1;
  position: relative;
  min-width: 0;
}

/* Real input — always visible, fully interactive */
.hero__search-input {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font: inherit;
  font-weight: 500;
  color: #0a0a0a;
  padding: 0.4rem 0;
  font-family: var(--font-family-body);
}
.hero__search-input::placeholder {
  color: transparent; /* hidden — overlay shows the typewriter instead */
}

/* Decorative overlay sitting on top of the input.
   Click-through disabled so the input gets the click. JS toggles is-hidden. */
.hero__search-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  pointer-events: none;
  padding: 0.4rem 0;
  overflow: hidden;
  white-space: nowrap;
  opacity: 1;
  transition: opacity 0.2s ease;
}
.hero__search-overlay.is-hidden { opacity: 0; }

.hero__search-text {
  display: inline;
  font-weight: 500;
  color: #18181b;
  font-feature-settings: 'cv11';
}
.hero__search-text::after {
  content: '|';
  display: inline-block;
  margin-left: 1px;
  color: #0a0a0a;
  font-weight: 300;
  animation: heroBlink 1s step-end infinite;
  transform: translateY(-1px);
}
@keyframes heroBlink {
  0%, 50%      { opacity: 1; }
  50.01%, 100% { opacity: 0; }
}

/* Submit button — always visible. 44px to meet touch-target minimum. */
.hero__search-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #0a0a0a;
  color: #ffffff;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.15s ease;
}
.hero__search-submit:hover {
  background: #1f1f1f;
  transform: translateX(1px);
}

.hero__actions {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.7rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s ease;
  font-family: var(--font-family-heading);
  min-height: 44px;
}
.hero__cta--primary {
  background: #ffffff;
  color: #0a0a0a;
  border: 1.5px solid #ffffff;
}
.hero__cta--primary:hover {
  background: #f4f4f5;
  border-color: #f4f4f5;
  color: #0a0a0a;
  transform: translateY(-1px);
}
.hero__cta--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero__cta--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.55);
  color: #ffffff;
}

/* Hero — phone tightening: stack CTAs full-width, tighter search padding */
@media (max-width: 480px) {
  .hero__search {
    padding: 0.6rem 0.6rem 0.6rem 1rem;
    gap: 0.5rem;
    font-size: 16px; /* prevent iOS zoom on focus */
    border-radius: 12px;
  }
  .hero__search-input { font-size: 16px; }
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero__cta {
    width: 100%;
    padding: 0.95rem 1.25rem;
  }
}

/* ============================================================
   MISSION — Editorial manifesto spread
   Hairline rules · oversized headline · video as press exhibit ·
   3-column editorial copy with Roman numerals
   ============================================================ */
.mission {
  background: var(--color-bg);
  padding: clamp(2rem, 4vw, 3.5rem) 0 clamp(2rem, 3.5vw, 3rem);
  position: relative;
}
.mission__container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 3vw, 2rem);
}

/* ── Top header rule — № 01 / OUR MISSION / byline ── */
.mission__header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: clamp(0.85rem, 2vw, 1.5rem);
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-heading);
  margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}
.mission__num {
  font-family: var(--font-family-heading);
  font-weight: 300;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: var(--color-heading);
  font-feature-settings: 'tnum';
}
.mission__label {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--color-heading);
  font-weight: 700;
  position: relative;
  padding-left: 1rem;
}
.mission__label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-heading);
  transform: translateY(-50%);
}
.mission__byline {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-text-dim);
  font-weight: 500;
  font-style: italic;
}
@media (max-width: 720px) {
  .mission__header { grid-template-columns: auto 1fr; }
  .mission__byline { display: none; }
}

/* ── Oversized editorial headline ── */
.mission__headline {
  font-family: var(--font-family-heading);
  font-weight: 800;
  font-size: clamp(2.1rem, 5.4vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--color-heading);
  margin: 0 0 clamp(2rem, 4vw, 3rem);
  text-wrap: balance;
  max-width: 22ch;
}
.mission__headline em {
  font-style: italic;
  font-weight: 800;
  color: var(--color-heading);
}

/* ── Video as press exhibit / figure ── */
.mission__exhibit {
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  max-width: 720px;
  position: relative;
}
.mission__video-frame {
  position: relative;
  background: #0a0a0a;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow:
    0 1px 0 rgba(0, 0, 0, 0.04),
    0 24px 48px -16px rgba(0, 0, 0, 0.2),
    0 8px 18px -10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.mission__video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #0a0a0a;
}

/* Custom play overlay — dramatic, editorial */
.mission__play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.45) 100%);
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-family: var(--font-family-heading);
  z-index: 2;
  transition: opacity 0.35s ease, background 0.35s ease;
  padding: 0;
  appearance: none;
}
.mission__play-overlay:hover {
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.35) 100%);
}
.mission__play-overlay.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.mission__play-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(60px, 8vw, 84px);
  height: clamp(60px, 8vw, 84px);
  border-radius: 50%;
  background: #ffffff;
  color: #0a0a0a;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}
.mission__play-overlay:hover .mission__play-icon {
  transform: scale(1.08);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}
.mission__play-icon svg { margin-left: 4px; }
.mission__play-text {
  font-size: clamp(0.85rem, 1.4vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.mission__play-runtime {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  font-feature-settings: 'tnum';
}

/* Exhibit caption — figure / catalog style */
.mission__caption {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}
.mission__caption-mark {
  flex-shrink: 0;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-heading);
  font-size: 0.7rem;
}
.mission__caption-text { flex: 1; }

/* ── Three-column editorial copy ── */
.mission__columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--color-border);
  padding-top: clamp(1.5rem, 3vw, 2.25rem);
}
@media (max-width: 880px) {
  .mission__columns { grid-template-columns: 1fr; gap: 0; }
}
.mission__col {
  padding: 0 clamp(1rem, 2vw, 1.75rem);
  position: relative;
}
.mission__col:first-child { padding-left: 0; }
.mission__col:last-child  { padding-right: 0; }
.mission__col + .mission__col { border-left: 1px solid var(--color-border); }
@media (max-width: 880px) {
  .mission__col {
    padding: 1.5rem 0;
    border-left: none !important;
  }
  .mission__col + .mission__col {
    border-top: 1px solid var(--color-border);
  }
}

.mission__col-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--color-text-muted);
  font-weight: 700;
  margin-bottom: 0.85rem;
}
.mission__col-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text);
  margin: 0;
}

.mission__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.mission__list li {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.5;
  display: flex;
  gap: 0.55rem;
  align-items: baseline;
}
.mission__list-num {
  font-style: italic;
  font-weight: 500;
  color: var(--color-text-muted);
  font-size: 0.85rem;
  flex-shrink: 0;
  min-width: 1.4rem;
  font-feature-settings: 'tnum';
}

.mission__col-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-heading);
  text-decoration: none;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--color-heading);
  transition: gap 0.2s ease, color 0.2s ease;
  width: fit-content;
}
.mission__col-link + .mission__col-link {
  margin-top: 1.25rem;
}
.mission__col-link:hover { gap: 0.75rem; }
.mission__col-link--alt {
  color: var(--color-text-muted);
  border-bottom-color: var(--color-border-light);
}
.mission__col-link--alt:hover {
  color: var(--color-heading);
  border-bottom-color: var(--color-heading);
}

/* ============================================================
   THE SPOTLIGHT — cover-story feature card
   ------------------------------------------------------------
   The one spot on the homepage where a single listing gets the full
   editorial treatment, so it is built to actually read as the feature:

   · A black card on a white page, between two light sections. The old
     version was a white card with a 1px gray border on a white page —
     structurally invisible. Black is already the brand's only accent,
     so this costs no new color.
   · Two panels. Left is a white print "plate" (hairline grid, framed
     logo) because listing logos are almost always dark-on-white and
     need a light ground. Right is the black type panel.
   · The word "Featured" appears exactly once, as the card's badge.
     The section rule above says "The Spotlight" instead.
   · Category and location no longer share the eyebrow — three
     uppercase items in one row wrapped into each other. Category
     stays up top (single line, truncated); location moved down to
     the footer meta where it groups naturally with the listed date.
   ============================================================ */
.spotlight {
  background: var(--color-bg);
  padding: clamp(2.25rem, 4vw, 3.5rem) 0;
  position: relative;
}
.spotlight__container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 3vw, 2rem);
}

/* ── Section rule — same hairline header as № 01 / № 02 on this page ── */
.spotlight__rule {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(0.85rem, 2vw, 1.5rem);
  align-items: baseline;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-heading);
  margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}
.spotlight__num {
  font-family: var(--font-family-heading);
  font-weight: 300;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: var(--color-heading);
  font-feature-settings: 'tnum';
}
.spotlight__label {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--color-heading);
  font-weight: 700;
  position: relative;
  padding-left: 1rem;
}
.spotlight__label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-heading);
  transform: translateY(-50%);
}
.spotlight__edition {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-text-dim);
  font-weight: 500;
  font-style: italic;
  white-space: nowrap;
}
@media (max-width: 720px) {
  .spotlight__rule { grid-template-columns: auto 1fr; }
  .spotlight__edition { display: none; }
}

/* ── The card ── */
.spotlight__feature {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  background: #0a0a0a;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: #ffffff;
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  box-shadow:
    0 28px 60px -28px rgba(0, 0, 0, 0.5),
    0 4px 14px -6px rgba(0, 0, 0, 0.18);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.spotlight__feature:hover {
  transform: translateY(-4px);
  box-shadow:
    0 42px 80px -30px rgba(0, 0, 0, 0.55),
    0 6px 18px -8px rgba(0, 0, 0, 0.22);
}
@media (max-width: 880px) {
  .spotlight__feature { grid-template-columns: 1fr; }
}

/* ── Left panel: the print plate ──
   White ground with a faint hairline grid, the logo centered inside a
   bordered, shadowed frame. Sized in percentages so square logos,
   wide wordmarks, and photos all land the same way without ever
   scaling past their source resolution. */
/* No aspect-ratio on desktop — the plate stretches to whatever height the
   type panel needs. A fixed ratio left a black band under it whenever the
   description ran long. min-height keeps it from collapsing on short copy. */
.spotlight__feature-media {
  position: relative;
  min-height: 360px;
  background: #ffffff;
  padding: 2.25rem;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.spotlight__feature-media::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#0a0a0a 1px, transparent 1px),
    linear-gradient(90deg, #0a0a0a 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.05;
  pointer-events: none;
}
.spotlight__feature-media img {
  position: relative;
  z-index: 1;
  max-width: 82%;
  max-height: 78%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  background: #ffffff;
  border: 1px solid var(--color-border-light);
  padding: 14px;
  box-shadow:
    0 20px 44px -16px rgba(0, 0, 0, 0.22),
    0 2px 6px rgba(0, 0, 0, 0.06);
  image-rendering: -webkit-optimize-contrast;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
.spotlight__feature:hover .spotlight__feature-media img {
  transform: scale(1.025);
}
@media (max-width: 880px) {
  /* min-height must be reset here — min beats max in CSS, so the desktop
     360px floor would otherwise override the stacked plate's max-height. */
  .spotlight__feature-media {
    min-height: 0;
    aspect-ratio: 3 / 2;
    max-height: 250px;
    padding: 1.5rem;
  }
  .spotlight__feature-media img {
    max-width: 62%;
    max-height: 78%;
    padding: 10px;
  }
}

/* Retired: the old on-image "FEATURED" stamp. The badge now lives once,
   in the card body. Selectors kept as no-ops in case of a cached page. */
.spotlight__feature-stamp,
.spotlight__feature-byline { display: none; }

/* ── Right panel: the type ── */
.spotlight__feature-body {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  min-width: 0;
  padding: clamp(1.9rem, 3vw, 2.75rem);
  position: relative;
}
/* Faint corner lift so a pure-black panel still has depth */
.spotlight__feature-body::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 95% at 100% 0%, rgba(255, 255, 255, 0.075), transparent 62%);
  pointer-events: none;
}
.spotlight__feature-body > * { position: relative; z-index: 1; }

/* Eyebrow: the one "Featured" badge + the category, on a single line */
.spotlight__feature-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}
.spotlight__feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  flex-shrink: 0;
  background: #ffffff;
  color: #0a0a0a;
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 0.4rem 0.72rem 0.4rem 0.62rem;
  border-radius: 999px;
}
.spotlight__feature-tag i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #0a0a0a;
  animation: spotPulse 2s ease-in-out infinite;
}
/* Empty state — nothing is actually featured, so it gets an outlined
   "Open spot" chip instead of the solid live badge. */
.spotlight__feature-tag--open {
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.32);
  padding-left: 0.72rem;
}
@keyframes spotPulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.35; }
}
.spotlight__feature-cat {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Explicit white, not inherited. The global h1–h3 rule sets
   var(--color-heading) — which is #0a0a0a — so an unlinked heading here
   (the empty state) would render pure black on a pure black card. */
.spotlight__feature-name {
  font-family: var(--font-family-heading);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.4vw, 2.65rem);
  line-height: 1.02;
  letter-spacing: -0.038em;
  color: #ffffff;
  margin: 0;
  text-wrap: balance;
}
.spotlight__feature-name a {
  color: #ffffff;
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.spotlight__feature:hover .spotlight__feature-name a { background-size: 100% 1px; }

.spotlight__feature-quote {
  font-size: 0.95rem;
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  padding-left: 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  max-width: 48ch;
}

.spotlight__feature-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.25rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: auto;
  flex-wrap: wrap;
}
.spotlight__feature-meta {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.755rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  flex-wrap: wrap;
  min-width: 0;
}
.spotlight__feature-meta strong {
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.01em;
}
/* Separators are pseudo-elements on the item that follows them, not
   standalone spans — a standalone span wraps on its own and leaves a
   dangling "·" at the end of a line on narrow screens. */
.spotlight__feature-meta > * + *::before {
  content: '\00B7';
  color: rgba(255, 255, 255, 0.26);
  margin-right: 0.55rem;
}

.spotlight__feature-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.72rem 1.25rem;
  background: #ffffff;
  color: #0a0a0a;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: -0.01em;
  border-radius: 999px;
  flex-shrink: 0;
  transition: gap 0.2s ease, box-shadow 0.25s ease;
}
.spotlight__feature-cta:hover {
  gap: 0.8rem;
  color: #0a0a0a;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.15);
}
@media (max-width: 560px) {
  .spotlight__feature-foot {
    flex-direction: column;
    align-items: flex-start;
  }
  .spotlight__feature-cta {
    width: 100%;
    justify-content: center;
  }
}

/* ── Loading skeleton ──
   Plate shimmers light (it is a white panel); body bars shimmer in
   white-alpha because they sit on black. */
.spotlight__feature--loading .spotlight__feature-media {
  background: linear-gradient(110deg, #f4f4f5 30%, #fafafa 50%, #f4f4f5 70%);
  background-size: 200% 100%;
  animation: spotShimmer 1.4s linear infinite;
}
.spotlight__feature--loading .spotlight__feature-body { gap: 0; }
.spotlight__skeleton {
  background: linear-gradient(110deg,
    rgba(255, 255, 255, 0.06) 30%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.06) 70%);
  background-size: 200% 100%;
  animation: spotShimmer 1.4s linear infinite;
  border-radius: 4px;
  height: 16px;
  margin-bottom: 1rem;
}
.spotlight__skeleton--cat { width: 35%; height: 14px; }
.spotlight__skeleton--name { width: 75%; height: 36px; margin-bottom: 1.5rem; }
.spotlight__skeleton--short { width: 55%; }
@keyframes spotShimmer { to { background-position: -200% 0; } }

/* Empty state — no Premium subscribers and nothing in the fallback pool */
.spotlight__feature-empty {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-text-dim);
}

/* ============================================================
   LISTING CARDS — clean hover
   ============================================================ */
.home-listing-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease;
}

.home-listing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
  border-color: var(--color-border-light);
}

.home-listing-card__badge {
  background: var(--color-heading);
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.home-listing-card__body h3 {
  font-family: var(--font-family-heading);
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* ============================================================
   WHY LIST SECTION — photo with offset black frame behind
   ============================================================ */
.why-list__visual {
  position: relative;
  display: block;
  isolation: isolate;
  padding: 0 18px 18px 0;  /* space for the offset frame to peek */
}
.why-list__visual::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 18px;
  right: 0;
  bottom: 0;
  background: var(--color-heading);
  border-radius: 10px;
  z-index: -1;
}
.why-list__image {
  position: relative;
  display: block;
  width: 100%;
  border-radius: 10px;
  transition: transform 0.5s ease;
  z-index: 1;
}

.split:hover .why-list__image {
  transform: translate(-3px, -3px);
}

.why-list__content h3 {
  font-family: var(--font-family-heading);
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* ============================================================
   PRICING SECTION — light, clean
   ============================================================ */
.home-pricing__content h2 {
  font-family: var(--font-family-heading);
  font-weight: 800;
  letter-spacing: -0.025em;
}

/* ============================================================
   BLOG CARDS — clean
   ============================================================ */
.home-blog-card,
.blog-card {
  border: 1px solid var(--color-border);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease;
}

.home-blog-card:hover,
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
  border-color: var(--color-border-light);
}

.home-blog-card__title,
.blog-card__title {
  font-family: var(--font-family-heading);
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section__header h2 {
  font-family: var(--font-family-heading);
  font-weight: 800;
  letter-spacing: -0.025em;
}

.about-section-label {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.7rem;
  color: var(--color-text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.section__header h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--color-heading);
  margin: var(--space-md) auto 0;
  border-radius: 2px;
}

/* ─── Variant: INTAKE LOG (Recent Listings)
   Pulsing live dot in the kicker + asterism rule under the headline */
.about-section-label--live {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.about-section-label__dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-heading);
  position: relative;
  animation: ljLivePulse 1.8s ease-in-out infinite;
}
.about-section-label__dot::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--color-heading);
  opacity: 0.18;
  animation: ljLivePulseRing 1.8s ease-out infinite;
}
@keyframes ljLivePulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.55; }
}
@keyframes ljLivePulseRing {
  0%   { transform: scale(0.6); opacity: 0.35; }
  80%  { transform: scale(2.2); opacity: 0; }
  100% { transform: scale(2.2); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .about-section-label__dot,
  .about-section-label__dot::before { animation: none; }
}
.section__header--intake h2::after {
  content: '◆ ◆ ◆';
  width: auto;
  height: auto;
  background: transparent;
  border-radius: 0;
  font-size: 0.45rem;
  letter-spacing: 0.6em;
  color: var(--color-text-dim);
  text-indent: 0.6em; /* compensate for trailing letter-spacing */
}

/* ─── Variant: MAGAZINE / READING ROOM (Latest Articles)
   Typographic kicker (no pill) + double-hairline rule under headline */
.about-section-label--type {
  background: transparent;
  border: none;
  padding: 0;
  border-radius: 0;
  color: var(--color-text-muted);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  position: relative;
  padding: 0 1.25rem;
}
.about-section-label--type::before,
.about-section-label--type::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 14px;
  height: 1px;
  background: var(--color-border-light);
}
.about-section-label--type::before { left: 0; }
.about-section-label--type::after  { right: 0; }
.section__header--magazine h2 {
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.section__header--magazine h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: transparent;
  border-top: 1px solid var(--color-heading);
  border-bottom: 1px solid var(--color-heading);
  border-radius: 0;
}

.why-list__content h3::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--color-heading);
  margin-top: var(--space-md);
  border-radius: 2px;
}

.section .btn--secondary {
  border-color: var(--color-heading);
  color: var(--color-heading);
  border-width: 1.5px;
  font-weight: 500;
}

.section .btn--secondary:hover {
  background: var(--color-heading);
  color: #ffffff;
}

/* ============================================================
   SECTION DIVIDERS
   ============================================================ */
.sdv {
  line-height: 0;
  position: relative;
  z-index: 2;
  margin-top: -1px;
  margin-bottom: -1px;
}
.sdv svg {
  display: block;
  width: 100%;
  height: 80px;
}

.section--alt {
  background: var(--color-bg-surface);
}
