/* =============================================================
   home.css — Netism homepage 1:1 rebuild
   ============================================================= */

:root {
  --hm-paper:        #f6f0e3;
  --hm-paper-soft:   #ede4d0;
  --hm-cream:        #faf6ec;
  --hm-ink:          #1f1d18;
  --hm-ink-soft:     #5b554a;
  --hm-ink-mute:     #8a8273;
  --hm-rule:         #e0d6c2;
  --hm-rule-soft:    #ebe3d2;
  --hm-ochre:        #b8741f;
  --hm-ochre-deep:   #8c5414;
  --hm-ochre-soft:   #d49a4a;
  --hm-dark:         #14110c;
  --hm-dark-soft:    #1f1a13;
  --hm-cream-on-dark:#e8dec8;
}

/* Strip default home styling, override with hm- system below */
.hm-page main { padding: 0; margin: 0; max-width: none; overflow-x: clip; }
.hm-page { background: var(--hm-paper); }
.hm-page,
.hm-page *,
.hm-page *::before,
.hm-page *::after { box-sizing: border-box; min-width: 0; }
.hm-page p,
.hm-page li,
.hm-page h1,
.hm-page h2,
.hm-page h3 { overflow-wrap: break-word; }

/* Typography utilities */
.hm-eyebrow {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hm-ochre);
  margin: 0 0 12px;
}
.hm-eyebrow.dark { color: var(--hm-ochre-soft); }
.hm-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--hm-ink);
  margin: 0 0 20px;
}
.hm-headline.h1 { font-size: clamp(38px, 5vw, 62px); }
.hm-headline.h2 { font-size: clamp(28px, 3.6vw, 44px); }
.hm-headline.h3 { font-size: clamp(24px, 2.6vw, 34px); }
.hm-headline em { font-style: italic; color: var(--hm-ochre-deep); }
.hm-deck {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--hm-ink-soft);
  margin: 0 0 32px;
  max-width: 460px;
}

/* Buttons */
.hm-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 19px;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.06s ease;
  cursor: pointer;
}
.hm-btn-primary { background: var(--hm-ochre); color: #fff; border: 1px solid var(--hm-ochre); }
.hm-btn-primary:hover { background: var(--hm-ochre-deep); border-color: var(--hm-ochre-deep); color: #fff; }
.hm-btn-outline { background: transparent; color: var(--hm-ochre-deep); border: 1px solid var(--hm-ochre); }
.hm-btn-outline:hover { background: rgba(184, 116, 31, 0.08); }
.hm-btn .hm-arrow { font-size: 1.1em; line-height: 1; transition: transform 0.18s ease; }
.hm-btn:hover .hm-arrow { transform: translateX(3px); }
.hm-link {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 16px; font-style: italic;
  color: var(--hm-ochre-deep);
  text-decoration: none;
  border-bottom: 1px solid var(--hm-ochre);
  padding-bottom: 2px;
}
.hm-link:hover { color: var(--hm-ochre); }

/* HEADER OVERRIDE */
.hm-page .site-header { background: #11100d; border-bottom: 1px solid rgba(212, 154, 74, 0.18); }
.hm-page .header-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  max-width: 1440px;
  padding: 14px 32px;
}
.hm-page .brand-link { display: inline-flex; align-items: center; text-decoration: none; min-width: 136px; }
.hm-page .site-header .brand-mark { display: block; height: 46px; width: auto; filter: none; }
.hm-page .hm-footer-logo-img { display: block; height: 46px; width: auto; filter: none; opacity: 0.96; }
/* Header CTA (homepage variant of the donate slot) */
.hm-page .header-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 15px;
  color: #fff7e6;
  text-decoration: none;
  border: 1px solid var(--hm-ochre);
  background: var(--hm-ochre);
  padding: 9px 18px;
  border-radius: 2px;
  transition: background 0.18s ease;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1.1;
}
.hm-page .header-cta:hover { background: var(--hm-ochre-deep); color: #fff; }
.hm-page .header-cta-arrow { transition: transform 0.18s ease; flex-shrink: 0; }
.hm-page .header-cta:hover .header-cta-arrow { transform: translateX(3px); }
/* Drop the "Begin the " prefix at narrower widths so the button stays single-line */
@media (max-width: 1240px) {
  .hm-page .header-cta-prefix { display: none; }
}
@media (max-width: 1080px) {
  .hm-page .header-cta { font-size: 13.5px; padding: 7px 14px; gap: 6px; }
}
.hm-page .primary-nav { justify-self: center; }
.hm-page .cluster-list { display: flex; gap: 26px; list-style: none; padding: 0; margin: 0; }
.hm-page .cluster-link {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250, 246, 236, 0.88);
  text-decoration: none;
  transition: color 0.18s ease;
}
.hm-page .cluster-link:hover, .hm-page .cluster-link.active { color: var(--hm-ochre); }
.hm-page .header-actions { display: flex; align-items: center; gap: 14px; }
.hm-page .utility-nav { gap: 18px; margin: 0 4px 0 8px; flex-shrink: 0; }
@media (max-width: 1320px) { .hm-page .utility-nav { display: none; } }
.hm-page .search-trigger {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent; border: none; cursor: pointer;
  padding: 6px 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: rgba(250, 246, 236, 0.72);
}
.hm-page .search-trigger kbd {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  border: 1px solid rgba(250, 246, 236, 0.24); padding: 1px 5px; border-radius: 3px;
  margin-left: 2px;
}
.hm-page .donate-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 15px;
  color: var(--hm-ochre-deep);
  text-decoration: none;
  border: 1px solid var(--hm-ochre);
  padding: 9px 18px;
  border-radius: 2px;
  transition: background 0.18s ease;
}
.hm-page .donate-link:hover { background: rgba(184, 116, 31, 0.08); }
.hm-page .donate-link::after { content: '→'; }
@media (max-width: 640px) { .hm-page .header-grid { grid-template-columns: auto auto auto; gap: 12px; padding: 18px; } }
@media (max-width: 640px) { .hm-page .brand-link { min-width: 128px; } .hm-page .search-trigger { padding: 6px 2px; } .hm-page .search-trigger span, .hm-page .search-trigger kbd { display: none; } .hm-page .header-cta { font-size: 12.5px; padding: 9px 10px; } }

/* HERO */
.hm-hero {
  background: var(--hm-dark);
  background-image: radial-gradient(ellipse at 20% 30%, rgba(212, 154, 74, 0.10) 0%, transparent 55%), radial-gradient(ellipse at 80% 70%, rgba(184, 116, 31, 0.08) 0%, transparent 65%);
  color: var(--hm-cream-on-dark);
  padding: clamp(48px, 8vh, 88px) 0 clamp(8px, 1.5vh, 24px);
  border-bottom: 1px solid var(--hm-dark-soft);
  position: relative;
  overflow: hidden;
  min-height: 548px;
}
.hm-hero-canvas-wrap { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hm-hero-canvas { width: 100%; height: 100%; display: block; }
/* Veil — radial darken on the left so the text reads, no flat overlay killing the visualization */
.hm-hero-veil {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(ellipse 60% 80% at 22% 50%, rgba(20, 17, 12, 0.78) 0%, rgba(20, 17, 12, 0.45) 38%, rgba(20, 17, 12, 0) 70%);
}
.hm-hero-inner { max-width: 1280px; margin: 0 auto; padding: 0 clamp(24px, 4vw, 48px); position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 540px) 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
@media (max-width: 900px) { .hm-hero-inner { grid-template-columns: 1fr; }
  .hm-hero-veil { background: linear-gradient(180deg, rgba(20, 17, 12, 0.65) 0%, rgba(20, 17, 12, 0.35) 50%, rgba(20, 17, 12, 0.7) 100%); }
}
@media (max-width: 640px) { .hm-hero { min-height: 548px; padding: 68px 0 34px; } .hm-hero-inner { padding: 0 24px; } .hm-hero .hm-headline.h1 { font-size: clamp(36px, 11vw, 44px); } .hm-hero-deck { max-width: 100%; } .hm-hero .hm-btn { width: 100%; justify-content: center; padding-inline: 16px; } .hm-hero-cta-meta { flex-wrap: wrap; } }
.hm-hero .hm-eyebrow { color: var(--hm-ochre-soft); }
.hm-hero .hm-headline { color: #fff; text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5); }
.hm-hero-deck { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 17px; line-height: 1.55; color: var(--hm-cream-on-dark); margin: 0 0 24px; max-width: 440px; text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4); }
.hm-hero-cta-meta { display: flex; align-items: center; gap: 8px; margin-top: 14px; font-family: 'JetBrains Mono', monospace; font-size: 11.5px; color: rgba(232, 222, 200, 0.7); }
.hm-hero-cta-meta svg { color: var(--hm-ochre-soft); flex-shrink: 0; }

/* WHAT IS NETISM — capped at 430px so the text and image card both breathe */
.hm-what { background: var(--hm-cream); padding: 32px 0; border-bottom: 1px solid var(--hm-rule); max-height: 430px; overflow: hidden; }
.hm-what-inner { max-width: 1280px; margin: 0 auto; padding: 0 clamp(24px, 4vw, 48px); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
.hm-what .hm-eyebrow { margin: 0 0 10px; font-size: 12px; }
.hm-what .hm-headline.h2 { font-size: clamp(26px, 3vw, 36px); margin: 0 0 14px; line-height: 1.1; }
.hm-what .hm-link { font-size: 15px; }
@media (max-width: 900px) { .hm-what-inner { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .hm-what { max-height: none; overflow: visible; padding: 40px 0; } }
@media (max-width: 640px) { .hm-what-inner { padding: 0 24px; } .hm-what-image-frame { grid-template-columns: 1fr; height: auto; margin-top: 18px; } .hm-what-image { min-height: 220px; } .hm-what-quote { border-left: 0; border-top: 1px solid var(--hm-rule); height: auto; padding: 24px; } }
.hm-what-list { list-style: none; padding: 0; margin: 16px 0 18px; display: flex; flex-direction: column; gap: 8px; }
.hm-what-list li { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 16px; line-height: 1.45; color: var(--hm-ink); display: flex; align-items: flex-start; gap: 10px; }
.hm-what-list li::before { content: ''; width: 8px; height: 8px; border: 1.5px solid var(--hm-ochre); border-radius: 50%; margin-top: 9px; flex-shrink: 0; }
/* Unified rounded box: image + quote joined as one card with shadow */
.hm-what-image-frame {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  align-items: stretch;
  height: 366px;
  border: 1px solid var(--hm-rule);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 38px rgba(20, 17, 12, 0.14), 0 2px 6px rgba(20, 17, 12, 0.06);
  background: var(--hm-cream);
}
.hm-what-image {
  height: 100%;
  background:
    radial-gradient(circle at 50% 46%, rgba(244, 200, 120, 0.44) 0%, rgba(212, 148, 71, 0.13) 38%, rgba(0, 0, 0, 0) 66%),
    radial-gradient(circle at 50% 50%, #34220f 0%, #1a110a 55%, #090503 100%);
  display: grid;
  place-items: center;
  border: none;
  position: relative;
  overflow: hidden;
}
.hm-what-motif {
  width: 86%;
  max-width: 332px;
  height: auto;
  opacity: 1;
  animation: hm-what-glow 7s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .hm-what-motif { animation: none; filter: drop-shadow(0 0 14px rgba(244, 200, 120, 0.5)); }
}
@keyframes hm-what-glow {
  0%, 100% { filter: drop-shadow(0 0 12px rgba(244, 200, 120, 0.4)); }
  50%      { filter: drop-shadow(0 0 26px rgba(244, 200, 120, 0.68)); }
}
.hm-what-quote {
  background: var(--hm-cream);
  border: none;
  border-left: 1px solid var(--hm-rule);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  height: 100%;
}
.hm-what-quote-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 700;
  font-style: italic;
  line-height: 1.4;
  color: var(--hm-ink);
  margin: 0 0 16px;
}
.hm-what-quote-attr {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--hm-ink-soft);
  margin: 0;
}
.hm-what-quote-attr em { font-style: italic; color: var(--hm-ochre-deep); font-weight: 600; }
.hm-what-quote-symbol { position: absolute; bottom: 12px; right: 12px; width: 44px; height: 44px; opacity: 0.30; }

/* THE NET ─ EXPLAINER OVERLAY (home_intro mode) ────────────────── */
.hm-net-ex {
  position: fixed; inset: 0;
  background: #08070a;
  z-index: 1000;
  display: block;
  opacity: 0;
  transition: opacity 0.5s ease;
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--hm-cream-on-dark);
}
.hm-net-ex[hidden] { display: none; }
.hm-net-ex.is-open { opacity: 1; }
body.hm-net-ex-open { overflow: hidden; }

.hm-net-ex-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
}
/* Full-screen iframe hosting the Multiverse explainer */
.hm-net-ex-frame {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0; display: block;
  background: #08070a;
}

/* Top-left title block */
.hm-net-ex-title-block {
  position: absolute;
  top: 24px; left: 32px;
  z-index: 2;
  pointer-events: none;
}
.hm-net-ex-eyebrow {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--hm-ochre-soft);
  margin: 0 0 4px;
}
.hm-net-ex-title {
  font-size: 18px; font-weight: 400;
  color: var(--hm-cream-on-dark);
  margin: 0;
  letter-spacing: 0.01em;
}

/* Top-right close */
.hm-net-ex-close {
  position: absolute;
  top: 18px; right: 24px;
  z-index: 3;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 154, 74, 0.3);
  border-radius: 2px;
  color: var(--hm-cream-on-dark);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease;
}
.hm-net-ex-close:hover { background: rgba(255, 255, 255, 0.08); border-color: var(--hm-ochre); }

/* Bottom-left mode label */
.hm-net-ex-mode {
  position: absolute;
  bottom: 24px; left: 32px;
  z-index: 2;
  margin: 0;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--hm-ochre-soft);
  pointer-events: none;
}

/* Bottom-center prompt */
.hm-net-ex-prompt {
  position: absolute;
  left: 50%; bottom: 36px;
  transform: translateX(-50%);
  z-index: 2;
  padding: 10px 22px;
  background: rgba(20, 17, 12, 0.6);
  border: 1px solid rgba(212, 154, 74, 0.25);
  border-radius: 999px;
  font-size: 14px; font-style: italic;
  color: var(--hm-cream-on-dark);
  pointer-events: none;
  opacity: 0;
  animation: hmNetExPromptIn 0.6s ease 0.2s forwards;
}
.hm-net-ex-prompt[hidden] { display: none; }
@keyframes hmNetExPromptIn { to { opacity: 1; } }

/* Bottom-right controls */
.hm-net-ex-controls {
  position: absolute;
  bottom: 22px; right: 24px;
  z-index: 2;
  display: flex; gap: 8px;
}
.hm-net-ex-ctl {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 154, 74, 0.25);
  border-radius: 2px;
  color: var(--hm-cream-on-dark);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease;
}
.hm-net-ex-ctl:hover { background: rgba(255, 255, 255, 0.08); border-color: var(--hm-ochre); }

/* Right-docked focus panel */
.hm-net-ex-focus {
  position: absolute;
  top: 50%; right: 32px;
  transform: translateY(-50%) translateX(20px);
  z-index: 4;
  width: clamp(280px, 28vw, 380px);
  background: rgba(15, 12, 8, 0.92);
  border: 1px solid rgba(212, 154, 74, 0.3);
  border-radius: 6px;
  padding: 28px 26px;
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.hm-net-ex-focus.is-open { opacity: 1; transform: translateY(-50%) translateX(0); }
.hm-net-ex-focus[hidden] { display: none; }
.hm-net-ex-focus-eyebrow {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--hm-ochre-soft);
  margin: 0 0 8px;
}
.hm-net-ex-focus-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px; font-weight: 400;
  color: #fff;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.hm-net-ex-focus-body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 16px; line-height: 1.55;
  color: var(--hm-cream-on-dark);
  margin: 0 0 22px;
}
.hm-net-ex-focus-back {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  background: transparent;
  border: 1px solid var(--hm-ochre);
  border-radius: 2px;
  color: var(--hm-ochre-soft);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 13px; font-style: italic;
  cursor: pointer;
  transition: background 0.18s ease;
}
.hm-net-ex-focus-back:hover { background: rgba(184, 116, 31, 0.12); }

/* Center end-state */
.hm-net-ex-end {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  text-align: center;
  max-width: 600px;
  padding: 40px 32px;
  background: rgba(15, 12, 8, 0.85);
  border: 1px solid rgba(212, 154, 74, 0.3);
  border-radius: 8px;
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.hm-net-ex-end.is-open { opacity: 1; }
.hm-net-ex-end[hidden] { display: none; }
.hm-net-ex-end-eyebrow {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--hm-ochre-soft);
  margin: 0 0 12px;
}
.hm-net-ex-end-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 400;
  color: #fff;
  line-height: 1.25;
  margin: 0 0 28px;
}
.hm-net-ex-end-ctas {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
}

/* Hotspot labels — clear floating pill, readable against the bright halos */
.hm-net-ex .hm-net-ex-label {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #fff8e6;
  white-space: nowrap;
  padding: 8px 18px;
  background: rgba(8, 6, 4, 0.92);
  border: 1px solid rgba(212, 154, 74, 0.55);
  border-radius: 999px;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
  text-shadow: none;
}

/* Mobile adaptations */
@media (max-width: 720px) {
  .hm-net-ex-title-block { top: 14px; left: 14px; }
  .hm-net-ex-eyebrow { font-size: 10px; }
  .hm-net-ex-title { font-size: 15px; }
  .hm-net-ex-close { top: 10px; right: 10px; padding: 6px 10px; }
  .hm-net-ex-close span { display: none; }
  .hm-net-ex-mode { bottom: 12px; left: 14px; font-size: 10px; }
  .hm-net-ex-controls { bottom: 10px; right: 10px; gap: 6px; }
  .hm-net-ex-ctl { padding: 6px 9px; }
  .hm-net-ex-ctl span { display: none; }
  .hm-net-ex-prompt {
    left: 14px; right: 14px; bottom: 56px;
    transform: none;
    text-align: center;
    font-size: 12px;
    padding: 8px 14px;
  }
  .hm-net-ex .hm-net-ex-label { font-size: 12px; padding: 3px 8px; }
  .hm-net-ex-focus {
    top: auto; right: 10px; left: 10px; bottom: 96px;
    transform: translateY(20px);
    width: auto;
    padding: 16px 14px;
    max-height: calc(100vh - 220px);
    overflow-y: auto;
  }
  .hm-net-ex-focus.is-open { transform: translateY(0); }
  .hm-net-ex-focus-title { font-size: 20px; margin-bottom: 8px; }
  .hm-net-ex-focus-body { font-size: 14px; line-height: 1.45; margin-bottom: 16px; }
  .hm-net-ex-focus-back { padding: 6px 12px; font-size: 12px; }
  .hm-net-ex-end {
    top: 50%; left: 16px; right: 16px;
    transform: translateY(-50%);
    max-width: none;
    padding: 28px 22px;
  }
  .hm-net-ex-end-title { font-size: clamp(18px, 4.5vw, 22px); margin-bottom: 20px; }
  .hm-net-ex-end-ctas { flex-direction: column; align-items: stretch; gap: 8px; }
  .hm-net-ex-end-ctas .hm-btn { justify-content: center; }
}

/* Pulse the play button on the section to signal interactivity */
.hm-net-play { cursor: pointer; }
.hm-net-play:hover .hm-net-play-icon { box-shadow: 0 0 0 6px rgba(212, 154, 74, 0.18); transition: box-shadow 0.3s ease; }

/* THE NET (DARK) — full-bleed living field reaches the section walls */
.hm-net {
  background: var(--hm-dark);
  background-image: radial-gradient(ellipse at 50% 50%, rgba(212, 154, 74, 0.10) 0%, transparent 60%);
  color: var(--hm-cream-on-dark);
  padding: 0;
  position: relative;
  overflow: hidden;
  height: 580px;
  max-height: 580px;
}
.hm-net-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
  z-index: 0;
}
/* Vignette over the canvas: darkens left + right edges so text stays readable */
.hm-net::after {
  content: '';
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
  /* Light-touch scrim: the net fills the whole block, edges softly dimmed for text readability */
  background:
    radial-gradient(ellipse 150% 130% at 50% 50%, transparent 52%, rgba(8, 7, 10, 0.5) 100%),
    linear-gradient(90deg, rgba(8, 7, 10, 0.6) 0%, rgba(8, 7, 10, 0.15) 30%, transparent 46%, transparent 60%, rgba(8, 7, 10, 0.2) 80%, rgba(8, 7, 10, 0.45) 100%);
}
.hm-net::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(2px 2px at 12% 20%, rgba(212, 154, 74, 0.5) 50%, transparent 100%), radial-gradient(1px 1px at 25% 70%, rgba(212, 154, 74, 0.4) 50%, transparent 100%), radial-gradient(1.5px 1.5px at 60% 15%, rgba(212, 154, 74, 0.6) 50%, transparent 100%), radial-gradient(1px 1px at 80% 50%, rgba(212, 154, 74, 0.4) 50%, transparent 100%), radial-gradient(1.5px 1.5px at 90% 25%, rgba(212, 154, 74, 0.5) 50%, transparent 100%), radial-gradient(1px 1px at 35% 85%, rgba(212, 154, 74, 0.3) 50%, transparent 100%), radial-gradient(2px 2px at 65% 90%, rgba(212, 154, 74, 0.5) 50%, transparent 100%), radial-gradient(1px 1px at 15% 50%, rgba(212, 154, 74, 0.4) 50%, transparent 100%); pointer-events: none; }
.hm-net-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 48px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
  position: relative; z-index: 2;
  height: 100%;
}
@media (max-width: 1000px) {
  .hm-net-inner { grid-template-columns: 1fr; text-align: center; align-content: center; gap: 18px; padding: 24px; }
}
@media (max-width: 640px) { .hm-net { height: auto; max-height: none; min-height: 640px; padding: 38px 0; } }
@media (max-width: 640px) { .hm-net-inner { height: auto; padding: 0 24px; align-content: start; } .hm-net-deck { max-width: 100%; } .hm-net-play { width: 100%; justify-content: center; } .hm-net-aside { width: 100%; padding: 22px 20px; } }
.hm-net-text { display: flex; flex-direction: column; }
.hm-net-text .hm-net-link { margin-top: 18px; align-self: flex-start; }
.hm-net-text .hm-net-play { margin-top: 14px; align-self: flex-start; }
@media (max-width: 1000px) {
  .hm-net-text .hm-net-link, .hm-net-text .hm-net-play { align-self: center; }
}
.hm-net-headline { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 400; font-size: clamp(32px, 3.6vw, 50px); line-height: 1.04; letter-spacing: -0.02em; color: #fff; margin: 0 0 18px; text-shadow: 0 2px 22px rgba(0, 0, 0, 0.75); }
.hm-net-deck { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 16px; line-height: 1.55; color: var(--hm-cream-on-dark); margin: 0 0 22px; max-width: 380px; text-shadow: 0 1px 14px rgba(0, 0, 0, 0.7); }
.hm-net-link { display: inline-block; font-family: 'Cormorant Garamond', Georgia, serif; font-size: 15px; font-style: italic; color: var(--hm-ochre-soft); text-decoration: none; border-bottom: 1px solid var(--hm-ochre); padding-bottom: 2px; margin-bottom: 24px; }
/* Flashy CTA — glowing gold pill that pulses and lifts */
.hm-net-play { display: inline-flex; align-items: center; gap: 14px; background: linear-gradient(135deg, #ffe6b8 0%, #e0a86a 48%, #c17d24 100%); border: 1px solid rgba(255, 244, 220, 0.55); padding: 15px 28px 15px 15px; text-decoration: none; color: #1a1206; border-radius: 999px; box-shadow: 0 10px 34px -8px rgba(224, 168, 106, 0.6); animation: hm-net-play-pulse 2.8s ease-in-out infinite; transition: transform 0.2s ease, box-shadow 0.25s ease; }
.hm-net-play:hover { transform: translateY(-2px); box-shadow: 0 16px 44px -8px rgba(240, 200, 130, 0.85); animation-play-state: paused; }
@keyframes hm-net-play-pulse { 0%, 100% { box-shadow: 0 10px 34px -8px rgba(224, 168, 106, 0.55), 0 0 0 0 rgba(240, 200, 130, 0.5); } 50% { box-shadow: 0 12px 38px -6px rgba(240, 200, 130, 0.75), 0 0 0 12px rgba(240, 200, 130, 0); } }
.hm-net-play-icon { width: 36px; height: 36px; border-radius: 50%; background: rgba(26, 18, 6, 0.14); border: 1.5px solid rgba(26, 18, 6, 0.55); display: grid; place-items: center; flex-shrink: 0; }
.hm-net-play-icon::before { content: ''; width: 0; height: 0; border-style: solid; border-width: 6px 0 6px 10px; border-color: transparent transparent transparent #1a1206; margin-left: 3px; }
.hm-net-play-meta { display: flex; flex-direction: column; gap: 1px; align-items: flex-start; }
.hm-net-play-title { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 18px; font-weight: 600; color: #1a1206; }
.hm-net-play-time { font-family: 'JetBrains Mono', monospace; font-size: 10.5px; letter-spacing: 0.04em; color: rgba(26, 18, 6, 0.66); }
.hm-net-aside {
  display: flex; flex-direction: column; gap: 14px;
  padding: 22px 26px;
  background: rgba(15, 12, 8, 0.78);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 154, 74, 0.25);
  border-radius: 6px;
  position: relative;
  max-width: 420px;
  justify-self: end;
}
@media (max-width: 1000px) { .hm-net-aside { border: 1px solid rgba(212, 154, 74, 0.25); align-items: center; justify-self: center; } }
.hm-net-aside-star {
  width: 48px; height: 48px;
  margin-top: 10px;
  align-self: center;
  opacity: 0.55;
}
.hm-net-aside-star .hm-star-rotor {
  transform-origin: 50px 50px;
  animation: hmStarSpin 80s linear infinite, hmStarPulse 5s ease-in-out infinite;
}
@keyframes hmStarSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes hmStarPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.6; } }
.hm-net-aside-eyebrow { font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--hm-ochre-soft); }
.hm-net-aside p { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 17px; line-height: 1.55; color: var(--hm-cream-on-dark); margin: 0; }

/* WHAT WE STAND FOR - light theme, full-bleed gilded mandala-net behind, content on top */
.hm-ground { position: relative; overflow: hidden; background: radial-gradient(ellipse at 66% 46%, #f7f2e7 0%, #f0e9d9 58%, #e8e0cd 100%); border-top: 1px solid var(--hm-rule); border-bottom: 1px solid var(--hm-rule); padding: clamp(40px, 5vw, 64px) 0; min-height: 0; display: flex; align-items: center; }
.hm-ground-canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; z-index: 0; }
.hm-ground-inner { position: relative; z-index: 2; width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 clamp(24px, 4vw, 48px); pointer-events: none; }
.hm-ground-text { display: flex; flex-direction: column; max-width: 30em; margin-left: calc(-1 * clamp(20px, 2.6vw, 30px)); pointer-events: auto; background: rgba(250, 244, 232, 0.68); backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); border: 1px solid rgba(146, 96, 15, 0.15); border-radius: 12px; padding: clamp(20px, 2.6vw, 30px); }
.hm-ground-lede { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 18px; line-height: 1.5; color: var(--hm-ink-soft); margin: 9px 0 18px; max-width: 30em; }
.hm-key-laws { list-style: none; padding: 0; margin: 0 0 18px; display: grid; gap: 10px; }
.hm-key-laws li { display: grid; gap: 2px; padding-left: 15px; border-left: 2px solid var(--hm-ochre); }
.hm-key-laws b { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 500; font-size: 19px; color: var(--hm-ink); line-height: 1.15; }
.hm-key-laws span { font-size: 13.5px; line-height: 1.45; color: var(--hm-ink-soft); }
.hm-ground-links { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 4px; }
.hm-ground-links a { font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; font-size: 15px; color: #92600f; text-decoration: none; border-bottom: 1px solid var(--hm-ochre); padding-bottom: 2px; transition: color 200ms, border-color 200ms; }
.hm-ground-links a:hover { color: var(--hm-ink); border-bottom-color: var(--hm-ink); }
@media (max-width: 900px) { .hm-ground { min-height: 0; padding: clamp(40px, 9vw, 60px) 0; } .hm-ground-inner { padding: 0 16px; } .hm-ground-canvas { opacity: 0.6; } .hm-ground-text { max-width: none; margin-left: 0; padding: 24px 22px; } .hm-ground-links { margin-top: 10px; } }
.hm-start-inner { max-width: 1280px; margin: 0 auto; padding: 0 clamp(24px, 4vw, 48px); display: grid; gap: 24px; }
.hm-start-head { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.7fr); gap: clamp(20px, 3vw, 38px); align-items: end; padding-bottom: 20px; border-bottom: 1px solid rgba(122, 93, 55, 0.18); }
.hm-start-head .hm-eyebrow { margin-bottom: 10px; }
.hm-start-head .hm-headline { margin: 0; max-width: 8.5em; }
.hm-start-lede { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 17px; font-style: italic; line-height: 1.55; color: var(--hm-ink-soft); margin: 0 0 4px; max-width: 26em; }
@media (max-width: 900px) { .hm-start-head { grid-template-columns: 1fr; align-items: start; } }
@media (max-width: 640px) { .hm-start-inner { padding: 0 24px; } .hm-start-card-list { grid-template-columns: 1fr; } .hm-start-card-cta .hm-btn { white-space: normal; } }
.hm-start-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
@media (max-width: 700px) { .hm-start-cards { grid-template-columns: 1fr; } }
.hm-start-card { background: var(--hm-paper); border: 1px solid var(--hm-rule); padding: 0; display: flex; flex-direction: column; overflow: hidden; }
.hm-start-card-media { aspect-ratio: 5 / 2; width: 100%; overflow: hidden; background: var(--hm-paper-soft); border-bottom: 1px solid rgba(122, 93, 55, 0.18); }
.hm-start-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hm-start-card-icon-wrap { display: flex; align-items: center; gap: 14px; margin: 22px 24px 6px; }
.hm-start-card-icon { width: 32px; height: 32px; color: var(--hm-ochre); }
.hm-start-card-title-block { display: flex; flex-direction: column; gap: 2px; }
.hm-start-card-eyebrow { font-family: 'JetBrains Mono', monospace; font-size: 9.5px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--hm-ochre); }
.hm-start-card-title { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 400; font-size: 22px; line-height: 1.1; color: var(--hm-ink); margin: 0; }
.hm-start-card-desc { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 14.5px; line-height: 1.5; color: var(--hm-ink-soft); margin: 12px 24px 18px; }
.hm-start-card-list { list-style: none; padding: 0; margin: 0 24px 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 6px 14px; }
.hm-start-card-list.single { grid-template-columns: 1fr; }
.hm-start-card-list li { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 14px; color: var(--hm-ink); display: flex; align-items: flex-start; gap: 6px; }
.hm-start-card-list li::before { content: '✓'; color: var(--hm-ochre); font-weight: 600; flex-shrink: 0; }
.hm-start-card-cta { margin: auto 24px 22px; display: flex; flex-direction: column; gap: 10px; align-items: center; }
.hm-start-card-cta .hm-btn { width: 100%; justify-content: center; }
.hm-start-card-meta { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 13px; font-style: italic; color: var(--hm-ink-mute); }

/* EXPLORE THE PATH */
.hm-explore { background: var(--hm-paper); padding: clamp(34px, 5vh, 54px) 0; border-bottom: 1px solid var(--hm-rule); }
.hm-explore-inner { max-width: 1280px; margin: 0 auto; padding: 0 clamp(24px, 4vw, 48px); }
.hm-explore-map { display: grid; grid-template-columns: minmax(260px, 0.9fr) repeat(4, minmax(0, 1fr)); border-top: 1px solid rgba(122, 93, 55, 0.2); border-bottom: 1px solid rgba(122, 93, 55, 0.2); }
.hm-explore-map-intro { padding: 26px 28px 26px 0; border-right: 1px solid rgba(122, 93, 55, 0.18); }
.hm-explore-map-intro .hm-headline { margin: 0 0 12px; font-size: clamp(28px, 3.1vw, 42px); }
.hm-explore-map-intro p:last-child { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 16px; line-height: 1.5; color: var(--hm-ink-soft); margin: 0; max-width: 24em; }
.hm-path-node { min-height: 210px; padding: 28px 22px 22px; border-right: 1px solid rgba(122, 93, 55, 0.18); color: var(--hm-ink); text-decoration: none; display: flex; flex-direction: column; gap: 12px; transition: background 0.18s ease, color 0.18s ease; }
.hm-path-node:last-child { border-right: 0; }
.hm-path-node:hover { background: rgba(255, 250, 241, 0.6); color: var(--hm-ochre-deep); }
.hm-path-node-icon { width: 38px; height: 38px; border: 1px solid rgba(184, 116, 31, 0.45); border-radius: 999px; display: grid; place-items: center; font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.08em; color: var(--hm-ochre); }
.hm-path-node-title { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 22px; line-height: 1.1; color: inherit; }
.hm-path-node-desc { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 14px; line-height: 1.45; color: var(--hm-ink-soft); }
.hm-path-node-link { margin-top: auto; font-family: 'Cormorant Garamond', Georgia, serif; font-size: 14px; font-style: italic; color: var(--hm-ochre-deep); }
@media (max-width: 1080px) { .hm-explore-map { grid-template-columns: repeat(2, minmax(0, 1fr)); } .hm-explore-map-intro { border-right: 1px solid rgba(122, 93, 55, 0.18); } }
@media (max-width: 640px) { .hm-explore-map { grid-template-columns: 1fr; } .hm-explore-map-intro, .hm-path-node { border-right: 0; border-bottom: 1px solid rgba(122, 93, 55, 0.18); } }
@media (max-width: 640px) { .hm-explore-inner { padding: 0 24px; } .hm-explore-map-intro { padding-right: 0; } }

/* TRADITION */
.hm-tradition { background: var(--hm-cream); padding: clamp(42px, 5.5vh, 58px) 0; border-bottom: 1px solid var(--hm-rule); scroll-margin-top: 86px; }
.hm-tradition-inner { max-width: 1000px; margin: 0 auto; padding: 0 clamp(24px, 4vw, 48px); display: flex; flex-direction: column; gap: clamp(24px, 3.4vw, 36px); }
.hm-tradition-head .hm-headline { margin: 10px 0 0; font-size: clamp(28px, 3vw, 40px); }
.hm-tradition-head p:not(.hm-eyebrow) { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 16.5px; line-height: 1.55; color: var(--hm-ink-soft); margin: 12px 0 0; max-width: 36em; }
.hm-tradition-head .hm-link { display: inline-block; margin-top: 16px; }

.hm-book-feature { display: grid; grid-template-columns: minmax(180px, 240px) minmax(0, 1fr); gap: clamp(30px, 4.5vw, 58px); align-items: center; background: linear-gradient(157deg, rgba(255, 251, 243, 0.96), rgba(245, 235, 218, 0.78)); border: 1px solid rgba(122, 93, 55, 0.2); border-radius: 16px; padding: clamp(28px, 3.8vw, 46px); box-shadow: 0 34px 68px -46px rgba(20, 17, 12, 0.55); }
.hm-book-feature-cover { position: relative; isolation: isolate; display: grid; place-items: center; text-decoration: none; }
.hm-book-feature-cover::before { content: ''; position: absolute; inset: -4% -2%; z-index: -1; border-radius: 50%; background: radial-gradient(ellipse at center, rgba(184, 116, 31, 0.22), rgba(184, 116, 31, 0) 70%); filter: blur(12px); }
.hm-book-mockup-img { width: 100%; max-width: 210px; height: auto; display: block; border-radius: 4px; box-shadow: 0 40px 58px -28px rgba(20, 17, 12, 0.62), 0 14px 24px -16px rgba(20, 17, 12, 0.45); transition: transform 0.28s ease, box-shadow 0.28s ease; }
.hm-book-feature-cover:hover .hm-book-mockup-img { transform: translateY(-5px) rotate(-0.5deg); box-shadow: 0 52px 74px -30px rgba(20, 17, 12, 0.6), 0 18px 30px -16px rgba(20, 17, 12, 0.45); }
.hm-book-feature-body { display: flex; flex-direction: column; gap: 11px; min-width: 0; }
.hm-tradition-label { font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--hm-ochre); margin: 0; }
.hm-book-feature-title { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(28px, 3.4vw, 40px); line-height: 1.04; font-weight: 500; color: var(--hm-ink); margin: 2px 0 0; }
.hm-book-feature-kicker { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 16.5px; line-height: 1.3; font-style: italic; color: var(--hm-ochre-deep); margin: 0; }
.hm-book-feature-desc { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 17px; line-height: 1.52; color: var(--hm-ink-soft); margin: 8px 0 12px; }
.hm-book-feature-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hm-book-feature-primary,
.hm-book-feature-secondary { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 16px; line-height: 1.2; text-decoration: none; border-radius: 8px; transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease; }
.hm-book-feature-primary { display: inline-flex; align-items: center; gap: 9px; background: var(--hm-ochre); border: 1px solid var(--hm-ochre); color: #fff; padding: 13px 24px; box-shadow: 0 14px 26px -14px rgba(184, 116, 31, 0.75); }
.hm-book-feature-primary:hover { background: var(--hm-ochre-deep); border-color: var(--hm-ochre-deep); color: #fff; transform: translateY(-1px); box-shadow: 0 18px 30px -14px rgba(184, 116, 31, 0.82); }
.hm-book-feature-secondary { display: inline-flex; align-items: center; color: var(--hm-ochre-deep); border: 1px solid rgba(184, 116, 31, 0.5); padding: 13px 22px; }
.hm-book-feature-secondary:hover { background: rgba(184, 116, 31, 0.08); color: var(--hm-ochre-deep); }
@media (max-width: 720px) { .hm-book-feature { grid-template-columns: 1fr; gap: 24px; text-align: center; padding: 32px 24px; } .hm-book-feature-cover { order: -1; } .hm-book-feature-cover::before { inset: 8% 18%; } .hm-book-mockup-img { max-width: 190px; margin: 0 auto; } .hm-book-feature-body { align-items: center; } .hm-book-feature-actions { justify-content: center; } }

/* BELONG */
.hm-belong { background: var(--hm-paper); padding: clamp(48px, 6vh, 72px) 0; border-bottom: 1px solid var(--hm-rule); }
.hm-belong-inner { max-width: 1280px; margin: 0 auto; padding: 0 clamp(24px, 4vw, 48px); }
.hm-belong-head { display: grid; grid-template-columns: 1fr 2.2fr; gap: clamp(24px, 4vw, 48px); align-items: end; margin-bottom: 28px; }
@media (max-width: 900px) { .hm-belong-head { grid-template-columns: 1fr; } }
.hm-belong-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 900px) { .hm-belong-grid { grid-template-columns: 1fr; } }
.hm-belong-card {
  --card-accent: var(--hm-ochre);
  --card-accent-soft: rgba(184, 116, 31, 0.13);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; gap: 14px;
  padding: clamp(26px, 2.4vw, 34px) clamp(22px, 2vw, 30px);
  text-decoration: none;
  border: 1px solid rgba(122, 93, 55, 0.2);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 251, 243, 0.96), rgba(246, 240, 227, 0.9));
  box-shadow: 0 20px 38px -32px rgba(31, 29, 24, 0.55);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.hm-belong-card::before {
  content: ''; position: absolute; inset: 0 0 auto; height: 4px;
  background: linear-gradient(90deg, var(--card-accent), transparent 75%);
}
.hm-belong-card:hover {
  border-color: var(--card-accent);
  box-shadow: 0 30px 52px -32px rgba(31, 29, 24, 0.7);
  transform: translateY(-4px);
}
.hm-belong-card:nth-child(2) { --card-accent: #506c62; --card-accent-soft: rgba(80, 108, 98, 0.14); }
.hm-belong-card:nth-child(3) { --card-accent: #233f59; --card-accent-soft: rgba(35, 63, 89, 0.14); }
.hm-belong-card-icon {
  width: 48px; height: 48px; padding: 11px;
  background: #fffaf1; border: 1px solid var(--card-accent-soft); border-radius: 11px;
  color: var(--card-accent);
}
.hm-belong-card-title { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 23px; font-weight: 500; line-height: 1.12; color: var(--hm-ink); margin: 2px 0 0; }
.hm-belong-card-desc { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 15.5px; line-height: 1.55; color: var(--hm-ink-soft); margin: 0; }
.hm-belong-card-link { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 15px; font-style: italic; color: var(--card-accent); margin-top: auto; padding-top: 2px; }

/* DONATION BANNER */
.hm-donate { background: #14231c; padding: clamp(28px, 4vh, 42px) 0; position: relative; border-bottom: 1px solid rgba(212, 154, 74, 0.22); overflow: hidden; color: var(--hm-cream-on-dark); }
.hm-donate::before, .hm-donate::after { content: ''; position: absolute; bottom: 8px; width: 200px; height: 100px; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 100' fill='none' stroke='%23b8741f' stroke-width='1' opacity='0.35'><path d='M10 90 Q 40 30, 100 50 Q 160 30, 190 90'/><path d='M40 80 Q 50 60, 60 65'/><path d='M60 75 Q 70 55, 80 60'/><path d='M80 75 Q 90 55, 100 60'/><path d='M100 75 Q 110 55, 120 60'/><path d='M120 75 Q 130 55, 140 60'/><path d='M140 75 Q 150 55, 160 60'/></svg>"); background-size: contain; background-repeat: no-repeat; pointer-events: none; }
.hm-donate::before { left: 5%; }
.hm-donate::after { right: 5%; transform: scaleX(-1); }
.hm-donate-inner { max-width: 720px; margin: 0 auto; padding: 0 24px; text-align: center; position: relative; z-index: 1; }
.hm-donate-headline { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(21px, 2.2vw, 28px); line-height: 1.2; color: #fffaf1; margin: 0 0 8px; font-weight: 400; }
.hm-donate-sub { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 15px; font-style: italic; color: rgba(232, 222, 200, 0.78); margin: 0 0 18px; }

/* FOOTER */
.hm-footer { background: #11100d; padding: clamp(34px, 5vh, 48px) 0 20px; color: rgba(250, 246, 236, 0.86); }
.hm-footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 clamp(24px, 4vw, 48px); display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.4fr; gap: clamp(28px, 4vw, 48px); align-items: start; }
@media (max-width: 900px) { .hm-footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .hm-footer-inner { grid-template-columns: 1fr; } }
.hm-footer-brand-logo { display: flex; align-items: center; gap: 10px; }
.hm-footer-brand-logo .brand-mark { width: 32px; height: 32px; }
.hm-footer-brand-logo .brand-text-name { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 17px; color: #fffaf1; letter-spacing: 0.05em; }
.hm-footer-brand-logo .brand-text-tag { font-family: 'JetBrains Mono', monospace; font-size: 8px; letter-spacing: 0.18em; color: rgba(232, 222, 200, 0.52); margin-top: 1px; text-transform: uppercase; }
.hm-footer-brand-quote { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 15px; font-style: italic; line-height: 1.5; color: rgba(232, 222, 200, 0.72); margin: 14px 0 6px; }
.hm-footer-brand-attr { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(232, 222, 200, 0.48); }
.hm-footer-col-title { font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--hm-ochre-soft); margin: 0 0 14px; }
.hm-footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.hm-footer-col a { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 14.5px; color: rgba(250, 246, 236, 0.84); text-decoration: none; transition: color 0.18s ease; }
.hm-footer-col a:hover { color: var(--hm-ochre); }
.hm-footer-stay-text { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 13.5px; line-height: 1.5; color: rgba(232, 222, 200, 0.7); margin: 0 0 12px; }
.hm-footer-form { display: flex; border: 1px solid rgba(212, 154, 74, 0.28); background: rgba(255, 250, 241, 0.06); margin-bottom: 16px; }
.hm-footer-form input { flex: 1; border: none; background: transparent; padding: 10px 12px; font-family: 'Cormorant Garamond', Georgia, serif; font-size: 14px; color: #fffaf1; }
.hm-footer-form input:focus { outline: none; }
.hm-footer-form button { background: var(--hm-ochre); color: #fff; border: none; padding: 0 16px; cursor: pointer; font-size: 18px; }
.hm-footer-form button:hover { background: var(--hm-ochre-deep); }
.hm-footer-social { display: flex; gap: 12px; }
.hm-footer-social a { width: 36px; height: 36px; border: 1px solid rgba(212, 154, 74, 0.22); border-radius: 50%; display: grid; place-items: center; color: rgba(232, 222, 200, 0.68); transition: border-color 0.18s ease, color 0.18s ease; }
.hm-footer-social a:hover { border-color: var(--hm-ochre); color: var(--hm-ochre); }
.hm-footer-social svg { width: 16px; height: 16px; }
.hm-footer-bottom { max-width: 1280px; margin: 36px auto 0; padding: 16px clamp(24px, 4vw, 48px) 0; border-top: 1px solid rgba(212, 154, 74, 0.18); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.04em; color: rgba(232, 222, 200, 0.48); }
.hm-footer-bottom-links { display: flex; gap: 18px; flex-wrap: wrap; }
.hm-footer-bottom-links a { color: var(--hm-ink-mute); text-decoration: none; }
.hm-footer-bottom-links a:hover { color: var(--hm-ochre); }

.hm-page .hm-footer .brand-mark,
.hm-page .hm-footer-logo-img {
  filter: none !important;
  opacity: 0.96;
}

@media (max-width: 640px) {
  .hm-page .header-actions { gap: 10px; }
  .hm-page .mobile-toggle { padding: 6px 0 6px 4px; }
  .hm-hero-inner,
  .hm-what-inner,
  .hm-net-inner,
  .hm-start-inner,
  .hm-explore-inner,
  .hm-tradition-inner,
  .hm-belong-inner,
  .hm-footer-inner,
  .hm-footer-bottom {
    width: calc(100vw - 48px);
    max-width: calc(100vw - 48px);
    padding-left: 0;
    padding-right: 0;
    margin-left: auto;
    margin-right: auto;
  }
  .hm-what-image-frame { grid-template-columns: 1fr; height: auto; margin-top: 18px; }
  .hm-what-image { min-height: 220px; }
  .hm-what-quote { border-left: 0; border-top: 1px solid var(--hm-rule); height: auto; padding: 24px; }
  .hm-start-card-list { grid-template-columns: 1fr; }
}
