/* GRS Travel — front-end
   Brand: royal blue, saffron, Indian green, midnight navy
*/

:root {
  --blue: #062b63;
  --blue-2: #0b4ea2;
  --saffron: #f28c00;
  --gold: #ffb000;
  --green: #168a35;
  --white: #ffffff;
  --mist: #f5f7fa;
  --navy: #071a35;
  --ink: #122033;
  --muted: #5b6b80;
  --line: rgba(6, 43, 99, 0.12);
  --radius: 18px;
  --shadow: 0 24px 60px rgba(7, 26, 53, 0.12);
  --font: "Manrope", "Inter", system-ui, sans-serif;
  --serif: "Playfair Display", Georgia, serif;
  --header: 84px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: auto; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-2); text-decoration: none; }
a:hover { color: var(--saffron); }
button, input, select, textarea { font: inherit; }

.grs-skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 10000;
}
.grs-skip:focus { left: 1rem; top: 1rem; }

.grs-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.grs-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 80;
  background: transparent;
}
.grs-progress span {
  display: block;
  height: 100%;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
  background: linear-gradient(90deg, var(--blue-2), var(--saffron), var(--green));
}

.grs-cursor {
  display: none;
  position: fixed;
  width: 14px;
  height: 14px;
  border: 1px solid var(--saffron);
  border-radius: 50%;
  pointer-events: none;
  z-index: 90;
  mix-blend-mode: difference;
}

@media (hover: hover) and (pointer: fine) {
  .grs-cursor { display: block; }
}

.grs-wrap {
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
}
.grs-narrow { width: min(780px, calc(100% - 2.5rem)); margin-inline: auto; }
.grs-center { text-align: center; }
.grs-lede { font-size: 1.15rem; color: var(--muted); max-width: 42rem; }

.grs-kicker {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--saffron);
  margin: 0 0 0.8rem;
}

h1, h2, h3, .grs-hero-title {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--navy);
}

.grs-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 0;
  border-radius: 999px;
  padding: 0.9rem 1.45rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.grs-btn:hover { transform: translateY(-2px); }
.grs-btn:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--saffron);
  outline-offset: 3px;
}
.grs-btn-gold {
  background: var(--saffron);
  color: #fff;
  box-shadow: 0 10px 24px rgba(242, 140, 0, 0.28);
}
.grs-btn-gold:hover { color: #fff; background: #d97a00; }
.grs-btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.45);
}
.grs-btn-ghost:hover { background: #fff; color: var(--navy); }
.grs-text-link {
  color: #fff;
  font-weight: 700;
  border-bottom: 1px solid var(--gold);
}

/* Header */
.grs-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease;
}
.grs-header.is-solid {
  background: rgba(7, 26, 53, 0.78);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.18);
}
.grs-front .grs-header:not(.is-solid) { background: transparent; }
body:not(.grs-front) .grs-header {
  background: rgba(7, 26, 53, 0.92);
}
.grs-header-inner {
  width: min(1280px, calc(100% - 1.5rem));
  margin: 0 auto;
  min-height: var(--header);
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.grs-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #fff;
  flex-shrink: 0;
}
.grs-logo img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  background: #fff;
  border-radius: 50%;
  padding: 3px;
}
.grs-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.grs-logo-text strong { font-size: 1.2rem; letter-spacing: 0.12em; }
.grs-logo-text small { font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.8; }

.grs-nav { margin-left: auto; }
.grs-nav-list {
  display: flex;
  gap: 1.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.grs-nav-list a {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  position: relative;
}
.grs-nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.grs-nav-list a:hover::after,
.grs-nav-list .current-menu-item a::after { width: 100%; }

.grs-header-actions { display: flex; align-items: center; gap: 0.6rem; }
.grs-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
}
.grs-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 10px;
  padding: 10px 9px;
}
.grs-menu-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  margin: 5px 0;
}
.grs-mobile-nav {
  display: none;
  background: var(--navy);
  padding: 0 1.2rem 1.4rem;
}
.grs-mobile-list { list-style: none; margin: 0; padding: 0; }
.grs-mobile-list a {
  display: block;
  color: #fff;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Hero */
.grs-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: end start;
  color: #fff;
  overflow: hidden;
}
.grs-hero-media,
.grs-hero-media img,
.grs-hero-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.grs-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,26,53,0.35) 0%, rgba(7,26,53,0.55) 40%, rgba(7,26,53,0.88) 100%),
    radial-gradient(circle at 80% 20%, rgba(242,140,0,0.18), transparent 40%);
}
.grs-particles { position: absolute; inset: 0; pointer-events: none; }
.grs-dot {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
}
.grs-route-svg {
  position: absolute;
  right: 0;
  top: 12%;
  width: min(52vw, 720px);
  opacity: 0.55;
}
.grs-route-path {
  stroke: #7eb6ff;
  stroke-width: 2;
  stroke-dasharray: 8 10;
  fill: none;
}
.grs-plane { fill: var(--gold); }
.grs-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 8vw 18vh;
  max-width: 46rem;
}
.grs-hero-title {
  color: #fff;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  margin: 0 0 0.8rem;
}
.grs-hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  margin: 0 0 0.8rem;
  color: #e8eef8;
}
.grs-hero-copy { color: #c9d4e5; max-width: 38rem; }
.grs-hero-cta { display: flex; flex-wrap: wrap; gap: 0.8rem; align-items: center; }
.grs-scroll {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
}
.grs-scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 28px;
  margin: 8px auto 0;
  background: #fff;
  animation: grs-pulse 1.8s ease infinite;
}
@keyframes grs-pulse {
  0%, 100% { opacity: 0.2; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* Planner */
.grs-planner {
  position: relative;
  z-index: 3;
  margin-top: -70px;
}
.grs-planner-form,
.grs-form {
  background: #fff;
  border-radius: 24px;
  padding: 1.4rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.grs-planner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 0.8rem;
  align-items: end;
}
.grs-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}
.grs-form label, .grs-planner-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.grs-form input,
.grs-form select,
.grs-form textarea,
.grs-planner-form input,
.grs-planner-form select,
.grs-search input {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.75rem 0.85rem;
  background: var(--mist);
  color: var(--ink);
  text-transform: none;
  font-weight: 500;
  letter-spacing: 0;
}
.grs-form input:focus,
.grs-form select:focus,
.grs-form textarea:focus {
  background: #fff;
  border-color: var(--blue-2);
}
.is-full { grid-column: 1 / -1; }
.grs-hp { position: absolute; left: -9999px; opacity: 0; }
.grs-form-status { margin-top: 0.8rem; font-weight: 600; }
.grs-form-status.is-ok { color: var(--green); }
.grs-form-status.is-err { color: #b42318; }

/* Sections */
.grs-section { padding: 6.5rem 0; }
.grs-section h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin: 0 0 1.4rem; }
.grs-page-hero {
  padding: calc(var(--header) + 4rem) 0 3.5rem;
  background:
    radial-gradient(circle at 10% 20%, rgba(11,78,162,0.18), transparent 40%),
    linear-gradient(180deg, #071a35 0%, #0b2a58 100%);
  color: #fff;
}
.grs-page-hero h1,
.grs-page-hero p,
.grs-page-hero a { color: #fff; }
.grs-page-hero .grs-kicker { color: var(--gold); }

.grs-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 2rem 0 1rem;
}
.grs-stat {
  padding: 1.4rem;
  border-radius: var(--radius);
  background: var(--navy);
  color: #fff;
}
.grs-stat strong { display: block; font-size: 2rem; font-family: var(--serif); }
.grs-fineprint { color: var(--muted); font-size: 0.85rem; }

.grs-card-grid,
.grs-tour-grid,
.grs-blog-grid,
.grs-vehicle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.grs-card, .grs-tour-card, .grs-blog-card, .grs-vehicle-card, .grs-quote, .grs-contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem;
  box-shadow: 0 10px 30px rgba(7,26,53,0.05);
}
.grs-card h3 { margin-top: 0; }

.grs-hscroll {
  display: flex;
  gap: 1.1rem;
  overflow-x: auto;
  padding: 0 1.25rem 1.5rem;
  scroll-snap-type: x mandatory;
}
.grs-cat-card {
  min-width: min(78vw, 340px);
  scroll-snap-align: start;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  color: #fff;
}
.grs-cat-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.grs-cat-card:hover img { transform: scale(1.06); }
.grs-cat-card div {
  position: absolute;
  inset: auto 0 0;
  padding: 1.4rem;
  background: linear-gradient(transparent, rgba(7,26,53,0.92));
}

.grs-blr { background: var(--mist); }
.grs-blr-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}
.grs-map { color: var(--blue-2); }
.grs-map-hub { fill: var(--saffron); }
.grs-map-line {
  stroke: var(--blue-2);
  stroke-dasharray: 6 8;
  stroke-width: 2;
}
.grs-routes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  list-style: none;
  padding: 2rem 0 0;
  margin: 0;
}
.grs-routes a {
  display: block;
  padding: 1rem;
  background: #fff;
  border-radius: 14px;
  color: var(--navy);
  border: 1px solid var(--line);
}
.grs-routes strong { display: block; }

.grs-ka-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}
.grs-ka-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  min-height: 280px;
  color: #fff;
}
.grs-ka-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.6s ease;
}
.grs-ka-card:hover img { transform: scale(1.08); }
.grs-ka-meta {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.1rem;
  background: linear-gradient(transparent, rgba(7,26,53,0.86));
  color: #fff;
}
.grs-ka-meta h2, .grs-ka-meta h3, .grs-ka-meta p, .grs-ka-meta em { color: #fff; margin: 0.15rem 0; }
.grs-ka-meta em { opacity: 0; transform: translateY(8px); transition: 0.3s ease; }
.grs-ka-card:hover em { opacity: 1; transform: none; }

.grs-faith {
  background:
    linear-gradient(180deg, #fbf6ec, #fff);
  text-align: center;
}
.grs-faith .grs-lede { margin-inline: auto; }
.grs-faith-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}
.grs-faith-list li {
  padding: 0.55rem 1rem;
  border: 1px solid rgba(242,140,0,0.35);
  border-radius: 999px;
  color: var(--navy);
  font-weight: 600;
}
.grs-faith .grs-btn-ghost {
  color: var(--navy);
  border-color: var(--navy);
}

.grs-cinematic {
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}
.grs-cinematic h2 { color: #fff; }
.grs-stops {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  list-style: none;
  padding: 0;
  font-family: var(--serif);
  font-size: 1.4rem;
}
.grs-flight-track { position: relative; height: 64px; margin-top: 2rem; }
.grs-flight-line {
  height: 2px;
  background: linear-gradient(90deg, var(--blue-2), var(--gold), var(--green));
  width: 100%;
  margin-top: 28px;
}
.grs-flight-mark { position: absolute; top: 14px; left: 0; font-size: 1.4rem; }

.grs-tour-card { padding: 0; overflow: hidden; }
.grs-tour-card img { height: 220px; width: 100%; object-fit: cover; transition: transform 0.5s ease; }
.grs-tour-card:hover img { transform: scale(1.05); }
.grs-tour-card > a > div { padding: 1.1rem 1.2rem 1.3rem; color: var(--ink); }
.grs-tour-card h3 { margin: 0.4rem 0; color: var(--navy); }
.grs-chip {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-2);
}
.grs-tour-meta { display: flex; justify-content: space-between; color: var(--muted); font-size: 0.9rem; }

.grs-builder { background: var(--mist); }
.grs-split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 2.5rem; align-items: start; }
.grs-values { list-style: none; padding: 0; }
.grs-values li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.05rem;
}

.grs-vehicle-card img { height: 160px; object-fit: cover; border-radius: 12px; margin-bottom: 0.8rem; }
.grs-vehicle-row {
  display: grid;
  grid-template-columns: 280px 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 20px;
}
.grs-vehicle-row img { height: 180px; width: 100%; object-fit: cover; border-radius: 14px; }

.grs-blog-card { padding: 0; overflow: hidden; }
.grs-blog-card img { height: 180px; width: 100%; object-fit: cover; }
.grs-blog-card > a > div,
.grs-blog-card div { padding: 1rem 1.1rem 1.2rem; color: var(--ink); }
.grs-blog-layout { display: grid; grid-template-columns: 2fr 0.8fr; gap: 2rem; padding-bottom: 4rem; }
.grs-meta-line { color: var(--muted); font-size: 0.88rem; }

.grs-slider { display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 1rem; }
.grs-quote { min-width: min(80vw, 420px); scroll-snap-align: start; }
.grs-stars { color: var(--saffron); display: block; }

.grs-masonry {
  columns: 3;
  column-gap: 0.8rem;
}
.grs-masonry-item { display: block; margin-bottom: 0.8rem; break-inside: avoid; }
.grs-masonry img { width: 100%; border-radius: 14px; }

.grs-accordion details {
  border-bottom: 1px solid var(--line);
  padding: 0.9rem 0;
}
.grs-accordion summary { cursor: pointer; font-weight: 700; color: var(--navy); }

.grs-final {
  padding: 7rem 0;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(7,26,53,0.72), rgba(7,26,53,0.88)),
    url("https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=1200&q=60") center/cover;
  color: #fff;
}
.grs-final h2 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.8rem); }
.grs-final p { color: #d5deeb; }
.grs-final .grs-hero-cta { justify-content: center; }

.grs-footer {
  background: #050f1f;
  color: #c5d0e0;
  padding: 4rem 0 1.5rem;
}
.grs-footer h2, .grs-footer h3 { color: #fff; }
.grs-footer-blessing { text-align: center; margin-bottom: 2.5rem; }
.grs-footer-blessing img {
  width: 92px;
  height: 92px;
  margin: 0 auto 0.8rem;
  background: #fff;
  border-radius: 50%;
  padding: 4px;
}
.grs-tagline-line { letter-spacing: 0.16em; text-transform: uppercase; font-size: 0.78rem; }
.grs-tagline-line .is-gold { color: var(--gold); }
.grs-tagline-line .is-green { color: #7ad38d; }
.grs-footer-grid {
  width: min(1180px, calc(100% - 2.5rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 1.5rem;
}
.grs-footer ul { list-style: none; padding: 0; }
.grs-footer a { color: #c5d0e0; }
.grs-footer-base {
  width: min(1180px, calc(100% - 2.5rem));
  margin: 2.5rem auto 0;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1rem;
  font-size: 0.85rem;
}
.grs-social { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 0.8rem; }
.grs-newsletter { display: flex; flex-direction: column; gap: 0.5rem; }

.grs-fab {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  z-index: 40;
}
.grs-fab-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  box-shadow: var(--shadow);
}
.is-wa { background: #25d366; }
.is-call { background: var(--blue-2); }
.is-book { background: var(--saffron); }
.is-enq { background: var(--green); }
.grs-top {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  z-index: 40;
}
.grs-top.is-on { opacity: 1; pointer-events: auto; }

.grs-tour-hero {
  min-height: 68vh;
  background-size: cover;
  background-position: center;
  display: grid;
  align-items: end;
  color: #fff;
  padding: calc(var(--header) + 2rem) 0 3rem;
  position: relative;
}
.grs-tour-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent, rgba(7,26,53,0.88));
}
.grs-tour-hero .grs-wrap { position: relative; }
.grs-tour-hero h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 4rem); }
.grs-tour-facts { display: flex; flex-wrap: wrap; gap: 0.8rem; margin: 1rem 0; }
.grs-tour-facts span {
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
}
.grs-tour-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr;
  gap: 2rem;
  padding: 3rem 0 5rem;
}
.grs-toc { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 1.5rem; }
.grs-timeline { list-style: none; padding: 0; border-left: 2px solid var(--line); margin-left: 0.6rem; }
.grs-timeline li { padding: 0 0 1.6rem 1.2rem; position: relative; }
.grs-timeline li::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--saffron);
}
.grs-ticks { columns: 2; }
.grs-split-lists { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.grs-filters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.grs-filters input, .grs-filters select { padding: 0.7rem; border-radius: 10px; border: 1px solid var(--line); }
.grs-prose { font-size: 1.05rem; }
.grs-prose h2 { margin-top: 2rem; }
.grs-article-hero { width: 100%; border-radius: 20px; max-height: 460px; object-fit: cover; }
.grs-contact-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 2rem; padding-bottom: 3rem; }
.grs-map-embed iframe { width: 100%; height: 360px; border: 0; display: block; }
.grs-filter-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.2rem; }
.grs-filter-pills button {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  cursor: pointer;
}
.grs-filter-pills .is-on { background: var(--navy); color: #fff; }
.grs-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5,15,31,0.92);
  display: grid;
  place-items: center;
  z-index: 100;
  padding: 2rem;
}
.grs-lightbox img { max-height: 90vh; border-radius: 12px; }
.grs-empty { padding: 2rem; text-align: center; color: var(--muted); }
.grs-pagination { padding: 2rem 0 4rem; }

@media (max-width: 1024px) {
  .grs-nav { display: none; }
  .grs-menu-toggle { display: block; }
  .grs-mobile-nav.is-open { display: block; }
  .grs-planner-grid,
  .grs-card-grid,
  .grs-tour-grid,
  .grs-blog-grid,
  .grs-vehicle-grid,
  .grs-stats,
  .grs-ka-grid,
  .grs-routes,
  .grs-blr-grid,
  .grs-split,
  .grs-tour-layout,
  .grs-contact-grid,
  .grs-footer-grid,
  .grs-blog-layout,
  .grs-vehicle-row,
  .grs-form-grid,
  .grs-split-lists { grid-template-columns: 1fr 1fr; }
  .grs-masonry { columns: 2; }
}

@media (max-width: 720px) {
  :root { --header: 72px; }
  .grs-hero-content { padding: 0 1.2rem 22vh; }
  .grs-planner { margin-top: -40px; }
  .grs-planner-grid,
  .grs-card-grid,
  .grs-tour-grid,
  .grs-blog-grid,
  .grs-vehicle-grid,
  .grs-stats,
  .grs-ka-grid,
  .grs-routes,
  .grs-blr-grid,
  .grs-split,
  .grs-tour-layout,
  .grs-contact-grid,
  .grs-footer-grid,
  .grs-blog-layout,
  .grs-vehicle-row,
  .grs-form-grid,
  .grs-split-lists,
  .grs-ticks { grid-template-columns: 1fr; }
  .grs-masonry { columns: 1; }
  .grs-header .grs-btn { display: none; }
  .grs-logo-text { display: none; }
  .grs-section { padding: 4rem 0; }
  .grs-footer-base { flex-direction: column; gap: 0.4rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .grs-loader { display: none; }
}

/* Fast GPU motion layer */
.grs-loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #071a35;
  display: grid;
  place-items: center;
  pointer-events: none;
  will-change: transform;
}
.grs-loader i {
  width: 72px;
  height: 2px;
  background: #f28c00;
  transform: scaleX(0);
  transform-origin: left;
  animation: grs-loadbar 0.4s ease forwards;
}
.grs-loader.is-out {
  transform: translate3d(0, -101%, 0);
  transition: transform 0.5s cubic-bezier(.76, 0, .24, 1);
}
@keyframes grs-loadbar {
  to { transform: scaleX(1); }
}

.grs-hero-img,
.grs-hero-media video {
  transform: translate3d(0, 0, 0) scale(1.06);
  animation: grs-ken 20s linear infinite alternate;
  will-change: transform;
}
@keyframes grs-ken {
  to { transform: translate3d(0, -3%, 0) scale(1.14); }
}

.grs-word {
  display: inline-block;
  overflow: hidden;
  margin-right: 0.28em;
  vertical-align: bottom;
}
.grs-word span {
  display: inline-block;
  will-change: transform;
}

.grs-hpin { overflow: hidden; }
@media (min-width: 900px) {
  .grs-hscroll { overflow: visible; padding-bottom: 0; }
}

.grs-cinematic {
  background: var(--navy);
  color: #fff;
}
.grs-cinematic-pin {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 5rem 0;
}
.grs-cinematic h2 { color: #fff; }
.grs-stops li {
  opacity: 0.28;
  transform: scale(0.96);
  will-change: transform, opacity;
}
.grs-stops li.is-on {
  opacity: 1;
  color: var(--gold);
  transform: scale(1.08);
}
.grs-flight-line { overflow: hidden; height: 2px; background: rgba(255,255,255,0.12); }
.grs-flight-line span {
  display: block;
  height: 2px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--blue-2), var(--gold), var(--green));
  will-change: transform;
}

.grs-btn { position: relative; overflow: hidden; will-change: transform; }
.grs-btn-gold::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 35%, rgba(255,255,255,0.28) 50%, transparent 65%);
  transform: translate3d(-120%, 0, 0);
  pointer-events: none;
}
.grs-btn-gold:hover::after { animation: grs-shine 0.65s ease; }
@keyframes grs-shine {
  to { transform: translate3d(120%, 0, 0); }
}

.grs-cat-card,
.grs-ka-card,
.grs-tour-card img {
  transform: translateZ(0);
}
.grs-map-line { stroke-dasharray: 6 8; }
