/* ============================================================
   Jersey Bus Tours — draft concept site
   Brand palette from the live site:
   Honeydew #F1FAEE · Powder Blue #A8DADC · Cerulean #457B9D
   Prussian Navy #1D3557 · Imperial Red #E63946
   Type: Raleway (UI/body) + Fraunces (display headings)
   ============================================================ */

:root {
  --honeydew: #f1faee;
  --powder: #a8dadc;
  --cerulean: #457b9d;
  --navy: #1d3557;
  --red: #e63946;

  --navy-90: rgba(29, 53, 87, 0.9);
  --navy-70: rgba(29, 53, 87, 0.7);
  --shadow-sm: 0 6px 20px rgba(29, 53, 87, 0.12);
  --shadow-md: 0 18px 50px rgba(29, 53, 87, 0.18);
  --shadow-lg: 0 40px 90px rgba(29, 53, 87, 0.28);

  --radius: 18px;
  --radius-lg: 28px;
  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font: "Raleway", -apple-system, system-ui, "Segoe UI", Roboto, sans-serif;
  --display: "Fraunces", Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-weight: 400;
  color: var(--navy);
  background: var(--honeydew);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.skip-link { position: absolute; left: -999px; top: 0; background: var(--navy); color: var(--honeydew); padding: 12px 18px; z-index: 2000; border-radius: 0 0 10px 0; }
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; border-radius: 4px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font); font-weight: 700; letter-spacing: 0.02em;
  padding: 13px 26px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; will-change: transform;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s, color 0.3s;
}
.btn--cta { background: var(--red); color: #fff; box-shadow: 0 10px 26px rgba(230, 57, 70, 0.35); }
.btn--cta:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(230, 57, 70, 0.5); }
.btn--glass { background: rgba(255, 255, 255, 0.12); color: #fff; border-color: rgba(255, 255, 255, 0.6); backdrop-filter: blur(6px); }
.btn--glass:hover { background: rgba(255, 255, 255, 0.22); transform: translateY(-3px); }
.btn--lg { padding: 16px 34px; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* ---------- Scroll progress ---------- */
.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 4px; z-index: 1500; }
.scroll-progress span { display: block; height: 100%; width: 0%; background: linear-gradient(90deg, var(--cerulean), var(--red)); }

/* ---------- Nav ---------- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 18px 0; transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease); }
.nav.is-scrolled { background: rgba(241, 250, 238, 0.82); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: var(--shadow-sm); padding: 10px 0; }
.nav__inner { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; display: flex; align-items: center; gap: 22px; }
.nav__brand { display: flex; align-items: center; gap: 9px; font-size: 1.25rem; font-weight: 300; color: #fff; transition: color 0.4s; }
.nav.is-scrolled .nav__brand { color: var(--navy); }
.nav__brand strong { font-weight: 800; color: var(--red); }
.nav__brand-mark { font-size: 1.5rem; }
.nav__logo { height: 46px; width: auto; display: block; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3)); }
.nav.is-scrolled .nav__logo { filter: none; }
.nav__links { display: flex; gap: 17px; margin-left: auto; }
.nav__links a { font-weight: 600; font-size: 0.88rem; color: #fff; position: relative; transition: color 0.3s; white-space: nowrap; }
.nav.is-scrolled .nav__links a { color: var(--navy); }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--red); transition: width 0.3s var(--ease); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { padding: 10px 22px; }
.nav__burger { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; margin-left: auto; }
.nav__burger span { width: 26px; height: 3px; background: #fff; border-radius: 2px; transition: 0.3s var(--ease); }
.nav.is-scrolled .nav__burger span { background: var(--navy); }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; background: var(--navy); }
.hero__media { position: absolute; inset: 0; }
.hero__img {
  width: 100%; height: 120%; object-fit: cover; object-position: center 35%;
  transform: scale(1.08); animation: kenburns 18s ease-in-out infinite alternate;
  will-change: transform;
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(13, 22, 38, 0.55) 0%, rgba(13, 22, 38, 0.2) 40%, rgba(29, 53, 87, 0.75) 100%),
    linear-gradient(90deg, rgba(13, 22, 38, 0.7) 0%, rgba(13, 22, 38, 0.05) 60%);
}
@keyframes kenburns { from { transform: scale(1.08) translateY(0); } to { transform: scale(1.18) translateY(-2%); } }

.hero__content { position: relative; z-index: 5; max-width: var(--maxw); margin: 0 auto; padding: 120px 24px 90px; color: var(--honeydew); }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.78rem;
  color: var(--honeydew); background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 16px; border-radius: 999px; margin-bottom: 24px; backdrop-filter: blur(6px);
  opacity: 0; animation: fadeUp 0.8s var(--ease) 0.1s forwards;
}
@media (max-width: 560px) {
  .hero__eyebrow .eyebrow-extra { display: none; }
  .hero__eyebrow { font-size: 0.7rem; letter-spacing: 0.1em; }
}
.pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.6); animation: pulse 1.8s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.6); } 70% { box-shadow: 0 0 0 10px rgba(230, 57, 70, 0); } 100% { box-shadow: 0 0 0 0 rgba(230, 57, 70, 0); } }

.hero__title { font-family: var(--display); font-weight: 600; font-size: clamp(2.8rem, 7.5vw, 6rem); line-height: 1.0; letter-spacing: -0.015em; margin-bottom: 26px; }
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line > span { display: block; transform: translateY(110%); opacity: 0; animation: lineUp 0.9s var(--ease) forwards; }
.hero__title .line:nth-child(1) > span { animation-delay: 0.2s; }
.hero__title .line:nth-child(2) > span { animation-delay: 0.34s; }
.hero__title .line:nth-child(3) > span { animation-delay: 0.48s; }
.hero__title .accent { color: var(--powder); font-style: italic; font-weight: 500; }
.hero__sub { max-width: 560px; font-size: clamp(1.05rem, 2vw, 1.3rem); font-weight: 300; color: rgba(241, 250, 238, 0.94); margin-bottom: 34px; opacity: 0; animation: fadeUp 0.9s var(--ease) 0.7s forwards; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 40px; opacity: 0; animation: fadeUp 0.9s var(--ease) 0.9s forwards; }
.countdown { display: inline-flex; align-items: baseline; gap: 14px; flex-wrap: wrap; padding: 16px 24px; background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(168, 218, 220, 0.4); border-radius: var(--radius); backdrop-filter: blur(8px); opacity: 0; animation: fadeUp 0.9s var(--ease) 1.1s forwards; }
.countdown__label { text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.72rem; font-weight: 700; color: var(--powder); }
.countdown__tour { font-weight: 700; color: #fff; }
.countdown__time { font-weight: 800; font-size: 1.5rem; color: #fff; font-variant-numeric: tabular-nums; }
.hero__scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); width: 26px; height: 44px; border: 2px solid rgba(241, 250, 238, 0.6); border-radius: 14px; z-index: 5; }
.hero__scroll span { position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; border-radius: 2px; background: var(--honeydew); transform: translateX(-50%); animation: scrollDot 1.6s infinite; }
@keyframes scrollDot { 0% { opacity: 0; top: 8px; } 40% { opacity: 1; } 80% { opacity: 0; top: 24px; } 100% { opacity: 0; } }

/* ---------- Stats ---------- */
.stats { background: var(--navy); color: var(--honeydew); display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; padding: 40px 24px; text-align: center; }
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat strong { font-family: var(--display); font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 600; color: var(--powder); line-height: 1; }
.stat span { font-size: 0.85rem; opacity: 0.78; }

/* ---------- Sections ---------- */
.section { max-width: var(--maxw); margin: 0 auto; padding: clamp(70px, 11vw, 140px) 24px; }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section__eyebrow { font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; font-size: 0.78rem; color: var(--cerulean); margin-bottom: 14px; }
.section__eyebrow--light { color: var(--powder); }
.section__title { font-family: var(--display); font-weight: 600; font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1.05; letter-spacing: -0.015em; }
.section__title--light { color: var(--honeydew); }
.section__lead { font-weight: 300; font-size: 1.15rem; color: var(--navy-70); margin-top: 16px; }
.section__lead--light { color: rgba(241, 250, 238, 0.85); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Tours ---------- */
.tour-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 28px; perspective: 1400px; }
.tour-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); transform-style: preserve-3d; }
.tour-card:hover { box-shadow: var(--shadow-lg); }
.tour-card__media { position: relative; height: 230px; overflow: hidden; }
.tour-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.tour-card:hover .tour-card__media img { transform: scale(1.07); }
.tour-card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(13, 22, 38, 0.55)); }
.tour-card__tag { position: absolute; left: 18px; bottom: 16px; z-index: 2; color: #fff; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.tour-card__badge { position: absolute; top: 16px; right: 16px; z-index: 2; background: var(--red); color: #fff; font-weight: 800; font-size: 0.8rem; letter-spacing: 0.04em; padding: 6px 14px; border-radius: 999px; }
.tour-card__body { padding: 26px; }
.tour-card__title { font-family: var(--display); font-size: 1.7rem; font-weight: 600; margin-bottom: 10px; }
.tour-card__desc { color: var(--navy-70); margin-bottom: 20px; }
.tour-card__meta { display: flex; gap: 8px; border-top: 1px solid rgba(29, 53, 87, 0.1); border-bottom: 1px solid rgba(29, 53, 87, 0.1); padding: 14px 0; margin-bottom: 22px; }
.tour-card__meta li { flex: 1; display: flex; flex-direction: column; font-weight: 700; font-size: 1.05rem; }
.tour-card__meta li span { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--cerulean); margin-bottom: 2px; }
.tour-card__btn { width: 100%; }
.tour-card--feature { outline: 3px solid var(--red); outline-offset: -3px; }
.tour-card__see { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.03em; color: var(--cerulean); text-transform: uppercase; margin: -8px 0 16px; display: flex; align-items: center; gap: 7px; flex-wrap: wrap; }
.tour-card__see::before { content: "📍"; }

/* ---------- Story strip ---------- */
.story { background: linear-gradient(135deg, var(--cerulean), var(--navy)); color: var(--honeydew); }
.story__inner { max-width: 900px; margin: 0 auto; padding: clamp(70px, 10vw, 120px) 24px; text-align: center; }
.story__line { font-family: var(--display); font-size: clamp(1.8rem, 4.5vw, 3rem); font-weight: 600; line-height: 1.15; margin-bottom: 20px; }
.story__line em { color: var(--powder); }
.story__body { font-weight: 300; font-size: 1.2rem; color: rgba(241, 250, 238, 0.9); max-width: 680px; margin: 0 auto; }

/* ---------- Map ---------- */
.map-section { max-width: 100%; }
.map-wrap { max-width: var(--maxw); margin: 0 auto; }
.map-controls { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 22px; }
.route-btn { font-family: var(--font); font-weight: 700; font-size: 0.95rem; padding: 11px 22px; border-radius: 999px; cursor: pointer; background: #fff; color: var(--navy); border: 2px solid rgba(29, 53, 87, 0.15); transition: 0.3s var(--ease); }
.route-btn:hover { border-color: var(--cerulean); transform: translateY(-2px); }
.route-btn.is-active { background: var(--navy); color: #fff; border-color: var(--navy); }
.route-btn--play { background: var(--red); color: #fff; border-color: var(--red); }
.leaflet-map { height: 520px; width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); z-index: 1; }
.map-note { text-align: center; color: var(--navy-70); margin-top: 16px; font-weight: 600; }
.bus-marker { font-size: 1.8rem; filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3)); }

/* ---------- Gallery ---------- */
.gallery__grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 16px; }
.gallery__item { position: relative; border: 0; padding: 0; cursor: pointer; overflow: hidden; border-radius: var(--radius); background: var(--navy); box-shadow: var(--shadow-sm); }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.gallery__item:hover img { transform: scale(1.08); }
.gallery__cap { position: absolute; left: 16px; bottom: 14px; color: #fff; font-weight: 700; letter-spacing: 0.02em; text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5); transform: translateY(8px); opacity: 0; transition: 0.4s var(--ease); }
.gallery__item:hover .gallery__cap { transform: none; opacity: 1; }
.gallery__item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(13, 22, 38, 0.6)); opacity: 0; transition: 0.4s var(--ease); }
.gallery__item:hover::after { opacity: 1; }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 3000; display: flex; align-items: center; justify-content: center; padding: 4vw; background: rgba(13, 22, 38, 0.92); backdrop-filter: blur(8px); opacity: 0; visibility: hidden; transition: opacity 0.35s var(--ease), visibility 0.35s; }
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90vw; max-height: 88vh; border-radius: var(--radius); box-shadow: var(--shadow-lg); transform: scale(0.94); transition: transform 0.4s var(--ease); }
.lightbox.is-open img { transform: scale(1); }
.lightbox__close { position: absolute; top: 22px; right: 28px; background: none; border: 0; color: #fff; font-size: 2.6rem; line-height: 1; cursor: pointer; }

/* ---------- Party ---------- */
.party { position: relative; overflow: hidden; max-width: 100%; padding: 0; background: #0c0f1a; }
.party__bg { position: absolute; inset: 0; }
.party__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.32; filter: saturate(1.2); }
.party__lights { position: absolute; inset: 0; background: radial-gradient(40% 60% at 15% 20%, rgba(230, 57, 70, 0.45), transparent 60%), radial-gradient(40% 60% at 85% 30%, rgba(69, 123, 157, 0.55), transparent 60%), radial-gradient(50% 70% at 50% 100%, rgba(168, 218, 220, 0.3), transparent 60%); animation: lights 8s ease-in-out infinite; mix-blend-mode: screen; }
@keyframes lights { 0%, 100% { opacity: 0.7; } 50% { opacity: 1; } }
.party__inner { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; padding: clamp(70px, 11vw, 130px) 24px; display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: center; }
.party__lead { color: rgba(241, 250, 238, 0.88); font-weight: 300; font-size: 1.2rem; margin: 18px 0 26px; max-width: 480px; }
.party__price { display: flex; align-items: baseline; gap: 10px; margin-bottom: 24px; color: #fff; }
.party__from { text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.8rem; color: var(--powder); font-weight: 700; }
.party__amount { font-family: var(--display); font-size: 3rem; font-weight: 600; color: #fff; }
.party__unit { color: rgba(241, 250, 238, 0.7); }
.party__slots { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }
.slot { font-family: var(--font); font-weight: 700; cursor: pointer; padding: 11px 20px; border-radius: 999px; background: rgba(255, 255, 255, 0.1); color: var(--honeydew); border: 1px solid rgba(168, 218, 220, 0.4); transition: 0.3s var(--ease); }
.slot:hover, .slot.is-active { background: var(--powder); color: var(--navy); transform: translateY(-2px); }
.party__visual { display: flex; flex-direction: column; align-items: center; gap: 30px; }
.disco-ball { width: 130px; height: 130px; border-radius: 50%; background: radial-gradient(circle at 35% 30%, #fff, var(--powder) 40%, var(--cerulean) 75%, var(--navy)); position: relative; box-shadow: 0 0 60px rgba(168, 218, 220, 0.6); animation: spin 6s linear infinite; }
.disco-ball::before { content: ""; position: absolute; inset: 0; border-radius: 50%; background: repeating-linear-gradient(0deg, rgba(0,0,0,0.15) 0 8px, transparent 8px 16px), repeating-linear-gradient(90deg, rgba(0,0,0,0.15) 0 8px, transparent 8px 16px); }
@keyframes spin { to { transform: rotate(360deg); } }
.headphones { font-size: 3.5rem; animation: float 4s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.party__dancers { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.party__dancer { position: absolute; height: 34%; opacity: 0.16; animation: float 5s ease-in-out infinite; }
.party__dancer--1 { left: 3%; bottom: 0; }
.party__dancer--2 { right: 4%; bottom: 4%; height: 28%; animation-delay: 0.8s; }
@media (max-width: 760px) { .party__dancer { display: none; } }

/* ---------- Weddings ---------- */
.weddings__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: center; }
.weddings__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 1 / 1; }
.weddings__media img { width: 100%; height: 100%; object-fit: cover; }
.ticks { margin: 22px 0 28px; display: grid; gap: 12px; }
.ticks li { padding-left: 32px; position: relative; font-weight: 600; }
.ticks li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 22px; height: 22px; border-radius: 50%; background: var(--red); color: #fff; font-size: 0.75rem; display: flex; align-items: center; justify-content: center; font-weight: 800; }

/* ---------- Audio ---------- */
.audio__inner { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 56px; align-items: center; }
.audio__phone { justify-self: center; width: 240px; height: 480px; background: var(--navy); border-radius: 38px; padding: 14px; box-shadow: var(--shadow-lg); border: 6px solid #0c1626; }
.audio__screen { height: 100%; border-radius: 26px; background: linear-gradient(180deg, var(--cerulean), var(--navy)); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; color: #fff; padding: 24px; text-align: center; }
.audio__wave { display: flex; align-items: flex-end; gap: 5px; height: 80px; }
.audio__wave span { width: 7px; background: var(--powder); border-radius: 4px; animation: wave 1.1s ease-in-out infinite; }
.audio__wave span:nth-child(1) { animation-delay: 0s; } .audio__wave span:nth-child(2) { animation-delay: 0.15s; } .audio__wave span:nth-child(3) { animation-delay: 0.3s; } .audio__wave span:nth-child(4) { animation-delay: 0.45s; } .audio__wave span:nth-child(5) { animation-delay: 0.3s; } .audio__wave span:nth-child(6) { animation-delay: 0.15s; } .audio__wave span:nth-child(7) { animation-delay: 0s; }
@keyframes wave { 0%, 100% { height: 18px; } 50% { height: 70px; } }
.audio__nowplaying { text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.7rem; color: var(--powder); font-weight: 700; display: inline-flex; align-items: center; gap: 7px; }
.audio__hint { font-size: 0.82rem; color: rgba(241, 250, 238, 0.82); }
.audio__dist { margin-top: 10px; font-weight: 700; font-size: 0.82rem; color: #fff; background: rgba(255,255,255,0.14); border: 1px solid rgba(168,218,220,0.4); padding: 5px 12px; border-radius: 999px; }
.audio__poi { font-family: var(--display); font-size: 1.3rem; font-weight: 600; }
.audio__langs { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.audio__langs span { background: #fff; box-shadow: var(--shadow-sm); padding: 9px 18px; border-radius: 999px; font-weight: 700; }

/* ---------- Reviews ---------- */
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; }
.review { background: #fff; border-radius: var(--radius-lg); padding: 32px 28px; box-shadow: var(--shadow-sm); border-top: 5px solid var(--powder); }
.review p { font-family: var(--display); font-size: 1.15rem; font-weight: 400; font-style: italic; margin-bottom: 16px; line-height: 1.5; }
.review footer { font-weight: 700; color: var(--cerulean); }

/* ---------- FAQ ---------- */
.faq__list { max-width: 800px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid rgba(29, 53, 87, 0.14); }
.faq__item summary { cursor: pointer; list-style: none; padding: 22px 44px 22px 4px; font-family: var(--display); font-size: 1.25rem; font-weight: 600; position: relative; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; position: absolute; right: 8px; top: 50%; transform: translateY(-50%); font-size: 1.6rem; color: var(--red); font-family: var(--font); font-weight: 400; transition: transform 0.3s var(--ease); }
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__a { padding: 0 4px 24px; color: var(--navy-70); font-size: 1.05rem; max-width: 680px; }

/* ---------- Contact ---------- */
.contact { max-width: 100%; background: var(--navy); }
.contact__inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.contact__list { margin-top: 26px; display: grid; gap: 16px; }
.contact__list li { display: grid; grid-template-columns: 70px 1fr; gap: 14px; color: var(--honeydew); align-items: baseline; }
.contact__list li span { text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.72rem; font-weight: 800; color: var(--powder); }
.contact__list a { font-weight: 700; }
.contact__list a:hover { color: var(--powder); }
.contact__card { background: var(--honeydew); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-lg); }
.contact__card h3 { font-family: var(--display); font-size: 1.6rem; font-weight: 600; }
.contact__card-note { color: var(--navy-70); font-size: 0.9rem; margin-bottom: 18px; }
.contact__card form { display: grid; gap: 14px; }
.contact__card label { display: grid; gap: 6px; font-weight: 700; font-size: 0.85rem; color: var(--navy); }
.contact__card input, .contact__card select, .contact__card textarea { font-family: var(--font); font-size: 1rem; padding: 12px 14px; border: 2px solid rgba(29, 53, 87, 0.18); border-radius: 12px; background: #fff; }
.contact__card input:focus, .contact__card select:focus, .contact__card textarea:focus { border-color: var(--cerulean); outline: none; }
.contact__card textarea { resize: vertical; min-height: 74px; }
.contact__card label small { font-weight: 600; opacity: 0.6; }
.form-status { font-weight: 700; min-height: 1.2em; }
.form-status.ok { color: var(--cerulean); }

/* ---------- Footer ---------- */
.footer { background: #0c1626; color: var(--honeydew); padding: 56px 24px 40px; }
/* App page: no links away from the page — only the app-store buttons. Hide footer nav + social. */
body[data-page="app"] .footer__nav,
body[data-page="app"] .footer__social { display: none; }
.footer__inner { max-width: var(--maxw); margin: 0 auto; display: grid; gap: 28px; }
.footer__logo { height: 64px; width: auto; margin-bottom: 6px; }
.footer__brand .nav__brand-text { font-size: 1.4rem; font-weight: 300; }
.footer__brand strong { color: var(--red); font-weight: 800; }
.footer__brand p { opacity: 0.7; margin-top: 6px; }
.footer__nav { display: flex; flex-wrap: wrap; gap: 24px; }
.footer__nav a { font-weight: 600; opacity: 0.85; }
.footer__nav a:hover { color: var(--powder); }
.footer__legal { opacity: 0.55; font-size: 0.85rem; border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 22px; }

/* ---------- Floating CTA ---------- */
.float-cta { position: fixed; bottom: 22px; right: 22px; z-index: 900; background: var(--red); color: #fff; font-weight: 800; padding: 15px 26px; border-radius: 999px; box-shadow: 0 14px 34px rgba(230, 57, 70, 0.45); transform: translateY(140%); transition: transform 0.45s var(--ease); }
.float-cta.is-shown { transform: translateY(0); }
.float-cta:hover { transform: translateY(-3px); }

/* ---------- Animations ---------- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@keyframes lineUp { from { opacity: 0; transform: translateY(110%); } to { opacity: 1; transform: none; } }

/* ---------- Nav active state ---------- */
.nav__links a.is-active { color: var(--powder); }
.nav.is-scrolled .nav__links a.is-active { color: var(--red); }
.nav__links a.is-active::after { width: 100%; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero { position: relative; min-height: 56vh; display: flex; align-items: flex-end; overflow: hidden; background: var(--navy); }
.page-hero--tall { min-height: 70vh; }
.page-hero__media { position: absolute; inset: 0; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; transform: scale(1.05); }
.page-hero__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,22,38,0.55) 0%, rgba(13,22,38,0.15) 45%, rgba(29,53,87,0.85) 100%), linear-gradient(90deg, rgba(13,22,38,0.6), transparent 65%); }
.page-hero__inner { position: relative; z-index: 3; max-width: var(--maxw); margin: 0 auto; width: 100%; padding: 0 24px 64px; color: var(--honeydew); }
.page-hero__crumb { font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; font-size: 0.74rem; color: var(--powder); margin-bottom: 14px; opacity: 0; animation: fadeUp 0.7s var(--ease) 0.1s forwards; }
.page-hero__crumb a:hover { color: #fff; }
.page-hero__title { font-family: var(--display); font-weight: 600; font-size: clamp(2.4rem, 6vw, 4.6rem); line-height: 1.02; letter-spacing: -0.015em; opacity: 0; animation: fadeUp 0.8s var(--ease) 0.25s forwards; }
.page-hero__sub { max-width: 600px; font-weight: 300; font-size: clamp(1.05rem, 2vw, 1.3rem); color: rgba(241,250,238,0.92); margin-top: 16px; opacity: 0; animation: fadeUp 0.8s var(--ease) 0.4s forwards; }

/* ---------- Experience cards (home) ---------- */
.experiences { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.exp-card { position: relative; display: flex; flex-direction: column; justify-content: flex-end; min-height: 420px; border-radius: var(--radius-lg); overflow: hidden; color: #fff; box-shadow: var(--shadow-sm); transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease); }
.exp-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.exp-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); z-index: 0; }
.exp-card:hover img { transform: scale(1.08); }
.exp-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,22,38,0.1) 30%, rgba(13,22,38,0.85)); z-index: 1; }
.exp-card__body { position: relative; z-index: 2; padding: 30px; }
.exp-card__tag { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--powder); }
.exp-card__title { font-family: var(--display); font-size: 1.9rem; font-weight: 600; margin: 6px 0 8px; }
.exp-card__desc { color: rgba(241,250,238,0.85); font-weight: 300; margin-bottom: 16px; }
.exp-card__link { font-weight: 700; color: #fff; display: inline-flex; align-items: center; gap: 8px; }
.exp-card__link::after { content: "→"; transition: transform 0.3s var(--ease); }
.exp-card:hover .exp-card__link::after { transform: translateX(5px); }

/* ---------- Gallery teaser (home) ---------- */
.gallery-teaser { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery-teaser a { position: relative; aspect-ratio: 1/1; overflow: hidden; border-radius: var(--radius); }
.gallery-teaser img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery-teaser a:hover img { transform: scale(1.08); }
.center-cta { text-align: center; margin-top: 44px; }

/* ---------- Instagram ---------- */
.insta__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.insta__tile { position: relative; aspect-ratio: 1 / 1; overflow: hidden; border-radius: var(--radius); display: block; background: var(--navy); }
.insta__tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.insta__tile:hover img { transform: scale(1.08); }
.insta__tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(13, 22, 38, 0.6)); opacity: 0; transition: opacity 0.3s var(--ease); }
.insta__tile:hover::after { opacity: 1; }
.insta__tag { position: absolute; left: 11px; bottom: 9px; z-index: 2; color: #fff; font-weight: 700; font-size: 0.82rem; opacity: 0; transform: translateY(6px); transition: 0.3s var(--ease); }
.insta__tile:hover .insta__tag { opacity: 1; transform: none; }
.ig-embeds { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: start; }
.ig-embeds .instagram-media { min-width: 0 !important; width: 100% !important; margin: 0 !important; }
@media (max-width: 900px) { .ig-embeds { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .ig-embeds { grid-template-columns: 1fr; } }
.footer__social { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; margin-top: 10px; }
.footer__social:hover { color: var(--powder); }
@media (max-width: 760px) { .insta__grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------- CTA band ---------- */
.cta-band { position: relative; background: linear-gradient(135deg, var(--red), #c12733); color: #fff; text-align: center; overflow: hidden; }
.cta-band__inner { max-width: 760px; margin: 0 auto; padding: clamp(64px, 9vw, 110px) 24px; position: relative; z-index: 2; }
.cta-band h2 { font-family: var(--display); font-weight: 600; font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1.08; margin-bottom: 14px; }
.cta-band p { font-weight: 300; font-size: 1.15rem; opacity: 0.92; margin-bottom: 28px; }
.cta-band .btn--cta { background: #fff; color: var(--red); box-shadow: 0 12px 30px rgba(0,0,0,0.18); }
.cta-band .btn--cta:hover { background: var(--honeydew); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .party__inner, .weddings__grid, .audio__inner, .contact__inner { grid-template-columns: 1fr; }
  .party__visual { order: -1; }
  .audio__phone { width: 200px; height: 400px; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 26px 14px; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--tall { grid-row: span 1; }
  .experiences { grid-template-columns: repeat(2, 1fr); }
  .gallery-teaser { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .experiences { grid-template-columns: 1fr; }
}
@media (max-width: 1000px) {
  .nav__links { position: fixed; inset: 0 0 0 auto; width: min(80vw, 320px); background: var(--navy); flex-direction: column; justify-content: center; gap: 24px; padding: 40px; transform: translateX(100%); transition: transform 0.4s var(--ease); box-shadow: var(--shadow-lg); overflow-y: auto; }
  .nav__links.is-open { transform: translateX(0); }
  .nav__links a, .nav.is-scrolled .nav__links a { color: var(--honeydew); font-size: 1.2rem; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
}
@media (max-width: 760px) {
  .leaflet-map { height: 400px; }
  .countdown { width: 100%; }
}

/* ---------- App page ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; counter-reset: step; }
.step { background: #fff; border-radius: var(--radius-lg); padding: 34px 28px; box-shadow: var(--shadow-sm); position: relative; }
.step::before { counter-increment: step; content: counter(step); display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 50%; background: var(--red); color: #fff; font-family: var(--display); font-weight: 600; font-size: 1.4rem; margin-bottom: 16px; }
.step h3 { font-family: var(--display); font-weight: 600; font-size: 1.35rem; margin-bottom: 8px; }
.step p { color: var(--navy-70); }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.feature { background: var(--honeydew); border: 1px solid rgba(29,53,87,0.1); border-radius: var(--radius); padding: 26px; }
.feature__icon { font-size: 1.8rem; margin-bottom: 10px; }
.feature h3 { font-family: var(--display); font-weight: 600; font-size: 1.2rem; margin-bottom: 6px; }
.feature p { color: var(--navy-70); font-size: 0.95rem; }
.store-btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 8px; }
.store-btn { display: inline-flex; align-items: center; gap: 10px; background: var(--navy); color: #fff; padding: 12px 24px; border-radius: 14px; font-weight: 700; transition: transform 0.3s var(--ease); }
.store-btn:hover { transform: translateY(-3px); }
.store-btn--soon { opacity: 0.55; cursor: default; }
.store-btn--soon:hover { transform: none; }
.store-btn span { display: flex; flex-direction: column; line-height: 1.1; }
.store-btn span small { font-size: 0.68rem; font-weight: 600; opacity: 0.8; }
.store-btn .store-btn__big { font-size: 1.1rem; }

/* Beta phase signalling (app page) */
.beta-tag { display: inline-block; background: var(--powder); color: var(--navy); font-weight: 800; font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; padding: 3px 8px; border-radius: 6px; }
.beta-note { max-width: 500px; margin-top: 18px; font-size: 0.9rem; line-height: 1.55; color: rgba(255, 255, 255, 0.82); }
.beta-note strong { color: #fff; font-weight: 700; }
.beta-note--center { margin-left: auto; margin-right: auto; text-align: center; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }

/* ---------- App demo: scrollytelling phone ---------- */
.appdemo { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 56px; align-items: start; }
.appdemo__stage { position: sticky; top: 104px; display: flex; justify-content: center; }
.device { position: relative; width: 300px; height: 610px; background: #0b1422; border-radius: 46px; padding: 13px; box-shadow: var(--shadow-lg), inset 0 0 0 2px rgba(255,255,255,0.06); }
.device::before { content: ""; position: absolute; top: 13px; left: 50%; transform: translateX(-50%); width: 116px; height: 26px; background: #0b1422; border-radius: 0 0 16px 16px; z-index: 30; }
.device__screen { position: relative; width: 100%; height: 100%; border-radius: 34px; overflow: hidden; background: var(--navy); }
.screen { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity 0.55s var(--ease); display: flex; flex-direction: column; }
.screen.is-active { opacity: 1; visibility: visible; }
.screen__bar { height: 38px; flex: 0 0 38px; display: flex; align-items: center; justify-content: space-between; padding: 0 20px 0 22px; font-size: 0.72rem; font-weight: 700; color: #fff; z-index: 5; }
.screen__bar span:last-child { letter-spacing: 1px; }

/* Unlock screen */
.scr-unlock { background: linear-gradient(180deg, #16263f, var(--navy)); align-items: center; text-align: center; padding: 8px 26px 26px; color: var(--honeydew); }
.scr-unlock .scr-logo { width: 74px; height: 74px; margin: 18px auto 14px; }
.scr-unlock h4 { font-family: var(--display); font-weight: 600; font-size: 1.4rem; }
.scr-unlock p { font-size: 0.8rem; color: rgba(241,250,238,0.75); margin: 6px 0 20px; }
.scr-field { width: 100%; background: rgba(255,255,255,0.08); border: 1px solid rgba(168,218,220,0.35); border-radius: 12px; padding: 12px 14px; margin-bottom: 12px; text-align: left; font-size: 0.85rem; color: #fff; display: flex; align-items: center; gap: 8px; }
.scr-field b { color: var(--powder); }
.scr-field .ph { color: rgba(241,250,238,0.45); }
.scr-btn { width: 100%; background: var(--red); color: #fff; font-weight: 800; letter-spacing: 0.04em; padding: 13px; border-radius: 12px; margin-top: 6px; box-shadow: 0 10px 24px rgba(230,57,70,0.4); }
.scr-cursor { width: 9px; height: 9px; border-radius: 50%; background: var(--powder); margin: 16px auto 0; animation: pulse 1.6s infinite; }

/* Download screen */
.scr-download { background: var(--honeydew); color: var(--navy); padding: 8px 24px 26px; }
.scr-download .scr-head { font-family: var(--display); font-weight: 600; font-size: 1.25rem; margin: 14px 0 4px; }
.scr-download .scr-sub { font-size: 0.78rem; color: var(--navy-70); margin-bottom: 26px; }
.scr-card { background: #fff; border-radius: 16px; padding: 18px; box-shadow: var(--shadow-sm); }
.scr-card .row { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 0.9rem; margin-bottom: 14px; }
.scr-card .row .ico { width: 34px; height: 34px; border-radius: 10px; background: var(--powder); display: flex; align-items: center; justify-content: center; }
.scr-progress { height: 12px; border-radius: 999px; background: rgba(29,53,87,0.12); overflow: hidden; }
.scr-progress span { display: block; height: 100%; width: 0%; background: linear-gradient(90deg, var(--cerulean), var(--red)); border-radius: 999px; transition: width 0.2s linear; }
.scr-pct { text-align: right; font-weight: 800; font-size: 0.85rem; margin-top: 8px; color: var(--cerulean); }
.scr-note { font-size: 0.72rem; color: var(--navy-70); margin-top: 18px; text-align: center; }

/* Live map screen */
.scr-live { background: #dfeaf0; }
.scr-map { position: relative; flex: 1; overflow: hidden; background:
  radial-gradient(120% 90% at 80% 10%, #c9e2e8, transparent 60%), linear-gradient(180deg, #e4eef2, #cfe0e6); }
.scr-map__sea { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(69,123,157,0.18), transparent 55%); }
.scr-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.scr-route { fill: none; stroke: var(--cerulean); stroke-width: 4; stroke-linecap: round; stroke-dasharray: 2 9; opacity: 0.85; }
.scr-poi { fill: #fff; stroke: var(--navy); stroke-width: 3; }
.scr-poi--active { fill: var(--red); stroke: #fff; }
.scr-bus { position: absolute; font-size: 1.5rem; transform: translate(-50%,-50%); filter: drop-shadow(0 3px 4px rgba(0,0,0,0.3)); z-index: 4; }
.scr-poi-dot { position: absolute; width: 12px; height: 12px; border-radius: 50%; background: #fff; border: 3px solid var(--navy); transform: translate(-50%,-50%); z-index: 3; transition: background 0.3s, border-color 0.3s, transform 0.3s; }
.scr-poi-dot.on { background: var(--red); border-color: #fff; transform: translate(-50%,-50%) scale(1.35); }
.scr-userdot { position: absolute; width: 14px; height: 14px; border-radius: 50%; background: var(--cerulean); border: 3px solid #fff; transform: translate(-50%,-50%); box-shadow: 0 0 0 0 rgba(69,123,157,0.5); animation: pulse 1.8s infinite; }
.scr-poicard { position: absolute; left: 14px; right: 14px; bottom: 64px; background: #fff; border-radius: 16px; padding: 12px 14px; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 12px; transform: translateY(140%); transition: transform 0.5s var(--ease); z-index: 6; }
.scr-poicard.show { transform: none; }
.scr-poicard .thumb { width: 46px; height: 46px; border-radius: 10px; flex: 0 0 46px; object-fit: cover; background: var(--powder); }
.scr-poicard .meta { min-width: 0; }
.scr-poicard .lab { font-size: 0.6rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); display: flex; align-items: center; gap: 5px; }
.scr-poicard .nm { font-family: var(--display); font-weight: 600; font-size: 1rem; color: var(--navy); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.scr-poicard .ds { font-size: 0.72rem; color: var(--navy-70); }
.scr-tabbar { position: absolute; left: 0; right: 0; bottom: 0; height: 54px; background: var(--navy); display: flex; align-items: center; justify-content: space-around; font-size: 1.1rem; z-index: 7; }
.scr-tabbar span { opacity: 0.5; }
.scr-tabbar span.on { opacity: 1; filter: drop-shadow(0 0 6px rgba(230,57,70,0.8)); }

/* Explore screen */
.scr-explore { background: var(--honeydew); color: var(--navy); padding: 6px 18px 18px; overflow: hidden; }
.scr-fact { background: linear-gradient(140deg, var(--cerulean), var(--navy)); color: #fff; border-radius: 16px; padding: 18px; margin: 12px 0; }
.scr-fact .k { font-size: 0.62rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--powder); }
.scr-fact .t { font-family: var(--display); font-weight: 600; font-size: 1.15rem; margin: 4px 0 6px; }
.scr-fact .b { font-size: 0.76rem; opacity: 0.9; }
.scr-list-row { display: flex; align-items: center; gap: 10px; background: #fff; border-radius: 12px; padding: 9px; margin-bottom: 9px; box-shadow: var(--shadow-sm); }
.scr-list-row .t { width: 40px; height: 40px; border-radius: 9px; object-fit: cover; flex: 0 0 40px; background: var(--powder); }
.scr-list-row .nm { font-weight: 700; font-size: 0.82rem; }
.scr-list-row .ct { font-size: 0.68rem; color: var(--cerulean); font-weight: 700; }

/* Steps beside the phone */
.appsteps { display: flex; flex-direction: column; gap: 18px; }
.appstep { background: #fff; border-radius: var(--radius-lg); padding: 30px 28px; box-shadow: var(--shadow-sm); border-left: 4px solid rgba(29,53,87,0.12); opacity: 0.55; transform: translateY(10px); transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s; }
.appstep.is-active { opacity: 1; transform: none; border-left-color: var(--red); box-shadow: var(--shadow-md); }
.appstep__n { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: var(--navy); color: #fff; font-family: var(--display); font-weight: 600; margin-bottom: 12px; transition: background 0.4s; }
.appstep.is-active .appstep__n { background: var(--red); }
.appstep h3 { font-family: var(--display); font-weight: 600; font-size: 1.45rem; margin-bottom: 8px; }
.appstep p { color: var(--navy-70); }
.appstep:first-child { margin-top: 4vh; }
.appstep:last-child { margin-bottom: 30vh; }

@media (max-width: 900px) {
  .appdemo { grid-template-columns: 1fr; gap: 24px; }
  /* Don't pin the phone on mobile — a sticky 468px mockup hovers over the
     feature text as you scroll. Let it sit in normal flow instead. */
  .appdemo__stage { position: static; margin: 0 auto; }
  .device { width: 230px; height: 468px; }
  .appstep:first-child { margin-top: 0; }
  .appstep:last-child { margin-bottom: 0; }
}

/* ===================== App hero showpiece ===================== */
.apphero { position: relative; overflow: hidden; color: var(--honeydew);
  background: radial-gradient(130% 95% at 80% -15%, #28507a 0%, var(--navy) 52%, #0a1320 100%); }
.apphero__bg { position: absolute; inset: 0; pointer-events: none; }
.apphero__bg::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(168,218,220,0.12) 1px, transparent 1.4px); background-size: 26px 26px; -webkit-mask: radial-gradient(80% 70% at 65% 35%, #000, transparent 78%); mask: radial-gradient(80% 70% at 65% 35%, #000, transparent 78%); opacity: 0.7; }
.apphero__glow { position: absolute; width: 560px; height: 560px; right: -120px; top: -140px; background: radial-gradient(circle, rgba(230,57,70,0.34), transparent 62%); filter: blur(10px); animation: glowPulse 7s ease-in-out infinite; }
.apphero__glow2 { position: absolute; width: 460px; height: 460px; left: -160px; bottom: -200px; background: radial-gradient(circle, rgba(168,218,220,0.28), transparent 62%); filter: blur(10px); }
@keyframes glowPulse { 0%,100% { opacity: 0.7; transform: scale(1); } 50% { opacity: 1; transform: scale(1.08); } }
.apphero__inner { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; padding: 150px 24px 96px; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 44px; align-items: center; }
.apphero__text h1 { font-family: var(--display); font-weight: 600; font-size: clamp(2.5rem, 5.6vw, 4.6rem); line-height: 1.0; letter-spacing: -0.015em; margin: 16px 0 18px; }
.apphero__text .accent2 { color: var(--powder); font-style: italic; font-weight: 500; }
.apphero__sub { font-weight: 300; font-size: clamp(1.05rem, 2vw, 1.3rem); color: rgba(241,250,238,0.92); max-width: 520px; margin-bottom: 24px; }
.apphero__lang { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.08); border: 1px solid rgba(168,218,220,0.32); border-radius: 999px; padding: 6px; margin-bottom: 26px; backdrop-filter: blur(6px); }
.apphero__lang .lbl { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--powder); padding: 0 8px; }
.langbtn { border: 0; background: transparent; color: rgba(241,250,238,0.72); font-family: var(--font); font-weight: 700; font-size: 0.85rem; padding: 8px 15px; border-radius: 999px; cursor: pointer; transition: 0.3s var(--ease); }
.langbtn:hover { color: #fff; }
.langbtn.on { background: var(--honeydew); color: var(--navy); }
.apphero__device { display: flex; justify-content: center; perspective: 1500px; animation: floaty 6.5s ease-in-out infinite; }
.device--hero { transform-style: preserve-3d; transition: transform 0.2s var(--ease); will-change: transform; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
.device--hero::before { display: none; }
.device__island { position: absolute; top: 20px; left: 50%; transform: translateX(-50%); width: 86px; height: 25px; background: #000; border-radius: 999px; z-index: 30; }
.device__island::after { content: ""; position: absolute; right: 12px; top: 50%; transform: translateY(-50%); width: 8px; height: 8px; border-radius: 50%; background: #16263f; box-shadow: inset 0 0 0 1.5px rgba(168,218,220,0.4); }
.device__gloss { position: absolute; inset: 0; border-radius: 34px; background: linear-gradient(135deg, rgba(255,255,255,0.22), transparent 38%); pointer-events: none; z-index: 22; }
.device__side { position: absolute; width: 3px; border-radius: 3px; background: #1c2a3d; }
.device__side--p { right: -3px; top: 150px; height: 64px; }
.device__side--v1 { left: -3px; top: 130px; height: 34px; }
.device__side--v2 { left: -3px; top: 176px; height: 34px; }

/* ===================== Stylised Jersey map ===================== */
.jmap-wrap { position: relative; flex: 1; overflow: hidden; }
.jmap { position: absolute; inset: 0; background: radial-gradient(130% 100% at 75% 18%, #5d99b6, #356684 58%, #244a61); }
.jmap__grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px); background-size: 24px 24px; }
.jmap__svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.jland { fill: #eaf0da; stroke: #d4dfba; stroke-width: 0.5; }
.jland-shadow { fill: rgba(13,22,38,0.18); }
.jroute { fill: none; stroke: var(--red); stroke-width: 2.6; stroke-linecap: round; stroke-dasharray: 1.6 4.2; vector-effect: non-scaling-stroke; }
.jlabel { font-family: var(--font); font-weight: 800; font-size: 5px; letter-spacing: 1.4px; fill: rgba(29,53,87,0.32); text-transform: uppercase; }
circle.jpin { fill: #fff; stroke: var(--navy); stroke-width: 1.4; vector-effect: non-scaling-stroke; transition: fill 0.3s, r 0.3s; }
circle.jpin.on { fill: var(--red); stroke: #fff; }
circle.jhalo { fill: rgba(69,123,157,0.28); }
circle.jbus { fill: var(--cerulean); stroke: #fff; stroke-width: 1.6; vector-effect: non-scaling-stroke; }
.jcompass { position: absolute; top: 12px; right: 12px; z-index: 5; width: 26px; height: 26px; border-radius: 50%; background: rgba(13,22,38,0.4); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 0.62rem; font-weight: 800; border: 1px solid rgba(255,255,255,0.25); }

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  .device--hero, .apphero__device, .apphero__glow { animation: none !important; }
}
@media (max-width: 900px) {
  .apphero__inner { grid-template-columns: 1fr; gap: 30px; text-align: center; padding-top: 120px; }
  .apphero__sub { margin-left: auto; margin-right: auto; }
  .apphero__device { order: 2; }
}

/* ===================== Real device screenshots ===================== */
.device--shot::before { display: none; }
.device--shot .device__screen { background: #0b1320; }
.ascr-shot { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.apphero__lang--static { pointer-events: none; }

/* ===================== Faithful app screens (rebuilt from the real app) ===================== */
/* palette mirrors the app: navy #0F1D2F, red #E63946, cream #F1FAEE, teal #2A9D8F, gold #F4A261 */
.ascr-tour { background: #0f1d2f; color: var(--honeydew); }
.ascr-tour__hero { position: relative; height: 232px; flex: 0 0 232px; background-size: cover; background-position: center; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.ascr-tour__hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,29,47,0.35) 0%, rgba(15,29,47,0.55) 55%, #0f1d2f 100%); }
.ascr-logo { width: 116px; height: 116px; position: relative; z-index: 2; }
.ascr-orn { position: relative; z-index: 2; color: #f4a261; letter-spacing: 4px; font-size: 0.7rem; margin: 8px 0 2px; }
.ascr-est { position: relative; z-index: 2; font-family: var(--display); font-weight: 600; text-align: center; font-size: 0.92rem; line-height: 1.2; letter-spacing: 0.5px; }
.ascr-tour__body { flex: 1; padding: 14px 13px; overflow: hidden; }
.ascr-select { text-align: center; font-size: 0.6rem; letter-spacing: 0.18em; color: rgba(241,250,238,0.5); font-weight: 800; margin-bottom: 13px; }
.ascr-card { position: relative; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-left-width: 4px; border-radius: 14px; padding: 13px 50px 12px 14px; margin-bottom: 11px; }
.ascr-card--red { border-left-color: var(--red); }
.ascr-card--teal { border-left-color: #2a9d8f; }
.ascr-card--gold { border-left-color: #f4a261; }
.ascr-card h5 { font-family: var(--display); font-weight: 600; font-size: 1.02rem; text-transform: uppercase; letter-spacing: 0.5px; }
.ascr-card .dur { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em; color: rgba(241,250,238,0.5); text-transform: uppercase; }
.ascr-card p { font-size: 0.7rem; color: rgba(241,250,238,0.78); margin: 6px 0 8px; line-height: 1.42; }
.ascr-card .stat { font-size: 0.58rem; font-weight: 800; letter-spacing: 0.06em; color: rgba(241,250,238,0.55); text-transform: uppercase; }
.ascr-card__arrow { position: absolute; right: 13px; top: 50%; transform: translateY(-50%); width: 33px; height: 33px; border-radius: 50%; border: 1.5px solid currentColor; display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.ascr-card--red .ascr-card__arrow { color: var(--red); }
.ascr-card--teal .ascr-card__arrow { color: #2a9d8f; }
.ascr-card--gold .ascr-card__arrow { color: #f4a261; }

/* Stop detail (real screen: photo + title + description, no audio CTA) */
.ascr-stop { background: var(--honeydew); }
.ascr-stop__hero { position: relative; height: 200px; flex: 0 0 200px; background-size: cover; background-position: center; }
.ascr-stop__hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(15,29,47,0.8)); }
.ascr-stop__cap { position: absolute; left: 16px; bottom: 12px; z-index: 2; color: #fff; }
.ascr-stop__cap .seq { font-size: 0.58rem; font-weight: 800; letter-spacing: 0.12em; color: var(--powder); }
.ascr-stop__cap .cat { font-size: 0.58rem; font-weight: 800; letter-spacing: 0.12em; color: #f4a261; margin-left: 8px; }
.ascr-stop__cap h5 { font-family: var(--display); font-weight: 600; font-size: 1.4rem; line-height: 1.05; }
.ascr-stop__body { padding: 16px; }
.ascr-stop__row { display: flex; gap: 10px; margin-bottom: 12px; }
.ascr-chip { font-size: 0.62rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; padding: 7px 12px; border-radius: 999px; background: #fff; box-shadow: var(--shadow-sm); color: var(--navy); display: inline-flex; align-items: center; gap: 6px; }
.ascr-chip--save { color: var(--red); }
.ascr-stop__body p { font-size: 0.76rem; color: var(--navy-70); line-height: 1.5; }
.ascr-stop__loc { margin-top: 12px; height: 64px; border-radius: 12px; background: linear-gradient(120deg, #5d99b6, #2f5d78); position: relative; overflow: hidden; }
.ascr-stop__loc::after { content: "📍"; position: absolute; left: 50%; top: 48%; transform: translate(-50%,-50%); font-size: 1.1rem; }

/* Fun facts (real screen) */
.ascr-facts { background: var(--honeydew); padding: 14px; overflow: hidden; }
.ascr-fact-spot { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm); margin-bottom: 12px; }
.ascr-fact-spot__img { height: 118px; background-size: cover; background-position: center; position: relative; }
.ascr-fact-spot__img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(15,29,47,0.7)); }
.ascr-fact-spot__b { background: #fff; padding: 12px 14px; }
.ascr-fact-spot__k { font-size: 0.6rem; font-weight: 800; letter-spacing: 0.1em; color: var(--red); text-transform: uppercase; }
.ascr-fact-spot__t { font-family: var(--display); font-weight: 600; font-size: 1.1rem; color: var(--navy); margin-top: 2px; }
.ascr-fact-spot__p { font-size: 0.72rem; color: var(--navy-70); margin-top: 4px; line-height: 1.4; }
.ascr-factrow { display: flex; align-items: center; gap: 10px; background: #fff; border-radius: 12px; padding: 9px; margin-bottom: 9px; box-shadow: var(--shadow-sm); }
.ascr-factrow .ic { width: 38px; height: 38px; border-radius: 9px; flex: 0 0 38px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: #fff; }
.ascr-factrow .nm { font-weight: 700; font-size: 0.78rem; color: var(--navy); }
.ascr-factrow .ct { font-size: 0.62rem; font-weight: 800; letter-spacing: 0.06em; }

/* ---------- Embed mode (when iframed into Squarespace via ?embed=1) ---------- */
.embed .nav, .embed .footer, .embed .float-cta, .embed .scroll-progress { display: none !important; }
.embed .apphero { min-height: 0; }
.embed .apphero__inner { padding-top: 70px; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero__title .line > span, .hero__eyebrow, .hero__sub, .hero__actions, .countdown { opacity: 1; transform: none; }
  .hero__img { animation: none; transform: scale(1.05); }
}

/* ============================================================
   Tap-a-stop route reel (homepage centrepiece)
   ============================================================ */
.route-reel {
  --reel-accent: var(--cerulean);
  display: grid;
  grid-template-columns: minmax(190px, 0.42fr) 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}
.route-reel__fallback { color: var(--navy-70); line-height: 1.7; }

/* --- Line (the tappable route rail; left on desktop) --- */
.route-reel__line {
  order: -1;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(2px, 1.4vh, 14px);
}
.route-reel__track {
  position: absolute;
  left: 19px; top: 14px; bottom: 14px;
  width: 2px;
  background: rgba(29, 53, 87, 0.14);
  border-radius: 2px;
  overflow: hidden;
}
.route-reel__fill {
  position: absolute;
  inset: 0;
  transform-origin: top;
  transform: scaleY(0);
  background: var(--reel-accent);
  transition: transform 0.5s var(--ease);
}
.route-reel__stop {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 9px 12px;
  border-radius: 12px;
  color: var(--navy);
  cursor: pointer;
  transition: background 0.3s var(--ease);
}
.route-reel__stop:hover { background: rgba(168, 218, 220, 0.14); }
.route-reel__stop.is-active { background: rgba(168, 218, 220, 0.2); }
.route-reel__stop:focus-visible { outline: 3px solid var(--reel-accent); outline-offset: 2px; }
.route-reel__dot {
  flex: 0 0 14px;
  width: 14px; height: 14px;
  margin-left: 5px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid rgba(29, 53, 87, 0.28);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.route-reel__stop.is-passed .route-reel__dot,
.route-reel__stop.is-active .route-reel__dot { background: var(--reel-accent); border-color: var(--reel-accent); }
.route-reel__stop.is-active .route-reel__dot {
  transform: scale(1.28);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--reel-accent) 22%, transparent);
}
.route-reel__stoplabel { font-weight: 700; letter-spacing: 0.01em; font-size: 0.97rem; }
.route-reel__stoptour {
  margin-left: auto;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--cerulean); opacity: 0.75;
}

/* --- Stage (photo + panel) --- */
.route-reel__stage { display: grid; gap: clamp(16px, 2.5vw, 26px); }
.route-reel__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  background: var(--navy);
}
.route-reel__photo {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s var(--ease);
}
.route-reel__photo.is-active { opacity: 1; }
img.route-reel__photo.is-active { animation: kenburns 16s ease-in-out infinite alternate; }
.route-reel__photo--placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; padding: 24px; text-align: center;
  color: var(--honeydew);
  background: linear-gradient(145deg, var(--navy), var(--cerulean));
}
.route-reel__ph-name { font-family: var(--display); font-weight: 600; font-size: clamp(1.5rem, 3vw, 2.2rem); }
.route-reel__ph-note { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.72; }

.route-reel__tourtag {
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--reel-accent); margin-bottom: 8px; min-height: 0.9em;
}
.route-reel__name { font-family: var(--display); font-weight: 600; font-size: clamp(1.6rem, 3.4vw, 2.4rem); color: var(--navy); margin-bottom: 10px; }
.route-reel__story { font-size: 1.08rem; line-height: 1.6; color: var(--navy-70); max-width: 52ch; margin-bottom: 20px; }

/* --- Mobile: stack; line becomes a horizontal scroll-snap row under the stage --- */
@media (max-width: 900px) {
  .route-reel { grid-template-columns: 1fr; }
  .route-reel__line {
    order: 0;
    flex-direction: row;
    gap: 8px;
    overflow-x: auto;
    padding: 4px 2px 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .route-reel__track { display: none; }
  .route-reel__stop { flex: 0 0 auto; scroll-snap-align: start; }
  .route-reel__dot { margin-left: 0; }
  .route-reel__stoptour { display: none; }
}
