/* ============================================================
   HORIZONS 2026 — PAGE V3 (full stylesheet)
   Self-contained CSS for index-v3.html (+ script-v3.js).
   Production site: index.html + style.css — merge changes from here when ready.
   Brand: Navy (#0c1d31), Maroon (#5e242d), Red (#ff0008), Steel (#707b87), Dark Grey (#2c3238)
   ============================================================ */

/*
 * Do not use a global * { margin:0; padding:0 } reset here — this stylesheet
 * loads on Elementor pages and would break layout site-wide. Box model only.
 */
html {
  box-sizing: border-box;
}
*,
*::before,
*::after {
  box-sizing: inherit;
}

/* ── Accessibility Utilities ─────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--navy-deep, #0a0a0a);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 8px 8px;
  font-weight: 700;
  font-size: 0.875rem;
  z-index: 10000;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ── Focus Indicators ────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 2px;
}

:root {
  /* ── Hexure brand ── */
  --red:          #ff0008;
  --red-hover:    #d90007;
  /* Primary CTA — brand red */
  --btn-primary:       var(--red);
  --btn-primary-hover: var(--red-hover);
  /* Filled button variants (palette) */
  --btn-coral:         #ff7c66;
  --btn-coral-hover:   #ff684d;
  --btn-coral-text:    #0c1d31;
  --btn-steel-hover:   #5e6977;
  --btn-maroon-hover:  #4a1c26;
  --btn-navy-hover:    #081426;
  --btn-magenta:       #fc1358;
  --btn-magenta-hover: #e01150;

  /* ── Hexure extended palette ── */
  --brand-navy:      #0c1d31;
  --brand-maroon:    #5e242d;
  --brand-steel:     #707b87;
  --brand-dark-grey: #2c3238;
  /* Primary 135° navy → maroon (fees, sponsors, kit band) */
  --brand-gradient: linear-gradient(135deg, #0c1d31 0%, #5e242d 78%);
  /* Alias — same stops as --brand-gradient */
  --brand-gradient-navy-maroon: var(--brand-gradient);
  --brand-gradient-maroon-navy: linear-gradient(135deg, var(--brand-maroon) 0%, var(--brand-navy) 78%);
  /* Join Us + footer: same 135° red → #07a as before, but #0077aa starts at 20% (solid red 0–20%) */
  --brand-gradient-footer: linear-gradient(135deg, var(--brand-maroon) 40%, var(--brand-navy) 78%);
  /* Maroon → navy (135°), inverse stop order (e.g. stats strip) */
  --brand-gradient-flipped: linear-gradient(135deg, #5e242d 0%, #0c1d31 78%);
  /* Navy top-left → maroon bottom-right (pairs with corner hex echoes) */
  --brand-gradient-tl-br: linear-gradient(to bottom right, #0c1d31 0%, #5e242d 72%, #4a1c26 100%);
  /* Same stops as --brand-gradient-tl-br; direction mirrored on vertical axis (toward top-right) */
  --brand-gradient-tl-br-y-flip: linear-gradient(to top right, #0c1d31 0%, #5e242d 72%, #4a1c26 100%);
  /* Maroon → navy blue (hero) */
  --hero-gradient-maroon-blue: linear-gradient(
    to bottom right,
    #5e242d 0%,
    #4a1c26 36%,
    #1a2d44 68%,
    #0c1d31 88%,
    #081426 100%
  );
  --brand-gradient-02: linear-gradient(135deg, #fc1358 0%, #ff0008 100%);
  --brand-gradient-02-hover: linear-gradient(135deg, #e01150 0%, #d90007 100%);

  /* ── Dark palette ── */
  --navy-deep:    #0c1d31;
  --navy:         #0c1d31;
  --navy-mid:     #2c3238;
  --navy-card:    #1a2d44;
  --white:        #FFFFFF;
  --gray-light:   #F4F5F7;
  --gray-50:      #F9FAFB;
  --gray-100:     #EEF0F3;
  --gray-mid:     #8A95A3;
  --gray-dark:    #444E5C;
  --text:         #111827;
  --text-muted:   #6B7280;

  /* ── Accent — currently Hexure red; swap to --icapital-blue to port ── */
  --accent:       var(--red);
  --accent-hover: var(--red-hover);

  --font: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Roboto Slab', Georgia, serif;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 2px 12px rgba(0,0,0,0.07);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);

  --anim-reveal-duration: 1s;
  --anim-reveal-ease: cubic-bezier(0, 0, 0.37, 1);
  --anim-reveal-offset: 8%;
}

html { scroll-behavior: smooth; }

/* Body + typography — only when Horizons front adds .horizons-page. Nested so `& p` stays one class + types; component blocks use `body.horizons-page .widget…` and win without :not() chains. */
body.horizons-page {
  font-family: var(--font);
  font-size: 1.0625rem; /* 17px — audience skews older */
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;

  & h1,
  & h2 {
    font-family: var(--font-heading);
    line-height: 1.15;
    font-weight: 600;
    letter-spacing: -0.01em;
    text-wrap: balance;
  }

  & h3,
  & h4 {
    font-family: var(--font-heading);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.01em;
    text-wrap: balance;
  }

  & h4 {
    color: #000;
  }

  & p {
    line-height: 1.7;
    text-wrap: pretty;
  }

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

  & address {
    font-style: normal;
  }
}

/* Rich text: H4 reads as true black (parent .rte often sets muted body color). */
body.horizons-page .rte h4,
body.elementor-editor-active .elementor-widget-container .rte h4 {
  color: #000 !important;
}

body.horizons-page .section.reg-fees .rte h4,
body.elementor-editor-active .section.reg-fees .rte h4 {
  color: rgba(255, 255, 255, 0.95) !important;
}

body.horizons-page :is(.travel-dates, .experience-kissimmee) .travel-dates-extend-copy.rte h4,
body.elementor-editor-active :is(.travel-dates, .experience-kissimmee) .travel-dates-extend-copy.rte h4 {
  color: color-mix(in srgb, var(--white) 92%, transparent) !important;
}

.body-lg { font-size: 1.25rem; line-height: 1.75; }

/* ── Layout ─────────────────────────────────────────────── */
/* Named horizons-container — avoids clashing with Elementor / Bootstrap .container */
.horizons-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section .horizons-container {
  position: relative;
  z-index: 2;
}

.section { position: relative; padding: 6rem 0; overflow: hidden; }
.section--light  { background: var(--white); }
.section--dark   { background: var(--navy); }
.section--subtle { background: linear-gradient(160deg, var(--gray-50) 0%, #f0f1f3 100%); }

.section--subtle .section__subhead {
  margin-bottom: 3rem;
}

.section--quotes {
  background: var(--gray-50);

  /* Navy glow behind the quote block — static, centered */
  & .shape--quotes {
    --quotes-glow-size: clamp(520px, 88vw, 760px);
    z-index: 0;
    transform: none;
    will-change: auto;
    transform-origin: 50% 50%;
    width: var(--quotes-glow-size);
    height: var(--quotes-glow-size);
    top: 50%;
    left: 50%;
    right: auto;
    bottom: auto;
    margin-top: calc(var(--quotes-glow-size) / -2);
    margin-left: calc(var(--quotes-glow-size) / -2);
    background: radial-gradient(
      circle,
      rgba(12, 29, 49, 0.15) 0%,
      rgba(12, 29, 49, 0.06) 40%,
      transparent 72%
    );
  }

  & .quotes-card {
    position: relative;
    z-index: 1;
  }
}
.section.section--venue {
  background: var(--white);
  padding-top: 0;
  padding-bottom: 0;
}

.section--venue .horizons-container {
  padding-left: 0;
  padding-right: 0;
}
/* Shares one continuous gradient with .footer via fixed attachment */
.section--info {
  background-image: var(--brand-gradient-footer);
  background-attachment: fixed;

  & .section__heading {
    color: var(--white);
    text-shadow: 0 1px 14px rgba(0, 0, 0, 0.35);
    margin-bottom: 2.5rem;
  }

  /* Join Us cards: FA 7 Light (fa-light + --fa-style for variable Pro fonts) */
  & .info-card__icon i.fa-light {
    --fa-style: 300;
    font-weight: 300;
    font-size: 3.2rem;
    color: color-mix(in srgb, var(--red) 68%, white);
  }
}

.section--info .section--info__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 42%,
    rgba(0, 0, 0, 0.35) 68%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 42%,
    rgba(0, 0, 0, 0.35) 68%,
    transparent 100%
  );
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

/* ── Skewed section backgrounds ─────────────────────────── */
.section--skew-bg::before {
  content: '';
  position: absolute;
  inset: -8% 0;
  background: inherit;
  transform: skewY(-2.5deg);
  z-index: -1;
}
.section--skew-bg { background: transparent; overflow: visible; }

/* ── Slanted Grid Pattern ────────────────────────────────── */
.section__pattern {
  position: absolute;
  inset: -20%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='42' height='72'%3E%3Cpolygon points='21,2 40,13 40,35 21,46 2,35 2,13' fill='none' stroke='rgba(198%2C202%2C208%2C0.14)' stroke-width='1'/%3E%3Cpolygon points='0,48 0,70 21,81 42,70 42,48 21,37' fill='none' stroke='rgba(198%2C202%2C208%2C0.14)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 42px 72px;
  transform: skewY(-5deg);
  transform-origin: top left;
  pointer-events: none;
  z-index: 0;
}

/* ── Hexagon utility ─────────────────────────────────────── */
/* Flat-top hex: wider than tall, clean UI badge shape */
.hex {
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

/*
 * Hex photo clip — same flat-top regular hex as Illustrator export
 * `horizons-ci-hex-group.svg` (clipPath ids: horizons-ci-clip-hex-large / small).
 * Use on a wrapper; put <img class="horizons-ci-hex-photo__media"> inside.
 */
.horizons-ci-hex-photo {
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1 / 0.8660254;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.horizons-ci-hex-photo__media {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ── Parallax Shapes ─────────────────────────────────────── */
.shape {
  position: absolute;
  pointer-events: none;
  will-change: transform;
  border-radius: 50%;
}
.shape--red {
  width: 580px;
  height: 580px;
  background: radial-gradient(circle, rgba(232,0,29,0.07) 0%, transparent 65%);
}
.shape--gray {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(0,0,0,0.04) 0%, transparent 65%);
}
.shape--tr { top: -120px;    right:  -180px; }
.shape--tl { top: -120px;    left:   -180px; }
.shape--br { bottom: -120px; right:  -180px; }
.shape--bl { bottom: -120px; left:   -180px; }

@media (prefers-reduced-motion: reduce) {
  .shape { will-change: auto !important; transform: none !important; }
}

/* ── Watermark text ──────────────────────────────────────── */
.section__watermark {
  position: absolute;
  font-size: clamp(6rem, 18vw, 14rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: rgba(0,0,0,0.04);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}
.section--light .section__watermark { color: rgba(0,0,0,0.03); }
.section__watermark--top  { top: 0.1em; right: -0.05em; }
.section__watermark--dark { color: rgba(255,255,255,0.05); }

#expect .section__watermark {
  text-align: right;
  line-height: 0.8;
}

/* ── Scroll reveal utilities (OnCall-style fadeup / cascade) ───────── */
.hide-overflow {
  overflow: hidden;
  display: block;
}

.appear {
  transition: 0.6s;
  display: block;

  &.down {
    transform: translateY(-100%);
  }

  &.up {
    transform: translateY(100%);
  }

  &.in-view {
    transform: translateY(0%);
  }
}

.delay-10,
.delay-15 {
  transition-delay: 0.15s;
}

.delay-25 {
  transition-delay: 0.25s;
}

.delay-50 {
  transition-delay: 0.5s;
}

.delay-75 {
  transition-delay: 0.75s;
}

.delay-100 {
  transition-delay: 1s;
}

.fadeup {
  opacity: 0;
  transition-duration: var(--anim-reveal-duration);
  transform: translate3d(0, var(--anim-reveal-offset), 0);

  &.in-view {
    transition-timing-function: var(--anim-reveal-ease);
    opacity: 1;
    transform: none;
  }

  & i {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 767px) {
  .m-fadeup {
    opacity: 0;
    transition-duration: var(--anim-reveal-duration);
    transform: translate3d(0, var(--anim-reveal-offset), 0);

    &.in-view {
      transition-timing-function: var(--anim-reveal-ease);
      opacity: 1;
      transform: none;
    }
  }
}

.fadeup-cascade > * {
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: var(--anim-reveal-duration);
  transition-property: opacity, transform;
}

.fadeup-cascade.in-view > * {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-timing-function: var(--anim-reveal-ease);
}

.fadeup-cascade > *:nth-child(1) { transition-delay: 0.15s; }
.fadeup-cascade > *:nth-child(2) { transition-delay: 0.3s; }
.fadeup-cascade > *:nth-child(3) { transition-delay: 0.45s; }
.fadeup-cascade > *:nth-child(4) { transition-delay: 0.6s; }
.fadeup-cascade > *:nth-child(5) { transition-delay: 0.75s; }
.fadeup-cascade > *:nth-child(6) { transition-delay: 0.9s; }
.fadeup-cascade > *:nth-child(7) { transition-delay: 1.05s; }
.fadeup-cascade > *:nth-child(8) { transition-delay: 1.2s; }
.fadeup-cascade > *:nth-child(9) { transition-delay: 1.35s; }
.fadeup-cascade > *:nth-child(10) { transition-delay: 1.5s; }
.fadeup-cascade > *:nth-child(11) { transition-delay: 1.65s; }
.fadeup-cascade > *:nth-child(12) { transition-delay: 1.8s; }

.fadeup-cascade > .info-card {
  transition:
    opacity var(--anim-reveal-duration) var(--anim-reveal-ease),
    transform var(--anim-reveal-duration) var(--anim-reveal-ease),
    border-color var(--transition),
    box-shadow var(--transition);
}

/* Spine: keep rotate(180deg); fade opacity only (cascade translate would replace transform and read as a bad “rotate in”) */
.savedate__poster.fadeup-cascade > .savedate__spine {
  opacity: 0;
  transform: rotate(180deg);
  transition-duration: var(--anim-reveal-duration);
  transition-property: opacity;
  transition-timing-function: var(--anim-reveal-ease);
  transition-delay: 0.15s;
}

.savedate__poster.fadeup-cascade.in-view > .savedate__spine {
  opacity: 1;
  transform: rotate(180deg);
}

/* Venue map: no cascade translate — keep translateY(-50%) for absolute centering */
.venue-layout.fadeup-cascade > .venue__media {
  opacity: 0;
  transform: translateY(-50%);
  transition: none;
  transition-delay: 0s;
}

.venue-layout.fadeup-cascade.in-view > .venue__media {
  opacity: 1;
  transform: translateY(-50%);
}

.slidedown {
  opacity: 0;
  transition-duration: var(--anim-reveal-duration);
  transform: translate3d(0, -8%, 0);

  &.in-view {
    transition-timing-function: var(--anim-reveal-ease);
    opacity: 1;
    transform: none;
  }
}

.slideleft {
  opacity: 0;
  transition-duration: var(--anim-reveal-duration);
  transform: translate3d(-20px, 0, 0);

  &.in-view {
    transition-timing-function: var(--anim-reveal-ease);
    opacity: 1;
    transform: none;
  }
}

.slideright {
  opacity: 0;
  transition-duration: var(--anim-reveal-duration);
  transform: translate3d(20px, 0, 0);

  &.in-view {
    transition-timing-function: var(--anim-reveal-ease);
    opacity: 1;
    transform: none;
  }
}

.fadein {
  opacity: 0;
  transition-duration: var(--anim-reveal-duration);

  &.in-view {
    transition-timing-function: linear;
    opacity: 1;
    transform: none;
  }
}

.anim-ready {
  opacity: 0;
  will-change: opacity, transform;
  transition-duration: var(--anim-reveal-duration);
  transition-property: opacity, transform;
  transform: translate3d(0, var(--anim-reveal-offset), 0);
}

.anim-ready.in-view {
  will-change: auto;
  transition-timing-function: var(--anim-reveal-ease);
  opacity: 1;
  transform: none;
}

.anim-ready.anim-from-left {
  transform: translate3d(-20px, 0, 0);
}

.anim-ready.anim-from-right {
  transform: translate3d(20px, 0, 0);
}

.anim-ready.anim-from-left.in-view,
.anim-ready.anim-from-right.in-view {
  transform: none;
}

.anim-ready i {
  opacity: 1 !important;
  transform: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .anim-ready,
  .fadeup,
  .m-fadeup,
  .fadeup-cascade > *,
  .slidedown,
  .slideleft,
  .slideright,
  .fadein,
  .appear {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    transition-delay: 0s !important;
  }

  .savedate__poster.fadeup-cascade > .savedate__spine {
    transform: rotate(180deg) !important;
  }
}

/*
 * Elementor editor / preview: scroll-reveal hides `.fadeup-cascade > *` until `.in-view`.
 * The builder canvas often never intersects (or IO fires unreliably), so widgets look empty.
 */
body.elementor-editor-active .fadeup-cascade > *,
body.elementor-editor-active .fadeup,
body.elementor-editor-active .anim-ready,
body.elementor-editor-active .slidedown,
body.elementor-editor-active .slideleft,
body.elementor-editor-active .slideright,
body.elementor-editor-active .fadein,
body.elementor-editor-active .appear {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  transition-delay: 0s !important;
}

body.elementor-editor-active .savedate__poster.fadeup-cascade > .savedate__spine {
  transform: rotate(180deg) !important;
}

body.elementor-editor-active .venue-layout.fadeup-cascade > .venue__media {
  transform: translateY(-50%) !important;
}

/* ── Eyebrow / Labels ───────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.eyebrow--red    { color: var(--red); }
.eyebrow--center { display: block; text-align: center; }

/* ── Section Headings ───────────────────────────────────── */
.section__heading {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--text);
  margin-bottom: 1.25rem;
}
.section__heading--light { color: var(--white); }
.section__heading--center { text-align: center; }

/*
 * Elementor global / kit styles often set h2 to the site accent (red) and a theme font.
 * Horizons section titles use .section__heading / .content-section__heading — lock Slab + body text
 * (except on gradient #info, which keeps its own white heading rules above).
 */
body.horizons-page .elementor-widget-container .section:not(.section--info) h2.section__heading,
body.horizons-page .elementor-widget-container .section:not(.section--info) .section__heading,
body.horizons-page .elementor-widget-container .section:not(.section--info) h2.content-section__heading,
body.horizons-page .elementor-widget-container .section:not(.section--info) h3.content-section__heading,
body.elementor-editor-active .elementor-widget-container .section:not(.section--info) h2.section__heading,
body.elementor-editor-active .elementor-widget-container .section:not(.section--info) .section__heading,
body.elementor-editor-active .elementor-widget-container .section:not(.section--info) h2.content-section__heading,
body.elementor-editor-active .elementor-widget-container .section:not(.section--info) h3.content-section__heading,
.elementor .elementor-widget[class*='elementor-widget-hexure_horizons'] .elementor-widget-container .section:not(.section--info) h2.section__heading,
.elementor .elementor-widget[class*='elementor-widget-hexure_horizons'] .elementor-widget-container .section:not(.section--info) .section__heading,
.elementor .elementor-widget[class*='elementor-widget-hexure_horizons'] .elementor-widget-container .section:not(.section--info) h2.content-section__heading,
.elementor .elementor-widget[class*='elementor-widget-hexure_horizons'] .elementor-widget-container .section:not(.section--info) h3.content-section__heading {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text) !important;
}

body.horizons-page .elementor-widget-container .section.sponsors-gradient-cta .sponsors-gradient-cta-band h2.content-section__heading,
body.elementor-editor-active .elementor-widget-container .section.sponsors-gradient-cta .sponsors-gradient-cta-band h2.content-section__heading,
.elementor .elementor-widget[class*='elementor-widget-hexure_horizons'] .elementor-widget-container .section.sponsors-gradient-cta .sponsors-gradient-cta-band h2.content-section__heading {
  color: var(--white) !important;
}

/* PHP bundle / non-Elementor shell: same heading color when section is not on dark/info */
body.horizons-page .section:not(.section--info):not(.section--dark) h2.section__heading,
body.horizons-page .section:not(.section--info):not(.section--dark) h2.content-section__heading,
body.horizons-page .section:not(.section--info):not(.section--dark) h3.content-section__heading {
  color: var(--text) !important;
}

body.horizons-page .section.sponsors-gradient-cta .sponsors-gradient-cta-band h2.content-section__heading {
  color: var(--white) !important;
}

.section__subhead {
  font-size: 1.1875rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 3.5rem;
  line-height: 1.7;
}
.section__subhead--light { color: rgba(255,255,255,0.65); }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font);
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1); }
.btn:active { transform: translateY(0); }

.btn--red  { background: var(--red); color: var(--white); border-color: var(--red); }
.btn--red:hover {
  background: var(--red-hover);
  border-color: var(--red-hover);
  box-shadow: 0 6px 24px rgba(255, 0, 8, 0.38);
}

.btn--white { background: var(--white); color: var(--red); border-color: var(--white); }
.btn--white:hover { background: rgba(255,255,255,0.9); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }

.btn--outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: var(--white) !important; box-shadow: none; }

/* Aliases: semantic names (same as .btn--red / .btn--white defaults) */
.btn--primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn--primary:hover {
  background: var(--red-hover);
  border-color: var(--red-hover);
  box-shadow: 0 6px 24px rgba(255, 0, 8, 0.38);
}

/* Palette variants — use with .btn .btn--sm|md|lg|xl */
.btn--steel {
  background: var(--brand-steel);
  color: var(--white);
  border-color: var(--brand-steel);
}
.btn--steel:hover {
  background: var(--btn-steel-hover);
  border-color: var(--btn-steel-hover);
  box-shadow: 0 6px 24px rgba(112, 123, 135, 0.42);
}

.btn--coral {
  background: var(--btn-coral);
  color: var(--btn-coral-text);
  border-color: var(--btn-coral);
}
.btn--coral:hover {
  background: var(--btn-coral-hover);
  border-color: var(--btn-coral-hover);
  color: var(--btn-coral-text);
  box-shadow: 0 6px 24px rgba(255, 124, 102, 0.45);
}

.btn--maroon {
  background: var(--brand-maroon);
  color: var(--white);
  border-color: var(--brand-maroon);
}
.btn--maroon:hover {
  background: var(--btn-maroon-hover);
  border-color: var(--btn-maroon-hover);
  box-shadow: 0 6px 24px rgba(94, 36, 45, 0.45);
}

.btn--navy {
  background: var(--brand-navy);
  color: var(--white);
  border-color: var(--brand-navy);
}
.btn--navy:hover {
  background: var(--btn-navy-hover);
  border-color: var(--btn-navy-hover);
  box-shadow: 0 6px 24px rgba(12, 29, 49, 0.5);
}

.btn--magenta {
  background: var(--btn-magenta);
  color: var(--white);
  border-color: var(--btn-magenta);
}
.btn--magenta:hover {
  background: var(--btn-magenta-hover);
  border-color: var(--btn-magenta-hover);
  box-shadow: 0 6px 24px rgba(252, 19, 88, 0.42);
}

/* Original Hexure red (filled) — use when you want #ff0008 instead of primary blue */
.btn--brand-red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn--brand-red:hover {
  background: var(--red-hover);
  border-color: var(--red-hover);
  box-shadow: 0 6px 24px rgba(255, 0, 8, 0.4);
}

/* Oversized gradient + pan on hover so lighter #fc1358 fills the button */
.btn--gradient-02 {
  background-color: #ff0008;
  background-image: linear-gradient(135deg, #fc1358 0%, #ff0008 100%);
  background-size: 240% 240%;
  background-position: 100% 50%;
  background-repeat: no-repeat;
  color: var(--white);
  border-color: transparent;
  transition:
    background-position 0.5s ease,
    box-shadow var(--transition),
    transform var(--transition);
}
.btn--gradient-02:hover {
  background-position: 0% 50%;
  box-shadow: 0 6px 28px rgba(252, 19, 88, 0.45);
}

@media (prefers-reduced-motion: reduce) {
  .btn--gradient-02 {
    background: var(--brand-gradient-02);
    background-size: auto;
    background-position: center;
    transition: box-shadow var(--transition), transform var(--transition);
  }

  .btn--gradient-02:hover {
    background: var(--brand-gradient-02-hover);
  }
}

.btn--sm  { font-size: 0.8125rem; padding: 0.5rem 1.125rem; }
.btn--md  { font-size: 0.9375rem; padding: 0.75rem 1.5rem; }
.btn--lg  { font-size: 1rem;      padding: 0.875rem 2rem; }
.btn--xl  { font-size: 1.125rem;  padding: 1.125rem 2.5rem; }

/* ── About: Intro ───────────────────────────────────────── */
/* ── Bridge section ─────────────────────────────────────── */
.section--bridge {
  background: var(--white);
  position: relative;
  z-index: 2;
  margin-top: -3rem;
  border-radius: var(--radius) var(--radius) 0 0;
  padding: 4rem 0 3rem;
  border-bottom: 1px solid var(--gray-100);
}

.bridge__intro {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* ── About body: now single column ─────────────────────── */
.about-intro__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 680px;
  margin-inline: auto;
}
.about-intro__body p { color: var(--text-muted); margin: 0; }

.about-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-intro__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  width: 100%;
  margin-inline: auto;
}

.about-intro__inner .about-intro__header,
.about-intro__inner .about-intro__body {
  max-width: none;
  width: 100%;
}

.about-intro__overline {
  margin-bottom: 0.35rem;
}

.about-intro__header {
  max-width: 767px;
  margin-inline: auto;
}

.about-intro__pull {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.6;
  color: var(--text);
  padding-left: 1.5rem;
  border-left: 3px solid var(--red);
}

/* ── About: AI Drivers ──────────────────────────────────── */
.section--drivers { padding: 5rem 0; }

.drivers-prose {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.drivers-prose__text {
  font-size: 1.1875rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.drivers-prose__text strong {
  color: var(--text);
  font-weight: 700;
}

.drivers-tags {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.driver-tag {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border: 1.5px solid var(--red);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.02em;
}

/* ── About: Three Days Band ─────────────────────────────── */
.section--band {
  position: relative;
  overflow: hidden;
  background: var(--brand-gradient-flipped);
  padding: 5rem 0;
}

.section--band .horizons-container,
.section.reg-fees .horizons-container,
.section.training-workshops .horizons-container {
  position: relative;
  z-index: 1;
}

/* Slanted canvas hex grid on stats band + registration fees — same script as .section__pattern */
.section--band .section__pattern--band,
.section.reg-fees .section__pattern--band,
.section.training-workshops .section__pattern--band {
  inset: -18%;
  mix-blend-mode: soft-light;
  opacity: 0.5;
}

/* Same slanted hex grid as reg-fees; wider inset than -18% because band is container-width, not full viewport */
.sponsors-gradient-cta-band .section__pattern--band {
  inset: -52%;
  mix-blend-mode: soft-light;
  opacity: 0.5;
}

.section--band .hex-echo--band-tl,
.section.reg-fees .hex-echo--band-tl,
.section.training-workshops .hex-echo--band-tl,
.sponsors-gradient-cta-band .hex-echo--band-tl {
  top: -12%;
  left: -8%;
  opacity: 0.8;
  max-width: 48%;
}

.section--band .hex-echo--band-br,
.section.reg-fees .hex-echo--band-br,
.section.training-workshops .hex-echo--band-br,
.sponsors-gradient-cta-band .hex-echo--band-br {
  bottom: -18%;
  right: 20%;
  opacity: 0.72;
}

.section--band .hex-echo,
.section.reg-fees .hex-echo,
.section.training-workshops .hex-echo,
.sponsors-gradient-cta-band .hex-echo {
  width: min(62vw, 20rem);
}

.section--band .stat-item__number {
  color: var(--white);
}

.section--band .stat-item__label {
  color: rgba(255, 255, 255, 0.78);
}

.section--band .stat-item__divider {
  background: rgba(255, 255, 255, 0.14);
}

@media (min-width: 769px) {
  .section--band .hex-echo,
  .section.reg-fees .hex-echo,
  .section.training-workshops .hex-echo,
  .sponsors-gradient-cta-band .hex-echo {
    width: min(44vw, 26rem);
  }
  .section--band .hex-echo--band-tl,
  .section.reg-fees .hex-echo--band-tl,
  .section.training-workshops .hex-echo--band-tl,
  .sponsors-gradient-cta-band .hex-echo--band-tl {
    top: -20%;
    left: -4%;
    transform: translate(0, -8%) rotate(120deg);
  }
  .section--band .hex-echo--band-br,
  .section.reg-fees .hex-echo--band-br,
  .section.training-workshops .hex-echo--band-br,
  .sponsors-gradient-cta-band .hex-echo--band-br {
    bottom: -28%;
    right: 0;
    opacity: 0.82;
    transform: translateX(48%);
    width: min(78vw, 46%);
  }
}

/* Training workshops: same band pattern + corner hexes as registration fees, light gray section bg */
.section.training-workshops {
  position: relative;
  overflow: hidden;
  background-color: var(--gray-100);
  color: var(--text);
}

.section.training-workshops .section__pattern--band {
  mix-blend-mode: multiply;
  opacity: 0.42;
}

.section.training-workshops .hex-echo {
  mix-blend-mode: multiply;
}

.section.training-workshops .hex-echo__ring {
  stroke: color-mix(in srgb, var(--brand-navy) 24%, transparent);
  stroke-width: 4px;
}

/* ── Diagonal Grid Background ───────────────────────────── */
.hero__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  transform: skewY(-5deg) scaleY(1.3);
  transform-origin: top left;
  pointer-events: none;
  z-index: 2;
}
.hero__grid-bg--subtle {
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
}

/* ============================================================
   SIMPLE HERO (headline-centered; hex grid in horizons-front.js)
   Full viewport width (widget may sit in a narrow column).
   ============================================================ */
.section.simple-hero {
  /* Background needs to be full-bleed even inside boxed Elementor columns. */
  background: transparent;
  position: relative;
  isolation: isolate;
  /* Padding vars overridden by Horizons — Simple hero widget (Style → Padding). */
  padding-top: var(--hx-simple-hero-pad-top, 180px);
  padding-right: var(--hx-simple-hero-pad-right, 0);
  padding-bottom: var(--hx-simple-hero-pad-bottom, 100px);
  padding-left: var(--hx-simple-hero-pad-left, 0);
  overflow-x: visible;
  overflow-y: visible;
}

.section.simple-hero::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  background: var(--gray-100);
  z-index: 0;
}

/* Simple hero — diagonal photo + complementary hex; split BL → (100%, 50% height), navy → transparent on photo */
.section.simple-hero.simple-hero--diagonal {
  min-height: clamp(19rem, 52vw, 32rem);
  overflow: hidden;
}

.section.simple-hero.simple-hero--diagonal::before {
  background: var(--white);
}

.section.simple-hero.simple-hero--diagonal .horizons-container {
  position: relative;
  z-index: 3;
}

.simple-hero__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: auto;
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  z-index: 1;
  pointer-events: none;
}

/* Split: BL (0% 100%) → (100% var). Photo = upper wedge; hex = lower-right wedge (complement of photo clip). */
.section.simple-hero.simple-hero--diagonal {
  --hx-simple-hero-diagonal-y: 50%;
}

@media (max-width: 40rem) {
  .section.simple-hero.simple-hero--diagonal {
    /* Shallower diagonal on mobile (more photo, less cut). */
    --hx-simple-hero-diagonal-y: 68%;
  }
}

.simple-hero__hex-slot {
  position: absolute;
  inset: 0;
  z-index: 0;
  clip-path: polygon(0% var(--hx-simple-hero-diagonal-y), 100% var(--hx-simple-hero-diagonal-y), 100% 100%);
  background: linear-gradient(to top, var(--gray-100) 0%, var(--white) 20%);
}

.simple-hero__bg-photo-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  clip-path: polygon(0% 0%, 100% 0%, 100% var(--hx-simple-hero-diagonal-y), 0% 100%);
  overflow: hidden;
}

.simple-hero__bg-img {
  display: block;
  
  img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: var(--hx-simple-hero-bg-pos-x, center) var(--hx-simple-hero-bg-pos-y, center);
  }
}

/* Elementor/kit image rules sometimes force `height: auto` — keep the diagonal bg image filling its crop box. */
.simple-hero__bg-photo-wrap > img.simple-hero__bg-img {
  width: 100% !important;
  height: 100% !important;
  max-width: none;
}

/* When Elementor outputs a <picture> wrapper, force it to fill the crop box too. */
.simple-hero__bg-photo-wrap > picture {
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: none;
}

.simple-hero__bg-photo-wrap > picture > img.simple-hero__bg-img {
  width: 100% !important;
  height: 100% !important;
  max-width: none;
}

.simple-hero__bg-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to right,
    rgb(12 29 49 / 0.8) 0%,
    rgb(12 29 49 / 0.55) 38%,
    rgb(12 29 49 / 0) 72%
  );
}

.section.simple-hero.simple-hero--diagonal .simple-hero__inner {
  margin-right: auto;
  margin-left: 0;
  max-width: min(40rem, 92%);
  text-align: left;
}

.section.simple-hero.simple-hero--diagonal .simple-hero__headline {
  color: #fff;
  text-align: left;
}

.section.simple-hero.simple-hero--diagonal .simple-hero__brand {
  margin: 0 0 clamp(0.75rem, 2vw, 1.1rem);
}

.section.simple-hero.simple-hero--diagonal .simple-hero__brand-img {
  display: block;
  width: 100%;
  max-width: min(150px, 100%);
  height: auto;
}

.simple-hero__hex-layer {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  z-index: 1;
  pointer-events: none;
}

.section.simple-hero .hero-hex-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.section.simple-hero.simple-hero--diagonal .simple-hero__hex-slot .simple-hero__hex-layer {
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: none;
  margin-left: 0;
}

.simple-hero__inner {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
}

.simple-hero__row {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
}

/* Side media: top of image lines up with top of copy (not overline/headline). */
.simple-hero__inner--has-media .simple-hero__row--with-media {
  grid-template-columns: 1fr;
  grid-template-areas:
    "lead"
    "body"
    "media";

  @media (min-width: 48rem) {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: auto auto;
    grid-template-areas:
      "lead ."
      "body media";
    align-items: start;
    gap: 0 clamp(1.5rem, 4vw, 3rem);
  }
}

.simple-hero__inner--has-media .simple-hero__row--with-media .simple-hero__lead {
  grid-area: lead;
  min-width: 0;
}

.simple-hero__inner--has-media .simple-hero__row--with-media .simple-hero__body {
  grid-area: body;
  min-width: 0;
}

.simple-hero__inner--has-media .simple-hero__row--with-media .simple-hero__media {
  grid-area: media;
  min-width: 0;
}

.simple-hero__lead,
.simple-hero__body {
  min-width: 0;
}

.simple-hero__media {
  min-width: 0;

  &.simple-hero__media--single {
    & .simple-hero__single-frame {
      overflow: hidden;
      width: 100%;
      border-radius: var(--radius);
      border: 1px solid var(--gray-100);
      box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    }

    &.simple-hero__media--shape-wide .simple-hero__single-frame {
      aspect-ratio: 16 / 9;
    }

    &.simple-hero__media--shape-tall .simple-hero__single-frame {
      aspect-ratio: 3 / 4;
    }

    &.simple-hero__media--shape-square .simple-hero__single-frame {
      aspect-ratio: 1 / 1;
    }

    & .simple-hero__media-img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      border-radius: 0;
      border: 0;
      box-shadow: none;
    }
  }

  &.simple-hero__media--gallery {
    & .simple-hero__slider {
      position: relative;
      width: 100%;
      height: 100%;
    }

    & .simple-hero__slider-viewport {
      overflow: hidden;
      width: 100%;
      border-radius: var(--radius);
      border: 1px solid var(--gray-100);
      box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    }

    &.simple-hero__media--shape-wide .simple-hero__slider-viewport {
      aspect-ratio: 16 / 9;
    }

    &.simple-hero__media--shape-tall .simple-hero__slider-viewport {
      aspect-ratio: 3 / 4;
    }

    &.simple-hero__media--shape-square .simple-hero__slider-viewport {
      aspect-ratio: 1 / 1;
    }

    &.simple-hero__media--shape-wide,
    &.simple-hero__media--shape-tall,
    &.simple-hero__media--shape-square {
      & .simple-hero__slider-track {
        height: 100%;
      }

      & .simple-hero__slider-slide {
        height: 100%;
        align-self: stretch;
      }

      & .simple-hero__media-img {
        height: 100%;
        object-fit: cover;
        object-position: center;
      }
    }

    & .simple-hero__slider-track {
      display: flex;
      flex-wrap: nowrap;
      width: 100%;
      transition: transform 0.55s ease;
      will-change: transform;
    }

    & .simple-hero__slider-slide {
      flex: 0 0 100%;
      min-width: 0;
      box-sizing: border-box;
    }

    & .simple-hero__media-img {
      display: block;
      width: 100%;
      height: auto;
      border-radius: 0;
      border: 0;
      box-shadow: none;
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  .simple-hero__media--gallery .simple-hero__slider-track {
    transition: none;
  }
}

body.horizons-page .elementor .elementor-widget.elementor-widget-hexure_horizons_simple_hero .simple-hero__media-img,
body.elementor-editor-active .elementor .elementor-widget.elementor-widget-hexure_horizons_simple_hero .simple-hero__media-img {
  margin: 0;
}

.simple-hero__overline {
  margin: 0 0 0.65rem;
}

.simple-hero__headline {
  font-size: var(--hx-simple-hero-headline-size, clamp(2.5rem, 5.5vw, 3.85rem));
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text);
  margin: 0 0 0.65rem;
  text-align: center;
  text-wrap: balance;
}

.simple-hero__subhead {
  margin: 0 0 1rem;
  font-size: clamp(1.1875rem, 2.4vw, 1.45rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--red);
  text-align: left;
}

.simple-hero__copy {
  margin: 0;
  font-size: clamp(1.0625rem, 2vw, 1.1875rem);
  line-height: 1.65;
  color: var(--text-muted);
  max-width: none;
  text-align: left;

  & p {
    margin: 0 0 1em;
  }

  & p:last-child {
    margin-bottom: 0;
  }

  & ul,
  & ol {
    margin: 0 0 1em 1.25em;
    padding: 0;
  }

  & a {
    color: var(--red);
    text-decoration: underline;
  }

  & a:hover,
  & a:focus-visible {
    color: var(--red-hover);
  }
}

.simple-hero__actions {
  margin: 1.5rem 0 0;
}

/* ============================================================
   COPY + IMAGE (copy left / image right; reverse on desktop only)
   ============================================================ */
.copy-image-layout {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: stretch;
}

.copy-image-copy {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 0;
}

.copy-image-heading {
  margin-bottom: 0;
}

.copy-image-body {
  margin: 0;
  font-size: clamp(1.0625rem, 2vw, 1.125rem);
  line-height: 1.65;
  color: var(--text-muted);
  text-align: left;

  & p {
    margin: 0 0 1em;
  }

  & p:last-child {
    margin-bottom: 0;
  }

  & ul,
  & ol {
    margin: 0 0 1em 1.25em;
    padding: 0;
  }

  & a {
    color: var(--red);
    text-decoration: underline;
  }

  & a:hover,
  & a:focus-visible {
    color: var(--red-hover);
  }

  & h4 {
    font-family: var(--font-heading);
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    font-weight: 600;
    color: #000;
    margin: 1.1rem 0 0.55rem;
  }

  & h4:first-child {
    margin-top: 0;
  }
}

.copy-image-actions {
  margin: 1.25rem 0 0;
}

.copy-image-media {
  position: relative;
  min-width: 0;
}

/* Hex pair + decor — layout from `horizons-ci-hex-group.svg` viewBox */
.copy-image-media--hex {
  & .copy-image-hex-cluster {
    position: relative;
    width: 100%;
    max-width: min(100%, 44rem);
    margin-inline: auto;
    aspect-ratio: 1256.12 / 1212.37;
  }

  & .copy-image-hex-decor {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
  }

  & .copy-image-hex-slot {
    position: absolute;
    z-index: 1;
    filter: drop-shadow(0 8px 22px rgb(0 0 0 / 0.09));
  }

  & .copy-image-hex-slot--primary {
    overflow: hidden;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    left: 0;
    top: 0;
    width: 81.968%;
    height: 73.5535%;
  }

  & .copy-image-hex-slot--secondary {
    z-index: 2;
    overflow: visible;
    clip-path: none;
    left: 41.8876%;
    top: 47.8566%;
    width: 57.2359%;
    height: 51.3934%;
  }

  /* White rim: larger hex behind photo (clip-path on parent hid inset box-shadow) */
  & .copy-image-hex-slot__outline {
    position: absolute;
    inset: -6px;
    z-index: 0;
    background: var(--white);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    pointer-events: none;
  }

  & .copy-image-hex-slot__clip {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    overflow: hidden;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  }

  /* Image column left — `horizons-ci-hex-group-reversed.svg` viewBox 1064.66 × 1149.23 */
  & .copy-image-hex-cluster--reversed {
    aspect-ratio: 1064.66 / 1149.23;
  }

  & .copy-image-hex-cluster--reversed .copy-image-hex-slot--primary {
    left: 0;
    top: 11.8569%;
    width: 96.714%;
    height: 77.5926%;
  }

  & .copy-image-hex-cluster--reversed .copy-image-hex-slot--secondary {
    left: 45.8727%;
    top: 0.7928%;
    width: 53.1454%;
    height: 42.6397%;
  }

  & .copy-image-hex-slot--primary .copy-image-img,
  & .copy-image-hex-slot__clip .copy-image-img {
    display: block;
    width: 100%;
    height: 100% !important;
    margin: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    object-fit: cover;
    object-position: center;

    img {
      object-fit: cover;
      object-position: center;
      width: 100%;
      height: 100%;
      margin: 0;
      border: 0;
      border-radius: 0;
      box-shadow: none;
    }
  }
}

body.horizons-page .elementor .elementor-widget.elementor-widget-hexure_horizons_copy_image .copy-image-img,
body.elementor-editor-active .elementor .elementor-widget.elementor-widget-hexure_horizons_copy_image .copy-image-img {
  margin: 0;
}

@media (min-width: 48rem) {
  .copy-image-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
    gap: clamp(1.5rem, 4vw, 3rem);
  }

  .copy-image-layout > :only-child.copy-image-copy {
    grid-column: 1 / -1;
    max-width: 48rem;
  }

  .copy-image-layout > :only-child.copy-image-media {
    grid-column: 1 / -1;
    max-width: min(52rem, 100%);
    margin-inline: auto;
  }

  .copy-image-layout--reversed .copy-image-copy {
    order: 2;
  }

  /* Image column left when reversed */
  .copy-image-layout--reversed .copy-image-media {
    order: 1;
  }
}

/* Sponsorship promo (same two-column shell as copy + image; media column = icon grid) */
.sponsorship-promo-icons-wrap.copy-image-media {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.sponsorship-promo-icons {
  display: grid;
  width: 100%;
  max-width: min(42rem, 100%);
  margin-inline: auto;
  gap: clamp(0.85rem, 2.2vw, 1.15rem);
  grid-template-columns: repeat(var(--hx-sponsorship-promo-cols, 2), minmax(0, 1fr));
}

.sponsorship-promo-icons__item {
  cursor: default;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-width: 0;
  min-height: clamp(8.75rem, 20vw, 10.75rem);
  padding-block: 1.35rem;
  padding-inline: 1rem;
  text-align: center;
  background-color: var(--white);
  background-image: linear-gradient(
    180deg,
    rgb(255 255 255 / 1) 0%,
    rgb(248 250 252 / 0.97) 55%,
    rgb(241 245 249 / 0.94) 100%
  );
  border: 1px solid rgb(15 23 42 / 0.08);
  border-radius: 0.75rem;
  box-shadow:
    0 1px 0 rgb(255 255 255 / 0.65) inset,
    0 1px 2px rgb(15 23 42 / 0.04),
    0 10px 28px rgb(15 23 42 / 0.08);
}

.sponsorship-promo-icons__icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  inline-size: 2.75rem;
  block-size: 2.75rem;
  flex: 0 0 auto;
  /* Single accent for glyph + SVG output (see currentColor rules below). */
  color: var(--red);

  /* Elementor / FA may output <i>, <span>, or raw <svg>. */
  & svg {
    display: block;
    flex-shrink: 0;
    inline-size: 2.25rem;
    block-size: 2.25rem;
    box-sizing: border-box;
    overflow: visible;
    fill: currentColor;
  }

  /* Many Elementor icon SVGs ship with hard-coded fills; normalize to the wrap color. */
  & svg :where(path, circle, rect, polygon, polyline):not([fill='none']) {
    fill: currentColor;
  }

  & svg :where(path, circle, rect, line, polyline)[stroke]:not([stroke='none']) {
    stroke: currentColor;
  }

  & i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    inline-size: 2.25rem;
    block-size: 2.25rem;
    font-size: 1.75rem;
    line-height: 1;
    font-style: normal;
  }

  /* SVG-mask custom icons (.hxi) — match the FA icon box size */
  & .hxi {
    width: 2.25rem;
    height: 2.25rem;
  }
}

.sponsorship-promo-icons__label {
  margin: 0;
  font-size: clamp(0.8125rem, 1.55vw, 0.9375rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
}

/* ============================================================
   CONTENT SECTION (focused prose — registration, inner pages)
   ============================================================ */
.section.content-section {
  padding: clamp(2rem, 4vw, 4rem) 0;
}

.section.content-section.copy-image {
  padding-top: var(--hx-copy-image-pad-top, clamp(2rem, 4vw, 4rem));
  padding-right: var(--hx-copy-image-pad-right, 0);
  padding-bottom: var(--hx-copy-image-pad-bottom, clamp(2rem, 4vw, 4rem));
  padding-left: var(--hx-copy-image-pad-left, 0);
}

.section.content-section.sponsorship-promo {
  padding-top: var(--hx-sponsorship-promo-pad-top, clamp(2rem, 4vw, 4rem));
  padding-right: var(--hx-sponsorship-promo-pad-right, 0);
  padding-bottom: var(--hx-sponsorship-promo-pad-bottom, clamp(2rem, 4vw, 4rem));
  padding-left: var(--hx-sponsorship-promo-pad-left, 0);
}

.content-section__inner {
  max-width: 48rem;
  margin: 0;
  text-align: left;
}

.content-section__overline {
  margin: 0 0 0.65rem;
}

.content-section__heading {
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 1rem;
  text-align: left;
}

body.horizons-page h2.content-section__heading,
body.horizons-page h3.content-section__heading {
  color: var(--text) !important;
}

section.content-section h2.content-section__heading {
  font-size: clamp(1.85rem, 3.5vw, 2.35rem);
}

section.content-section h3.content-section__heading {
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
}

.content-section__body {
  font-size: clamp(1.0625rem, 2vw, 1.125rem);
  line-height: 1.65;
  color: var(--text-muted);
  text-align: left;

  & > *:first-child {
    margin-top: 0;
  }

  & > *:last-child {
    margin-bottom: 0;
  }

  & p {
    margin: 0 0 1em;
  }

  & h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.15rem, 2.2vw, 1.35rem);
    font-weight: 600;
    color: var(--brand-navy);
    margin: 1.35rem 0 0.65rem;
  }

  & h3:first-child {
    margin-top: 0;
  }

  & h4 {
    font-family: var(--font-heading);
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    font-weight: 600;
    color: #000;
    margin: 1.1rem 0 0.55rem;
  }

  & h4:first-child {
    margin-top: 0;
  }

  & ul,
  & ol {
    margin: 0.35rem 0 1em;
    padding-left: 1.75rem;
    list-style-position: outside;
  }

  & ul {
    list-style-type: disc;
  }

  & ol {
    list-style-type: decimal;
  }

  & a {
    color: var(--red);
    font-weight: 600;
    text-decoration: none;
  }

  & a:hover,
  & a:focus-visible {
    color: var(--red-hover);
    text-decoration: underline;
  }

  & strong {
    color: var(--text);
  }

  & blockquote {
    margin: 1.25rem 0;
    padding: 1.25rem 1.5rem;
    border-left: 3px solid var(--red);
    background: rgba(12, 29, 49, 0.04);
    border-radius: 0 var(--radius) var(--radius) 0;
  }

  & blockquote p {
    margin: 0;
  }
}

/* ============================================================
   HERO NEW: Video Mask (same as v1 / style.css)
   Scoped under the Elementor hero widget so rules beat `.elementor h1`, `.elementor video`, kit CSS.
   ============================================================ */
body.horizons-page .elementor-element[data-widget_type^="hexure_horizons_hero"],
body.elementor-editor-active .elementor-element[data-widget_type^="hexure_horizons_hero"] {
  & .hero-new {
    position: relative;
    isolation: isolate;
    background: var(--gray-100);
    overflow: hidden;
    padding-top: var(--hx-hero-pad-top, 4.25rem);
    padding-right: var(--hx-hero-pad-right, 2rem);
    padding-bottom: var(--hx-hero-pad-bottom, 6rem);
    padding-left: var(--hx-hero-pad-left, 2rem);
  }

  /* Interactive hex grid canvas — sits behind all hero content */
  & .hero-hex-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
  }

  & .hero-new__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.25rem;
  }

  & .hero-new__masked {
    position: relative;
    width: 100%;
    aspect-ratio: 488 / 432;
    overflow: hidden;
  }

  /* Mask on the video: parent mask often does not composite with GPU-backed <video>; black-filled
     SVG on transparent ground needs alpha mask semantics (luminance treats both as “hide”). */
  & .hero-new__masked .hero-new__video {
    -webkit-mask-image: var(--hero-mask-url);
    mask-image: var(--hero-mask-url);
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-position: center;
    mask-position: center;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-mode: alpha;
    -webkit-mask-source-type: alpha;
  }

  & .hero-new__visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: min(100%, 36rem);
    padding-bottom: 32px;
    z-index: 1;
  }

  & .hero-new__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: brightness(1.6) contrast(1.1) saturate(1.2);
  }

  & .hero-new__content {
    position: relative;
    align-self: flex-start;
    text-align: left;
    max-width: 34rem;
    padding-top: 0;
    z-index: 1;
  }

  & .hero-new__title {
    font-size: clamp(2.2rem, 6vw, 4.5rem);
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -0.03em;
    color: var(--text);
    max-width: 12ch;
    margin-bottom: 0.65rem;
    text-align: left;
  }

  & .hero-new__tagline {
    font-size: var(--hx-hero-tagline-size, clamp(1.0625rem, 2.1vw, 1.25rem));
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: 0.01em;
    color: var(--text-muted);
    margin: 0 0 1.35rem;
    max-width: 28rem;
  }

  & .hero-new__meta {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin-bottom: 1.5rem;
  }

  & .hero-new__meta-row {
    display: flex;
    align-items: baseline;
    gap: 0.55rem;
    font-size: 1rem;
    color: var(--text-muted);
    letter-spacing: 0.01em;
    margin: 0;
  }

  & .hero-new__meta-row i {
    color: var(--red);
    font-size: 0.95rem;
  }

  & .hero-new__countdown {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 10%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin: 0;
    z-index: 2;
  }

  & .hero-new__countdown-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(17,24,39,0.48);
  }

  & .countdown--light {
    background: linear-gradient(
      145deg,
      rgba(10,10,10,0.56) 0%,
      rgba(10,10,10,0.4) 100%
    );
    border: 1px solid rgba(255,255,255,0.24);
    backdrop-filter: blur(12px) saturate(145%);
    -webkit-backdrop-filter: blur(12px) saturate(145%);
    padding: 1rem 1.25rem;
    gap: 0.5rem;
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.18),
      0 14px 34px rgba(0,0,0,0.24);
  }

  & .countdown--light .countdown__value {
    font-size: clamp(1.8rem, 4.2vw, 3rem);
    color: rgba(255,255,255,0.9);
  }

  & .countdown--light .countdown__label {
    color: rgba(255,255,255,0.62);
  }

  & .countdown--light .countdown__unit {
    min-width: 64px;
  }

  & .countdown--light .countdown__sep {
    font-size: clamp(1.5rem, 3.4vw, 2.25rem);
    color: rgba(232,0,29,0.85);
    margin-top: 0.1rem;
  }

  & .hero-new__intro {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    line-height: 1.75;
    color: var(--text-muted);
    max-width: 480px;
    margin: 0 0 2rem;
  }

  & .hero-new__actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

.btn--outline-white {
  background: transparent;
  color: var(--text);
  border-color: rgba(17,24,39,0.3);
}
.btn--outline-white:hover {
  background: rgba(17,24,39,0.06);
  color: var(--text);
  border-color: rgba(17,24,39,0.55);
  box-shadow: none;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
@media (min-width: 768px) {
  body.horizons-page .elementor-element[data-widget_type^="hexure_horizons_hero"] {
    & .hero-new {
      padding: 8.5rem 2rem 6rem;
    }

    & .hero-new__inner {
      display: grid;
      grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
      grid-template-rows: 1fr;
      gap: clamp(2rem, 5vw, 5rem);
      align-items: center;
    }

    & .hero-new__content {
      grid-column: 1;
      grid-row: 1;
      align-self: auto;
      justify-self: end;
      max-width: 36rem;
      text-align: left;
    }

    & .hero-new__visual {
      grid-column: 2;
      grid-row: 1;
      justify-self: center;
      width: min(100%, 44rem);
    }

    & .hero-new__actions {
      justify-content: flex-start;
    }

    & .hero-new__countdown {
      align-items: center;
      margin: 0;
    }
  }
}

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  background: var(--white);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  transition:
    background var(--transition),
    padding var(--transition),
    box-shadow var(--transition),
    backdrop-filter var(--transition),
    -webkit-backdrop-filter var(--transition);
}
.nav.scrolled {
  background: color-mix(in srgb, var(--brand-navy) 98%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.75rem 0;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__brand {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
  color: inherit;
}

.nav__tagline {
  font-size: 0.75rem;
  line-height: 1.25;
  letter-spacing: 0.01em;
  color: color-mix(in srgb, var(--brand-navy) 55%, transparent);
  margin: 0;
  transition: color var(--transition);

  .nav.scrolled & { color: rgba(255, 255, 255, 0.5); line-height: 1.25; }
}

/* Logos are SVG-as-<img>; lock ratio. Extra specificity beats Elementor’s `.elementor img` (width/height/max-width). */
.nav__logo-img,
.elementor .horizons-nav .nav__logo-img,
.elementor .footer__brand .nav__logo-img {
  display: block;
  height: 28px;
  width: auto;
  max-width: min(230px, 52vw);
  aspect-ratio: 701.73 / 85.49;
  object-fit: contain;
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0 0 0 auto;
  padding: 0;
}
.nav__links li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav__mobile-cta { display: none; }
.nav__links a {
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  transition: color var(--transition);
  text-decoration: none;
}
.nav__links a:hover { color: var(--white); }

/* Top-level shell nav only (WordPress menu); excludes .sub-menu and .btn */
.horizons-nav .nav__links > li > a:not(.btn) {
  transition: color var(--transition);
}
.horizons-nav .nav__links > li > a:not(.btn):hover,
.horizons-nav .nav__links > li > a:not(.btn):focus-visible {
  color: var(--red);
}

/* WordPress shell nav (Appearance → Menus): nested sub-menus under top-level items */
.horizons-nav .nav__links .sub-menu {
  list-style: none;
  margin: 0.35rem 0 0;
  padding: 0 0 0 0.75rem;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}
.horizons-nav .nav__links .sub-menu li {
  margin: 0.35rem 0 0;
  padding: 0;
}
body.horizons-page .elementor .horizons-nav .nav__links ul.sub-menu a,
body.template-horizons .elementor .horizons-nav .nav__links ul.sub-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95) !important;
  text-decoration: none;
  transition: color var(--transition);
}
body.horizons-page .elementor .horizons-nav .nav__links ul.sub-menu a:hover,
body.horizons-page .elementor .horizons-nav .nav__links ul.sub-menu a:focus-visible,
body.template-horizons .elementor .horizons-nav .nav__links ul.sub-menu a:hover,
body.template-horizons .elementor .horizons-nav .nav__links ul.sub-menu a:focus-visible {
  color: var(--red) !important;
}

body.horizons-page .horizons-nav .nav__links ul.sub-menu a,
body.template-horizons .horizons-nav .nav__links ul.sub-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95) !important;
  text-decoration: none;
  transition: color var(--transition);
}
body.horizons-page .horizons-nav .nav__links ul.sub-menu a:hover,
body.horizons-page .horizons-nav .nav__links ul.sub-menu a:focus-visible,
body.template-horizons .horizons-nav .nav__links ul.sub-menu a:hover,
body.template-horizons .horizons-nav .nav__links ul.sub-menu a:focus-visible {
  color: var(--red) !important;
}

.horizons-nav .nav__links ul.sub-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  transition: color var(--transition);
}
.horizons-nav .nav__links ul.sub-menu a:hover,
.horizons-nav .nav__links ul.sub-menu a:focus-visible {
  color: var(--red);
}

@media (min-width: 1025px) {
  .horizons-nav .nav__links > li.menu-item-has-children {
    position: relative;
  }

  .horizons-nav .nav__links > li > .sub-menu {
    position: absolute;
    left: 0;
    top: calc(100% + 0.35rem);
    min-width: 240px;
    margin: 0;
    padding: 0.5rem 0;
    border-left: none;
    border-radius: 6px;
    background: var(--brand-navy);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition:
      opacity var(--transition),
      visibility var(--transition),
      transform var(--transition);
    z-index: 120;
  }

  .horizons-nav .nav__links > li.menu-item-has-children:hover > .sub-menu,
  .horizons-nav .nav__links > li.menu-item-has-children:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  body.horizons-page .elementor .horizons-nav .nav__links > li > .sub-menu a,
  body.template-horizons .elementor .horizons-nav .nav__links > li > .sub-menu a {
    display: block;
    padding: 0.35rem 1rem;
    color: rgba(255, 255, 255, 0.95) !important;
    transition: color var(--transition);
  }

  body.horizons-page .elementor .horizons-nav .nav__links > li > .sub-menu a:hover,
  body.horizons-page .elementor .horizons-nav .nav__links > li > .sub-menu a:focus-visible,
  body.template-horizons .elementor .horizons-nav .nav__links > li > .sub-menu a:hover,
  body.template-horizons .elementor .horizons-nav .nav__links > li > .sub-menu a:focus-visible {
    color: var(--red) !important;
  }

  body.horizons-page .horizons-nav .nav__links > li > .sub-menu a,
  body.template-horizons .horizons-nav .nav__links > li > .sub-menu a {
    display: block;
    padding: 0.35rem 1rem;
    color: rgba(255, 255, 255, 0.95) !important;
    transition: color var(--transition);
  }

  body.horizons-page .horizons-nav .nav__links > li > .sub-menu a:hover,
  body.horizons-page .horizons-nav .nav__links > li > .sub-menu a:focus-visible,
  body.template-horizons .horizons-nav .nav__links > li > .sub-menu a:hover,
  body.template-horizons .horizons-nav .nav__links > li > .sub-menu a:focus-visible {
    color: var(--red) !important;
  }

  .horizons-nav .nav__links > li > .sub-menu a {
    display: block;
    padding: 0.35rem 1rem;
    color: rgba(255, 255, 255, 0.95);
    transition: color var(--transition);
  }

  .horizons-nav .nav__links > li > .sub-menu a:hover,
  .horizons-nav .nav__links > li > .sub-menu a:focus-visible {
    color: var(--red);
  }

  /* Light hero: same navy flyout (top-level link colors are scoped to > li > a above). */
  .horizons-page .nav:not(.scrolled):not(.mobile-open) .horizons-nav .nav__links > li > .sub-menu {
    background: var(--brand-navy);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
  }
}

.nav .btn {
  text-decoration: none;
  box-sizing: border-box;
  color: var(--white);
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* Kit / theme `a:hover` must not recolor the Register control (shell may sit outside `.elementor`). */
body.horizons-page .horizons-nav a.btn:hover,
body.horizons-page .horizons-nav a.btn:focus-visible,
body.horizons-page .horizons-nav a.btn:active,
body.horizons-page .horizons-nav .nav .btn:hover,
body.horizons-page .horizons-nav .nav .btn:focus-visible,
body.horizons-page .horizons-nav .nav .btn:active,
body.template-horizons .horizons-nav a.btn:hover,
body.template-horizons .horizons-nav a.btn:focus-visible,
body.template-horizons .horizons-nav a.btn:active,
body.template-horizons .horizons-nav .nav .btn:hover,
body.template-horizons .horizons-nav .nav .btn:focus-visible,
body.template-horizons .horizons-nav .nav .btn:active {
  color: var(--white) !important;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

/* Video background */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero__video.is-playing {
  opacity: 1;
}

/* Dark overlay over video — gradient so top breathes, bottom grounds the text */
.hero__video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(0,0,0,0.15) 0%,
      rgba(0,0,0,0.3) 40%,
      rgba(0,0,0,0.6) 100%),
    linear-gradient(to right, rgba(232,0,29,0.07) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

/* Red glow accent — bottom left */
.hero::before {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(232,0,29,0.18) 0%, transparent 65%);
  pointer-events: none;
  z-index: 2;
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  width: 100%;
}

.hero__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero__right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}

.hero__title {
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin-bottom: 1.25rem;
}

.hero__dates {
  font-size: 1.125rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.25rem;
}

.hero__location {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2rem;
}

.hero__tagline-block {
  padding: 1.5rem 0 1.5rem 1.25rem;
  border-left: 3px solid var(--red);
  margin-bottom: 2.5rem;
}

.hero__tagline {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.hero__subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

/* Countdown Block */
.hero__countdown-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.hero__countdown-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.countdown {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(0,0,0,0.125);
  border: 1px solid rgba(255,255,255,0.1);
  border-top: 3px solid var(--red);
  border-radius: var(--radius);
  padding: 2.5rem 3.5rem;
  backdrop-filter: blur(12px);
}

.countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  min-width: 90px;
}

.countdown__value {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  animation: countPulse 1s ease-out;
}

@keyframes countPulse {
  0%   { transform: scale(1.08); opacity: 0.7; }
  100% { transform: scale(1);    opacity: 1; }
}

.countdown__label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.countdown__sep {
  font-size: 4rem;
  font-weight: 300;
  color: var(--red);
  line-height: 1;
  margin-top: 0.25rem;
}

@media (max-height: 700px) {
  .horizons-page .elementor-element[data-widget_type^="hexure_horizons_hero"] .hero__scroll-hint {
    display: none;
  }
}

/* Scroll hint (only rendered inside Horizons hero widget) */
.horizons-page .elementor-element[data-widget_type^="hexure_horizons_hero"] .hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-dark);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
  animation: scrollBounce 2s ease-in-out infinite;

  & svg {
    color: inherit;
  }

  & svg rect {
    stroke: currentColor;
    opacity: 0.55;
  }

  & svg circle {
    fill: currentColor;
    opacity: 0.75;
  }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.about-grid__text p { color: var(--text-muted); margin-bottom: 1rem; }

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.pillar__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232,0,29,0.08);
  border-radius: var(--radius-sm);
}

.pillar strong { display: block; font-size: 0.9375rem; color: var(--text); margin-bottom: 0.125rem; }
.pillar p { font-size: 0.875rem; color: var(--text-muted); margin: 0; }

/* Stat Cards */
.about-grid__stat-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.25rem;
}

.stat-card {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.06);
}
.stat-card--dark {
  background: var(--navy);
  grid-column: 1 / -1;
  text-align: left;
}

.stat-card__number {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--red);
  letter-spacing: -0.04em;
  line-height: 1;
}
.stat-card__label { font-size: 0.875rem; font-weight: 600; color: var(--text-muted); margin-top: 0.5rem; }
.stat-card__quote { font-size: 1.125rem; font-weight: 700; color: var(--white); line-height: 1.4; }

/* ============================================================
   REGISTRATION FEES (navy → maroon gradient, light text)
   ============================================================ */
.section.reg-fees {
  position: relative;
  overflow: hidden;
  background-color: var(--brand-navy);
  background-image: var(--brand-gradient-maroon-navy);
  color: var(--white);

  & .reg-fees-head {
    text-align: center;
    max-width: 44rem;
    margin: 0 auto;
  }

  & .reg-fees-overline {
    margin-bottom: 0.65rem;
    color: rgba(255, 255, 255, 0.92);
  }

  & .reg-fees-heading {
    text-align: center;
    color: var(--white);
    text-shadow: 0 1px 14px rgba(0, 0, 0, 0.35);
  }

  & .reg-fees-intro {
    margin-top: 0.35rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1.0625rem, 2vw, 1.125rem);
    line-height: 1.65;

    & p {
      margin: 0 0 0.85em;
      color: inherit;
    }

    & p:last-child {
      margin-bottom: 0;
    }

    & a {
      color: var(--white);
      text-decoration: underline;
      text-underline-offset: 0.12em;

      &:hover,
      &:focus-visible {
        color: rgba(255, 255, 255, 0.82);
      }
    }
  }

  /* Fee tier grid — cards match travel-dates __node; wrapper is layout only (section gradient shows through). */
  & .reg-fees-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.875rem;
    margin-top: 2.25rem;
    max-width: 52rem;
    margin-left: auto;
    margin-right: auto;
    align-items: stretch;
  }

  & .reg-fees-card {
    position: relative;
    text-align: center;
    padding: 0.95rem 1rem;
    border-radius: calc(var(--radius) * 0.85);
    background: color-mix(in srgb, rgba(255, 255, 255, 0.08) 100%, transparent);
    border: 1px solid rgba(255, 255, 255, 0.12);
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  & .reg-fees-card:nth-child(odd) {
    box-shadow: 0 0 0 1px rgba(255, 0, 8, 0.18) inset;
  }

  & .reg-fees-card:nth-child(even) {
    box-shadow: 0 0 0 1px rgba(80, 190, 255, 0.16) inset;
  }

  & .reg-fees-card-price {
    margin: 0 0 0.35rem;
    font-family: var(--font-heading);
    font-size: clamp(2.35rem, 6vw, 3.15rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.05;
    color: rgba(255, 255, 255, 0.98);
  }

  & .reg-fees-card-name {
    margin: 0 0 0.35rem;
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2.8vw, 1.15rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.3;
  }

  & .reg-fees-card-dates {
    margin: 0;
    font-size: clamp(0.875rem, 2.2vw, 1rem);
    font-weight: 600;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.35;
  }

  & .reg-fees-footer {
    margin-top: 2.25rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1rem, 1.95vw, 1.0625rem);
    line-height: 1.65;

    & p {
      margin: 0 0 0.85em;
      color: inherit;
    }

    & p:last-child {
      margin-bottom: 0;
    }

    & a {
      color: var(--white);
      text-decoration: underline;
      text-underline-offset: 0.12em;

      &:hover,
      &:focus-visible {
        color: rgba(255, 255, 255, 0.82);
      }
    }

    & strong {
      color: var(--white);
      font-weight: 600;
    }
  }

  & .reg-fees-cta {
    text-align: center;
  }

  & .reg-fees-cards + .reg-fees-cta {
    margin-top: 2.25rem;
  }

  & .reg-fees-footer + .reg-fees-cta {
    margin-top: 1.5rem;
  }

  & .reg-fees-head + .reg-fees-cta {
    margin-top: 2.25rem;
  }

  & .reg-fees-sub-cta {
    margin: 0;
    text-align: center;
  }

  & .reg-fees-cta + .reg-fees-sub-cta {
    margin-top: .85rem;
  }

  & .reg-fees-footer + .reg-fees-sub-cta {
    margin-top: 1.5rem;
  }

  & .reg-fees-cards + .reg-fees-sub-cta {
    margin-top: 2.25rem;
  }

  & .reg-fees-head + .reg-fees-sub-cta {
    margin-top: 2.25rem;
  }

  & .reg-fees-sub-cta__link {
    color: var(--white);
    font-size: clamp(0.875rem, 2.2vw, .9rem);
    text-underline-offset: 0.12em;
    font-weight: 600;
    text-align: center;

    &:hover,
    &:focus-visible {
      color: var(--red) !important;
      text-decoration: underline;;
    }
  }
}

body.horizons-page .section.reg-fees .reg-fees-sub-cta__link,
body.elementor-editor-active .section.reg-fees .reg-fees-sub-cta__link,
body.horizons-page .elementor-widget-container .section.reg-fees .reg-fees-sub-cta__link,
body.elementor-editor-active .elementor-widget-container .section.reg-fees .reg-fees-sub-cta__link {
  color: var(--white) !important;
}

body.horizons-page .section.reg-fees .reg-fees-sub-cta__link:hover,
body.horizons-page .section.reg-fees .reg-fees-sub-cta__link:focus-visible,
body.elementor-editor-active .section.reg-fees .reg-fees-sub-cta__link:hover,
body.elementor-editor-active .section.reg-fees .reg-fees-sub-cta__link:focus-visible,
body.horizons-page .elementor-widget-container .section.reg-fees .reg-fees-sub-cta__link:hover,
body.horizons-page .elementor-widget-container .section.reg-fees .reg-fees-sub-cta__link:focus-visible,
body.elementor-editor-active .elementor-widget-container .section.reg-fees .reg-fees-sub-cta__link:hover,
body.elementor-editor-active .elementor-widget-container .section.reg-fees .reg-fees-sub-cta__link:focus-visible {
  color: var(--red) !important;
}

@media (min-width: 40rem) {
  .section.reg-fees .reg-fees-cards {
    gap: 1.25rem 1.5rem;
    margin-top: 2.5rem;
  }

  .section.reg-fees .reg-fees-card {
    padding: 1.1rem 1.15rem 1.15rem;
  }
}

@media (max-width: 767px) {
  .section.reg-fees .reg-fees-cards {
    grid-template-columns: 1fr;
  }
}

/* Override global / kit h2 rules (use !important) so registration fees stays on-brand on the gradient. */
body.horizons-page .section.reg-fees h2.content-section__heading,
body.horizons-page .section.reg-fees h3.content-section__heading,
body.elementor-editor-active .section.reg-fees h2.content-section__heading,
body.elementor-editor-active .section.reg-fees h3.content-section__heading,
body.horizons-page .elementor-widget-container .section.reg-fees h2.content-section__heading,
body.horizons-page .elementor-widget-container .section.reg-fees h3.content-section__heading,
body.elementor-editor-active .elementor-widget-container .section.reg-fees h2.content-section__heading,
body.elementor-editor-active .elementor-widget-container .section.reg-fees h3.content-section__heading,
.elementor .elementor-widget[class*='elementor-widget-hexure_horizons'] .elementor-widget-container .section.reg-fees h2.content-section__heading,
.elementor .elementor-widget[class*='elementor-widget-hexure_horizons'] .elementor-widget-container .section.reg-fees h3.content-section__heading {
  color: var(--white) !important;
}

/* ============================================================
   SPONSORS GRADIENT CARD CTA (single card, navy → maroon)
   ============================================================ */
/* Beats `.section.content-section { padding: … }` shorthand (same specificity + order is not enough) */
.section.content-section.sponsors-gradient-cta {
  position: relative;
  padding-top: var(--hx-sgc-out-pad-top, clamp(1.5rem, 4vw, 2.75rem));
  padding-right: var(--hx-sgc-out-pad-right, 0);
  padding-bottom: var(--hx-sgc-out-pad-bottom, clamp(1.5rem, 4vw, 2.75rem));
  padding-left: var(--hx-sgc-out-pad-left, 0);
}

.section.content-section.sponsors-gradient-cta .horizons-container {
  max-width: 1200px;
  width: 100%;
}

/* Matches widget-registration-fees.php order: .section__pattern--band, hex SVGs, then content */
.sponsors-gradient-cta-band {
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  border-radius: calc(var(--radius) * 1.1);
  background-color: var(--brand-navy);
  background-image: var(--brand-gradient-navy-maroon);
  color: var(--white);
  padding: clamp(1.85rem, 5.5vw, 2.85rem) clamp(1.35rem, 4vw, 2.35rem);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 24px 48px rgba(12, 29, 49, 0.22);
}

.sponsors-gradient-cta-band__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.sponsors-gradient-cta-band__overline {
  margin: 0 0 0.65rem;
  color: rgba(255, 255, 255, 0.92);
}

.sponsors-gradient-cta-band__heading {
  margin: 0 0 0.85rem;
  color: var(--white) !important;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.35);
  font-size: clamp(1.35rem, 3.6vw, 1.75rem);
  line-height: 1.25;
}

.sponsors-gradient-cta-band__body {
  margin: 0 auto;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.0625rem, 2vw, 1.125rem);
  line-height: 1.65;

  & p {
    margin: 0 0 0.85em;
    color: inherit;
  }

  & p:last-child {
    margin-bottom: 0;
  }

  & a {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 0.12em;

    &:hover,
    &:focus-visible {
      color: rgba(255, 255, 255, 0.82);
    }
  }

  & strong {
    color: rgba(255, 255, 255, 0.98);
    font-weight: 600;
  }
}

.sponsors-gradient-cta-band__actions {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (min-width: 48rem) {
  .sponsors-gradient-cta-band {
    padding: 2.5rem 2.75rem 2.65rem;
  }
}

body.horizons-page .sponsors-gradient-cta-band h2.content-section__heading.sponsors-gradient-cta-band__heading,
body.elementor-editor-active .sponsors-gradient-cta-band h2.content-section__heading.sponsors-gradient-cta-band__heading,
body.horizons-page .elementor-widget-container .section.sponsors-gradient-cta .sponsors-gradient-cta-band h2.content-section__heading,
body.elementor-editor-active .elementor-widget-container .section.sponsors-gradient-cta .sponsors-gradient-cta-band h2.content-section__heading,
.elementor .elementor-widget-hexure_horizons_sponsors_gradient_card .elementor-widget-container .section.sponsors-gradient-cta .sponsors-gradient-cta-band h2.content-section__heading {
  color: var(--white) !important;
}

/* ============================================================
   WHAT TO EXPECT
   ============================================================ */
.expect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 5rem;
}

.expect-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07), 0 1px 4px rgba(0,0,0,0.04);

  /* Inset nested hex rings — same 56×48 / polygon as .theme-card__number (site reference hex) */
  &::after {
    content: '';
    position: absolute;
    pointer-events: none;
    z-index: 0;
    bottom: 0;
    right: 0;
    width: 5.25rem;
    transform: translate(50%, 50%);
    aspect-ratio: 56 / 48;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 56 48' fill='none'%3E%3Cdefs%3E%3ClinearGradient id='exh' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' stop-color='%235e242d' stop-opacity='0.34'/%3E%3Cstop offset='100%25' stop-color='%230c1d31' stop-opacity='0.26'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpolygon points='14,1 42,1 55,24 42,47 14,47 1,24' stroke='url(%23exh)' stroke-width='1.15' stroke-linejoin='round'/%3E%3Cpolygon points='16.5,5.1 39.5,5.1 50.1,24 39.5,42.9 16.5,42.9 5.9,24' stroke='url(%23exh)' stroke-width='1' stroke-linejoin='round'/%3E%3Cpolygon points='19,9.3 37,9.3 45.3,24 37,38.7 19,38.7 10.7,24' stroke='url(%23exh)' stroke-width='0.9' stroke-linejoin='round'/%3E%3Cpolygon points='21.6,13.4 34.4,13.4 40.4,24 34.4,34.6 21.6,34.6 15.6,24' stroke='url(%23exh)' stroke-width='0.8' stroke-linejoin='round'/%3E%3C/svg%3E")
      center / contain no-repeat;
      opacity: 0.4;
  }

  @media (min-width: 769px) {
    &::after {
      width: 6.125rem;

    }
  }

  & h3 {
    position: relative;
    z-index: 1;
    font-size: 1.125rem;
    color: var(--text);
    margin: 0 0 0.625rem;

    &::before {
      content: '';
      display: block;
      width: 80px;
      height: 4px;
      margin-bottom: 0.75rem;
      border-radius: 2px;
      background: linear-gradient(90deg, var(--red) 0%, var(--brand-maroon) 50%, var(--brand-navy) 100%);
    }
  }

  & p {
    position: relative;
    z-index: 1;
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
  }
}


.expect-outro {
  position: relative;
  max-width: 52rem;
  margin: 0 auto 2rem auto !important;
  padding: 0 0.5rem;
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(1.0625rem, 2.1vw, 1.35rem);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: -0.02em;
  color: var(--brand-navy);

  &::before {
    content: '';
    display: block;
    width: min(3rem, 12vw);
    height: 3px;
    margin: 0 auto 1.1rem;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--red) 0%, var(--brand-maroon) 55%, var(--brand-navy) 100%);
  }
}

.expect-outro-actions {
  margin: 1.25rem 0 0;
  display: flex;
  justify-content: center;
  text-align: center;
}

.expect-outro-wrap .cta-note {
  margin: 0.75rem 0 0;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;

  a {
    color: var(--red);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 0.2em;
    transition: opacity var(--transition);

    &:hover,
    &:focus {
      opacity: 0.8;
      color: var(--red);
    }
  }
}

body.horizons-page .expect-outro-wrap .cta-note a,
body.template-horizons .expect-outro-wrap .cta-note a {
  color: var(--red);
}

body.horizons-page .elementor-widget-hexure_horizons_expect .expect-outro {
  color: var(--brand-navy);
}

/* What to expect — split layout (intro left, two-column cards right) */
.expect--split .expect-split {
  display: grid;
  gap: 1.75rem;
  align-items: start;
}

.expect--split .expect-split-heading {
  text-align: left;
  margin-bottom: 1rem;
}

.expect--split .expect-split-subhead {
  text-align: left;
  margin: 0 auto 0 0;
  max-width: min(38rem, 100%);

  &.rte p {
    margin: 0 0 1em;
    color: inherit;
  }

  &.rte p:last-child {
    margin-bottom: 0;
  }
}

.expect-default-subhead.rte p {
  margin: 0 0 1em;
  color: inherit;
}

.expect-default-subhead.rte p:last-child {
  margin-bottom: 0;
}

/* Flex wrappers: flex item margins do not collapse, so gap above the image is reliable */
.expect--split .expect-split-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.expect:not(.expect--split) .expect-intro-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;

  & > .section__heading {
    width: 100%;
  }

  & > .expect-default-subhead {
    width: 100%;
    max-width: 640px;
  }
}

/*
 * What to expect — image under copy (figure).
 * Elementor ships: .elementor .elementor-widget:not(...):not(...) figure { margin: 0; }
 * Match/exceed that specificity with body + .elementor + widget class + figure + our class (no :not arms race).
 */
body.horizons-page .elementor .elementor-widget.elementor-widget-hexure_horizons_expect figure.expect-below-copy,
body.elementor-editor-active .elementor .elementor-widget.elementor-widget-hexure_horizons_expect figure.expect-below-copy {
  margin-block: clamp(2.25rem, 6vw, 3.5rem) clamp(1.75rem, 4vw, 2.75rem);
  margin-inline: 0;
  max-width: min(42rem, 100%);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);

  & .expect-below-copy__img {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: middle;
  }
}

body.horizons-page .elementor .elementor-widget.elementor-widget-hexure_horizons_expect figure.expect-below-copy.expect-below-copy--stacked,
body.elementor-editor-active .elementor .elementor-widget.elementor-widget-hexure_horizons_expect figure.expect-below-copy.expect-below-copy--stacked {
  margin-inline: auto;
}

body.horizons-page .elementor .elementor-widget.elementor-widget-hexure_horizons_expect .expect--split .expect-split-intro figure.expect-below-copy,
body.elementor-editor-active .elementor .elementor-widget.elementor-widget-hexure_horizons_expect .expect--split .expect-split-intro figure.expect-below-copy {
  margin-inline: 0 auto;
}

.expect--split .expect-grid--split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.expect--split .expect-grid--split .expect-card {
  padding: 1.35rem 1.35rem 1.5rem;
}

@media (min-width: 30rem) {
  .expect--split .expect-grid--split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.2rem;
  }
}

@media (min-width: 52rem) {
  .expect--split .expect-split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1.75rem, 3.5vw, 3rem);
    align-items: start;
  }

  .expect--split .expect-split-cards {
    min-width: 0;
  }
}

/* ============================================================
   SESSIONS SPOTLIGHT (Horizons widget — full band, numbered tracks)
   ============================================================ */
.section--sessions-spotlight.sessions-spotlight {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  background: var(--brand-gradient-maroon-navy);
  color: rgba(255, 255, 255, 0.95);

  & .sessions-spotlight-layout {
    display: flex;
    flex-direction: column;
    gap: clamp(1.75rem, 4vw, 2.75rem);
  }

  & .sessions-spotlight-col {
    min-width: 0;
  }

  /* Copy first in DOM: stacks above tracks in one column; grid placement swaps columns at 52rem */
  & .sessions-spotlight-col--copy {
    display: flex;
    flex-direction: column;
    gap: clamp(1.25rem, 3vw, 1.75rem);
    padding-top: clamp(0.35rem, 1vw, 0.65rem);
  }

  & .sessions-spotlight-layout--copy-only .sessions-spotlight-col--copy {
    max-width: min(44rem, 100%);
    margin-inline: auto;
  }

  & .sessions-spotlight-layout--tracks-only .sessions-spotlight-col--tracks {
    max-width: min(48rem, 100%);
    margin-inline: auto;
  }

  & .sessions-spotlight-layout--tracks-only .sessions-spotlight-tracks {
    max-width: none;
  }

  & .sessions-spotlight-layout:not(.sessions-spotlight-layout--copy-only):not(.sessions-spotlight-layout--tracks-only) .sessions-spotlight-col--tracks .sessions-spotlight-tracks {
    margin-inline: auto;
  }
}

@media (min-width: 52rem) {
  .section--sessions-spotlight.sessions-spotlight .sessions-spotlight-layout:not(.sessions-spotlight-layout--copy-only):not(.sessions-spotlight-layout--tracks-only) {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: start;
  }

  .section--sessions-spotlight.sessions-spotlight .sessions-spotlight-layout:not(.sessions-spotlight-layout--copy-only):not(.sessions-spotlight-layout--tracks-only) .sessions-spotlight-col--tracks {
    grid-column: 1;
    grid-row: 1;
  }

  .section--sessions-spotlight.sessions-spotlight .sessions-spotlight-layout:not(.sessions-spotlight-layout--copy-only):not(.sessions-spotlight-layout--tracks-only) .sessions-spotlight-col--copy {
    grid-column: 2;
    grid-row: 1;
  }

  .section--sessions-spotlight.sessions-spotlight .sessions-spotlight-layout:not(.sessions-spotlight-layout--copy-only):not(.sessions-spotlight-layout--tracks-only) .sessions-spotlight-col--tracks .sessions-spotlight-tracks {
    max-width: none;
    margin-inline: 0;
  }
}

.sessions-spotlight-head {
  text-align: left;
  max-width: none;
  margin: 0;
}

.sessions-spotlight-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1rem;
  color: #fff;
  letter-spacing: -0.02em;
}

body.horizons-page .section--sessions-spotlight .sessions-spotlight-title,
body.elementor-editor-active .section--sessions-spotlight .sessions-spotlight-title {
  color: #fff;
}

.sessions-spotlight-lead {
  margin: 0;
  font-size: clamp(1.05rem, 2.1vw, 1.2rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);

  &.rte p {
    margin: 0;
    color: inherit;
  }
}

body.horizons-page .elementor .elementor-widget.elementor-widget-hexure_horizons_sessions_spotlight .sessions-spotlight-photo,
body.elementor-editor-active .elementor .elementor-widget.elementor-widget-hexure_horizons_sessions_spotlight .sessions-spotlight-photo {
  margin: 0;
  max-width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.sessions-spotlight-photo-img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.sessions-spotlight-tracks {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  max-width: 48rem;
  margin: 0;
  padding: 0;
}

.sessions-spotlight-track {
  --session-track-pad-y: 1.25rem;

  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem 1.15rem;
  align-items: start;
  margin: 0;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
}

.sessions-spotlight-track-index {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.85vw, 1.75rem);
  font-weight: 800;
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.04em;
  /* Match .sessions-spotlight-track-main padding-top so digits line up with the headline */
  padding-top: var(--session-track-pad-y);
  text-align: left;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.25);
}

.sessions-spotlight-track-main {
  min-width: 0;
  padding: var(--session-track-pad-y) 1.35rem 1.4rem 1.2rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(12, 29, 49, 0.1);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.75) inset,
    0 8px 28px rgba(0, 0, 0, 0.2);
}

.sessions-spotlight-track-heading {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.65vw, 1.125rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
  margin: 0 0 0.35rem;
}

/* Beat Elementor kit `h3` (e.g. `.elementor-kit-6 h3`) on font-size / color */
body.horizons-page .elementor .elementor-widget.elementor-widget-hexure_horizons_sessions_spotlight h3.sessions-spotlight-track-heading,
body.elementor-editor-active .elementor .elementor-widget.elementor-widget-hexure_horizons_sessions_spotlight h3.sessions-spotlight-track-heading {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.65vw, 1.125rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
  margin: 0 0 0.35rem;
}

.sessions-spotlight-track-desc {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--text-muted);
}

@media (min-width: 30rem) {
  .sessions-spotlight-track {
    --session-track-pad-y: 1.4rem;
    gap: 1rem 1.35rem;
  }

  .sessions-spotlight-track-main {
    padding: var(--session-track-pad-y) 1.5rem 1.5rem 1.35rem;
  }
}

.sessions-spotlight-outro-wrap {
  margin-top: 0;
  padding-top: clamp(1.25rem, 2.5vw, 1.75rem);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.sessions-spotlight-outro {
  max-width: none;
  margin: 0;
  padding: 0;
  text-align: left;
  font-family: var(--font-heading);
  font-size: clamp(1.0625rem, 2.1vw, 1.35rem);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.92);
}

body.horizons-page .elementor-widget-hexure_horizons_sessions_spotlight .sessions-spotlight-outro {
  color: rgba(255, 255, 255, 0.92);
}

/* ============================================================
   TRAINING WORKSHOPS (copy + image left, stacked cards right)
   ============================================================ */
.training-workshops {
  & .training-workshops__layout {
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2.25rem);
  }

  & .training-workshops__main {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-width: 0;
  }

  & .training-workshops__head {
    max-width: 44rem;
    margin-inline: auto;
    /* Match .workshop-card horizontal padding so copy lines up with card body text. */
    padding-inline: 1.25rem;
  }

  & .training-workshops__heading {
    margin-bottom: 1rem;
    text-align: center;
  }

  & .training-workshops__media {
    margin-top: clamp(1.5rem, 3vw, 2.25rem);
    min-width: 0;
    display: none;
  }

  & .training-workshops__main > .training-workshops__media:first-child {
    margin-top: 0;
  }

  & .training-workshops__frame {
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--gray-100);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  }

  & .training-workshops__img {
    display: block;
    width: 100%;
    height: auto;
  }

  & .training-workshops__intro {
    font-size: clamp(1.0625rem, 2vw, 1.125rem);
    line-height: 1.65;
    color: var(--text-muted);

    text-align: center;

    & p {
      margin: 0 0 0.85em;
      color: inherit;
    }

    & p:last-child {
      margin-bottom: 0;
    }

    & a {
      color: var(--red);
      text-decoration: underline;

      &:hover,
      &:focus-visible {
        color: var(--red-hover);
      }
    }
  }

  & .training-workshops__details-link {
    margin: 0.5rem 0 0;
  }

  & .training-workshops__details-anchor {
    font-weight: 700;
    color: var(--red);
    text-decoration: underline;
    text-underline-offset: 0.12em;

    &:hover,
    &:focus-visible {
      color: var(--red-hover);
    }
  }

  & .training-workshops__sidebar {
    display: flex;
    flex-direction: column;
    gap: clamp(1.1rem, 2.5vw, 1.5rem);
    min-width: 0;
    text-align: center;
    max-width: 44rem;
    margin-inline: auto;
  }

  & .training-workshops__schedule {
    margin: 0;
    padding-inline: 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--brand-navy);
    line-height: 1.5;
    max-width: none;
    text-align: center;
  }

  & .training-workshops__cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.15rem;
    margin-top: 0;
    min-width: 0;
    width: 100%;
    max-width: 36rem;
    margin-inline: auto;
  }

  /* Workshop cards — match What to Expect (.expect-card): surface, hex corner, gradient overline on title */
  & .workshop-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    max-width: 36rem;
    overflow: hidden;
    text-align: center;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07), 0 1px 4px rgba(0, 0, 0, 0.04);

    &::after {
      content: "";
      position: absolute;
      pointer-events: none;
      z-index: 0;
      bottom: 0;
      right: 0;
      width: 5.25rem;
      transform: translate(50%, 50%);
      aspect-ratio: 56 / 48;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 56 48' fill='none'%3E%3Cdefs%3E%3ClinearGradient id='exh' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' stop-color='%235e242d' stop-opacity='0.34'/%3E%3Cstop offset='100%25' stop-color='%230c1d31' stop-opacity='0.26'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpolygon points='14,1 42,1 55,24 42,47 14,47 1,24' stroke='url(%23exh)' stroke-width='1.15' stroke-linejoin='round'/%3E%3Cpolygon points='16.5,5.1 39.5,5.1 50.1,24 39.5,42.9 16.5,42.9 5.9,24' stroke='url(%23exh)' stroke-width='1' stroke-linejoin='round'/%3E%3Cpolygon points='19,9.3 37,9.3 45.3,24 37,38.7 19,38.7 10.7,24' stroke='url(%23exh)' stroke-width='0.9' stroke-linejoin='round'/%3E%3Cpolygon points='21.6,13.4 34.4,13.4 40.4,24 34.4,34.6 21.6,34.6 15.6,24' stroke='url(%23exh)' stroke-width='0.8' stroke-linejoin='round'/%3E%3C/svg%3E")
        center / contain no-repeat;
      opacity: 0.4;
    }

    @media (min-width: 769px) {
      &::after {
        width: 6.125rem;
      }
    }
  }

  & .workshop-card__title {
    position: relative;
    z-index: 1;
    margin: 0 0 0.625rem;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: var(--text);

    &::before {
      content: "";
      display: block;
      width: 80px;
      height: 4px;
      margin: 0 auto 0.75rem;
      border-radius: 2px;
      background: linear-gradient(90deg, var(--red) 0%, var(--brand-maroon) 50%, var(--brand-navy) 100%);
    }
  }

  & .workshop-card__date {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    line-height: 1.7;
  }

  & .workshop-card__time {
    position: relative;
    z-index: 1;
    margin: 0.35rem 0 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    line-height: 1.7;
  }

  & .workshop-card__fee {
    position: relative;
    z-index: 1;
    margin: 0.85rem 0 0;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(12, 29, 49, 0.1);
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2vw, 1.1rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.35;
    color: var(--red);
  }

  & .training-workshops__outro {
    margin: 0;
    padding-inline: 1.25rem;
    max-width: none;
    text-align: center;
    font-family: var(--font-heading);
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.45;
    color: var(--brand-navy);
  }
}

body.horizons-page .elementor .elementor-widget.elementor-widget-hexure_horizons_training_workshops .training-workshops__img,
body.elementor-editor-active .elementor .elementor-widget.elementor-widget-hexure_horizons_training_workshops .training-workshops__img {
  margin: 0;
}

body.horizons-page .elementor .elementor-widget.elementor-widget-hexure_horizons_training_workshops .training-workshops__heading,
body.elementor-editor-active .elementor .elementor-widget.elementor-widget-hexure_horizons_training_workshops .training-workshops__heading {
  text-align: center !important;

  & :is(h1, h2, h3, h4, h5, h6) {
    text-align: inherit !important;
  }
}

@media (min-width: 48rem) {
  .training-workshops .training-workshops__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 1.5rem;
  }

  .training-workshops .training-workshops__sidebar {
    max-width: 60rem;
  }

  .training-workshops .training-workshops__cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    max-width: 60rem;
  }

  .training-workshops .workshop-card {
    max-width: none;
  }

  .training-workshops .training-workshops__layout > .training-workshops__main:only-child,
  .training-workshops .training-workshops__layout > .training-workshops__sidebar:only-child {
    grid-column: 1 / -1;
  }

  .training-workshops .training-workshops__layout > .training-workshops__sidebar:only-child {
    max-width: min(36rem, 100%);
    margin-inline: auto;
  }
}

/* ============================================================
   CANCELLATION & REFUND POLICY (2×2 grid: heading row, then copy | detail)
   ============================================================ */
.cancellation-policy {
  & .cancellation-policy__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
    align-items: start;
  }

  & .cancellation-policy__grid-spacer {
    display: none;
  }

  & .cancellation-policy__lead,
  & .cancellation-policy__primary,
  & .cancellation-policy__secondary {
    min-width: 0;
  }

  & .cancellation-policy__secondary {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  & .cancellation-policy__heading {
    margin-bottom: 0;
    text-align: left;
  }

  & .cancellation-policy__intro {
    font-size: clamp(1.0625rem, 2vw, 1.125rem);
    line-height: 1.65;
    color: var(--text-muted);
    max-width: min(38rem, 100%);

    & p {
      margin: 0 0 0.85em;
      color: inherit;
    }

    & p:last-child {
      margin-bottom: 0;
    }

    & a {
      color: var(--red);
      text-decoration: underline;

      &:hover,
      &:focus-visible {
        color: var(--red-hover);
      }
    }
  }

  & .cancellation-policy__refunds {
    margin: 0;
    padding: 0;
    border: none;
  }

  & .cancellation-policy__subheading {
    margin: 0 0 0.5rem;
    font-family: var(--font-heading);
    font-size: clamp(1.05rem, 2vw, 1.15rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--brand-navy);
    line-height: 1.3;
  }

  & .cancellation-policy__refunds-lead {
    margin: 0 0 0.65rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.5;
  }

  & .cancellation-policy__list {
    margin: 0;
    padding: 0 0 0 1.15rem;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);

    & li {
      margin: 0 0 0.4rem;
      padding-left: 0.25rem;
    }

    & li:last-child {
      margin-bottom: 0;
    }
  }

  & .cancellation-policy__transfer {
    margin: 0;
    font-size: clamp(1.0625rem, 2vw, 1.125rem);
    line-height: 1.65;
    color: var(--text-muted);

    & p {
      margin: 0;
      color: inherit;
    }

    & a {
      color: var(--red);
      text-decoration: underline;

      &:hover,
      &:focus-visible {
        color: var(--red-hover);
      }
    }
  }

  & .cancellation-policy__primary {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  & .cancellation-policy__note {
    margin-top: 0;
    font-size: clamp(0.95rem, 1.75vw, 1.02rem);
    line-height: 1.65;
    color: var(--text-muted);
    max-width: min(38rem, 100%);

    & p {
      margin: 0;
      color: inherit;
    }

    & strong {
      color: var(--text);
      font-weight: 600;
    }
  }
}

@media (min-width: 52rem) {
  .cancellation-policy .cancellation-policy__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 0;
    row-gap: clamp(0.75rem, 1.5vw, 1rem);
    align-items: start;
  }

  .cancellation-policy .cancellation-policy__lead {
    grid-column: 1;
    grid-row: 1;
  }

  .cancellation-policy .cancellation-policy__grid-spacer {
    display: block;
    grid-column: 2;
    grid-row: 1;
    min-height: 0;
    pointer-events: none;
  }

  .cancellation-policy .cancellation-policy__primary {
    grid-column: 1;
    grid-row: 2;
    padding-right: clamp(1.75rem, 3.5vw, 3rem);
  }

  .cancellation-policy .cancellation-policy__secondary {
    grid-column: 2;
    grid-row: 2;
    padding-left: clamp(1.75rem, 3.5vw, 3rem);
    border-left: 1px solid rgba(12, 29, 49, 0.1);
  }
}

.section.cancellation-policy--page-end {
  padding-bottom: clamp(3.5rem, 8vw, 6.5rem);
}

/* ============================================================
   FAQ (accordion)
   ============================================================ */
.section.section--faq {
  padding-top: var(--hx-faq-pad-top, 1rem);
  padding-right: var(--hx-faq-pad-right, 0);
  padding-bottom: var(--hx-faq-pad-bottom, clamp(3rem, 6vw, 5rem));
  padding-left: var(--hx-faq-pad-left, 0);
}

/* FAQ stacked under simple hero: less dead air between intro and accordion */
.horizons-page .elementor-element[data-widget_type^="hexure_horizons_simple_hero"]
  + .elementor-element[data-widget_type^="hexure_horizons_faq"]
  .section.section--faq {
  padding-top: var(--hx-faq-pad-top, clamp(0.5rem, 1.5vw, 1.25rem));
}

.faq-accordion {
  width: 100%;
  max-width: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq-item {
  border: 1px solid rgba(12, 29, 49, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.faq-item__summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: clamp(1.02rem, 1.9vw, 1.15rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--brand-navy);
  text-align: left;
  transition: background var(--transition), color var(--transition);

  &::-webkit-details-marker {
    display: none;
  }

  &:hover {
    background: rgba(12, 29, 49, 0.04);
  }
}

.faq-item__question {
  flex: 1;
  min-width: 0;
}

.faq-item__icon {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  position: relative;
  border-radius: 50%;
  border: 1px solid rgba(232, 0, 29, 0.35);
  background: rgba(232, 0, 29, 0.06);

  &::before,
  &::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--red);
    border-radius: 1px;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  &::before {
    width: 10px;
    height: 2px;
  }

  &::after {
    width: 2px;
    height: 10px;
  }
}

.faq-item[open] .faq-item__icon::after {
  transform: translate(-50%, -50%) scaleY(0);
  opacity: 0;
}

.faq-item__answer {
  padding: 1.25rem;
  border-top: 1px solid rgba(12, 29, 49, 0.06);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);

  & p {
    margin: 0 0 0.85rem;
  }

  & p:last-child {
    margin-bottom: 0;
  }

  & ul,
  & ol {
    margin: 0.35rem 0 0.85rem;
    padding-left: 1.75rem;
    list-style-position: outside;
  }

  & ul {
    list-style-type: disc;
  }

  & ol {
    list-style-type: decimal;
  }

  & li {
    margin-bottom: 0.35rem;
  }

  & a {
    color: var(--red);
    font-weight: 600;
    text-decoration: none;
  }

  & a:hover {
    text-decoration: underline;
  }

  & strong {
    color: var(--text);
  }
}

body.horizons-page .elementor-widget-hexure_horizons_faq .faq-item__summary {
  color: var(--brand-navy);
}

/* Elementor kit link colors can override base FAQ answer links. */
body.horizons-page .elementor-widget-hexure_horizons_faq .faq-item__answer a,
body.elementor-editor-active .elementor-widget-hexure_horizons_faq .faq-item__answer a {
  color: var(--red) !important;
}

/* ============================================================
   SESSION THEMES
   ============================================================ */
.themes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.theme-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition:
    opacity var(--anim-reveal-duration) var(--anim-reveal-ease),
    transform var(--anim-reveal-duration) var(--anim-reveal-ease),
    box-shadow var(--transition),
    border-color var(--transition);
  box-shadow: 0 4px 16px rgba(0,0,0,0.07), 0 1px 4px rgba(0,0,0,0.04);
}
.theme-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.theme-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 48px;
  color: var(--red);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 1.25rem;
  /* SVG hex outline — points match 56×48 flat-top hexagon */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='48' viewBox='0 0 56 48'%3E%3Cpolygon points='14,1 42,1 55,24 42,47 14,47 1,24' fill='none' stroke='%23ff0008' stroke-width='1.5'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.theme-card__title { font-size: 1.125rem; color: var(--text); margin-bottom: 0.625rem; }
.theme-card__desc  { font-size: 1rem; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* ============================================================
   SESSION THEMES — interactive list
   ============================================================ */
.section--themes-list {
  background: var(--white);
  padding: 6rem 0;
}

.themes-list__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.themes-list__header .section__heading {
  margin-bottom: 0.25rem;
}

.themes-list__sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 100%;
  margin: 0;
}

.themes-list {
  list-style: none;
  border-top: 1px solid var(--gray-100);
}

.theme-row {
  display: grid;
  grid-template-columns: 5rem 1fr;
  align-items: center;
  gap: 2rem;
  padding: 1.75rem 0;
  padding-left: 0;
  border-bottom: 1px solid var(--gray-100);
  cursor: default;
  transition:
    background var(--transition),
    padding-left var(--transition);
  position: relative;
}

.theme-row:hover {
  padding-left: 1.25rem;
}

.theme-row::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gray-50);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.theme-row:hover::before { opacity: 1; }

.theme-row__num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  font-family: var(--font-heading);
  color: transparent;
  -webkit-text-stroke: 1.5px var(--red);
  letter-spacing: -0.02em;
  line-height: 1;
  transition: color var(--transition), -webkit-text-stroke-color var(--transition);
  position: relative;
  z-index: 1;
}

.theme-row:hover .theme-row__num {
  color: var(--red);
  -webkit-text-stroke-color: transparent;
}

.theme-row__body {
  position: relative;
  z-index: 1;
}

.theme-row__title {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--text);
  margin: 0;
  transition: color var(--transition);
}

.theme-row:hover .theme-row__title { color: var(--red); }

.theme-row__desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.3s ease, margin 0.3s ease;
}

.theme-row:hover .theme-row__desc {
  max-height: 6rem;
  opacity: 1;
  margin-top: 0.5rem;
}


/* ============================================================
   THIS IS YOUR MOMENT
   ============================================================ */
.section--moment { padding: 7rem 0; }

.moment-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.takeaway {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--gray-100);
}
.takeaway:first-child { border-top: 1px solid var(--gray-100); }

.takeaway__icon {
  font-size: 1.625rem;
  color: var(--red);
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 0.1rem;
  line-height: 1;
}
.takeaway strong { display: block; font-size: 0.9375rem; color: var(--text); margin-bottom: 0.125rem; }
.takeaway p { font-size: 0.875rem; color: var(--text-muted); margin: 0; }

.moment__note {
  font-size: 0.9375rem;
  font-style: italic;
  color: var(--text-muted);
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-100);
}

/* ============================================================
   QUOTES — single rotating carousel
   ============================================================ */
/* Quotes: same surface as .info-card (#info); shadow matches .theme-card / .expect-card */
.quotes-card {
  max-width: 920px;
  margin: 3rem auto 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07), 0 1px 4px rgba(0, 0, 0, 0.04);

  & .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.625rem;
    margin-top: 1.75rem;

    @media (min-width: 768px) {
      margin-top: 2rem;
    }
  }

  /* Plain <button> dots: reset theme / Elementor chrome */
  & .carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    padding: 0;
    margin: 0;
    border: 0;
    box-shadow: none;
    background: #d1d5dc;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    transition: background var(--transition), transform var(--transition);

    &:focus-visible {
      outline: 2px solid var(--red);
      outline-offset: 3px;
    }
  }

  & .carousel-dot.is-active {
    background: var(--red);
    transform: scale(1.25);
  }
}

.quotes-carousel {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  min-height: clamp(200px, 36vw, 280px);
}

.quote-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
  text-align: center;
}

.quote-slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}

.quote-slide__text {
  --quote-outline: color-mix(in srgb, var(--red) 42%, transparent);
  position: relative;
  z-index: 0;
  display: inline-block;
  max-width: 100%;
  padding: clamp(3.75rem, 13vw, 6.75rem) clamp(0.35rem, 2vw, 1.25rem) 0;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  line-height: 1.65;
  color: var(--text-muted);
  font-style: italic;
  margin: 0;
  text-align: center;

  &::before {
    content: "\201C";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    font-family: var(--font-heading);
    font-weight: 900;
    font-style: normal;
    font-size: clamp(4.75rem, 18vw, 9rem);
    line-height: 1;
    color: transparent;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 2px var(--quote-outline);
    paint-order: stroke fill;
    pointer-events: none;
    opacity: 0.9;
  }
}

/* Legacy card styles (kept for reference, unused) */
.quote-card__mark {
  font-size: 4rem;
  line-height: 0.8;
  color: var(--red);
  opacity: 0.2;
  font-weight: 900;
  margin-bottom: 1rem;
}

.quote-card__text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.quote-card__attr {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.quote-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy));
  flex-shrink: 0;
}

.quote-card__attr strong { display: block; font-size: 0.875rem; color: var(--text); }
.quote-card__attr span  { font-size: 0.8rem; color: var(--text-muted); }

/* ============================================================
   VENUE
   ============================================================ */
.venue-layout {
  display: grid;
  grid-template-columns: 1fr minmax(0, 1.22fr);
  gap: 4rem;
  align-items: center;
}

.venue__text {
  padding-left: 2rem;
  padding-block: 6rem;
}

.venue__text p { color: var(--text-muted); }

.venue__intro {
  margin-top: 1rem;
}

.venue__address {
  margin-top: 1.5rem;
  font-style: normal;
  color: var(--gray-dark);
}

.venue__cta {
  margin-top: 2rem;
}

.venue__media {
  position: absolute;
  width: 80%;
  height: 100%;
  top: 50%;
  left: 40%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.venue__photo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.venue__photo {
  border-radius: var(--radius);
  overflow: hidden;
}

.venue__map-wrap {
  position: absolute;
  top: 0;
  left: 40%;
  bottom: 0;
}

.venue__map-wrap .venue__photo-img {
  width: 100%;
  display: block;
}

.venue__map { height: 220px; }
.venue__map-embed {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
}
.venue__map-embed iframe { width: 100%; height: 100%; border: 0; }

/* Hotel destination — hero row (copy + feature / map) + dark twin cards (canvas hex in JS). */
body.horizons-page .hotel-destination {
  position: relative;
  isolation: isolate;
  overflow-x: visible;
  overflow-y: visible;

  & .hotel-destination__hex-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    height: 100%;
    max-height: 550px;
    z-index: 0;
    pointer-events: none;
  }

  & .hero-hex-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }

  & .horizons-container {
    position: relative;
    z-index: 1;
  }

  & .hotel-destination-layout {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0 2rem clamp(3rem, 6vw, 5rem);
  }

  /* Hero: copy + venue image (max ~45rem) on the left; map anchored left 50% / top 0 on the right. */
  & .hotel-destination-hero {
    position: relative;
    min-height: clamp(21rem, 52vh, 38rem);
    padding-bottom: clamp(2.75rem, 7vw, 5rem);
  }

  & .hotel-destination-hero__copy {
    position: relative;
    z-index: 2;
    max-width: 550px;
    min-width: 0;
    padding-top: 60px;
    padding-bottom: 60px;

    & .hotel-destination-hero__overline {
      margin-top: 0;
      margin-bottom: 0.65rem;
    }

    & .hotel-destination-hero__overline + .section__heading {
      margin-top: 0;
    }
  }

  & .hotel-destination-hero__map {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 60%;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    pointer-events: none;

    /* Gradient-over-white fades on all sides using a pseudo-element */
    &::after {
      content: "";
      position: absolute;
      /* cover the whole container */
      inset: 0;
      pointer-events: none;
      z-index: 2;
      /* White vignette/fade on all 4 sides */
      background:
        linear-gradient(to right, #fff 0%, transparent 10%, transparent 90%, #fff 100%),
        linear-gradient(to bottom, #fff 0%, transparent 10%, transparent 90%, #fff 100%);
      /* Blend the gradients for a soft edge */
      mix-blend-mode: lighten;
      /* Play with opacity if needed to tune effect */
      opacity: 1;
    }
  }

  & .hotel-destination-hero__map .hotel-destination-map {
    width: 100%;
    height: 100%;
  }

  & .hotel-destination-hero__map .hotel-destination-map__img {
    display: block;
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    object-position: center center;
  }

  & .section__heading {
    margin: 0 0 0.35rem;
    padding-bottom: 0;
  }

  & .hotel-destination-feature {
    margin-top: 1rem;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--gray-100);
    box-shadow: var(--shadow);
  }

  & .hotel-destination-feature__img {
    display: block;
    width: 100%;
    height: auto;
    max-height: min(48vh, 400px);
    object-fit: cover;
    vertical-align: bottom;
  }

  & .hotel-destination-intro {
    margin-top: 1.15rem;
    color: var(--text-muted);
    line-height: 1.65;
    font-size: 20px;
    padding-left: 20px;

    & p {
      margin: 0 0 1em;
      color: inherit;
      font-size: inherit;
    }

    & p:last-child {
      margin-bottom: 0;
    }
  }

  /* Cards sit above the map so the map’s lower edge reads behind them. */
  & .hotel-destination-cards-wrap {
    position: relative;
    z-index: 3;
    isolation: isolate;
    margin-top: clamp(-3.25rem, -8vw, -1.5rem);
  }

  & .hotel-destination-panels {
    display: grid;
    gap: 1.25rem;
    margin-top: 0;
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  & .hotel-destination-panel {
    display: flex;
    flex-direction: column;
    min-width: 0;

  /* 
    Custom background gradients for hotel destination panels:
    - First panel ("--property"): maroon to navy, top left to bottom right, mostly navy.
    - Second panel ("--rates"): navy to maroon, bottom right to top left, mostly navy.
  */
  &.hotel-destination-panel--property {
    /* Maroon to navy diagonal. Navy dominates. */
    background: linear-gradient(150deg, var(--brand-maroon) 0%, var(--brand-navy) 25%);
  }

  &.hotel-destination-panel--rates {
    /* Navy to maroon, reversed. Navy dominates. */
    background: linear-gradient(315deg, var(--brand-maroon) 0%, var(--brand-navy) 25%);
  }
  }

  & .hotel-destination-panel--property .hotel-destination-location {
    margin: 0;
  }

  & .hotel-destination-panel--property .hotel-destination-property {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(1.15rem, 2.2vw, 1.35rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.96);
    line-height: 1.25;
  }

  & .hotel-destination-perks {
    /* Equal rhythm above/below the divider line. */
    margin-top: 1.1rem;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0;
    margin-bottom: 0;
  }

  & .hotel-destination-perks__heading {
    margin: 0 0 0.6rem;
    font-family: var(--font-heading);
    font-size: clamp(0.9375rem, 1.6vw, 1.05rem);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.25;
  }

  & .hotel-destination-perks__list {
    margin: 0;
    padding-left: 1.2rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(0.9375rem, 1.65vw, 1.03125rem);
    line-height: 1.45;

    & li {
      margin: 0 0 0.35rem;
    }

    & li:last-child {
      margin-bottom: 0;
    }
  }

  & .hotel-destination-panel--property .hotel-destination-location .hotel-destination-address,
  & .hotel-destination-panel--property .hotel-destination-location .venue__address {
    margin: 0;
    font-style: normal;
    color: rgba(255, 255, 255, 0.72);
  }

  & .hotel-destination-panel--property .hotel-destination-property + .hotel-destination-address,
  & .hotel-destination-panel--property .hotel-destination-property + .venue__address {
    margin-top: 0.4rem;
  }

  & .hotel-destination-panel--property .venue__address strong {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 700;
  }

  & .hotel-destination-panel--property .hotel-destination-location .hotel-destination-res-phone {
    margin: 0.45rem 0 0;
    font-size: clamp(0.9375rem, 1.65vw, 1.03125rem);
    line-height: 1.4;
  }

  & .hotel-destination-panel--property .hotel-destination-website {
    margin: 0.65rem 0 0;
    margin-bottom: 0;
  }

  & .hotel-destination-panel--property .hotel-destination-website-link {
    color: var(--btn-magenta);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 0.12em;

    &:hover,
    &:focus-visible {
      color: color-mix(in srgb, var(--btn-magenta) 85%, white);
    }

    &:focus-visible {
      outline: 2px solid color-mix(in srgb, var(--btn-magenta) 55%, transparent);
      outline-offset: 3px;
      border-radius: 2px;
    }
  }

  & .hotel-destination-rates-stack {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: 0;
  }

  & .hotel-destination-rates-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 0.75rem 1.25rem;
    margin: 0 0 1.15rem;
  }

  & .hotel-destination-rates-head .hotel-destination-rate-lead {
    flex: 1 1 auto;
    min-width: 0;
  }

  & .hotel-destination-rates-head .hotel-destination-panel__cta--rates-head {
    margin: 0 0 0 auto;
    padding: 0;
    flex: 0 0 auto;
    align-self: flex-end;
  }

  & .hotel-destination-rate-lead {
    margin: 0;
  }

  & .hotel-destination-rate-lead__label {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(0.75rem, 1.35vw, 0.875rem);
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.3;
  }

  & .hotel-destination-rate-lead__price {
    margin: 0.25rem 0 0;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5.2vw, 2.85rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.98);
    line-height: 1.05;
    letter-spacing: -0.02em;
  }

  & .hotel-destination-rate-lead__group {
    margin: 0.35rem 0 0;
    font-size: clamp(0.8125rem, 1.4vw, 0.9375rem);
    line-height: 1.35;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.82);
  }

  & .hotel-destination-rate-lead__group-label {
    display: inline-block;
    margin-right: 0.35rem;
    font-size: 0.5625rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    vertical-align: middle;
  }

  & .hotel-destination-block-status {
    margin: 0 0 1.15rem;
    padding: 1rem 1.15rem 1.15rem;
    border-radius: calc(var(--radius) * 0.9);
    background: linear-gradient(
      155deg,
      color-mix(in srgb, rgba(255, 255, 255, 0.08) 100%, transparent) 0%,
      color-mix(in srgb, var(--navy-deep) 72%, rgba(0, 0, 0, 0.45)) 45%,
      color-mix(in srgb, #070b14 88%, transparent) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.06) inset,
      0 8px 24px rgba(4, 12, 28, 0.35);
    overflow: visible;
  }

  & .hotel-destination-block-status__overline {
    margin: 0 0 0.4rem;
    font-family: var(--font-heading);
    font-size: calc(clamp(0.6875rem, 1.2vw, 0.78125rem) + 4px);
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.35;
  }

  & .hotel-destination-block-status__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.35rem 1.25rem;
    margin: 0 0 0.55rem;
  }

  & .hotel-destination-block-status__status {
    margin: 0;
    font-size: clamp(0.9375rem, 1.75vw, 1.0625rem);
    font-weight: 600;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.92);
  }

  & .hotel-destination-block-status__prefix {
    margin-right: 0.35rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
  }

  & .hotel-destination-block-status__value {
    font-weight: 700;
    letter-spacing: 0.02em;
  }

  & .hotel-destination-block-status--low .hotel-destination-block-status__value {
    color: color-mix(in srgb, #5ee9d4 82%, white);
  }

  & .hotel-destination-block-status--moderate .hotel-destination-block-status__value {
    color: #e8cf6a;
  }

  & .hotel-destination-block-status--high .hotel-destination-block-status__value {
    color: #f0d080;
  }

  & .hotel-destination-block-status__note {
    margin: 0;
    max-width: 20rem;
    font-size: clamp(0.8125rem, 1.45vw, 0.9375rem);
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.62);
    text-align: right;
  }

  @media (max-width: 520px) {
    & .hotel-destination-block-status__note {
      flex: 1 1 100%;
      max-width: none;
      text-align: left;
    }
  }

  & .hotel-destination-block-status__track {
    position: relative;
    height: 0.7rem;
    margin-top: 0.15rem;
    border-radius: 999px;
    background: linear-gradient(
      90deg,
      color-mix(in srgb, #0f6b52 92%, black) 0%,
      color-mix(in srgb, #1fa88a 88%, #0a3d32) 28%,
      #c9a227 52%,
      color-mix(in srgb, #b91c1c 92%, #2a0505) 100%
    );
    box-shadow:
      0 0 0 1px color-mix(in srgb, #5ee9d4 45%, rgba(255, 255, 255, 0.12)),
      inset 0 1px 0 rgba(255, 255, 255, 0.14);
    overflow: visible;
  }

  & .hotel-destination-block-status__track::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: repeating-linear-gradient(
      -65deg,
      rgba(0, 0, 0, 0.12) 0 2px,
      transparent 2px 7px
    );
    opacity: 0.35;
    pointer-events: none;
  }

  & .hotel-destination-block-status__marker {
    position: absolute;
    top: 50%;
    left: var(--hx-block-pct, 70%);
    z-index: 2;
    display: block;
    width: 0.3rem;
    height: 1.4rem;
    margin: 0;
    transform: translate(-50%, -50%);
    border-radius: 3px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(230, 240, 255, 0.88) 100%);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35);
    pointer-events: none;
  }

  & .hotel-destination-panel--rates .hotel-destination-rate-disclaimer {
    margin: 8px 0 16px;
    padding: 0;
    max-width: 42rem;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.55;
    font-size: clamp(0.75rem, 1.25vw, 0.8125rem);
    white-space: pre-line;
    text-wrap: balance;
  }

  & .hotel-destination-rates-head:has(+ .hotel-destination-rate-disclaimer) {
    margin-bottom: 0.4rem;
  }

  & .hotel-destination-rates-head + .hotel-destination-rate-disclaimer {
    margin-top: 0;
  }

  & .hotel-destination-rate-disclaimer + .hotel-destination-block-status {
    margin-top: 0;
  }

  & .hotel-destination-rate-disclaimer + .hotel-destination-logistics {
    margin-top: 1.05rem;
  }

  & .hotel-destination-logistics {
    display: flex;
    gap: 4px;
    align-items: flex-start;
    margin-top: 0;
    padding: 1rem 1.1rem;
    border-radius: calc(var(--radius) * 0.85);
    background: color-mix(in srgb, var(--navy-deep) 58%, rgba(0, 0, 0, 0.35));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  }

  & .hotel-destination-rates-head + .hotel-destination-block-status {
    margin-top: 0;
  }

  & .hotel-destination-logistics__icon {
    flex: 0 0 auto;
    margin-top: 0.1rem;
    padding: 0.2rem;
    overflow: visible;
    color: color-mix(in srgb, var(--btn-magenta) 72%, white);
    line-height: 0;
    min-width: 2rem;
    min-height: 2rem;
    box-sizing: content-box;
  }

  & .hotel-destination-logistics__icon-svg,
  & .hotel-destination-logistics__icon > svg {
    display: block;
    flex-shrink: 0;
    width: 1.75rem;
    height: 1.75rem;
    max-width: 100%;
    transform: rotate(45deg);
    transform-origin: 50% 50%;
    fill: currentColor;
    color: inherit;
  }

  & .hotel-destination-logistics__icon-svg path,
  & .hotel-destination-logistics__icon > svg path {
    fill: currentColor;
  }

  & .hotel-destination-logistics__icon-img {
    display: block;
    width: 1.75rem;
    height: 1.75rem;
    object-fit: contain;
    transform: rotate(45deg);
    transform-origin: 50% 50%;
    filter: brightness(0) invert(1);
    opacity: 0.88;
  }

  & .hotel-destination-logistics__body {
    min-width: 0;
  }

  & .hotel-destination-logistics__heading {
    margin: 0 0 0.45rem;
    font-family: var(--font-heading);
    font-size: clamp(1rem, 1.85vw, 1.125rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.94);
    line-height: 1.25;
  }

  & .hotel-destination-logistics__copy {
    margin: 0;
    font-size: clamp(0.9375rem, 1.65vw, 1.03125rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.74);
    white-space: pre-line;
  }

  & .hotel-destination-panel__cta {
    margin: 0;
    margin-top: auto;
    padding-top: 1.35rem;
  }

  & .hotel-destination-panel--rates .hotel-destination-panel__cta--rates-head {
    margin-top: 0;
    padding-top: 0;
  }

  @media (max-width: 560px) {
    & .hotel-destination-rates-head {
      flex-direction: column;
      align-items: stretch;
    }

    & .hotel-destination-rates-head .hotel-destination-rate-lead {
      order: 1;
    }

    & .hotel-destination-rates-head .hotel-destination-panel__cta--rates-head {
      order: 2;
      align-self: stretch;
      margin-left: 0;
    }

    & .hotel-destination-rates-head .hotel-destination-book {
      box-sizing: border-box;
      width: 100%;
      display: inline-flex;
      justify-content: center;
    }
  }

  & .hotel-destination-book-wrap {
    margin: 1.5rem 0 0;
  }

  @media (min-width: 769px) {
    & .hotel-destination-panels {
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }

    & .hotel-destination-panel:only-child {
      grid-column: 1 / -1;
    }
  }

  @media (max-width: 768px) {
    & .hotel-destination-hero {
      min-height: 0;
      padding-bottom: 0;
    }

    & .hotel-destination-hero__copy {
      max-width: none;
      padding-right: 0;
    }

    & .hotel-destination-hero__map {
      position: relative;
      left: auto;
      top: auto;
      right: auto;
      bottom: auto;
      width: 100%;
      margin-top: 1.5rem;
      padding: 0;
      pointer-events: auto;
    }

    & .hotel-destination-hero__map .hotel-destination-map {
      max-width: none;
      margin-left: 0;
    }

    & .hotel-destination-hero__map .hotel-destination-map__img {
      max-height: min(52vh, 420px);
      height: auto;
    }

    & .hotel-destination-cards-wrap {
      margin-top: clamp(1.75rem, 4vw, 2.5rem);
    }
  }
}

/* Booking your stay — content-section shell + panel (info-style labels, red accent) */
.booking-stay {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(
    168deg,
    color-mix(in srgb, var(--gray-50) 92%, var(--white)) 0%,
    var(--white) 48%,
    color-mix(in srgb, var(--gray-50) 55%, var(--white)) 100%
  );

  /* Interactive hex: same canvas + stacking as .hero-new / .hero-hex-canvas (see horizons-front.js) */
  & .hero-hex-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
  }

  & .booking-stay__inner {
    position: relative;
    z-index: 1;
    width: 100%;
  }

 

  & .booking-stay-inner {
    max-width: 52rem;
  }

  & .content-section__heading {
    position: relative;
    margin-bottom: 1.65rem;
    padding-bottom: 0.9rem;
    color: var(--text);

  
  }

  & .booking-stay-panel {
    position: relative;
    margin-top: 0.25rem;
    padding: 1.35rem 1.5rem 1.35rem 1.45rem;
    border: 1px solid color-mix(in srgb, var(--gray-100) 90%, var(--gray-mid));
    border-left: none;
    border-radius: var(--radius);
    background: linear-gradient(
      180deg,
      var(--white) 0%,
      color-mix(in srgb, var(--gray-50) 75%, var(--white)) 100%
    );
    box-shadow: none;
    overflow: hidden;
  }

  & .booking-stay-panel::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 4px;
    background: linear-gradient(
      180deg,
      var(--red) 0%,
      color-mix(in srgb, var(--brand-navy) 82%, var(--red)) 55%,
      var(--brand-navy) 100%
    );
    border-radius: var(--radius) 0 0 var(--radius);
    pointer-events: none;
  }

  & .booking-stay-list {
    margin: 0;
  }

  & .booking-stay-group {
    display: grid;
    gap: 0.35rem 1.25rem;
    padding: 0.85rem 0;
    transition: background 0.2s ease;

    &:first-child {
      padding-top: 0;
    }

    &:last-child {
      padding-bottom: 0;
    }

    &:hover {
      background: color-mix(in srgb, var(--gray-50) 40%, transparent);
    }
  }

  & .booking-stay-term {
    margin: 0;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
  }

  & .booking-stay-def {
    margin: 0;
    font-size: clamp(1rem, 1.9vw, 1.0625rem);
    line-height: 1.55;
    color: var(--text);
    word-break: break-word;
  }

  & .booking-stay-link {
    color: var(--red);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 0.12em;

    &:hover,
    &:focus-visible {
      color: color-mix(in srgb, var(--red) 88%, black);
    }
  }

  & .booking-stay-link-phone {
    text-decoration: none;
    font-weight: 700;

    &:hover,
    &:focus-visible {
      text-decoration: underline;
    }
  }
}

@media (min-width: 40rem) {
  .booking-stay .booking-stay-group {
    grid-template-columns: minmax(11rem, 13.5rem) 1fr;
    align-items: baseline;
    gap: 0.5rem 2rem;
  }
}

/* Shared callout surface — booking notes (light) */
.booking-stay .booking-stay-notes {
  position: relative;
  padding: 1.35rem 1.35rem 1.35rem 1.4rem;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
  border-left: 3px solid color-mix(in srgb, var(--brand-navy) 55%, var(--gray-mid));
  background: linear-gradient(
    125deg,
    var(--white) 0%,
    color-mix(in srgb, var(--gray-50) 65%, var(--white)) 100%
  );
  box-shadow: none;
}

/* Hotel destination — dark twin cards (separate from booking callout) */
body.horizons-page .hotel-destination .hotel-destination-panel {
  position: relative;
  padding: clamp(1.25rem, 2.5vw, 1.65rem) clamp(1.25rem, 2.5vw, 1.65rem) clamp(1.35rem, 2.8vw, 1.85rem);
  border-radius: clamp(14px, 2vw, 18px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(
    155deg,
    color-mix(in srgb, var(--navy-card) 88%, var(--brand-maroon)) 0%,
    var(--navy-deep) 42%,
    color-mix(in srgb, var(--navy-deep) 70%, #0a0f18) 100%
  );
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 18px 48px rgba(8, 20, 38, 0.35);
}

body.horizons-page .hotel-destination .hotel-destination-panel--property {
  /* border-left: 3px solid color-mix(in srgb, var(--btn-magenta) 45%, var(--red)); */
}

body.horizons-page .hotel-destination .hotel-destination-panel--rates {
  /* border-left: 3px solid color-mix(in srgb, var(--red) 40%, var(--brand-navy)); */
}

.booking-stay .booking-stay-notes::before {
  content: '';
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 3.5rem;
  height: 3.5rem;
  background: radial-gradient(
    circle at center,
    color-mix(in srgb, var(--red) 10%, transparent),
    transparent 68%
  );
  pointer-events: none;
  opacity: 0.9;
}

.booking-stay .booking-stay-notes {
  margin-top: 1.85rem;
  font-size: clamp(1rem, 1.9vw, 1.0625rem);
  line-height: 1.65;
  color: var(--text-muted);

  & > *:first-child {
    margin-top: 0;
  }

  & p {
    margin: 0 0 1em;
    position: relative;
    z-index: 1;
  }

  & p:last-child {
    margin-bottom: 0;
  }

  & strong {
    color: var(--text);
    font-weight: 600;
  }
}

/* Getting to Horizons — two columns: copy (1) + hotel photo (2); light gray band */
.getting-to-horizons {
  background: var(--gray-50);

  & .getting-to-layout {
    display: grid;
    gap: 1.75rem;
    align-items: start;
  }

  & .getting-to-text {
    max-width: none;
    min-width: 0;
  }

  & .content-section__heading {
    margin-bottom: 1rem;
  }

  & .getting-to-intro {
    margin-top: 0;
    color: var(--text-muted);
    line-height: 1.65;
    font-size: clamp(1rem, 1.9vw, 1.0625rem);

    & p {
      margin: 0 0 1em;
      color: inherit;
    }

    & p:last-child {
      margin-bottom: 0;
    }
  }

  & .getting-to-airports {
    margin: 1.35rem 0 0;
    padding: 0;
    list-style: none;

    & li {
      position: relative;
      margin: 0 0 0.75rem;
      padding-left: 1.1rem;
      font-size: clamp(1rem, 1.9vw, 1.0625rem);
      line-height: 1.55;
      color: var(--text);

      &::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0.55em;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--red);
      }

      &:last-child {
        margin-bottom: 0;
      }
    }

    & strong {
      font-weight: 600;
      color: var(--text);
    }

    & span {
      color: var(--text-muted);
    }
  }

  & .getting-to-parking {
    margin-top: 1.35rem;
    color: var(--text-muted);
    line-height: 1.65;
    font-size: clamp(1rem, 1.9vw, 1.0625rem);

    & p {
      margin: 0 0 1em;
    }

    & p:last-child {
      margin-bottom: 0;
    }
  }

  & .getting-to-media {
    position: relative;
    min-width: 0;
    width: 100%;
    border-radius: var(--radius);
    border: 1px solid var(--gray-100);
    background: var(--gray-50);
    overflow: hidden;
    box-shadow: none;
    aspect-ratio: 4 / 3;
    /* Max width overridden by Horizons — Getting to Horizons → Content → Photo max width */
    max-width: min(100%, var(--hx-gt-media-max, 40rem));
  }

  & .getting-to-media--placeholder {
    background: linear-gradient(
      148deg,
      var(--gray-100) 0%,
      color-mix(in srgb, var(--gray-50) 70%, var(--gray-100)) 100%
    );
    border-style: dashed;
    border-color: color-mix(in srgb, var(--gray-mid) 38%, var(--gray-100));
  }

  & .getting-to-photo {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media (min-width: 48rem) {
  .getting-to-horizons .getting-to-layout {
    /* Tablet: keep copy readable (don't let the photo column eat all space). */
    grid-template-columns: minmax(18rem, 1.05fr) minmax(16rem, 0.95fr);
    gap: clamp(1.5rem, 3.5vw, 2.75rem);
    align-items: start;
  }

  .getting-to-horizons .getting-to-media {
    justify-self: stretch;
    max-width: none;
  }
}

@media (min-width: 64rem) {
  .getting-to-horizons .getting-to-layout {
    grid-template-columns: minmax(0, 1fr) minmax(14rem, var(--hx-gt-media-max, 40rem));
  }

  .getting-to-horizons .getting-to-media {
    justify-self: end;
    /* Restore max width control on larger screens. */
    max-width: min(100%, var(--hx-gt-media-max, 40rem));
  }
}

body.elementor-editor-active .getting-to-horizons .getting-to-media--placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 2.5rem;
  height: 2.5rem;
  opacity: 0.22;
  background: var(--text);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Ccircle cx='8.5' cy='10.5' r='1.5'/%3E%3Cpath d='M21 17l-5-5-4 4-3-3-6 6'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  pointer-events: none;
}

/* Ideal travel dates — arrival / departure cards + extend-trip panel */
body.horizons-page .travel-dates {
  & .content-section__heading {
    margin-bottom: 0.25rem;
  }

  & .travel-dates-journey {
    margin-top: 1.35rem;
    padding: clamp(1rem, 2.2vw, 1.35rem);
    border-radius: clamp(14px, 2vw, 18px);
    /* Match Hotel Destination property panel gradient. */
    background: linear-gradient(150deg, var(--brand-maroon) 0%, var(--brand-navy) 50%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.06) inset,
      0 18px 48px rgba(8, 20, 38, 0.35);
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
    align-items: center;
  }

  /* Mobile: add breathing room around stacked cards + arrow. */
  @media (max-width: 40rem) {
    & .travel-dates-journey {
      padding-block: 2.35rem;
      gap: 1.05rem;
    }

    & .travel-dates-journey__connector {
      display: none;
    }
  }

  & .travel-dates-journey__node {
    background: color-mix(in srgb, rgba(255, 255, 255, 0.08) 100%, transparent);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: calc(var(--radius) * 0.85);
    padding: 0.95rem 1rem;
    min-width: 0;
  }

  & .travel-dates-journey__slot {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
  }

  & .travel-dates-journey__slot-label {
    margin: 0 0 0.6rem;
    font-size: 1.0625rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.86);
    text-align: center;
  }

  & .travel-dates-journey__slot .travel-dates-journey__node {
    width: 100%;
  }

  & .travel-dates-journey__date {
    display: grid;
    gap: 0.15rem;
  }

  & .travel-dates-journey__weekday {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.15;
  }

  & .travel-dates-journey__day {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(2.35rem, 6vw, 3.15rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.98);
    line-height: 1.05;
    letter-spacing: -0.02em;
  }

  & .travel-dates-journey__node--arrival {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 0 0 1px rgba(255, 0, 8, 0.18) inset;
  }

  & .travel-dates-journey__node--departure {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 0 0 1px rgba(80, 190, 255, 0.16) inset;
  }

  & .travel-dates-journey__node--arrival .travel-dates-journey__date,
  & .travel-dates-journey__node--departure .travel-dates-journey__date {
    width: 100%;
    justify-items: center;
  }

  & .travel-dates-journey__node-foot {
    margin-top: 0.85rem;
    padding-top: 0.85rem;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
  }

  & .travel-dates-journey__node-foot .travel-dates-journey__media {
    margin: 0 auto 0.55rem;
    width: min(220px, 100%);
  }

  & .travel-dates-journey__node-foot .travel-dates-journey__event-title {
    margin-top: 0;
  }

  & .travel-dates-journey__node--event {
    padding: 0;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
  }

  & .travel-dates-journey__event-visual {
    flex-shrink: 0;
    width: 100%;
    margin: 0;
    background: rgba(0, 0, 0, 0.22);
    max-height: 250px;
    overflow: hidden;

    & img {
      display: block;
      width: 100%;
      height: auto;
    }
  }

  & .travel-dates-journey__event-visual-placeholder {
    aspect-ratio: 16 / 10;
    min-height: clamp(5.25rem, 32vw, 8.5rem);
    display: flex;
    align-items: center;
    justify-content: center;
    background:
      radial-gradient(ellipse 80% 60% at 50% 40%, rgba(255, 255, 255, 0.07) 0%, transparent 55%),
      linear-gradient(150deg, rgba(12, 22, 42, 0.55) 0%, rgba(60, 28, 58, 0.45) 45%, rgba(20, 48, 72, 0.5) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  & .travel-dates-journey__event-visual-placeholder-mark {
    display: block;
    width: 2.75rem;
    height: 2.75rem;
    opacity: 0.35;
    background: rgba(255, 255, 255, 0.95);
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Ccircle cx='8.5' cy='10.5' r='1.5'/%3E%3Cpath d='M21 17l-5-5-4 4-3-3-6 6'/%3E%3C/svg%3E");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
  }

  & .travel-dates-journey__event-body {
    padding: 0.85rem 1rem 0.95rem;
  }

  & .travel-dates-journey__media {
    margin: 0 auto 0.65rem;
    width: min(260px, 100%);
    border-radius: calc(var(--radius) * 0.75);
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);

    & img {
      display: block;
      width: 100%;
      height: auto;
    }
  }

  & .travel-dates-journey__event-title {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.25;
  }

  & .travel-dates-journey__event-time {
    margin: 0.25rem 0 0;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.35;
  }

  & .travel-dates-journey__connector {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 3.25rem;
    overflow: visible;
  }

  & .travel-dates-journey__connector-inner {
    display: block;
    width: 52px;
    max-width: 52px;
  }

  & .travel-dates-journey__connector--to-event .travel-dates-journey__connector-inner {
    margin-left: -0.45rem;
    width: calc(52px + 0.45rem);
    max-width: none;
  }

  & .travel-dates-journey__connector--to-departure .travel-dates-journey__connector-inner {
    margin-right: -0.45rem;
    width: calc(52px + 0.45rem);
    max-width: none;
  }

  & .travel-dates-journey__arrow {
    display: block;
    width: 100%;
    height: auto;
    overflow: visible;
    transform-box: view-box;
    transform-origin: 50% 50%;
    transform: rotate(-90deg) scaleX(-1);
    filter:
      drop-shadow(0 0 6px rgb(255 255 255 / 0.35))
      drop-shadow(0 0 16px rgb(255 255 255 / 0.18));
  }

  & .travel-dates-journey__arrow--departure {
    transform: rotate(-90deg) scaleX(-1) scaleY(-1);
  }

  & .travel-dates-journey__connector--to-departure .travel-dates-journey__arrow {
    filter:
      drop-shadow(0 0 6px rgb(255 255 255 / 0.32))
      drop-shadow(0 0 16px rgb(255 255 255 / 0.16));
  }

  @media (prefers-reduced-motion: reduce) {
    & .travel-dates-journey__arrow {
      filter: none;
    }

    & .travel-dates-journey__connector--to-departure .travel-dates-journey__arrow {
      filter: none;
    }

    & .travel-dates-journey__arrow-glow {
      display: none;
    }
  }

}

/* Extend-trip / Kissimmee panel — travel dates widget or standalone Experience Kissimmee widget */
body.horizons-page :is(.travel-dates, .experience-kissimmee) {
  & .travel-dates-extend {
    margin-top: 1.85rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    border-radius: clamp(14px, 2vw, 18px);
    border: none;
    background: var(--brand-gradient-tl-br);
    overflow: hidden;
  }

  & .travel-dates-extend-stripe {
    display: none;
  }

  & .travel-dates-extend-content {
    padding: 1.25rem 1.25rem 1.35rem 1.3rem;
  }

  & .travel-dates-extend-overline {
    display: block;
    margin: 0 0 0.5rem;
    font-family: var(--font);
    font-size: 1.0625rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--white) 82%, transparent);
    line-height: 1.25;
  }

  & .travel-dates-extend-heading {
    margin: 0 0 0.75rem;
    font-family: var(--font-heading);
    font-size: clamp(1.55rem, 3.4vw, 2.2rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.12;
    letter-spacing: -0.02em;
    text-transform: none;
  }

  & .travel-dates-extend-copy {
    color: color-mix(in srgb, var(--white) 86%, transparent);
    line-height: 1.65;
    font-size: clamp(1rem, 1.9vw, 1.0625rem);
    text-transform: none;

    & p {
      margin: 0 0 0.85em;
      color: inherit;
    }

    & p:last-child {
      margin-bottom: 0;
    }

    & strong {
      color: var(--white);
      font-weight: 600;
    }

    & a {
      color: var(--white);
      text-decoration: underline;
      text-underline-offset: 0.14em;
      font-weight: 600;

      &:hover,
      &:focus-visible {
        color: color-mix(in srgb, var(--white) 92%, var(--red));
      }
    }
  }

  & .travel-dates-extend-cta-wrap {
    margin: 1rem 0 0;
  }

  & .travel-dates-extend-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font);
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    font-size: 0.9375rem;
    letter-spacing: 0.03em;
    text-decoration: none;
    color: var(--white);
    border-radius: 6px;
    border: 2px solid color-mix(in srgb, var(--white) 58%, transparent);
    background: transparent;
    box-shadow: none;
    cursor: pointer;
    transition:
      color 0.18s ease,
      border-color 0.18s ease,
      background 0.18s ease,
      transform var(--transition),
      box-shadow var(--transition);

    &::after {
      content: '→';
      font-weight: 700;
      line-height: 1;
      transition: transform 0.2s ease;
    }

    &:hover,
    &:focus-visible {
      color: var(--brand-navy);
      border-color: var(--white);
      background: var(--white);
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);

      &::after {
        transform: translateX(3px);
      }
    }

    &:active {
      transform: translateY(0);
    }

    &:focus-visible {
      outline: 2px solid color-mix(in srgb, var(--white) 65%, transparent);
      outline-offset: 3px;
    }
  }
}

/* Standalone widget: journey block is absent, so drop top margin on the panel */
body.horizons-page .experience-kissimmee .travel-dates-extend {
  margin-top: 0;
}

/* Experience Kissimmee — optional four-image diagonal collage + overlay card */
body.horizons-page .experience-kissimmee--with-collage.section.content-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(1.25rem, 3.5vw, 2rem);
  background: white;
}

body.horizons-page .experience-kissimmee--with-collage.section--light {
  background: var(--brand-navy);
}

body.horizons-page .experience-kissimmee-collage {
  /* Slightly wider than the section to hide skew corner wedges after clip.
     Do not use overflow: hidden here — it clips the first/last strips’ paint
     that extends past this box (skew), which reads as a navy bar + shifted image. */
  position: absolute;
  top: -3%;
  bottom: -3%;
  left: -6%;
  right: -6%;
  width: auto;
  height: auto;
  z-index: 0;
  display: flex;
  flex-direction: row;
  min-height: 100%;
  overflow: visible;
  pointer-events: none;
  opacity: 0.5;

  &::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
      135deg,
      color-mix(in srgb, var(--brand-navy) 20%, transparent) 0%,
      color-mix(in srgb, #5e242d 14%, transparent) 55%,
      color-mix(in srgb, var(--brand-navy) 22%, transparent) 100%
    );
  }
}

body.horizons-page .experience-kissimmee-collage-slot {
  position: relative;
  z-index: 0;
  flex: 1 1 0;
  min-width: 0;
  margin: 0 -0.65rem;
  transform: skewX(-9deg);
  overflow: hidden;
}

body.horizons-page .experience-kissimmee-collage-picture {
  position: absolute;
  inset: -12%;
  width: 135%;
  height: 124%;
  margin: auto;
  transform: skewX(9deg) scale(1.14);
  transform-origin: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
  filter: saturate(0.9) contrast(0.96) brightness(1);
}

body.horizons-page .experience-kissimmee-collage-slot--empty .experience-kissimmee-collage-picture {
  background-image: none;
  background: linear-gradient(
    160deg,
    color-mix(in srgb, var(--brand-navy) 88%, var(--white)) 0%,
    color-mix(in srgb, #5e242d 55%, var(--brand-navy)) 100%
  );
}

body.horizons-page .horizons-container.experience-kissimmee-shell {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  min-height: clamp(13.5rem, 46vw, 22.5rem);
}

body.horizons-page .experience-kissimmee-shell .travel-dates-extend {
  max-width: min(26.75rem, 100%);
  margin-top: 0;
  box-shadow:
    0 18px 50px color-mix(in srgb, var(--brand-navy) 55%, transparent),
    0 2px 0 color-mix(in srgb, var(--white) 8%, transparent);
}

body.horizons-page .experience-kissimmee--with-collage .travel-dates-extend {
  border-radius: var(--radius-sm);
  background: linear-gradient(
    145deg,
    color-mix(in srgb, #0c1d31 88%, transparent) 0%,
    color-mix(in srgb, #5e242d 82%, transparent) 68%,
    color-mix(in srgb, #4a1c26 86%, transparent) 100%
  );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid color-mix(in srgb, var(--white) 14%, transparent);
}

@media (min-width: 48rem) {
  body.horizons-page .experience-kissimmee-collage {
    left: -12%;
    right: -12%;
    top: -3%;
    bottom: -3%;
  }

  body.horizons-page .experience-kissimmee-collage-slot {
    margin: 0 -0.85rem;
    transform: skewX(-11deg);
  }

  body.horizons-page .experience-kissimmee-collage-picture {
    transform: skewX(11deg) scale(1.16);
  }

  body.horizons-page .horizons-container.experience-kissimmee-shell {
    min-height: clamp(15rem, 36vw, 24rem);
  }
}

@media (min-width: 40rem) {
  body.horizons-page .travel-dates .travel-dates-journey {
    grid-template-columns: minmax(0, 1fr) 52px minmax(0, 1fr) 52px minmax(0, 1fr);
    gap: 0.9rem;
    align-items: stretch;
  }

  body.horizons-page .travel-dates .travel-dates-journey__connector {
    min-height: 0;
    align-self: start;
    align-items: flex-start;
  }

  body.horizons-page .travel-dates .travel-dates-journey__connector-inner {
    width: 100%;
    max-width: none;
    padding-top: 5rem;
  }

  body.horizons-page .travel-dates .travel-dates-journey__connector--to-event .travel-dates-journey__connector-inner {
    margin-left: -0.35rem;
    width: calc(100% + 0.35rem);
  }

  body.horizons-page .travel-dates .travel-dates-journey__connector--to-departure .travel-dates-journey__connector-inner {
    margin-right: -0.35rem;
    width: calc(100% + 0.35rem);
  }

  body.horizons-page .travel-dates .travel-dates-journey__arrow {
    transform: none;
  }

  body.horizons-page .travel-dates .travel-dates-journey__arrow.travel-dates-journey__arrow--departure {
    transform: none;
  }
}

@media (min-width: 48rem) {
  /* Extra gap only when the extend panel sits below the journey inside Ideal travel dates */
  body.horizons-page .travel-dates .travel-dates-extend {
    margin-top: 2.1rem;
  }

  body.horizons-page :is(.travel-dates, .experience-kissimmee) .travel-dates-extend-content {
    padding: 1.55rem 1.85rem 1.7rem 1.9rem;
  }
}

/* Map placeholder for missing API key */
.map-placeholder {
  width: 100%;
  height: 100%;
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 1.5rem 2rem;
  border: 1px solid var(--gray-100);
}
.map-placeholder svg { opacity: 0.35; flex-shrink: 0; width: 28px; height: 28px; }
.map-placeholder strong { font-size: 0.9375rem; color: var(--text); display: block; margin-bottom: 0.125rem; }
.map-placeholder span { font-size: 0.8125rem; color: var(--text-muted); }
.map-placeholder a { color: var(--red); font-size: 0.8125rem; font-weight: 600; white-space: nowrap; margin-left: auto; }

/* ============================================================
   EVENT INFO
   ============================================================ */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 0;
}

.info-section__cta {
  text-align: center;
  margin-top: 2.5rem;

  .cta-note {
    margin: 1rem 0 0;
    font-size: 1.125rem;
    color: var(--white);
    line-height: 1.5;

    a {
      color: var(--red);
      font-weight: 600;
      text-decoration: underline;
      text-underline-offset: 0.2em;
      transition: opacity var(--transition);

      &:hover,
      &:focus {
        opacity: 0.8;
        color: var(--red);
      }
    }
  }
}

body.horizons-page .info-section__cta .cta-note a,
body.template-horizons .info-section__cta .cta-note a {
  color: var(--red);
}

.copy-image-copy .cta-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;

  a {
    color: var(--red);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 0.2em;
    transition: opacity var(--transition);

    &:hover,
    &:focus {
      opacity: 0.8;
      color: var(--red);
    }
  }
}

body.horizons-page .copy-image-copy .cta-note a,
body.template-horizons .copy-image-copy .cta-note a {
  color: var(--red);
}

.info-card {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.info-card.anim-ready {
  transition:
    opacity var(--anim-reveal-duration) var(--anim-reveal-ease),
    transform var(--anim-reveal-duration) var(--anim-reveal-ease),
    border-color var(--transition),
    box-shadow var(--transition);
}

.info-card:hover {
  border-color: #e2e5ea;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.info-card__icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1.125rem;
}
.info-card__icon i { font-size: 2.375rem; color: var(--red); line-height: 1; }
.info-card h3 { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.75rem; }
.info-card__primary { font-size: 1.125rem; font-weight: 700; color: var(--text); margin: 0 auto 0.25rem; max-width: 20rem; }
.info-card__detail {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0.35rem auto 1rem;
  max-width: 18rem;
}
.info-card__detail--tight {
  margin-bottom: 0.5rem;
}
.info-card__link { font-size: 0.875rem; color: var(--red); font-weight: 600; transition: opacity var(--transition); display: block; }
.info-card__link:hover { opacity: 0.8; color: var(--red) !important; }

.info-card .btn {
  margin-top: 1rem;
}

.register-cta {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--red);
  border-radius: var(--radius);
}
.register-cta h3 { font-size: 1.75rem; color: var(--white); margin-bottom: 1rem; }
.register-cta p  { color: rgba(255,255,255,0.8); max-width: 520px; margin: 0 auto 2rem; }

/* ============================================================
   FOOTER
   ============================================================ */
/* ============================================================
   STATS STRIP (lives in .section--band gradient)
   ============================================================ */
.stats-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 1.5rem 2rem;
}

.stat-item__number {
  display: block;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  color: var(--red);
  letter-spacing: -0.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.stat-item__label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.75rem;
  max-width: 160px;
  margin-left: auto;
  margin-right: auto;
}

.stat-item__divider {
  width: 1px;
  height: 80px;
  background: var(--gray-100);
  flex-shrink: 0;
}

/* ============================================================
   SAVE THE DATE
   ============================================================ */
/* ── Hex decorative background elements ─────────────────── */
.hex-bg {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  width: 42%;
  mix-blend-mode: overlay;
  opacity: 0.9;
}
.hex-bg--tl { top: -22%;   left: -8%;  }
.hex-bg--tr { top: -4%;    right: -8%; }
.hex-bg--bl { bottom: -4%; left: -8%;  }
.hex-bg--br { bottom: 0; right: -8%; transform: translateY(50%); }
.hex-bg--flip { transform: rotate(180deg); }

/* Corner wireframe hex stacks (e.g. section--band); optional in savedate */
.hex-echo {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  display: block;
  width: min(72vw, 26rem);
  height: auto;
  mix-blend-mode: overlay;
  overflow: visible;
}
.hex-echo__stack {
  stroke-linejoin: round;
  stroke-linecap: round;
}
.hex-echo__ring {
  fill: none;
  stroke: #fff;
  stroke-width: 5px;
}

/* Hex echoes: masks in SVG (hexEchoMaskTL / hexEchoMaskBR). BR layout is the reference. */
.hex-echo--tl {
  top: -4%;
  left: 0;
  max-width: 50%;
}

.hex-echo--br {
  bottom: -12%;
  right: -12%;
  opacity: 0.75;
}

@media (min-width: 769px) {
  .hex-echo {
    width: min(80vw, 50%);
  }
  .hex-echo--tl {
    top: -6%;
    left: 10%;
    transform: translate(0%, -25%);
  }
  .hex-echo--br {
    bottom: -20%;
    right: 0;
    opacity: 0.85;
    transform: translateX(50%);
    
  }
}

.section--savedate {
  background: var(--brand-gradient-tl-br);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

.section--savedate .section__pattern--savedate {
  inset: -18%;
  mix-blend-mode: soft-light;
  opacity: 0.5;
}

.savedate__watermark {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 0;
  width: 100%;
  pointer-events: none;
  user-select: none;
  mix-blend-mode: overlay;
}

.savedate__keywords {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: stretch;
  justify-items: stretch;
  min-height: clamp(13rem, 36vw, 26rem);
  width: 100%;
  padding-left: max(0.75rem, env(safe-area-inset-left, 0px));
  padding-right: max(0.75rem, env(safe-area-inset-right, 0px));
  box-sizing: border-box;
  column-gap: clamp(0.35rem, 2vw, 1.5rem);

  @media (max-width: 640px) {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    min-height: unset;
    row-gap: 0.15rem;
    justify-items: center;
  }
}

.savedate__keyword {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.05;
  color: rgba(225, 225, 225, 0.28);

  &:nth-child(1) {
    font-size: calc(clamp(2.75rem, 11vw, 9.5rem) * 0.92);
    justify-self: start;
    align-self: center;
    grid-column: 1;
    grid-row: 1;
    z-index: 1;
  }

  &:nth-child(2) {
    font-size: calc(clamp(2.75rem, 11vw, 9.5rem) * 1.06);
    justify-self: center;
    align-self: start;
    grid-column: 2;
    grid-row: 1;
    z-index: 2;
  }

  &:nth-child(3) {
    font-size: calc(clamp(2.75rem, 11vw, 9.5rem) * 0.97);
    justify-self: end;
    align-self: end;
    grid-column: 3;
    grid-row: 1;
    z-index: 1;
  }

  @media (max-width: 640px) {
    &:nth-child(n) {
      grid-column: 1;
      justify-self: center;
      align-self: center;
    }

    &:nth-child(1) { grid-row: 1; }
    &:nth-child(2) { grid-row: 2; }
    &:nth-child(3) { grid-row: 3; }
  }
}

/* Poster content matches .horizons-container width; keywords stay full-bleed in .savedate__watermark */
.savedate__poster {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: max(2rem, env(safe-area-inset-left, 0px));
  padding-right: max(2rem, env(safe-area-inset-right, 0px));
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0 clamp(2rem, 6vw, 6rem);
  align-items: center;
  position: relative;
  z-index: 1;

  @media (max-width: 480px) {
    padding-left: max(1.25rem, env(safe-area-inset-left, 0px));
    padding-right: max(1.25rem, env(safe-area-inset-right, 0px));
  }
}

.savedate__spine {
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  padding-right: 1.5rem;
  white-space: nowrap;
  margin: 0;
}

.savedate__meta-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1rem;
}

.savedate__conf {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--red);
}

.savedate__month {
  font-size: clamp(1.5rem, 3vw, 2.75rem);
  font-weight: 900;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.1em;
}

.savedate__rule {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.25);
  margin: 0;
}

/* Own line box: must beat body.horizons-page p and Elementor kit p (same element). */
body.horizons-page p.savedate__days {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 13vw, 11rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1.3;
  margin: 0.3rem 0 0.4rem;
  text-wrap: unset;
  font-variant-numeric: tabular-nums;
}

.savedate__meta-bottom {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 1rem;
}

.savedate__location {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
}

.savedate__year {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: rgba(255,255,255,0.35);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.savedate__action {
  padding-left: 1.5rem;

  .cta-note {
    margin: 0.85rem 0 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    @media(min-width: 768px) {
      text-align: center;
    }
    a {
      color: var(--red);
      font-weight: 600;
      text-decoration: underline;
      text-underline-offset: 0.2em;
      transition: opacity var(--transition);

      &:hover,
      &:focus {
        opacity: 0.8;
        color: var(--red);
      }
    }
  }
}

body.horizons-page .savedate__action .cta-note a,
body.template-horizons .savedate__action .cta-note a {
  color: var(--red);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background-image: var(--brand-gradient-footer);
  background-attachment: fixed;
  border-top: none;
  padding: 3rem 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 1.5rem;
}

.footer__brand .nav__logo-text { font-size: 1.25rem; color: var(--white); }
.footer__brand p { font-size: 0.875rem; color: rgba(255,255,255,0.35); margin-top: 0.4rem; }

.footer__links {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
}

/* Beat Elementor Site Settings (.elementor-kit-* a { color: #000 }) on Horizons pages */
body.horizons-page .footer .footer__links a {
  font-size: 0.875rem;
  color: var(--white);
  transition: opacity var(--transition), text-decoration-color var(--transition);
}
body.horizons-page .footer .footer__links a:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 0.2em;
  text-decoration-color: rgba(255, 255, 255, 0.55);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer__bottom p { font-size: 0.8125rem; color: rgba(255,255,255,0.25); }

.footer__disclaimer {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.75rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.2);

  & p { margin: 0 0 0.5em; }
  & p:last-child { margin-bottom: 0; }
  & a {
    color: rgba(255,255,255,0.35);
    text-underline-offset: 0.2em;
    transition: color var(--transition);

    &:hover { color: rgba(255,255,255,0.6); }
  }
}

@media (prefers-reduced-motion: reduce) {
  .section--info,
  .footer {
    background-attachment: scroll;
  }
}

/* ============================================================
   MOBILE NAV (open state)
   ============================================================ */
.nav.mobile-open {
  z-index: 9998;
  isolation: isolate;
  background: var(--brand-navy);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.nav.mobile-open .nav__links {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 0;
  background-color: var(--brand-navy);
  align-items: flex-start;
  justify-content: flex-start;
  gap: 2rem;
  padding: clamp(6.5rem, 12vh, 9rem) 2rem 2.5rem;
  z-index: 0;
}

.nav.mobile-open .nav__logo,
.nav.mobile-open .nav__toggle {
  position: relative;
  z-index: 2;
}
.nav.mobile-open .nav__links a {
  font-size: 1.5rem;
  color: rgba(255,255,255,0.92);
  text-align: left;
}
.nav.mobile-open .nav__links a:hover { color: var(--white); }
.nav.mobile-open .nav__mobile-cta { display: block; margin-top: 0.5rem; }
.nav.mobile-open .nav__mobile-cta a {
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 400;
}
.nav.mobile-open .nav__toggle span { background: var(--white); }
.nav.mobile-open .nav__toggle span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav.mobile-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.mobile-open .nav__toggle span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero__top { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero__countdown-block { align-items: center; }

  .stats-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.25rem;
  }

  .stat-item {
    padding: 1.25rem 1rem;
  }

  .stat-item__label {
    max-width: 220px;
  }

  .stat-item__divider {
    display: none;
  }

  .drivers-grid { flex-direction: column; gap: 0; }
  .driver-item__divider { width: 80px; height: 1px; }
  .venue-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .venue__media {
    position: static;
    width: 100%;
    height: auto;
    top: auto;
    left: auto;
    transform: none;
  }

  .venue-layout.fadeup-cascade > .venue__media,
  .venue-layout.fadeup-cascade.in-view > .venue__media {
    transform: none;
  }

  body.elementor-editor-active .venue-layout.fadeup-cascade > .venue__media {
    transform: none !important;
  }

  .venue__media .venue__photo-img {
    height: auto;
  }

  .section--venue .venue__text {
    padding-inline: 2rem;
  }

  .venue__map-wrap {
    min-height: clamp(340px, 52vh, 560px);
  }

  .venue__map-wrap .venue__photo-img {
    max-height: min(560px, 65vh);
  }

  .venue__map { height: 320px; }

  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav__inner > .btn { display: none; }
}

@media (max-width: 1100px) {
  .nav__tagline { display: none; }

  .horizons-nav .nav__logo-img,
  .elementor .horizons-nav .nav__logo-img {
    height: 22px;
    max-width: min(200px, 54vw);
  }
}

@media (max-width: 850px) {
  .horizons-nav .nav__logo-img,
  .elementor .horizons-nav .nav__logo-img {
    height: 20px;
    max-width: min(180px, 60vw);
  }
}

@media (max-width: 767px) {
  body.horizons-page .elementor-element[data-widget_type^="hexure_horizons_hero"] {
    & .hero-new__inner {
      align-items: flex-start;
    }

    & .hero-new__content {
      text-align: left;
      width: min(100%, 600px);
      max-width: 600px;
      margin: 0;
    }

    & .hero-new__visual {
      width: min(100%, 600px);
      max-width: 600px;
      margin: 0 auto;
    }

    & .hero-new__actions {
      justify-content: flex-start;
    }
  }
}

@media (max-width: 768px) {
  .section { padding: 4rem 0; }

  .section--venue .venue__text {
    padding-block: 4rem;
  }

  .venue-layout {
    grid-template-columns: 1fr;
  }

  .hero { min-height: auto; padding: 6rem 0 3rem; }
  .hero__inner { padding: 2rem; }
  .countdown { padding: 1.5rem; gap: 0.5rem; }
  .countdown__unit { min-width: 44px; }

  .expect:not(.expect--split) .expect-grid,
  .themes-grid,
  .quotes-grid,
  .info-grid { grid-template-columns: 1fr; }

  .moment-layout { grid-template-columns: 1fr; gap: 3rem; }

  .savedate__poster { grid-template-columns: 1fr; gap: 2.5rem; }
  .savedate__spine { display: none; }
  .savedate__action {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 2rem;
  }

  .about-grid__stat-block { grid-template-columns: 1fr 1fr; }

  .footer__inner { flex-direction: column; align-items: flex-start; }
  .footer__bottom { flex-direction: column; }
}

@media (max-width: 600px) {
  .section--band {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .stats-strip {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .stat-item {
    padding: 0.9rem 0.5rem;
  }

  .stat-item__number {
    font-size: clamp(2.35rem, 12vw, 3.4rem);
  }

  .stat-item__label {
    font-size: 0.75rem;
    max-width: none;
  }

  .about-intro__body { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  .horizons-container {
    padding: 0 1.25rem;
  }

  body.horizons-page .hotel-destination .hotel-destination-layout {
    padding-inline: 1.25rem;
  }

  .section--venue .venue__text {
    padding-inline: 1.25rem;
  }
  body.horizons-page .elementor-element[data-widget_type^="hexure_horizons_hero"] .hero-new {
    padding-inline: 1.25rem;
  }
  .about-grid__stat-block { grid-template-columns: 1fr; }
  .hero__title { font-size: 2.75rem; }
  .countdown { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 485px) {
  body.horizons-page .elementor-element[data-widget_type^="hexure_horizons_hero"],
  body.elementor-editor-active .elementor-element[data-widget_type^="hexure_horizons_hero"] {
    & .hero-new__countdown {
      left: 0;
      right: 0;
      width: auto;
      padding-inline: 1.25rem;
      transform: translateY(10%);
    }

    & .hero-new__countdown .countdown--light {
      width: 100%;
      display: grid;
      grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
      align-items: start;
      flex-wrap: nowrap;
      justify-content: initial;
      gap: 0.35rem;
      padding: 0.75rem 0.75rem;
    }

    & .hero-new__countdown .countdown__unit {
      min-width: 0;
      width: 100%;
    }

    & .hero-new__countdown .countdown__value {
      font-size: clamp(1.35rem, 6.2vw, 1.9rem);
    }

    & .hero-new__countdown .countdown__sep {
      font-size: clamp(1.1rem, 4.8vw, 1.5rem);
      margin-top: 0;
    }

    & .hero-new__countdown .countdown__label {
      font-size: 0.6rem;
      letter-spacing: 0.09em;
    }
  }
}

/* ============================================================
   Horizons — scoped overrides (body.horizons-page when widgets load)
   ============================================================ */

html:has(body.horizons-page) { margin-top: 0 !important; }

.horizons-page {
  /* Nav over light hero: top-level bar links only (sub-menu lives in navy panel — do not match nested `a`). */
  & .nav:not(.scrolled):not(.mobile-open) .nav__links > li > a:not(.btn) {
    color: color-mix(in srgb, var(--brand-navy) 88%, transparent);
  }

  & .nav:not(.scrolled):not(.mobile-open) .nav__tagline {
    color: color-mix(in srgb, var(--brand-navy) 55%, transparent);
    line-height: 1.25;
  }

  & .nav:not(.scrolled):not(.mobile-open) .nav__links > li > a:not(.btn):hover,
  & .nav:not(.scrolled):not(.mobile-open) .nav__links > li > a:not(.btn):focus-visible {
    color: var(--red) !important;
  }

  & .nav:not(.scrolled):not(.mobile-open) .nav__toggle span {
    background: var(--brand-navy) !important;
  }

  & .nav.scrolled:not(.mobile-open) .nav__toggle span,
  & .nav.mobile-open .nav__toggle span {
    background: var(--white) !important;
  }

  /* Kit `button` styles often add a filled pill — hamburger should stay transparent (open + closed). */
  & .horizons-nav .nav__toggle {
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
    border-radius: 0;
  }

  /* Dark bar (scrolled or full-screen menu): Elementor / kit link colors often override base .nav__links a */
  & .nav.scrolled .nav__links a,
  & .nav.mobile-open .nav__links a {
    color: rgba(255, 255, 255, 0.92) !important;
  }

  /* Sticky navy bar (desktop): top-level parents white; hover stays light (not red — reads on navy). */
  & .nav.scrolled:not(.mobile-open) .nav__links > li > a:not(.btn) {
    color: rgba(255, 255, 255, 0.95) !important;
  }

  & .nav.scrolled:not(.mobile-open) .nav__links > li > a:not(.btn):hover,
  & .nav.scrolled:not(.mobile-open) .nav__links > li > a:not(.btn):focus-visible {
    color: var(--white) !important;
  }

  /* Full-screen menu: red accent on top-level tap/hover (sub-menus keep their own rules). */
  & .nav.mobile-open .nav__links > li > a:not(.btn):hover,
  & .nav.mobile-open .nav__links > li > a:not(.btn):focus-visible {
    color: var(--red) !important;
  }

  /* Full-screen menu: opaque navy (kit/ul resets were letting the light hero show through). */
  & .nav.mobile-open {
    background: var(--brand-navy) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  & .nav.mobile-open .nav__links {
    background-color: var(--brand-navy) !important;
  }

  /* Stats band: navy → maroon (flip from default maroon → navy). Sessions spotlight shares .section--band for hex markup but keeps its own gradient. */
  & .section--band:not(.section--sessions-spotlight) {
    background: var(--brand-gradient-navy-maroon);
  }

  /* Save the date: maroon → navy (flip from default --brand-gradient-tl-br) */
  & .section--savedate {
    background: linear-gradient(
      to bottom right,
      #5e242d 0%,
      #4a1c26 42%,
      #0c1d31 78%,
      #081426 100%
    );
  }

  /* Filled CTAs: Elementor / kit link styles often reset anchor color & weight */
  & .elementor a.btn,
  & .elementor .btn {
    font-weight: 700;
  }

  & .elementor .horizons-nav a.btn,
  & .elementor .horizons-nav .nav .btn {
    font-weight: 400;
    color: var(--white) !important;
    letter-spacing: 0.02em;
  }

  & .elementor .horizons-nav a.btn:hover,
  & .elementor .horizons-nav a.btn:focus-visible,
  & .elementor .horizons-nav .nav .btn:hover,
  & .elementor .horizons-nav .nav .btn:focus-visible,
  & .elementor .horizons-nav a.btn:active,
  & .elementor .horizons-nav .nav .btn:active {
    color: var(--white) !important;
  }

  & .elementor .btn:is(
    .btn--red,
    .btn--primary,
    .btn--steel,
    .btn--maroon,
    .btn--navy,
    .btn--magenta,
    .btn--brand-red,
    .btn--gradient-02
  ),
  & .elementor .btn:is(
    .btn--red,
    .btn--primary,
    .btn--steel,
    .btn--maroon,
    .btn--navy,
    .btn--magenta,
    .btn--brand-red,
    .btn--gradient-02
  ):is(:hover, :focus, :focus-visible, :active) {
    color: var(--white);
  }

  /* Kit / global h1 rules outrank `.simple-hero__headline` — keep full stack here. */
  & .elementor .elementor-widget-hexure_horizons_simple_hero h1.simple-hero__headline,
  & .elementor-element[data-widget_type^="hexure_horizons_simple_hero"] h1.simple-hero__headline {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: var(--hx-simple-hero-headline-size, clamp(2.5rem, 5.5vw, 3.85rem));
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: #000000;
    text-align: center;
    margin: 0 0 0.65rem;
    text-wrap: balance;
  }

  & .elementor .elementor-widget-hexure_horizons_simple_hero .simple-hero--diagonal h1.simple-hero__headline,
  & .elementor-element[data-widget_type^="hexure_horizons_simple_hero"] .simple-hero--diagonal h1.simple-hero__headline {
    color: #fff !important;
    text-align: left !important;
  }

  /* Kit / .elementor link color often overrides base .simple-hero__copy a */
  & .elementor-widget-hexure_horizons_simple_hero .simple-hero__copy a,
  & .elementor-element[data-widget_type^="hexure_horizons_simple_hero"] .simple-hero__copy a {
    color: var(--red) !important;
    text-decoration: underline;
  }

  & .elementor-widget-hexure_horizons_simple_hero .simple-hero__copy a:hover,
  & .elementor-widget-hexure_horizons_simple_hero .simple-hero__copy a:focus-visible,
  & .elementor-element[data-widget_type^="hexure_horizons_simple_hero"] .simple-hero__copy a:hover,
  & .elementor-element[data-widget_type^="hexure_horizons_simple_hero"] .simple-hero__copy a:focus-visible {
    color: var(--red-hover) !important;
  }

  & .elementor-widget[class*='elementor-widget-hexure_horizons'] h2.content-section__heading:not(.reg-fees-heading):not(.sponsors-gradient-cta-band__heading),
  & .elementor-widget[class*='elementor-widget-hexure_horizons'] h3.content-section__heading {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text) !important;
    text-align: left;
  }

  & .elementor-widget-hexure_horizons_registration_fees h2.content-section__heading.reg-fees-heading,
  & .elementor-element[data-widget_type='hexure_horizons_registration_fees'] h2.content-section__heading.reg-fees-heading {
    text-align: center !important;
    color: var(--white) !important;
  }

  & .elementor-widget-hexure_horizons_sponsors_gradient_card h2.content-section__heading.sponsors-gradient-cta-band__heading,
  & .elementor-element[data-widget_type='hexure_horizons_sponsors_gradient_card'] h2.content-section__heading.sponsors-gradient-cta-band__heading {
    text-align: center !important;
    color: var(--white) !important;
  }

  & .elementor-widget[class*='elementor-widget-hexure_horizons'] .section:not(.section--info) h2.section__heading,
  & .elementor-widget[class*='elementor-widget-hexure_horizons'] .section:not(.section--info) h3.section__heading {
    color: var(--text) !important;
  }
}

/* Simple hero: editor often has no `.horizons-page` on body — mirror headline stack here. */
body.elementor-editor-active .elementor .elementor-widget-hexure_horizons_simple_hero h1.simple-hero__headline,
body.elementor-editor-active .elementor-element[data-widget_type^="hexure_horizons_simple_hero"] h1.simple-hero__headline {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: var(--hx-simple-hero-headline-size, clamp(2.5rem, 5.5vw, 3.85rem));
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #000000;
  text-align: center;
  margin: 0 0 0.65rem;
  text-wrap: balance;
}

body.elementor-editor-active .elementor .elementor-widget-hexure_horizons_simple_hero .simple-hero--diagonal h1.simple-hero__headline,
body.elementor-editor-active .elementor-element[data-widget_type^="hexure_horizons_simple_hero"] .simple-hero--diagonal h1.simple-hero__headline {
  color: #fff !important;
  text-align: left !important;
}

/* ============================================================
   Elementor — Horizons hero (mask asset path + widget wrapper)
   ============================================================ */

.horizons-page .elementor-element[data-widget_type^="hexure_horizons_hero"] {
  width: 100%;
}

.horizons-page .elementor-element[data-widget_type^="hexure_horizons_hero"] .elementor-widget-container {
  display: block;
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
}

.horizons-page .elementor-element[data-widget_type^="hexure_horizons_nav"] {
  width: 100%;
}

.horizons-page .elementor-element[data-widget_type^="hexure_horizons_nav"] .elementor-widget-container {
  display: block;
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
}

.horizons-page .elementor-element[data-widget_type^="hexure_horizons_simple_hero"],
body.elementor-editor-active .elementor-element[data-widget_type^="hexure_horizons_simple_hero"] {
  width: 100%;
  overflow-x: visible;
}

.horizons-page .elementor-element[data-widget_type^="hexure_horizons_simple_hero"] .elementor-widget-container,
body.elementor-editor-active .elementor-element[data-widget_type^="hexure_horizons_simple_hero"] .elementor-widget-container {
  display: block;
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: left;
  overflow-x: visible;
}

/* Let the hex layer bleed past boxed columns / sections (canvas is still behind .horizons-container). */
body.horizons-page .elementor-column:has(.elementor-widget-hexure_horizons_simple_hero),
body.elementor-editor-active .elementor-column:has(.elementor-widget-hexure_horizons_simple_hero) {
  overflow-x: visible;
}

body.horizons-page .elementor-section:has(.elementor-widget-hexure_horizons_simple_hero),
body.elementor-editor-active .elementor-section:has(.elementor-widget-hexure_horizons_simple_hero) {
  overflow-x: visible;
}

body.horizons-page .elementor-column:has(.elementor-widget-hexure_horizons_hotel_destination),
body.elementor-editor-active .elementor-column:has(.elementor-widget-hexure_horizons_hotel_destination) {
  overflow-x: visible;
}

body.horizons-page .elementor-section:has(.elementor-widget-hexure_horizons_hotel_destination),
body.elementor-editor-active .elementor-section:has(.elementor-widget-hexure_horizons_hotel_destination) {
  overflow-x: visible;
}

.horizons-page .elementor-element[data-widget_type^="hexure_horizons_content_section"] {
  width: 100%;
}

.horizons-page .elementor-element[data-widget_type^="hexure_horizons_content_section"] .elementor-widget-container {
  display: block;
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: left;
}

.horizons-page .elementor-element[data-widget_type^="hexure_horizons_hotel_destination"],
body.elementor-editor-active .elementor-element[data-widget_type^="hexure_horizons_hotel_destination"] {
  width: 100%;
  overflow-x: visible;
}

.horizons-page .elementor-element[data-widget_type^="hexure_horizons_hotel_destination"] .elementor-widget-container,
body.elementor-editor-active .elementor-element[data-widget_type^="hexure_horizons_hotel_destination"] .elementor-widget-container {
  display: block;
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: left;
  overflow-x: visible;
}

.horizons-page .elementor-element[data-widget_type^="hexure_horizons_hotel_destination"] .hotel-destination-panel .hotel-destination-property {
  color: rgba(255, 255, 255, 0.96) !important;
}

.horizons-page .elementor-element[data-widget_type^="hexure_horizons_hotel_destination"] .hotel-destination-perks__heading {
  color: rgba(255, 255, 255, 0.92) !important;
}

.horizons-page .elementor-element[data-widget_type^="hexure_horizons_hotel_destination"] .hotel-destination-panel--rates .hotel-destination-rate-disclaimer {
  color: rgba(255, 255, 255, 0.62) !important;
}

.horizons-page .elementor-element[data-widget_type^="hexure_horizons_hotel_destination"] .hotel-destination-rate-lead__price {
  color: rgba(255, 255, 255, 0.98) !important;
  line-height: 1.05 !important;
}

.horizons-page .elementor-element[data-widget_type^="hexure_horizons_hotel_destination"] .hotel-destination-logistics__heading {
  color: rgba(255, 255, 255, 0.94) !important;
}

.horizons-page .elementor-element[data-widget_type^="hexure_horizons_hotel_destination"] .hotel-destination-logistics__icon {
  color: color-mix(in srgb, var(--btn-magenta) 72%, white) !important;
}

.horizons-page .elementor-element[data-widget_type^="hexure_horizons_hotel_destination"] .hotel-destination-logistics__icon-svg,
.horizons-page .elementor-element[data-widget_type^="hexure_horizons_hotel_destination"] .hotel-destination-logistics__icon > svg {
  fill: currentColor !important;
  color: inherit !important;
}

.horizons-page .elementor-element[data-widget_type^="hexure_horizons_hotel_destination"] .hotel-destination-logistics__icon-svg path,
.horizons-page .elementor-element[data-widget_type^="hexure_horizons_hotel_destination"] .hotel-destination-logistics__icon > svg path {
  fill: currentColor !important;
}

.horizons-page .elementor-element[data-widget_type^="hexure_horizons_booking_stay"] {
  width: 100%;
}

.horizons-page .elementor-element[data-widget_type^="hexure_horizons_booking_stay"] .elementor-widget-container {
  display: block;
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: left;
}

.horizons-page .elementor-element[data-widget_type^="hexure_horizons_sessions_spotlight"],
body.elementor-editor-active .elementor-element[data-widget_type^="hexure_horizons_sessions_spotlight"] {
  width: 100%;
}

.horizons-page .elementor-element[data-widget_type^="hexure_horizons_sessions_spotlight"] .elementor-widget-container,
body.elementor-editor-active .elementor-element[data-widget_type^="hexure_horizons_sessions_spotlight"] .elementor-widget-container {
  display: block;
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: left;
}

.horizons-page .elementor-element[data-widget_type^="hexure_horizons_getting_to"] {
  width: 100%;
}

.horizons-page .elementor-element[data-widget_type^="hexure_horizons_getting_to"] .elementor-widget-container {
  display: block;
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: left;
}

.horizons-page .elementor-element[data-widget_type^="hexure_horizons_experience_kissimmee"] {
  width: 100%;
}

.horizons-page .elementor-element[data-widget_type^="hexure_horizons_experience_kissimmee"] .elementor-widget-container {
  display: block;
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: left;
}

.horizons-page .elementor-element[data-widget_type^="hexure_horizons_page_"] {
  width: 100%;
}

.horizons-page .elementor-element[data-widget_type^="hexure_horizons_page_"] .elementor-widget-container {
  display: block;
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: left;
}

/* ============================================================
   Horizons + Elementor — remove extra bottom page gap
   (Kit/post CSS applies margin-block-end via --widgets-spacing; last
   widget may not match :last-child if Theme Builder / scripts follow.)
   ============================================================ */
body.horizons-page #elementor {
  margin-bottom: 0;
}

body.horizons-page .elementor-widget-hexure_horizons_footer,
body.horizons-page .elementor-element[data-widget_type^="hexure_horizons_footer"] {
  margin-block-end: 0 !important;
  margin-bottom: 0 !important;
}

body.horizons-page .elementor-widget-hexure_horizons_footer .elementor-widget-container,
body.horizons-page .elementor-element[data-widget_type^="hexure_horizons_footer"] .elementor-widget-container {
  margin-bottom: 0;
}

/* Last root section / flex container: drop default bottom outer padding that reads as page margin */
body.horizons-page #elementor > .elementor-section:last-child,
body.horizons-page #elementor > .e-con.e-parent:last-child,
body.horizons-page .elementor.elementor-default > .elementor-section:last-child,
body.horizons-page .elementor.elementor-default > .e-con.e-parent:last-child {
  margin-bottom: 0 !important;
}

body.horizons-page #elementor > .e-con.e-parent:last-child,
body.horizons-page .elementor.elementor-default > .e-con.e-parent:last-child {
  --padding-bottom: 0px;
}

/* ============================================================
   Horizons shell template — single footer (Horizons widget only)
   Hello Elementor + Elementor Theme Builder add a second footer via
   get_footer(); hide those wrappers; keep .footer from Horizons widget.
   ============================================================ */
body.template-horizons #site-footer.site-footer,
body.template-horizons .elementor-location-footer {
  display: none !important;
}
