/*! Home page v2 (focus) — see base.html for shared design tokens. */
/* ═══════════════════════════════════════════════════════════
   FOCUS HOME — Compact, app-like, theme-aware
   Inherits the theme variables from the parent system.
   If used standalone, the :root block below provides defaults.
   ═══════════════════════════════════════════════════════════ */
:root,
[data-theme="dark"] {
  --page-bg:      #0b0d0f;
  --surface-1:    #12151a;
  --surface-2:    #1c2128;
  --surface-3:    #252d38;
  --text-primary: #f5f0e8;
  --text-body:    #8a9ab5;
  --text-muted:   #596880;
  --text-invert:  #0b0d0f;
  --border:       rgba(255,255,255,.07);
  --border-md:    rgba(255,255,255,.12);
  --gold:         #c9933a;
  --gold-light:   #e8b45a;
  --gold-pale:    rgba(201,147,58,.12);
  --gold-border:  rgba(201,147,58,.3);
  --teal:         #00c4a7;
  --teal-dim:     rgba(0,196,167,.13);
  --ff-display:   'Cormorant Garamond', Georgia, serif;
  --ff-head:      'Syne', system-ui, sans-serif;
  --ff-body:      'DM Sans', system-ui, sans-serif;
  --ease:         cubic-bezier(.22,1,.36,1);
  --r-sm: 8px; --r-md: 14px; --r-lg: 18px; --r-xl: 24px; --r-pill: 9999px;
  --shadow-sm:    0 2px 12px rgba(0,0,0,.35);
  --shadow-gold:  0 6px 28px rgba(201,147,58,.2);
  --hero-overlay: linear-gradient(90deg,rgba(0,0,0,.82) 0%,rgba(0,0,0,.45) 55%,rgba(0,0,0,.08) 100%);
  --hero-bg-a:    #0e2a26;
  --hero-bg-b:    #0b0d0f;
  --card-bg:      #1c2128;
  --card-border:  rgba(255,255,255,.07);
  --card-shadow:  0 2px 12px rgba(0,0,0,.3);
  --card-hover:   0 8px 28px rgba(0,0,0,.45);
  --ph-bg:        linear-gradient(145deg,#252d38,#1c2128);
  --ph-icon:      rgba(255,255,255,.1);
  --strip-bg:     #12151a;
  --meta-color:   #8a9ab5;
}

[data-theme="light"] {
  --page-bg:      #f5f1ea;
  --surface-1:    #ffffff;
  --surface-2:    #f9f6f0;
  --surface-3:    #eee9e0;
  --text-primary: #1a1208;
  --text-body:    #5c4f3a;
  --text-muted:   #8c7d66;
  --text-invert:  #ffffff;
  --border:       rgba(0,0,0,.07);
  --border-md:    rgba(0,0,0,.13);
  --gold:         #b8822a;
  --gold-light:   #d4a050;
  --gold-pale:    rgba(184,130,42,.10);
  --gold-border:  rgba(184,130,42,.28);
  --teal:         #00a38a;
  --teal-dim:     rgba(0,163,138,.12);
  --shadow-sm:    0 2px 10px rgba(0,0,0,.08);
  --shadow-gold:  0 6px 24px rgba(184,130,42,.18);
  --hero-overlay: linear-gradient(90deg,rgba(10,6,2,.85) 0%,rgba(10,6,2,.48) 55%,rgba(10,6,2,.06) 100%);
  --hero-bg-a:    #e4f2ee;
  --hero-bg-b:    #f5f1ea;
  --card-bg:      #ffffff;
  --card-border:  rgba(0,0,0,.07);
  --card-shadow:  0 2px 10px rgba(0,0,0,.07);
  --card-hover:   0 8px 24px rgba(0,0,0,.12);
  --ph-bg:        linear-gradient(145deg,#eee9e0,#f5f1ea);
  --ph-icon:      rgba(0,0,0,.12);
  --strip-bg:     #ffffff;
  --meta-color:   #7a6a56;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  background: var(--page-bg);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background .35s var(--ease), color .35s var(--ease);
}
a { text-decoration: none; color: inherit; }
img { display: block; }

/* ── Page wrap ── */
.fw { max-width: 1360px; margin: 0 auto; padding: 0 28px; }
@media(max-width:768px) { .fw { padding: 0 14px; } }

/* ═══════════════════════════════════════════════════════════
   TOP STRIP — breadcrumb + switch button
   ═══════════════════════════════════════════════════════════ */
.top-strip {
  background: var(--strip-bg);
  border-bottom: 1px solid var(--border);
  padding: 11px 0;
}
.top-strip__inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 12px;
}
.top-strip__crumb {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--ff-head); font-size: 10px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--text-body);
}
.top-strip__crumb a { color: var(--text-body); transition: color .2s; }
.top-strip__crumb a:hover { color: var(--gold); }
.top-strip__crumb i { font-size: 7px; opacity: .45; }
.top-strip__crumb .cur { color: var(--gold); }

.switch-btn {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--ff-head); font-size: 10px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale); border: 1px solid var(--gold-border);
  padding: 7px 14px; border-radius: var(--r-pill);
  transition: all .22s; white-space: nowrap;
}
.switch-btn:hover { background: var(--gold); color: var(--text-invert); }
.switch-btn i { font-size: 10px; }

/* ═══════════════════════════════════════════════════════════
   HERO — welcome + inline search + oval image slider
   ═══════════════════════════════════════════════════════════ */
.focus-page-shell { padding-top: 28px; }

.new-hero {
  position: relative;
  padding: 48px 0 40px;
  background:
    radial-gradient(ellipse at 85% 20%, var(--gold-pale) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 90%, var(--teal-dim) 0%, transparent 50%),
    linear-gradient(165deg, var(--hero-bg-a) 0%, var(--hero-bg-b) 68%);
  border-bottom: 1px solid var(--gold-border);
  overflow: hidden;
}
.new-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: center;
  gap: 40px;
}
.new-hero__content { max-width: 560px; }
.new-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--ff-head); font-size: 10px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.new-hero__title {
  font-family: var(--ff-display);
  font-size: clamp(28px, 4.4vw, 48px);
  font-weight: 600; line-height: 1.12; letter-spacing: -.02em;
  color: var(--text-primary);
  margin: 0 0 14px;
}
.new-hero__title em { font-style: italic; color: var(--gold-light); }
.new-hero__sub {
  font-family: var(--ff-body); font-size: 15px; line-height: 1.6;
  color: var(--text-body); max-width: 52ch; margin: 0 0 26px;
}
.new-hero__search {
  display: flex; align-items: center; gap: 6px;
  background: var(--surface-1); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 6px; margin-bottom: 26px;
  box-shadow: var(--shadow-sm);
}
.new-hero__search-type {
  font-family: var(--ff-head); font-size: 12px; font-weight: 600;
  color: var(--text-primary); background: var(--surface-2);
  border: none; border-radius: var(--r-lg); padding: 10px 12px;
  flex-shrink: 0; max-width: 130px;
}
.new-hero__search-input {
  flex: 1; min-width: 0; border: none; background: transparent;
  font-family: var(--ff-body); font-size: 14px; color: var(--text-primary);
  outline: none; padding: 6px 4px;
}
.new-hero__search-input::placeholder { color: var(--text-body); }
.new-hero__search-btn {
  flex-shrink: 0; display: flex; align-items: center; gap: 7px;
  background: var(--gold); color: var(--text-invert);
  border: none; border-radius: var(--r-lg); cursor: pointer;
  font-family: var(--ff-head); font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 11px 20px; transition: all .22s var(--ease);
}
.new-hero__search-btn:hover { background: var(--gold-light); box-shadow: var(--shadow-gold); }
.new-hero__stats { display: flex; flex-wrap: wrap; gap: 22px 32px; }
.new-hero__stat { display: flex; align-items: center; gap: 10px; }
.new-hero__stat i { color: var(--gold); font-size: 18px; }
.new-hero__stat strong {
  display: block; font-family: var(--ff-head); font-size: 17px; font-weight: 800;
  color: var(--text-primary); line-height: 1.1;
}
.new-hero__stat span {
  display: block; font-family: var(--ff-body); font-size: 11px;
  color: var(--text-muted); margin-top: 1px;
}

/* Oval visual */
.new-hero__visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.new-hero__oval {
  position: relative;
  width: clamp(220px, 26vw, 340px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 0 4px var(--page-bg), 0 0 0 6px var(--gold), var(--shadow-gold);
}
.new-hero__oval img { width: 100%; height: 100%; object-fit: cover; display: block; }
.new-hero__badge {
  position: absolute;
  display: flex; align-items: center; gap: 6px;
  background: var(--surface-1); border: 1px solid var(--gold-border);
  border-radius: var(--r-pill); padding: 8px 14px;
  font-family: var(--ff-head); font-size: 10px; font-weight: 700;
  color: var(--text-primary); box-shadow: var(--shadow-sm);
  white-space: nowrap;
  text-decoration: none; cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.new-hero__badge:hover, .new-hero__badge:focus-visible {
  background: var(--gold); color: var(--text-invert);
  transform: translateY(-3px); box-shadow: var(--shadow-gold);
}
.new-hero__badge:hover i, .new-hero__badge:focus-visible i { color: var(--text-invert); }
.new-hero__badge i { color: var(--gold); font-size: 12px; }
.new-hero__badge--1 { top: 4%; left: -6%; }
.new-hero__badge--2 { top: 22%; right: -10%; }
.new-hero__badge--3 { bottom: 18%; left: -12%; }
.new-hero__badge--4 { bottom: 2%; right: -4%; }

.new-hero__oval .slick-dots {
  bottom: 10px !important;
}
.new-hero__oval .slick-dots li button {
  width: 6px !important; height: 6px !important; padding: 0 !important;
  border-radius: 50% !important; border: 1px solid rgba(255,255,255,.7) !important;
  background: rgba(255,255,255,.3) !important;
}
.new-hero__oval .slick-dots li.slick-active button {
  background: var(--gold) !important; border-color: var(--gold) !important;
}

@media(max-width:1024px) {
  .new-hero__inner { grid-template-columns: minmax(0,1fr) minmax(240px, 320px); gap: 28px; }
}
@media(max-width:768px) {
  .new-hero { padding-top: 32px; }
  .new-hero__inner { grid-template-columns: 1fr; text-align: center; gap: 24px; }
  .new-hero__content { max-width: 100%; margin: 0 auto; }
  .new-hero__sub { margin-left: auto; margin-right: auto; }
  .new-hero__search { flex-wrap: wrap; border-radius: var(--r-lg); }
  .new-hero__search-type { max-width: none; flex: 1 1 100%; order: 1; }
  .new-hero__search-input { flex: 1 1 auto; order: 2; }
  .new-hero__search-btn { order: 3; }
  .new-hero__stats { justify-content: center; }
  .new-hero__visual { order: -1; padding: 0; }
  .new-hero__oval { width: clamp(180px, 55vw, 260px); }
  .new-hero__badge { padding: 6px 10px; font-size: 9px; }
  .new-hero__badge--1 { top: -2%; left: 2%; }
  .new-hero__badge--2 { top: 18%; right: -2%; }
  .new-hero__badge--3 { bottom: 14%; left: -2%; }
  .new-hero__badge--4 { bottom: -4%; right: 4%; }
}
@media(max-width:480px) {
  .new-hero__stats { gap: 16px 20px; }
  .new-hero__stat strong { font-size: 15px; }
  .new-hero__oval { width: clamp(160px, 60vw, 220px); }
}
@media(max-width:380px) {
  .new-hero__badge span { display: none; }
  .new-hero__badge { padding: 8px; border-radius: 50%; }
  .new-hero__badge i { font-size: 13px; }
}

/* ═══════════════════════════════════════════════════════════
   HOME FEATURES — reassurance strip (below Collection Spotlight)
   ═══════════════════════════════════════════════════════════ */
.home-features {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  margin-bottom: 44px; padding: 26px 24px;
  background: var(--surface-1); border: 1px solid var(--border);
  border-radius: var(--r-xl);
}
.home-feature { display: flex; align-items: center; gap: 12px; }
.home-feature i {
  flex-shrink: 0; width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--gold-pale); color: var(--gold); font-size: 15px;
}
.home-feature strong { display: block; font-family: var(--ff-head); font-size: 12.5px; color: var(--text-primary); }
.home-feature span { display: block; font-family: var(--ff-body); font-size: 11px; color: var(--text-muted); margin-top: 2px; }
@media(max-width:1024px) {
  .home-features { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width:480px) {
  .home-features { grid-template-columns: 1fr; gap: 12px; padding: 18px; }
}

/* ═══════════════════════════════════════════════════════════
   FROM OUR SHELVES — tabbed 3D coverflow depth stack
   One active book in front (data-position="0"), others recede in scale/
   opacity/rotateY by distance. JS assigns data-position; unmarked slides
   (further than ±2 away) are hidden entirely. Each .cf3d__group is one
   tab's dataset; only .is-active is shown/interactive.
   ═══════════════════════════════════════════════════════════ */
.focus-sec__sub {
  font-family: var(--ff-body); font-size: 13px; color: var(--text-body);
  max-width: 56ch; margin-top: 2px;
}

.cf3d-tabs {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  margin-bottom: 20px;
}
.cf3d-tabs__list { display: flex; flex-wrap: wrap; gap: 8px; }
.cf3d-tab {
  font-family: var(--ff-head); font-size: 10.5px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--text-body); background: transparent;
  border: 1px solid var(--border); border-radius: var(--r-pill);
  padding: 8px 16px; cursor: pointer; transition: all .22s;
}
.cf3d-tab:hover { border-color: var(--gold-border); color: var(--gold); }
.cf3d-tab.is-active { background: var(--gold); border-color: var(--gold); color: var(--text-invert); }
.cf3d-tabs__nav { display: flex; align-items: center; gap: 8px; }
@media(max-width:480px) {
  .cf3d-tab { font-size: 9.5px; padding: 7px 12px; }
  .cf3d-tabs__list { gap: 6px; }
}

.cf3d { position: relative; margin-bottom: 22px; }
.cf3d__group { display: none; }
.cf3d__group.is-active { display: block; }
.cf3d__stage {
  position: relative;
  height: 460px;
  perspective: 1600px;
  overflow: hidden;
}
.cf3d__empty {
  display: flex; align-items: center; justify-content: center;
  height: 100%; color: var(--text-body); font-size: 13px;
}
.cf3d__slide {
  position: absolute;
  top: 50%; left: 50%;
  width: 220px; height: 330px;
  margin: -165px 0 0 -110px;
  opacity: 0;
  transform: scale(.4);
  z-index: 0;
  pointer-events: none;
  transform-style: preserve-3d;
  transition: transform .7s var(--ease), opacity .7s var(--ease), z-index 0s .35s;
  cursor: pointer;
}
.cf3d__slide[data-position] { pointer-events: auto; }
.cf3d__slide[data-position="0"] {
  transform: translate3d(0,0,0) scale(1) rotateY(0deg);
  opacity: 1; z-index: 10; transition-delay: 0s;
}
.cf3d__slide[data-position="-1"] {
  transform: translate3d(-222px,14px,-126px) scale(.76) rotateY(26deg);
  opacity: .65; z-index: 6;
}
.cf3d__slide[data-position="1"] {
  transform: translate3d(222px,14px,-126px) scale(.76) rotateY(-26deg);
  opacity: .65; z-index: 6;
}
.cf3d__slide[data-position="-2"] {
  transform: translate3d(-375px,31px,-266px) scale(.56) rotateY(32deg);
  opacity: .3; z-index: 3;
}
.cf3d__slide[data-position="2"] {
  transform: translate3d(375px,31px,-266px) scale(.56) rotateY(-32deg);
  opacity: .3; z-index: 3;
}
.cf3d__cover {
  display: block; width: 100%; height: 100%;
  border-radius: var(--r-lg); overflow: hidden;
  background: var(--ph-bg);
  border: 1px solid var(--card-border);
  box-shadow: 0 26px 56px rgba(0,0,0,.35);
  position: relative;
}
.cf3d__cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cf3d__ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 40px; color: var(--ph-icon);
}

/* 3D book feel: a page-edge face along the right side (real 3D, rotated into
   depth via the slide's preserve-3d) plus a subtle spine-shadow on the cover
   itself to suggest thickness/curvature without needing a full box model. */
.cf3d__pages {
  position: absolute;
  top: 3%; right: 0; bottom: 3%;
  width: 14px;
  background: repeating-linear-gradient(to bottom, #efe9da 0 2px, #ddd0b8 2px 3px);
  transform-origin: left center;
  transform: rotateY(90deg) translateZ(1px);
  border-radius: 0 3px 3px 0;
  box-shadow: inset -3px 0 6px rgba(0,0,0,.3);
  pointer-events: none;
}
.cf3d__spine-shade {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.4) 0%, rgba(0,0,0,0) 8%, rgba(0,0,0,0) 90%, rgba(0,0,0,.25) 100%);
  border-radius: inherit;
  pointer-events: none;
}

/* On-cover info overlay: title/author/Open, legible over any cover art via a bottom scrim. */
.cf3d__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 28%, rgba(0,0,0,.55) 58%, rgba(0,0,0,.94) 100%);
  pointer-events: none;
}
.cf3d__overlay-info {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 20px 18px;
  display: flex; flex-direction: column; gap: 4px;
  opacity: 0; transform: translateY(6px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.cf3d__slide[data-position="0"] .cf3d__overlay-info { opacity: 1; transform: none; }
.cf3d__overlay-title {
  font-family: var(--ff-display); font-size: 19px; font-weight: 600;
  color: #fff; line-height: 1.25;
  text-shadow: 0 2px 12px rgba(0,0,0,.7), 0 1px 2px rgba(0,0,0,.9);
  display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.cf3d__overlay-author {
  font-size: 12px; color: rgba(255,255,255,.78); font-style: italic; margin-bottom: 6px;
  text-shadow: 0 1px 6px rgba(0,0,0,.6);
}
.cf3d__overlay-open {
  display: inline-flex; align-items: center; gap: 6px; align-self: flex-start;
  font-family: var(--ff-head); font-size: 10.5px; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase; color: var(--gold-light);
}
.cf3d__overlay-open i { font-size: 9px; }

.cf3d__nav {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--border-md);
  background: var(--surface-1); color: var(--text-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all .22s;
}
.cf3d__nav:hover { background: var(--gold); color: var(--text-invert); border-color: var(--gold); }
@media(max-width:480px) { .cf3d__nav { width: 40px; height: 40px; font-size: 13px; } }

@media(max-width:768px) {
  .cf3d__stage { height: 360px; }
  .cf3d__slide { width: 175px; height: 262px; margin: -131px 0 0 -87px; }
  .cf3d__slide[data-position="-1"] { transform: translate3d(-165px,10px,-95px) scale(.74) rotateY(26deg); }
  .cf3d__slide[data-position="1"]  { transform: translate3d(165px,10px,-95px) scale(.74) rotateY(-26deg); }
  .cf3d__slide[data-position="-2"], .cf3d__slide[data-position="2"] { opacity: 0; pointer-events: none; }
  .cf3d__overlay-title { font-size: 16px; }
  .cf3d__overlay-info { padding: 16px 14px; }
}

/* Phones: the 768px offsets push the side "peek" cards well past the edge
   of a ~360px-wide screen (clipped/overflowing rather than a clean peek) -
   shrink the whole stack proportionally so it actually fits. */
@media(max-width:480px) {
  .cf3d__stage { height: 300px; }
  .cf3d__slide { width: 150px; height: 225px; margin: -112px 0 0 -75px; }
  .cf3d__slide[data-position="-1"] { transform: translate3d(-120px,8px,-70px) scale(.7) rotateY(24deg); }
  .cf3d__slide[data-position="1"]  { transform: translate3d(120px,8px,-70px) scale(.7) rotateY(-24deg); }
  .cf3d__overlay-title { font-size: 14px; }
  .cf3d__overlay-info { padding: 14px 12px; }
  .cf3d__pages { width: 10px; }
}
@media(max-width:380px) {
  .cf3d__stage { height: 260px; }
  .cf3d__slide { width: 130px; height: 195px; margin: -97px 0 0 -65px; }
  .cf3d__slide[data-position="-1"] { transform: translate3d(-95px,6px,-55px) scale(.68) rotateY(22deg); }
  .cf3d__slide[data-position="1"]  { transform: translate3d(95px,6px,-55px) scale(.68) rotateY(-22deg); }
  .cf3d__overlay-title { font-size: 13px; }
  .cf3d__overlay-author { font-size: 10.5px; }
  .cf3d__overlay-info { padding: 12px 10px; }
  .cf3d__pages { width: 8px; }
}

@media(prefers-reduced-motion: reduce) {
  .cf3d__slide { transition: none; }
}

/* ═══════════════════════════════════════════════════════════
   SECTION HEADERS
   ═══════════════════════════════════════════════════════════ */
.focus-sec { margin-bottom: 44px; position: relative; }

/* Alternate a subtle full-bleed tinted band behind every other section for
   visual rhythm, without needing to touch the template markup. */
.focus-sec:nth-of-type(even) {
  padding: 36px 0;
  margin-bottom: 44px;
}
.focus-sec:nth-of-type(even)::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: calc(50% - 50vw); right: calc(50% - 50vw);
  width: 100vw;
  background: var(--surface-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  z-index: -1;
}

.focus-sec__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 12px; margin-bottom: 18px;
}
@media(max-width:480px) {
  .focus-sec__head { flex-direction: column; align-items: flex-start; gap: 8px; }
  .focus-sec__link { align-self: flex-start; }
}
.focus-sec__left { display: flex; flex-direction: column; gap: 4px; }
.focus-sec__eyebrow {
  font-family: var(--ff-head); font-size: 10px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 7px;
}
.focus-sec__eyebrow::before { content: ''; width: 14px; height: 1.5px; background: var(--gold); }
.focus-sec__title {
  font-family: var(--ff-display);
  font-size: clamp(22px, 3.2vw, 32px);
  font-weight: 400; color: var(--text-primary);
  line-height: 1.1; letter-spacing: -.02em;
}
.focus-sec__title em { font-style: italic; color: var(--gold-light); }
.focus-sec__link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--ff-head); font-size: 10px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold); border-bottom: 1px solid var(--gold-border);
  padding-bottom: 2px; transition: all .2s; white-space: nowrap;
}
.focus-sec__link i { font-size: 8px; transition: transform .2s; }
.focus-sec__link:hover { color: var(--gold-light); border-color: var(--gold-light); }
.focus-sec__link:hover i { transform: translateX(3px); }

/* ═══════════════════════════════════════════════════════════
   BOOK RAIL — poster cards
   ═══════════════════════════════════════════════════════════ */
.book-rail { margin: 0 -7px; overflow: hidden; }
.book-rail .slick-list { overflow: hidden !important; margin: 0; }
.book-rail .slick-slide { padding: 0 7px; box-sizing: border-box; }
.book-rail .slick-track { display: flex !important; align-items: flex-start !important; }
.book-rail .slick-slide > div { width: 100%; }
.book-rail .slick-dots {
  display: flex !important; gap: 6px; list-style: none;
  justify-content: center; margin: 12px 0 0; padding: 0;
}
.book-rail .slick-dots li button {
  width: 6px; height: 6px; font-size: 0;
  border: 1px solid var(--border-md); border-radius: 50%;
  background: var(--border); cursor: pointer; transition: all .25s;
  padding: 0;
}
.book-rail .slick-dots li.slick-active button {
  width: 16px; border-radius: 9999px;
  background: var(--gold); border-color: var(--gold);
}
@media(max-width:480px) {
  .book-rail .slick-dots {
    gap: 6px;
    margin-top: 14px;
  }
  .book-rail .slick-dots li button {
    width: 13px;
    height: 4px;
    border: none;
    border-radius: 9999px;
    background: rgba(128, 128, 128, 0.28);
    background: color-mix(in srgb, var(--border) 72%, transparent);
  }
  .book-rail .slick-dots li.slick-active button {
    width: 24px;
    height: 4px;
    border-radius: 9999px;
    background: var(--gold);
  }
}
@media(max-width:520px) { .book-rail { margin: 0 -5px; } .book-rail .slick-slide { padding: 0 5px; } }
@media(max-width:480px) { .book-rail { margin: 0 -4px; } .book-rail .slick-slide { padding: 0 4px; } }
@media(max-width:400px) { .book-rail .slick-slide { padding: 0 3px; } }

/* Book card */
.fc {
  display: block; width: 100%;
  cursor: pointer;
  transition: transform .3s var(--ease);
}
.fc:hover { transform: translateY(-6px); }

.fc__cover {
  display: block; width: 100%;
  aspect-ratio: 2 / 3;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ph-bg);
  border: 1px solid var(--card-border);
  box-shadow: var(--card-shadow);
  position: relative;
  transition: box-shadow .3s var(--ease), border-color .3s;
}
.fc:hover .fc__cover {
  box-shadow: 0 16px 36px rgba(0,0,0,.22), var(--card-hover);
  border-color: var(--gold-border);
}
.fc__cover img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .4s var(--ease);
}
.fc:hover .fc__cover img { transform: scale(1.05); }

/* Placeholder */
.fc__ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: var(--ph-icon);
}

/* Hover overlay */
.fc__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(201,147,58,.8), rgba(0,0,0,.75));
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .25s;
  border-radius: var(--r-lg);
}
.fc:hover .fc__overlay { opacity: 1; }
.fc__overlay-pill {
  display: flex; align-items: center; gap: 6px;
  background: #fff; color: var(--text-invert);
  padding: 7px 14px; border-radius: var(--r-pill);
  font-family: var(--ff-head); font-size: 9px; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  transform: translateY(6px); transition: transform .25s var(--ease);
}
.fc:hover .fc__overlay-pill { transform: translateY(0); }
/* light theme: invert pill */
[data-theme="light"] .fc__overlay-pill { color: #1a1208; }

/* Badge */
.fc__badge {
  position: absolute; top: 8px; left: 8px;
  font-family: var(--ff-head); font-size: 8px; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 3px 9px; border-radius: var(--r-pill); z-index: 2;
}
.badge-hot  { background: #e85d3a; color: #fff; }
.badge-new  { background: var(--teal); color: var(--text-invert); }
.badge-pick { background: var(--gold); color: var(--text-invert); }
.badge-top  {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--text-invert);
  box-shadow: 0 2px 12px rgba(201, 147, 58, 0.35);
}

/* Text below cover */
.fc__title {
  margin-top: 11px;
  font-family: var(--ff-body); font-size: 13px; font-weight: 600;
  color: var(--text-primary); line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  transition: color .2s;
}
.fc:hover .fc__title { color: var(--gold); }

.fc__author {
  margin-top: 3px;
  font-size: 10.5px; color: var(--meta-color);
  font-style: italic; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.fc__price {
  margin-top: 7px;
  display: inline-flex; align-items: center;
  font-family: var(--ff-head); font-size: 10.5px; font-weight: 800;
  letter-spacing: .02em; color: var(--gold);
  background: var(--gold-pale); border: 1px solid var(--gold-border);
  padding: 3px 10px; border-radius: var(--r-pill);
}
.fc__rating {
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--ff-head); font-size: 10px; font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.02em;
}
.fc__rating i { font-size: 9px; opacity: 0.95; }
.fc__rating-n {
  font-weight: 600;
  font-size: 9.5px;
  color: var(--meta-color);
}
.fc__progress {
  margin-top: 7px;
  height: 3px; border-radius: 9999px;
  background: var(--border); overflow: hidden;
}
.fc__progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 9999px;
}
@media(max-width:768px) {
  .fc__title { font-size: 11.5px; margin-top: 7px; }
  .fc__author, .fc__price, .fc__rating { font-size: 10px; }
  .fc__rating-n { font-size: 9px; }
}
@media(max-width:480px) {
  .fc__title { font-size: 10px; margin-top: 6px; }
  .fc__author, .fc__price, .fc__rating { font-size: 9px; }
  .fc__badge { font-size: 7px; padding: 2px 6px; top: 6px; left: 6px; }
  .fc__progress { margin-top: 5px; }
}
@media(max-width:400px) {
  .fc__title { font-size: 9.5px; }
}

/* ═══════════════════════════════════════════════════════════
   HORIZONTAL SCROLL FOR MOBILE (no dots on continue reading)
   ═══════════════════════════════════════════════════════════ */
.continue-rail { margin: 0 -7px; overflow: hidden; }
.continue-rail .slick-list { overflow: hidden !important; margin: 0; }
.continue-rail .slick-slide { padding: 0 7px; }
.continue-rail .slick-track { display: flex !important; align-items: flex-start !important; }
.continue-rail .slick-slide > div { width: 100%; }

/* ═══════════════════════════════════════════════════════════
   COLLECTION SPOTLIGHT — full viewport width banner slideshow
   ═══════════════════════════════════════════════════════════ */
.spotlight-bleed {
  position: relative;
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-bottom: 44px;
}
.spotlight-strip {
  position: relative;
  width: 100%;
  border-radius: 0;
  overflow: hidden;
  border: none;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  box-shadow: none;
}
.spotlight-strip .slick-slide > div { position: relative; }
.spotlight-strip .slick-slide img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}
@media(max-width:768px) { .spotlight-strip .slick-slide img { height: 200px; } }
@media(max-width:480px) { .spotlight-strip .slick-slide img { height: 170px; } }
.spotlight-strip__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(95deg, rgba(10,6,2,.9) 0%, rgba(10,6,2,.55) 50%, rgba(10,6,2,.15) 100%);
  display: flex;
  align-items: center;
  padding: 0 clamp(14px, 4vw, 36px);
  pointer-events: none;
}
.spotlight-strip__overlay-inner {
  max-width: min(560px, 100%);
  pointer-events: auto;
}
.spotlight-strip__pill {
  font-family: var(--ff-head); font-size: 8px; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--text-invert); background: var(--gold);
  padding: 3px 10px; border-radius: var(--r-pill); margin-bottom: 8px;
  display: inline-block;
}
.spotlight-strip__title {
  font-family: var(--ff-display);
  font-size: clamp(17px, 2.6vw, 28px);
  font-weight: 400; color: #fff; line-height: 1.2; margin-bottom: 8px;
}
.spotlight-strip__sub {
  font-size: 12px; color: rgba(255,255,255,.72);
  line-height: 1.5; margin-bottom: 14px; max-width: 420px;
}
.spotlight-strip__btn {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--ff-head); font-size: 10px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  background: var(--gold); color: var(--text-invert);
  padding: 9px 18px; border-radius: var(--r-pill);
  transition: all .22s; text-decoration: none;
}
.spotlight-strip__btn:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: var(--shadow-gold); color: var(--text-invert); }
.spotlight-strip .slick-prev,
.spotlight-strip .slick-next {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.3);
  background: rgba(0,0,0,.4); color: #fff;
  z-index: 5; display: flex !important;
  align-items: center; justify-content: center;
  font-size: 12px; transition: all .22s;
  backdrop-filter: blur(6px);
}
.spotlight-strip .slick-prev { left: 16px; }
.spotlight-strip .slick-next { right: 16px; }
.spotlight-strip .slick-prev:hover,
.spotlight-strip .slick-next:hover { background: var(--gold); border-color: var(--gold); color: var(--text-invert); }
.spotlight-strip .slick-prev::before,
.spotlight-strip .slick-next::before { display: none; }
.spotlight-strip__dots {
  position: absolute; right: clamp(14px, 3vw, 28px); bottom: 16px; z-index: 10;
}
.spotlight-strip__dots .slick-dots {
  display: flex !important; gap: 6px; list-style: none; padding: 0; margin: 0;
}
.spotlight-strip__dots .slick-dots li button {
  width: 7px; height: 7px; padding: 0; font-size: 0;
  border-radius: 50%; border: 1px solid rgba(255,255,255,.45);
  background: rgba(255,255,255,.28); cursor: pointer; transition: all .28s;
}
.spotlight-strip__dots .slick-dots li.slick-active button {
  width: 18px; border-radius: 9999px;
  background: var(--gold); border-color: var(--gold);
}
@media(max-width:600px) {
  .spotlight-strip .slick-prev,
  .spotlight-strip .slick-next { display: none !important; }
}

/* ═══════════════════════════════════════════════════════════
   AUTHORS ROW
   ═══════════════════════════════════════════════════════════ */
.authors-row {
  display: flex; gap: 20px; overflow-x: auto;
  scrollbar-width: none; padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
}
.authors-row::-webkit-scrollbar { display: none; }
a.author-chip {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  flex-shrink: 0; width: 76px; text-align: center; cursor: pointer;
  transition: transform .25s var(--ease);
  text-decoration: none; color: inherit;
  scroll-snap-align: start;
}
a.author-chip:hover { transform: translateY(-3px); }
.author-chip__av {
  width: 64px; height: 64px; border-radius: 50%;
  border: 2px solid var(--border);
  overflow: hidden; position: relative;
  background: var(--ph-bg);
  transition: border-color .25s, box-shadow .25s;
}
.author-chip__av::after {
  content: ''; position: absolute; inset: -3px; border-radius: 50%;
  border: 2px solid transparent;
  background: linear-gradient(135deg, var(--gold), var(--teal)) border-box;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out; mask-composite: exclude;
  opacity: 0; transition: opacity .25s;
}
a.author-chip:hover .author-chip__av::after { opacity: 1; }
.author-chip__av img { width: 100%; height: 100%; object-fit: cover; }
.author-chip__av-ph {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 20px; background: var(--gold-pale);
}
.author-chip__name {
  font-family: var(--ff-head); font-size: 10px; font-weight: 700;
  color: var(--text-primary); line-height: 1.3;
  transition: color .2s;
  word-break: break-word;
}
a.author-chip:hover .author-chip__name { color: var(--gold); }
.author-chip__meta { font-size: 9.5px; color: var(--meta-color); }

/* ═══════════════════════════════════════════════════════════
   PUBLISHERS STRIP — mini marquee
   ═══════════════════════════════════════════════════════════ */
.pub-strip {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  background: var(--surface-1);
  padding: 16px 0;
  margin-bottom: 44px;
}
.pub-track {
  display: flex; gap: 18px;
  width: max-content;
  animation: pubMarquee 28s linear infinite;
}
.pub-track:hover { animation-play-state: paused; }
@keyframes pubMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.pub-chip {
  display: flex; align-items: center; gap: 9px;
  padding: 8px 18px;
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--r-pill); white-space: nowrap; cursor: pointer;
  transition: all .22s;
}
a.pub-chip { text-decoration: none; color: inherit; }
.pub-chip:hover { border-color: var(--gold-border); background: var(--gold-pale); }
.pub-chip__av {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--gold-pale); border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 11px; overflow: hidden; flex-shrink: 0;
}
.pub-chip__av img { width: 100%; height: 100%; object-fit: cover; }
.pub-chip__name { font-family: var(--ff-head); font-size: 10.5px; font-weight: 600; color: var(--text-body); }

/* ═══════════════════════════════════════════════════════════
   TESTIMONIAL ROW — compact horizontal
   ═══════════════════════════════════════════════════════════ */
.testi-scroll {
  display: flex; gap: 16px; overflow-x: auto;
  scrollbar-width: none; padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
}
.testi-scroll::-webkit-scrollbar { display: none; }
.testi-mini {
  flex-shrink: 0; width: 280px;
  background: var(--surface-1); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 20px 18px;
  transition: all .25s var(--ease);
  position: relative; overflow: hidden;
  scroll-snap-align: start;
}
@media(max-width:480px) {
  .testi-mini { width: 250px; padding: 18px 16px; }
}
.testi-mini::before {
  content: '\201C'; position: absolute; top: 4px; right: 14px;
  font-family: var(--ff-display); font-size: 80px; color: var(--gold);
  opacity: .06; line-height: 1; pointer-events: none;
}
.testi-mini:hover { border-color: var(--gold-border); box-shadow: var(--shadow-gold); transform: translateY(-3px); }
.testi-mini__stars { display: flex; gap: 2px; margin-bottom: 10px; }
.testi-mini__stars i { color: var(--gold); font-size: 9px; }
.testi-mini__text {
  font-family: var(--ff-display); font-size: 13.5px; font-style: italic;
  line-height: 1.75; color: var(--text-primary); margin-bottom: 14px;
  display: -webkit-box; -webkit-line-clamp: 4; line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}
.testi-mini__foot { display: flex; align-items: center; gap: 10px; }
.testi-mini__av {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid var(--gold-border); overflow: hidden; flex-shrink: 0;
  background: var(--gold-pale);
}
.testi-mini__av img { width: 100%; height: 100%; object-fit: cover; }
.testi-mini__av-ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 13px; }
.testi-mini__name { font-family: var(--ff-head); font-size: 11px; font-weight: 700; color: var(--text-primary); }
.testi-mini__role { font-size: 9.5px; color: var(--meta-color); margin-top: 1px; }

/* ═══════════════════════════════════════════════════════════
   QUOTE SPOTLIGHT — full-bleed, large-type daily quotes
   (inspirational "Daily Wisdom" + book-excerpt "From Our Books")
   ═══════════════════════════════════════════════════════════ */
.quote-spotlight {
  display: flex;
  justify-content: center;
  position: relative;
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-bottom: 36px;
  padding: 64px 24px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.quote-spotlight--wisdom {
  background: linear-gradient(135deg, var(--surface-2) 0%, var(--surface-3) 100%);
}
.quote-spotlight--book {
  background: linear-gradient(135deg, var(--gold-pale) 0%, var(--surface-2) 100%);
  cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
a.quote-spotlight--book:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,.12); }

.quote-spotlight__inner {
  position: relative;
  max-width: 820px;
  width: 100%;
  text-align: center;
}
.quote-spotlight__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-head); font-size: 11px; font-weight: 800;
  letter-spacing: .2em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 20px;
}
.quote-spotlight__mark {
  font-family: var(--ff-display);
  font-size: 84px; line-height: .5; color: var(--gold);
  opacity: .4; margin-bottom: 6px;
}
.quote-spotlight__text {
  font-family: var(--ff-display);
  font-size: clamp(22px, 3.6vw, 38px);
  font-weight: 400; font-style: italic;
  line-height: 1.45; color: var(--text-primary);
  margin-bottom: 28px;
  letter-spacing: -.01em;
}
.quote-spotlight__foot {
  display: flex; align-items: center; justify-content: center; gap: 16px;
}
.quote-spotlight__av {
  width: 68px; height: 68px; border-radius: 50%;
  border: 2px solid var(--gold-border); overflow: hidden; flex-shrink: 0;
  background: var(--gold-pale);
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.quote-spotlight__av--book { border-radius: var(--r-md); }
.quote-spotlight__av img { width: 100%; height: 100%; object-fit: cover; }
.quote-spotlight__av-ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 24px; }
.quote-spotlight__name {
  font-family: var(--ff-head); font-size: 15px; font-weight: 800;
  color: var(--text-primary); text-align: left;
}
.quote-spotlight__role {
  font-size: 12px; color: var(--meta-color); margin-top: 3px; text-align: left;
  display: flex; align-items: center; gap: 5px;
}
a.quote-spotlight--book:hover .quote-spotlight__role { color: var(--gold); }

@media(max-width:768px) {
  .quote-spotlight { padding: 44px 18px; }
  .quote-spotlight__mark { font-size: 60px; }
  .quote-spotlight__foot { flex-direction: column; text-align: center; }
  .quote-spotlight__name, .quote-spotlight__role { text-align: center; }
}

/* ═══════════════════════════════════════════════════════════
   BOTTOM SPACER
   ═══════════════════════════════════════════════════════════ */
.focus-footer-pad { padding-bottom: 48px; }

/* ── Scroll reveal ── */
.rv { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.rv.in { opacity: 1; transform: none; }
.rv.d1 { transition-delay: .06s; } .rv.d2 { transition-delay: .12s; } .rv.d3 { transition-delay: .18s; }

/* ═══════════════════════════════════════════════════════════
   IMMERSIVE HERO — edge-to-top under glass nav; copy above nav (desktop)
   ═══════════════════════════════════════════════════════════ */
body.page-home-hero-immersive {
  --home-announce-h: 43px;
  --home-header-h: 68px;
  --home-chrome-h: calc(var(--home-announce-h) + var(--home-header-h));
}
@media (max-width: 768px) {
  body.page-home-hero-immersive {
    --home-announce-h: 40px;
    --home-header-h: 60px;
  }
}

/* Pull hero under announcement + header; extend slide height */
body.page-home-hero-immersive .focus-hero {
  margin-top: calc(-1 * var(--home-chrome-h));
  position: relative;
  z-index: 0;
}
body.page-home-hero-immersive .focus-hero .slick-slide img {
  height: calc(420px + var(--home-chrome-h));
}
@media (max-width: 1024px) {
  body.page-home-hero-immersive .focus-hero .slick-slide img {
    height: calc(340px + var(--home-chrome-h));
  }
}
@media (max-width: 768px) {
  body.page-home-hero-immersive .focus-hero .slick-slide img {
    height: calc(230px + var(--home-chrome-h));
  }
}
@media (max-width: 480px) {
  body.page-home-hero-immersive .focus-hero .slick-slide img {
    height: calc(190px + var(--home-chrome-h));
  }
}

/* Stronger top read on headline when it meets the nav */
body.page-home-hero-immersive {
  --hero-overlay:
    linear-gradient(180deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.32) 22%, transparent 48%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.45) 55%, rgba(0, 0, 0, 0.08) 100%);
}
[data-theme="light"] body.page-home-hero-immersive {
  --hero-overlay:
    linear-gradient(180deg, rgba(10, 6, 2, 0.52) 0%, rgba(10, 6, 2, 0.28) 24%, transparent 50%),
    linear-gradient(90deg, rgba(10, 6, 2, 0.85) 0%, rgba(10, 6, 2, 0.48) 55%, rgba(10, 6, 2, 0.06) 100%);
}

/* Glass chrome over the hero */
body.page-home-hero-immersive .announce-bar {
  background: rgba(18, 21, 26, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}
[data-theme="light"] body.page-home-hero-immersive .announce-bar {
  background: rgba(252, 248, 242, 0.78);
  border-bottom-color: rgba(0, 0, 0, 0.08);
  color: rgba(26, 18, 8, 0.72);
}
body.page-home-hero-immersive .site-header {
  background: rgba(11, 13, 15, 0.4) !important;
  backdrop-filter: blur(20px) saturate(1.15);
  -webkit-backdrop-filter: blur(20px) saturate(1.15);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}
[data-theme="light"] body.page-home-hero-immersive .site-header {
  background: rgba(252, 248, 242, 0.52) !important;
  border-bottom-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}
[data-theme="light"] body.page-home-hero-immersive .site-header::before,
[data-theme="light"] body.page-home-hero-immersive .site-header::after {
  opacity: 0.25;
}

/* Immersive home: same bottom-left compact strip (no overlap into nav band) */
body.page-home-hero-immersive .focus-hero .fh-overlay {
  align-items: flex-end;
  justify-content: flex-start;
  padding-top: 0;
  pointer-events: none;
}
body.page-home-hero-immersive .focus-hero .fh-content {
  pointer-events: auto;
}

/* Keyboard focus — carousel controls */
.focus-hero .slick-dots li button:focus-visible,
.book-rail .slick-dots li button:focus-visible,
.spotlight-strip__dots .slick-dots li button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.focus-hero .slick-prev:focus-visible,
.focus-hero .slick-next:focus-visible,
.spotlight-strip .slick-prev:focus-visible,
.spotlight-strip .slick-next:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}