/* =============================================
   ShuttleHero — Design System v2.0
   GSAP + Lenis + Bento + Glassmorphism
   ============================================= */

/* === VARIABLES === */
:root {
  --bg:     #0b0b0b;
  --bg2:    #0f0f0f;
  --panel:  rgba(255,255,255,.04);
  --panel2: rgba(255,255,255,.07);
  --text:   #ffffff;
  --muted:  rgba(255,255,255,.72);
  --muted2: rgba(255,255,255,.50);
  --line:   rgba(255,255,255,.08);
  --line2:  rgba(255,255,255,.14);
  --accent: #f0fe6d;
  --accent2:#e8f56a;
  --maxw:   1200px;
  --radius: 20px;
  --r-sm:   14px;
  --r-lg:   28px;
  --shadow: 0 24px 70px rgba(0,0,0,.65);
  --trans:  .22s ease;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  overflow-x: hidden;
  cursor: none;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: none; font-family: inherit; }

/* === CUSTOM CURSOR === */
#cursor {
  position: fixed;
  top: 0; left: 0;
  width: 12px; height: 12px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s, background .2s;
  will-change: transform;
}
#cursor.expanded {
  width: 40px; height: 40px;
  background: rgba(240,254,109,.25);
  border: 1.5px solid rgba(240,254,109,.6);
}
#cursor-follower {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1px solid rgba(240,254,109,.3);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  will-change: transform;
  transition: width .3s, height .3s;
}
@media (max-width: 768px) {
  #cursor, #cursor-follower { display: none; }
  body, button { cursor: auto; }
}

/* === UTILITIES === */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.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; }

.section-title { text-align: center; margin-bottom: 48px; }
.section-title h2 { font-size: clamp(28px, 4vw, 42px); letter-spacing: -.5px; line-height: 1.1; }
.section-title p { margin-top: 12px; color: var(--muted); max-width: 680px; margin-inline: auto; line-height: 1.7; font-weight: 600; }

.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px; border-radius: 999px;
  border: 1px solid var(--line2); background: var(--panel);
  color: var(--muted); font-weight: 800; font-size: 12px; letter-spacing: .04em;
  white-space: nowrap;
}
.kicker-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex: 0 0 auto; }

.pill {
  display: inline-flex; align-items: center;
  padding: 9px 13px; border-radius: 999px;
  border: 1px solid var(--line2); background: var(--panel);
  font-size: 13px; font-weight: 700; color: var(--muted);
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 18px; border-radius: var(--r-sm);
  border: 1px solid var(--line2); background: var(--panel);
  font-weight: 800; font-size: 14px; color: var(--text);
  transition: border-color var(--trans), background var(--trans), transform var(--trans);
}
.btn:hover { border-color: rgba(240,254,109,.25); background: var(--panel2); }
.btn-primary {
  background: var(--accent); color: #000 !important;
  border-color: transparent; font-weight: 900;
}
.btn-primary:hover { filter: brightness(.96); background: var(--accent); }
.btn-ghost {
  background: rgba(255,255,255,.12); color: var(--text);
  border-color: rgba(255,255,255,.14);
}
.btn-ghost:hover { background: rgba(255,255,255,.18); }

/* Magnetic wrapper */
.magnetic-wrap { display: inline-block; }

/* === NOISE OVERLAY === */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0; opacity: .045; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}
nav, section, footer { position: relative; z-index: 1; }

/* === NAV === */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,10,10,.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px; gap: 16px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo { height: 54px; width: auto; object-fit: contain; transform: scale(1.15); transform-origin: left center; }
nav img { max-width: none; }
.nav-menu { display: flex; gap: 22px; align-items: center; }
.nav-menu a { font-weight: 800; font-size: 14px; color: rgba(255,255,255,.88); transition: color var(--trans); }
.nav-menu a:hover { color: var(--accent); }
.nav-cta {
  padding: 11px 16px; border-radius: var(--r-sm);
  background: var(--accent); color: #000 !important;
  font-weight: 900; border: 0; font-size: 14px;
  transition: filter var(--trans);
}
.nav-cta:hover { filter: brightness(.96); }
.burger {
  display: none; width: 44px; height: 44px; border-radius: var(--r-sm);
  border: 1px solid var(--line2); background: var(--panel);
  color: var(--text); font-size: 18px; align-items: center; justify-content: center;
}
.mobile-menu { display: none; padding: 8px 0 16px; border-top: 1px solid var(--line); }
.mobile-menu a { display: block; padding: 12px 0; color: var(--muted); font-weight: 700; border-bottom: 1px solid var(--line); }
.mobile-menu a:last-child { border-bottom: 0; }
.mobile-menu.open { display: block; }
@media (max-width: 880px) {
  .nav-menu { display: none; }
  .burger { display: inline-flex; }
}

/* === HERO === */
.hero {
  padding: 96px 0 72px;
  border-top: 0;
  isolation: isolate;
  overflow: hidden;
  position: relative;
}
.hero-mesh {
  position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden;
}
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(90px); opacity: 0; /* revealed by GSAP or CSS anim */
  animation: blobFloat var(--dur, 10s) ease-in-out infinite alternate;
}
.blob-1 {
  width: 500px; height: 400px; background: rgba(240,254,109,.22);
  top: -80px; left: -100px;
  --dur: 9s; --tx: 80px; --ty: 60px; --sc: 1.1;
  animation-delay: 0s;
}
.blob-2 {
  width: 350px; height: 350px; background: rgba(240,254,109,.12);
  top: 60%; right: -80px;
  --dur: 11s; --tx: -60px; --ty: -40px; --sc: 1.15;
  animation-delay: -4s;
}
.blob-3 {
  width: 280px; height: 280px; background: rgba(255,255,255,.05);
  top: 30%; left: 40%;
  --dur: 7s; --tx: 40px; --ty: 30px; --sc: 0.9;
  animation-delay: -2s;
}
@keyframes blobFloat {
  from { transform: translate(0,0) scale(1); opacity: 1; }
  to   { transform: translate(var(--tx,60px), var(--ty,40px)) scale(var(--sc,1.1)); opacity: .85; }
}

.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: 52px; align-items: center;
}
.hero h1 {
  margin-top: 18px;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.02; letter-spacing: -.8px;
}
.hero-lead {
  margin-top: 18px; color: var(--muted);
  font-size: 17px; line-height: 1.7; max-width: 520px;
}
.trust { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 10px; }

/* Booking card (glassmorphism) */
.booking-card {
  background: rgba(16,16,16,.8);
  border: 1px solid var(--line2);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.booking-kicker { font-size: 11px; letter-spacing: .2em; font-weight: 900; color: var(--muted2); }
.booking-title { margin-top: 8px; font-size: 28px; font-weight: 900; letter-spacing: -.4px; }
.booking-sub { margin-top: 6px; font-size: 14px; color: var(--muted); line-height: 1.5; }
.booking-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.booking-input-wrap { margin-top: 18px; display: grid; grid-template-columns: 1fr auto; gap: 10px; align-items: stretch; }
.booking-input {
  width: 100%; padding: 17px 18px;
  border-radius: 16px; border: 1px solid var(--line2);
  background: rgba(0,0,0,.4); color: var(--text);
  font-size: 15px; font-weight: 700; outline: none;
  transition: border-color var(--trans);
}
.booking-input::placeholder { color: var(--muted2); }
.booking-input:focus { border-color: rgba(240,254,109,.35); }
.booking-go {
  padding: 17px 20px; border-radius: 16px; border: 0;
  background: var(--accent); color: #000;
  font-weight: 900; font-size: 15px; white-space: nowrap;
  transition: filter var(--trans);
}
.booking-go:hover { filter: brightness(.96); }
.booking-note { margin-top: 12px; font-size: 12px; color: var(--muted2); line-height: 1.5; }

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero h1 { font-size: 40px; }
  .booking-input-wrap { grid-template-columns: 1fr; }
}

/* === GLASS CARD === */
.glass-card {
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line2);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 18px 50px rgba(0,0,0,.45);
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
}
.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(0,0,0,.55);
  border-color: rgba(240,254,109,.18);
}

/* === SERVICE SHOWCASE === */
.service-showcase {
  padding: 100px 0;
  border-top: 1px solid var(--line);
  position: relative;
  background:
    radial-gradient(900px 420px at 50% 0%, rgba(240,254,109,.4), transparent 62%),
    linear-gradient(180deg, #e8f56f, #dff06a);
}
.service-showcase::after {
  content: ""; position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 100px; pointer-events: none;
  background: linear-gradient(to bottom, transparent, var(--bg));
}
.sg-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items: stretch; }

/* Left panel */
.sg-left {
  background: rgba(0,0,0,.20); border: 1px solid rgba(0,0,0,.18);
  border-radius: var(--r-lg); padding: 32px;
  box-shadow: 0 30px 90px rgba(0,0,0,.22);
}
.sg-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px; border-radius: 999px;
  background: rgba(0,0,0,.35); border: 1px solid rgba(0,0,0,.28);
  color: rgba(255,255,255,.9); font-weight: 900; font-size: 12px;
}
.sg-eyebrow::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); display: inline-block;
}
.sg-title { margin-top: 16px; font-size: clamp(32px, 4vw, 44px); font-weight: 900; color: #000; letter-spacing: -.03em; line-height: 1.05; }
.sg-lead { margin-top: 12px; color: rgba(0,0,0,.75); font-weight: 700; line-height: 1.75; max-width: 60ch; }
.sg-features { margin-top: 18px; display: grid; gap: 12px; }
.sg-feature {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 14px; border-radius: 18px;
  background: rgba(0,0,0,.14); border: 1px solid rgba(0,0,0,.16);
}
.sg-ico {
  width: 38px; height: 38px; border-radius: 14px; flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.28); border: 1px solid rgba(0,0,0,.18); font-size: 16px;
}
.sg-feature b { display: block; color: #fff; font-size: 13px; font-weight: 950; }
.sg-feature span { display: block; margin-top: 4px; color: rgba(255,255,255,.76); font-size: 12px; font-weight: 750; line-height: 1.5; }
.sg-actions { margin-top: 18px; display: flex; gap: 10px; flex-wrap: wrap; }
.sg-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 18px; border-radius: var(--r-sm); font-weight: 950;
}
.sg-btn.primary { background: #000; color: var(--accent) !important; border: 1px solid #000; }
.sg-btn.primary:hover { filter: brightness(.97); }
.sg-btn.ghost { background: rgba(255,255,255,.22); color: #000; border: 1px solid rgba(0,0,0,.18); }
.sg-btn.ghost:hover { background: rgba(255,255,255,.3); }

/* Right panel */
.sg-right {
  background: rgba(0,0,0,.78); border: 1px solid rgba(0,0,0,.22);
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: 0 30px 90px rgba(0,0,0,.28);
  display: flex; flex-direction: column;
}
.sg-right-head { padding: 22px 22px 14px; border-bottom: 1px solid var(--line); }
.sg-right-head h3 { font-size: 18px; font-weight: 950; color: var(--text); }
.sg-right-head p { margin-top: 8px; color: var(--muted); font-weight: 700; line-height: 1.55; font-size: 14px; }
.sg-list { padding: 14px; }
.sg-item {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 14px; border-radius: 18px;
  background: rgba(255,255,255,.06); border: 1px solid var(--line2);
  margin-bottom: 10px;
  transition: transform var(--trans), background var(--trans), border-color var(--trans);
}
.sg-item:last-child { margin-bottom: 0; }
.sg-item:hover { transform: translateY(-2px); background: rgba(240,254,109,.10); border-color: rgba(240,254,109,.3); }
.sg-item-ico {
  width: 46px; height: 46px; border-radius: 16px; flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.35); border: 1px solid var(--line2); font-size: 18px;
}
.sg-item-txt b { display: block; color: var(--text); font-size: 14px; font-weight: 950; }
.sg-item-txt span { display: block; margin-top: 4px; color: var(--muted); font-size: 12px; font-weight: 800; line-height: 1.5; }
.sg-item-go { margin-left: auto; color: var(--muted); font-weight: 900; font-size: 16px; }
.scope-box { margin: 0 6px 10px; padding: 14px; border-radius: 18px; border: 1px solid var(--line2); background: rgba(255,255,255,.03); }
.scope-title { font-size: 12px; letter-spacing: .1em; color: var(--muted2); font-weight: 900; margin-bottom: 10px; }
.scope-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.scope-tile { padding: 12px; border-radius: 16px; border: 1px solid var(--line2); background: rgba(0,0,0,.22); }
.scope-tile b { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text); }
.scope-tile p { margin-top: 6px; font-size: 12px; line-height: 1.5; color: var(--muted2); font-weight: 800; }
.scope-tile a { display: inline-flex; align-items: center; gap: 6px; margin-top: 10px; font-size: 12px; font-weight: 900; color: rgba(240,254,109,.9); }
.sg-badges { padding: 0 16px 16px; display: flex; gap: 8px; flex-wrap: wrap; margin-top: auto; }
.sg-badge { padding: 8px 12px; border-radius: 999px; background: rgba(240,254,109,.1); border: 1px solid rgba(240,254,109,.2); color: var(--text); font-weight: 950; font-size: 12px; }

@media (max-width: 960px) {
  .sg-grid { grid-template-columns: 1fr; gap: 16px; }
  .sg-title { font-size: 32px; }
  .scope-grid { grid-template-columns: 1fr; }
}

/* === HORIZONTAL SCROLL (Routes) === */
.hscroll-section {
  padding: 92px 0;
  border-top: 1px solid var(--line);
  position: relative;
}
.hscroll-section::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(800px 300px at 10% 50%, rgba(255,255,255,.03), transparent 60%),
    radial-gradient(700px 300px at 90% 30%, rgba(255,255,255,.02), transparent 60%);
}
.hscroll-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 18px; margin-bottom: 28px; position: relative; z-index: 1;
}
.hscroll-head h2 { font-size: clamp(26px, 3.5vw, 40px); letter-spacing: -.4px; }
.hscroll-head p { margin-top: 8px; color: var(--muted); line-height: 1.65; font-weight: 700; max-width: 52ch; }
.hscroll-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }

.hscroll-wrap { position: relative; z-index: 1; }
.hscroll-nav {
  display: flex; gap: 10px; justify-content: flex-end;
  margin-bottom: 16px;
}
.hscroll-btn {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--line2); background: var(--panel);
  color: var(--text); font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--trans), border-color var(--trans);
}
.hscroll-btn:hover { background: var(--panel2); border-color: rgba(240,254,109,.25); color: var(--accent); }

.hscroll-track {
  display: flex; gap: 16px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; padding-bottom: 6px;
}
.hscroll-track::-webkit-scrollbar { display: none; }

/* Route cards in horizontal scroll */
.route-card {
  flex: 0 0 auto;
  width: 280px;
  scroll-snap-align: start;
  position: relative;
  border-radius: 22px;
  border: 1px solid var(--line2);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  box-shadow: 0 18px 52px rgba(0,0,0,.55);
  padding: 18px;
  min-height: 195px;
  display: flex; flex-direction: column;
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
  overflow: hidden;
}
.route-card::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(380px 160px at 10% 0%, rgba(240,254,109,.14), transparent 55%),
    radial-gradient(380px 160px at 110% 35%, rgba(240,254,109,.07), transparent 60%);
}
.route-card:hover { transform: translateY(-4px); box-shadow: 0 26px 70px rgba(0,0,0,.65); border-color: rgba(240,254,109,.2); }
.route-top { position: relative; display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; }
.route-badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 10px; border-radius: 999px;
  border: 1px solid var(--line2); background: rgba(0,0,0,.22);
  color: var(--muted); font-weight: 900; font-size: 12px;
}
.route-badge i { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); display: inline-block; }
.route-ico {
  width: 40px; height: 40px; border-radius: 14px; flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line2); background: rgba(0,0,0,.28); font-size: 18px;
}
.route-title { position: relative; margin-top: 12px; font-size: 15px; line-height: 1.25; font-weight: 900; letter-spacing: -.05px; }
.route-desc { position: relative; margin-top: 8px; color: var(--muted); font-size: 13px; line-height: 1.6; font-weight: 700; flex: 1; }
.route-meta { position: relative; margin-top: 12px; display: flex; gap: 7px; flex-wrap: wrap; }
.meta-pill {
  padding: 7px 10px; border-radius: 999px;
  border: 1px solid var(--line2); background: rgba(255,255,255,.03);
  color: var(--muted); font-weight: 900; font-size: 12px;
}
.route-cta {
  position: relative; margin-top: 14px; width: 100%; border: 0;
  border-radius: 14px; padding: 12px;
  background: var(--accent); color: #000;
  font-weight: 900; text-align: center; font-size: 14px;
  transition: filter var(--trans);
}
.route-cta:hover { filter: brightness(.97); }

/* Fade edges on desktop */
.hscroll-wrap::before,
.hscroll-wrap::after {
  content: ""; position: absolute; top: 0; bottom: 6px; width: 80px; pointer-events: none; z-index: 2;
}
.hscroll-wrap::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.hscroll-wrap::after { right: 0; background: linear-gradient(to left, var(--bg), transparent); }

@media (max-width: 860px) {
  .hscroll-head { flex-direction: column; align-items: flex-start; }
  .hscroll-actions { justify-content: flex-start; }
  .route-card { width: 82vw; }
}

/* === BENTO TOURS GRID === */
.bento-section {
  padding: 92px 0;
  border-top: 1px solid rgba(0,0,0,.1);
  background:
    radial-gradient(900px 420px at 50% 0%, rgba(240,254,109,.44), transparent 62%),
    linear-gradient(180deg, #e9f56e, #dff06b);
  position: relative;
}
.bento-section .section-title h2 { color: #000; }
.bento-section .section-title p { color: rgba(0,0,0,.7); }
.bento-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 18px; margin-bottom: 28px;
}
.bento-head h2 { font-size: clamp(26px, 3.5vw, 40px); letter-spacing: -.4px; color: #000; }
.bento-head p { margin-top: 8px; color: rgba(0,0,0,.7); line-height: 1.65; font-weight: 700; }
.bento-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.bento-actions .btn { background: rgba(255,255,255,.22); border-color: rgba(0,0,0,.16); color: #000; }
.bento-actions .btn:hover { background: rgba(255,255,255,.3); }
.bento-actions .btn-primary { background: #000; color: var(--accent) !important; border-color: #000; }

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.bento-cell {
  position: relative; border-radius: 22px; overflow: hidden;
  border: 1px solid rgba(0,0,0,.14);
  background: rgba(255,255,255,.72);
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
  display: flex; flex-direction: column;
  transition: transform var(--trans), box-shadow var(--trans);
}
.bento-cell:hover { transform: translateY(-5px); box-shadow: 0 28px 70px rgba(0,0,0,.22); }
.bento-cell--large { grid-column: span 2; }
.bento-cell--full { grid-column: span 3; }

.bento-cell-img {
  position: relative; overflow: hidden;
  background: rgba(0,0,0,.08);
}
.bento-cell-img img {
  width: 100%; object-fit: cover; display: block;
  transform: scale(1.03);
  transition: transform .3s ease;
}
.bento-cell:hover .bento-cell-img img { transform: scale(1.08); }
.bento-cell--large .bento-cell-img img { height: 220px; }
.bento-cell:not(.bento-cell--large):not(.bento-cell--full) .bento-cell-img img { height: 180px; }
.bento-cell--full .bento-cell-img img { height: 160px; }

.bento-cell-img::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.24) 100%);
}

.bento-cell-body { padding: 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.bento-badges { display: flex; gap: 7px; flex-wrap: wrap; }
.bento-badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 10px; border-radius: 999px;
  border: 1px solid rgba(0,0,0,.16); background: rgba(255,255,255,.28);
  font-weight: 950; font-size: 11px; color: #000;
}
.bento-badge i { width: 7px; height: 7px; border-radius: 50%; background: #000; opacity: .75; display: inline-block; }
.bento-title { font-size: 20px; font-weight: 900; letter-spacing: -.15px; color: #000; line-height: 1.15; }
.bento-cell--large .bento-title { font-size: 26px; }
.bento-desc { color: rgba(0,0,0,.72); font-size: 13px; line-height: 1.6; font-weight: 800; }
.bento-meta { display: flex; gap: 7px; flex-wrap: wrap; margin-top: 2px; }
.bento-meta .meta-pill { border-color: rgba(0,0,0,.14); background: rgba(255,255,255,.28); color: rgba(0,0,0,.8); }
.bento-cta {
  margin-top: auto; padding-top: 12px;
  border-top: 1px solid rgba(0,0,0,.12);
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.bento-cta small { color: rgba(0,0,0,.60); font-weight: 800; font-size: 12px; line-height: 1.35; }
.bento-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 11px 14px; border-radius: var(--r-sm);
  background: #000; color: var(--accent) !important;
  font-weight: 900; white-space: nowrap; font-size: 13px;
  transition: filter var(--trans);
}
.bento-btn:hover { filter: brightness(.97); }

@media (max-width: 860px) {
  .bento-head { flex-direction: column; align-items: flex-start; }
  .bento-actions { justify-content: flex-start; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-cell--large, .bento-cell--full { grid-column: span 1; }
  .bento-cell--large .bento-title { font-size: 20px; }
}

/* === REVIEWS === */
.reviews-section { padding: 92px 0; border-top: 1px solid var(--line); }
.reviews-rating {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  padding: 18px 22px; border-radius: 18px;
  border: 1px solid rgba(240,254,109,.18);
  background: rgba(240,254,109,.05);
  margin-bottom: 30px;
}
.rating-big { font-size: 44px; font-weight: 900; color: var(--accent); line-height: 1; }
.rating-info { display: flex; flex-direction: column; gap: 4px; }
.rating-info span:first-child { font-size: 16px; font-weight: 900; }
.rating-info span:last-child { font-size: 12px; color: var(--muted2); font-weight: 800; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.review-card {
  background: var(--panel); border: 1px solid var(--line2);
  border-radius: 20px; padding: 22px;
  display: flex; flex-direction: column; gap: 12px;
  box-shadow: 0 18px 50px rgba(0,0,0,.45);
  transition: transform var(--trans), border-color var(--trans);
}
.review-card:hover { transform: translateY(-3px); border-color: rgba(240,254,109,.18); }
.review-stars { color: var(--accent); font-size: 15px; letter-spacing: 2px; }
.review-text { color: var(--muted); font-size: 14px; line-height: 1.65; font-weight: 700; flex: 1; }
.review-author { display: flex; align-items: center; gap: 10px; margin-top: 4px; }
.review-avatar {
  width: 38px; height: 38px; border-radius: 50%; flex: 0 0 auto;
  background: rgba(240,254,109,.15); border: 1px solid rgba(240,254,109,.22);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 900; color: var(--accent);
}
.review-name { font-weight: 900; font-size: 13px; }
.review-source { font-size: 11px; color: var(--muted2); font-weight: 800; }
@media (max-width: 860px) { .reviews-grid { grid-template-columns: 1fr; } }

/* === FAQ === */
.faq-section { padding: 92px 0; border-top: 1px solid var(--line); background: rgba(255,255,255,.01); }
.faq-list { margin-top: 32px; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--panel); border: 1px solid var(--line2);
  border-radius: 16px; overflow: hidden;
  transition: border-color var(--trans);
}
.faq-item:hover { border-color: var(--line2); }
.faq-item summary {
  padding: 18px 22px; cursor: pointer;
  font-weight: 900; font-size: 15px;
  display: flex; align-items: center; justify-content: space-between;
  list-style: none; gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 22px; color: var(--accent); font-weight: 900; flex: 0 0 auto; }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { padding: 0 22px 18px; color: var(--muted); font-size: 14px; line-height: 1.65; font-weight: 700; }

/* === CONTACT === */
.contact-section { padding: 92px 0; border-top: 1px solid var(--line); }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; }
.contact-card {
  background: var(--panel); border: 1px solid var(--line2);
  border-radius: var(--radius); padding: 24px;
  box-shadow: 0 18px 50px rgba(0,0,0,.45);
  transition: transform var(--trans), border-color var(--trans);
}
.contact-card:hover { transform: translateY(-3px); border-color: rgba(240,254,109,.18); }
.contact-card h3 { font-size: 18px; margin-bottom: 10px; }
.contact-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

/* === FOOTER === */
footer {
  padding: 56px 0; border-top: 1px solid var(--line);
  color: var(--muted);
}
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 18px; }
.footer-brand { font-weight: 900; font-size: 18px; margin-bottom: 10px; }
.footer-desc { font-size: 13px; color: var(--muted2); line-height: 1.7; }
.footer-desc a { color: var(--muted2); transition: color var(--trans); }
.footer-desc a:hover { color: var(--accent); }
.footer-col-title { font-weight: 900; margin-bottom: 12px; font-size: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 13px; color: var(--muted2); transition: color var(--trans); }
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  margin-top: 24px; padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 12px; color: var(--muted2);
}
.footer-bottom a { color: var(--muted2); transition: color var(--trans); }
.footer-bottom a:hover { color: var(--accent); }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr; } }

/* === SCROLL REVEAL ===
   NIE chowamy elementów w CSS — JS sam ustawi opacity:0 przez gsap.set()
   Dzięki temu strona wyświetla się normalnie gdy CDN lub JS się nie załaduje
*/
.reveal, .reveal-stagger > * {
  transition: opacity .7s ease, transform .7s ease;
}
/* klasa dodawana przez JS (gsap fallback) */
.reveal.will-animate { opacity: 0; transform: translateY(36px); }
.reveal-stagger.will-animate > * { opacity: 0; transform: translateY(28px); }

/* ROUTE SUBPAGES — keep existing styles for trasy/wycieczki pages */
.hero-sub { padding: 60px 0 40px; border-top: 0; }
.hero-sub h1 { font-size: clamp(28px, 4vw, 46px); letter-spacing: -.5px; }
