/* ============================================================================
   hh-interactive.css — "Interactive 2026" layer (ADDITIVE, FINAL)
   ----------------------------------------------------------------------------
   Styles for the new interaction layer:
     · scroll progress bar          · hero headline entrance + Ken Burns
     · image lightbox               · back-to-top with progress ring
     · shop live filter             · butchery cut explorer
     · cattle quote calculator      · tour booking modal + calendar
     · membership compare table     · micro-interactions (flash, magnetic)

   SAFETY
   - Every rule is gated under  html[data-hhx="on"]  → remove the flag (or this
     <link>) and the whole layer disappears, nothing else is touched.
   - Inherits the active skin via the existing CSS custom properties
     (--gold-cta, --primary-green, --bg-card, …) so it matches whichever
     re-skin is switched on.
   - No existing selector is overridden destructively.
   ========================================================================== */

/* ---------------------------------------------------------------------------
   1 · SCROLL PROGRESS BAR
   --------------------------------------------------------------------------- */
html[data-hhx="on"] .hhx-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 100%;
  z-index: 1500;
  pointer-events: none;
  transform-origin: 0 50%;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--gold-cta, #FFB400), var(--gold-dark, #E69E00));
  box-shadow: 0 1px 6px rgba(0, 0, 0, .18);
}

/* ---------------------------------------------------------------------------
   2 · HERO — headline entrance, lede/CTA stagger, Ken Burns on active slide
   --------------------------------------------------------------------------- */
html[data-hhx="on"] .hhx-w {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
html[data-hhx="on"] .hhx-wi { display: inline-block; }

@media (prefers-reduced-motion: no-preference) {
  html[data-hhx="on"].hhx-hero-anim .hhx-wi {
    animation: hhxWordUp .9s cubic-bezier(.22, 1, .36, 1) both;
    animation-delay: calc(var(--hhx-i, 0) * 90ms + 150ms);
  }
  html[data-hhx="on"].hhx-hero-anim .mc-hero-lede,
  html[data-hhx="on"].hhx-hero-anim .hero-actions {
    animation: hhxFadeUp 1s cubic-bezier(.22, 1, .36, 1) both;
    animation-delay: .65s;
  }
  html[data-hhx="on"].hhx-hero-anim .hero-actions { animation-delay: .8s; }

  /* Slow cinematic drift on whichever hero slide is showing */
  html[data-hhx="on"] .hero .mc-hero-photos .mc-slide.is-active {
    animation: hhxKenBurns 9s ease-out forwards;
  }
}
@keyframes hhxWordUp {
  from { transform: translateY(110%); }
  to   { transform: translateY(0); }
}
@keyframes hhxFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes hhxKenBurns {
  from { scale: 1.0; }
  to   { scale: 1.09; }
}

/* Mouse-parallax target gets its own smooth transform */
html[data-hhx="on"] .hero .mc-hero-photos {
  transition: translate .35s cubic-bezier(.22, 1, .36, 1);
  will-change: translate;
}

/* ---------------------------------------------------------------------------
   3 · MICRO-INTERACTIONS — magnetic CTAs, card flash highlight
   --------------------------------------------------------------------------- */
html[data-hhx="on"] .hhx-magnet {
  transition: translate .25s cubic-bezier(.22, 1, .36, 1);
  will-change: translate;
}
html[data-hhx="on"] .hhx-flash {
  animation: hhxFlash 1.6s ease-out 2;
}
@keyframes hhxFlash {
  0%   { box-shadow: 0 0 0 0 rgba(255, 180, 0, .65); }
  70%  { box-shadow: 0 0 0 14px rgba(255, 180, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 180, 0, 0); }
}

/* ---------------------------------------------------------------------------
   4 · BACK-TO-TOP — circular button with scroll-progress ring
   --------------------------------------------------------------------------- */
html[data-hhx="on"] .hhx-btt {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: var(--bg-footer, #181818);
  color: #fff;
  cursor: pointer;
  z-index: 1100;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity .3s ease, transform .3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
}
html[data-hhx="on"] .hhx-btt.is-show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
html[data-hhx="on"] .hhx-btt:hover { transform: translateY(-3px); }
html[data-hhx="on"] .hhx-btt svg.hhx-btt-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  pointer-events: none;
}
html[data-hhx="on"] .hhx-btt .hhx-btt-ring circle {
  fill: none;
  stroke: var(--gold-cta, #FFB400);
  stroke-width: 3;
  stroke-linecap: round;
}
html[data-hhx="on"] .hhx-btt .hhx-btt-arrow {
  font-size: 1.05rem;
  line-height: 1;
  translate: 0 0;
  transition: translate .25s ease;
}
html[data-hhx="on"] .hhx-btt:hover .hhx-btt-arrow { translate: 0 -2px; }

/* ---------------------------------------------------------------------------
   5 · SHOP LIVE FILTER
   --------------------------------------------------------------------------- */
html[data-hhx="on"] .hhx-shopfilter {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 6px;
}
html[data-hhx="on"] .hhx-shopfilter-box {
  position: relative;
  flex: 1 1 260px;
  max-width: 420px;
}
html[data-hhx="on"] .hhx-shopfilter-box svg {
  position: absolute;
  left: 14px;
  top: 50%;
  translate: 0 -50%;
  width: 16px;
  height: 16px;
  color: var(--text-muted, #9A9A94);
  pointer-events: none;
}
html[data-hhx="on"] .hhx-shopfilter input {
  width: 100%;
  min-height: 44px;
  padding: 10px 38px 10px 40px;
  border: 1.5px solid var(--border-soft, #EAEAE6);
  border-radius: 999px;
  background: var(--bg-card, #fff);
  font: inherit;
  font-size: .92rem;
  color: var(--text-primary, #1A1A1A);
  transition: border-color .22s ease, box-shadow .22s ease;
}
html[data-hhx="on"] .hhx-shopfilter input:focus {
  outline: none;
  border-color: var(--gold-cta, #FFB400);
  box-shadow: 0 0 0 4px rgba(255, 180, 0, .15);
}
html[data-hhx="on"] .hhx-shopfilter-clear {
  position: absolute;
  right: 8px;
  top: 50%;
  translate: 0 -50%;
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 50%;
  background: var(--bg-secondary, #F5F5F3);
  color: var(--text-secondary, #5C5C58);
  cursor: pointer;
  display: none;
  place-items: center;
  font-size: .85rem;
}
html[data-hhx="on"] .hhx-shopfilter.has-q .hhx-shopfilter-clear { display: grid; }
html[data-hhx="on"] .hhx-shopfilter-count {
  font-size: .85rem;
  color: var(--text-muted, #9A9A94);
  white-space: nowrap;
}
html[data-hhx="on"] .hhx-hide { display: none !important; }
html[data-hhx="on"] .hhx-shop-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 20px;
  color: var(--text-muted, #9A9A94);
  font-size: .95rem;
  border: 1.5px dashed var(--border-soft, #EAEAE6);
  border-radius: 16px;
}

/* ---------------------------------------------------------------------------
   6 · LIGHTBOX (tours)
   --------------------------------------------------------------------------- */
html[data-hhx="on"] .hhx-lb {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(14px, 4vw, 44px);
  background: rgba(12, 13, 12, .9);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
html[data-hhx="on"] .hhx-lb.is-open { opacity: 1; pointer-events: auto; }
html[data-hhx="on"] .hhx-lb-card {
  position: relative;
  width: min(880px, 100%);
  max-height: 90vh;
  background: var(--bg-card, #fff);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: scale(.94) translateY(12px);
  transition: transform .35s cubic-bezier(.22, 1, .36, 1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .45);
}
html[data-hhx="on"] .hhx-lb.is-open .hhx-lb-card { transform: scale(1) translateY(0); }
html[data-hhx="on"] .hhx-lb-media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
  flex: 0 1 auto;
  min-height: 0;
}
html[data-hhx="on"] .hhx-lb-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
html[data-hhx="on"] .hhx-lb-pill {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold-cta, #FFB400);
  color: #1C1C1C;
  font-size: .78rem;
  font-weight: 700;
  padding: 6px 13px;
  border-radius: 999px;
  letter-spacing: .04em;
}
html[data-hhx="on"] .hhx-lb-body {
  padding: 22px 26px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}
html[data-hhx="on"] .hhx-lb-body h3 {
  font-size: 1.35rem;
  color: var(--text-primary, #1A1A1A);
  margin: 0 0 6px;
}
html[data-hhx="on"] .hhx-lb-body p {
  margin: 0;
  color: var(--text-secondary, #5C5C58);
  font-size: .92rem;
  max-width: 52ch;
}
html[data-hhx="on"] .hhx-lb-close,
html[data-hhx="on"] .hhx-lb-nav {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, .14);
  color: #fff;
  font-size: 1.15rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  backdrop-filter: blur(4px);
  transition: background .22s ease, transform .22s ease;
  z-index: 2;
}
html[data-hhx="on"] .hhx-lb-close:hover,
html[data-hhx="on"] .hhx-lb-nav:hover { background: rgba(255, 255, 255, .3); transform: scale(1.07); }
html[data-hhx="on"] .hhx-lb-close { top: 12px; right: 12px; }
html[data-hhx="on"] .hhx-lb-prev { top: 50%; left: 12px; translate: 0 -50%; }
html[data-hhx="on"] .hhx-lb-next { top: 50%; right: 12px; translate: 0 -50%; }
@media (max-width: 640px) {
  html[data-hhx="on"] .hhx-lb-body { flex-direction: column; align-items: flex-start; }
}

/* ---------------------------------------------------------------------------
   7 · BUTCHERY — interactive cut explorer
   --------------------------------------------------------------------------- */
html[data-hhx="on"] .hhx-butchery-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 26px;
  align-items: stretch;
}
@media (max-width: 900px) {
  html[data-hhx="on"] .hhx-butchery-grid { grid-template-columns: 1fr; }
}
html[data-hhx="on"] .hhx-cutboard {
  background: var(--bg-card, #fff);
  border: 1px solid var(--border-soft, #EAEAE6);
  border-radius: 20px;
  box-shadow: var(--shadow-card, 0 2px 10px rgba(20,20,20,.05));
  padding: 26px 26px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
html[data-hhx="on"] .hhx-cutboard-hint {
  font-size: .82rem;
  color: var(--text-muted, #9A9A94);
  text-align: center;
  letter-spacing: .05em;
  text-transform: uppercase;
}
html[data-hhx="on"] .hhx-cow-svg { width: 100%; height: auto; display: block; }
html[data-hhx="on"] .hhx-beef-chart { position: relative; width: 100%; border-radius: 14px; overflow: hidden; }
html[data-hhx="on"] .hhx-beef-chart img { width: 100%; height: auto; display: block; }
html[data-hhx="on"] .hhx-hotspot { position: absolute; background: transparent; border: 0; padding: 0; cursor: pointer; border-radius: 10px; }
html[data-hhx="on"] .hhx-hotspot:hover,
html[data-hhx="on"] .hhx-hotspot:focus-visible,
html[data-hhx="on"] .hhx-hotspot.is-active { box-shadow: inset 0 0 0 2px rgba(45,106,79,.85); background: rgba(45,106,79,.10); outline: none; }
html[data-hhx="on"] .hhx-cut-region {
  fill: var(--bg-alt, #F0F0EC);
  stroke: var(--bg-card, #fff);
  stroke-width: 2.5;
  cursor: pointer;
  transition: fill .22s ease, opacity .22s ease;
}
html[data-hhx="on"] .hhx-cut-region:hover { fill: var(--gold-cta, #FFB400); opacity: .75; }
html[data-hhx="on"] .hhx-cut-region.is-active { fill: var(--gold-cta, #FFB400); opacity: 1; }
html[data-hhx="on"] .hhx-cow-extra { fill: var(--bg-alt, #F0F0EC); opacity: .55; pointer-events: none; }
html[data-hhx="on"] .hhx-cut-label {
  font-size: 13px;
  font-weight: 600;
  fill: var(--text-secondary, #5C5C58);
  pointer-events: none;
  text-anchor: middle;
}
html[data-hhx="on"] .hhx-cut-region.is-active + .hhx-cut-label,
html[data-hhx="on"] .hhx-region-group:hover .hhx-cut-label { fill: #1C1C1C; }

html[data-hhx="on"] .hhx-goat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  padding-top: 6px;
  border-top: 1px dashed var(--border-soft, #EAEAE6);
  margin-top: 8px;
  padding-top: 14px;
}
html[data-hhx="on"] .hhx-goat-chips-title {
  width: 100%;
  text-align: center;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted, #9A9A94);
}
html[data-hhx="on"] .hhx-chip {
  min-height: 44px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--border-soft, #EAEAE6);
  background: var(--bg-card, #fff);
  color: var(--text-primary, #1A1A1A);
  font: inherit;
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .22s ease;
}
html[data-hhx="on"] .hhx-chip:hover { border-color: var(--gold-cta, #FFB400); transform: translateY(-2px); }
html[data-hhx="on"] .hhx-chip.is-active {
  background: var(--gold-cta, #FFB400);
  border-color: var(--gold-cta, #FFB400);
  color: #1C1C1C;
}

html[data-hhx="on"] .hhx-cutinfo {
  background: var(--bg-card, #fff);
  border: 1px solid var(--border-soft, #EAEAE6);
  border-radius: 20px;
  box-shadow: var(--shadow-card, 0 2px 10px rgba(20,20,20,.05));
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
html[data-hhx="on"] .hhx-cutinfo.is-swap { animation: hhxFadeUp .4s cubic-bezier(.22,1,.36,1); }
html[data-hhx="on"] .hhx-cutinfo-runy {
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-dark, #E69E00);
  font-weight: 700;
}
html[data-hhx="on"] .hhx-cutinfo h3 {
  font-size: 1.5rem;
  color: var(--text-primary, #1A1A1A);
  margin: 0;
}
html[data-hhx="on"] .hhx-cutinfo p {
  margin: 0;
  color: var(--text-secondary, #5C5C58);
  font-size: .95rem;
  line-height: 1.6;
}
html[data-hhx="on"] .hhx-cutinfo-tips { display: flex; flex-wrap: wrap; gap: 8px; }
html[data-hhx="on"] .hhx-tip {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 6px 12px;
  border-radius: 6px;
  background: var(--bg-secondary, #F5F5F3);
  color: var(--text-secondary, #5C5C58);
  border: 1px solid var(--border-soft, #EAEAE6);
}
html[data-hhx="on"] .hhx-cutinfo-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--terracotta, #D9472B);
}
html[data-hhx="on"] .hhx-cutinfo-price small {
  font-size: .78rem;
  font-weight: 500;
  color: var(--text-muted, #9A9A94);
}
html[data-hhx="on"] .hhx-cutinfo-cta { margin-top: auto; display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------------------------------------------------------------------------
   8 · CATTLE QUOTE CALCULATOR
   --------------------------------------------------------------------------- */
html[data-hhx="on"] .hhx-calc {
  margin-top: 48px;
  background: var(--bg-card, #fff);
  border: 1px solid var(--border-soft, #EAEAE6);
  border-radius: 22px;
  box-shadow: var(--shadow-card, 0 2px 10px rgba(20,20,20,.05));
  overflow: hidden;
}
html[data-hhx="on"] .hhx-calc-head {
  padding: 26px 30px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 18px;
}
html[data-hhx="on"] .hhx-calc-head h3 {
  font-size: 1.45rem;
  color: var(--text-primary, #1A1A1A);
  margin: 10px 0 4px;
}
html[data-hhx="on"] .hhx-calc-head p {
  width: 100%;
  margin: 0;
  color: var(--text-secondary, #5C5C58);
  font-size: .92rem;
}
html[data-hhx="on"] .hhx-calc-rows { padding: 18px 30px 8px; }
html[data-hhx="on"] .hhx-calc-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 14px 22px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--border-soft, #EAEAE6);
}
html[data-hhx="on"] .hhx-calc-row:last-child { border-bottom: none; }
html[data-hhx="on"] .hhx-calc-name strong {
  display: block;
  font-size: .98rem;
  color: var(--text-primary, #1A1A1A);
}
html[data-hhx="on"] .hhx-calc-name small {
  color: var(--text-muted, #9A9A94);
  font-size: .8rem;
}
html[data-hhx="on"] .hhx-calc-unit {
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-secondary, #5C5C58);
  white-space: nowrap;
}
html[data-hhx="on"] .hhx-stepper {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--border-soft, #EAEAE6);
  border-radius: 999px;
  overflow: hidden;
  background: var(--bg-card, #fff);
}
html[data-hhx="on"] .hhx-stepper button {
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary, #1A1A1A);
  cursor: pointer;
  transition: background .18s ease;
}
html[data-hhx="on"] .hhx-stepper button:hover { background: var(--bg-secondary, #F5F5F3); }
html[data-hhx="on"] .hhx-stepper button:disabled { opacity: .3; cursor: default; background: transparent; }
html[data-hhx="on"] .hhx-stepper output {
  min-width: 38px;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary, #1A1A1A);
}
html[data-hhx="on"] .hhx-calc-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 30px 26px;
  background: var(--bg-secondary, #F5F5F3);
  border-top: 1px solid var(--border-soft, #EAEAE6);
}
html[data-hhx="on"] .hhx-calc-total small {
  display: block;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted, #9A9A94);
  font-weight: 700;
  margin-bottom: 2px;
}
html[data-hhx="on"] .hhx-calc-total strong {
  font-size: 1.6rem;
  color: var(--text-primary, #1A1A1A);
  transition: color .2s ease;
}
html[data-hhx="on"] .hhx-calc-total strong.is-bump { animation: hhxBump .3s ease; }
@keyframes hhxBump {
  0% { transform: scale(1); } 40% { transform: scale(1.08); } 100% { transform: scale(1); }
}
html[data-hhx="on"] .hhx-calc-note {
  width: 100%;
  font-size: .8rem;
  color: var(--text-muted, #9A9A94);
  margin: 0;
}
@media (max-width: 640px) {
  html[data-hhx="on"] .hhx-calc-row { grid-template-columns: 1fr auto; }
  html[data-hhx="on"] .hhx-calc-unit { grid-column: 1 / -1; }
}

/* ---------------------------------------------------------------------------
   9 · BOOKING MODAL + CALENDAR
   --------------------------------------------------------------------------- */
html[data-hhx="on"] .hhx-bk {
  position: fixed;
  inset: 0;
  z-index: 1350;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 3vw, 36px);
  background: rgba(12, 13, 12, .82);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
html[data-hhx="on"] .hhx-bk.is-open { opacity: 1; pointer-events: auto; }
html[data-hhx="on"] .hhx-bk-card {
  width: min(760px, 100%);
  max-height: 92vh;
  overflow: auto;
  background: var(--bg-card, #fff);
  border-radius: 20px;
  padding: clamp(22px, 4vw, 34px);
  position: relative;
  transform: scale(.94) translateY(14px);
  transition: transform .35s cubic-bezier(.22, 1, .36, 1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .45);
}
html[data-hhx="on"] .hhx-bk.is-open .hhx-bk-card { transform: scale(1) translateY(0); }
html[data-hhx="on"] .hhx-bk-card h3 {
  font-size: 1.5rem;
  margin: 0 0 4px;
  color: var(--text-primary, #1A1A1A);
}
html[data-hhx="on"] .hhx-bk-card > p {
  margin: 0 0 20px;
  color: var(--text-secondary, #5C5C58);
  font-size: .92rem;
}
html[data-hhx="on"] .hhx-bk-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--bg-secondary, #F5F5F3);
  color: var(--text-primary, #1A1A1A);
  font-size: 1rem;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
html[data-hhx="on"] .hhx-bk-close:hover { transform: rotate(90deg); }
html[data-hhx="on"] .hhx-bk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 26px;
}
@media (max-width: 680px) {
  html[data-hhx="on"] .hhx-bk-grid { grid-template-columns: 1fr; }
}
html[data-hhx="on"] .hhx-field { display: flex; flex-direction: column; gap: 7px; }
html[data-hhx="on"] .hhx-field label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--text-muted, #9A9A94);
}
html[data-hhx="on"] .hhx-field select,
html[data-hhx="on"] .hhx-field input {
  min-height: 46px;
  padding: 10px 14px;
  border: 1.5px solid var(--border-soft, #EAEAE6);
  border-radius: 12px;
  background: var(--bg-card, #fff);
  font: inherit;
  font-size: .94rem;
  color: var(--text-primary, #1A1A1A);
  transition: border-color .2s ease, box-shadow .2s ease;
}
html[data-hhx="on"] .hhx-field select:focus,
html[data-hhx="on"] .hhx-field input:focus {
  outline: none;
  border-color: var(--gold-cta, #FFB400);
  box-shadow: 0 0 0 4px rgba(255, 180, 0, .15);
}

/* calendar */
html[data-hhx="on"] .hhx-cal {
  border: 1.5px solid var(--border-soft, #EAEAE6);
  border-radius: 14px;
  padding: 14px;
  user-select: none;
}
html[data-hhx="on"] .hhx-cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
html[data-hhx="on"] .hhx-cal-head strong { font-size: .95rem; color: var(--text-primary, #1A1A1A); }
html[data-hhx="on"] .hhx-cal-head button {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--border-soft, #EAEAE6);
  background: var(--bg-card, #fff);
  cursor: pointer;
  font-size: .9rem;
  color: var(--text-primary, #1A1A1A);
  transition: all .2s ease;
}
html[data-hhx="on"] .hhx-cal-head button:hover:not(:disabled) { border-color: var(--gold-cta, #FFB400); }
html[data-hhx="on"] .hhx-cal-head button:disabled { opacity: .3; cursor: default; }
html[data-hhx="on"] .hhx-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}
html[data-hhx="on"] .hhx-cal-dow {
  text-align: center;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--text-muted, #9A9A94);
  padding: 4px 0 8px;
}
html[data-hhx="on"] .hhx-cal-day {
  aspect-ratio: 1;
  border: none;
  border-radius: 10px;
  background: transparent;
  font: inherit;
  font-size: .85rem;
  color: var(--text-primary, #1A1A1A);
  cursor: pointer;
  transition: background .15s ease, transform .15s ease;
}
html[data-hhx="on"] .hhx-cal-day:hover:not(:disabled) { background: var(--bg-secondary, #F5F5F3); transform: scale(1.06); }
html[data-hhx="on"] .hhx-cal-day:disabled { color: var(--text-muted, #C9C9C4); cursor: default; }
html[data-hhx="on"] .hhx-cal-day.is-today { box-shadow: inset 0 0 0 1.5px var(--border-soft, #d9d9d4); }
html[data-hhx="on"] .hhx-cal-day.is-selected {
  background: var(--gold-cta, #FFB400);
  color: #1C1C1C;
  font-weight: 700;
}
html[data-hhx="on"] .hhx-bk-summary {
  margin-top: 4px;
  font-size: .88rem;
  color: var(--text-secondary, #5C5C58);
  background: var(--bg-secondary, #F5F5F3);
  border-radius: 12px;
  padding: 12px 16px;
  line-height: 1.55;
}
html[data-hhx="on"] .hhx-bk-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
  margin-top: 22px;
}

/* "Plan your visit" trigger under the tour grid */
html[data-hhx="on"] .hhx-tours-cta {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

/* ---------------------------------------------------------------------------
   10 · MEMBERSHIP COMPARE
   --------------------------------------------------------------------------- */
html[data-hhx="on"] .hhx-cmp-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
html[data-hhx="on"] .hhx-cmp {
  overflow-x: auto;
  margin-top: 26px;
  border: 1px solid var(--border-soft, #EAEAE6);
  border-radius: 18px;
  background: var(--bg-card, #fff);
  box-shadow: var(--shadow-card, 0 2px 10px rgba(20,20,20,.05));
  display: none;
}
html[data-hhx="on"] .hhx-cmp.is-open { display: block; animation: hhxFadeUp .45s cubic-bezier(.22,1,.36,1); }
html[data-hhx="on"] .hhx-cmp table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}
html[data-hhx="on"] .hhx-cmp th,
html[data-hhx="on"] .hhx-cmp td {
  padding: 14px 18px;
  text-align: center;
  font-size: .9rem;
  border-bottom: 1px solid var(--border-soft, #EAEAE6);
  color: var(--text-secondary, #5C5C58);
  transition: background .15s ease;
}
html[data-hhx="on"] .hhx-cmp tr:last-child td { border-bottom: none; }
html[data-hhx="on"] .hhx-cmp th {
  font-size: .95rem;
  color: var(--text-primary, #1A1A1A);
  background: var(--bg-secondary, #F5F5F3);
}
html[data-hhx="on"] .hhx-cmp th small {
  display: block;
  font-weight: 600;
  font-size: .78rem;
  color: var(--terracotta, #D9472B);
  margin-top: 2px;
}
html[data-hhx="on"] .hhx-cmp td:first-child,
html[data-hhx="on"] .hhx-cmp th:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--text-primary, #1A1A1A);
}
html[data-hhx="on"] .hhx-cmp .hhx-yes { color: var(--primary-green, #1C1C1C); font-weight: 700; }
html[data-hhx="on"] .hhx-cmp .hhx-no { color: var(--text-muted, #C9C9C4); }
html[data-hhx="on"] .hhx-cmp td.is-hl, html[data-hhx="on"] .hhx-cmp th.is-hl { background: rgba(255, 180, 0, .1); }
html[data-hhx="on"] .hhx-cmp .hhx-cmp-go {
  font-size: .82rem;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1.5px solid var(--border-soft, #EAEAE6);
  background: var(--bg-card, #fff);
  color: var(--text-primary, #1A1A1A);
  cursor: pointer;
  transition: all .2s ease;
}
html[data-hhx="on"] .hhx-cmp .hhx-cmp-go:hover {
  background: var(--gold-cta, #FFB400);
  border-color: var(--gold-cta, #FFB400);
  color: #1C1C1C;
  transform: translateY(-2px);
}

/* ---------------------------------------------------------------------------
   11 · REDUCED MOTION — kill the purely decorative movement
   --------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html[data-hhx="on"] .hhx-magnet,
  html[data-hhx="on"] .hero .mc-hero-photos { transition: none; }
  html[data-hhx="on"] .hhx-flash { animation: none; }
}
