/* ==========================================================================
   eHive — Editorial Light homepage design system
   A fresh, light, premium aesthetic for the public marketing site.
   Shares primitive tokens with the member portal via tokens.css.
   ========================================================================== */

@import url("tokens.css");

:root {
  --h-cream: #f8f6f0;
  --h-cream-2: var(--eh-paper-100);
  --h-paper: var(--eh-paper);
  --h-navy: var(--eh-navy-950);
  --h-navy-2: var(--eh-navy-800);
  --h-ink: var(--eh-ink-900);
  --h-muted: var(--eh-ink-600);
  --h-muted-2: var(--eh-ink-400);
  --h-coral: var(--eh-coral-400);
  --h-coral-2: var(--eh-coral-400);
  --h-coral-soft: rgba(218, 58, 34, 0.1);
  --h-line: var(--eh-paper-200);
  --h-line-2: #d8d2c4;
  --h-shadow: 0 4px 24px rgba(15, 28, 58, 0.06);
  --h-shadow-lg: 0 20px 60px rgba(15, 28, 58, 0.1);
  --h-radius: 14px;
  --h-radius-sm: 10px;
  --h-max: 1200px;
  --h-pad: clamp(4.5rem, 9vw, 7rem);
  --h-ease: var(--eh-ease-out);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 200;
  background: var(--h-navy);
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 4px 0;
  font-weight: 700;
  font-size: 13px;
}

.skip:focus {
  left: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family:
    "Hanken Grotesk",
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  background: var(--h-cream);
  color: var(--h-navy);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  background: var(--h-coral);
  color: #fff;
}

.h-wrap {
  max-width: var(--h-max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

.h-narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

.h-section {
  padding: var(--h-pad) 0;
  position: relative;
}

.h-section.alt {
  background: var(--h-cream-2);
}

.h-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--h-coral);
  margin-bottom: 1rem;
  /* inline-flex (not flex) so the eyebrow honours its section's text-align:
     it centres inside centred sections (e.g. .h-cta-banner) and stays left
     in left-aligned ones, instead of always hugging the left edge. */
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  vertical-align: middle;
}

.h-eyebrow::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--h-coral);
  opacity: 0.6;
}

.h-h1 {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.h-h2 {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.h-h3 {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.h-lede {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--h-muted);
  max-width: 56ch;
}

.h-muted {
  color: var(--h-muted);
}

/* ---- buttons ---- */
.h-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: "Hanken Grotesk", system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  padding: 1rem 1.8rem;
  border-radius: 8px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.32s var(--h-ease);
  white-space: nowrap;
}

.h-btn:hover {
  transform: translateY(-2px) scale(1.02);
}

.h-btn:active {
  transform: translateY(0) scale(0.99);
}

.h-btn-primary {
  background: var(--h-coral);
  color: #fff;
  box-shadow: 0 12px 32px -10px rgba(218, 58, 34, 0.4);
  position: relative;
  overflow: hidden;
}

.h-btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.25) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.6s var(--h-ease);
}

.h-btn-primary:hover {
  background: var(--h-coral-2);
  box-shadow: 0 18px 44px -10px rgba(218, 58, 34, 0.55);
}

.h-btn-primary:hover::before {
  transform: translateX(100%);
}

.h-btn-secondary {
  background: var(--h-navy);
  color: #fff;
}

.h-btn-secondary:hover {
  background: var(--h-navy-2);
  box-shadow: 0 14px 36px -10px rgba(11, 21, 38, 0.35);
}

.h-btn-ghost {
  background: transparent;
  color: var(--h-navy);
  border-color: var(--h-line-2);
}

.h-btn-ghost:hover {
  border-color: var(--h-navy);
  background: rgba(11, 21, 38, 0.03);
  box-shadow: 0 8px 24px -8px rgba(11, 21, 38, 0.12);
}

.h-btn-sm {
  padding: 0.7rem 1.3rem;
  font-size: 0.85rem;
}

.h-arr {
  transition: transform 0.3s var(--h-ease);
}

.h-btn:hover .h-arr {
  transform: translateX(4px);
}

/* ---- nav ---- */
.h-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition:
    background 0.4s var(--h-ease),
    box-shadow 0.4s,
    border-color 0.4s;
  border-bottom: 1px solid transparent;
}

.h-nav.scrolled {
  background: rgba(248, 246, 240, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--h-line);
}

.h-nav nav {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.h-nav .brand img {
  height: 28px;
  width: auto;
}

.h-nav .nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.h-nav .nav-links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--h-navy);
  opacity: 0.82;
  transition:
    opacity 0.25s,
    color 0.25s;
  position: relative;
}

.h-nav .nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--h-coral);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--h-ease);
}

.h-nav .nav-links a:hover {
  opacity: 1;
  color: var(--h-coral);
}

.h-nav .nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.h-nav .nav-links a[aria-current="page"] {
  color: var(--h-coral);
  opacity: 1;
}

.h-nav .nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.h-nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 110;
}

.h-nav-toggle span {
  position: absolute;
  left: 10px;
  width: 24px;
  height: 2px;
  background: var(--h-navy);
  transition: all 0.4s var(--h-ease);
}

.h-nav-toggle span:nth-child(1) {
  top: 15px;
}

.h-nav-toggle span:nth-child(2) {
  top: 21px;
}

.h-nav-toggle span:nth-child(3) {
  top: 27px;
}

.menu-open .h-nav-toggle span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

.menu-open .h-nav-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .h-nav-toggle span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

@media (max-width: 900px) {
  .h-nav .nav-links {
    position: fixed;
    inset: 0;
    background: var(--h-cream);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    padding: 6rem 2rem;
    transform: translateX(100%);
    transition: transform 0.45s var(--h-ease);
  }

  .menu-open .h-nav .nav-links {
    transform: translateX(0);
  }

  .h-nav .nav-links li {
    width: 100%;
    border-bottom: 1px solid var(--h-line);
  }

  .h-nav .nav-links a,
  .h-nav .nav-links .h-btn {
    display: block;
    width: 100%;
    padding: 1.1rem 0;
    font-size: 1.25rem;
  }

  .h-nav .nav-links .h-btn {
    margin-top: 1rem;
    text-align: center;
  }

  .h-nav-toggle {
    display: inline-flex;
  }
}

/* ---- hero ---- */
.h-hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 10rem 0 5rem;
  background:
    radial-gradient(
      140% 120% at 85% 10%,
      rgba(218, 58, 34, 0.08) 0%,
      transparent 55%
    ),
    radial-gradient(
      120% 80% at 10% 90%,
      rgba(22, 38, 76, 0.04) 0%,
      transparent 50%
    ),
    var(--h-cream);
}

.h-hero-visual {
  position: relative;
  border-radius: var(--h-radius);
  overflow: hidden;
  box-shadow: var(--h-shadow-lg);
  transition:
    transform 0.8s var(--h-ease),
    box-shadow 0.8s var(--h-ease);
  transform: translate(var(--mouse-x, 0), var(--mouse-y, 0));
}

.h-hero-visual img {
  animation: hero-float 6s ease-in-out infinite;
}

@keyframes hero-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .h-hero-visual img {
    animation: none;
  }
}

.h-hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

@media (max-width: 920px) {
  .h-hero-grid {
    grid-template-columns: 1fr;
  }
}

.h-hero .h-lede {
  margin-top: 1.5rem;
}

.h-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.2rem;
}

.h-hero-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
  font-size: 0.86rem;
  color: var(--h-muted);
}

.h-hero-meta span:not(:last-child)::after {
  content: "•";
  margin-left: 1rem;
  color: var(--h-coral);
}

.h-hero-visual img {
  width: 100%;
  height: auto;
}

.h-hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--h-line);
  border: 1px solid var(--h-line);
  border-radius: var(--h-radius-sm);
  overflow: hidden;
  margin-top: 1.5rem;
}

.h-hero-stats .stat {
  background: var(--h-paper);
  padding: 1.2rem 1rem;
  text-align: center;
}

.h-hero-stats .stat b {
  display: block;
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  color: var(--h-coral);
  line-height: 1;
}

.h-hero-stats .stat span {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.78rem;
  color: var(--h-muted);
}

/* ---- trust bar ---- */
.h-trust {
  background: var(--h-cream-2);
  border-block: 1px solid var(--h-line);
  padding: 2.5rem 0;
}

.h-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 760px) {
  .h-trust-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.h-trust-item {
  text-align: center;
  padding: 1rem;
  border-radius: var(--h-radius-sm);
  transition:
    transform 0.35s var(--h-ease),
    background 0.35s var(--h-ease);
}

.h-trust-item:hover {
  transform: translateY(-4px);
  background: var(--h-paper);
}

.h-trust-item b {
  display: block;
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--h-navy);
}

.h-trust-item span {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.84rem;
  color: var(--h-muted);
}

/* ---- section head ---- */
.h-sec-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.h-sec-head p {
  max-width: 44ch;
  color: var(--h-muted);
}

/* ---- cards ---- */
.h-card {
  background: var(--h-paper);
  border: 1px solid var(--h-line);
  border-radius: var(--h-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition:
    transform 0.4s var(--h-ease),
    box-shadow 0.4s var(--h-ease),
    border-color 0.4s var(--h-ease);
}

.h-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--h-shadow-lg);
  border-color: var(--h-line-2);
}

.h-card:hover .h-card-link {
  color: var(--h-coral);
}

.h-card:hover .h-card-link .h-arr,
.h-card-link .h-arr {
  transition: transform 0.3s var(--h-ease);
}

.h-card:hover .h-card-link .h-arr {
  transform: translateX(5px);
}

.h-card-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 1.6rem;
}

.h-card-body p {
  flex: 1 1 auto;
}

.h-card-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: linear-gradient(135deg, var(--h-cream-2) 0%, var(--h-line) 100%);
}

.h-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--h-ease);
}

.h-card:hover .h-card-img img {
  transform: scale(1.05);
}

.h-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11, 21, 38, 0.55));
}

.h-card-tag {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 2;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(11, 21, 38, 0.65);
  padding: 0.35rem 0.7rem;
  border-radius: 4px;
}

.h-card-step {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--h-coral-2);
}

.h-card-body .kicker {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--h-coral);
  margin-bottom: 0.5rem;
}

.h-card-body p {
  color: var(--h-muted);
  margin: 0.7rem 0 1.2rem;
}

.h-card-link {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--h-coral);
}

/* ---- grids ---- */
.h-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.h-4col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.h-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 900px) {
  .h-3col {
    grid-template-columns: 1fr;
  }
  .h-4col {
    grid-template-columns: 1fr 1fr;
  }
  .h-2col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 560px) {
  .h-4col {
    grid-template-columns: 1fr;
  }
}

/* ---- steps ---- */
.h-step {
  background: var(--h-paper);
  border: 1px solid var(--h-line);
  border-radius: var(--h-radius-sm);
  padding: 1.8rem;
  transition:
    transform 0.35s var(--h-ease),
    box-shadow 0.35s var(--h-ease),
    border-color 0.35s var(--h-ease);
}

.h-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--h-shadow);
  border-color: var(--h-line-2);
}

.h-step .num {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--h-coral);
  line-height: 1;
  transition: transform 0.35s var(--h-ease);
}

.h-step:hover .num {
  transform: scale(1.1);
}

.h-step h3 {
  margin: 1rem 0 0.5rem;
}

.h-step p {
  color: var(--h-muted);
  font-size: 0.98rem;
}

/* ---- voices ---- */
.h-voice {
  background: var(--h-paper);
  border: 1px solid var(--h-line);
  border-radius: var(--h-radius);
  padding: 2rem;
  transition:
    transform 0.35s var(--h-ease),
    box-shadow 0.35s var(--h-ease);
}

.h-voice:hover {
  transform: translateY(-5px);
  box-shadow: var(--h-shadow);
}

.h-voice blockquote {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.h-voice p {
  margin-top: 1rem;
  color: var(--h-muted);
}

.h-voice .who {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.h-voice .av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--h-coral-soft);
  color: var(--h-coral);
  display: grid;
  place-items: center;
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  flex: none;
}

.h-voice .who b {
  display: block;
  font-weight: 700;
}

.h-voice .who span {
  font-size: 0.85rem;
  color: var(--h-muted-2);
}

/* ---- lead band ---- */
.h-lead {
  background: var(--h-navy);
  color: #fff;
}

.h-lead h2 {
  color: #fff;
}

.h-lead p {
  color: rgba(255, 255, 255, 0.75);
}

.h-lead-form {
  display: flex;
  gap: 0.7rem;
}

.h-lead-form input {
  flex: 1;
  min-width: 0;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font: inherit;
}

.h-lead-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.h-lead-form button {
  background: var(--h-coral);
  color: #fff;
  border: 0;
  border-radius: 8px;
  padding: 0 1.5rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.h-lead-form button:hover {
  background: var(--h-coral-2);
}

@media (max-width: 560px) {
  .h-lead-form {
    flex-direction: column;
  }
}

/* ---- faq ---- */
.h-faq details {
  border-bottom: 1px solid var(--h-line);
  padding: 1.4rem 0;
}

.h-faq summary {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--h-navy);
}

.h-faq summary::-webkit-details-marker {
  display: none;
}

.h-faq summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--h-coral);
  flex: none;
  font-weight: 400;
}

.h-faq details[open] summary::after {
  content: "−";
}

.h-faq details p {
  margin-top: 1rem;
  color: var(--h-muted);
  max-width: 72ch;
}

/* ---- legal pages ---- */
.h-legal-nav {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.92rem;
  font-weight: 600;
}

.h-legal-nav a {
  color: var(--h-muted);
  padding-bottom: 0.25rem;
  border-bottom: 2px solid transparent;
  transition:
    color 0.2s,
    border-color 0.2s;
}

.h-legal-nav a:hover {
  color: var(--h-coral);
}

.h-legal-nav a[aria-current="page"] {
  color: var(--h-coral);
  border-bottom-color: var(--h-coral);
}

.h-legal-body {
  margin-top: 2.5rem;
}

.h-legal-body h2 {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 2.2rem 0 1rem;
  color: var(--h-navy);
}

.h-legal-body h2:first-child {
  margin-top: 0;
}

.h-legal-body p,
.h-legal-body ul,
.h-legal-body ol {
  color: var(--h-muted);
  margin-bottom: 1rem;
}

.h-legal-body ul,
.h-legal-body ol {
  padding-left: 1.4rem;
}

.h-legal-body li {
  margin-bottom: 0.5rem;
}

.h-legal-body a {
  color: var(--h-coral);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.h-legal-body a:hover {
  color: var(--h-coral-2);
}

.h-legal-body .ph-block {
  background: var(--h-paper);
  border: 1px solid var(--h-line);
  border-radius: var(--h-radius-sm);
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.h-legal-body .ph-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--h-coral);
  margin-bottom: 0.5rem;
}

/* ---- error pages ---- */
.h-error {
  min-height: 80svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10rem 0 5rem;
  text-align: center;
  background:
    radial-gradient(
      120% 100% at 50% 0%,
      rgba(218, 58, 34, 0.06) 0%,
      transparent 50%
    ),
    var(--h-cream);
}

.h-error-code {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--h-coral);
  margin-bottom: 1rem;
}

.h-error h1 {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

/* ---- footer ---- */
.h-footer {
  background: var(--h-cream-2);
  border-top: 1px solid var(--h-line);
  padding: 4rem 0 2.5rem;
  color: var(--h-muted);
}

.h-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (max-width: 820px) {
  .h-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .h-footer-grid {
    grid-template-columns: 1fr;
  }
}

.h-footer h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--h-navy);
  margin-bottom: 1rem;
}

.h-footer a {
  display: block;
  color: var(--h-muted);
  padding: 0.25rem 0;
  transition: color 0.2s;
}

.h-footer a:hover {
  color: var(--h-coral);
}

.h-footer p {
  font-size: 0.95rem;
}

.h-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid var(--h-line);
  font-size: 0.86rem;
}

/* ---- sticky mobile cta ---- */
.h-sticky-cta {
  display: none;
}

@media (max-width: 760px) {
  .h-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    display: flex;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    background: rgba(248, 246, 240, 0.96);
    border-top: 1px solid var(--h-line);
    backdrop-filter: blur(12px);
  }

  .h-sticky-cta .h-btn {
    flex: 1;
  }

  body {
    padding-bottom: 76px;
  }
}

/* ---- reveals ---- */
.h-reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  transition:
    opacity 0.7s var(--h-ease),
    transform 0.7s var(--h-ease),
    filter 0.7s var(--h-ease);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}

.h-reveal.in {
  opacity: 1;
  transform: none;
}

body.loaded .h-reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .h-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---- chips ---- */
.h-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--h-line);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--h-navy);
  background: var(--h-paper);
}

/* ---- utils ---- */
.h-text-center {
  text-align: center;
}

.h-mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.h-mt-1 {
  margin-top: 1rem;
}

.h-mt-2 {
  margin-top: 2rem;
}

/* ==========================================================================
   Interior page components + legacy compatibility
   Used by book.html and the apps.js interactive layer.
   ========================================================================== */

/* ---- legacy variable aliases (apps.min.css expects these) ---- */
:root {
  --navy-950: var(--h-navy);
  --navy-900: var(--h-navy);
  --navy-800: var(--h-navy-2);
  --navy-700: #1e3157;
  --navy-600: #2a3e66;
  --gold-500: var(--h-coral);
  --gold-400: var(--h-coral-2);
  --gold-300: #f0a99b;
  --paper-50: var(--h-paper);
  --paper-100: var(--h-cream-2);
  --paper-200: var(--h-line);
  --ink-900: var(--h-ink);
  --ink-600: var(--h-muted);
  --mist-100: var(--h-cream);
  --mist-400: var(--h-muted-2);
  --line-dark: rgba(255, 255, 255, 0.12);
  --success: #2e7d5b;
  --error: #c0453b;
  --navy: var(--h-navy);
  --navy-2: var(--h-navy-2);
  --navy-3: var(--h-navy);
  --gold: var(--h-coral);
  --gold-2: var(--h-coral-2);
  --gold-soft: var(--h-coral-soft);
  --ivory: var(--h-cream);
  --ivory-2: var(--h-cream-2);
  --ink: var(--h-ink);
  --mut: var(--h-muted);
  --line-d: var(--line-dark);
  --line-l: var(--h-line);
  --font-display: "Archivo", system-ui, sans-serif;
  --font-body: "Hanken Grotesk", system-ui, sans-serif;
  --font-mono: "SF Mono", "Menlo", "Consolas", monospace;
  --sans: var(--font-body);
  --radius-sm: 6px;
  --radius: 8px;
  --radius-lg: 14px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(20, 19, 18, 0.05);
  --shadow-md: 0 8px 24px rgba(20, 19, 18, 0.1);
  --shadow-lg: 0 20px 52px rgba(20, 19, 18, 0.17);
  --ease: var(--h-ease);
  --dur-fast: 0.18s;
  --dur: 0.28s;
  --dur-slow: 0.42s;
}

/* ---- reveal animation used by app.js ---- */
.reveal {
  opacity: 0;
  transform: translateY(26px) scale(0.985);
  transition:
    opacity 0.7s var(--h-ease),
    transform 0.7s var(--h-ease);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---- legacy button classes (pathfinder result + injected sticky CTA) ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: "Hanken Grotesk", system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  padding: 1rem 1.8rem;
  border-radius: 8px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.32s var(--h-ease);
  white-space: nowrap;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--h-coral);
  color: #fff;
  box-shadow: 0 12px 32px -10px rgba(218, 58, 34, 0.4);
}

.btn-primary:hover {
  background: var(--h-coral-2);
  box-shadow: 0 16px 40px -10px rgba(218, 58, 34, 0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--h-navy);
  border-color: var(--h-line-2);
}

.btn-ghost:hover {
  border-color: var(--h-navy);
  background: rgba(11, 21, 38, 0.03);
}

.btn-sm {
  padding: 0.7rem 1.3rem;
  font-size: 0.85rem;
}

/* ---- JS-injected sticky mobile CTA ---- */
.sticky-cta-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: flex;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  background: rgba(248, 246, 240, 0.96);
  border-top: 1px solid var(--h-line);
  backdrop-filter: blur(12px);
}

.sticky-cta-bar .btn {
  flex: 1;
}

body.has-sticky-cta {
  padding-bottom: 76px;
}

/* On mobile the concierge FAB sat on top of the fixed CTA bar's right button;
   lift it clear of the bar, and let the two CTA buttons shrink to fit. */
@media (max-width: 760px) {
  body.has-sticky-cta .cg-fab {
    bottom: 6.75rem;
  }
  .sticky-cta-bar .btn {
    min-width: 0;
    padding-left: 0.7rem;
    padding-right: 0.7rem;
    font-size: 0.95rem;
    white-space: nowrap;
  }
}

@media (min-width: 761px) {
  .sticky-cta-bar {
    display: none;
  }

  body.has-sticky-cta {
    padding-bottom: 0;
  }
}

/* ---- interior page hero ---- */
.h-page-hero {
  min-height: 55svh;
  display: flex;
  align-items: center;
  padding: 10rem 0 4rem;
  background:
    radial-gradient(
      120% 100% at 80% 0%,
      rgba(218, 58, 34, 0.06) 0%,
      transparent 50%
    ),
    var(--h-cream);
  border-bottom: 1px solid var(--h-line);
}

.h-page-hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

@media (max-width: 920px) {
  .h-page-hero-grid {
    grid-template-columns: 1fr;
  }
}

.h-page-hero .h-eyebrow {
  margin-bottom: 0.8rem;
}

.h-page-hero h1 {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.h-page-hero h1 em {
  color: var(--h-coral);
  font-style: normal;
}

.h-page-hero .sub {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--h-muted);
  max-width: 56ch;
  margin-top: 1.2rem;
}

.h-page-hero .motif {
  width: 100%;
  height: auto;
  max-height: 180px;
}

/* ---- breadcrumbs ---- */
.h-crumbs {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--h-muted-2);
  margin-bottom: 1.5rem;
}

.h-crumbs a {
  color: var(--h-muted);
  transition: color 0.2s;
}

.h-crumbs a:hover {
  color: var(--h-coral);
}

.h-crumbs i {
  font-style: normal;
  color: var(--h-coral);
}

/* ---- legacy chip alias ---- */
.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--h-line);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--h-navy);
  background: var(--h-paper);
}

.c-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.6rem;
}

/* ---- forms ---- */
.h-label {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--h-navy);
}

.h-input,
.h-select,
.h-textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--h-line-2);
  border-radius: 10px;
  background: var(--h-paper);
  color: var(--h-navy);
  font: inherit;
  font-size: 1rem;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.h-input:focus,
.h-select:focus,
.h-textarea:focus {
  outline: none;
  border-color: var(--h-coral);
  box-shadow: 0 0 0 3px var(--h-coral-soft);
}

.h-input::placeholder,
.h-textarea::placeholder {
  color: var(--h-muted-2);
}

.h-input.err,
.h-textarea.err {
  border-color: var(--h-coral);
}

.h-err,
.err-msg {
  display: none;
  font-size: 0.82rem;
  color: var(--h-coral);
  font-weight: 500;
}

.h-err.on,
.err-msg.on {
  display: block;
}

/* ---- shared form card + grid (apply, enquiries, booking) ---- */
.wizard {
  background: var(--h-paper);
  border: 1px solid var(--h-line);
  border-radius: var(--h-radius);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--h-shadow);
}

.gs-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 640px) {
  .gs-fields {
    grid-template-columns: 1fr;
  }
}

.gs-fields .full {
  grid-column: 1 / -1;
}

/* ---- website enquiry forms (partner / franchise / contact) ---- */
.eh-enquiry {
  max-width: 760px;
  margin-top: 1.75rem;
}
.eh-enquiry textarea.gs-input {
  min-height: 120px;
  resize: vertical;
}
.gs-opt {
  color: var(--h-muted);
  font-weight: 400;
  font-size: 0.85em;
}
.gs-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.gs-alt {
  font-size: 0.9rem;
  color: var(--h-muted);
}
.gs-alt a,
.gs-err a {
  color: var(--h-coral);
  text-decoration: underline;
}
.gs-err {
  display: none;
  margin: 1rem 0 0;
  color: #b23a32;
  font-size: 0.9rem;
}
.gs-consent {
  margin: 0.9rem 0 0;
  font-size: 0.8rem;
  color: var(--h-muted);
  max-width: 60ch;
  line-height: 1.5;
}
.gs-consent a {
  color: var(--h-coral);
  text-decoration: underline;
}
.gs-ok {
  border: 1px solid var(--h-line);
  border-left: 3px solid var(--h-coral);
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
  margin-top: 1.75rem;
  max-width: 760px;
  background: var(--h-cream, #f8f6f0);
}
.gs-ok-title {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  margin: 0 0 0.5rem;
}
.eh-v2 .gs-ok {
  background: #fff;
}

/* ---- booking confirmation + notes ---- */
.gs-check {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--h-coral-soft);
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
}

.gs-sum {
  list-style: none;
  text-align: left;
  max-width: 420px;
  margin: 1.2rem auto;
  padding: 1.2rem;
  background: var(--h-cream-2);
  border: 1px solid var(--h-line);
  border-radius: var(--h-radius-sm);
}

.gs-sum li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--h-line);
  color: var(--h-muted);
  font-size: 0.95rem;
}

.gs-sum li:last-child {
  border-bottom: 0;
}

.gs-sum li b {
  color: var(--h-navy);
  display: inline-block;
  min-width: 120px;
}

.gs-err-note {
  display: none;
  max-width: 460px;
  margin: 1rem auto;
  padding: 1rem;
  background: rgba(218, 58, 34, 0.08);
  border: 1px solid rgba(218, 58, 34, 0.25);
  border-radius: 10px;
  color: var(--h-navy);
  font-size: 0.92rem;
}

.gs-err-note.show {
  display: block;
}

.gs-note {
  font-size: 0.85rem;
  color: var(--h-muted-2);
  margin-top: 1rem;
}
/* ---- right-rail cards ---- */
.h-rail-card {
  background: var(--h-paper);
  border: 1px solid var(--h-line);
  border-radius: var(--h-radius);
  padding: 1.6rem;
  box-shadow: var(--h-shadow);
  margin-bottom: 1.5rem;
}

.h-rail-card h3 {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.h-rail-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.h-rail-steps li {
  display: flex;
  gap: 0.9rem;
  font-size: 0.95rem;
  color: var(--h-muted);
  line-height: 1.55;
}

.rn {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  color: var(--h-coral);
  flex: none;
}

.h-rail-card p {
  color: var(--h-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.h-rail-card .doors {
  margin-top: 1rem;
}

/* ---- booking page ---- */
.bk-wrap {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 960px) {
  .bk-wrap {
    grid-template-columns: 1fr;
  }
}

.bk-side {
  background: var(--h-paper);
  border: 1px solid var(--h-line);
  border-radius: var(--h-radius);
  padding: 1.8rem;
  box-shadow: var(--h-shadow);
  position: sticky;
  top: 110px;
}

@media (max-width: 960px) {
  .bk-side {
    position: static;
  }
}

.bk-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--h-coral);
  margin-bottom: 0.5rem;
}

.bk-name {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  line-height: 1.1;
  margin-bottom: 0.8rem;
}

.bk-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  font-size: 0.92rem;
  color: var(--h-muted);
}

.bk-meta span {
  padding: 0.35rem 0.7rem;
  background: var(--h-cream-2);
  border-radius: 999px;
}

.bk-after h3 {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 0.8rem;
}

.bk-after ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.bk-after li {
  display: flex;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--h-muted);
  line-height: 1.5;
}

.bk-free {
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--h-line);
  font-size: 0.9rem;
  color: var(--h-muted-2);
}

.bk-card {
  background: var(--h-paper);
  border: 1px solid var(--h-line);
  border-radius: var(--h-radius);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--h-shadow);
}

.bk-step {
  margin-bottom: 2rem;
}

.bk-step h3 {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.sn {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 900;
  font-size: 1rem;
  color: var(--h-coral);
}

.day-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
}

@media (max-width: 640px) {
  .day-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
}

@media (max-width: 640px) {
  .slot-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.day,
.slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  padding: 0.75rem 0.4rem;
  border: 1.5px solid var(--h-line);
  border-radius: 10px;
  background: var(--h-paper);
  color: var(--h-navy);
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  min-height: 64px;
}

.day:hover:not(:disabled),
.slot:hover:not(:disabled) {
  border-color: var(--h-coral);
  background: var(--h-coral-soft);
}

.day.on,
.slot.on {
  border-color: var(--h-coral);
  background: var(--h-coral);
  color: #fff;
}

.day:disabled,
.slot:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  text-decoration: line-through;
}

.day .wk {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--h-muted-2);
  text-transform: uppercase;
}

.day.on .wk {
  color: rgba(255, 255, 255, 0.8);
}

.slot.taken {
  opacity: 0.45;
  text-decoration: line-through;
}

.bk-tz {
  margin-top: 0.8rem;
  font-size: 0.82rem;
  color: var(--h-muted-2);
  line-height: 1.5;
}

.bk-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.bk-fields .full {
  grid-column: 1 / -1;
}

@media (max-width: 640px) {
  .bk-fields {
    grid-template-columns: 1fr;
  }
}

.bk-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.bk-hint {
  font-size: 0.85rem;
  color: var(--h-muted-2);
}

.bk-done {
  text-align: center;
  padding: 1rem 0;
}

.bk-done h3 {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

.bk-done p {
  color: var(--h-muted);
  max-width: 48ch;
  margin: 0 auto 1.2rem;
}

.bk-again {
  background: none;
  border: 0;
  color: var(--h-coral);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  margin-top: 0.5rem;
}

.bk-again:hover {
  text-decoration: underline;
}

/* ---- compact footer newsletter form ---- */
.h-footer .h-lead-form {
  margin-top: 1rem;
}

.h-footer .h-lead-form input {
  border-color: var(--h-line-2);
  background: var(--h-paper);
  color: var(--h-navy);
}

.h-footer .h-lead-form input::placeholder {
  color: var(--h-muted-2);
}

/* ==========================================================================
   Circle page components (light editorial theme)
   ========================================================================== */

/* ---- hero rings ---- */
.h-page-hero .rings {
  width: 100%;
  max-width: 420px;
  height: auto;
  margin: 0 auto;
  display: block;
}

@media (max-width: 920px) {
  .h-page-hero .rings {
    max-width: 320px;
  }
}

/* ---- promise / manifesto band ---- */
.h-promise {
  background: var(--h-navy);
  color: #fff;
  padding: var(--h-pad) 0;
  text-align: center;
}

.h-promise blockquote {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.h-promise blockquote b {
  color: var(--h-coral-2);
  font-weight: 800;
}

.h-promise .attr {
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}

/* ---- who grid + fact card ---- */
.h-who-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 2.5rem;
}

@media (max-width: 900px) {
  .h-who-grid {
    grid-template-columns: 1fr;
  }
}

.h-who-copy p + p {
  margin-top: 1rem;
}

.h-fact-card {
  background: var(--h-paper);
  border: 1px solid var(--h-line);
  border-radius: var(--h-radius);
  padding: 1.8rem;
  box-shadow: var(--h-shadow);
  transition:
    transform 0.35s var(--h-ease),
    box-shadow 0.35s var(--h-ease),
    border-color 0.35s var(--h-ease);
}

.h-fact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--h-shadow-lg);
  border-color: var(--h-line-2);
}

.h-fact-card h3 {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--h-navy);
}

.h-fact-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.h-fact-card li {
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--h-line);
  font-size: 0.95rem;
  color: var(--h-muted);
  line-height: 1.5;
}

.h-fact-card li:last-child {
  border-bottom: 0;
}

.h-fact-card li b {
  display: block;
  color: var(--h-navy);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
}

.h-fact-card a {
  color: var(--h-coral);
  border-bottom: 1px solid rgba(218, 58, 34, 0.4);
  transition: border-color 0.2s;
}

.h-fact-card a:hover {
  border-bottom-color: var(--h-coral);
}

/* ---- image banner ---- */
.h-img-banner {
  position: relative;
  width: calc(100% - 2 * clamp(1rem, 5vw, 3rem));
  max-width: 820px;
  margin: 2rem auto;
  border-radius: var(--h-radius-lg);
  overflow: hidden;
  box-shadow: var(--h-shadow-lg);
  aspect-ratio: 16 / 9;
  max-height: min(180px, 26vh);
  transform: translateZ(0);
}

@media (min-width: 768px) {
  .h-img-banner {
    aspect-ratio: 21 / 9;
    max-height: min(200px, 24vh);
  }
}

.h-img-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.08);
  transition: transform 0.8s var(--h-ease);
  will-change: transform;
}

.h-img-banner:hover img,
.h-img-banner:focus-within img {
  transform: scale(1);
}

.h-img-banner .ib-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 30%,
    rgba(11, 21, 38, 0.65) 100%
  );
  opacity: 0.85;
  transition: opacity 0.5s var(--h-ease);
}

.h-img-banner:hover .ib-overlay,
.h-img-banner:focus-within .ib-overlay {
  opacity: 1;
}

.h-img-banner figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(1rem, 3vw, 1.6rem);
  color: #fff;
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(0.95rem, 1.6vw, 1.2rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  max-width: 620px;
  transform: translateY(0);
  transition: transform 0.5s var(--h-ease);
}

.h-img-banner:hover figcaption,
.h-img-banner:focus-within figcaption {
  transform: translateY(-4px);
}

/* subtle animated grain overlay on banners */
.h-img-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s var(--h-ease);
  mix-blend-mode: overlay;
}

.h-img-banner:hover::after {
  opacity: 1;
}

/* ---- tier cards ---- */
.h-tiers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (max-width: 1100px) {
  .h-tiers {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .h-tiers {
    grid-template-columns: 1fr;
  }
}

.h-tier {
  background: var(--h-paper);
  border: 1px solid var(--h-line);
  border-radius: var(--h-radius);
  padding: 1.8rem;
  box-shadow: var(--h-shadow);
  display: flex;
  flex-direction: column;
  position: relative;
  transition:
    transform 0.35s var(--h-ease),
    box-shadow 0.35s var(--h-ease),
    border-color 0.35s var(--h-ease);
}

.h-tier:hover {
  transform: translateY(-6px);
  box-shadow: var(--h-shadow-lg);
  border-color: var(--h-line-2);
}

.h-tier.reco {
  border-color: var(--h-coral);
  box-shadow:
    var(--h-shadow),
    0 0 0 1px var(--h-coral);
}

.h-tier.reco:hover {
  box-shadow:
    var(--h-shadow-lg),
    0 0 0 1px var(--h-coral);
}

.reco-tag {
  position: absolute;
  top: -0.7rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--h-coral);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  white-space: nowrap;
}

.t-no {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--h-coral);
  margin-bottom: 0.4rem;
}

.t-name {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 900;
  font-size: 1.7rem;
  color: var(--h-navy);
  line-height: 1.1;
  margin-bottom: 0.3rem;
}

.t-ident {
  color: var(--h-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.t-price {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--h-navy);
  margin-bottom: 1rem;
}

.t-per {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--h-muted-2);
}

.t-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
  flex: 1;
}

.t-list li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.95rem;
  color: var(--h-muted);
  line-height: 1.5;
}

.t-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--h-coral);
}

.t-give,
.t-cap {
  font-size: 0.88rem;
  color: var(--h-muted);
  padding: 0.8rem;
  background: var(--h-cream-2);
  border-radius: var(--h-radius-sm);
  margin-bottom: 1rem;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge--live {
  background: rgba(46, 125, 91, 0.1);
  color: #2e7d5b;
}

.badge--roadmap {
  background: rgba(218, 58, 34, 0.1);
  color: var(--h-coral);
}

.badge--invite {
  background: var(--h-navy);
  color: #fff;
}

.h-tier-note {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--h-muted-2);
  text-align: center;
}

/* ---- membership steps ---- */
.h-steps-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (max-width: 900px) {
  .h-steps-3 {
    grid-template-columns: 1fr;
  }
}

.h-step-card {
  background: var(--h-paper);
  border: 1px solid var(--h-line);
  border-radius: var(--h-radius-sm);
  padding: 1.8rem;
  transition:
    transform 0.35s var(--h-ease),
    box-shadow 0.35s var(--h-ease),
    border-color 0.35s var(--h-ease);
}

.h-step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--h-shadow);
  border-color: var(--h-line-2);
}

.h-step-card .num {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--h-coral);
  line-height: 1;
  display: block;
  margin-bottom: 1rem;
  transition: transform 0.35s var(--h-ease);
}

.h-step-card:hover .num {
  transform: scale(1.1);
}

.h-step-card h3 {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--h-navy);
}

.h-step-card p {
  color: var(--h-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* ---- access ladder ---- */
.h-access-strip {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--h-line);
}

.h-access-strip > h3 {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--h-navy);
  margin-bottom: 1.5rem;
  text-align: center;
}

.h-ladder {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.h-rung {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.2rem 1.5rem;
  background: var(--h-paper);
  border: 1px solid var(--h-line);
  border-radius: var(--h-radius-sm);
  transition:
    transform 0.3s var(--h-ease),
    box-shadow 0.3s var(--h-ease),
    border-color 0.3s var(--h-ease),
    background 0.3s var(--h-ease);
}

.h-rung:hover {
  transform: translateX(6px);
  box-shadow: var(--h-shadow);
}

.h-rung.pub {
  border-color: var(--h-line-2);
  background: transparent;
}

.h-rung.pub:hover {
  background: var(--h-paper);
}

.h-rung.apex {
  border-color: var(--h-navy);
  background: var(--h-navy);
  color: #fff;
}

@media (max-width: 760px) {
  .h-rung {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
}

.r-step {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--h-coral);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.h-rung.apex .r-step {
  color: var(--h-coral-2);
}

.h-rung h3 {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
  color: inherit;
}

.h-rung p {
  font-size: 0.95rem;
  color: var(--h-muted);
  line-height: 1.5;
}

.h-rung.apex p {
  color: rgba(255, 255, 255, 0.75);
}

.r-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--h-navy);
  white-space: nowrap;
}

.h-rung.apex .r-price {
  color: #fff;
}

.h-hscore {
  text-align: center;
  max-width: 72ch;
  margin: 0 auto;
  color: var(--h-muted);
  font-size: 0.98rem;
}

.h-hscore b {
  color: var(--h-navy);
}

.h-honest {
  margin-top: 3rem;
  padding: 1.5rem;
  background: var(--h-cream-2);
  border: 1px solid var(--h-line);
  border-radius: var(--h-radius-sm);
  text-align: center;
}

.h-honest h4 {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--h-navy);
  margin-bottom: 0.5rem;
}

.h-honest p {
  color: var(--h-muted);
  font-size: 0.95rem;
  max-width: 68ch;
  margin: 0 auto;
}

/* ---- hive score simulator ---- */
.h-sim {
  margin-top: 3.5rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: var(--h-paper);
  border: 1px solid var(--h-line);
  border-radius: var(--h-radius);
  box-shadow: var(--h-shadow);
}

.sim-head {
  text-align: center;
  margin-bottom: 2rem;
}

.sim-head h3 {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--h-navy);
  margin-bottom: 0.5rem;
}

.sim-head p {
  color: var(--h-muted);
  max-width: 56ch;
  margin: 0 auto;
}

.h-sim-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 2rem;
}

@media (max-width: 760px) {
  .h-sim-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.sim-ringwrap {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 0 auto;
}

.sim-ring {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.sim-track {
  fill: none;
  stroke: var(--h-line-2);
  stroke-width: 8;
}

.sim-arc {
  fill: none;
  stroke: var(--h-coral);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 327;
  stroke-dashoffset: 327;
  transition: stroke-dashoffset 0.6s var(--h-ease);
}

.sim-score {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.sim-score b {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 900;
  font-size: 3rem;
  color: var(--h-navy);
  line-height: 1;
}

.sim-score span {
  font-size: 0.8rem;
  color: var(--h-muted);
  margin-top: 0.25rem;
}

.sim-unlock {
  text-align: center;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--h-muted);
  min-height: 1.5em;
}

.h-sim-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.sim-act {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 1.2rem;
  background: var(--h-cream);
  border: 1px solid var(--h-line);
  border-radius: var(--h-radius-sm);
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
  font: inherit;
  color: var(--h-navy);
}

.sim-act:hover {
  border-color: var(--h-coral);
  background: var(--h-coral-soft);
}

.sim-act b {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--h-coral);
}

.sim-act span {
  font-size: 0.92rem;
  font-weight: 600;
}

.sim-reset {
  grid-column: 1 / -1;
  padding: 0.85rem;
  background: transparent;
  border: 1px solid var(--h-line-2);
  border-radius: var(--h-radius-sm);
  color: var(--h-muted);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.sim-reset:hover {
  border-color: var(--h-navy);
  color: var(--h-navy);
}

.h-sim-miles {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

@media (max-width: 760px) {
  .h-sim-miles {
    grid-template-columns: repeat(2, 1fr);
  }
}

.h-sim-miles li {
  text-align: center;
  padding: 1rem;
  background: var(--h-cream-2);
  border-radius: var(--h-radius-sm);
  opacity: 0.55;
  transition: all 0.3s;
}

.h-sim-miles li.on,
.h-sim-miles li.hit {
  opacity: 1;
  background: var(--h-coral-soft);
  color: var(--h-navy);
}

.h-sim-miles li b {
  display: block;
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--h-coral);
  margin-bottom: 0.2rem;
}

.h-sim-miles li span {
  font-size: 0.82rem;
  color: var(--h-muted);
}

/* ---- event grid ---- */
.h-ev-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (max-width: 900px) {
  .h-ev-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .h-ev-grid {
    grid-template-columns: 1fr;
  }
}

.h-ev {
  background: var(--h-paper);
  border: 1px solid var(--h-line);
  border-radius: var(--h-radius-sm);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.35s var(--h-ease),
    box-shadow 0.35s var(--h-ease),
    border-color 0.35s var(--h-ease);
}

.h-ev:hover {
  transform: translateY(-5px);
  box-shadow: var(--h-shadow);
  border-color: var(--h-line-2);
}

.h-ev h3 {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--h-navy);
}

.h-ev p {
  color: var(--h-muted);
  font-size: 0.95rem;
  line-height: 1.55;
  flex: 1;
  margin-bottom: 1rem;
}

.ev-tag {
  align-self: flex-start;
  padding: 0.35rem 0.7rem;
  background: var(--h-cream-2);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--h-navy);
}

.h-chapter-note {
  margin-top: 2rem;
  text-align: center;
  color: var(--h-muted);
  font-size: 0.95rem;
  max-width: 76ch;
  margin-left: auto;
  margin-right: auto;
}

.h-chapter-note b {
  color: var(--h-navy);
}

/* ---- navy band ---- */
.h-navy-band {
  background: var(--h-navy);
  color: #fff;
}

.h-navy-band .h-h2,
.h-navy-band .h-h3,
.h-navy-band h2,
.h-navy-band h3 {
  color: #fff;
}

.h-navy-band .h-lede,
.h-navy-band p {
  color: rgba(255, 255, 255, 0.75);
}

.h-navy-band .h-eyebrow {
  color: var(--h-coral-2);
}

.h-navy-band .h-eyebrow::before {
  background: var(--h-coral-2);
}

/* ---- founding cohort ---- */
.h-founding-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 900px) {
  .h-founding-grid {
    grid-template-columns: 1fr;
  }
}

.h-founding-list {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.h-founding-list li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.h-founding-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--h-coral-2);
  font-weight: 700;
}

.h-count-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--h-radius);
  padding: 2rem;
  text-align: center;
}

.h-count-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.5rem;
}

.h-count-date {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #fff;
  margin-bottom: 1.2rem;
}

.h-count-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.h-count-cell {
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--h-radius-sm);
  padding: 1rem 0.5rem;
}

.h-count-cell b {
  display: block;
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--h-coral-2);
  line-height: 1;
}

.h-count-cell span {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.65);
}

.h-count-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ---- quote cards ---- */
.h-quote-card {
  background: var(--h-paper);
  border: 1px solid var(--h-line);
  border-radius: var(--h-radius);
  padding: 2rem;
  margin-top: 1.5rem;
}

.h-quote-card blockquote {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--h-navy);
  margin-bottom: 1.2rem;
}

.h-quote-card.ph blockquote {
  color: var(--h-muted);
}

.h-quote-card figcaption {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.h-quote-card .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--h-coral-soft);
  color: var(--h-coral);
  display: grid;
  place-items: center;
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  flex: none;
}

.h-quote-card figcaption b {
  display: block;
  font-weight: 700;
  color: var(--h-navy);
}

.h-quote-card figcaption span {
  font-size: 0.85rem;
  color: var(--h-muted-2);
}

/* ---- final cta banner ---- */
.h-cta-banner {
  background: var(--h-navy);
  color: #fff;
  text-align: center;
}

.h-cta-banner .h-h2,
.h-cta-banner h2 {
  color: #fff;
}

.h-cta-banner .h-lede {
  color: rgba(255, 255, 255, 0.75);
}

.h-cta-banner .doors {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.h-cta-banner .fine {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ---- ghost button on dark backgrounds ---- */
.h-btn.h-btn-ghost.h-btn-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.h-btn.h-btn-ghost.h-btn-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
}

/* ==========================================================================
   Consulting page components (light editorial theme)
   ========================================================================== */

/* ---- free assessment cards ---- */
.h-assess-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (max-width: 760px) {
  .h-assess-grid {
    grid-template-columns: 1fr;
  }
}

.h-assess-card {
  background: var(--h-paper);
  border: 1px solid var(--h-line);
  border-radius: var(--h-radius);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--h-shadow);
  transition:
    transform 0.35s var(--h-ease),
    box-shadow 0.35s var(--h-ease),
    border-color 0.35s var(--h-ease);
}

.h-assess-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--h-shadow-lg);
  border-color: var(--h-line-2);
}

.h-assess-card h3 {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--h-navy);
}

.h-assess-card p {
  color: var(--h-muted);
  font-size: 0.98rem;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1.2rem;
}

/* ---- method strip ---- */
.h-method {
  background: var(--h-cream-2);
  border-block: 1px solid var(--h-line);
}

.h-method .h-wrap {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-block: 2.6rem;
}

.h-method p {
  font-family: "Archivo", system-ui, sans-serif;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.55;
  color: var(--h-navy);
}

.h-method p b {
  color: var(--h-coral);
  font-weight: 800;
}

@media (max-width: 760px) {
  .h-method .h-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }
}

/* ---- products ---- */
.h-products-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.h-products-note {
  font-size: 0.95rem;
  color: var(--h-muted);
  max-width: 34ch;
}

.plist {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.h-ladder-viz {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

.h-ladder-viz .lv {
  border: 1px solid var(--h-line-2);
  border-radius: 999px;
  padding: 0.42rem 0.85rem;
  font-size: 0.78rem;
  color: var(--h-navy);
  background: var(--h-paper);
  white-space: nowrap;
}

.h-ladder-viz .lv b {
  color: var(--h-coral);
  font-weight: 700;
  margin-left: 0.35rem;
}

.h-ladder-viz .lv-arr {
  color: var(--h-muted-2);
  font-size: 0.8rem;
}

.h-product {
  position: relative;
  display: grid;
  grid-template-columns: 90px 1fr 300px;
  gap: 2.2rem;
  background: var(--h-paper);
  border: 1px solid var(--h-line);
  border-radius: var(--h-radius-sm);
  padding: 2.2rem;
  transition:
    transform 0.5s var(--h-ease),
    box-shadow 0.5s,
    border-color 0.5s;
}

.h-product:hover {
  transform: translateY(-5px);
  border-color: rgba(218, 58, 34, 0.4);
  box-shadow: var(--h-shadow-lg);
}

.h-product:hover .h-p-num {
  background: var(--h-coral-soft);
  box-shadow: 0 0 0 7px rgba(218, 58, 34, 0.08);
}

@media (max-width: 980px) {
  .h-product {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
}

.h-p-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

@media (max-width: 980px) {
  .h-p-node {
    flex-direction: row;
    align-items: center;
  }
}

.h-p-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--h-paper);
  border: 1px solid rgba(218, 58, 34, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Archivo", system-ui, sans-serif;
  color: var(--h-coral);
  font-size: 1.05rem;
  transition:
    background 0.4s,
    box-shadow 0.4s;
}

.h-p-format {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--h-muted);
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 980px) {
  .h-p-format {
    text-align: left;
  }
}

.h-p-body h3 {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.3rem;
  color: var(--h-navy);
}

.h-p-tag {
  font-family: "Archivo", system-ui, sans-serif;
  font-style: italic;
  color: var(--h-coral-2);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.h-p-desc {
  color: var(--h-muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 56ch;
}

.h-p-best {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--h-navy);
}

.h-p-best b {
  color: var(--h-coral);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.72rem;
  margin-right: 0.5rem;
}

.h-p-side {
  border-left: 1px solid var(--h-line);
  padding-left: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.h-p-side .h-btn {
  justify-content: center;
  margin-top: 0.4rem;
}

.h-p-side .h-talk {
  color: var(--h-muted);
  font-size: 0.8rem;
  text-align: center;
  margin-top: -0.2rem;
}

@media (max-width: 980px) {
  .h-p-side {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid var(--h-line);
    padding-top: 1.6rem;
  }
}

.h-p-price {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--h-navy);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.h-p-price small {
  display: block;
  font-family: "Hanken Grotesk", system-ui, sans-serif;
  font-size: 0.78rem;
  color: var(--h-muted);
  margin-top: 0.35rem;
  letter-spacing: 0.02em;
}

.h-price-why {
  margin-top: 1rem;
  border-top: 1px dashed var(--h-line-2);
  padding-top: 0.9rem;
}

.h-price-why summary {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--h-muted);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.h-price-why summary::-webkit-details-marker {
  display: none;
}

.h-price-why summary::before {
  content: "+";
  font-family: "SF Mono", "Menlo", "Consolas", monospace;
  color: var(--h-coral);
  font-size: 0.95rem;
  transition: transform 0.2s;
}

.h-price-why[open] summary::before {
  transform: rotate(45deg);
}

.h-price-why p {
  font-size: 0.86rem;
  color: var(--h-muted);
  line-height: 1.6;
  margin: 0.7rem 0 0;
}

.h-p-explore {
  margin-top: auto;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--h-navy);
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  transition: color 0.3s;
}

.h-p-explore .arr {
  color: var(--h-coral);
  transition: transform 0.38s var(--h-ease);
}

.h-p-explore:hover {
  color: var(--h-coral);
}

.h-p-explore:hover .arr {
  transform: translateX(5px);
}

/* ---- fit selector (JS-critical classes) ---- */
.selector {
  border: 1px solid var(--h-line);
  border-radius: var(--h-radius);
  background: var(--h-paper);
  padding: clamp(1.8rem, 4vw, 3rem);
  box-shadow: var(--h-shadow);
}

.sel-q {
  margin-bottom: 1.8rem;
}

.sel-q .sel-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--h-muted);
  margin-bottom: 0.9rem;
  display: block;
}

.sel-opts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.sel-opt {
  border: 1px solid var(--h-line-2);
  background: var(--h-paper);
  color: var(--h-navy);
  border-radius: 999px;
  padding: 0.62rem 1.15rem;
  font-size: 0.9rem;
  font-family: "Hanken Grotesk", system-ui, sans-serif;
  cursor: pointer;
  transition: all 0.18s var(--h-ease);
  min-height: 44px;
}

.sel-opt:hover {
  border-color: var(--h-coral);
}

.sel-opt[aria-pressed="true"] {
  background: var(--h-navy);
  color: #fff;
  border-color: var(--h-navy);
}

.sel-result {
  margin-top: 2rem;
  border-top: 1px solid var(--h-line);
  padding-top: 1.8rem;
  display: none;
}

.sel-result.show {
  display: block;
}

.sr-kicker {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--h-muted-2);
  margin-bottom: 0.6rem;
}

.sel-result h3 {
  font-family: "Archivo", system-ui, sans-serif;
  font-size: 1.5rem;
  color: var(--h-navy);
  margin: 0 0 0.5rem;
}

.sr-price {
  font-family: "SF Mono", "Menlo", "Consolas", monospace;
  color: var(--h-coral);
  font-size: 0.9rem;
  margin: 0 0 0.6rem;
}

.sr-why {
  color: var(--h-muted);
  font-size: 0.96rem;
  line-height: 1.65;
  max-width: 56ch;
  margin: 0 0 1.2rem;
}

/* ---- CTA rule ---- */
.h-cta-rule {
  margin: 2.6rem auto 0;
  border-left: 2px solid var(--h-coral);
  padding: 0.2rem 0 0.2rem 1.3rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 60ch;
  text-align: left;
}

.h-cta-rule b {
  color: #fff;
}

/* ==========================================================================
   Business setup page (light editorial theme)
   ========================================================================== */

.bs-page .h-page-hero,
.bs-page .h-cta-banner {
  position: relative;
  overflow: hidden;
}

.bs-page .lattice-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.32;
  pointer-events: none;
  z-index: 0;
  animation: lattice-pulse 12s ease-in-out infinite;
}

@keyframes lattice-pulse {
  0%,
  100% {
    opacity: 0.26;
  }

  50% {
    opacity: 0.4;
  }
}

.bs-page .h-cta-banner .h-eyebrow {
  color: var(--h-coral-2);
}

.bs-page .h-cta-banner .h-eyebrow::before {
  background: var(--h-coral-2);
}

/* ---- trust bar note ---- */
.bs-trust-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--h-muted);
  margin-top: 1.4rem;
}

/* ---- transparency ---- */
.bs-partner-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 2.2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--h-line);
}

.bs-partner-mark .dot {
  width: 10px;
  height: 10px;
  background: var(--h-coral);
  transform: rotate(45deg);
  flex: none;
}

.bs-partner-mark span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--h-muted);
}

/* ---- path cards ---- */
.bs-paths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 2.5rem;
}

@media (max-width: 900px) {
  .bs-paths-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-inline: auto;
  }
}

.bs-path-card {
  background: var(--h-paper);
  border: 1px solid var(--h-line);
  border-radius: var(--h-radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.5s var(--h-ease),
    box-shadow 0.5s,
    border-color 0.5s;
}

.bs-path-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--h-coral), var(--h-coral-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.55s var(--h-ease);
}

.bs-path-card:hover {
  transform: translateY(-6px);
  border-color: rgba(218, 58, 34, 0.4);
  box-shadow: var(--h-shadow-lg);
}

.bs-path-card:hover::before {
  transform: scaleX(1);
}

.bs-path-card h3 {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--h-navy);
}

.bs-path-card p {
  color: var(--h-muted);
  font-size: 0.98rem;
  line-height: 1.6;
  flex: 1;
}

.bs-path-card .go {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--h-coral);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: auto;
}

.bs-path-card .go .arr {
  transition: transform 0.38s var(--h-ease);
}

.bs-path-card:hover .go .arr {
  transform: translateX(5px);
}

/* ---- decision tracks ---- */
.bs-decision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  margin-top: 2.5rem;
}

@media (max-width: 900px) {
  .bs-decision-grid {
    grid-template-columns: 1fr;
  }
}

.bs-track {
  background: var(--h-paper);
  border: 1px solid var(--h-line);
  border-radius: var(--h-radius);
  padding: 2.2rem;
  position: relative;
  overflow: hidden;
}

.bs-track::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--h-coral), var(--h-coral-2));
}

.bs-track .tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--h-coral);
  margin-bottom: 1.2rem;
  display: block;
}

.bs-track h3 {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--h-navy);
  margin-bottom: 0.4rem;
}

.bs-track .tline {
  font-family: "Archivo", system-ui, sans-serif;
  font-style: italic;
  color: var(--h-coral-2);
  font-size: 1.05rem;
  margin-bottom: 1.4rem;
}

.bs-track ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1.6rem;
}

.bs-track li {
  color: var(--h-muted);
  font-size: 0.98rem;
  line-height: 1.55;
  padding-left: 1.2rem;
  position: relative;
}

.bs-track li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--h-coral);
}

.bs-track .more {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--h-navy);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.bs-track .more .arr {
  color: var(--h-coral);
  transition: transform 0.38s var(--h-ease);
}

.bs-track:hover .more .arr {
  transform: translateX(5px);
}

.bs-track .pending {
  font-size: 0.82rem;
  color: var(--h-muted-2);
  border-top: 1px dashed var(--h-line-2);
  padding-top: 1rem;
  margin: 0;
}

/* ---- comparison table ---- */
.bs-compare {
  margin-top: 3rem;
  overflow-x: auto;
}

.bs-compare h3 {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--h-navy);
  margin-bottom: 1.2rem;
}

.bs-compare table.cmp {
  width: 100%;
  border-collapse: collapse;
  background: var(--h-paper);
  border: 1px solid var(--h-line);
  min-width: 640px;
}

.bs-compare .cmp th,
.bs-compare .cmp td {
  padding: 1rem 1.2rem;
  text-align: left;
  border-bottom: 1px solid var(--h-line);
  font-size: 0.97rem;
  vertical-align: top;
}

.bs-compare .cmp thead th {
  background: var(--h-navy);
  color: #fff;
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 700;
  font-size: 1rem;
}

.bs-compare .cmp thead th:first-child {
  width: 24%;
}

.bs-compare .cmp tbody th {
  font-weight: 700;
  color: var(--h-navy);
}

.bs-compare .cmp td {
  color: var(--h-muted);
}

.bs-compare .cmp tbody tr:last-child th,
.bs-compare .cmp tbody tr:last-child td {
  border-bottom: 0;
}

.bs-compare .cmp tbody tr:hover {
  background: rgba(218, 58, 34, 0.04);
}

/* ---- calculator ---- */
.bs-calc-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

@media (max-width: 900px) {
  .bs-calc-grid {
    grid-template-columns: 1fr;
  }
}

.bs-calc-form {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin-top: 2rem;
}

.bs-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.bs-page .seg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}

.bs-page .seg button {
  background: var(--h-paper);
  border: 1px solid var(--h-line-2);
  color: var(--h-navy);
  font-family: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.85rem 0.5rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s var(--h-ease);
}

.bs-page .seg button:hover {
  border-color: var(--h-coral);
  color: var(--h-coral);
}

.bs-page .seg button.on {
  background: var(--h-coral);
  border-color: var(--h-coral);
  color: #fff;
}

.bs-page .visa-row {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.bs-page .visa-row input[type="range"] {
  flex: 1;
  appearance: none;
  height: 4px;
  background: var(--h-line-2);
  border-radius: 4px;
  cursor: pointer;
}

.bs-page .visa-row input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--h-coral);
  border: 3px solid var(--h-paper);
  box-shadow: 0 0 0 1px var(--h-coral);
}

.bs-page .visa-row input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--h-coral);
  border: 3px solid var(--h-paper);
}

.bs-page .visa-count {
  font-family: "Archivo", system-ui, sans-serif;
  font-size: 1.6rem;
  color: var(--h-coral);
  min-width: 2.4rem;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.bs-page .calc-out {
  border: 1px solid var(--h-line);
  border-radius: var(--h-radius);
  background: var(--h-paper);
  padding: clamp(1.8rem, 3.5vw, 2.6rem);
  position: sticky;
  top: 110px;
  box-shadow: var(--h-shadow);
}

@media (max-width: 900px) {
  .bs-page .calc-out {
    position: static;
  }
}

.bs-page .co-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--h-muted-2);
  margin-bottom: 0.8rem;
}

.bs-page .co-amount {
  font-family: "Archivo", system-ui, sans-serif;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  color: var(--h-coral);
  line-height: 1.15;
  margin-bottom: 0.4rem;
  font-variant-numeric: tabular-nums;
}

.bs-page .co-scope {
  font-size: 0.9rem;
  color: var(--h-muted);
  margin-bottom: 1.4rem;
}

.bs-page .co-break {
  list-style: none;
  border-top: 1px solid var(--h-line);
  margin-bottom: 1.6rem;
}

.bs-page .co-break li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--h-line);
  font-size: 0.92rem;
  color: var(--h-navy);
}

.bs-page .co-break li b {
  font-weight: 700;
}

.bs-page .co-actions {
  margin-bottom: 1.4rem;
}

.bs-page .co-note {
  font-size: 0.82rem;
  color: var(--h-muted-2);
  margin-top: 1.2rem;
}

.bs-page .cc-ok,
.bs-page .cc-err {
  display: none;
  font-size: 0.9rem;
  margin-top: 0.8rem;
}

.bs-page .cc-ok {
  color: var(--success);
}

.bs-page .cc-err {
  color: var(--h-coral);
}

.bs-calc-capture {
  margin-top: 1.6rem;
  border: 1px solid var(--h-line);
  border-radius: var(--h-radius-sm);
  background: var(--h-cream);
  padding: 1.4rem;
}

.bs-calc-capture h3 {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--h-navy);
  margin: 0 0 0.3rem;
}

.bs-calc-capture p {
  color: var(--h-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0 0 1rem;
}

.bs-calc-capture form {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.bs-calc-capture input {
  flex: 1;
  min-width: 220px;
  min-height: 46px;
  border-radius: 8px;
  border: 1px solid var(--h-line-2);
  background: var(--h-paper);
  color: var(--h-navy);
  padding: 0 1rem;
  font: inherit;
}

.bs-calc-capture input::placeholder {
  color: var(--h-muted-2);
}

/* ---- service bands ---- */
.bs-svc-bands {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 2.5rem;
}

@media (max-width: 900px) {
  .bs-svc-bands {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-inline: auto;
  }
}

.bs-svc-band {
  background: var(--h-paper);
  border: 1px solid var(--h-line);
  border-radius: var(--h-radius);
  padding: 2rem;
}

.bs-svc-band .band-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--h-coral);
  display: block;
  margin-bottom: 1.2rem;
}

.bs-svc-band .band-icon {
  width: 38px;
  height: 38px;
  color: var(--h-coral);
  margin-bottom: 1.2rem;
}

.bs-svc-band h3 {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--h-navy);
  margin-bottom: 0.6rem;
}

.bs-svc-band ul {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.bs-svc-band li {
  border-bottom: 1px solid var(--h-line);
}

.bs-svc-band li:last-child {
  border-bottom: 0;
}

.bs-svc-band li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.8rem 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--h-navy);
  transition: color 0.2s;
}

.bs-svc-band li a:hover {
  color: var(--h-coral);
}

.bs-svc-band li a .arr {
  color: var(--h-coral);
  transition: transform 0.3s var(--h-ease);
}

.bs-svc-band li a:hover .arr {
  transform: translateX(4px);
}

.bs-svc-note {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--h-muted-2);
  max-width: 78ch;
}

/* ---- why grid ---- */
.bs-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem 2.4rem;
  margin-top: 2.5rem;
}

@media (max-width: 900px) {
  .bs-why-grid {
    grid-template-columns: 1fr;
  }
}

.bs-why-item {
  display: flex;
  gap: 1.2rem;
  padding: 1.6rem 0;
  border-top: 1px solid var(--h-line);
}

.bs-why-item .n {
  font-family: "Archivo", system-ui, sans-serif;
  color: var(--h-coral);
  font-size: 1rem;
  font-weight: 800;
  flex: none;
  padding-top: 0.2rem;
  min-width: 2rem;
}

.bs-why-item h3 {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--h-navy);
  margin-bottom: 0.4rem;
}

.bs-why-item p {
  color: var(--h-muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.bs-why-item.peak {
  grid-column: 1 / -1;
  background: var(--h-paper);
  border: 1px solid rgba(218, 58, 34, 0.35);
  border-radius: var(--h-radius-sm);
  padding: 1.8rem 2rem;
}

@media (max-width: 900px) {
  .bs-why-item.peak {
    grid-column: auto;
  }
}

.bs-why-item.peak h3 {
  font-size: 1.3rem;
}

.bs-why-item.peak .n {
  color: #fff;
  background: var(--h-coral);
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  padding-top: 0;
}

/* ---- contact strip ---- */
.bs-strip-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
}

.bs-strip-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   About page components (light editorial theme)
   ========================================================================== */

/* ---- purpose band ---- */
.h-purpose {
  background: var(--h-cream-2);
  border-block: 1px solid var(--h-line);
  padding: var(--h-pad) 0;
  text-align: center;
}

.h-purpose-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--h-coral);
  margin-bottom: 1rem;
}

.h-purpose-state {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--h-navy);
  max-width: 56ch;
  margin: 0 auto;
}

.h-purpose-state b {
  color: var(--h-coral);
}

.h-purpose-div {
  width: 60px;
  height: 1px;
  background: var(--h-line-2);
  margin: 2.5rem auto;
}

/* ---- values grid ---- */
.h-val-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 2.5rem;
}

@media (max-width: 900px) {
  .h-val-grid {
    grid-template-columns: 1fr;
  }
}

.h-val {
  background: var(--h-paper);
  border: 1px solid var(--h-line);
  border-radius: var(--h-radius-sm);
  padding: 1.8rem;
  box-shadow: var(--h-shadow);
}

.h-val .n {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--h-coral);
  line-height: 1;
  display: block;
  margin-bottom: 0.8rem;
}

.h-val h3 {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--h-navy);
}

.h-val p {
  color: var(--h-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* ---- sixth value moment ---- */
.h-value-moment {
  background: var(--h-navy);
  color: #fff;
  padding: var(--h-pad) 0;
  text-align: center;
}

.h-value-moment h2 {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
}

.h-value-moment h2 em {
  color: var(--h-coral-2);
  font-style: normal;
}

.h-value-moment p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 56ch;
  margin: 1.5rem auto 0;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}

.h-value-moment .h-vlink {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  color: var(--h-coral-2);
  font-weight: 700;
  font-size: 1rem;
}

.h-value-moment .h-vlink:hover {
  color: #fff;
}

/* ---- story copy ---- */
.h-story-copy {
  margin-top: 2.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.h-story-copy p {
  font-size: 1.05rem;
  color: var(--h-navy);
  line-height: 1.8;
}

.h-story-copy b {
  color: var(--h-navy);
}

/* ---- team ---- */
.h-sub-head {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--h-muted-2);
  margin: 3rem 0 1.2rem;
}

.h-founder-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.h-person {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  background: var(--h-paper);
  border: 1px solid var(--h-line);
  border-radius: var(--h-radius-sm);
  padding: 1.6rem;
  box-shadow: var(--h-shadow);
}

.h-person .avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--h-coral-soft);
  color: var(--h-coral);
  display: grid;
  place-items: center;
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  flex: none;
}

.h-person h4 {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--h-navy);
  margin-bottom: 0.2rem;
}

.h-person .role {
  font-size: 0.9rem;
  color: var(--h-coral);
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.h-person p {
  color: var(--h-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.h-team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
}

@media (max-width: 900px) {
  .h-team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 560px) {
  .h-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.h-tm {
  background: var(--h-paper);
  border: 1px solid var(--h-line);
  border-radius: var(--h-radius-sm);
  padding: 1.4rem;
  text-align: center;
  box-shadow: var(--h-shadow);
}

.h-tm .avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--h-coral-soft);
  color: var(--h-coral);
  display: grid;
  place-items: center;
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0 auto 0.8rem;
}

.h-tm h4 {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--h-navy);
  margin-bottom: 0.2rem;
}

.h-tm .role {
  font-size: 0.85rem;
  color: var(--h-muted);
}

/* ---- advisors placeholder ---- */
.h-advisors {
  margin-top: 3rem;
  padding: 1.8rem;
  background: var(--h-cream-2);
  border: 1px solid var(--h-line);
  border-radius: var(--h-radius-sm);
}

.h-advisors h4 {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--h-navy);
  margin-bottom: 1rem;
}

.h-ph-block {
  background: var(--h-paper);
  border: 1px dashed var(--h-line-2);
  border-radius: var(--h-radius-sm);
  padding: 1.4rem;
}

.h-ph-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--h-muted-2);
  margin-bottom: 0.5rem;
}

.h-ph-block p {
  color: var(--h-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ---- join network ---- */
.h-join {
  background: var(--h-cream-2);
  border-block: 1px solid var(--h-line);
  padding: var(--h-pad) 0;
}

.h-join-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 900px) {
  .h-join-grid {
    grid-template-columns: 1fr;
  }
}

.h-join .doors {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.h-join .fine {
  margin-top: 1rem;
  font-size: 0.88rem;
  color: var(--h-muted-2);
}

/* ==========================================================================
   Insights page components (light editorial theme)
   ========================================================================== */

/* ---- featured article ---- */
.feat {
  background: var(--h-paper);
  border: 1px solid var(--h-line);
  border-radius: var(--h-radius);
  padding: clamp(1.6rem, 4vw, 2.4rem);
  box-shadow: var(--h-shadow);
  margin: 2.5rem 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 760px) {
  .feat {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.feat h3 {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--h-navy);
  margin-bottom: 0.6rem;
}

.feat h3 a {
  color: inherit;
}

.feat h3 a:hover {
  color: var(--h-coral);
}

.feat-tagrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.art-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--h-line);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--h-navy);
  background: var(--h-paper);
}

.art-tag.solid {
  background: var(--h-navy);
  color: #fff;
  border-color: var(--h-navy);
}

.art-fmt {
  font-size: 0.85rem;
  color: var(--h-muted-2);
}

.feat .ex {
  color: var(--h-muted);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 64ch;
}

.feat-meta {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  font-size: 0.95rem;
  color: var(--h-muted);
  border-left: 1px solid var(--h-line);
  padding-left: 2rem;
  min-width: 180px;
}

@media (max-width: 760px) {
  .feat-meta {
    border-left: 0;
    border-top: 1px solid var(--h-line);
    padding-left: 0;
    padding-top: 1.5rem;
  }
}

.feat-meta b {
  color: var(--h-navy);
  font-weight: 700;
}

/* ---- filter bar ---- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 2rem 0 1.5rem;
}

.f-btn {
  border: 1px solid var(--h-line-2);
  background: var(--h-paper);
  color: var(--h-navy);
  border-radius: 999px;
  padding: 0.6rem 1.1rem;
  font-size: 0.88rem;
  font-family: "Hanken Grotesk", system-ui, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.18s var(--h-ease);
}

.f-btn:hover {
  border-color: var(--h-coral);
}

.f-btn[aria-pressed="true"] {
  background: var(--h-navy);
  color: #fff;
  border-color: var(--h-navy);
}

/* ---- article grid ---- */
.art-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

@media (max-width: 900px) {
  .art-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .art-grid {
    grid-template-columns: 1fr;
  }
}

.art-grid .art,
a.art {
  background: var(--h-paper);
  border: 1px solid var(--h-line);
  border-radius: var(--h-radius-sm);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.35s var(--h-ease),
    box-shadow 0.35s var(--h-ease),
    border-color 0.35s var(--h-ease);
}

.art-grid .art:hover,
a.art:hover {
  transform: translateY(-5px);
  box-shadow: var(--h-shadow);
  border-color: rgba(218, 58, 34, 0.35);
}

.art .meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.art h3 {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 1.2;
  color: var(--h-navy);
  margin-bottom: 0.6rem;
}

.art p {
  color: var(--h-muted);
  font-size: 0.98rem;
  line-height: 1.6;
  flex: 1;
}

.art .foot {
  margin-top: 1.2rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--h-coral);
}

.filter-empty {
  display: none;
  text-align: center;
  padding: 2rem;
  color: var(--h-muted);
  font-size: 1rem;
}

.filter-empty.show {
  display: block;
}

.tier-note {
  margin-top: 2.6rem;
  font-size: 0.85rem;
  color: var(--h-muted-2);
  max-width: 82ch;
  line-height: 1.6;
}

/* ---- subscribe block ---- */
.h-subscribe {
  background: var(--h-navy);
  color: #fff;
  text-align: center;
}

.h-subscribe h2 {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #fff;
}

.h-subscribe .h-eyebrow {
  color: var(--h-coral-2);
}

.h-subscribe .h-eyebrow::before {
  background: var(--h-coral-2);
}

.h-subscribe .h-lede {
  color: rgba(255, 255, 255, 0.75);
  margin-left: auto;
  margin-right: auto;
}

.sub-form {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  max-width: 520px;
  margin: 2rem auto 0;
}

.sub-form input {
  flex: 1;
  min-width: 0;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font: inherit;
}

.sub-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.sub-form button {
  background: var(--h-coral);
  color: #fff;
  border: 0;
  border-radius: 8px;
  padding: 0 1.5rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.sub-form button:hover {
  background: var(--h-coral-2);
}

@media (max-width: 560px) {
  .sub-form {
    flex-direction: column;
  }

  .sub-form button {
    padding: 1rem;
  }
}

.cadence {
  margin-top: 1.2rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.h-subscribe #nl-archive {
  margin-top: 2.2rem;
}

.h-subscribe #nl-archive .h-btn {
  margin: 0.3rem;
}

/* ---- CTA banner emphasis ---- */
.h-cta-banner h2 em {
  color: var(--h-coral-2);
  font-style: normal;
}

/* ==========================================================================
   Consulting product detail pages (legacy class light-theme compatibility)
   Used by consulting-*.html after switching from styles.min.css to home.css.
   ========================================================================== */

/* ---- layout containers ---- */
.wrap {
  max-width: var(--h-max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

.pad {
  padding: var(--h-pad) 0;
}

.narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

/* ---- product hero ---- */
.p-hero {
  min-height: 55svh;
  display: flex;
  align-items: center;
  padding: 10rem 0 4rem;
  background:
    radial-gradient(
      120% 100% at 80% 0%,
      rgba(218, 58, 34, 0.06) 0%,
      transparent 50%
    ),
    var(--h-cream);
  border-bottom: 1px solid var(--h-line);
  color: var(--h-navy);
}

.p-hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

@media (max-width: 920px) {
  .p-hero-grid {
    grid-template-columns: 1fr;
  }
}

.p-hero .crumbs {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--h-muted-2);
  margin-bottom: 1.5rem;
}

.p-hero .crumbs a {
  color: var(--h-muted);
  transition: color 0.2s;
}

.p-hero .crumbs a:hover {
  color: var(--h-coral);
}

.p-hero .crumbs i {
  font-style: normal;
  color: var(--h-coral);
}

.p-hero .p-name {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--h-coral);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.p-hero .p-name::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--h-coral);
  opacity: 0.6;
}

.p-hero h1 {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--h-navy);
}

.p-hero h1 em {
  color: var(--h-coral);
  font-style: normal;
}

.p-hero .sub {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--h-muted);
  max-width: 56ch;
  margin-top: 1.2rem;
}

.p-hero .motif {
  width: 100%;
  height: auto;
  max-height: 180px;
  margin-top: 2rem;
}

/* ---- book card ---- */
.book-card {
  background: var(--h-paper);
  border: 1px solid var(--h-line);
  border-radius: var(--h-radius);
  padding: clamp(1.8rem, 4vw, 2.5rem);
  box-shadow: var(--h-shadow-lg);
}

.book-card .bc-format {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--h-coral);
  margin-bottom: 0.6rem;
}

.book-card .bc-price {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--h-navy);
  line-height: 1.1;
}

.book-card .bc-price-note {
  font-size: 0.95rem;
  color: var(--h-muted);
  margin-top: 0.4rem;
}

.book-card .bc-list {
  list-style: none;
  margin: 1.5rem 0;
  padding: 1.4rem 0;
  border-top: 1px solid var(--h-line);
  border-bottom: 1px solid var(--h-line);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.book-card .bc-list li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 0.98rem;
  color: var(--h-muted);
  line-height: 1.5;
}

.book-card .bc-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--h-coral);
  font-weight: 700;
}

.book-card .bc-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--h-muted-2);
}

/* ---- promise band ---- */
.promise {
  background: var(--h-navy);
  color: #fff;
  padding: var(--h-pad) 0;
  text-align: center;
}

.promise blockquote {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.promise blockquote b {
  color: var(--h-coral-2);
  font-weight: 800;
}

.promise .attr {
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}

/* ---- image banner ---- */
.img-banner {
  position: relative;
  width: calc(100% - 2 * clamp(1rem, 5vw, 3rem));
  max-width: 960px;
  margin: 1.5rem auto;
  border-radius: var(--h-radius-lg);
  overflow: hidden;
  box-shadow: var(--h-shadow-lg);
  aspect-ratio: 16 / 9;
  max-height: min(260px, 32vh);
}

@media (min-width: 768px) {
  .img-banner {
    aspect-ratio: 21 / 9;
    max-height: min(280px, 32vh);
  }
}

.img-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.img-banner .ib-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 30%,
    rgba(11, 21, 38, 0.65) 100%
  );
}

.img-banner figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(1rem, 3vw, 2rem);
  color: #fff;
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  max-width: 760px;
}

/* ---- section common ---- */
.takeaways.light,
.fit.light,
.format.light {
  background: var(--h-cream);
  color: var(--h-navy);
}

.takeaways.light .eyebrow,
.fit.light .eyebrow,
.format.light .eyebrow,
.brand-check-cta .eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--h-coral);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.takeaways.light .eyebrow::before,
.fit.light .eyebrow::before,
.format.light .eyebrow::before,
.brand-check-cta .eyebrow::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--h-coral);
  opacity: 0.6;
}

.takeaways.light .h2,
.fit.light .h2,
.format.light .h2 {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--h-navy);
}

/* ---- takeaways ---- */
.tk-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (max-width: 760px) {
  .tk-grid {
    grid-template-columns: 1fr;
  }
}

.tk-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.4rem;
  background: var(--h-paper);
  border: 1px solid var(--h-line);
  border-radius: var(--h-radius-sm);
}

.tk-item .n {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--h-coral);
  line-height: 1;
  flex: none;
}

.tk-item h3 {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--h-navy);
  margin-bottom: 0.4rem;
}

.tk-item p {
  font-size: 0.98rem;
  color: var(--h-muted);
  line-height: 1.55;
}

/* ---- fit ---- */
.fit-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (max-width: 900px) {
  .fit-grid {
    grid-template-columns: 1fr;
  }
}

.fit-yes,
.fit-no {
  background: var(--h-paper);
  border: 1px solid var(--h-line);
  border-radius: var(--h-radius);
  padding: 1.8rem;
  box-shadow: var(--h-shadow);
}

.fit-yes h3,
.fit-no h3 {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--h-navy);
  margin-bottom: 1.2rem;
}

.fit-no h3 {
  color: var(--h-muted-2);
}

.fit-row {
  padding: 1rem 0;
  border-bottom: 1px solid var(--h-line);
}

.fit-row:last-child {
  border-bottom: 0;
}

.fit-row .k {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--h-coral);
  margin-bottom: 0.35rem;
}

.fit-row p {
  font-size: 0.98rem;
  color: var(--h-muted);
  line-height: 1.55;
}

/* ---- format ---- */
.format-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--h-line);
  border: 1px solid var(--h-line);
  border-radius: var(--h-radius-sm);
  overflow: hidden;
  margin-top: 2.5rem;
}

@media (max-width: 760px) {
  .format-card {
    grid-template-columns: 1fr;
  }
}

.format-cell {
  background: var(--h-paper);
  padding: 1.8rem;
}

.format-cell .k {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--h-coral);
  margin-bottom: 0.6rem;
}

.format-cell .v {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  color: var(--h-navy);
  line-height: 1.15;
}

.format-cell .s {
  font-size: 0.95rem;
  color: var(--h-muted);
  margin-top: 0.4rem;
}

.format-cta {
  margin-top: 2.5rem;
  text-align: center;
}

.format-cta .h-btn {
  margin-bottom: 1rem;
}

.format-cta .fine {
  font-size: 0.9rem;
  color: var(--h-muted-2);
}

/* ---- strategy sprint tiers ---- */
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (max-width: 900px) {
  .tiers {
    grid-template-columns: 1fr;
  }
}

.tier {
  background: var(--h-paper);
  border: 1px solid var(--h-line);
  border-radius: var(--h-radius);
  padding: 1.8rem;
  box-shadow: var(--h-shadow);
}

.tier.featured {
  border-color: var(--h-coral);
  box-shadow:
    var(--h-shadow),
    0 0 0 1px var(--h-coral);
}

.tier .t-name {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--h-navy);
}

.tier .t-price {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--h-coral);
  margin: 0.8rem 0;
}

.tier .t-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin: 1.2rem 0;
  padding: 1.2rem 0;
  border-top: 1px solid var(--h-line);
  border-bottom: 1px solid var(--h-line);
}

.tier .t-list li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.95rem;
  color: var(--h-muted);
  line-height: 1.5;
}

.tier .t-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--h-coral);
  font-weight: 700;
}

.tier .t-tag {
  font-size: 0.95rem;
  color: var(--h-navy);
  font-weight: 600;
}

/* ---- next product ---- */
.next-prod {
  background: var(--h-cream-2);
  border-top: 1px solid var(--h-line);
  border-bottom: 1px solid var(--h-line);
  padding: 3rem 0;
}

.next-prod a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 2rem;
  background: var(--h-paper);
  border: 1px solid var(--h-line);
  border-radius: var(--h-radius);
  transition:
    transform 0.35s var(--h-ease),
    box-shadow 0.35s var(--h-ease);
}

.next-prod a:hover {
  transform: translateY(-4px);
  box-shadow: var(--h-shadow-lg);
}

.next-prod .np-k {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--h-coral);
  margin-bottom: 0.5rem;
}

.next-prod .np-name {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--h-navy);
  line-height: 1.1;
}

.next-prod .np-tag {
  margin-top: 0.5rem;
  color: var(--h-muted);
  max-width: 50ch;
}

.next-prod .np-arrow {
  font-size: 2rem;
  color: var(--h-coral);
}

/* ---- legacy arrow helper ---- */
.arr {
  transition: transform 0.3s var(--h-ease);
}

.h-btn:hover .arr {
  transform: translateX(4px);
}

/* ---- footer (legacy structure inside .h-footer) ---- */
.h-footer .wrap {
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

.h-footer .foot-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (max-width: 820px) {
  .h-footer .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .h-footer .foot-grid {
    grid-template-columns: 1fr;
  }
}

.h-footer .foot-brand img {
  height: auto;
  width: 150px;
}

.h-footer .foot-brand p {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--h-muted);
}

.h-footer .foot-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--h-navy);
  margin-bottom: 1rem;
}

.h-footer .foot-col ul {
  list-style: none;
}

.h-footer .foot-col a {
  display: block;
  color: var(--h-muted);
  padding: 0.25rem 0;
  transition: color 0.2s;
}

.h-footer .foot-col a:hover {
  color: var(--h-coral);
}

.h-footer .foot-loc {
  font-size: 0.95rem;
  color: var(--h-muted);
}

.h-footer .foot-loc span {
  display: block;
  font-size: 0.9rem;
  color: var(--h-muted-2);
}

.h-footer .foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid var(--h-line);
  font-size: 0.86rem;
  color: var(--h-muted);
}

.h-footer .foot-legal a {
  color: var(--h-muted);
  margin-left: 1rem;
  transition: color 0.2s;
}

.h-footer .foot-legal a:hover {
  color: var(--h-coral);
}

/* ---- Brand 3D free-check CTA ---- */
.brand-check-cta {
  background: var(--h-navy);
  color: #fff;
}

.brand-check-cta .wrap {
  max-width: 960px;
  padding: 34px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand-check-cta .copy {
  flex: 1 1 420px;
  min-width: 280px;
}

.brand-check-cta .headline {
  font-family: "Archivo", system-ui, sans-serif;
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 700;
  margin: 0 0 6px;
  color: #fff;
}

.brand-check-cta .headline span {
  color: var(--h-coral);
}

.brand-check-cta p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  margin: 0;
  max-width: 60ch;
}

.brand-check-cta .h-btn {
  white-space: nowrap;
}

/* ==========================================================================
   Premium interactions — scroll parallax, mouse parallax, split reveals,
   magnetic buttons, count-up numbers, scroll progress.
   ========================================================================== */

/* ---- scroll progress bar ---- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--h-coral), var(--h-coral-2));
  z-index: 9999;
  pointer-events: none;
  transform-origin: left;
  transition: width 0.08s linear;
}

/* ---- parallax image containers ---- */
.h-img-banner,
.img-banner {
  position: relative;
  overflow: hidden;
}

.h-img-banner img,
.img-banner img {
  will-change: transform;
  transform: translateY(var(--parallax-y, 0)) scale(var(--img-scale, 1));
  transition: transform 0.08s linear;
}

.h-img-banner:hover img,
.img-banner:hover img {
  --img-scale: 1.03;
}

/* ---- hero mouse-parallax layers ---- */
.h-hero,
.h-page-hero,
.p-hero {
  position: relative;
  overflow: hidden;
}

.h-hero-visual,
.h-page-hero .lattice-bg,
.p-hero .motif,
.p-hero .book-card {
  will-change: transform;
  transition: transform 0.18s var(--h-ease);
  transform: translate(var(--mouse-x, 0), var(--mouse-y, 0));
}

/* ---- split text reveal ---- */
.split-reveal {
  overflow: hidden;
}

.split-word,
.split-line {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.split-word-inner,
.split-line-inner {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition:
    transform 0.75s var(--h-ease),
    opacity 0.55s ease;
  transition-delay: var(--d, 0s);
}

.split-reveal.in .split-word-inner,
.split-reveal.in .split-line-inner {
  transform: translateY(0);
  opacity: 1;
}

/* ---- magnetic buttons ---- */
.h-btn,
.btn {
  transition:
    transform 0.25s var(--h-ease),
    background 0.25s var(--h-ease),
    color 0.25s var(--h-ease),
    box-shadow 0.25s var(--h-ease),
    border-color 0.25s var(--h-ease);
}

.h-btn.magnetic,
.btn.magnetic {
  transform: translate(var(--mag-x, 0), var(--mag-y, 0));
}

.h-btn .h-arr,
.btn .h-arr {
  transition: transform 0.25s var(--h-ease);
}

.h-btn:hover .h-arr,
.btn:hover .h-arr {
  transform: translateX(4px);
}

/* ---- count-up numbers ---- */
.count-up {
  font-variant-numeric: tabular-nums;
}

/* ---- ambient hero grain/shimmer overlay ---- */
.hero-shimmer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    120% 120% at 20% 0%,
    rgba(218, 58, 34, 0.06) 0%,
    transparent 45%
  );
  opacity: 0.6;
  mix-blend-mode: soft-light;
  animation: hero-shimmer 10s ease-in-out infinite alternate;
}

@keyframes hero-shimmer {
  0% {
    opacity: 0.4;
    transform: translateX(-2%) scale(1.02);
  }
  100% {
    opacity: 0.7;
    transform: translateX(2%) scale(1);
  }
}

/* ---- subtle floating dots for page heroes ---- */
.p-hero::before,
.h-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(
    circle at 90% 20%,
    rgba(218, 58, 34, 0.08) 0%,
    transparent 28%
  );
  opacity: 0.6;
}

/* ==========================================================================
   Homepage v2 — editorial scroll narrative (BCG BrightHouse-grade)
   Full-viewport sections, large fluid type, marquee, canvas sphere, sticky text.
   Scoped to .eh-v2 so inner pages keep their current layout until redesigned.
   ========================================================================== */

.eh-v2 {
  --eh-ink: #0a0a0a;
  --eh-cream: #f6f5f2;
  --eh-cream-2: #edece8;
  --eh-coral: #da3a22;
  --eh-coral-2: #e4573f;
  --eh-gold: #ffc228;
  --eh-max: 1280px;
  --eh-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --eh-radius: 18px;
  --eh-radius-sm: 10px;
  background: var(--eh-cream);
  color: var(--eh-ink);
}

/* ---- nav override for v2 ---- */
.eh-v2 .h-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition:
    background 0.35s var(--eh-ease),
    border-color 0.35s var(--eh-ease);
}

.eh-v2 .h-nav.scrolled {
  background: rgba(10, 10, 10, 0.98);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.eh-v2 .h-nav .brand img {
  filter: brightness(0) invert(1);
}

.eh-v2 .h-nav .nav-links a {
  color: rgba(255, 255, 255, 0.85);
}

.eh-v2 .h-nav .nav-links a:hover,
.eh-v2 .h-nav .nav-links a[aria-current="page"] {
  color: #fff;
}

.eh-v2 .h-nav-toggle span {
  background: #fff;
}

/* Mobile menu (v2): the sticky header sets backdrop-filter, which makes it the
   containing block for the fixed .nav-links panel — so the base `inset:0` menu
   collapsed to the header's height and showed the page through it. Pin the
   panel to the full viewport with an opaque dark ground so it reads as a real
   overlay. The base translateX(100%) / .menu-open toggle still drives it. */
@media (max-width: 900px) {
  .eh-v2 .h-nav .nav-links {
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    width: 100%;
    height: 100dvh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(16px);
    z-index: 200;
    padding: 5.5rem 2rem 2rem;
    overflow-y: auto;
  }
  .eh-v2 .h-nav .nav-links li {
    border-bottom-color: rgba(255, 255, 255, 0.12);
  }
  .eh-v2 .h-nav .nav-links a {
    color: #fff;
  }
  /* Keep the close (X) above the panel and hide the floating CTAs behind it. */
  .eh-v2.menu-open .h-nav-toggle {
    position: relative;
    z-index: 210;
  }
  .eh-v2.menu-open .h-sticky-cta {
    display: none;
  }
}

/* ---- buttons v2 ---- */
.eh-v2 .eh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition:
    transform 0.25s var(--eh-ease),
    background 0.25s var(--eh-ease),
    color 0.25s var(--eh-ease),
    box-shadow 0.25s var(--eh-ease);
}

.eh-v2 .eh-btn-primary {
  background: var(--eh-coral);
  color: #fff;
  box-shadow: 0 10px 30px rgba(218, 58, 34, 0.25);
}

.eh-v2 .eh-btn-primary:hover {
  background: var(--eh-coral-2);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(218, 58, 34, 0.32);
}

.eh-v2 .eh-btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.eh-v2 .eh-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
}

.eh-v2 .eh-btn-dark {
  background: var(--eh-ink);
  color: #fff;
}

.eh-v2 .eh-btn-dark:hover {
  background: #222;
  transform: translateY(-2px);
}

.eh-v2 .eh-btn-light {
  background: transparent;
  color: var(--eh-ink);
  border: 1px solid rgba(10, 10, 10, 0.25);
}

.eh-v2 .eh-btn-light:hover {
  background: rgba(10, 10, 10, 0.04);
}

/* ---- hero v2 ---- */
.eh-hero-v2 {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--eh-ink);
  color: #fff;
  overflow: hidden;
  text-align: center;
}

.eh-hero-v2 #networkSphere {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.55;
}

.eh-hero-v2 .eh-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1040px;
  padding: 8rem 1.5rem 5rem;
}

.eh-hero-v2 .eh-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--eh-coral-2);
  margin-bottom: 1.4rem;
}

.eh-hero-v2 h1 {
  font-family: "Archivo", system-ui, sans-serif;
  font-size: clamp(2.8rem, 8vw, 7.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.eh-hero-v2 h1 em {
  color: var(--eh-coral);
  font-style: normal;
}

.eh-hero-v2 .eh-lead {
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  color: rgba(255, 255, 255, 0.72);
  max-width: 680px;
  margin: 1.8rem auto 0;
  line-height: 1.55;
}

.eh-hero-v2 .eh-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.8rem;
}

.eh-hero-v2 .eh-meta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.2rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eh-hero-v2 .eh-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.eh-hero-v2 .eh-scroll-hint::after {
  content: "";
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, currentColor, transparent);
  animation: scroll-hint 1.8s ease-in-out infinite;
}

@keyframes scroll-hint {
  0%,
  100% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ---- marquee ---- */
.eh-marquee {
  background: var(--eh-ink);
  color: #fff;
  padding: 1.6rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.eh-marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.eh-marquee:hover .eh-marquee-track {
  animation-play-state: paused;
}

.eh-marquee span {
  font-family: "Archivo", system-ui, sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
  padding: 0 2.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.eh-marquee span i {
  color: var(--eh-coral);
  font-style: normal;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ---- section v2 base ---- */
.eh-section-v2 {
  position: relative;
  padding: clamp(5rem, 12vh, 9rem) 0;
}

/* ---- trust bar on homepage ---- */
.eh-trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.75rem;
}

.eh-trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  background: var(--h-paper);
  border: 1px solid var(--h-line);
  border-radius: var(--h-radius-sm);
  box-shadow: var(--h-shadow);
  color: var(--h-navy);
  font-weight: 600;
  font-size: 0.98rem;
}

.eh-trust-icon {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--h-coral-soft);
  color: var(--h-coral);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  line-height: 1;
}

@media (max-width: 640px) {
  .eh-trust-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- by the numbers ---- */
.eh-numbers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-top: 1.75rem;
}

.eh-number-card {
  text-align: center;
  padding: 1.6rem 1rem;
  background: var(--h-paper);
  border: 1px solid var(--h-line);
  border-radius: var(--h-radius);
  box-shadow: var(--h-shadow);
}

.eh-number {
  display: block;
  font-family: "Archivo", system-ui, sans-serif;
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1;
  color: var(--h-navy);
}

.eh-number-label {
  display: block;
  margin-top: 0.5rem;
  color: var(--h-muted);
  font-size: 0.95rem;
  font-weight: 500;
}

@media (max-width: 480px) {
  .eh-numbers-grid {
    grid-template-columns: 1fr;
  }
}

.eh-section-v2.eh-full {
  /* Sections size to their content (with the generous base padding above)
     rather than forcing a full viewport each, which left large empty voids. */
  display: flex;
  align-items: center;
}

.eh-section-v2.eh-dark {
  background: var(--eh-ink);
  color: #fff;
}

.eh-section-v2.eh-light {
  background: var(--eh-cream);
  color: var(--eh-ink);
}

.eh-section-v2 .eh-wrap {
  width: 100%;
  max-width: var(--eh-max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

.eh-section-v2 .eh-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--eh-coral);
  margin-bottom: 1rem;
}

.eh-section-v2.eh-dark .eh-eyebrow {
  color: var(--eh-coral-2);
}

.eh-section-v2 .eh-h2 {
  font-family: "Archivo", system-ui, sans-serif;
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.eh-section-v2 .eh-h2 em {
  color: var(--eh-coral);
  font-style: normal;
}

.eh-section-v2 .eh-lead {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  line-height: 1.6;
  color: rgba(10, 10, 10, 0.65);
  max-width: 58ch;
  margin-top: 1.2rem;
}

.eh-section-v2.eh-dark .eh-lead {
  color: rgba(255, 255, 255, 0.65);
}

/* ---- manifesto v2 ---- */
.eh-manifesto-v2 .eh-2col {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

@media (max-width: 920px) {
  .eh-manifesto-v2 .eh-2col {
    grid-template-columns: 1fr;
  }
}

/* ---- pillars v2 ---- */
.eh-pillars-v2 .eh-pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.eh-pillars-v2 .eh-pillar-grid.two-pillars {
  grid-template-columns: repeat(2, 1fr);
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 980px) {
  .eh-pillars-v2 .eh-pillar-grid,
  .eh-pillars-v2 .eh-pillar-grid.two-pillars {
    grid-template-columns: 1fr;
  }
}

.eh-pillar-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: var(--eh-radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--eh-ink);
  transition:
    transform 0.45s var(--eh-ease),
    box-shadow 0.45s var(--eh-ease);
}

.eh-pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(10, 10, 10, 0.12);
}

.eh-pillar-card .eh-card-img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.eh-pillar-card .eh-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--eh-ease);
}

.eh-pillar-card:hover .eh-card-img img {
  transform: scale(1.06);
}

.eh-pillar-card .eh-card-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--eh-coral);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
}

.eh-pillar-card .eh-card-body {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.eh-pillar-card .kicker {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--eh-coral);
  margin-bottom: 0.4rem;
}

.eh-pillar-card h3 {
  font-family: "Archivo", system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
}

.eh-pillar-card p {
  font-size: 0.98rem;
  color: rgba(10, 10, 10, 0.65);
  line-height: 1.55;
  flex: 1;
}

.eh-pillar-card .eh-card-link {
  margin-top: 1.2rem;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--eh-coral);
}

.eh-card-bullets {
  list-style: none;
  margin: 0.8rem 0 0;
  padding: 0;
  font-size: 0.9rem;
  color: rgba(10, 10, 10, 0.6);
}

.eh-card-bullets li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.35rem;
  line-height: 1.45;
}

.eh-card-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--eh-coral);
  font-weight: 700;
  font-size: 0.8rem;
}

/* ---- who it is for ---- */
.h-who-for-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 2.5rem;
}

@media (max-width: 720px) {
  .h-who-for-grid {
    grid-template-columns: 1fr;
  }
}

.h-for-col h3 {
  font-family: "Archivo", system-ui, sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.h-for-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.h-for-col li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.75rem;
  line-height: 1.55;
  color: rgba(10, 10, 10, 0.7);
}

.h-for-col li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--h-coral);
  font-weight: 700;
}

.h-for-col:last-child li::before {
  content: "×";
}

/* ---- membership benefits ---- */
.h-benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

@media (max-width: 720px) {
  .h-benefit-grid {
    grid-template-columns: 1fr;
  }
}

.h-benefit {
  padding: 1.5rem;
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: var(--h-radius);
  background: #fff;
}

.h-benefit h3 {
  font-family: "Archivo", system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  color: var(--h-navy);
}

.h-benefit p {
  font-size: 0.95rem;
  color: rgba(10, 10, 10, 0.65);
  line-height: 1.55;
  margin: 0;
}

/* ---- how it works v2 ---- */
.eh-hiw-v2 .eh-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

@media (max-width: 980px) {
  .eh-hiw-v2 .eh-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .eh-hiw-v2 .eh-steps {
    grid-template-columns: 1fr;
  }
}

/* The "Build. Belong. Become." pillars reuse the how-it-works grid but have
   only three items, so the 4-column track left an empty column and pushed the
   pillars off-centre under their centred heading. Give them three columns. */
@media (min-width: 981px) {
  .eh-hiw-v2 .eh-steps-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.eh-step {
  position: relative;
  padding-top: 2rem;
}

.eh-step::before {
  content: attr(data-num);
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Archivo", system-ui, sans-serif;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(218, 58, 34, 0.12);
}

.eh-step h3 {
  font-family: "Archivo", system-ui, sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.eh-step p {
  font-size: 0.95rem;
  color: rgba(10, 10, 10, 0.65);
  line-height: 1.55;
}

/* ---- stats v2 ---- */
.eh-stats-v2 .eh-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

@media (max-width: 860px) {
  .eh-stats-v2 .eh-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.eh-stat {
  text-align: center;
  padding: 2rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--eh-radius);
  background: rgba(255, 255, 255, 0.03);
}

.eh-stat b {
  display: block;
  font-family: "Archivo", system-ui, sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--eh-coral);
  line-height: 1;
}

.eh-stat span {
  display: block;
  margin-top: 0.85rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
}

.eh-stat span em {
  color: var(--eh-coral-2);
  font-style: normal;
  font-weight: 700;
}

/* ---- voices v2 ---- */
.eh-voices-v2 .eh-voice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  margin-top: 3.5rem;
}

@media (max-width: 800px) {
  .eh-voices-v2 .eh-voice-grid {
    grid-template-columns: 1fr;
  }
}

.eh-voice {
  display: flex;
  flex-direction: column;
}

.eh-voice blockquote {
  font-family: "Archivo", system-ui, sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}

.eh-voice p {
  font-size: 1rem;
  color: rgba(10, 10, 10, 0.65);
  line-height: 1.6;
  flex: 1;
}

.eh-voice .who {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.eh-voice .av {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--eh-ink);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  font-weight: 700;
}

.eh-voice .who b {
  display: block;
  font-weight: 700;
}

.eh-voice .who span {
  font-size: 0.85rem;
  color: rgba(10, 10, 10, 0.55);
}

/* ---- circle v2 ---- */
.eh-circle-v2 .eh-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

@media (max-width: 920px) {
  .eh-circle-v2 .eh-2col {
    grid-template-columns: 1fr;
  }
}

.eh-circle-v2 img {
  width: 100%;
  border-radius: var(--eh-radius);
  box-shadow: 0 28px 70px rgba(10, 10, 10, 0.12);
}

.eh-circle-v2 .eh-chips {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin: 1.2rem 0;
}

.eh-circle-v2 .eh-chip {
  display: inline-flex;
  padding: 0.5rem 0.9rem;
  border: 1px solid rgba(10, 10, 10, 0.12);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  background: #fff;
  color: var(--eh-ink);
}

/* ---- FAQ v2 ---- */
.eh-faq-v2 .eh-faq {
  max-width: 820px;
  margin-top: 2.5rem;
}

.eh-faq-v2 details {
  border-bottom: 1px solid rgba(10, 10, 10, 0.1);
  padding: 1.4rem 0;
  background: var(--eh-cream);
  color: var(--eh-ink);
}

.eh-faq-v2 summary {
  font-family: "Archivo", system-ui, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--eh-ink);
}

.eh-faq-v2 summary::-webkit-details-marker {
  display: none;
}

.eh-faq-v2 summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--eh-coral);
  transition: transform 0.25s var(--eh-ease);
}

.eh-faq-v2 details[open] summary::after {
  transform: rotate(45deg);
}

.eh-faq-v2 details p {
  margin-top: 0.8rem;
  color: rgba(10, 10, 10, 0.65);
  line-height: 1.6;
}

/* ---- closing cta v2 ---- */
.eh-close-v2 {
  text-align: center;
}

.eh-close-v2 .eh-h2 {
  max-width: 900px;
  margin: 0 auto;
}

.eh-close-v2 .eh-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

/* ---- reveal helpers for v2 ---- */
.eh-reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.9s var(--eh-ease),
    transform 0.9s var(--eh-ease);
  transition-delay: var(--d, 0s);
}

.eh-reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .eh-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---- v2 mobile menu contrast ---- */
@media (max-width: 900px) {
  .eh-v2 .h-nav .nav-links {
    background: var(--eh-ink);
  }

  .eh-v2 .h-nav .nav-links li {
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }

  .eh-v2 .h-nav .nav-links a,
  .eh-v2 .h-nav .nav-links .h-btn {
    color: #fff;
  }

  .eh-v2 .h-nav .nav-links .h-btn {
    border-color: rgba(255, 255, 255, 0.35);
  }
}

/* ---- cursor spotlight on dark v2 sections ---- */
.eh-section-v2.eh-dark {
  position: relative;
}

.eh-section-v2.eh-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(
    520px circle at var(--spot-x, 50%) var(--spot-y, 50%),
    rgba(218, 58, 34, 0.11),
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.eh-section-v2.eh-dark.spot-active::before {
  opacity: 1;
}

.eh-section-v2.eh-dark > .eh-wrap {
  position: relative;
  z-index: 2;
}

/* ---- 3D tilt cards ---- */
.eh-tilt {
  transform-style: preserve-3d;
  transform: perspective(1000px) rotateX(var(--rx, 0deg))
    rotateY(var(--ry, 0deg));
  transition: transform 0.12s ease-out;
}

.eh-tilt .eh-card-img img,
.eh-tilt .eh-card-body {
  transform: translateZ(20px);
}

/* ---- sticky side panels ---- */
.eh-sticky {
  position: sticky;
  top: 30vh;
}

@media (max-width: 920px) {
  .eh-sticky {
    position: static;
  }
}

/* ---- inner pages v2 theme ---- */
.eh-v2 .h-page-hero,
.eh-v2 .p-hero {
  min-height: 70svh;
  background: var(--eh-ink);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.eh-v2 .h-page-hero h1,
.eh-v2 .p-hero h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  color: #fff;
}

.eh-v2 .h-page-hero h1 em,
.eh-v2 .p-hero h1 em {
  color: var(--eh-coral);
}

.eh-v2 .h-page-hero .sub,
.eh-v2 .p-hero .sub {
  color: rgba(255, 255, 255, 0.7);
}

.eh-v2 .h-crumbs,
.eh-v2 .p-hero .crumbs {
  color: rgba(255, 255, 255, 0.5);
}

.eh-v2 .h-crumbs a,
.eh-v2 .p-hero .crumbs a {
  color: rgba(255, 255, 255, 0.65);
}

.eh-v2 .h-crumbs a:hover,
.eh-v2 .p-hero .crumbs a:hover {
  color: #fff;
}

.eh-v2 .h-page-hero .h-eyebrow,
.eh-v2 .p-hero .p-name {
  color: var(--eh-coral-2);
}

.eh-v2 .h-page-hero .h-eyebrow::before,
.eh-v2 .p-hero .p-name::before {
  background: var(--eh-coral-2);
}

.eh-v2 .p-hero .book-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  backdrop-filter: blur(8px);
}

.eh-v2 .book-card .bc-format {
  color: var(--eh-coral-2);
}

.eh-v2 .book-card .bc-price {
  color: #fff;
}

.eh-v2 .book-card .bc-price-note,
.eh-v2 .book-card .bc-list li,
.eh-v2 .book-card .bc-note {
  color: rgba(255, 255, 255, 0.7);
}

.eh-v2 .book-card .bc-list {
  border-color: rgba(255, 255, 255, 0.1);
}

.eh-v2 .p-hero .motif {
  filter: brightness(1.8);
}

.eh-v2 .h-img-banner,
.eh-v2 .img-banner {
  border: 1px solid rgba(10, 10, 10, 0.08);
}

.eh-v2 .h-section.light,
.eh-v2 .h-section {
  background: var(--eh-cream);
  color: var(--eh-ink);
}

.eh-v2 .h-section.alt {
  background: #fff;
  color: var(--eh-ink);
}

.eh-v2 .h-section h1,
.eh-v2 .h-section h2,
.eh-v2 .h-section h3,
.eh-v2 .h-section h4,
.eh-v2 .h-section p,
.eh-v2 .h-section li,
.eh-v2 .h-section.alt h1,
.eh-v2 .h-section.alt h2,
.eh-v2 .h-section.alt h3,
.eh-v2 .h-section.alt h4,
.eh-v2 .h-section.alt p,
.eh-v2 .h-section.alt li {
  color: inherit;
}

.eh-v2 .h-section .h-h1,
.eh-v2 .h-section .h-h2,
.eh-v2 .h-section .h-h3,
.eh-v2 .h-section .h-lede,
.eh-v2 .h-section.alt .h-h1,
.eh-v2 .h-section.alt .h-h2,
.eh-v2 .h-section.alt .h-h3,
.eh-v2 .h-section.alt .h-lede {
  color: var(--eh-ink);
}

.eh-v2 .h-section .h-eyebrow,
.eh-v2 .h-section.alt .h-eyebrow {
  color: var(--eh-coral);
}

.eh-v2 .h-section .h-eyebrow::before,
.eh-v2 .h-section.alt .h-eyebrow::before {
  background: var(--eh-coral);
}

.eh-v2 .h-section .h-card,
.eh-v2 .h-section.alt .h-card,
.eh-v2 .h-section .h-step,
.eh-v2 .h-section.alt .h-step,
.eh-v2 .h-section .h-voice,
.eh-v2 .h-section.alt .h-voice {
  background: #fff;
  border-color: rgba(10, 10, 10, 0.08);
  color: var(--eh-ink);
}

.eh-v2 .h-section .h-card-body h3,
.eh-v2 .h-section.alt .h-card-body h3,
.eh-v2 .h-section .h-step h3,
.eh-v2 .h-section.alt .h-step h3,
.eh-v2 .h-section .h-voice blockquote,
.eh-v2 .h-section.alt .h-voice blockquote,
.eh-v2 .h-section .h-voice .who b,
.eh-v2 .h-section.alt .h-voice .who b {
  color: var(--eh-ink);
}

.eh-v2 .h-section .h-card-body p,
.eh-v2 .h-section.alt .h-card-body p,
.eh-v2 .h-section .h-step p,
.eh-v2 .h-section.alt .h-step p,
.eh-v2 .h-section .h-voice p,
.eh-v2 .h-section.alt .h-voice p,
.eh-v2 .h-section .h-voice .who span,
.eh-v2 .h-section.alt .h-voice .who span {
  color: rgba(10, 10, 10, 0.65);
}

.eh-v2 .h-section .h-faq summary,
.eh-v2 .h-section.alt .h-faq summary {
  color: var(--eh-ink);
}

.eh-v2 .h-section .h-faq details p,
.eh-v2 .h-section.alt .h-faq details p {
  color: rgba(10, 10, 10, 0.65);
}

.eh-v2 .h-section .h-chip,
.eh-v2 .h-section.alt .h-chip {
  background: #fff;
  border-color: rgba(10, 10, 10, 0.12);
  color: var(--eh-ink);
}

.eh-v2 .h-section .h-btn-ghost,
.eh-v2 .h-section.alt .h-btn-ghost {
  color: var(--eh-ink);
  border-color: rgba(10, 10, 10, 0.25);
}

.eh-v2 .h-section .h-btn-ghost:hover,
.eh-v2 .h-section.alt .h-btn-ghost:hover {
  background: rgba(10, 10, 10, 0.04);
  border-color: rgba(10, 10, 10, 0.4);
}

.eh-v2 .h-section .h-btn-secondary,
.eh-v2 .h-section.alt .h-btn-secondary {
  background: var(--eh-ink);
  color: #fff;
  border-color: transparent;
}

.eh-v2 .h-section .h-btn-secondary:hover,
.eh-v2 .h-section.alt .h-btn-secondary:hover {
  background: #222;
}

.eh-v2 .h-page-hero .h-btn-ghost,
.eh-v2 .p-hero .h-btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.eh-v2 .h-page-hero .h-btn-ghost:hover,
.eh-v2 .p-hero .h-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
}

.eh-v2 .h-page-hero .h-btn-secondary,
.eh-v2 .p-hero .h-btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.eh-v2 .h-page-hero .h-btn-secondary:hover,
.eh-v2 .p-hero .h-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

/* ==========================================================================
   v2 contrast safeguards — prevent white-on-white / dark-on-dark regressions
   ========================================================================== */

/* Light v2 sections: force dark readable text */
.eh-v2 .eh-section-v2.eh-light,
.eh-v2 .eh-section-v2.eh-light .eh-h2,
.eh-v2 .eh-section-v2.eh-light h3,
.eh-v2 .eh-section-v2.eh-light p,
.eh-v2 .eh-section-v2.eh-light li,
.eh-v2 .eh-section-v2.eh-light summary,
.eh-v2 .eh-section-v2.eh-light blockquote,
.eh-v2 .eh-section-v2.eh-light .kicker,
.eh-v2 .eh-section-v2.eh-light .eh-card-link,
.eh-v2 .eh-section-v2.eh-light .who b {
  color: var(--eh-ink);
}

.eh-v2 .eh-section-v2.eh-light .eh-lead,
.eh-v2 .eh-section-v2.eh-light .eh-step p,
.eh-v2 .eh-section-v2.eh-light .eh-voice p,
.eh-v2 .eh-section-v2.eh-light .eh-pillar-card p,
.eh-v2 .eh-section-v2.eh-light .eh-faq-v2 details p,
.eh-v2 .eh-section-v2.eh-light .who span {
  color: rgba(10, 10, 10, 0.65);
}

.eh-v2 .eh-section-v2.eh-light .eh-btn-light {
  color: var(--eh-ink);
  border-color: rgba(10, 10, 10, 0.25);
}

/* Dark v2 sections: force light readable text (preserve coral accents) */
.eh-v2 .eh-section-v2.eh-dark,
.eh-v2 .eh-section-v2.eh-dark .eh-h2,
.eh-v2 .eh-section-v2.eh-dark h3,
.eh-v2 .eh-section-v2.eh-dark p,
.eh-v2 .eh-section-v2.eh-dark li,
.eh-v2 .eh-section-v2.eh-dark summary,
.eh-v2 .eh-section-v2.eh-dark blockquote,
.eh-v2 .eh-section-v2.eh-dark .who b,
.eh-v2 .eh-section-v2.eh-dark .who span {
  color: #fff;
}

.eh-v2 .eh-section-v2.eh-dark .eh-lead {
  color: rgba(255, 255, 255, 0.65);
}

/* Inner-page v2 sections */
.eh-v2 .h-section,
.eh-v2 .h-section.alt {
  color: var(--eh-ink);
}

.eh-v2 .h-section .h-h1,
.eh-v2 .h-section .h-h2,
.eh-v2 .h-section .h-h3,
.eh-v2 .h-section .h-lede,
.eh-v2 .h-section p,
.eh-v2 .h-section li,
.eh-v2 .h-section summary,
.eh-v2 .h-section .h-card-body h3,
.eh-v2 .h-section .h-step h3,
.eh-v2 .h-section .h-voice blockquote,
.eh-v2 .h-section .h-voice .who b,
.eh-v2 .h-section .h-faq summary {
  color: var(--eh-ink);
}

.eh-v2 .h-section .h-lede,
.eh-v2 .h-section .h-card-body p,
.eh-v2 .h-section .h-step p,
.eh-v2 .h-section .h-voice p,
.eh-v2 .h-section .h-voice .who span,
.eh-v2 .h-section .h-faq details p {
  color: rgba(10, 10, 10, 0.65);
}

/* Footer newsletter input must stay dark-on-light */
.h-footer .h-lead-form input,
.h-footer .h-lead-form input::placeholder {
  background: var(--h-paper) !important;
  color: var(--h-navy) !important;
}

.h-footer .h-lead-form input::placeholder {
  color: var(--h-muted-2) !important;
}

/* No-JS / slow-JS fallback: keep v2 reveals readable by default */
.eh-v2 .eh-reveal,
.eh-v2 .reveal {
  opacity: 1;
  transform: none;
}

.eh-v2.anim .eh-reveal {
  opacity: 0;
  transform: translateY(36px);
}

.eh-v2.anim .eh-reveal.in {
  opacity: 1;
  transform: none;
}

.eh-v2.anim .reveal {
  opacity: 0;
  transform: translateY(26px) scale(0.985);
}

.eh-v2.anim .reveal.in-view {
  opacity: 1;
  transform: none;
}

/* Respect users who prefer reduced motion. */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .scroll-progress,
  .hero-shimmer,
  .p-hero::before,
  .h-page-hero::before {
    display: none;
  }

  .h-img-banner img,
  .img-banner img,
  .h-hero-visual,
  .h-page-hero .lattice-bg,
  .p-hero .motif,
  .p-hero .book-card {
    transform: none !important;
  }
}

/* ==========================================================================
   Global UX polish — auto-reveal, scroll progress, banner sizing.
   Added 2026-08-27.
   ========================================================================== */

/* ---- scroll progress bar ---- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: var(--progress, 0%);
  background: linear-gradient(
    90deg,
    var(--eh-gold, #b8862e),
    var(--eh-coral, #e26a5c)
  );
  z-index: 9999;
  pointer-events: none;
  transition: width 0.1s linear;
}

/* ---- auto-reveal animation (applied by app.js to sections/cards) ---- */
.anim .auto-reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(3px);
  transition:
    opacity 0.7s var(--h-ease, cubic-bezier(0.22, 0.61, 0.36, 1)),
    transform 0.7s var(--h-ease, cubic-bezier(0.22, 0.61, 0.36, 1)),
    filter 0.7s var(--h-ease, cubic-bezier(0.22, 0.61, 0.36, 1));
  transition-delay: var(--ar-d, 0s);
}

.anim .auto-reveal.auto-revealed {
  opacity: 1;
  transform: none;
  filter: none;
}

/* Slightly different motion for cards to feel tactile */
.anim .h-product.auto-reveal,
.anim .h-assess-card.auto-reveal,
.anim .h-value-card.auto-reveal,
.anim .h-service-card.auto-reveal,
.anim .h-door.auto-reveal,
.anim .h-offer.auto-reveal {
  transform: translateY(36px) scale(0.98);
}

.anim .h-product.auto-reveal.auto-revealed,
.anim .h-assess-card.auto-reveal.auto-revealed,
.anim .h-value-card.auto-reveal.auto-revealed,
.anim .h-service-card.auto-reveal.auto-revealed,
.anim .h-door.auto-reveal.auto-revealed,
.anim .h-offer.auto-reveal.auto-revealed {
  transform: none;
}

/* ---- banner image sizing ---- */
.h-img-banner,
.img-banner,
.h-page-hero figure,
.p-hero figure {
  max-height: 62vh;
  overflow: hidden;
}

.h-img-banner img,
.img-banner img,
.h-page-hero figure img,
.p-hero figure img {
  width: 100%;
  height: 100%;
  max-height: 62vh;
  object-fit: cover;
}

@media (max-width: 768px) {
  .h-img-banner,
  .img-banner,
  .h-page-hero figure,
  .p-hero figure {
    max-height: 42vh;
  }

  .h-img-banner img,
  .img-banner img,
  .h-page-hero figure img,
  .p-hero figure img {
    max-height: 42vh;
  }
}

/* ---- card hover lift (global) ---- */
.h-product,
.h-assess-card,
.h-value-card,
.h-service-card,
.h-door,
.h-offer {
  transition:
    transform 0.25s var(--h-ease, ease),
    box-shadow 0.25s var(--h-ease, ease);
}

.h-product:hover,
.h-assess-card:hover,
.h-value-card:hover,
.h-service-card:hover,
.h-door:hover,
.h-offer:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.1);
}

/* ---- homepage white-on-white fixes ---- */
/* Pillar cards live inside a dark section but have white backgrounds;
   keep their text dark so they remain readable. */
.eh-v2 .eh-section-v2.eh-dark .eh-pillar-card,
.eh-v2 .eh-section-v2.eh-dark .eh-pillar-card h3,
.eh-v2 .eh-section-v2.eh-dark .eh-pillar-card p,
.eh-v2 .eh-section-v2.eh-dark .eh-pillar-card .eh-card-bullets,
.eh-v2 .eh-section-v2.eh-dark .eh-pillar-card .eh-card-bullets li {
  color: var(--eh-ink);
}

/* Footer newsletter input sits on a light background and reuses the
   dark-band form component; reset text and placeholder colours. */
.h-footer .h-lead-form input {
  color: var(--h-navy);
}

.h-footer .h-lead-form input::placeholder {
  color: var(--h-muted-2);
}

/* ---- trust strip ---- */
.eh-trust-strip {
  background: var(--eh-ink);
  color: #fff;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.eh-trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.eh-trust-items span {
  position: relative;
}

.eh-trust-items span:not(:last-child)::after {
  content: "•";
  position: absolute;
  right: -1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--eh-coral);
  font-size: 0.6rem;
}

@media (max-width: 560px) {
  .eh-trust-items span:not(:last-child)::after {
    display: none;
  }
  .eh-trust-items {
    flex-direction: column;
    gap: 0.4rem;
  }
}

/* ---- explore swipe cards ---- */
.eh-explore {
  padding-bottom: 0;
}

.eh-swipe-row {
  margin-top: 2.5rem;
}

/* Desktop: the two co-equal paths sit as a centered two-column pair,
   not a left-aligned mobile carousel that leaves the right half empty. */
@media (min-width: 861px) {
  .eh-explore .eh-swipe-row-track {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem;
    justify-content: center;
    max-width: 760px;
    margin: 0 auto;
    overflow: visible;
    padding-bottom: 0;
  }
  .eh-explore .eh-explore-card {
    flex: initial;
    max-width: none;
    width: 100%;
  }
  .eh-explore .eh-swipe-dots {
    display: none;
  }
}

.eh-swipe-row-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0.5rem 0 1.5rem;
}

.eh-swipe-row-track::-webkit-scrollbar {
  display: none;
}

.eh-explore-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: var(--eh-radius);
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(10, 10, 10, 0.06);
  transition:
    transform 0.35s var(--eh-ease),
    box-shadow 0.35s var(--eh-ease);
}

.eh-explore-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 50px rgba(10, 10, 10, 0.1);
}

.eh-explore-card:hover .eh-explore-img img {
  transform: scale(1.07);
}

.eh-explore-img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--eh-cream-2);
}

.eh-explore-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--eh-ease);
}

.eh-explore-body {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.eh-explore-body .kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--eh-coral);
  margin-bottom: 0.4rem;
}

.eh-explore-body h3 {
  font-family: "Archivo", system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 0.5rem;
  color: var(--eh-ink);
}

.eh-explore-body p {
  font-size: 0.98rem;
  color: rgba(10, 10, 10, 0.65);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 1rem;
}

.eh-explore-link {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--eh-coral);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.25s;
}

.eh-explore-link:hover {
  gap: 0.7rem;
}

.eh-swipe-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.eh-swipe-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(10, 10, 10, 0.2);
  cursor: pointer;
  transition:
    background 0.25s,
    transform 0.25s;
}

.eh-swipe-dots button.active {
  background: var(--eh-coral);
  transform: scale(1.2);
}

/* ---- image animations ---- */
@keyframes eh-ken-burns {
  0% {
    transform: scale(1.08) translate(0, 0);
  }
  100% {
    transform: scale(1.18) translate(-2%, -1%);
  }
}

.eh-explore-card .eh-explore-img img,
.eh-circle-v2 img,
.h-card-img img,
.h-page-hero figure img,
.p-hero figure img,
.img-banner img {
  transition: transform 0.8s var(--eh-ease);
}

.eh-circle-v2:hover img,
.h-card:hover .h-card-img img {
  transform: scale(1.06);
}

.h-page-hero figure img,
.p-hero figure img,
.img-banner img {
  animation: eh-ken-burns 20s ease-in-out infinite alternate;
}

@media (prefers-reduced-motion: reduce) {
  .h-page-hero figure img,
  .p-hero figure img,
  .img-banner img {
    animation: none;
    transform: none;
  }
}

/* ==========================================================================
   Clarity Scorecard + Brand Check modal popups
   These styles used to be injected by app.js as inline <style> elements, but
   that is blocked by our strict CSP (style-src-elem only allows hashes from
   static HTML files). Keeping them in this external stylesheet lets the modal
   open and keeps the nav links emphasised.
   ========================================================================== */

/* ---- nav emphasis ---- */
.nav-links a[href*="clarity-scorecard"],
.nav-links a[href*="brand-check"] {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.5em 0.95em;
  border: 1px solid var(--gold, #b8862e);
  border-radius: 8px;
  color: var(--gold, #b8862e) !important;
  font-weight: 600;
  transition:
    background 0.15s,
    color 0.15s;
}
.nav-links a[href*="clarity-scorecard"]:hover,
.nav-links a[href*="brand-check"]:hover {
  background: var(--gold, #b8862e);
  color: #fff !important;
}

/* ---- shared overlay / modal ---- */
.sc-overlay,
.bc-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(20, 20, 35, 0.62);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.sc-overlay.on,
.bc-overlay.on {
  opacity: 1;
}

.sc-modal,
.bc-modal {
  position: relative;
  width: 100%;
  max-width: 820px;
  height: min(88vh, 900px);
  background: #fbf9f5;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  transform: translateY(10px) scale(0.99);
  transition: transform 0.2s ease;
}
.bc-modal {
  height: min(90vh, 940px);
}
.sc-overlay.on .sc-modal,
.bc-overlay.on .bc-modal {
  transform: none;
}
.sc-modal iframe,
.bc-modal iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.sc-close,
.bc-close {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  background: rgba(26, 26, 46, 0.9);
  color: #fff;
  font-size: 20px;
  line-height: 38px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}
.sc-close:hover,
.bc-close:hover {
  background: #1a1a2e;
}

.sc-trap,
.bc-trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

@media (max-width: 640px) {
  .sc-modal {
    height: 92vh;
    max-width: 100%;
    border-radius: 14px;
  }
  .bc-modal {
    height: 94vh;
    max-width: 100%;
    border-radius: 14px;
  }
}
