/* ==========================================================================
   itinerary-detail.css — Xplore New Zealand
   Detail page for one real tour product. Own scoped namespace (.id-*),
   design tokens mirror itineraries.css's palette for visual continuity
   with the page that links here. Header (.header-3/.navbar) and footer
   (.footer-area) are NOT styled here — they reuse the shared theme
   stylesheets loaded before this file, same pattern as itineraries.html.
   ========================================================================== */

:root {
  --id-font-display: 'Fraunces', Georgia, serif;
  --id-font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --id-orange: #E67E22;
  --id-orange-hover: #D96C12;
  --id-orange-light: #F6A64B;
  --id-orange-subtle: rgba(230, 126, 34, 0.10);

  --id-navy: #16212B;
  --id-navy-dark: #0B1319;

  --id-ink: #1B2430;
  --id-body: #5B6472;
  --id-muted: #97A0AC;
  --id-bg: #FFFFFF;
  --id-bg-alt: #F4F7F8;
  --id-surface: #FFFFFF;
  --id-border: rgba(20, 30, 40, 0.08);

  --id-shadow-sm: 0 2px 12px rgba(20, 30, 40, 0.05);
  --id-shadow-md: 0 14px 34px rgba(20, 30, 40, 0.08);
  --id-shadow-lg: 0 28px 64px rgba(20, 30, 40, 0.14);

  --id-radius-sm: 8px;
  --id-radius-md: 16px;
  --id-radius-lg: 26px;
  --id-radius-pill: 999px;

  --id-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --id-container: min(92vw, 1320px);
}

#idMain, #idMain * { box-sizing: border-box; }
html { scroll-behavior: smooth; }
#idMain { font-family: var(--id-font-body); color: var(--id-ink); background: var(--id-bg); -webkit-font-smoothing: antialiased; }
body { overflow-x: hidden; }
#idMain img { max-width: 100%; display: block; }
#idMain a { color: inherit; text-decoration: none; }
#idMain h1, #idMain h2, #idMain h3, #idMain h4, #idMain h5, #idMain p { margin: 0; }
#idMain ul { margin: 0; padding: 0; list-style: none; }
#idMain button { font: inherit; background: #f98225; border: none; cursor: pointer; color: inherit; }
#idMain svg { width: 1em; height: 1em; }

.id-eyebrow {
  display: inline-block;
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--id-orange);
  margin-bottom: 1rem;
}
.id-section-head { max-width: 720px; margin: 0 auto clamp(2.8rem, 5vw, 4rem); text-align: center; }
.id-section-head h2 {
  font-family: var(--id-font-display); font-weight: 400;
  font-size: clamp(2rem, 3.4vw, 3rem); line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--id-ink);
}
.id-section-head h2::after {
  content: ''; display: block; width: 44px; height: 3px; border-radius: 3px;
  margin: 1.2rem auto 0; background: var(--id-orange);
}
.id-section-lede { margin-top: 1.3rem; font-size: 1.02rem; color: var(--id-body); line-height: 1.7; }
.id-section-head--light h2 { color: #fff; }
.id-section-head--light h2::after { background: var(--id-orange-light); }
.id-section-head--light .id-section-lede { color: rgba(255, 255, 255, 0.72); }

.id-btn {
  display: inline-flex; align-items: center; gap: 0.7rem;
  padding: 1.05rem 2.1rem;
  border-radius: var(--id-radius-pill);
  font-weight: 600; font-size: 0.95rem;
  transition: background 0.35s var(--id-ease), transform 0.35s var(--id-ease), box-shadow 0.35s var(--id-ease);
}
.id-btn--primary { background: var(--id-orange); color: #fff; box-shadow: 0 14px 34px rgba(230, 126, 34, 0.32); }
.id-btn--primary:hover { background: var(--id-orange-hover); transform: translateY(-2px); }
.id-btn svg { width: 16px; height: 16px; }

/* ---------------------------------------------------------------------
   HERO
--------------------------------------------------------------------- */
.id-hero { position: relative; min-height: 78vh; display: flex; align-items: flex-end; overflow: hidden; background: var(--id-navy-dark); }
.id-hero__media { position: absolute; inset: -3%; }
.id-hero__media img { width: 100%; height: 100%; object-fit: cover; filter: brightness(1.02) saturate(1.06); }
.id-hero__scrim { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(11,19,25,0.92) 0%, rgba(11,19,25,0.35) 55%, rgba(11,19,25,0.28) 100%); }
.id-hero__content { position: relative; z-index: 2; width: var(--id-container); margin: 0 auto; padding-bottom: clamp(3rem, 7vw, 5rem); padding-top: 7rem; color: #fff; max-width: 760px; }
.id-hero__back {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.84rem; font-weight: 500; color: rgba(255,255,255,0.8);
  margin-bottom: 1.6rem;
  transition: color 0.3s var(--id-ease);
}
.id-hero__back svg { width: 14px; height: 14px; }
.id-hero__back:hover { color: #fff; }
.id-hero__title { font-family: var(--id-font-display); font-weight: 400; font-size: clamp(2.6rem, 5.4vw, 4.6rem); line-height: 1.05; color: #fff; margin-bottom: 1.2rem; }
.id-hero__summary { font-size: 1.1rem; line-height: 1.7; color: rgba(255,255,255,0.85); max-width: 560px; margin-bottom: 2rem; }

/* ---------------------------------------------------------------------
   OVERVIEW
--------------------------------------------------------------------- */
.id-overview { padding: clamp(5rem, 10vw, 8rem) 0; background: var(--id-surface); }
.id-overview__inner { width: var(--id-container); max-width: 1180px; margin: 0 auto; }
.id-overview__head { max-width: 780px; margin: 0 auto; text-align: center; }
.id-overview__head h2 { font-family: var(--id-font-display); font-weight: 400; font-size: clamp(2rem, 3.4vw, 2.9rem); line-height: 1.12; letter-spacing: -0.01em; color: var(--id-ink); margin-top: 0.7rem; }
.id-overview__lede { font-size: clamp(1.08rem, 1.7vw, 1.28rem); line-height: 1.75; color: var(--id-body); margin-top: 1.3rem; }

/* Quick Facts — a 4-stat metric band + a detail band (no orphan rows) */
.id-facts { display: flex; flex-direction: column; gap: 1.15rem; margin: clamp(2.8rem, 5vw, 4rem) 0 0; }
.id-facts__band { display: grid; gap: 1.15rem; grid-template-columns: repeat(4, 1fr); }
.id-facts__band--detail { grid-template-columns: repeat(3, 1fr); }
.id-fact {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; gap: 0.45rem; padding: 1.7rem 1.6rem;
  background: linear-gradient(180deg, #fff 0%, var(--id-bg-alt) 220%);
  border: 1px solid var(--id-border);
  border-radius: var(--id-radius-lg); box-shadow: var(--id-shadow-sm);
  transition: box-shadow 0.4s var(--id-ease), transform 0.4s var(--id-ease), border-color 0.4s var(--id-ease);
}
.id-fact::before {
  content: ''; position: absolute; left: 0; top: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--id-orange), var(--id-orange-light));
  transform: scaleX(0); transform-origin: left; transition: transform 0.45s var(--id-ease);
}
.id-fact:hover { box-shadow: var(--id-shadow-md); transform: translateY(-5px); border-color: rgba(230, 126, 34, 0.3); }
.id-fact:hover::before { transform: scaleX(1); }
.id-fact__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--id-orange-subtle); color: var(--id-orange); margin-bottom: 0.55rem;
}
.id-fact__icon svg { width: 23px; height: 23px; }
.id-fact__value { font-family: var(--id-font-display); font-weight: 400; font-size: 1.4rem; line-height: 1.18; color: var(--id-ink); overflow-wrap: anywhere; }
.id-fact--metric .id-fact__value { font-size: clamp(2.1rem, 3.6vw, 2.6rem); color: var(--id-navy); }
.id-fact__label { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; color: var(--id-muted); }
.id-fact__sub { margin-top: 0.2rem; font-size: 0.86rem; line-height: 1.45; color: var(--id-body); }

/* Headline highlights */
.id-overview__highlights { margin-top: clamp(3rem, 6vw, 4.5rem); padding-top: clamp(2.6rem, 5vw, 3.6rem); border-top: 1px solid var(--id-border); text-align: center; }
.id-overview__highlights[hidden] { display: none; }
.id-overview__highlights .id-eyebrow { margin-bottom: 0.7rem; }
.id-overview__hl-title { font-family: var(--id-font-display); font-weight: 400; font-size: clamp(1.6rem, 2.8vw, 2.2rem); color: var(--id-ink); margin: 0 0 2rem; }
.id-highlights { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1rem; text-align: left; max-width: 1000px; margin: 0 auto; }
.id-highlights li {
  display: flex; align-items: center; gap: 0.9rem; font-size: 0.98rem; color: var(--id-ink);
  padding: 1rem 1.3rem; background: var(--id-bg-alt); border-radius: var(--id-radius-md);
  border: 1px solid transparent; transition: border-color 0.35s var(--id-ease), background 0.35s var(--id-ease);
}
.id-highlights li:hover { background: #fff; border-color: rgba(230, 126, 34, 0.22); box-shadow: var(--id-shadow-sm); }
.id-highlights svg { width: 26px; height: 26px; flex-shrink: 0; color: var(--id-orange); background: var(--id-orange-subtle); border-radius: 50%; padding: 5px; }

/* ---------------------------------------------------------------------
   DESTINATIONS COVERED — route strip
--------------------------------------------------------------------- */
.id-route { padding: clamp(4.5rem, 9vw, 7rem) 0; background: var(--id-bg-alt); }
.id-route__inner { width: var(--id-container); margin: 0 auto; }
.id-route__strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.7rem 0.5rem; }
.id-route__stop {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.65rem 1.3rem 0.65rem 0.7rem;
  border-radius: var(--id-radius-pill);
  background: var(--id-surface);
  border: 1px solid var(--id-border);
  box-shadow: var(--id-shadow-sm);
  transition: transform 0.35s var(--id-ease), box-shadow 0.35s var(--id-ease);
}
.id-route__stop:hover { transform: translateY(-3px); box-shadow: var(--id-shadow-md); }
.id-route__stop-index {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  font-family: var(--id-font-display); font-size: 0.82rem; color: #fff;
  background: var(--id-orange);
}
.id-route__stop-name { font-size: 0.95rem; font-weight: 500; color: var(--id-ink); white-space: nowrap; }
.id-route__connector { display: inline-flex; width: 20px; height: 20px; color: var(--id-orange); opacity: 0.55; flex-shrink: 0; }

/* ---------------------------------------------------------------------
   TRAVEL STYLE
--------------------------------------------------------------------- */
.id-style { padding: clamp(5rem, 10vw, 8rem) 0; background: linear-gradient(155deg, var(--id-navy) 0%, var(--id-navy-dark) 100%); }
.id-style__inner { width: var(--id-container); max-width: 1040px; margin: 0 auto; }
.id-style__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
.id-style-card {
  padding: 2.4rem 2.2rem; border-radius: var(--id-radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.075) 0%, rgba(255,255,255,0.03) 100%);
  border: 1px solid rgba(255,255,255,0.12);
  transition: transform 0.4s var(--id-ease), border-color 0.4s var(--id-ease), background 0.4s var(--id-ease);
}
.id-style-card:hover { transform: translateY(-5px); border-color: rgba(246,166,75,0.4); background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.04) 100%); }
.id-style-card__icon {
  display: flex; align-items: center; justify-content: center;
  width: 54px; height: 54px; margin-bottom: 1.5rem;
  border-radius: 16px;
  background: rgba(246,166,75,0.14); color: var(--id-orange-light);
}
.id-style-card__icon svg { width: 25px; height: 25px; }
.id-style-card h3 { font-family: var(--id-font-display); font-weight: 400; font-size: 1.55rem; color: #fff; margin-bottom: 1.3rem; }
.id-style-card p { font-size: 0.94rem; line-height: 1.7; color: rgba(255,255,255,0.72); }

/* ---------------------------------------------------------------------
   WHAT'S INCLUDED
--------------------------------------------------------------------- */
.id-inclusions { padding: clamp(5rem, 10vw, 8rem) 0; background: var(--id-surface); }
.id-inclusions__inner { width: var(--id-container); max-width: 920px; margin: 0 auto; }
.id-inclusions__list {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.6rem 1rem;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  background: var(--id-bg-alt); border: 1px solid var(--id-border); border-radius: var(--id-radius-lg);
}
.id-inclusions__list li { display: flex; align-items: center; gap: 0.85rem; font-size: 0.98rem; color: var(--id-ink); padding: 0.75rem 0.6rem; border-radius: var(--id-radius-md); transition: background 0.3s var(--id-ease); }
.id-inclusions__list li:hover { background: #fff; }
.id-inclusions__list svg { width: 24px; height: 24px; flex-shrink: 0; color: var(--id-orange); background: var(--id-orange-subtle); border-radius: 50%; padding: 5px; }

/* ---------------------------------------------------------------------
   PRICING
--------------------------------------------------------------------- */
.id-pricing { padding: clamp(5rem, 10vw, 8rem) 0; background: linear-gradient(155deg, var(--id-navy) 0%, var(--id-navy-dark) 100%); }
.id-pricing__inner { width: var(--id-container); margin: 0 auto; }
.id-pricing__grid { max-width: 860px; margin: 0 auto; }

/* Unlock / download gate */
.id-pricing__gate { margin-top: 2.4rem; text-align: center; }
.id-pricing__gate .id-btn { border: none; }
.id-unlock-lock, .id-unlock-dl { width: 16px; height: 16px; }

/* Unlock CTA — force the site's brand orange (same variable as .theme-btn,
   the site's primary CTA) so it stays vivid against the dark pricing panel.
   Scoped to this button only; .id-btn--primary (hero, modal) is unchanged.
   Size, radius, padding, typography and icon all come from .id-btn — only
   colour / shadow / hover / disabled change here. */
#idUnlockBtn {
  background: var(--theme-color); color: #f98225;
  box-shadow: 0 10px 28px rgba(249, 130, 37, 0.42), inset 0 0 0 1px rgba(214, 108, 18, 0.6);
  transition: transform 0.3s var(--id-ease), box-shadow 0.3s var(--id-ease), filter 0.3s var(--id-ease);
}
#idUnlockBtn:hover {
  background: var(--theme-color);                              /* keep base; darken via filter */
  filter: brightness(0.93);                                    /* slightly darker orange */
  transform: translateY(-2px);                                 /* small lift */
  box-shadow: 0 14px 34px rgba(249, 130, 37, 0.52), inset 0 0 0 1px rgba(214, 108, 18, 0.6); /* soft orange glow */
}
#idUnlockBtn:disabled {
  opacity: 0.55;                                               /* light orange, reduced opacity */
  cursor: not-allowed; transform: none; filter: none;
}

/* ---------------------------------------------------------------------
   ENQUIRY MODAL — gates the PDF download behind a submitted enquiry
--------------------------------------------------------------------- */
.id-modal {
  position: fixed; inset: 0; z-index: 999;
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s var(--id-ease), visibility 0.3s var(--id-ease);
}
.id-modal.is-open { opacity: 1; visibility: visible; }
.id-modal__backdrop { position: absolute; inset: 0; background: rgba(11, 19, 25, 0.72); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.id-modal__panel {
  position: relative; z-index: 1;
  width: 100%; max-width: 620px;
  max-height: 90vh; overflow-y: auto;
  padding: clamp(2rem, 4vw, 2.8rem);
  border-radius: var(--id-radius-lg);
  background: var(--id-surface);
  box-shadow: var(--id-shadow-lg);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.35s var(--id-ease);
}
.id-modal.is-open .id-modal__panel { transform: translateY(0) scale(1); }
.id-modal__close {
  position: absolute; top: 1.3rem; right: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--id-bg-alt); color: var(--id-muted);
  transition: background 0.25s var(--id-ease), color 0.25s var(--id-ease);
}
.id-modal__close:hover { background: var(--id-orange-subtle); color: var(--id-orange); }
.id-modal__close svg { width: 16px; height: 16px; }

.id-modal__lede { font-size: 0.98rem; line-height: 1.6; color: var(--id-body); margin-bottom: 1.6rem; }
#idEnquiryModalTitle { font-family: var(--id-font-display); font-weight: 400; font-size: 1.7rem; color: var(--id-ink); margin-bottom: 0.6rem; }

.id-modal__banner {
  display: none;
  font-size: 0.86rem;
  padding: 0.8rem 1rem;
  border-radius: var(--id-radius-sm);
  background: rgba(200, 60, 40, 0.08);
  color: #b3341f;
  margin-bottom: 1.2rem;
}
.id-modal__banner.is-visible { display: block; }

.id-modal__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem 1.1rem; margin-bottom: 1.6rem; }
.id-modal__field--full { grid-column: 1 / -1; }
.id-modal__field { position: relative; }
.id-modal__field label {
  display: block;
  font-size: 0.7rem; letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--id-muted);
  margin-bottom: 0.4rem;
}
.id-modal__field input,
.id-modal__field select,
.id-modal__field textarea {
  width: 100%;
  font-family: var(--id-font-body);
  font-size: 0.9rem;
  color: var(--id-ink);
  background: var(--id-bg-alt);
  border: 1px solid var(--id-border);
  border-radius: var(--id-radius-sm);
  padding: 0.7rem 0.85rem;
  transition: border-color 0.25s var(--id-ease), box-shadow 0.25s var(--id-ease);
}
.id-modal__field textarea { resize: vertical; min-height: 68px; }
.id-modal__field input:focus,
.id-modal__field select:focus,
.id-modal__field textarea:focus {
  outline: none;
  border-color: var(--id-orange);
  box-shadow: 0 0 0 3px var(--id-orange-subtle);
}
.id-modal__field input.is-invalid,
.id-modal__field select.is-invalid { border-color: #c8402a; }
.id-modal__error { display: block; font-size: 0.74rem; color: #c8402a; margin-top: 0.35rem; }
.id-modal__submit { width: 100%; justify-content: center; border: none; }

/* ---------------------------------------------------------------------
   TOAST — transient message (e.g. "PDF coming soon" when an itinerary
   has no PDF attached yet). Not a page redesign; a small overlay only.
--------------------------------------------------------------------- */
.id-toast {
  position: fixed; left: 50%; bottom: 2rem; z-index: 1000;
  transform: translate(-50%, 1.2rem);
  max-width: min(90vw, 420px);
  padding: 0.9rem 1.3rem;
  border-radius: var(--id-radius-pill);
  background: var(--id-navy-dark); color: #fff;
  font-size: 0.9rem; font-weight: 500; text-align: center;
  box-shadow: var(--id-shadow-lg);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s var(--id-ease), transform 0.3s var(--id-ease);
}
.id-toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

/* ===================================================================
   RESPONSIVE
=================================================================== */
@media (max-width: 900px) {
  .id-facts__band { grid-template-columns: repeat(2, 1fr); gap: 0.95rem; }
  .id-facts__band--detail { grid-template-columns: repeat(3, 1fr); }
  .id-facts { gap: 0.95rem; }
}
@media (max-width: 768px) {
  .id-hero { min-height: 86vh; }
  .id-style__grid { grid-template-columns: 1fr; }
  .id-inclusions__list { grid-template-columns: 1fr; }
  .id-modal__grid { grid-template-columns: 1fr; }
  .id-fact { padding: 1.4rem 1.3rem; }
}
@media (max-width: 560px) {
  .id-facts__band--detail { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .id-btn { width: 100%; justify-content: center; }
  .id-route__stop-name { font-size: 0.82rem; }
  .id-modal__panel { padding: 1.6rem; }
  .id-fact__icon { width: 42px; height: 42px; }
  .id-fact--metric .id-fact__value { font-size: 1.95rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* ============================================================
   PHASE B — spreadsheet-driven detail UI
   (modes / day-by-day timeline / hotels / per-mode pricing)
   ============================================================ */

/* ----- Travel modes (on the navy .id-style section) ----- */
.id-mode-card { display: flex; flex-direction: column; }
.id-mode-meta {
  list-style: none; margin: 0.4rem 0 1.6rem; padding: 0;
  display: flex; flex-direction: column; gap: 0.7rem;
}
.id-mode-meta li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1.2rem;
  font-size: 0.9rem; padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
.id-mode-meta li:last-child { border-bottom: none; padding-bottom: 0; }
.id-mode-meta li > span { color: rgba(255, 255, 255, 0.52); flex-shrink: 0; }
.id-mode-meta li > b {
  color: #fff; font-weight: 500; text-align: right;
  overflow-wrap: anywhere;
}
.id-mode-card__price {
  margin-top: auto; padding-top: 1.5rem; border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex; align-items: baseline; flex-wrap: wrap; gap: 0.5rem;
  color: rgba(255, 255, 255, 0.55); font-size: 0.8rem;
}
.id-mode-card__from { text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.68rem; font-weight: 600; }
.id-mode-card__pp { color: rgba(255, 255, 255, 0.45); }
.id-mode-card__price b {
  font-family: var(--id-font-display); font-weight: 400;
  font-size: 2.1rem; line-height: 1; color: var(--id-orange-light);
}
.id-mode-card__lock { display: inline-flex; align-items: center; }
.id-mode-card__lock svg { width: 22px; height: 22px; color: rgba(255, 255, 255, 0.5); }

/* ----- Day-by-day timeline (journey spine) ----- */
.id-timeline { padding: clamp(5rem, 10vw, 8rem) 0; background: var(--id-surface); }
.id-timeline__inner { width: var(--id-container); max-width: 900px; margin: 0 auto; }
.id-timeline__toggle {
  display: flex; width: fit-content; margin: 0 auto clamp(2.6rem, 5vw, 3.8rem);
  gap: 0.3rem; padding: 0.35rem; border-radius: var(--id-radius-pill);
  background: var(--id-bg-alt); border: 1px solid var(--id-border);
}
.id-modebtn {
  padding: 0.65rem 1.6rem; border-radius: var(--id-radius-pill);
  font-size: 0.88rem; font-weight: 600; color: var(--id-body); cursor: pointer;
  background: transparent; border: none;
  transition: background 0.3s var(--id-ease), color 0.3s var(--id-ease), box-shadow 0.3s var(--id-ease);
}
.id-modebtn:hover { color: var(--id-ink); }
.id-modebtn.is-active { background: var(--id-orange); color: #fff; box-shadow: 0 8px 18px rgba(230, 126, 34, 0.3); }

.id-timeline__list { display: flex; flex-direction: column; gap: 1.4rem; }
.id-tl-day { position: relative; display: grid; grid-template-columns: 56px 1fr; gap: 1.6rem; }
.id-tl-day__rail { position: relative; display: flex; justify-content: center; }
.id-tl-day:not(:last-child) .id-tl-day__rail::before {
  content: ''; position: absolute; left: 50%; transform: translateX(-50%);
  top: 28px; bottom: calc(-1.4rem - 28px); width: 2px;
  background: linear-gradient(180deg, rgba(230, 126, 34, 0.35), rgba(230, 126, 34, 0.12));
}
.id-tl-day__node {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0;
  background: #fff; border: 2px solid rgba(230, 126, 34, 0.3);
  font-family: var(--id-font-display); font-size: 1.2rem; color: var(--id-orange);
  box-shadow: 0 6px 18px rgba(230, 126, 34, 0.14);
}
.id-tl-day__card {
  padding: 1.7rem 1.95rem; border-radius: var(--id-radius-lg);
  background: var(--id-surface); border: 1px solid var(--id-border);
  box-shadow: var(--id-shadow-sm);
  transition: box-shadow 0.4s var(--id-ease), transform 0.4s var(--id-ease), border-color 0.4s var(--id-ease);
}
.id-tl-day__card:hover { box-shadow: var(--id-shadow-md); transform: translateY(-3px); border-color: rgba(230, 126, 34, 0.22); }
.id-tl-day__head { display: flex; align-items: center; flex-wrap: wrap; gap: 0.5rem 1rem; margin-bottom: 0.9rem; }
.id-tl-day__kicker { font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; color: var(--id-muted); }
.id-tl-day__place { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.96rem; font-weight: 600; color: var(--id-orange); }
.id-tl-day__place svg { width: 15px; height: 15px; }
.id-tl-day__desc { font-size: 1.04rem; line-height: 1.72; color: var(--id-ink); }
.id-tl-day__incl { list-style: none; margin: 1.4rem 0 0; padding: 1.4rem 0 0; border-top: 1px dashed var(--id-border); display: flex; flex-direction: column; gap: 0.8rem; }
.id-tl-incl { display: flex; align-items: center; gap: 0.9rem; font-size: 0.95rem; color: var(--id-body); line-height: 1.5; }
.id-tl-chip {
  flex-shrink: 0; min-width: 118px; text-align: center;
  font-size: 0.63rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700;
  padding: 0.4rem 0.7rem; border-radius: var(--id-radius-pill);
  background: var(--id-bg-alt); color: var(--id-muted);
}
.id-tl-chip--activity { background: var(--id-orange-subtle); color: var(--id-orange); }
.id-tl-chip--stay { background: rgba(22, 33, 43, 0.07); color: var(--id-navy); }
.id-tl-chip--transport { background: rgba(22, 33, 43, 0.05); color: var(--id-body); }

/* ----- Hotels ----- */
.id-hotels { padding: clamp(5rem, 10vw, 8rem) 0; background: var(--id-bg-alt); }
.id-hotels__inner { width: var(--id-container); max-width: 1180px; margin: 0 auto; }
.id-hotels__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.id-hotel {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: flex-start; gap: 0.9rem;
  padding: 2rem 1.9rem;
  background: var(--id-surface); border: 1px solid var(--id-border);
  border-radius: var(--id-radius-lg); box-shadow: var(--id-shadow-sm);
  transition: box-shadow 0.4s var(--id-ease), transform 0.4s var(--id-ease), border-color 0.4s var(--id-ease);
}
.id-hotel:hover { box-shadow: var(--id-shadow-md); transform: translateY(-5px); border-color: rgba(230, 126, 34, 0.2); }
.id-hotel__index {
  position: absolute; top: 0.9rem; right: 1.5rem;
  font-family: var(--id-font-display); font-size: 3.1rem; line-height: 1;
  color: var(--id-orange); opacity: 0.12; pointer-events: none;
}
.id-hotel__place { display: inline-flex; align-items: center; gap: 0.45rem; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; color: var(--id-orange); }
.id-hotel__place svg { width: 15px; height: 15px; }
.id-hotel__name { font-family: var(--id-font-display); font-weight: 400; font-size: 1.34rem; line-height: 1.32; color: var(--id-ink); }
.id-hotel__nights { margin-top: auto; display: inline-flex; align-items: center; gap: 0.45rem; font-size: 0.82rem; font-weight: 500; color: var(--id-body); background: var(--id-bg-alt); padding: 0.45rem 0.95rem; border-radius: var(--id-radius-pill); }
.id-hotel__nights svg { width: 15px; height: 15px; color: var(--id-orange); }

/* ----- Per-mode pricing — premium rate panel (on navy .id-pricing) ----- */
.id-rates {
  border-radius: var(--id-radius-lg); overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--id-shadow-lg);
}
.id-rates__row {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr; align-items: center; gap: 1rem;
  padding: 1.15rem 1.7rem;
}
.id-rates__row + .id-rates__row { border-top: 1px solid rgba(255, 255, 255, 0.08); }
.id-rates__row--head { background: rgba(255, 255, 255, 0.07); padding-top: 1.3rem; padding-bottom: 1.3rem; }
.id-rates__row--lead { background: rgba(230, 126, 34, 0.12); }
.id-rates__key { color: rgba(255, 255, 255, 0.82); font-size: 0.95rem; font-weight: 500; }
.id-rates__val {
  font-family: var(--id-font-display); font-weight: 400; font-size: 1.32rem; color: #fff; text-align: center;
}
.id-rates__row--head .id-rates__key { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255, 255, 255, 0.5); font-weight: 600; }
.id-rates__row--head .id-rates__val { font-family: var(--id-font-body); font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; color: #fff; }
.id-rates__row--lead .id-rates__key { color: #fff; font-weight: 600; }
.id-rates__row--lead .id-rates__val { color: var(--id-orange-light); font-size: 1.55rem; }
.id-rates__lock { display: inline-flex; align-items: center; justify-content: center; color: rgba(255, 255, 255, 0.4); }
.id-rates__lock svg { width: 20px; height: 20px; }
.id-rates__na { font-family: var(--id-font-body); font-size: 1rem; color: rgba(255, 255, 255, 0.32); }

/* ----- Responsive ----- */
@media (max-width: 768px) {
  .id-tl-day { grid-template-columns: 48px 1fr; gap: 1.1rem; }
  .id-tl-day__node { width: 48px; height: 48px; font-size: 1.05rem; }
  .id-tl-day:not(:last-child) .id-tl-day__rail::before { top: 24px; }
  .id-tl-day__card { padding: 1.5rem 1.5rem; }
  .id-tl-chip { min-width: 104px; }
  .id-hotels__grid { grid-template-columns: 1fr; }
  .id-rates__row { grid-template-columns: 1.4fr 1fr 1fr; padding: 0.95rem 1.1rem; gap: 0.6rem; }
  .id-rates__val { font-size: 1.12rem; }
  .id-rates__row--lead .id-rates__val { font-size: 1.28rem; }
}
@media (max-width: 480px) {
  .id-tl-day { grid-template-columns: 40px 1fr; gap: 0.85rem; }
  .id-tl-day__node { width: 40px; height: 40px; font-size: 0.92rem; border-width: 2px; }
  .id-tl-day:not(:last-child) .id-tl-day__rail::before { top: 20px; }
  .id-tl-day__card { padding: 1.3rem 1.3rem; }
  .id-tl-incl { flex-direction: column; align-items: flex-start; gap: 0.4rem; }
  .id-rates__row { grid-template-columns: 1.3fr 1fr 1fr; padding: 0.8rem 0.75rem; gap: 0.4rem; }
  .id-rates__key { font-size: 0.82rem; }
  .id-rates__val { font-size: 1rem; }
  .id-rates__row--lead .id-rates__val { font-size: 1.12rem; }
  .id-rates__row--head .id-rates__val { font-size: 0.64rem; }
}

/* ============================================================
   DEPTH & MICRO-INTERACTIONS
   Subtle 3D tilt (JS-driven), layered elevation, restrained
   glass + slow float. Transform/opacity only → 60 FPS. All of
   it degrades to the flat layout on touch / reduced-motion.
   ============================================================ */

.id-tilt { backface-visibility: hidden; transform-origin: center; }
.id-tilt.is-tilting { will-change: transform; z-index: 2; }

/* Layered elevation on the light cards while tilting — depth comes from
   two stacked shadows (a soft ambient + a tighter contact shadow). */
.id-fact.is-tilting,
.id-hotel.is-tilting,
.id-tl-day__card.is-tilting {
  box-shadow: 0 30px 60px rgba(20, 30, 40, 0.16), 0 12px 24px rgba(20, 30, 40, 0.08);
  border-color: rgba(230, 126, 34, 0.3);
}

/* Restrained glassmorphism on the dark-panel cards (over the navy
   gradient) — a light frost + brighter edge reads as premium glass. */
.id-style-card { -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.id-rates {
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  transition: transform 0.5s var(--id-ease), box-shadow 0.5s var(--id-ease);
}
.id-style-card.is-tilting { border-color: rgba(246, 166, 75, 0.5); background: linear-gradient(180deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.05) 100%); }
.id-rates.is-tilting { box-shadow: 0 40px 80px rgba(6, 12, 17, 0.55); border-color: rgba(255, 255, 255, 0.22); }

/* Soft idle float — decorative accents only (fact icon chips, hotel ghost
   index). Tiny amplitude, long period, staggered; never on content text. */
@keyframes idFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
.id-fact__icon { animation: idFloat 5s ease-in-out infinite; }
.id-facts__band .id-fact:nth-child(2) .id-fact__icon { animation-delay: 0.5s; }
.id-facts__band .id-fact:nth-child(3) .id-fact__icon { animation-delay: 1s; }
.id-facts__band .id-fact:nth-child(4) .id-fact__icon { animation-delay: 1.5s; }
.id-hotel__index { animation: idFloat 6.5s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce) {
  .id-fact__icon, .id-hotel__index { animation: none; }
  .id-tilt.is-tilting { transform: none !important; }
}

/* ============================================================
   SINGLE-MODE VARIANTS
   The journey mode (Private / Self Drive) is chosen once on the
   itineraries page and passed via ?mode=, so the detail page shows
   just that one mode — a centered summary card and a single-column
   rate table (no chooser, no second column).
   ============================================================ */
.id-style__grid--single { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
.id-rates--single .id-rates__row { grid-template-columns: 1.7fr 1fr; }
.id-rates--single .id-rates__val { text-align: right; }

/* ============================================================
   JOURNEY MODE SELECTOR (direct-open only)
   Premium centered segmented control shown at the top when the
   itinerary is opened without a pre-chosen mode. Reuses the tokens
   and the pill/active language of the rest of the page.
   ============================================================ */
.id-modeselect { padding: clamp(2.4rem, 4vw, 3.4rem) 0; background: var(--id-surface); border-bottom: 1px solid var(--id-border); }
.id-modeselect[hidden] { display: none; }
.id-modeselect__inner {
  width: var(--id-container); max-width: 1180px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 1.1rem; text-align: center;
}
.id-modeselect__label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--id-muted); }
.id-modeselect__switch {
  display: inline-flex; gap: 0.35rem; padding: 0.4rem;
  border-radius: var(--id-radius-pill);
  background: var(--id-bg-alt); border: 1px solid var(--id-border);
}
.id-modeselect__opt {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.8rem 1.7rem; border-radius: var(--id-radius-pill);
  font-size: 0.92rem; font-weight: 600; color: var(--id-body); cursor: pointer;
  background: transparent; border: none; white-space: nowrap;
  transition: color 0.3s var(--id-ease), background 0.4s var(--id-ease), box-shadow 0.4s var(--id-ease), transform 0.4s var(--id-ease);
}
.id-modeselect__opt svg { width: 18px; height: 18px; }
.id-modeselect__opt:hover { color: var(--id-ink); }
.id-modeselect__opt.is-active { background: var(--id-orange); color: #fff; box-shadow: 0 10px 24px rgba(230, 126, 34, 0.32); }
.id-modeselect__opt.is-active:hover { color: #fff; }

@media (max-width: 480px) {
  .id-modeselect__switch { width: 100%; }
  .id-modeselect__opt { flex: 1; justify-content: center; padding: 0.8rem 0.9rem; }
}

/* ============================================================
   PREMIUM POLISH — luxury depth & cinematic micro-interactions
   Visual layer only (no markup/layout/data changes). Everything is
   shadow / gradient / transform-opacity → GPU-friendly, 60fps, and
   causes no layout shift (hover never changes box size). Reuses the
   existing --id-* palette; the frozen hero is untouched.
   ============================================================ */

:root {
  /* Layered elevation: a tight contact shadow + a soft ambient one, so
     cards read as physically floating above the surface. */
  --id-shadow-float: 0 1px 2px rgba(20, 30, 40, 0.05), 0 14px 32px rgba(20, 30, 40, 0.07);
  --id-shadow-lift: 0 30px 60px rgba(20, 30, 40, 0.16), 0 12px 24px rgba(20, 30, 40, 0.08);
  --id-edge-hi: inset 0 1px 0 rgba(255, 255, 255, 0.6);   /* crafted top edge */
}

/* ---- 1 & 2 · Card depth + premium hover (light cards) ---- */
.id-fact, .id-hotel, .id-tl-day__card {
  box-shadow: var(--id-shadow-float), var(--id-edge-hi);
  transition: transform 0.55s var(--id-ease), box-shadow 0.55s var(--id-ease), border-color 0.55s var(--id-ease);
}
.id-inclusions__list { box-shadow: var(--id-shadow-float), var(--id-edge-hi); }
.id-fact:hover, .id-hotel:hover, .id-tl-day__card:hover,
.id-fact.is-tilting, .id-hotel.is-tilting, .id-tl-day__card.is-tilting {
  box-shadow: var(--id-shadow-lift), var(--id-edge-hi);
}

/* ---- 3 · Timeline that feels alive ---- */
.id-tl-day__node {
  transition: transform 0.5s var(--id-ease), box-shadow 0.5s var(--id-ease), border-color 0.5s var(--id-ease), color 0.5s var(--id-ease);
}
.id-tl-day:hover .id-tl-day__node {
  transform: scale(1.1);
  border-color: var(--id-orange); color: var(--id-orange-hover);
  box-shadow: 0 0 0 6px rgba(230, 126, 34, 0.10), 0 12px 26px rgba(230, 126, 34, 0.30);
}
.id-tl-day__place, .id-tl-chip { transition: transform 0.45s var(--id-ease), background 0.4s var(--id-ease), color 0.4s var(--id-ease); }

/* ---- 4 & 5 · Section layering + background depth ---------------------
   Each section carries a soft top-only inset shadow, so it reads as gently
   stacked above the one before it, plus a faint radial glow for warmth.
   Backgrounds are static paint (no repaint cost, no distraction). --------- */
.id-overview {
  background: radial-gradient(1100px 620px at 88% -8%, rgba(230, 126, 34, 0.04), transparent 62%), var(--id-surface);
  box-shadow: inset 0 30px 46px -46px rgba(20, 30, 40, 0.12);
}
.id-route {
  background: radial-gradient(900px 520px at 10% 112%, rgba(22, 33, 43, 0.05), transparent 60%), var(--id-bg-alt);
  box-shadow: inset 0 30px 46px -46px rgba(20, 30, 40, 0.13);
}
.id-style {
  background: radial-gradient(760px 520px at 14% 16%, rgba(246, 166, 75, 0.12), transparent 56%), linear-gradient(155deg, var(--id-navy) 0%, var(--id-navy-dark) 100%);
  box-shadow: inset 0 30px 46px -46px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.id-timeline {
  background: radial-gradient(950px 560px at 12% 6%, rgba(230, 126, 34, 0.035), transparent 58%), var(--id-surface);
  box-shadow: inset 0 34px 48px -48px rgba(20, 30, 40, 0.16);
}
.id-hotels {
  background: radial-gradient(1000px 600px at 92% 106%, rgba(22, 33, 43, 0.05), transparent 60%), var(--id-bg-alt);
  box-shadow: inset 0 30px 46px -46px rgba(20, 30, 40, 0.13);
}
.id-inclusions {
  background: radial-gradient(900px 520px at 85% -10%, rgba(230, 126, 34, 0.03), transparent 60%), var(--id-surface);
  box-shadow: inset 0 30px 46px -46px rgba(20, 30, 40, 0.12);
}
.id-pricing {
  background: radial-gradient(860px 620px at 86% 14%, rgba(246, 166, 75, 0.13), transparent 56%), linear-gradient(155deg, var(--id-navy) 0%, var(--id-navy-dark) 100%);
  box-shadow: inset 0 30px 46px -46px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* ---- 7 · Premium micro-interactions (buttons / tabs) ---- */
.id-btn { will-change: transform; }
.id-btn--primary:hover { box-shadow: 0 20px 44px rgba(230, 126, 34, 0.4); transform: translateY(-3px); }
.id-btn--primary:active { transform: translateY(-1px) scale(0.99); }
#idUnlockBtn:active { transform: translateY(0) scale(0.99); }
.id-modeselect__opt:active { transform: scale(0.98); }
.id-route__stop, .id-hotel__nights, .id-highlights li { transition: transform 0.45s var(--id-ease), box-shadow 0.45s var(--id-ease), background 0.4s var(--id-ease), border-color 0.4s var(--id-ease); }

/* ---- 9 · Respect reduced-motion for the added hover motion ---- */
@media (prefers-reduced-motion: reduce) {
  .id-tl-day:hover .id-tl-day__node { transform: none; }
  .id-btn--primary:hover { transform: none; }
}

/* ============================================================
   PDF-SOURCE ADAPTATIONS (single Starting-From price, prose days)
   ============================================================ */
/* Timeline day title (PDF day heading) */
.id-tl-day__title { font-family: var(--id-font-display); font-weight: 400; font-size: clamp(1.14rem, 2vw, 1.42rem); line-height: 1.32; color: var(--id-ink); margin: 0 0 0.7rem; }

/* Pricing — single "Starting From" hero panel on the navy section */
.id-price-hero {
  max-width: 540px; margin: 0 auto; text-align: center;
  padding: clamp(2.4rem, 5vw, 3.6rem) clamp(1.6rem, 4vw, 3rem);
  border-radius: var(--id-radius-lg);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--id-shadow-lg);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  display: flex; flex-direction: column; align-items: center; gap: 0.45rem;
}
.id-price-hero__mode { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; color: var(--id-orange-light); margin-bottom: 0.5rem; }
.id-price-hero__mode svg { width: 18px; height: 18px; }
.id-price-hero__label { font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255, 255, 255, 0.55); }
.id-price-hero__value { font-family: var(--id-font-display); font-weight: 400; font-size: clamp(2.7rem, 7vw, 4rem); line-height: 1.02; color: #fff; }
.id-price-hero__value i { font-style: normal; font-size: 0.38em; color: var(--id-orange-light); letter-spacing: 0.05em; vertical-align: middle; margin-right: 0.18em; }
.id-price-hero__pp { font-size: 0.9rem; line-height: 1.5; color: rgba(255, 255, 255, 0.6); margin-top: 0.35rem; }

/* ============================================================
   GALLERY (real local NZ photos) + LOCKED PRICE STATE
   ============================================================ */
.id-gallery { padding: clamp(5rem, 10vw, 8rem) 0; background: var(--id-bg-alt); }
.id-gallery[hidden] { display: none; }
.id-gallery__inner { width: var(--id-container); max-width: 1180px; margin: 0 auto; }
.id-gallery__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.2rem; }
.id-gal {
  position: relative; overflow: hidden; margin: 0;
  border-radius: var(--id-radius-lg); box-shadow: var(--id-shadow-float), var(--id-edge-hi);
  aspect-ratio: 4 / 3;
  transition: box-shadow 0.5s var(--id-ease), transform 0.5s var(--id-ease);
}
.id-gal--feature { grid-column: 1 / -1; aspect-ratio: 16 / 9; }
.id-gal img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.9s var(--id-ease); }
.id-gal:hover img { transform: scale(1.06); }
.id-gal.is-tilting { box-shadow: var(--id-shadow-lift), var(--id-edge-hi); }
.id-gal figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: flex; align-items: center; gap: 0.5rem;
  padding: 2.2rem 1.4rem 1.15rem; color: #fff;
  font-family: var(--id-font-display); font-weight: 400; font-size: clamp(1.1rem, 2vw, 1.4rem);
  background: linear-gradient(0deg, rgba(11, 19, 25, 0.85) 0%, rgba(11, 19, 25, 0.18) 68%, transparent 100%);
}
.id-gal__pin { display: inline-flex; }
.id-gal__pin svg { width: 16px; height: 16px; color: var(--id-orange-light); }

/* Locked price panel */
.id-price-hero__lockicon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.07); border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--id-orange-light); margin-bottom: 0.2rem;
}
.id-price-hero__lockicon svg { width: 24px; height: 24px; }
.id-price-hero__value--locked { font-size: clamp(1.6rem, 4vw, 2.3rem); letter-spacing: 0.02em; color: rgba(255, 255, 255, 0.92); }

@media (max-width: 480px) {
  .id-gal, .id-gal--feature { aspect-ratio: 4 / 3; }
}

/* ============================================================
   CLICK-TO-UNLOCK — the whole locked price is a premium trigger
   ============================================================ */
.id-lockprice { cursor: pointer; -webkit-tap-highlight-color: transparent; }
.id-lockprice:focus-visible { outline: 2px solid var(--id-orange-light); outline-offset: 3px; }

/* masked value */
.id-price-hero__mask, .id-mode-card__mask { letter-spacing: 0.14em; filter: blur(0.5px); user-select: none; }
.id-mode-card__mask { font-family: var(--id-font-display); font-weight: 400; font-size: 1.9rem; color: var(--id-orange-light); }
.id-price-hero__cta {
  margin-top: 0.5rem; display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.05em; color: var(--id-orange-light);
}

/* pricing panel locked — the whole panel lifts + glows on hover */
.id-price-hero--locked:hover {
  transform: translateY(-4px);
  box-shadow: 0 44px 88px rgba(6, 12, 17, 0.55), 0 0 0 1px rgba(246, 166, 75, 0.35);
  border-color: rgba(246, 166, 75, 0.42);
}
.id-price-hero__lockicon { transition: transform 0.5s var(--id-ease), background 0.4s var(--id-ease); }
.id-price-hero--locked:hover .id-price-hero__lockicon { transform: translateY(-2px) scale(1.07); background: rgba(246, 166, 75, 0.16); }

/* mode-card locked price — clickable block */
.id-mode-card__price.id-lockprice { border-radius: 12px; padding: 0.5rem 0.6rem; margin-left: -0.6rem; margin-right: -0.6rem; transition: background 0.4s var(--id-ease), box-shadow 0.4s var(--id-ease); }
.id-mode-card__price.id-lockprice:hover { background: rgba(246, 166, 75, 0.09); box-shadow: inset 0 0 0 1px rgba(246, 166, 75, 0.3); }

/* Quick-Facts "From" tile locked */
.id-fact.id-lockprice .id-fact__value { color: var(--id-orange); font-size: 1.18rem; }
.id-fact.id-lockprice:hover { border-color: rgba(230, 126, 34, 0.4); box-shadow: var(--id-shadow-lift), var(--id-edge-hi); transform: translateY(-4px); }

/* gentle idle pulse on the lock glyphs (respects reduced-motion below) */
@keyframes idLockPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.55; } }
.id-price-hero--locked .id-price-hero__lockicon svg { animation: idLockPulse 2.6s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) {
  .id-price-hero--locked .id-price-hero__lockicon svg { animation: none; }
  .id-price-hero--locked:hover, .id-fact.id-lockprice:hover { transform: none; }
}
