/* ── RESET ── */
.hmv-cat *, .hmv-cat *::before, .hmv-cat *::after {
  box-sizing: border-box; margin: 0; padding: 0;
}

/* ── DESIGN TOKENS ── */
.hmv-cat {
  --c-dark:       #091916;
  --c-green:      #1A3735;
  --c-green-card: #111f1d;
  --c-green-mid:  #415957;
  --c-gold:       #926D1F;
  --c-gold-b:     #b49b65;
  --c-gold-pale:  #dacdb3;
  --c-gold-cream: #f6f3ec;
  --c-cream:      #fdf8f2;
  --c-white:      #FBFBFB;
  --c-divider:    rgba(26,55,53,.08);
  --c-divider-gold: rgba(180,155,101,.15);
  --ff-serif:     'Cormorant Garamond', Georgia, serif;
  --ff-sans:      'Jost', system-ui, sans-serif;
  --fw-light:     300;
  --fw-reg:       400;
  --fw-med:       500;
  --fw-semi:      600;
  --nav-h:        72px;
  --sp-md:  clamp(20px, 3vw, 36px);
  --sp-lg:  clamp(40px, 5.5vw, 64px);
  --sp-xl:  clamp(48px, 7vw, 80px);
  font-family: var(--ff-sans);
  background: var(--c-dark);
  color: var(--c-white);
  overflow-x: hidden;
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* ── LAYOUT ── */
.hmv-cat .wrap { max-width: 1450px; margin: 0 auto; padding: 0 var(--sp-md); }

/* ── FADE-IN ── */
.hmv-cat .fi { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.hmv-cat .fi.on { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .hmv-cat .fi { opacity: 1; transform: none; transition: none; }
}

/* ── BUTTONS ── */
.hmv-cat .btn-p, .hmv-cat .btn-g, .hmv-cat .btn-book {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--ff-sans); font-size: 11px; font-weight: var(--fw-semi);
  letter-spacing: .22em; text-transform: uppercase;
  padding: 15px 32px; cursor: pointer; text-decoration: none;
  transition: background .25s, border-color .25s, color .25s, transform .2s;
  white-space: nowrap; border: none; min-height: 48px;
}
.hmv-cat .btn-p, .hmv-cat .btn-book { color: var(--c-dark); background: var(--c-gold-b); }
.hmv-cat .btn-p:hover, .hmv-cat .btn-book:hover { background: var(--c-gold); color: var(--c-gold-cream); transform: translateY(-2px); }
.hmv-cat .btn-p:focus-visible, .hmv-cat .btn-book:focus-visible { outline: 2px solid var(--c-gold); outline-offset: 3px; }
.hmv-cat .btn-g { color: var(--c-gold-pale); background: transparent; border: 1px solid rgba(180,155,101,.3); }
.hmv-cat .btn-g:hover { border-color: var(--c-gold-b); color: var(--c-gold-b); }
.hmv-cat .btn-g:focus-visible { outline: 2px solid var(--c-gold-b); outline-offset: 3px; }

/* ── HERO ── */
.hmv-cat .page-hero { background: var(--c-dark); padding: 48px 0 72px; position: relative; overflow: hidden; width: 100%; }
.hmv-cat .page-hero::before { content: ''; position: absolute; top: -30%; right: -5%; width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle, rgba(180,155,101,.05) 0%, transparent 70%); pointer-events: none; }
.hmv-cat .page-hero .wrap { position: relative; z-index: 2; padding-right: var(--sp-md); }
@media (min-width: 900px) { .hmv-cat .page-hero .wrap { padding-right: 42%; } }
.hmv-cat .page-hero h1 { font-family: var(--ff-serif); font-size: clamp(36px, 6vw, 72px); font-weight: var(--fw-light); line-height: 1.08; color: var(--c-cream); margin-bottom: 20px; overflow-wrap: break-word; }
.hmv-cat .page-hero h1 em { font-style: italic; color: var(--c-gold-b); }
.hmv-cat .page-hero-desc { font-size: clamp(15px, 1.4vw, 17px); font-weight: var(--fw-light); line-height: 1.9; color: rgba(251,251,251,.75); max-width: 580px; margin-bottom: 36px; }
.hmv-cat .hero-eyebrow { font-family: var(--ff-sans); font-size: 9px; letter-spacing: .35em; text-transform: uppercase; color: var(--c-gold-b); display: inline-flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.hmv-cat .hero-eyebrow::before { content: ''; height: 1px; width: 22px; background: var(--c-gold-b); opacity: .5; }

.hmv-cat .trust-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.hmv-cat .trust-pill { display: inline-flex; align-items: center; gap: 7px; font-family: var(--ff-sans); font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: var(--c-gold-b); border: 1px solid rgba(180,155,101,.18); padding: 6px 14px; min-height: 36px; }
.hmv-cat .trust-pill svg { width: 10px; height: 10px; fill: none; stroke: var(--c-gold-b); stroke-width: 2.5; flex-shrink: 0; }

.hmv-cat .page-hero-img { position: absolute; right: 0; top: 0; bottom: 0; width: 38%; overflow: hidden; display: none; }
@media (min-width: 900px) { .hmv-cat .page-hero-img { display: block; } }
.hmv-cat .page-hero-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hmv-cat .page-hero-img::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, var(--c-dark) 0%, transparent 45%); z-index: 1; }

/* ── MARQUEE ── */
.hmv-cat .marquee-ribbon { background: var(--c-gold-b); overflow: hidden; padding: 11px 0; }
.hmv-cat .marquee-track { display: flex; align-items: center; white-space: nowrap; animation: hmvcns-marquee 36s linear infinite; }
@media (prefers-reduced-motion: reduce) { .hmv-cat .marquee-track { animation: none; } }
@keyframes hmvcns-marquee { to { transform: translateX(-50%); } }
.hmv-cat .m-item { display: inline-flex; align-items: center; font-family: var(--ff-sans); font-size: 9px; letter-spacing: .25em; text-transform: uppercase; color: rgba(9,25,22,.85); font-weight: var(--fw-semi); padding: 0 28px; }
.hmv-cat .m-dot { display: inline-block; width: 3px; height: 3px; border-radius: 50%; background: rgba(9,25,22,.35); }

/* ── SECTION SHARED ── */
.hmv-cat .section-eyebrow { font-family: var(--ff-sans); font-size: 9px; letter-spacing: .3em; text-transform: uppercase; color: var(--c-gold-b); margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.hmv-cat .section-eyebrow::before { content: ''; width: 16px; height: 2px; background: var(--c-gold-b); flex-shrink: 0; }
.hmv-cat .section-title { font-family: var(--ff-serif); font-size: clamp(28px, 3.8vw, 48px); font-weight: var(--fw-light); line-height: 1.08; margin-bottom: 12px; }
.hmv-cat .section-title em { font-style: italic; color: var(--c-gold); }

/* ── SERVICES SECTION ── */
.hmv-cat .services-section { padding: clamp(48px,6vw,72px) 0; background: var(--c-dark); }

/* Diagnostic card — featured full width */
.hmv-cat .diag-card { background: rgba(26,55,53,.4); border: 1px solid rgba(180,155,101,.15); border-left: 4px solid var(--c-gold-b); padding: clamp(20px,3vw,32px) clamp(20px,3vw,36px); display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px; text-decoration: none; color: inherit; transition: border-color .25s, background .25s; }
@media (min-width: 700px) { .hmv-cat .diag-card { grid-template-columns: 1fr auto; align-items: center; gap: 40px; } }
.hmv-cat .diag-card:hover { border-color: rgba(180,155,101,.4); background: rgba(26,55,53,.55); }
.hmv-cat .diag-card:focus-visible { outline: 2px solid var(--c-gold-b); outline-offset: 3px; }
.hmv-cat .diag-tag { font-family: var(--ff-sans); font-size: 10px; font-weight: var(--fw-semi); letter-spacing: .24em; text-transform: uppercase; color: var(--c-gold-b); margin-bottom: 10px; }
.hmv-cat .diag-title { font-family: var(--ff-serif); font-size: clamp(22px,2.5vw,28px); font-weight: var(--fw-light); color: var(--c-gold-cream); line-height: 1.15; margin-bottom: 10px; }
.hmv-cat .diag-desc { font-family: var(--ff-sans); font-size: 13px; font-weight: var(--fw-light); line-height: 1.8; color: rgba(218,205,179,.65); max-width: 560px; }
.hmv-cat .diag-meta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.hmv-cat .diag-chip { font-family: var(--ff-sans); font-size: 9px; font-weight: var(--fw-med); letter-spacing: .16em; text-transform: uppercase; color: var(--c-gold-b); border: 1px solid rgba(180,155,101,.2); padding: 5px 12px; }
.hmv-cat .diag-cta-block { flex-shrink: 0; text-align: center; }
.hmv-cat .diag-price-label { font-family: var(--ff-sans); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: rgba(218,205,179,.5); margin-bottom: 6px; }
.hmv-cat .diag-price { font-family: var(--ff-serif); font-size: 32px; font-weight: var(--fw-light); color: var(--c-gold-b); line-height: 1; margin-bottom: 14px; }
@media (max-width: 699px) { .hmv-cat .diag-cta-block { text-align: left; } }

/* Service cards grid */
.hmv-cat .services-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 640px) { .hmv-cat .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .hmv-cat .services-grid { grid-template-columns: repeat(3, 1fr); } }

.hmv-cat .svc-card { background: var(--c-green-card); border: 1px solid rgba(180,155,101,.08); display: flex; flex-direction: column; text-decoration: none; color: inherit; transition: border-color .25s, transform .25s; }
.hmv-cat .svc-card:hover { border-color: rgba(180,155,101,.25); transform: translateY(-4px); }
.hmv-cat .svc-card:focus-visible { outline: 2px solid var(--c-gold-b); outline-offset: 3px; }

.hmv-cat .svc-card-img { aspect-ratio: 16/10; overflow: hidden; position: relative; background: var(--c-green); }
.hmv-cat .svc-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; display: block; }
.hmv-cat .svc-card:hover .svc-card-img img { transform: scale(1.04); }
.hmv-cat .svc-tag { position: absolute; top: 12px; left: 12px; font-family: var(--ff-sans); font-size: 10px; letter-spacing: .22em; text-transform: uppercase; padding: 5px 10px; font-weight: var(--fw-semi); background: var(--c-gold-b); color: var(--c-dark); }

.hmv-cat .svc-body { flex: 1; padding: clamp(18px,2.5vw,28px); }
.hmv-cat .svc-eyebrow { font-family: var(--ff-sans); font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--c-gold-b); opacity: .7; margin-bottom: 10px; }
.hmv-cat .svc-title { font-family: var(--ff-serif); font-size: 22px; font-weight: var(--fw-reg); line-height: 1.2; color: var(--c-gold-cream); margin-bottom: 14px; }
.hmv-cat .svc-desc { font-family: var(--ff-sans); font-size: 13px; font-weight: var(--fw-light); line-height: 1.75; color: rgba(218,205,179,.55); }
.hmv-cat .svc-includes { margin-top: 18px; display: flex; flex-direction: column; gap: 7px; }
.hmv-cat .svc-include { display: flex; align-items: flex-start; gap: 8px; font-family: var(--ff-sans); font-size: 12px; font-weight: var(--fw-light); color: rgba(218,205,179,.5); line-height: 1.5; }
.hmv-cat .svc-include::before { content: '✓'; color: var(--c-gold-b); font-size: 11px; flex-shrink: 0; margin-top: 1px; font-weight: var(--fw-semi); }

.hmv-cat .svc-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 20px; border-top: 1px solid rgba(180,155,101,.15); margin-top: auto; }
.hmv-cat .svc-price-label { font-family: var(--ff-sans); font-size: 10px; font-weight: var(--fw-med); letter-spacing: .18em; text-transform: uppercase; color: var(--c-gold-b); opacity: .75; }
.hmv-cat .svc-book-cta { display: inline-flex; align-items: center; gap: 6px; font-family: var(--ff-sans); font-size: 9px; font-weight: var(--fw-semi); letter-spacing: .2em; text-transform: uppercase; padding: 9px 18px; min-height: 36px; background: var(--c-gold-b); color: var(--c-dark); white-space: nowrap; flex-shrink: 0; transition: background .2s; }
.hmv-cat .svc-card:hover .svc-book-cta { background: var(--c-gold); }

/* ── HOW IT WORKS ── */
.hmv-cat .how-section { background: #fff; padding: clamp(56px,7vw,80px) 0; }
.hmv-cat .steps-grid { display: grid; grid-template-columns: 1fr; gap: 0; margin-top: 40px; border: 1px solid var(--c-divider); overflow: hidden; }
@media (min-width: 700px) { .hmv-cat .steps-grid { grid-template-columns: repeat(4, 1fr); } }
.hmv-cat .step { padding: clamp(20px,3vw,32px) clamp(16px,2.5vw,24px); border-bottom: 1px solid var(--c-divider); }
@media (min-width: 700px) { .hmv-cat .step { border-bottom: none; border-right: 1px solid var(--c-divider); } .hmv-cat .step:last-child { border-right: none; } }
.hmv-cat .step-num { font-family: var(--ff-serif); font-size: 48px; font-weight: var(--fw-light); color: var(--c-gold); line-height: 1; margin-bottom: 12px; }
.hmv-cat .step-title { font-family: var(--ff-sans); font-size: 13px; font-weight: var(--fw-med); color: var(--c-green); margin-bottom: 8px; letter-spacing: .04em; }
.hmv-cat .step-body { font-family: var(--ff-sans); font-size: 12.5px; font-weight: var(--fw-light); line-height: 1.7; color: var(--c-green-mid); }

/* ── RELATED ── */
.hmv-cat .related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; margin-top: 16px; }
.hmv-cat .related-card { display: flex; flex-direction: column; gap: 6px; padding: clamp(14px,2vw,16px) 18px; background: #f7fcf9; border: 1px solid var(--c-divider); border-left: 3px solid var(--c-gold-b); border-radius: 0 6px 6px 0; text-decoration: none; transition: background .15s, transform .15s; }
.hmv-cat .related-card:hover { background: #eef7f2; transform: translateY(-2px); }
.hmv-cat .related-card:focus-visible { outline: 2px solid var(--c-gold); outline-offset: 3px; }
.hmv-cat .related-label { font-family: var(--ff-sans); font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--c-gold-b); }
.hmv-cat .related-name { font-family: var(--ff-serif); font-size: 16px; font-weight: var(--fw-reg); color: var(--c-green); line-height: 1.3; }
.hmv-cat .related-desc { font-family: var(--ff-sans); font-size: 12px; font-weight: var(--fw-light); color: var(--c-green-mid); line-height: 1.5; }
.hmv-cat .related-cta-row { display: flex; align-items: center; justify-content: center; gap: 7px; width: 100%; margin-top: 10px; font-family: var(--ff-sans); font-size: 9px; font-weight: var(--fw-semi); letter-spacing: .16em; text-transform: uppercase; color: var(--c-white); background: var(--c-green); border: 1px solid var(--c-green); padding: 10px 14px; min-height: 40px; transition: background .2s, border-color .2s; }
.hmv-cat .related-card:hover .related-cta-row { background: var(--c-gold); border-color: var(--c-gold); }
.hmv-cat .related-cta-row svg { flex-shrink: 0; transition: transform .2s; }
.hmv-cat .related-card:hover .related-cta-row svg { transform: translateX(3px); }

/* ── FAQ ── */
.hmv-cat .faq-section { background: #f5f9f7; padding: clamp(48px,6vw,72px) 0; }
.hmv-cat .faq-item { border-bottom: 1px solid rgba(26,55,53,.1); }
.hmv-cat .faq-item:first-of-type { border-top: 1px solid rgba(26,55,53,.1); }
.hmv-cat .faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 18px 0; cursor: pointer; list-style: none; font-family: var(--ff-sans); font-size: clamp(14px,1.2vw,15px); font-weight: var(--fw-reg); color: var(--c-green); line-height: 1.4; -webkit-tap-highlight-color: transparent; min-height: 48px; }
.hmv-cat .faq-item summary::-webkit-details-marker { display: none; }
.hmv-cat .faq-item summary:hover { color: var(--c-green-mid); }
.hmv-cat .faq-icon { width: 24px; min-width: 24px; height: 24px; border: 1px solid rgba(26,55,53,.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; background: #fff; transition: background .25s; }
.hmv-cat .faq-icon svg { width: 9px; height: 9px; stroke: var(--c-green); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; transition: transform .25s; }
.hmv-cat details[open].faq-item .faq-icon { background: var(--c-green); border-color: var(--c-green); }
.hmv-cat details[open].faq-item .faq-icon svg { stroke: #fff; transform: rotate(45deg); }
.hmv-cat .faq-body { font-family: var(--ff-sans); font-size: 14px; font-weight: var(--fw-light); line-height: 1.9; color: var(--c-green-mid); padding: 0 0 20px; max-width: 640px; overflow-wrap: break-word; word-break: break-word; }

/* ── CTA ── */
.hmv-cat .join-section { background: var(--c-green); padding: var(--sp-xl) 0; text-align: center; position: relative; overflow: hidden; }
.hmv-cat .join-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: min(600px,90vw); height: 280px; background: radial-gradient(ellipse, rgba(180,155,101,.12) 0%, transparent 70%); pointer-events: none; }
.hmv-cat .join-section h2 { font-family: var(--ff-serif); font-size: clamp(28px,4.5vw,52px); font-weight: var(--fw-light); color: var(--c-gold-cream); margin-bottom: 14px; line-height: 1.08; }
.hmv-cat .join-section h2 em { font-style: italic; color: var(--c-gold-b); }
.hmv-cat .join-section p { font-family: var(--ff-sans); font-size: clamp(13px,1.2vw,14px); font-weight: var(--fw-light); color: rgba(218,205,179,.65); max-width: 460px; margin: 0 auto 36px; line-height: 1.85; }
.hmv-cat .join-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 479px) { .hmv-cat .join-btns { flex-direction: column; } .hmv-cat .join-btns .btn-p, .hmv-cat .join-btns .btn-g { width: 100%; justify-content: center; } }

/* ── DISCLAIMER ── */
.hmv-cat .disclaimer-bar { background: #f5f9f7; border-top: 1px solid var(--c-divider); padding: 24px 0; }
.hmv-cat .disclaimer-bar p { font-family: var(--ff-sans); font-size: 11px; font-weight: var(--fw-light); color: var(--c-green-mid); line-height: 1.9; max-width: 920px; }
.hmv-cat .disclaimer-bar strong { color: var(--c-green); font-weight: var(--fw-med); }
