/* ============================================================
   North India trip booking — appended experience
   (independent of the cinematic scroll rig above)
   ============================================================ */

.trip-site {
  --ink: #24170e;
  --ink-soft: rgba(36, 23, 14, 0.66);
  --paper: #f7edda;
  --paper-2: #fff8ea;
  --clay: #b8471f;
  --clay-deep: #7d2b12;
  --indigo: #1b2f4b;
  --gold: #c98a2b;
  --line: rgba(36, 23, 14, 0.14);
  position: relative;
  z-index: 40;
  background:
    radial-gradient(120% 60% at 12% 0%, rgba(201, 138, 43, 0.22), transparent 62%),
    radial-gradient(90% 70% at 92% 12%, rgba(184, 71, 31, 0.16), transparent 60%),
    linear-gradient(180deg, #f9f0de 0%, #f4e7d1 48%, #efdfc6 100%);
  color: var(--ink);
  font-family: "Urbanist", ui-sans-serif, system-ui, sans-serif;
  overflow: hidden;
}

.trip-site::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    repeating-linear-gradient(90deg, rgba(36, 23, 14, 0.045) 0 1px, transparent 1px 46px),
    repeating-linear-gradient(0deg, rgba(36, 23, 14, 0.035) 0 1px, transparent 1px 46px);
  mask-image: radial-gradient(120% 80% at 50% 0%, #000 20%, transparent 85%);
}

.trip-wrap {
  position: relative;
  width: min(1200px, 92vw);
  margin: 0 auto;
  padding: clamp(64px, 8vw, 128px) 0;
}

.trip-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 7px 14px 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 248, 234, 0.72);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.trip-eyebrow i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clay);
  box-shadow: 0 0 0 4px rgba(184, 71, 31, 0.18);
}

.trip-h2 {
  margin: 0;
  font-family: "Ogg Medium", "Ogg", Georgia, serif;
  font-weight: 500;
  font-size: clamp(34px, 5.2vw, 66px);
  line-height: 0.98;
  letter-spacing: -0.015em;
}

.trip-h2 em {
  font-style: italic;
  color: var(--clay-deep);
}

.trip-lede {
  max-width: 56ch;
  margin: 18px 0 0;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.65;
  color: rgba(36, 23, 14, 0.72);
}

.trip-section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(32px, 4vw, 54px);
}

/* ---------- search / planner bar ---------- */
.plan-card {
  position: relative;
  margin-top: clamp(34px, 4vw, 52px);
  padding: clamp(20px, 2.4vw, 30px);
  border: 1px solid rgba(36, 23, 14, 0.16);
  border-radius: 26px;
  background: linear-gradient(160deg, rgba(255, 250, 240, 0.96), rgba(250, 238, 219, 0.92));
  box-shadow: 0 30px 70px -40px rgba(36, 23, 14, 0.55);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  gap: 14px;
  align-items: end;
}

.plan-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
}

.plan-field label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(36, 23, 14, 0.58);
}

.plan-field select,
.plan-field input {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(36, 23, 14, 0.18);
  border-radius: 14px;
  background: #fffdf7;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.plan-field select:focus-visible,
.plan-field input:focus-visible,
.trip-form input:focus-visible,
.trip-form select:focus-visible,
.trip-form textarea:focus-visible,
.btn:focus-visible,
.chip:focus-visible,
.faq-item summary:focus-visible {
  outline: 3px solid var(--clay);
  outline-offset: 3px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: var(--clay);
  color: #fff6e6;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 14px 26px -16px rgba(125, 43, 18, 0.8);
}

.btn:hover { background: var(--clay-deep); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(36, 23, 14, 0.24);
  box-shadow: none;
}

.btn-ghost:hover { background: rgba(36, 23, 14, 0.06); color: var(--ink); }

.btn-ink { background: var(--indigo); box-shadow: 0 14px 26px -16px rgba(27, 47, 75, 0.8); }
.btn-ink:hover { background: #101f34; }

.plan-note {
  margin: 16px 0 0;
  font-size: 12.5px;
  color: rgba(36, 23, 14, 0.6);
}

/* ---------- theme chips ---------- */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  padding: 9px 16px;
  border: 1px solid rgba(36, 23, 14, 0.2);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.7);
  color: rgba(36, 23, 14, 0.78);
  font: inherit;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.2s ease;
}

.chip:hover { border-color: var(--clay); color: var(--clay-deep); }

.chip[aria-pressed="true"] {
  background: var(--indigo);
  border-color: var(--indigo);
  color: #f6e9d2;
}

/* ---------- trip cards ---------- */
.trip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: clamp(16px, 1.8vw, 24px);
  margin-top: clamp(26px, 3vw, 38px);
}

.trip-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid rgba(36, 23, 14, 0.14);
  border-radius: 22px;
  background: linear-gradient(170deg, rgba(255, 251, 243, 0.97), rgba(247, 236, 217, 0.9));
  box-shadow: 0 24px 50px -38px rgba(36, 23, 14, 0.6);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.trip-card:hover {
  transform: translateY(-6px);
  border-color: rgba(184, 71, 31, 0.45);
  box-shadow: 0 34px 60px -34px rgba(36, 23, 14, 0.55);
}

.trip-card[hidden] { display: none; }

.trip-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(36, 23, 14, 0.5);
}

.trip-card-top span:last-child {
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(201, 138, 43, 0.18);
  color: var(--clay-deep);
  letter-spacing: 0.1em;
}

.trip-card h3 {
  margin: 16px 0 0;
  font-family: "Ogg Medium", "Ogg", Georgia, serif;
  font-weight: 500;
  font-size: 27px;
  line-height: 1.05;
}

.trip-card .route {
  margin: 9px 0 0;
  font-size: 13px;
  color: rgba(36, 23, 14, 0.62);
  line-height: 1.55;
}

.trip-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
}

.trip-meta span {
  padding: 5px 10px;
  border: 1px dashed rgba(36, 23, 14, 0.24);
  border-radius: 8px;
  font-size: 11.5px;
  color: rgba(36, 23, 14, 0.7);
}

.trip-card-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 22px;
}

.trip-price b {
  display: block;
  font-family: "Ogg Medium", "Ogg", Georgia, serif;
  font-weight: 500;
  font-size: 26px;
  line-height: 1;
}

.trip-price small {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(36, 23, 14, 0.5);
}

.no-results {
  margin-top: 26px;
  padding: 28px;
  border: 1px dashed rgba(36, 23, 14, 0.28);
  border-radius: 18px;
  font-size: 14px;
  color: rgba(36, 23, 14, 0.65);
}

.no-results[hidden] { display: none; }

/* ---------- how it works ---------- */
.step-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  margin-top: clamp(28px, 3vw, 40px);
}

.step {
  padding: 26px 24px;
  border-top: 2px solid var(--clay);
  background: rgba(255, 250, 240, 0.6);
  border-radius: 0 0 18px 18px;
}

.step b {
  font-family: "Ogg Medium", "Ogg", Georgia, serif;
  font-weight: 500;
  font-size: 34px;
  color: rgba(184, 71, 31, 0.55);
}

.step h4 {
  margin: 10px 0 8px;
  font-size: 17px;
  letter-spacing: -0.01em;
}

.step p { margin: 0; font-size: 13.5px; line-height: 1.6; color: rgba(36, 23, 14, 0.7); }

/* ---------- booking form ---------- */
.book-band {
  position: relative;
  z-index: 40;
  background:
    radial-gradient(80% 80% at 10% 0%, rgba(201, 138, 43, 0.3), transparent 60%),
    linear-gradient(180deg, #1b2f4b, #14243a);
  color: #f6e9d2;
}

.book-band .trip-h2 em { color: var(--gold); }
.book-band .trip-lede { color: rgba(246, 233, 210, 0.72); }
.book-band .trip-eyebrow {
  background: rgba(246, 233, 210, 0.08);
  border-color: rgba(246, 233, 210, 0.22);
  color: #f6e9d2;
}

.book-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(22px, 3vw, 40px);
  margin-top: clamp(32px, 4vw, 48px);
  align-items: start;
}

.trip-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(22px, 2.4vw, 32px);
  border: 1px solid rgba(246, 233, 210, 0.18);
  border-radius: 24px;
  background: rgba(246, 233, 210, 0.06);
  backdrop-filter: blur(6px);
}

.trip-form .full { grid-column: 1 / -1; }

.trip-form label {
  display: block;
  margin-bottom: 7px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(246, 233, 210, 0.6);
}

.trip-form input,
.trip-form select,
.trip-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(246, 233, 210, 0.22);
  border-radius: 13px;
  background: rgba(9, 17, 28, 0.5);
  color: #f6e9d2;
  font: inherit;
  font-size: 14px;
}

.trip-form textarea { min-height: 96px; resize: vertical; }
.trip-form input::placeholder, .trip-form textarea::placeholder { color: rgba(246, 233, 210, 0.38); }

.summary {
  padding: clamp(22px, 2.4vw, 30px);
  border: 1px solid rgba(246, 233, 210, 0.2);
  border-radius: 24px;
  background: rgba(246, 233, 210, 0.95);
  color: var(--ink);
}

.summary h3 {
  margin: 0 0 4px;
  font-family: "Ogg Medium", "Ogg", Georgia, serif;
  font-weight: 500;
  font-size: 25px;
}

.summary > p { margin: 0 0 18px; font-size: 12.5px; color: rgba(36, 23, 14, 0.6); }

.summary dl { display: grid; gap: 11px; margin: 0; }
.summary dl > div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  font-size: 13.5px;
  padding-bottom: 10px;
  border-bottom: 1px dotted rgba(36, 23, 14, 0.22);
}
.summary dt { color: rgba(36, 23, 14, 0.58); }
.summary dd { margin: 0; font-weight: 600; text-align: right; }

.summary .total {
  border-bottom: 0;
  padding-top: 6px;
  align-items: baseline;
}
.summary .total dd {
  font-family: "Ogg Medium", "Ogg", Georgia, serif;
  font-weight: 500;
  font-size: 28px;
}

.summary-note {
  margin: 16px 0 0;
  font-size: 11.5px;
  line-height: 1.6;
  color: rgba(36, 23, 14, 0.6);
}

.form-status {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 13px;
  min-height: 1em;
  color: var(--gold);
}

/* ---------- voices ---------- */
.voice-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: clamp(28px, 3vw, 40px);
}

.voice {
  padding: 26px;
  border: 1px solid rgba(36, 23, 14, 0.14);
  border-radius: 20px;
  background: rgba(255, 250, 240, 0.72);
}

.voice p {
  margin: 0;
  font-family: "Ogg Medium", "Ogg", Georgia, serif;
  font-weight: 500;
  font-size: 19px;
  line-height: 1.35;
}

.voice footer {
  margin-top: 16px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(36, 23, 14, 0.52);
}

/* ---------- faq ---------- */
.faq-list { margin-top: clamp(24px, 3vw, 36px); border-top: 1px solid var(--line); }

.faq-item { border-bottom: 1px solid var(--line); }

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 4px;
  cursor: pointer;
  list-style: none;
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 600;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 22px; color: var(--clay); }
.faq-item[open] summary::after { content: "–"; }

.faq-item p {
  margin: 0 0 20px;
  max-width: 72ch;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(36, 23, 14, 0.72);
}

/* ---------- footer ---------- */
.trip-footer {
  position: relative;
  z-index: 40;
  background: #150f09;
  color: rgba(246, 233, 210, 0.72);
}

.trip-footer .trip-wrap { padding: clamp(48px, 5vw, 78px) 0 34px; }

.foot-top {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(246, 233, 210, 0.14);
}

.foot-brand {
  font-family: "Ogg Medium", "Ogg", Georgia, serif;
  font-weight: 500;
  font-size: clamp(26px, 3vw, 38px);
  color: #f6e9d2;
  line-height: 1.05;
}

.foot-cols {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 4vw, 64px);
  font-size: 13px;
}

.foot-cols h5 {
  margin: 0 0 12px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(246, 233, 210, 0.45);
}

.foot-cols ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.foot-cols a { color: inherit; text-decoration: none; }
.foot-cols a:hover { color: var(--gold); }

.foot-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  padding-top: 22px;
  font-size: 11.5px;
  color: rgba(246, 233, 210, 0.45);
}

@media (max-width: 1000px) {
  .plan-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .plan-grid .btn { grid-column: 1 / -1; }
  .book-layout { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .plan-grid { grid-template-columns: 1fr; }
  .trip-form { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .trip-card, .btn, .chip { transition: none; }
}

/* ============================================================
   Category rail + category grid
   ============================================================ */
.cat-band {
  --ink: #24170e;
  --clay-deep: #7d2b12;
  position: relative;
  z-index: 40;
  padding-bottom: clamp(48px, 6vw, 88px);
  background: linear-gradient(180deg, #fdf6e9 0%, #f9f0de 100%);
  color: var(--ink);
  font-family: "Urbanist", ui-sans-serif, system-ui, sans-serif;
}

.cat-strip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  background: linear-gradient(180deg, #6f210c 0%, #5c1a09 100%);
  box-shadow: inset 0 -1px 0 rgba(255, 240, 214, 0.14);
}

.cat-strip-arrow {
  flex: 0 0 auto;
  width: 44px;
  height: 62px;
  color: #fdf1e1;
  background: transparent;
  font-size: 20px;
  cursor: pointer;
}

.cat-strip-track {
  display: flex;
  flex: 1;
  gap: 2px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.cat-strip-track::-webkit-scrollbar { display: none; }

.cat-tab {
  flex: 0 0 auto;
  height: 62px;
  padding: 0 clamp(16px, 1.6vw, 30px);
  color: rgba(253, 241, 225, 0.9);
  background: transparent;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease;
}

.cat-tab:hover { background: rgba(253, 241, 225, 0.12); }

.cat-tab.is-active {
  color: #6f210c;
  background: #fdf6e9;
}

.cat-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: clamp(40px, 5vw, 72px) 0 clamp(28px, 3.4vw, 46px);
  text-align: center;
}

.cat-head .trip-h2 { margin: 0; }

.cat-rule {
  width: 96px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, #b8471f, #c98a2b);
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(18px, 2vw, 30px);
}

.cat-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(36, 23, 14, 0.1);
  border-radius: 16px;
  background: #fffaf0;
  box-shadow: 0 10px 26px rgba(36, 23, 14, 0.08);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 320ms ease;
}

.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 46px rgba(36, 23, 14, 0.16);
}

.cat-card img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.cat-label {
  position: relative;
  z-index: 2;
  display: block;
  margin: -26px 16px 0;
  padding: 14px 12px;
  border-radius: 10px;
  background: #fffaf0;
  box-shadow: 0 8px 20px rgba(36, 23, 14, 0.14);
  color: var(--clay-deep);
  font-size: 1.02rem;
  font-weight: 700;
  text-align: center;
}

.cat-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 18px 20px;
}

.cat-foot p {
  margin: 0;
  color: rgba(36, 23, 14, 0.6);
  font-size: 0.82rem;
  line-height: 1.3;
}

.cat-foot p b {
  display: block;
  margin-top: 2px;
  color: #b8471f;
  font-size: 1.12rem;
  font-weight: 700;
}

.cat-foot a {
  color: #b8471f;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.cat-viewall {
  display: flex;
  justify-content: center;
  margin-top: clamp(30px, 3.4vw, 48px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 42px;
  border: 1px solid #b8471f;
  border-radius: 4px;
  color: #b8471f;
  background: transparent;
  font-weight: 700;
  text-decoration: none;
  transition: background 220ms ease, color 220ms ease;
}

.btn-outline:hover { background: #b8471f; color: #fff8ea; }

@media (max-width: 640px) {
  .cat-card img { height: 168px; }
  .cat-tab { height: 54px; font-size: 0.9rem; }
  .cat-strip-arrow { height: 54px; }
}
