/* ==========================================================================
   DESIGN 33 - HOMEPAGE ART DIRECTION (css/home.css)
   Loaded ONLY from index.html. Page-specific editorial composition for the
   approved six-chapter homepage. Uses global design tokens (css/variables.css)
   and reuses the shared system (css/typography.css, css/components.css,
   css/sections.css, css/redesign.css). Everything else on the page is the
   existing Design 33 engine - header, footer, modal, scope form, JS.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Anchored scroll offset under the fixed site header
   -------------------------------------------------------------------------- */
#main-content section[id] { scroll-margin-top: 96px; }

.hm-hero,
.hm-chapter {
  scroll-snap-align: start;
}

/* --------------------------------------------------------------------------
   01 - HERO (editorial cover spread on eucalyptus night)
   -------------------------------------------------------------------------- */
.hm-hero {
  background: var(--bg-dark);
  color: var(--text-inverse);
  overflow: hidden;
  min-height: calc(100vh - 77px);
}

.hm-rail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem 2.5rem;
  flex-wrap: wrap;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
}
.hm-rail .mono { color: var(--text-inverse-muted); letter-spacing: var(--tracking-mono); }
.hm-rail .mono strong { color: var(--text-inverse); font-weight: 600; }

.hm-hero-main {
  padding: clamp(2.5rem, 4vw, 3rem) 0 clamp(2.5rem, 4vw, 3rem);
}

.hm-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: start;
}

.hm-hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 5.2vw, 4.7rem);
  line-height: 1.04;
  letter-spacing: var(--tracking-hero);
  color: var(--text-inverse);
  max-width: 15ch;
  text-wrap: balance;
}
.hm-hero-title em {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  color: var(--accent-terracotta-vivid);
  padding-right: 0.05em;
  letter-spacing: -0.015em;
}

.hm-hero-lead {
  margin-top: clamp(1.25rem, 2vw, 1.75rem);
  max-width: 520px;
  color: var(--text-inverse-muted);
}
.hm-hero-lead strong { color: var(--text-inverse); font-weight: 700; }

.hm-hero-actions {
  margin-top: clamp(1.5rem, 2.5vw, 2.25rem);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* --- Hero proof strip: the "why trust us / what we actually do" cue --------- */
.hm-hero-proof {
  margin-top: clamp(1.5rem, 2.5vw, 2.25rem);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 100%;
}
.hm-hero-proof span {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: var(--tracking-mono);
  text-transform: uppercase;
  color: var(--text-inverse-muted);
}
.hm-hero-proof strong { color: var(--text-inverse); font-weight: 600; }
.hm-hero-proof span + span {
  padding-left: 1.25rem;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

/* --- Hero link-quiet: visible on dark bg (zone-dark class absent) ---------- */
.hm-hero .link-quiet {
  color: var(--text-inverse);
  text-decoration-color: rgba(255, 255, 255, 0.3);
}
.hm-hero .link-quiet:hover {
  color: var(--accent-terracotta-vivid);
  text-decoration-color: var(--accent-terracotta-vivid);
}

/* --- Reserved image slots (art direction pending) ------------------------ */
.hm-hero-fig {
  margin: 0;
  filter: drop-shadow(0 0 40px rgba(201, 84, 42, 0.15)) drop-shadow(0 0 80px rgba(201, 84, 42, 0.08));
}

.hm-cta-fig {
  margin: clamp(3rem, 6vw, 5rem) 0 0;
}

.hm-img-slot {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 42px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 42px),
    var(--bg-dark-surface);
  border: 1px solid rgba(255, 255, 255, 0.14);
  overflow: hidden;
}
.hm-img-slot--landscape { aspect-ratio: 4 / 3; }
.hm-img-slot--wide { aspect-ratio: 16 / 9; }

.hm-img-slot__inner {
  position: absolute;
  inset: 12px;
  border: 1px dashed rgba(255, 255, 255, 0.22);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.25rem;
}

.hm-img-slot__lbl {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: var(--tracking-mono);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.hm-img-slot__lbl::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 1px solid var(--accent-terracotta-vivid);
  display: inline-block;
}

.hm-img-slot__num {
  position: absolute;
  right: 1rem;
  bottom: 0.4rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(4rem, 7vw, 6.5rem);
  line-height: 1;
  color: rgba(255, 255, 255, 0.07);
  user-select: none;
}

/* Ready state once an approved image is dropped into a slot */
.hm-img-slot__media {
  position: absolute;
  inset: 12px;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  object-fit: cover;
  display: none;
}
.hm-img-slot--filled .hm-img-slot__inner { display: none; }
.hm-img-slot--filled .hm-img-slot__num { display: none; }
.hm-img-slot--filled .hm-img-slot__media { display: block; inset: 0; width: 100%; height: 100%; }

.hm-hero-cap {
  margin-top: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: var(--tracking-mono);
  text-transform: uppercase;
  color: var(--text-inverse-muted);
}

/* --- Hero foot: chapter index running strip ------------------------------ */
.hm-hero-foot {
  background: var(--bg-dark);
  color: var(--text-inverse);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.1rem 0;
}
.hm-chapters-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0 2.25rem;
}
.hm-chapters-row a {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: var(--tracking-mono);
  text-transform: uppercase;
  color: var(--text-inverse-muted);
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  text-decoration: none;
  padding: 0.35rem 0;
  transition: color var(--transition-fast);
}
.hm-chapters-row a span { color: var(--accent-terracotta-vivid); font-size: 0.72rem; }
.hm-chapters-row a:hover { color: var(--text-inverse); }

/* --------------------------------------------------------------------------
   Chapters 02-06 (shared editorial composition)
   -------------------------------------------------------------------------- */
.hm-chapter {
  border-top: 1px solid var(--line-soft);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hm-chapter.zone-dark { border-top-color: rgba(255, 255, 255, 0.08); }

.hm-statement {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: var(--leading-section);
  letter-spacing: var(--tracking-section);
  color: var(--text-primary);
  max-width: 22ch;
  text-wrap: balance;
}
.hm-statement em {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  color: var(--accent-terracotta);
  padding-right: 0.05em;
  letter-spacing: -0.015em;
}
.zone-dark .hm-statement {
  color: var(--text-inverse);
}
.zone-dark .hm-statement em { color: var(--accent-terracotta-vivid); }

.hm-prose {
  margin-top: var(--space-lg);
  max-width: 62ch;
  color: var(--text-secondary);
}
.zone-dark .hm-prose { color: var(--text-inverse-muted); }

/* --- 02 chapter: pillar rail --------------------------------------------- */
.hm-pillar-strip {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.hm-pillar-strip span {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: var(--tracking-mono);
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 1.05rem clamp(1rem, 2vw, 1.75rem);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  white-space: nowrap;
}
.hm-pillar-strip span:not(:first-child) { border-left: 1px solid var(--border-subtle); }
.hm-pillar-strip b { color: var(--accent-terracotta); font-weight: 600; }

/* --- 03 chapter: discipline index rows ------------------------------------ */
.hm-disciplines {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}
.hm-d-row {
  display: grid;
  grid-template-columns: 3.5rem 11rem 1fr auto;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2rem);
  padding: clamp(1.25rem, 2.4vw, 1.75rem) 0;
  border-top: 1px solid var(--border-subtle);
  text-decoration: none;
  color: inherit;
  transition: padding-left var(--transition-smooth), background-color var(--transition-smooth);
}
.hm-d-row:last-child { border-bottom: 1px solid var(--border-subtle); }
.hm-d-row:hover { padding-left: clamp(0.5rem, 1.4vw, 1rem); }
.hm-d-row:focus-visible { outline: 2px solid var(--accent-terracotta); outline-offset: -2px; }

.hm-d-num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: var(--tracking-mono);
  color: var(--accent-terracotta);
}
.hm-d-name {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  font-weight: 700;
  letter-spacing: var(--tracking-sub);
  line-height: 1.1;
  color: var(--text-primary);
  text-wrap: balance;
}
.hm-d-line { font-size: 0.95rem; line-height: 1.55; color: var(--text-secondary); }

.hm-d-arr {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  color: var(--text-tertiary);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-full);
  width: 2.9rem;
  height: 2.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition-smooth), border-color var(--transition-smooth), color var(--transition-smooth), transform var(--transition-smooth);
}
.hm-d-row:hover .hm-d-arr {
  background: var(--accent-terracotta);
  border-color: var(--accent-terracotta);
  color: #fff;
  transform: rotate(45deg);
}

/* --- 04 chapter: why split grid + principles ------------------------------ */
.hm-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.hm-principles {
  margin-top: clamp(2rem, 3.5vw, 2.75rem);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.hm-principle {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: clamp(1rem, 2.5vw, 2rem);
  padding: clamp(1.1rem, 2vw, 1.4rem) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.hm-principle dt {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: var(--tracking-mono);
  color: var(--accent-terracotta-vivid);
  padding-top: 0.25rem;
}
.hm-principle dd {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.62;
  color: var(--text-inverse-muted);
}

/* --- 05 chapter: commercial clarity --------------------------------------- */
.hm-price-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: end;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.hm-price-big {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
}
.hm-price-from {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: var(--tracking-mono);
  text-transform: uppercase;
  color: var(--text-tertiary);
}
.hm-price-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(4.5rem, 12vw, 9rem);
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--text-primary);
}

.hm-build-list {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  max-width: 720px;
  border-top: 1px solid var(--border-subtle);
}
.hm-build-row {
  display: grid;
  grid-template-columns: minmax(150px, 1.2fr) minmax(100px, 0.9fr) 115px minmax(115px, 1fr);
  align-items: baseline;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: var(--tracking-snug);
  color: var(--text-secondary);
}
.hm-build-row strong {
  color: var(--text-primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}
.hm-build-badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  background: var(--accent-terracotta-vivid);
  color: #fff;
  line-height: 1.2;
}
.hm-build-scope {
  color: var(--text-tertiary);
}
.hm-build-price {
  text-align: left;
  font-weight: 700;
  color: var(--text-primary);
}
.hm-build-time {
  text-align: right;
  color: var(--text-tertiary);
}
.hm-build-row:hover strong { color: var(--accent-terracotta); }
.hm-build-row--featured {
  background: rgba(194, 83, 43, 0.04);
  padding: 0.9rem 0.6rem;
  margin: 0 -0.6rem;
  border-radius: 4px;
}

@media (max-width: 600px) {
  .hm-build-row {
    grid-template-columns: 1fr auto auto;
    gap: 0.75rem;
  }
  .hm-build-scope {
    display: none;
  }
  .hm-build-row--featured {
    margin: 0;
    padding: 0.9rem 0;
    background: transparent;
  }
}

/* --- 06 chapter: start a conversation ------------------------------------- */
.hm-convo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: end;
}

.hm-convo-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.03;
  letter-spacing: var(--tracking-hero);
  color: var(--text-inverse);
  max-width: 16ch;
  text-wrap: balance;
}
.hm-convo-title em {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  color: var(--accent-terracotta-vivid);
  padding-right: 0.05em;
  letter-spacing: -0.015em;
}

.hm-convo-meta {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

/* --------------------------------------------------------------------------
   Responsive: stack split layouts, keep editorial rhythm on phones
   -------------------------------------------------------------------------- */
@media (max-width: 960px) {
  .hm-hero-grid,
  .hm-split,
  .hm-price-grid,
  .hm-convo-grid { grid-template-columns: 1fr; }

  .hm-hero-fig { max-width: 460px; }
  .hm-img-slot { aspect-ratio: 4 / 3; }

  .hm-split > :first-child { order: 2; }
  .hm-split > :last-child { order: 1; }
  .hm-split img { display: block; }

  .hm-d-row { grid-template-columns: 3rem 1fr auto; }
  .hm-d-line { grid-column: 2 / 4; }

  .hm-hero-title { font-size: clamp(2.5rem, 10vw, 4rem); }
  .hm-price-num { font-size: clamp(3.75rem, 16vw, 6rem); }
}

/* --- Homepage-scoped CTA contrast (AA ≥ 4.5): darken terracotta on dark zones */
.hm-hero .btn-p,
.hm-chapter .btn-p {
  background: var(--accent-terracotta-hover);
}
.hm-hero .btn-p:hover,
.hm-chapter .btn-p:hover {
  background: #8E3510;
}

/* --- Secondary outline button (Meet the studio) ----------------------------- */
.hm-outline-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--accent-terracotta);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0.8rem 1.6rem;
  background: transparent;
  transition: background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.hm-outline-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--accent-terracotta);
}

/* --- Keyboard focus --------------------------------------- */
.hm-chapters-row a:focus-visible,
.hm-d-row:focus-visible,
.hm-outline-btn:focus-visible,
.link-quiet:focus-visible {
  outline: 2px solid var(--accent-terracotta-vivid);
  outline-offset: 2px;
}

@media (max-width: 560px) {
  .hm-rail { justify-content: center; }
  .hm-principle { grid-template-columns: 1fr; }
  .hm-d-arr { width: 2.4rem; height: 2.4rem; }
}

/* --------------------------------------------------------------------------
   01b - HERO full-bleed variant (homepage dusk cover)
   -------------------------------------------------------------------------- */
.hm-hero--fullbleed {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  min-height: calc(100svh - 77px);
  isolation: isolate;
}
.hm-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hm-hero-bg picture,
.hm-hero-bg img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 70% center;
}
.hm-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 85% 70% at 30% 48%, rgba(8, 10, 12, 0.68) 0%, rgba(8, 10, 12, 0.38) 48%, rgba(8, 10, 12, 0) 72%),
    linear-gradient(0deg, rgba(5, 7, 9, 0.72) 0, rgba(5, 7, 9, 0) 200px),
    linear-gradient(90deg, rgba(10, 12, 14, 0.92) 0%, rgba(10, 12, 14, 0.72) 38%, rgba(10, 12, 14, 0.32) 64%, rgba(10, 12, 14, 0.08) 100%),
    linear-gradient(0deg, rgba(10, 12, 14, 0.78) 0%, rgba(10, 12, 14, 0) 30%);
}
.hm-hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  gap: 0;
  padding-top: clamp(2rem, 4vh, 3.5rem);
  padding-bottom: clamp(1.5rem, 3vh, 2.5rem);
  max-width: 1240px;
  width: 100%;
}
.hm-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: #f5f2ec;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  background: rgba(10, 12, 14, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  margin: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}
.hm-hero-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent-terracotta-vivid);
  box-shadow: 0 0 10px rgba(255, 92, 26, 0.9);
  animation: studio-pulse 2.2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes studio-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(226, 114, 68, 0.7);
  }
  50% {
    transform: scale(1.18);
    opacity: 0.85;
    box-shadow: 0 0 0 6px rgba(226, 114, 68, 0);
  }
}
.hm-hero--fullbleed .hm-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: clamp(2rem, 3.5vw, 4rem);
  align-items: center;
  width: 100%;
}
.hm-hero--fullbleed .hm-hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.hm-hero--fullbleed .hm-hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.35rem, 3.8vw, 3.85rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  text-transform: none;
  color: #ffffff;
  margin: clamp(0.75rem, 1.5vh, 1.25rem) 0 0;
  max-width: 16ch;
  text-align: left;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}
.hm-hero--fullbleed .hm-hero-title > span {
  display: block;
}
.hm-hero--fullbleed .hm-hero-title .accent {
  color: #ffffff;
}
.hm-hero--fullbleed .hm-hero-title em {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  color: var(--accent-terracotta-vivid);
  letter-spacing: -0.02em;
  padding-right: 0.08em;
  text-shadow: 0 0 32px rgba(226, 114, 68, 0.35);
}
.hm-hero-sub {
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.62;
  color: rgba(243, 247, 244, 0.88);
  max-width: 52ch;
  margin: clamp(1rem, 2vh, 1.5rem) 0 0;
  text-align: left;
  text-wrap: balance;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
}
.hm-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  margin: clamp(1.25rem, 2.5vh, 1.85rem) 0 0;
}
.hm-hero-meta {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: clamp(2.5rem, 6vw, 6rem);
  margin: clamp(1.75rem, 3.5vh, 2.75rem) 0 0;
  padding-top: clamp(1rem, 2vh, 1.5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  width: 100%;
  max-width: 580px;
}
.hm-hero-meta > div {
  margin: 0;
  text-align: left;
}
.hm-hero-meta-label {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.hm-hero-meta-value {
  margin: 0.35rem 0 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 2.2vw, 2.1rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #ffffff;
  white-space: nowrap;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}
.hm-hero--fullbleed .hero-stage-col {
  position: relative;
  width: 100%;
}
.hm-hero--fullbleed .hero-stage-card {
  position: relative;
  background-color: #121C17;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px -15px rgba(0, 0, 0, 0.75), 0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.hm-hero--fullbleed .hero-stage-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 32px 80px -15px rgba(0, 0, 0, 0.85), 0 0 0 1px rgba(226, 114, 68, 0.35);
}
@media (max-width: 980px) {
  .hm-hero--fullbleed .hm-hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hm-hero--fullbleed .hm-hero-title {
    font-size: clamp(2.25rem, 5.5vw, 3.5rem);
  }
}
@media (max-width: 640px) {
  .hm-hero-bg img {
    object-position: 62% center;
  }
  .hm-hero-inner {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .hm-hero-sub {
    margin-top: 1rem;
  }
  .hm-hero-ctas {
    margin-top: 1.25rem;
  }
  .hm-hero-meta {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 1.75rem;
    padding-top: 1rem;
  }
  .hm-hero-meta-value {
    font-size: 1.45rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hm-hero,
  .hm-chapter,
  .hm-d-row,
  .hm-d-arr { transition: none !important; }
}