/* ==========================================================================
   DESIGN SYSTEM — edit these variables to rebrand the whole site in one place
   ========================================================================== */
:root {
  /* ---- BRAND COLORS (change these) — DreamsYatri red ---- */
  --color-accent: #ec1f28;          /* primary CTA / accent color (brand red) */
  --color-accent-hover: #c4141c;    /* darker accent for hover states */
  --color-accent-soft: #fde3e4;     /* light tint of accent (badges, backgrounds) */
  --color-success: #16a34a;
  --color-danger: #dc2626;

  /* ---- NEUTRALS ---- */
  --color-ink: #0f172a;             /* headings / primary text */
  --color-body: #475569;            /* body copy */
  --color-muted: #94a3b8;           /* secondary / captions */
  --color-line: #e2e8f0;            /* borders / dividers */
  --color-bg: #ffffff;
  --color-bg-alt: #f8fafc;          /* alternating section background */
  --color-bg-dark: #0f172a;         /* footer / dark sections */

  /* ---- TYPOGRAPHY ---- */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --fs-hero: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  --fs-h2: clamp(1.6rem, 3vw + 0.5rem, 2.5rem);
  --fs-h3: clamp(1.15rem, 1.5vw + 0.5rem, 1.4rem);
  --fs-body: 1.0625rem;
  --fs-small: 0.9rem;
  --lh-tight: 1.15;
  --lh-body: 1.6;

  /* ---- SPACING / SIZING ---- */
  --container: 1140px;
  --radius: 14px;
  --radius-sm: 10px;
  --gap: clamp(1rem, 3vw, 2rem);
  --section-y: clamp(3rem, 7vw, 6rem);

  /* ---- SHADOWS ---- */
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.10);
  --shadow-lg: 0 20px 45px rgba(15, 23, 42, 0.16);

  /* ---- MISC ---- */
  --transition: 0.22s ease;
}

/* ==========================================================================
   RESET / BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-body);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 { color: var(--color-ink); line-height: var(--lh-tight); font-weight: 800; }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); font-weight: 700; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; padding: 0; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2rem); }
.section { padding-block: var(--section-y); }
/* All content sections share the same pure-white background for a seamless
   look. (The .section--alt class is kept on the markup as a hook but no longer
   tints — set a colour here if you ever want alternating sections back.) */
.section--alt { background: var(--color-bg); }
.section__head { text-align: center; max-width: 640px; margin: 0 auto clamp(2rem, 5vw, 3.5rem); }
.section__head p { color: var(--color-body); margin-top: 0.75rem; }
.eyebrow {
  display: inline-block; font-size: var(--fs-small); font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--color-accent); margin-bottom: 0.75rem;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: inherit; font-size: 1.0625rem; font-weight: 700; line-height: 1;
  padding: 1rem 1.75rem; border-radius: var(--radius-sm); border: 2px solid transparent;
  cursor: pointer; transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
  text-align: center; white-space: nowrap;
}
.btn--primary { background: var(--color-accent); color: #fff; box-shadow: var(--shadow-md); }
.btn--primary:hover { background: var(--color-accent-hover); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--ghost { background: transparent; color: var(--color-accent); border-color: var(--color-accent); }
.btn--ghost:hover { background: var(--color-accent-soft); }
.btn--block { width: 100%; }
.btn--lg { padding: 1.15rem 2.25rem; font-size: 1.125rem; }

/* ==========================================================================
   HEADER (thin top bar)
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 40; background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px); border-bottom: 1px solid var(--color-line);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; padding-block: 0.75rem; }
.brand { display: flex; align-items: center; gap: 0.5rem; font-weight: 800; color: var(--color-ink); font-size: 1.15rem; }
.brand__logo { width: 34px; height: 34px; border-radius: 8px; background: var(--color-accent); color:#fff; display:grid; place-items:center; font-weight:800; }
/* Image-only brand (DreamsYatri logo). Transparent-background PNG, so it sits
   directly on any background — no pill needed. */
.brand--img { padding: 0; background: none; box-shadow: none; }
.brand--img img { height: 40px; width: auto; display: block; }
@media (min-width: 640px) { .brand--img img { height: 46px; } }
.brand--plain { padding: 0; background: none; box-shadow: none; }
.header-cta { display: none; }
@media (min-width: 600px) { .header-cta { display: inline-flex; padding: 0.65rem 1.25rem; } }

/* ==========================================================================
   HERO — Foxico-style cinematic showcase with rotating destination cards
   ========================================================================== */
.hero {
  position: relative; color: #fff; overflow: hidden;
  /* Contained hero band (like the reference) rather than full-screen.
     Grows naturally on small screens where content needs more room. */
  display: flex; flex-direction: column;
  background: #1a1013; /* neutral dark (shows before photo loads) */
}
@media (min-width: 700px) { .hero { min-height: 600px; } }
@media (min-width: 980px) { .hero { height: 600px; } }

/* ---- Stacked crossfading background layers (one per destination) ---- */
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg__layer {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.08);
  transition: opacity 0.9s ease, transform 6s ease;
  will-change: opacity, transform;
}
.hero-bg__layer.is-active { opacity: 1; transform: scale(1); } /* slow Ken-Burns zoom while active */

/* Dark scrim for text legibility (stronger on the left) */
.hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(20,10,12,0.9) 0%, rgba(20,10,12,0.62) 32%, rgba(20,10,12,0.14) 62%, rgba(20,10,12,0.02) 100%),
    linear-gradient(180deg, rgba(20,10,12,0.3) 0%, rgba(20,10,12,0) 28%, rgba(20,10,12,0.5) 100%);
}

/* ---- Top nav inside hero ---- */
.hero-nav {
  position: relative; z-index: 3;
  display: flex; align-items: center; gap: 1.5rem;
  padding-block: 1.25rem;
}
.hero-nav .brand { color: #fff; }
.hero-nav .brand__logo { background: var(--color-accent); }
.hero-nav__links { display: none; gap: 2rem; margin-left: 2rem; }
.hero-nav__links a { color: rgba(255,255,255,0.85); font-weight: 600; font-size: 0.95rem; transition: color var(--transition); }
.hero-nav__links a:hover, .hero-nav__links a[aria-current="page"] { color: #fff; }
.hero-nav__cta { margin-left: auto; padding: 0.6rem 1.2rem; font-size: 0.95rem; flex: none; }
.hero-nav__cta .cta-short { display: none; }
@media (min-width: 860px) { .hero-nav__links { display: flex; } }

/* ---- Hero body: left copy + right cards ---- */
.hero-body {
  position: relative; z-index: 3; flex: 1;
  display: grid; grid-template-columns: 1fr; gap: 2rem;
  align-items: center; padding-block: clamp(2rem, 6vw, 4rem);
}
@media (min-width: 980px) { .hero-body { grid-template-columns: 1.1fr 1fr; gap: 3rem; } }

.hero-copy { max-width: 560px; }
.hero-copy__eyebrow {
  display: inline-block; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: #ff9a9f; margin-bottom: 0.75rem;
}
.hero-copy__title {
  color: #fff; font-size: clamp(3rem, 9vw, 6.5rem); line-height: 0.95; letter-spacing: 0.01em;
  font-weight: 800; text-transform: uppercase; margin-bottom: 1.1rem;
}
/* Applied by JS when the hero title is long (e.g. a full package name with no
   data-hero-title override) so it doesn't dwarf the layout. */
.hero-copy__title--long { font-size: clamp(2rem, 5vw, 3.6rem); line-height: 1.05; }
.hero-copy__text { color: rgba(255,255,255,0.9); font-size: clamp(1rem, 1.4vw, 1.15rem); max-width: 46ch; }
.hero-copy__cta { margin-top: 1.75rem; border-radius: 999px; padding-inline: 2rem; }
.hero-copy__cta svg { width: 18px; height: 18px; }

/* Text swap animation — JS toggles .is-swapping to replay */
.hero-copy__eyebrow, .hero-copy__title, .hero-copy__text { animation: heroTextIn 0.7s ease both; }
.hero-copy.is-swapping .hero-copy__eyebrow { animation: heroTextIn 0.5s ease both; }
.hero-copy.is-swapping .hero-copy__title { animation: heroTextIn 0.6s ease both; }
.hero-copy.is-swapping .hero-copy__text { animation: heroTextIn 0.7s ease both; }
@keyframes heroTextIn {
  from { opacity: 0; transform: translateY(22px); filter: blur(6px); }
  to   { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.hero__trust {
  margin-top: 1.75rem; display: inline-flex; align-items: center; gap: 0.6rem; flex-wrap: wrap;
  color: rgba(255,255,255,0.9); font-size: var(--fs-small); font-weight: 600;
}
.stars { color: #facc15; letter-spacing: 2px; font-size: 1.05rem; }

/* ---- Destination cards: rail conveyor (right side) ---- */
.hero-cards {
  /* Card sizes: the main (active) card is clearly bigger; inactive ~75%.
     Tuned so main + 2 small + gaps always fit the hero's right column
     (~410–490px between 980px and max container width) — nothing gets cut. */
  --dcard-w: clamp(100px, 10vw, 125px);
  --dcard-h: clamp(145px, 14.5vw, 180px);
  --dcard-w-active: clamp(145px, 14.5vw, 185px);
  --dcard-h-active: clamp(205px, 20.5vw, 265px);
  --dcard-gap: 1rem;

  position: relative; overflow: hidden;
  /* 6px inline padding so the active card's outline (2px + 3px offset, drawn
     OUTSIDE the card) isn't clipped by this overflow-hidden viewport. */
  padding: 0.5rem 6px 1rem;
  /* Viewport fits EXACTLY the main card + 2 smaller ones — no half-cut card.
     The 4th card waits just beyond the right edge and slides in during a step. */
  width: calc(var(--dcard-w-active) + 2 * var(--dcard-w) + 2 * var(--dcard-gap) + 12px);
  max-width: 100%; margin-left: auto;
  /* Soft fade only at the extreme right edge so the entering card fades in. */
  -webkit-mask-image: linear-gradient(90deg, #000 0, #000 96%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 0, #000 96%, transparent 100%);
}
.hero-cards__track {
  display: flex; gap: var(--dcard-gap); align-items: center;
  will-change: transform;
  /* .is-animating toggles the slide transition on/off (off during the
     invisible reset that moves the first card to the end). */
}
.hero-cards__track.is-animating {
  transition: transform 0.7s cubic-bezier(.5,.05,.2,1);
}
.dcard {
  position: relative; flex: 0 0 auto;
  /* Inactive cards are clearly smaller than the main card. Sizes are real
     layout width/height (not transform-scale) so cards never overlap, and the
     width/height transitions run TOGETHER with the track slide — a card grows
     while it travels into the main slot. Same duration/easing as the track. */
  width: var(--dcard-w); height: var(--dcard-h);
  border: none; border-radius: 20px; cursor: pointer; overflow: hidden; padding: 0;
  background-size: cover; background-position: center;
  box-shadow: 0 14px 30px rgba(0,0,0,0.35);
  opacity: 0.6;
  transition: width 0.7s cubic-bezier(.5,.05,.2,1), height 0.7s cubic-bezier(.5,.05,.2,1),
              opacity 0.7s ease, box-shadow 0.4s ease, outline-color 0.3s;
  outline: 2px solid transparent; outline-offset: 3px;
}
.dcard::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,0.75) 100%); }
.dcard:hover { opacity: 0.85; }
.dcard.is-active {
  width: var(--dcard-w-active); height: var(--dcard-h-active);
  opacity: 1; box-shadow: 0 22px 50px rgba(0,0,0,0.45); outline-color: rgba(255,255,255,0.9);
}
.dcard__meta { position: absolute; left: 14px; right: 14px; bottom: 14px; z-index: 1; text-align: left; }
.dcard__dots { display: block; color: rgba(255,255,255,0.85); letter-spacing: 3px; font-size: 0.7rem; margin-bottom: 0.3rem; }
.dcard__name { color: #fff; font-weight: 700; font-size: 0.95rem; text-shadow: 0 1px 6px rgba(0,0,0,0.5); }

/* ---- Progress dots ---- */
.hero-progress { position: relative; z-index: 3; display: flex; gap: 0.6rem; justify-content: center; padding-bottom: 1.5rem; }
.hero-progress__dot {
  width: 28px; height: 5px; border: none; border-radius: 999px; cursor: pointer; padding: 0;
  background: rgba(255,255,255,0.35); transition: background var(--transition), width var(--transition);
}
.hero-progress__dot.is-active { background: #fff; width: 44px; }

/* ---- Mobile hero tuning (<700px) ---- */
@media (max-width: 699px) {
  .hero { min-height: 78svh; }

  /* Replace the heavy side/bottom gradient with a light, even tint so the
     centered white text stays readable on any slide (the photo still shows). */
  .hero-scrim {
    background: linear-gradient(180deg, rgba(20,10,12,0.45) 0%, rgba(20,10,12,0.3) 45%, rgba(20,10,12,0.5) 100%);
  }

  .hero-nav { gap: 0.5rem; padding-block: 1rem; }
  .brand--img img { height: 30px; }
  .hero-nav__cta { padding: 0.5rem 0.85rem; font-size: 0.82rem; white-space: nowrap; }
  .hero-nav__cta .cta-full { display: none; }
  .hero-nav__cta .cta-short { display: inline; }

  /* Centered hero copy, no cards on mobile */
  .hero-body {
    grid-template-columns: 1fr; gap: 0;
    align-items: center; justify-items: center;
    text-align: center; padding-block: 2rem 1.5rem;
  }
  .hero-copy { max-width: 100%; display: flex; flex-direction: column; align-items: center; }
  /* Lower minimum so long destination names (DHARAMSHALA, BIR BILLING)
     scale down instead of overflowing the viewport on small phones. */
  .hero-copy__title {
    font-size: clamp(1.9rem, 11vw, 3.6rem);
    margin-bottom: 0.9rem;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    max-width: 100%;
  }
  .hero-copy__text { font-size: 1rem; max-width: 42ch; }
  .hero-copy__cta { margin-top: 1.5rem; }
  .hero__trust { margin-top: 1.4rem; font-size: 0.85rem; justify-content: center; }

  /* Hide the destination cards on mobile — background animation still runs */
  .hero-cards { display: none; }

  .hero-progress { padding-bottom: 1.25rem; }
}

/* ==========================================================================
   PACKAGE CARDS (photo-top, dark gradient body — reference style)
   ========================================================================== */
.pkg-grid { display: grid; gap: clamp(1.25rem, 3vw, 2rem); grid-template-columns: 1fr; }
@media (min-width: 640px) { .pkg-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .pkg-grid { grid-template-columns: repeat(3, 1fr); } }

.pkg-card {
  /* Card surface — deep maroon derived from the brand red (was navy). */
  --pkg-surface: #2d1114;
  position: relative; display: flex; flex-direction: column;
  border-radius: 26px; overflow: hidden; background: var(--pkg-surface);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}
@media (min-width: 700px) { .pkg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); } }
.pkg-card--featured { outline: 2px solid var(--color-accent); outline-offset: -2px; }

/* Photo area */
.pkg-card__media {
  position: relative; aspect-ratio: 4 / 3; background-size: cover; background-position: center;
  background-color: #4a2226; /* fallback while real photos are pending */
}
.pkg-card__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(45,17,20,0) 45%, rgba(45,17,20,0.9) 100%);
}
.pkg-card__save {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  width: 38px; height: 38px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(35,12,15,0.45); color: #fff; display: grid; place-items: center;
  backdrop-filter: blur(4px); transition: background var(--transition);
}
.pkg-card__save:hover { background: rgba(35,12,15,0.7); }
.pkg-card__save svg { width: 18px; height: 18px; }
.pkg-card__ribbon {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--color-accent); color: #fff; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase; padding: 0.4rem 0.8rem; border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
.pkg-card__ribbon--alt { background: #e0862f; }

/* Dark body */
.pkg-card__body {
  background: var(--pkg-surface); color: #fff; padding: 1.4rem 1.5rem 1.6rem;
  margin-top: -1px; display: flex; flex-direction: column; flex: 1;
}
.pkg-card__title { color: #fff; font-size: 1.3rem; line-height: 1.2; margin-bottom: 0.5rem; }
.pkg-card__desc { color: rgba(255,255,255,0.72); font-size: 0.92rem; line-height: 1.5; margin-bottom: 1.1rem; }
.pkg-card__tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.1rem; }

/* Duration block — sits between the tag pills and the CTA row.
   (No prices are shown anywhere; the CTA opens the quote form instead.) */
.pkg-card__meta {
  display: flex; align-items: center; flex-wrap: wrap; gap: 0.45rem;
  padding-top: 0.9rem; margin-bottom: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.pkg-card__meta svg { width: 16px; height: 16px; color: rgba(255,255,255,0.66); flex: none; }
.pkg-card__duration { font-size: 0.95rem; font-weight: 700; color: #fff; }
.pill {
  display: inline-flex; align-items: center; gap: 0.35rem;
  border: 1px solid rgba(255,255,255,0.22); border-radius: 999px;
  padding: 0.4rem 0.85rem; font-size: 0.82rem; font-weight: 600; color: #fff;
}
.pill--rating svg { width: 15px; height: 15px; color: #facc15; }
.pkg-card__cta {
  width: 100%; border: none; cursor: pointer; font-family: inherit;
  background: #fff; color: #0f172a; font-weight: 800; font-size: 1.02rem;
  padding: 1rem 1.25rem; border-radius: 999px; transition: transform var(--transition), background var(--transition);
}
.pkg-card__cta:hover { transform: translateY(-2px); background: #f1f5f9; }

.pkg-card__actions { margin-top: auto; display: flex; align-items: center; gap: 0.6rem; }
.pkg-card__actions .pkg-card__cta { flex: 1; }
.pkg-card__call {
  position: relative; flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center;
  width: 3.1rem; height: 3.1rem; border-radius: 50%;
  background: var(--color-accent, #ec1f28); color: #fff;
  transition: transform var(--transition), background var(--transition);
  animation: pkgCallPulse 2.2s ease-out infinite;
}
.pkg-card__call svg { width: 20px; height: 20px; position: relative; z-index: 1; }
.pkg-card__call:hover { transform: translateY(-2px) scale(1.05); background: #c4141c; }
.pkg-card__call::before, .pkg-card__call::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: var(--color-accent, #ec1f28); z-index: 0;
  animation: pkgCallRing 2.2s ease-out infinite;
}
.pkg-card__call::after { animation-delay: 0.6s; }

@keyframes pkgCallPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(236,31,40,0.35); }
  50% { box-shadow: 0 0 0 8px rgba(236,31,40,0); }
}
@keyframes pkgCallRing {
  0% { transform: scale(1); opacity: 0.55; }
  100% { transform: scale(1.9); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .pkg-card__call, .pkg-card__call::before, .pkg-card__call::after { animation: none; }
}

/* ==========================================================================
   MODAL (package enquiry popup)
   ========================================================================== */
.modal {
  position: fixed; inset: 0; z-index: 100; display: none;
  align-items: center; justify-content: center; padding: 1rem;
}
.modal.is-open { display: flex; }
.modal__overlay {
  position: absolute; inset: 0; background: rgba(6,20,14,0.6); backdrop-filter: blur(3px);
  animation: modalFade 0.25s ease both;
}
.modal__dialog {
  position: relative; z-index: 1; width: 100%; max-width: 460px; max-height: 92vh; overflow-y: auto;
  background: #fff; border-radius: 22px; box-shadow: var(--shadow-lg);
  padding: clamp(1.6rem, 4vw, 2.25rem);
  animation: modalPop 0.3s cubic-bezier(.22,.8,.28,1) both;
}
/* Brand accent strip along the top of the dialog */
.modal__accent {
  position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: linear-gradient(90deg, var(--color-accent), #ff7a52);
}
.modal__close {
  position: absolute; top: 16px; right: 16px; width: 38px; height: 38px; border-radius: 50%;
  border: none; cursor: pointer; background: var(--color-bg-alt); color: var(--color-ink);
  display: grid; place-items: center; transition: background var(--transition), color var(--transition);
}
.modal__close:hover { background: var(--color-accent-soft); color: var(--color-accent); }
.modal__close svg { width: 20px; height: 20px; }
.modal__title { margin-bottom: 0.6rem; padding-right: 2.25rem; font-size: 1.45rem; }
/* Selected package shown as a brand pill */
.modal__pkg {
  display: inline-block; max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  background: var(--color-accent-soft); color: var(--color-accent);
  font-weight: 700; font-size: 0.85rem; padding: 0.45rem 1rem; border-radius: 999px;
  margin-bottom: 0.9rem;
}
.modal__sub { font-size: var(--fs-small); color: var(--color-body); margin-bottom: 1.25rem; }
@keyframes modalFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalPop { from { opacity: 0; transform: translateY(20px) scale(0.96); } to { opacity: 1; transform: translateY(0) scale(1); } }
body.modal-lock { overflow: hidden; }

/* ==========================================================================
   BENEFITS — "Why DreamsYatri" platform hub diagram
   Desktop ≥1140px: soft rounded panel; ring-donut hub with the logo; six
   white satellite circles (red line icons) connected by thin lines + dots
   (all drawn in the SVG stage); red heading + bullet list beside each.
   Below 1140px: the same items render as a clean card grid.
   ========================================================================== */
.hub {
  background: #fdf3f4; border-radius: 28px;
  padding: clamp(1.25rem, 3vw, 2rem);
}
.hub__stage { position: relative; }
.hub__svg { display: none; }
.hub__core { display: none; }

.hub__item h3 { color: var(--color-accent); font-size: 1.02rem; margin-bottom: 0.5rem; }
.hub__item ul { display: flex; flex-direction: column; gap: 0.3rem; }
.hub__item li {
  position: relative; padding-left: 0.95rem;
  font-size: 0.88rem; color: var(--color-body); line-height: 1.45;
}
.hub__item li::before {
  content: ""; position: absolute; left: 0; top: 0.52em;
  width: 5px; height: 5px; border-radius: 50%; background: var(--color-accent);
}

/* --- Card grid (below 1140px) --- */
.hub__stage { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 560px) { .hub__stage { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 860px) and (max-width: 1139px) { .hub__stage { grid-template-columns: repeat(3, 1fr); } }
.hub__item { background: #fff; border-radius: 18px; padding: 1.25rem 1.4rem; box-shadow: var(--shadow-sm); }
.hub__chip {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%;
  background: #fbe3e4; color: var(--color-accent); margin-bottom: 0.8rem;
}
.hub__chip svg { width: 22px; height: 22px; }

/* --- Desktop stage (≥1140px): fixed 1000x620 canvas, positioned text --- */
@media (min-width: 1140px) {
  .hub__stage { display: block; width: 1000px; height: 620px; margin-inline: auto; }
  .hub__svg { display: block; position: absolute; inset: 0; width: 100%; height: 100%; }
  .hub__core {
    display: flex; flex-direction: column; align-items: center; gap: 0.45rem;
    position: absolute; left: 500px; top: 320px; transform: translate(-50%, -50%);
    width: 160px; text-align: center;
  }
  .hub__core img { width: 140px; height: auto; }
  .hub__core span { font-size: 0.68rem; font-weight: 700; color: var(--color-body); text-transform: uppercase; letter-spacing: 0.08em; }

  .hub__item { position: absolute; background: none; border-radius: 0; padding: 0; box-shadow: none; }
  .hub__chip { display: none; }

  /* Positions beside the satellites (px on the fixed 1000x620 canvas) */
  .hub__item--tl { left: 90px;  top: 75px;  width: 210px; text-align: right; }
  .hub__item--tr { left: 700px; top: 75px;  width: 240px; }
  .hub__item--l  { left: 20px;  top: 262px; width: 200px; text-align: right; }
  .hub__item--r  { left: 782px; top: 262px; width: 218px; }
  .hub__item--bl { left: 90px;  top: 448px; width: 210px; text-align: right; }
  .hub__item--br { left: 700px; top: 448px; width: 240px; }

  /* Right-aligned blocks: bullet dot sits on the right side */
  .hub__item--tl li, .hub__item--l li, .hub__item--bl li { padding-left: 0; padding-right: 0.95rem; }
  .hub__item--tl li::before, .hub__item--l li::before, .hub__item--bl li::before { left: auto; right: 0; }
}

/* ==========================================================================
   ROADMAP — "Your Journey" winding-road infographic
   Desktop (≥900px): smooth serpentine SVG road with 6 milestone circles;
   the step text is HTML positioned beside each milestone.
   Mobile: the same <ol> renders as a numbered vertical timeline.
   ========================================================================== */
.roadmap { position: relative; max-width: 800px; margin-inline: auto; }
.roadmap__road { display: none; }

/* --- Mobile / tablet: numbered timeline --- */
.roadmap__steps { list-style: none; position: relative; counter-reset: rmstep; padding: 0; }
.roadmap__steps::before {
  content: ""; position: absolute; left: 25px; top: 12px; bottom: 26px;
  border-left: 3px dashed #e5b9bc;
}
.roadmap__step { position: relative; padding-left: 76px; margin-bottom: 2rem; }
.roadmap__step:last-child { margin-bottom: 0; }
.roadmap__step::before {
  counter-increment: rmstep; content: counter(rmstep);
  position: absolute; left: 0; top: 0; width: 52px; height: 52px; border-radius: 50%;
  background: var(--color-accent); color: #fff; font-weight: 800; font-size: 1.2rem;
  display: grid; place-items: center; box-shadow: 0 6px 14px rgba(236,31,40,0.35);
  border: 3px solid #fff;
}
.roadmap__step h3 { font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.35rem; }
.roadmap__step p { font-size: 0.92rem; color: var(--color-body); max-width: 46ch; }

/* --- Desktop: winding road --- */
@media (min-width: 900px) {
  /* Fixed 800x1200 stage (the container is always ≥800px wide at this
     breakpoint). Pixel tops are used because percentage `top` does not
     resolve against an aspect-ratio-derived height. */
  .roadmap { width: 800px; height: 1200px; }
  .roadmap__road { display: block; position: absolute; inset: 0; width: 100%; height: 100%; }
  .roadmap__steps { counter-reset: none; }
  .roadmap__steps::before { display: none; }
  .roadmap__step { position: absolute; margin: 0; padding: 0; }
  .roadmap__step::before { display: none; }
  .roadmap__step p { max-width: none; }

  /* Each step reads its vertical position from the inline --rm-top custom
     property on its <li>. Default: milestone on the LEFT bend, text to its
     right; the --r modifier flips it for RIGHT-bend milestones. */
  .roadmap__step { top: var(--rm-top, 0); left: 31%; width: 56%; text-align: left; }
  .roadmap__step--r { left: 12%; text-align: right; }
  .roadmap__step--r p { margin-left: auto; }
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonial-grid { display: grid; gap: var(--gap); grid-template-columns: 1fr; }
@media (min-width: 640px) { .testimonial-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .testimonial-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial {
  background: var(--color-bg); border: 1px solid var(--color-line); border-radius: var(--radius);
  padding: 1.75rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 1rem;
}
.testimonial__quote { color: var(--color-ink); font-size: 1.02rem; }
.testimonial__person { display: flex; align-items: center; gap: 0.75rem; margin-top: auto; }
.avatar {
  width: 46px; height: 46px; border-radius: 50%; flex: none; background: var(--color-accent-soft);
  color: var(--color-accent); display: grid; place-items: center; font-weight: 800; font-size: 1rem;
  /* Swap for a real <img> avatar if desired */
}
.testimonial__name { font-weight: 700; color: var(--color-ink); font-size: 0.95rem; }
.testimonial__role { font-size: 0.85rem; color: var(--color-muted); }

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq { max-width: 760px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--color-line); }
.faq__q {
  width: 100%; background: none; border: none; cursor: pointer; font-family: inherit;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.25rem 0; font-size: 1.05rem; font-weight: 700; color: var(--color-ink); text-align: left;
}
.faq__q svg { flex: none; width: 22px; height: 22px; color: var(--color-accent); transition: transform var(--transition); }
.faq__item.is-open .faq__q svg { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height var(--transition); }
.faq__a p { padding-bottom: 1.25rem; font-size: var(--fs-small); }

/* ==========================================================================
   LEAD FORM
   ========================================================================== */
/* Split card: scenic welcome panel + form panel side by side (desktop),
   stacked on mobile. White section background to match the rest of the page. */
.lead { background: var(--color-bg); }
.lead-card {
  display: grid; grid-template-columns: 1fr; overflow: hidden;
  background: #fff; border-radius: 26px; box-shadow: var(--shadow-lg);
  max-width: 980px; margin-inline: auto;
}
@media (min-width: 860px) { .lead-card { grid-template-columns: 1fr 1.05fr; } }

/* --- Left: image + welcome --- */
.lead-card__media {
  position: relative; min-height: 240px; color: #fff;
  display: flex; align-items: flex-end;
  /* Red brand gradient keeps text legible over the photo. */
  background:
    linear-gradient(150deg, rgba(196,20,28,0.72), rgba(120,10,16,0.82)),
    url('../images/darjeeling-toy-train-tea-garden.jpeg') center / cover no-repeat;
}
@media (min-width: 860px) { .lead-card__media { min-height: 100%; } }
.lead-card__welcome { padding: clamp(1.75rem, 4vw, 2.75rem); }
.lead-card__welcome h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.8rem); line-height: 1.05; }
.lead-card__welcome p { color: rgba(255,255,255,0.9); font-size: var(--fs-small); margin-top: 0.9rem; max-width: 34ch; }
.lead-card__list { margin-top: 1.4rem; display: flex; flex-direction: column; gap: 0.65rem; }
.lead-card__list li { display: flex; gap: 0.55rem; align-items: center; color: #fff; font-size: 0.9rem; font-weight: 600; }
.lead-card__list svg { width: 18px; height: 18px; color: #fff; flex: none; }

/* --- Right: form --- */
.lead-card__form { padding: clamp(1.75rem, 4vw, 2.75rem); }
.lead-form__grid { display: grid; grid-template-columns: 1fr; gap: 0 1rem; }
@media (min-width: 520px) { .lead-form__grid { grid-template-columns: 1fr 1fr; } }
.lead-form__grid .field:nth-child(3),
.lead-form__grid .field:nth-child(4) { grid-column: span 1; }

.lead-form h3 { margin-bottom: 0.35rem; }
.lead-form__sub { font-size: var(--fs-small); color: var(--color-body); margin-bottom: 1.25rem; }
.field { margin-bottom: 1rem; }
.field label { display: block; font-size: 0.9rem; font-weight: 600; color: var(--color-ink); margin-bottom: 0.4rem; }
.field input, .field select {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--color-ink);
  padding: 0.85rem 1rem; border: 1.5px solid var(--color-line); border-radius: var(--radius-sm);
  background: #fff; transition: border-color var(--transition), box-shadow var(--transition);
}
.field input:focus, .field select:focus {
  outline: none; border-color: var(--color-accent); box-shadow: 0 0 0 3px var(--color-accent-soft);
}
.field input.is-error, .field select.is-error { border-color: var(--color-danger); }
.field__error { display: none; color: var(--color-danger); font-size: 0.82rem; margin-top: 0.35rem; }
.field.is-error .field__error { display: block; }
/* Honeypot — visually hidden, off-screen, not display:none (some bots skip hidden fields) */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: 0.8rem; color: var(--color-muted); text-align: center; margin-top: 0.9rem; }
.form-status { font-size: 0.9rem; margin-top: 0.75rem; text-align: center; min-height: 1.2em; }
.form-status.is-error { color: var(--color-danger); }

/* "You've already enquired" notice — injected above either form by script.js
   when a submission was made in the last 24h. Warning only; the form below
   it stays usable (a visitor may have mistyped their phone or email). */
.already-enquired {
  background: var(--color-accent-soft, #fde3e4);
  border: 1px solid rgba(236,31,40,0.25);
  border-radius: var(--radius, 14px);
  padding: 1rem 1.1rem; margin-bottom: 1.25rem;
}
.already-enquired strong { display: block; color: var(--color-ink); font-size: 1rem; margin-bottom: 0.35rem; }
.already-enquired p { font-size: 0.86rem; color: var(--color-body); line-height: 1.5; margin: 0; }
.already-enquired__actions { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 0.85rem; }
.already-enquired__btn {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.6rem 1.05rem; border-radius: 999px;
  font-size: 0.88rem; font-weight: 700; color: #fff;
  transition: transform var(--transition), filter var(--transition);
}
.already-enquired__btn svg { width: 17px; height: 17px; }
.already-enquired__btn:hover { transform: translateY(-1px); filter: brightness(1.07); }
.already-enquired__btn--call { background: var(--color-accent, #ec1f28); }
.already-enquired__btn--wa { background: #25d366; }
.already-enquired__foot { margin-top: 0.8rem !important; font-size: 0.79rem !important; color: var(--color-muted) !important; }
.btn[aria-busy="true"] { opacity: 0.75; pointer-events: none; }

/* ==========================================================================
   STICKY MOBILE CTA
   ========================================================================== */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 45;
  background: #fff; border-top: 1px solid var(--color-line); box-shadow: 0 -6px 20px rgba(15,23,42,0.10);
  padding: 0.75rem clamp(1rem, 4vw, 2rem); display: flex; gap: 0.75rem; align-items: center;
  transform: translateY(120%); transition: transform var(--transition);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta__label { font-weight: 700; color: var(--color-ink); font-size: 0.95rem; line-height: 1.2; }
.sticky-cta__label small { display: block; font-weight: 500; color: var(--color-muted); font-size: 0.78rem; }
.sticky-cta .btn { margin-left: auto; padding: 0.8rem 1.25rem; }
@media (min-width: 900px) { .sticky-cta { display: none; } }

/* Floating WhatsApp button (visible on all sizes) */
.float-btn {
  position: fixed; left: 18px; bottom: 88px; z-index: 44; width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: var(--shadow-lg);
  transition: transform var(--transition);
}
.float-btn:hover { transform: scale(1.08); }
.float-btn svg { width: 30px; height: 30px; }
@media (min-width: 900px) { .float-btn { bottom: 24px; } }

/* ==========================================================================
   FOOTER
   ========================================================================== */
/* Matches the main dreamsyatri.com footer: world-landmarks skyline strip that
   merges into a dark slate (#292f3f = the skyline PNG's ground colour) block. */
.site-footer { color: rgba(255,255,255,0.78); }

/* Skyline strip — light band; silhouettes blend into the dark block below */
.footer-skyline { background: var(--color-bg); line-height: 0; }
.footer-skyline img { display: block; width: 100%; max-width: 1920px; height: auto; margin-inline: auto; }

.site-footer__inner { background: #292f3f; padding-block: 2.5rem 0; }

.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1fr 1fr; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1.1fr 0.9fr 1.2fr 1.3fr; gap: 1.5rem; } }

.footer-brand { grid-column: 1 / -1; }
@media (min-width: 1024px) { .footer-brand { grid-column: auto; } }
.footer-brand__logo { width: 170px; height: auto; margin-bottom: 0.9rem; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.6); max-width: 30ch; }

.site-footer h4 {
  color: rgba(255,255,255,0.55); font-size: 0.78rem; font-weight: 700;
  margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.12em;
}
.site-footer a { transition: color var(--transition); }
.site-footer a:hover { color: #fff; }
.footer-links { display: flex; flex-direction: column; gap: 0.65rem; font-size: 0.9rem; }
.footer-links--contact a, .footer-links--contact span { display: flex; align-items: flex-start; gap: 0.55rem; }
.footer-links--contact svg { width: 16px; height: 16px; flex: none; margin-top: 2px; color: rgba(255,255,255,0.55); }

.social { display: flex; gap: 0.6rem; margin-top: 1.1rem; }
.social a {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.25);
  display: grid; place-items: center; transition: background var(--transition), border-color var(--transition);
}
.social a:hover { background: var(--color-accent); border-color: var(--color-accent); }
.social svg { width: 16px; height: 16px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); margin-top: 2.25rem; padding-block: 1.1rem;
  font-size: 0.8rem; color: rgba(255,255,255,0.45);
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; align-items: center; justify-content: space-between;
}
.footer-bottom__links { display: flex; gap: 1.25rem; }
/* Clear the mobile sticky CTA bar */
@media (max-width: 899px) { .site-footer__inner { padding-bottom: 4.5rem; } }

/* ==========================================================================
   THANK-YOU PAGE
   ========================================================================== */
.ty { min-height: 100vh; width: 100%; max-width: 100%; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 2rem 1rem; background: var(--color-bg-alt); overflow-x: clip; }
.ty__card { width: 100%; max-width: min(560px, 100%); margin-inline: auto; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: clamp(2rem, 6vw, 3.5rem); }
.ty__check { width: 80px; height: 80px; border-radius: 50%; background: var(--color-success); color: #fff; display: grid; place-items: center; margin: 0 auto 1.5rem; }
.ty__check svg { width: 44px; height: 44px; }
.ty h1 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
.ty p { margin-top: 1rem; margin-inline: auto; }
.ty__next { text-align: left; background: var(--color-bg-alt); border-radius: var(--radius-sm); padding: 1.25rem 1.5rem; margin: 1.75rem 0; max-width: 100%; }
.ty__next li { display: flex; gap: 0.6rem; align-items: flex-start; margin-bottom: 0.6rem; font-size: var(--fs-small); }
.ty__next li > span { min-width: 0; overflow-wrap: anywhere; }
.ty__next li:last-child { margin-bottom: 0; }
.ty__next svg { width: 20px; height: 20px; color: var(--color-accent); flex: none; margin-top: 2px; }
.ty__cta { white-space: normal; max-width: 100%; overflow-wrap: anywhere; }

/* ==========================================================================
   UTILITIES / A11Y
   ========================================================================== */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; scroll-behavior: auto !important; } }

/* ---- Thank-you: animated sky backdrop -----------------------------------
   Pure CSS, no images and no extra requests. Only transform/opacity are
   animated, so everything runs on the compositor (no layout/paint work). */
.ty { position: relative; overflow: hidden; background: linear-gradient(160deg, #eef4fb 0%, #f8fafc 45%, #fdf1f1 100%); }
.ty__sky { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.ty__cloud { position: absolute; background: #fff; border-radius: 50%; filter: blur(18px); opacity: 0.75; animation: ty-drift linear infinite; }
.ty__cloud--1 { width: 190px; height: 60px; top: 14%; left: -220px; animation-duration: 34s; }
.ty__cloud--2 { width: 130px; height: 44px; top: 32%; left: -160px; animation-duration: 46s; animation-delay: -8s; opacity: 0.55; }
.ty__cloud--3 { width: 240px; height: 70px; top: 68%; left: -280px; animation-duration: 40s; animation-delay: -20s; opacity: 0.6; }
@keyframes ty-drift { from { transform: translateX(0); } to { transform: translateX(calc(100vw + 320px)); } }
.ty__peaks { position: absolute; left: 0; right: 0; bottom: 0; width: 100%; height: clamp(90px, 18vh, 170px); pointer-events: none; }
.ty__peaks path { fill: var(--color-ink, #0f172a); }
.ty__peaks--back { opacity: 0.07; }
.ty__peaks--front { opacity: 0.12; }
.ty__card { position: relative; z-index: 1; animation: ty-rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) both; }
@keyframes ty-rise { from { opacity: 0; transform: translateY(26px) scale(0.98); } to { opacity: 1; transform: none; } }
.ty__check { position: relative; animation: ty-pop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s both; }
.ty__check::after { content: ''; position: absolute; inset: -6px; border-radius: 50%; border: 2px solid var(--color-success, #16a34a); opacity: 0; animation: ty-ring 2.6s ease-out 1.05s infinite; }
.ty__check svg path { stroke-dasharray: 32; stroke-dashoffset: 32; animation: ty-draw 0.5s ease-out 0.85s forwards; }
@keyframes ty-pop { from { opacity: 0; transform: scale(0.4); } to { opacity: 1; transform: scale(1); } }
@keyframes ty-draw { to { stroke-dashoffset: 0; } }
@keyframes ty-ring { 0% { opacity: 0.7; transform: scale(1); } 70%, 100% { opacity: 0; transform: scale(1.35); } }
.ty h1 { animation: ty-up 0.55s ease-out 0.65s both; }
.ty > .ty__card > p { animation: ty-up 0.55s ease-out 0.75s both; }
.ty__next { animation: ty-up 0.55s ease-out 0.85s both; }
.ty__next li { animation: ty-up 0.45s ease-out both; }
.ty__next li:nth-child(1) { animation-delay: 0.95s; }
.ty__next li:nth-child(2) { animation-delay: 1.05s; }
.ty__next li:nth-child(3) { animation-delay: 1.15s; }
@keyframes ty-up { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.ty__note { margin-top: 1.5rem; padding: 0.9rem 1.1rem; border: 1px dashed var(--color-line, #e2e8f0); border-radius: var(--radius-sm, 10px); font-size: var(--fs-small, 0.9rem); color: var(--color-body, #475569); background: #fff; animation: ty-up 0.55s ease-out 1.2s both; }
.ty__note strong { color: var(--color-ink, #0f172a); }
.ty__back { margin-top: 1.75rem; animation: ty-up 0.5s ease-out 1.3s both; }
.ty__back a { color: var(--color-accent, #ec1f28); font-weight: 600; text-decoration: none; }
.ty__back a:hover { text-decoration: underline; }
@media (prefers-reduced-motion: reduce) {
  .ty__card, .ty h1, .ty > .ty__card > p, .ty__next, .ty__next li, .ty__check, .ty__note, .ty__back { opacity: 1 !important; transform: none !important; }
  .ty__check svg path { stroke-dashoffset: 0 !important; }
  .ty__check::after { opacity: 0 !important; }
  .ty__cloud { display: none !important; }
}

/* Footer entries with no live page yet: rendered as plain text, not dead links. */
.footer-links .footer-col__muted { color: rgba(255,255,255,0.38); cursor: default; }

/* ---- Package price (added for Manali page) ---- */
.pkg-card__price{
  margin-left:auto;
  font-weight:800;
  color:var(--ink,#14181f);
  white-space:nowrap;
}
.pkg-card__price small{
  display:block;
  font-weight:500;
  font-size:.7rem;
  opacity:.62;
  text-align:right;
  letter-spacing:.01em;
}

/* ---- Deep-linked package card: brief highlight so the shared card is obvious ---- */
.pkg-card--linked{
  animation: dyPkgPulse 2.4s ease-out 1;
}
@keyframes dyPkgPulse{
  0%   { box-shadow: 0 0 0 0 rgba(214,40,40,.55); }
  35%  { box-shadow: 0 0 0 12px rgba(214,40,40,0); }
  60%  { box-shadow: 0 0 0 0 rgba(214,40,40,.35); }
  100% { box-shadow: 0 0 0 14px rgba(214,40,40,0); }
}
@media (prefers-reduced-motion: reduce){
  .pkg-card--linked{ animation: none; outline: 3px solid rgba(214,40,40,.7); outline-offset: 3px; }
}
