/* Jenkins Property - Marketing Journey
   Brand Truth digital palette (Paul preference):
   - Page: warm white #F5F5F2 / white - light, airy chat/app chrome
   - Yellow #F4B800: accent only (~20%) - CTAs, eyebrows, path progress, pickups
   - Charcoal #1C2020: headlines, path nodes/strokes, dark contrast panels
   - Mid Grey #6A6D6D: secondary copy; Dark Text #222626: body
   - Cover: light field + brand accents (NOT charcoal full-bleed)
   Font: Verdana, Arial, Helvetica, sans-serif
   Accessibility: charcoal text on yellow CTAs; never white on yellow;
   white text only on charcoal panels. NO roof device / NO "something extraordinary".
*/
/* Preview: Dark editorial override — see styles-dark-editorial.css + ../index-dark-editorial.html */

:root {
  --yellow: #F4B800;
  --charcoal: #1C2020;
  --white: #ffffff;
  --warm-white: #F5F5F2;
  --soft-grey: #EEEEEA;
  --mid-grey: #6A6D6D;
  --dark-text: #222626;
  --font: Verdana, Arial, Helvetica, sans-serif;
  --nav-h: 60px;
  --radius: 12px;
  --shadow: 0 8px 28px rgba(28, 32, 32, 0.08);
  --shadow-lg: 0 16px 40px rgba(28, 32, 32, 0.12);
  --max: 920px;
  --path-max: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--dark-text);
  background: #E8E8E6; /* continuous light grey - chat-like, not charcoal */
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* -- Architectural blueprint wash (HUGE visible tile + yellow mouse wash) -- */
.page-blueprint {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  min-height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.page-blueprint__fade {
  position: absolute;
  inset: 0;
  /* Soft bands: breathe in/out while still covering the rear overall */
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.55) 8%,
    rgba(0, 0, 0, 0.28) 18%,
    rgba(0, 0, 0, 0.72) 32%,
    rgba(0, 0, 0, 0.45) 44%,
    rgba(0, 0, 0, 0.22) 54%,
    rgba(0, 0, 0, 0.65) 66%,
    rgba(0, 0, 0, 0.4) 78%,
    rgba(0, 0, 0, 0.25) 90%,
    rgba(0, 0, 0, 0.15) 100%
  );
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.55) 8%,
    rgba(0, 0, 0, 0.28) 18%,
    rgba(0, 0, 0, 0.72) 32%,
    rgba(0, 0, 0, 0.45) 44%,
    rgba(0, 0, 0, 0.22) 54%,
    rgba(0, 0, 0, 0.65) 66%,
    rgba(0, 0, 0, 0.4) 78%,
    rgba(0, 0, 0, 0.25) 90%,
    rgba(0, 0, 0, 0.15) 100%
  );
}
.page-blueprint__base,
.page-blueprint__hot {
  position: absolute;
  inset: 0;
  /* Large zoomed technical plans (not tiny repeating tiles) */
  background-image:
    url("../assets/bg-plan-large-1.png"),
    url("../assets/bg-plan-large-2.png");
  background-repeat: no-repeat, no-repeat;
  background-size: 160vw auto, 120vw auto;
  background-position: 8% 12%, 70% 58%;
  opacity: 0.22;
}
.page-blueprint__hot {
  background-image:
    url("../assets/bg-plan-large-1-yellow.png"),
    url("../assets/bg-plan-large-2-yellow.png");
  opacity: 0;
  -webkit-mask-image: radial-gradient(
    circle 250px at var(--bp-x, -400px) var(--bp-y, -400px),
    #000 0%,
    rgba(0, 0, 0, 0.85) 38%,
    rgba(0, 0, 0, 0.35) 62%,
    transparent 78%
  );
  mask-image: radial-gradient(
    circle 250px at var(--bp-x, -400px) var(--bp-y, -400px),
    #000 0%,
    rgba(0, 0, 0, 0.85) 38%,
    rgba(0, 0, 0, 0.35) 62%,
    transparent 78%
  );
  transition: opacity 0.2s var(--ease);
}
body.is-blueprint-hot .page-blueprint__hot {
  opacity: 0.68; /* significant yellow wash under cursor */
}
@media (pointer: coarse) {
  .page-blueprint__hot { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .page-blueprint__hot { display: none; }
}

.cover,
.path-stage,
.site-footer {
  position: relative;
  z-index: 1;
}


img { max-width: 100%; height: auto; display: block; }
a { color: var(--charcoal); }
a:hover, a:focus-visible { color: var(--dark-text); }

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

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--yellow);
  color: var(--charcoal);
  padding: 0.75rem 1rem;
  z-index: 1000;
  font-weight: 700;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* -- Buttons -- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0.85rem 1.45rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: var(--yellow);
  color: var(--charcoal);
  border-color: var(--yellow);
}
.btn--primary:hover,
.btn--primary:focus-visible {
  background: #e0a800;
  border-color: #e0a800;
  color: var(--charcoal);
}
.btn--ghost {
  background: transparent;
  color: var(--charcoal);
  border-color: rgba(28, 32, 32, 0.25);
}
.btn--ghost:hover,
.btn--ghost:focus-visible {
  border-color: var(--charcoal);
  color: var(--charcoal);
  background: rgba(28, 32, 32, 0.04);
}
/* Ghost on charcoal panels only */
.contact-card .btn--ghost,
.site-footer .btn--ghost,
.tour-empty .btn--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
  background: transparent;
}
.contact-card .btn--ghost:hover,
.contact-card .btn--ghost:focus-visible,
.site-footer .btn--ghost:hover,
.site-footer .btn--ghost:focus-visible,
.tour-empty .btn--ghost:hover,
.tour-empty .btn--ghost:focus-visible {
  border-color: var(--yellow);
  color: var(--yellow);
  background: transparent;
}

/* -- Header (light chat/app chrome) -- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--charcoal);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(28, 32, 32, 0.08);
  box-shadow: 0 1px 0 rgba(244, 184, 0, 0.55);
  transition: background 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.site-header__inner {
  width: min(100% - 2rem, 1120px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.site-logo img {
  height: 32px;
  width: auto;
}

.site-header__meta {
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mid-grey);
  text-align: right;
}
.site-header__meta strong {
  display: block;
  color: var(--charcoal);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}
.site-header__meta strong::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 0.4rem;
  border-radius: 50%;
  background: var(--yellow);
  vertical-align: middle;
}

/* -- Cover / hero (light field + brand accents; not charcoal full-bleed) -- */
.cover {
  position: relative;
  min-height: min(78vh, 680px);
  min-height: min(78dvh, 680px);
  display: grid;
  align-items: center;
  padding: calc(var(--nav-h) + 2rem) 1.25rem 2.5rem;
  color: var(--charcoal);
  overflow: visible;
  isolation: isolate;
  background:
    radial-gradient(ellipse 70% 55% at 88% 18%, rgba(244, 184, 0, 0.08), transparent 58%),
    radial-gradient(ellipse 55% 45% at 8% 88%, rgba(28, 32, 32, 0.03), transparent 55%),
    linear-gradient(180deg, rgba(232, 232, 230, 0.35) 0%, rgba(232, 232, 230, 0.12) 100%);
}

.cover__content {
  position: relative;
  z-index: 2;
  width: min(100%, 700px);
  margin: 0 auto;
  max-width: 38rem;
  padding: 1.35rem 1.35rem 1.4rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(28, 32, 32, 0.06);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(28, 32, 32, 0.07);
  border-top: 2px solid var(--yellow);
}

.cover__wordmark {
  height: 40px;
  width: auto;
  margin-bottom: 0.85rem;
}

.cover__draft {
  display: inline-block;
  margin-bottom: 0.85rem;
  padding: 0.24rem 0.62rem;
  background: var(--yellow);
  border: 1px solid var(--yellow);
  color: var(--charcoal);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  border-radius: 4px;
}

.cover__line {
  margin: 0 0 0.75rem;
  font-size: clamp(1.4rem, 3.1vw, 2.05rem);
  line-height: 1.28;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}

.cover__sub {
  margin: 0 0 1.05rem;
  font-size: 1.02rem;
  line-height: 1.55;
  color: rgba(28, 32, 32, 0.74);
  max-width: 42ch;
  font-weight: 400;
}

/* Soft pulse on primary journey CTAs */
@keyframes jp-soft-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 8px 22px rgba(244, 184, 0, 0.28);
  }
  50% {
    transform: scale(1.035);
    box-shadow: 0 12px 34px rgba(244, 184, 0, 0.48);
  }
}

.cover__cta,
.stop__continue.btn--primary {
  animation: jp-soft-pulse 2.4s ease-in-out infinite;
  will-change: transform, box-shadow;
}
.cover__cta:hover,
.cover__cta:focus-visible,
.stop__continue.btn--primary:hover,
.stop__continue.btn--primary:focus-visible {
  animation-play-state: paused;
}

/* Soft sweeping arrow picture - beside copy on desktop */
.cover__media {
  display: block;
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  margin: 1.35rem auto 0;
  aspect-ratio: 16 / 12;
  overflow: hidden;
  background: #1c2020;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 16px 40px rgba(28, 32, 32, 0.14);
  /* Soft sweep: rounded top, gentle arrow tip at the bottom */
  clip-path: polygon(
    3% 0%,
    97% 0%,
    100% 4%,
    100% 62%,
    94% 70%,
    82% 80%,
    68% 90%,
    50% 100%,
    32% 90%,
    18% 80%,
    6% 70%,
    0% 62%,
    0% 4%
  );
  -webkit-clip-path: polygon(
    3% 0%,
    97% 0%,
    100% 4%,
    100% 62%,
    94% 70%,
    82% 80%,
    68% 90%,
    50% 100%,
    32% 90%,
    18% 80%,
    6% 70%,
    0% 62%,
    0% 4%
  );
  transition: transform 0.3s var(--ease), filter 0.3s var(--ease);
}
.cover__media:hover,
.cover__media:focus-visible {
  transform: translateY(3px);
  filter: brightness(1.03);
  outline: none;
}
.cover__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.cover__veil {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 48%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(28, 32, 32, 0.15) 45%,
    rgba(244, 184, 0, 0.42) 100%
  );
}

@media (min-width: 900px) {
  .cover {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2.25rem;
    align-items: center;
    padding-left: max(2.5rem, calc((100% - 1120px) / 2 + 1rem));
    padding-right: max(2.5rem, calc((100% - 1120px) / 2 + 1rem));
    padding-bottom: 2.75rem;
  }
  .cover__content {
    margin: 0;
    max-width: none;
    width: auto;
  }
  .cover__wordmark { height: 44px; }
  .cover__media {
    width: 100%;
    max-width: none;
    margin: 0;
    aspect-ratio: 16 / 12;
  }
}

/* Idle guiding arrow */
.journey-idle-guide {
  position: fixed;
  left: 50%;
  bottom: 1.35rem;
  z-index: 40;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  width: 52px;
  height: 58px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--charcoal);
  box-shadow: 0 10px 28px rgba(28, 32, 32, 0.16);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.journey-idle-guide svg {
  color: var(--yellow);
  filter: drop-shadow(0 1px 0 rgba(28, 32, 32, 0.12));
}
body.is-journey-idle .journey-idle-guide {
  opacity: 1;
  pointer-events: auto;
  animation: jp-guide-bob 1.6s ease-in-out infinite;
}
body.is-journey-idle .journey-idle-guide[hidden] {
  display: grid;
}
@keyframes jp-guide-bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(7px); }
}
@media (prefers-reduced-motion: reduce) {
  .cover__cta,
  .stop__continue.btn--primary,
  body.is-journey-idle .journey-idle-guide,
  .ba-slider__handle span,
  .ba-slider__before::after,
  .photo-compare__scrub input[type="range"]::-webkit-slider-thumb,
  .photo-compare__scrub input[type="range"]::-moz-range-thumb {
    animation: none !important;
  }
}

/* -- Path stage (centre S-curve weave) -- */
.path-stage {
  position: relative;
  padding: 3.75rem 0 5.5rem;
  background:
    radial-gradient(ellipse 70% 30% at 50% 0%, rgba(244, 184, 0, 0.05), transparent 62%),
    linear-gradient(180deg, rgba(232, 232, 230, 0.15) 0%, rgba(232, 232, 230, 0.08) 48%, rgba(232, 232, 230, 0.18) 100%);
  overflow: hidden;
}

.path-stage__rail {
  display: none;
  pointer-events: none;
  z-index: 1;
}

/* Desktop: full-bleed SVG snakes through the middle */
@media (min-width: 900px) {
  .path-stage__rail:not(.path-stage__rail--mobile) {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
  .path-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
  }
  .path-svg__track {
    stroke: rgba(28, 32, 32, 0.2);
    stroke-width: 2.75;
    stroke-linecap: round;
    stroke-dasharray: 1.5 10;
  }
  .path-svg__progress {
    stroke: var(--yellow);
    stroke-width: 3.25;
    stroke-linecap: round;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    transition: stroke-dashoffset 0.35s var(--ease);
    filter: drop-shadow(0 0 5px rgba(244, 184, 0, 0.32));
  }
}

/* Mobile / tablet: clearer winding journey route on the left */
@media (max-width: 899px) {
  .path-stage__rail--mobile {
    display: block;
    position: absolute;
    top: 3.25rem;
    bottom: 4.25rem;
    left: 0.15rem;
    width: 40px;
  }
  .path-svg--mobile {
    width: 100%;
    height: 100%;
    overflow: visible;
  }
  .path-svg--mobile .path-svg__track {
    stroke: rgba(28, 32, 32, 0.38);
    stroke-width: 4.25;
    stroke-linecap: round;
    stroke-dasharray: 2.5 8;
  }
  .path-svg--mobile .path-svg__progress--static {
    stroke: var(--yellow);
    stroke-width: 4.5;
    stroke-linecap: round;
    stroke-dasharray: 56 480;
    opacity: 0.95;
    filter: drop-shadow(0 0 5px rgba(244, 184, 0, 0.42));
  }
}

.path-stage__stops {
  width: min(100% - 2rem, var(--path-max));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 900px) {
  .path-stage__stops {
    gap: 2.75rem;
  }
}

/* -- Stop cards -- */
.stop {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  scroll-margin-top: calc(var(--nav-h) + 16px);
}

@media (max-width: 899px) {
  .stop {
    padding-left: 2.35rem; /* room for numbered nodes without clipping card content */
  }

  /* Show numbered stop nodes on the left path (hidden on mobile before) */
  .stop__node {
    display: grid;
    place-items: center;
    position: absolute;
    left: 0.2rem;
    top: 1.15rem;
    width: 34px;
    height: 34px;
    margin: 0;
    border-radius: 50%;
    border: 2px solid rgba(28, 32, 32, 0.45);
    background: var(--white);
    color: var(--charcoal);
    cursor: pointer;
    font-family: inherit;
    padding: 0;
    box-shadow: 0 3px 10px rgba(28, 32, 32, 0.12);
    z-index: 3;
    transition: border-color 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
  }
  .stop__node-num {
    font-size: 0.78rem;
    font-weight: 700;
  }
  .stop.is-active .stop__node,
  .stop.is-open .stop__node {
    background: var(--yellow);
    border-color: var(--yellow);
    box-shadow: 0 0 0 5px rgba(244, 184, 0, 0.28);
  }
  .stop.is-done .stop__node:not(:focus-visible) {
    background: var(--charcoal);
    border-color: var(--charcoal);
    color: var(--white);
  }
  .stop.is-done.is-open .stop__node,
  .stop.is-done.is-active .stop__node {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--charcoal);
  }
}

/* Desktop zigzag: card | spine | card - path snakes through the middle */
@media (min-width: 900px) {
  .stop {
    grid-template-columns: minmax(0, 1fr) 140px minmax(0, 1fr);
    column-gap: 1.1rem;
    align-items: start;
  }

  /* Left stops: card left; node centred on the spine so the path can flow 1>15 */
  .stop--left .stop__card {
    grid-column: 1;
    grid-row: 1;
    justify-self: stretch;
  }
  .stop--left .stop__node {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
  }

  /* Right stops: card right; node centred on the spine */
  .stop--right .stop__card {
    grid-column: 3;
    grid-row: 1;
    justify-self: stretch;
  }
  .stop--right .stop__node {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
  }

  /* Open: active side grows for photography / staging / tour */
  .stop.is-open.stop--left {
    grid-template-columns: minmax(0, 1.5fr) 120px minmax(0, 0.5fr);
  }
  .stop.is-open.stop--right {
    grid-template-columns: minmax(0, 0.5fr) 120px minmax(0, 1.5fr);
  }

  /* Soft empty-bay wash opposite the card */
  .stop--left::after,
  .stop--right::before {
    content: "";
    grid-row: 1;
    align-self: stretch;
    min-height: 4.5rem;
    margin-top: 1.1rem;
    border-radius: 14px;
    pointer-events: none;
    opacity: 0.5;
  }
  .stop--left::after {
    grid-column: 3;
    background:
      radial-gradient(ellipse 80% 70% at 28% 42%, rgba(244, 184, 0, 0.07), transparent 72%);
  }
  .stop--right::before {
    grid-column: 1;
    background:
      radial-gradient(ellipse 80% 70% at 72% 42%, rgba(244, 184, 0, 0.07), transparent 72%);
  }
  .stop.is-open.stop--left::after,
  .stop.is-open.stop--right::before {
    opacity: 0.15;
  }
}

.stop__node {
  display: none;
}

@media (min-width: 900px) {
  .stop__node {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    margin-top: 1.4rem;
    border-radius: 50%;
    border: 2px solid rgba(28, 32, 32, 0.28);
    background: var(--white);
    color: var(--charcoal);
    cursor: pointer;
    font-family: inherit;
    padding: 0;
    box-shadow: 0 4px 14px rgba(28, 32, 32, 0.08);
    transition: border-color 0.25s var(--ease), background 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
    position: relative;
    z-index: 3;
  }
  .stop__node:hover {
    border-color: var(--yellow);
    transform: scale(1.06);
  }
  .stop.is-active .stop__node,
  .stop.is-open .stop__node {
    background: var(--yellow);
    border-color: var(--yellow);
    box-shadow: 0 0 0 6px rgba(244, 184, 0, 0.22);
  }
  .stop.is-done .stop__node:not(:focus-visible) {
    background: var(--charcoal);
    border-color: var(--charcoal);
    color: var(--white);
  }
  .stop.is-done.is-open .stop__node,
  .stop.is-done.is-active .stop__node {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--charcoal);
  }
}

.stop__node-num {
  font-size: 0.85rem;
  font-weight: 700;
}

.stop__card {
  background: #fff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid rgba(196, 202, 210, 0.7);
  border-radius: 0.4rem;
  box-shadow: none;
  overflow: hidden;
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
}

.stop.is-active .stop__card,
.stop.is-open .stop__card {
  border-color: #C4CAD2;
  box-shadow: 0 8px 24px rgba(28, 32, 32, 0.05);
}

.stop__summary {
  display: block;
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 1.35rem 1.4rem 1.25rem;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}

.stop__summary:hover .stop__expand-hint {
  color: var(--charcoal);
}

.stop__eyebrow {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 700;
  margin: 0 0 0.55rem;
}

.stop.is-open .stop__eyebrow,
.stop.is-active .stop__eyebrow {
  color: var(--yellow);
}

.stop.is-open .stop__eyebrow::before,
.stop.is-active .stop__eyebrow::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  margin-right: 0.45rem;
  vertical-align: middle;
}

.stop__title {
  margin: 0 0 0.45rem;
  font-size: clamp(1.2rem, 2.6vw, 1.55rem);
  line-height: 1.25;
  color: var(--charcoal);
  font-weight: 700;
}

.stop__teaser {
  margin: 0;
  color: var(--mid-grey);
  font-size: 0.95rem;
  max-width: 40rem;
}

.stop__expand-hint {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mid-grey);
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 1px;
}

.stop.is-open .stop__expand-hint {
  display: none;
}

.stop.is-open .stop__teaser {
  display: none;
}

.stop__panel {
  padding: 0 1.4rem 1.5rem;
  border-top: 1px solid rgba(28, 32, 32, 0.06);
  animation: panel-in 0.35s var(--ease);
}

.stop__panel[hidden] {
  display: none !important;
}

@keyframes panel-in {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Problem > proof */
.problem,
.proof {
  margin: 1.15rem 0 0;
}

.problem {
  background: rgba(238, 238, 234, 0.82);
  border-left: 3px solid var(--charcoal);
  border-radius: 0 8px 8px 0;
  padding: 0.95rem 1.05rem;
}

.problem__label,
.proof__label {
  margin: 0 0 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--mid-grey);
}

.problem p,
.proof > p {
  margin: 0;
  color: var(--dark-text);
  font-size: 0.95rem;
}

.proof__label {
  color: var(--charcoal);
}
.proof__label::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 2px;
  background: var(--yellow);
  margin-left: 0.5rem;
  vertical-align: middle;
}

.proof-list {
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}
.proof-list li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.92rem;
  color: var(--dark-text);
}
.proof-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
}

.proof-subhead {
  margin: 1.5rem 0 0.65rem;
  font-size: 1rem;
  color: var(--charcoal);
}

.stop__continue {
  margin-top: 1.35rem;
}

/* Offer stop dark panel accents stay on charcoal contact card only */
.stop--offer .cta-panel {
  margin-top: 1.1rem;
}

/* -- Photography -- */
.scene-picker,
.ba-scene-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.85rem 0 0.75rem;
}
.scene-picker button,
.ba-scene-picker button {
  font-family: inherit;
  font-size: 0.78rem;
  border: 1px solid rgba(28, 32, 32, 0.15);
  background: var(--white);
  color: var(--mid-grey);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.scene-picker button:hover,
.ba-scene-picker button:hover {
  border-color: var(--charcoal);
  color: var(--charcoal);
}
.scene-picker button[aria-pressed="true"],
.ba-scene-picker button[aria-pressed="true"] {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}

.tier-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
}
.tier-tabs button {
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  border: none;
  background: var(--warm-white);
  color: var(--mid-grey);
  padding: 0.55rem 0.95rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.tier-tabs button[aria-pressed="true"] {
  background: var(--yellow);
  color: var(--charcoal);
}

.photo-compare {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--charcoal);
  box-shadow: var(--shadow);
}
.photo-compare__frame {
  aspect-ratio: 16 / 9;
  background: #111;
}
.photo-compare__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-compare__label {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(28, 32, 32, 0.82);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.35rem 0.65rem;
  border-radius: 4px;
  border-left: 3px solid var(--yellow);
}

/* Soft pulse so drag controls are easy to spot */
@keyframes jp-slider-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 14px rgba(28, 32, 32, 0.25), 0 0 0 0 rgba(244, 184, 0, 0.55);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(28, 32, 32, 0.28), 0 0 0 10px rgba(244, 184, 0, 0);
  }
}
@keyframes jp-range-thumb-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(244, 184, 0, 0.55), 0 2px 8px rgba(28, 32, 32, 0.25);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(244, 184, 0, 0), 0 2px 8px rgba(28, 32, 32, 0.25);
  }
}
.photo-compare__scrub {
  background: var(--white);
  padding: 0.85rem 1rem 1rem;
  color: var(--dark-text);
}
.photo-compare__scrub label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.45rem;
}
.photo-compare__scrub input[type="range"] {
  width: 100%;
  accent-color: var(--yellow);
  cursor: pointer;
  height: 1.35rem;
}
.photo-compare__scrub input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--yellow);
  border: 2px solid var(--white);
  cursor: pointer;
  animation: jp-range-thumb-pulse 1.8s ease-out infinite;
}
.photo-compare__scrub input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--yellow);
  border: 2px solid var(--white);
  cursor: pointer;
  animation: jp-range-thumb-pulse 1.8s ease-out infinite;
}
.photo-compare__scrub input[type="range"]:active::-webkit-slider-thumb,
.photo-compare__scrub input[type="range"]:focus-visible::-webkit-slider-thumb,
.photo-compare__scrub input[type="range"]:active::-moz-range-thumb,
.photo-compare__scrub input[type="range"]:focus-visible::-moz-range-thumb {
  animation-play-state: paused;
}
.photo-compare__ticks {
  display: flex;
  justify-content: space-between;
  margin-top: 0.35rem;
  font-size: 0.68rem;
  color: var(--mid-grey);
}
.photo-note {
  margin: 0.65rem 0 0;
  font-size: 0.78rem;
  color: var(--mid-grey);
}

/* -- Tour -- */
.tour-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin: 0 0 0.85rem;
}
.tour-actions .photo-note { margin: 0; }
.tour-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: var(--charcoal);
}
.tour-frame {
  position: relative;
  margin-top: 0.85rem;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--charcoal);
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow);
}
.tour-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.tour-empty {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  background:
    radial-gradient(circle at 50% 30%, rgba(244, 184, 0, 0.12), transparent 55%),
    var(--charcoal);
}
.tour-empty h3 {
  margin: 0.5rem 0;
  color: var(--white);
  font-size: 1.05rem;
}
.tour-empty p {
  margin: 0 auto 0.75rem;
  max-width: 28rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
}
.tour-empty code {
  display: inline-block;
  margin-top: 0.35rem;
  padding: 0.35rem 0.55rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  font-size: 0.78rem;
  color: var(--yellow);
}
.tour-empty__icon {
  font-size: 1.6rem;
  color: var(--yellow);
  opacity: 0.9;
}

/* -- Staging -- */
.staging-offer {
  display: grid;
  gap: 1rem;
  margin-top: 0.85rem;
}
@media (min-width: 720px) {
  .staging-offer {
    grid-template-columns: 1.1fr 1fr;
    align-items: start;
  }
}
.staging-offer__copy {
  background: var(--warm-white);
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem;
  border: 1px solid rgba(28, 32, 32, 0.06);
}
.staging-offer__badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--charcoal);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.55rem;
  border-radius: 4px;
  margin-bottom: 0.55rem;
}
.staging-offer__copy h3 {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
  color: var(--charcoal);
}
.staging-offer__copy .accent,
.accent { color: var(--yellow); }
.staging-offer__line {
  margin: 0 0 0.55rem;
  color: var(--charcoal);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.staging-offer__copy p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--mid-grey);
}

.pillar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}
.pillar {
  background: var(--white);
  border: 1px solid rgba(28, 32, 32, 0.08);
  border-radius: 8px;
  padding: 0.75rem 0.8rem;
}
.pillar h4 {
  margin: 0 0 0.25rem;
  font-size: 0.78rem;
  color: var(--charcoal);
}
.pillar p {
  margin: 0;
  font-size: 0.75rem;
  color: var(--mid-grey);
}

.showcase-wrap {
  margin: 1.25rem 0 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}
.showcase-wrap img { width: 100%; }
.showcase-wrap figcaption {
  padding: 0.7rem 1rem;
  font-size: 0.8rem;
  color: var(--mid-grey);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  background: var(--white);
}

.virt-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--yellow);
  padding: 0.2rem 0.45rem;
  border-radius: 3px;
}

/* Before / after slider */
.ba-slider {
  position: relative;
  margin-top: 0.75rem;
  border-radius: var(--radius);
  overflow: hidden;
  user-select: none;
  aspect-ratio: 16 / 10;
  background: var(--charcoal);
  box-shadow: var(--shadow);
  touch-action: none;
  cursor: ew-resize;
}
.ba-slider__after,
.ba-slider__before {
  position: absolute;
  inset: 0;
  width: 100% !important; /* never shrink the layer - wipe via clip only */
  overflow: hidden;
}
.ba-slider__after img,
.ba-slider__before img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}
.ba-slider__before {
  z-index: 1;
  /* Reveal wipe: clip from the right. --ba-pct = visible top layer (After) width; bottom = Before */
  clip-path: inset(0 calc(100% - var(--ba-pct, 50%)) 0 0);
  -webkit-clip-path: inset(0 calc(100% - var(--ba-pct, 50%)) 0 0);
}
.ba-slider__before::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--ba-pct, 50%);
  width: 2px;
  margin-left: -1px;
  background: var(--yellow);
  z-index: 2;
  pointer-events: none;
}
.ba-slider__tag {
  position: absolute;
  top: 0.7rem;
  z-index: 10;
  opacity: 1;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.3rem 0.55rem;
  border-radius: 4px;
  background: rgba(28, 32, 32, 0.82);
  color: var(--white);
  border: none;
  font-family: inherit;
  line-height: 1.2;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  pointer-events: auto;
  max-width: calc(50% - 1.25rem);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ba-slider__tag:hover,
.ba-slider__tag:focus-visible {
  background: rgba(28, 32, 32, 0.95);
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}
.ba-slider__tag--before { left: 0.55rem; }
.ba-slider__tag--after { right: 0.55rem; }
.ba-slider__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 4;
  width: 36px;
  margin-left: -18px;
  border: none;
  background: transparent;
  cursor: ew-resize;
  padding: 0;
  display: grid;
  place-items: center;
}
.ba-slider__handle span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--charcoal);
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(28, 32, 32, 0.25);
  animation: jp-slider-pulse 1.9s ease-out infinite;
}
.ba-slider.is-dragging .ba-slider__handle span,
.ba-slider__handle:hover span,
.ba-slider__handle:focus-visible span {
  animation-play-state: paused;
}
.ba-slider__before::after {
  box-shadow: 0 0 0 0 rgba(244, 184, 0, 0.45);
  animation: jp-line-pulse 1.9s ease-out infinite;
}
@keyframes jp-line-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(244, 184, 0, 0.5); opacity: 1; }
  50% { box-shadow: 0 0 0 6px rgba(244, 184, 0, 0); opacity: 0.85; }
}
.ba-slider.is-dragging .ba-slider__before::after {
  animation-play-state: paused;
}
.ba-slider.is-dragging { cursor: grabbing; }
.ba-slider__hint {
  margin: 0.55rem 0 0;
  font-size: 0.78rem;
  color: var(--mid-grey);
}

/* -- Pricing -- */
.reveal-grid {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.85rem;
}
@media (min-width: 700px) {
  .reveal-grid { grid-template-columns: repeat(3, 1fr); }
}
.reveal-card {
  background: var(--warm-white);
  border-radius: 10px;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(28, 32, 32, 0.06);
}
.reveal-card h3 {
  margin: 0 0 0.4rem;
  font-size: 0.92rem;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.reveal-card .mark {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  flex: 0 0 auto;
}
.reveal-card p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--mid-grey);
}
.pricing-note {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: var(--mid-grey);
  padding: 0.85rem 1rem;
  background: var(--warm-white);
  border-radius: 8px;
}

/* -- Launch checklist -- */
.checklist {
  list-style: none;
  margin: 0.85rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.checklist li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  background: var(--warm-white);
  border-radius: 8px;
  padding: 0.7rem 0.85rem;
  font-size: 0.92rem;
  color: var(--dark-text);
}
.checklist .check {
  flex: 0 0 auto;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--charcoal);
  font-size: 0.7rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  margin-top: 0.05rem;
}

/* -- CTA / contact -- */
.cta-panel {
  display: grid;
  gap: 1rem;
}
@media (min-width: 700px) {
  .cta-panel {
    grid-template-columns: 1fr 1.05fr;
    align-items: stretch;
  }
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}
.cta-web {
  margin: 0;
  font-size: 0.88rem;
  color: var(--mid-grey);
}
.cta-web a {
  color: var(--charcoal);
  font-weight: 700;
  border-bottom: 2px solid var(--yellow);
  text-decoration: none;
}

.contact-card {
  background: var(--charcoal);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
}
.contact-card h3 {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  color: var(--yellow);
}
.contact-card dl {
  margin: 0;
  display: grid;
  gap: 0.65rem;
}
.contact-card dt {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 0.15rem;
}
.contact-card dd {
  margin: 0;
  font-size: 0.9rem;
  color: var(--white);
}
.contact-card a {
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(244, 184, 0, 0.55);
}
.contact-card a:hover,
.contact-card a:focus-visible {
  color: var(--yellow);
}

/* Ghost button on light panels (Continue close on offer) */
.stop__panel .btn--ghost {
  color: var(--charcoal);
  border-color: rgba(28, 32, 32, 0.25);
}
.stop__panel .btn--ghost:hover,
.stop__panel .btn--ghost:focus-visible {
  border-color: var(--charcoal);
  color: var(--charcoal);
}

/* -- Footer -- */
.site-footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.75);
  padding: 2.25rem 1.25rem;
  border-top: 2px solid var(--yellow);
}
.site-footer__inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  gap: 0.55rem;
  justify-items: start;
}
.site-footer img {
  height: 28px;
  width: auto;
  margin-bottom: 0.35rem;
}
.site-footer p {
  margin: 0;
  font-size: 0.82rem;
}
.draft-mark {
  color: var(--yellow) !important;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 0.78rem !important;
  text-transform: uppercase;
}

/* -- Mobile path cue (legacy fallback; winding rail handles accent) -- */
@media (max-width: 899px) {
  .path-stage__stops::before {
    display: none;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

}


/* -- Callout pop (photography prep note) -- */
.callout-pop {
  margin: 1.35rem 0 0;
  padding: 1.1rem 1.2rem 1.15rem;
  background: rgba(244, 184, 0, 0.16);
  border: 1px solid rgba(244, 184, 0, 0.55);
  border-left: 4px solid var(--yellow);
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(28, 32, 32, 0.08);
  position: relative;
}
.callout-pop__badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--charcoal);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.55rem;
  border-radius: 4px;
  margin-bottom: 0.45rem;
}
.callout-pop__title {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  color: var(--charcoal);
}
.callout-pop p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--dark-text);
}

/* -- Floor plans + 3D iframe -- */
.floorplan-3d {
  margin-top: 0.9rem;
}
.floorplan-3d__frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--charcoal);
  aspect-ratio: 16 / 10;
  box-shadow: var(--shadow);
  border: 1px solid rgba(28, 32, 32, 0.12);
}
.floorplan-3d__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #111;
}
.floorplan-3d__fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 0.85rem;
  text-align: center;
  padding: 1.5rem;
  color: rgba(255,255,255,0.88);
  background:
    radial-gradient(circle at 50% 28%, rgba(244, 184, 0, 0.14), transparent 55%),
    var(--charcoal);
}
.floorplan-3d__fallback p {
  margin: 0;
  font-size: 0.95rem;
}
.floorplan-3d__fallback.is-hidden { display: none; }
.floorplan-3d__actions {
  margin: 0.85rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.floorplan-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin-top: 0.75rem;
}
@media (min-width: 640px) {
  .floorplan-gallery { grid-template-columns: 1fr 1fr; }
}
.floorplan-gallery__item {
  margin: 0;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(28, 32, 32, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.floorplan-gallery__item img {
  width: 100%;
  height: auto;
  background: #f7f7f5;
}
.floorplan-gallery__item figcaption {
  padding: 0.55rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}

/* -- Media slot / video placeholders -- */
.media-slot {
  margin: 1.1rem 0 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(28, 32, 32, 0.08);
  box-shadow: var(--shadow);
}
.media-slot img { width: 100%; }
.media-slot figcaption {
  padding: 0.65rem 0.9rem;
  font-size: 0.78rem;
  color: var(--mid-grey);
  background: rgba(255,255,255,0.92);
}
.video-placeholder {
  margin-top: 0.9rem;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--charcoal);
  box-shadow: var(--shadow);
  border: 1px solid rgba(28, 32, 32, 0.1);
}

.video-placeholder--vr {
  background: #F8F9FB;
}
.video-placeholder .vr-embed,
.vr-embed {
  display: block;
  width: 100%;
  border: 0;
  aspect-ratio: 4 / 5;
  min-height: 420px;
  max-height: 640px;
  background: #F8F9FB;
}
@media (min-width: 720px) {
  .video-placeholder .vr-embed,
  .vr-embed {
    aspect-ratio: 3 / 4;
    min-height: 480px;
  }
}

.video-placeholder video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #111;
  object-fit: cover;
}
.video-placeholder__note {
  padding: 0.7rem 0.95rem;
  font-size: 0.78rem;
  color: var(--dark-text);
  background: rgba(255, 255, 255, 0.94);
  border-top: 2px solid var(--yellow);
}
.video-placeholder__note code {
  font-size: 0.72rem;
  background: var(--soft-grey);
  padding: 0.1rem 0.3rem;
  border-radius: 3px;
}


/* -- Path live marker: For Sale board sits on the flow line (not inside a stop) -- */
.path-live-marker {
  position: relative;
  height: 0;
  z-index: 3;
  pointer-events: none;
  margin: 0;
}
.path-live-marker img {
  position: absolute;
  left: 50%;
  top: 0;
  width: 78px;
  height: auto;
  transform: translate(-50%, -42%) rotate(-2deg);
  opacity: 0.96;
  filter: drop-shadow(0 12px 20px rgba(28, 32, 32, 0.18));
}
@media (min-width: 900px) {
  .path-live-marker img {
    width: min(118px, 12vw);
    transform: translate(18%, -48%) rotate(-2deg);
  }
}
@media (max-width: 899px) {
  .path-live-marker img {
    left: 1.1rem;
    width: 64px;
    transform: translate(0, -40%) rotate(3deg);
  }
}

/* -- For Sale board stop (legacy panel - unused) -- */
.forsale-board {
  display: grid;
  gap: 1rem;
  margin: 1.1rem 0 0.5rem;
  align-items: start;
}
@media (min-width: 700px) {
  .forsale-board {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }
}
.forsale-board__illus,
.forsale-board__photo {
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(28, 32, 32, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.forsale-board__illus {
  display: grid;
  place-items: center;
  padding: 1rem;
  background:
    radial-gradient(circle at 50% 30%, rgba(244, 184, 0, 0.18), transparent 60%),
    rgba(255,255,255,0.9);
}
.forsale-board__illus img {
  width: min(100%, 220px);
  height: auto;
}
.forsale-board__photo img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
}
.forsale-board__caption {
  margin: 0;
  padding: 0.6rem 0.85rem;
  font-size: 0.78rem;
  color: var(--mid-grey);
}


/* -- Already-live compare columns -- */
.compare-split {
  display: grid;
  gap: 0.85rem;
  margin: 1rem 0 1.15rem;
}
@media (min-width: 640px) {
  .compare-split {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}
.compare-split__col {
  border-radius: var(--radius);
  padding: 1rem 1.05rem 1.1rem;
  border: 1px solid rgba(28, 32, 32, 0.1);
  background: rgba(255, 255, 255, 0.88);
}
.compare-split__col--weak {
  border-top: 3px solid rgba(28, 32, 32, 0.35);
}
.compare-split__col--strong {
  border-top: 3px solid var(--yellow);
  background: rgba(255, 255, 255, 0.95);
}
.compare-split__col h4 {
  margin: 0 0 0.65rem;
  font-size: 0.92rem;
  color: var(--charcoal);
}
.compare-split__list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--dark-text);
  font-size: 0.88rem;
  line-height: 1.45;
}
.compare-split__list li { margin: 0.28rem 0; }
.compare-split__col--weak .compare-split__list { color: var(--mid-grey); }

/* -- Cost reveal (£0) -- */
.cost-reveal {
  margin: 1.15rem 0 1.35rem;
  padding: 1.15rem 1.2rem 1.25rem;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(28, 32, 32, 0.1);
  background: rgba(255, 255, 255, 0.92);
  text-align: center;
}
.cost-reveal__ask { min-width: 12rem; }
.cost-reveal__answer { margin-top: 1rem; }
.cost-reveal__zero {
  margin: 0.25rem 0 0.5rem;
  font-size: clamp(3rem, 10vw, 4.5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--charcoal);
  letter-spacing: -0.03em;
}
.cost-reveal__zero::after {
  content: "";
  display: block;
  width: 3.5rem;
  height: 4px;
  margin: 0.65rem auto 0.85rem;
  background: var(--yellow);
  border-radius: 2px;
}
.cost-reveal__line {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
  color: var(--charcoal);
}
.cost-reveal.is-revealed .cost-reveal__ask { display: none; }


.floorplan-3d__hint {
  margin: 0.35rem 0 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
}
.tour-frame.floorplan-3d__frame,
.tour-frame {
  position: relative;
  min-height: 420px;
  aspect-ratio: 16 / 10;
}
.tour-frame iframe,
#tour-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: var(--charcoal);
}

/* -- Mobile journey UX: spacing, hide Continue, larger visuals, path breath + no horizontal clip -- */
@media (max-width: 899px) {
  .path-stage {
    padding: 3rem 0 4.75rem;
    overflow-x: hidden;
    max-width: 100%;
  }

  .path-stage__stops {
    gap: 2.35rem;
    width: 100%;
    max-width: 100%;
    padding-left: 0.65rem;
    padding-right: 0.65rem;
    box-sizing: border-box;
  }

  .path-stage__rail--mobile {
    width: 34px;
    left: 0.1rem;
  }

  .stop {
    margin-bottom: 0.35rem;
    padding-left: 2.35rem; /* rail room without starving card width */
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .stop__node {
    left: 0.1rem;
    width: 32px;
    height: 32px;
  }

  .stop__card,
  .stop__panel,
  .stop__summary {
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .stop__card {
    margin-top: 0.15rem;
    width: 100%;
    overflow-x: hidden;
  }

  .stop__summary {
    padding: 1.1rem 0.95rem 1rem;
  }

  .stop__panel {
    padding: 0 0.9rem 1.25rem;
    overflow-x: hidden;
  }

  /* Keep Continue in DOM for desktop; hide on small screens - idle down-arrow remains */
  .stop__continue {
    display: none !important;
  }

  .ba-slider,
  .photo-compare,
  .photo-compare__frame,
  .tour-frame,
  .tour-frame.floorplan-3d__frame,
  .floorplan-3d,
  .floorplan-3d__frame,
  .video-placeholder,
  .video-placeholder video,
  .btn,
  .cost-reveal,
  .compare-split,
  .floorplan-gallery,
  img,
  iframe {
    max-width: 100%;
    box-sizing: border-box;
  }

  .ba-slider {
    width: 100%;
    min-height: 200px;
    aspect-ratio: 16 / 11;
    overflow: hidden;
  }

  .ba-slider__tag {
    font-size: 0.58rem;
    padding: 0.22rem 0.4rem;
    top: 0.45rem;
    max-width: calc(42% - 0.5rem);
  }
  .ba-slider__tag--before { left: 0.4rem; }
  .ba-slider__tag--after { right: 0.4rem; }

  .ba-slider__hint {
    font-size: 0.72rem;
    padding-right: 0.15rem;
  }

  .photo-compare__frame {
    min-height: 200px;
    aspect-ratio: 16 / 10;
    width: 100%;
    overflow: hidden;
  }

  .tour-frame,
  .tour-frame.floorplan-3d__frame,
  .floorplan-3d__frame {
    width: 100%;
    min-height: 260px;
    overflow: hidden;
  }

  .tour-frame iframe,
  .floorplan-3d__frame iframe,
  #tour-iframe {
    max-width: 100%;
    width: 100%;
  }

  .btn {
    white-space: normal;
    text-align: center;
  }

  .cover {
    min-height: min(72vh, 620px);
    min-height: min(72dvh, 620px);
    padding-bottom: 2.1rem;
  }

  .cover__media {
    width: min(100%, 460px);
    min-height: 200px;
  }

  .cover__line {
    font-size: clamp(1.45rem, 5.2vw, 1.95rem);
  }

  .video-placeholder video {
    min-height: 200px;
    width: 100%;
  }

  .problem,
  .proof {
    margin-top: 1.25rem;
  }

  .proof-subhead {
    margin-top: 1.65rem;
  }
}

@media (max-width: 600px) {
  .path-stage__stops {
    gap: 2.75rem;
    padding-left: 0.45rem;
    padding-right: 0.45rem;
  }

  .path-stage__rail--mobile {
    width: 32px;
    left: 0.05rem;
  }

  .path-svg--mobile .path-svg__track {
    stroke: rgba(28, 32, 32, 0.44);
    stroke-width: 4.75;
  }

  .path-svg--mobile .path-svg__progress--static {
    stroke-width: 5;
  }

  .stop {
    padding-left: 2.15rem;
  }

  .stop__node {
    width: 30px;
    height: 30px;
    left: 0.05rem;
  }

  .stop__node-num {
    font-size: 0.72rem;
  }

  .stop__panel {
    padding: 0 0.75rem 1.15rem;
  }

  .stop__summary {
    padding: 1rem 0.8rem 0.9rem;
  }

  .ba-slider {
    min-height: 210px;
  }

  .ba-slider__tag {
    font-size: 0.55rem;
    padding: 0.18rem 0.35rem;
  }

  .photo-compare__frame {
    min-height: 200px;
  }

  .tour-frame,
  .tour-frame.floorplan-3d__frame,
  .floorplan-3d__frame {
    min-height: 240px;
  }

  .cover__media {
    min-height: 220px;
  }
}
