@font-face {
  font-family: "Yatra One";
  src: url("../fonts/yatra-one.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Mukta";
  src: url("../fonts/mukta-regular.woff") format("woff");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Mukta";
  src: url("../fonts/mukta-semibold.woff") format("woff");
  font-weight: 600;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg: #1b0c25;
  --bg-raised: #261232;
  --surface: #2f1840;
  --surface-2: #3a1f4d;
  --line: rgba(255, 214, 150, 0.16);
  --line-strong: rgba(255, 214, 150, 0.32);
  --ivory: #fbf1de;
  --text: #f1e4d6;
  --muted: #c9b4c6;
  --gold: #f5b83d;
  --gold-hi: #ffd47e;
  --saffron: #e98a1c;
  --pistachio: #a7d36f;
  --rose: #f29bb9;
  --ink: #241030;
  --radius: 18px;
  --radius-sm: 12px;
  --gutter: 16px;
  --max: 1120px;
  --display: "Yatra One", "Mukta", system-ui, sans-serif;
  --body: "Mukta", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background:
    radial-gradient(1100px 620px at 78% -8%, rgba(233, 138, 28, 0.20), transparent 62%),
    radial-gradient(900px 560px at -10% 12%, rgba(242, 155, 185, 0.10), transparent 60%),
    var(--bg);
  background-repeat: no-repeat;
  color: var(--text);
  font: 400 1.0625rem/1.6 var(--body);
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; height: auto; }
a { color: var(--gold-hi); text-underline-offset: 3px; }
a:hover { color: var(--ivory); }
:focus-visible { outline: 3px solid var(--gold-hi); outline-offset: 3px; border-radius: 6px; }

h1, h2, h3 { font-family: var(--display); font-weight: 400; color: var(--ivory); line-height: 1.12; margin: 0; letter-spacing: 0.005em; }
h2 { font-size: clamp(1.8rem, 5.2vw, 2.7rem); }
h3 { font-size: 1.3rem; }
p { margin: 0; }

.wrap { width: min(100% - 2 * var(--gutter), var(--max)); margin-inline: auto; }
.skip { position: absolute; left: -9999px; top: 8px; background: var(--gold); color: var(--ink); padding: 8px 14px; border-radius: 10px; z-index: 10; }
.skip:focus { left: 8px; }

/* ---- header ---- */
.site-header {
  position: sticky; top: 0; z-index: 5;
  background: rgba(27, 12, 37, 0.82);
  backdrop-filter: saturate(1.3) blur(10px);
  -webkit-backdrop-filter: saturate(1.3) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; gap: 12px; min-height: 60px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ivory); margin-right: auto; }
.brand img { width: 36px; height: 36px; border-radius: 10px; }
.brand span { font-family: var(--display); font-size: 1.3rem; }
.nav { display: none; gap: 22px; }
.nav a { color: var(--muted); text-decoration: none; font-weight: 600; font-size: 0.98rem; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--ivory); }
@media (min-width: 760px) { .nav { display: flex; } }

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 0 22px; border-radius: 14px;
  font: 600 1.02rem/1 var(--body); text-decoration: none; text-align: center;
  border: 1px solid transparent; transition: transform .15s ease, background-color .15s ease, border-color .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: linear-gradient(180deg, var(--gold-hi), var(--gold)); color: var(--ink); box-shadow: 0 8px 24px -10px rgba(245, 184, 61, 0.7); }
.btn-primary:hover { color: var(--ink); background: linear-gradient(180deg, #ffe0a0, var(--gold-hi)); }
.btn-ghost { border-color: var(--line-strong); color: var(--ivory); background: rgba(255, 255, 255, 0.03); }
.btn-ghost:hover { border-color: var(--gold); color: var(--ivory); }
.btn-small { min-height: 40px; padding: 0 14px; font-size: 0.95rem; border-radius: 12px; }
.btn svg { width: 20px; height: 20px; flex: none; }

/* Placeholder links: visible until the real URL replaces the INSERT_… token. */
a[href^="INSERT_"] { position: relative; }
a[href^="INSERT_"]::after {
  content: attr(href);
  position: absolute; left: 10px; top: 0; transform: translateY(-55%);
  font: 600 0.62rem/1.2 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: 0.02em;
  color: #ffe9b0; background: #5a1d2a; border: 1px dashed #ff9d8a; border-radius: 6px;
  padding: 2px 6px; white-space: nowrap; pointer-events: none; z-index: 2;
}
.inline-placeholder a[href^="INSERT_"]::after { position: static; transform: none; display: inline-block; margin-left: 6px; vertical-align: middle; }

/* ---- hero ---- */
.hero { padding: 40px 0 56px; }
.hero .wrap { display: grid; gap: 40px; align-items: center; }
@media (min-width: 900px) { .hero .wrap { grid-template-columns: 1.1fr 0.9fr; gap: 56px; } .hero { padding: 64px 0 80px; } }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--gold-hi); font-weight: 600; font-size: 0.92rem; letter-spacing: 0.06em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--pistachio); box-shadow: 0 0 0 4px rgba(167, 211, 111, 0.18); }
.hero h1 { font-size: clamp(3rem, 12vw, 5.2rem); margin-top: 14px; color: var(--ivory); text-shadow: 0 3px 0 #7a3a0b, 0 14px 40px rgba(233, 138, 28, 0.35); }
.hero .hindi { font-family: var(--display); color: var(--gold); font-size: clamp(1.3rem, 4.5vw, 1.8rem); margin-top: 4px; }
.hero .lead { font-size: clamp(1.12rem, 3.4vw, 1.3rem); color: var(--text); margin-top: 18px; max-width: 34ch; }
.cta-row { display: flex; flex-wrap: wrap; gap: 18px 12px; margin-top: 28px; padding-top: 6px; }
.cta-row .btn { flex: 1 1 220px; }
@media (min-width: 900px) { .cta-row .btn { flex: 0 0 auto; } }
.fine { color: var(--muted); font-size: 0.93rem; margin-top: 8px; }

.phone {
  position: relative; width: min(78vw, 330px); margin-inline: auto;
  padding: 10px; border-radius: 42px;
  background: linear-gradient(160deg, #4a2a5c, #1d0d27 55%, #3b1f4a);
  box-shadow: 0 0 0 1px rgba(255, 214, 150, 0.22), 0 40px 80px -30px rgba(0, 0, 0, 0.8), 0 0 120px -30px rgba(233, 138, 28, 0.45);
}
.phone video, .phone img { width: 100%; aspect-ratio: 9 / 16; object-fit: cover; border-radius: 32px; background: #120818; }
.phone::before { content: ""; position: absolute; top: 20px; left: 50%; width: 64px; height: 6px; margin-left: -32px; border-radius: 6px; background: rgba(0, 0, 0, 0.55); z-index: 1; }
.phone.small { width: min(70vw, 280px); border-radius: 36px; padding: 8px; }
.phone.small video, .phone.small img { border-radius: 28px; }
.caption { text-align: center; color: var(--muted); font-size: 0.9rem; margin-top: 12px; }

/* ---- facts ---- */
.facts { border-block: 1px solid var(--line); background: rgba(38, 18, 50, 0.6); }
.facts ul { list-style: none; margin: 0; padding: 22px 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 12px; }
@media (min-width: 760px) { .facts ul { grid-template-columns: repeat(4, 1fr); } }
.facts li { text-align: center; }
.facts strong { display: block; font-family: var(--display); font-weight: 400; font-size: clamp(1.9rem, 6vw, 2.4rem); color: var(--gold-hi); line-height: 1.1; }
.facts span { color: var(--muted); font-size: 0.95rem; }

/* ---- sections ---- */
section { scroll-margin-top: 72px; }
.section { padding: 64px 0; }
.section-head { max-width: 640px; margin-bottom: 32px; }
.section-head p { color: var(--muted); margin-top: 10px; font-size: 1.08rem; }

.cards { display: grid; gap: 16px; }
@media (min-width: 700px) { .cards { grid-template-columns: repeat(2, 1fr); } }
.card {
  background: linear-gradient(180deg, rgba(58, 31, 77, 0.9), rgba(47, 24, 64, 0.9));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 20px;
}
.card h3 { display: flex; align-items: center; gap: 12px; }
.card p { color: var(--text); margin-top: 10px; }
.card .icons { display: flex; gap: 6px; flex: none; }
.card .icons img { width: 40px; height: 40px; }
.legend { list-style: none; margin: 14px 0 0; padding: 0; display: grid; gap: 10px; }
.legend li { display: grid; grid-template-columns: 40px 1fr; gap: 12px; align-items: center; color: var(--text); }
.legend img { width: 40px; height: 40px; }
.legend b { color: var(--ivory); font-weight: 600; }

.feature { display: grid; gap: 28px; align-items: center; margin-top: 56px; }
@media (min-width: 860px) {
  .feature { grid-template-columns: 1fr 1fr; gap: 56px; }
  .feature.flip .feature-media { order: 2; }
}
.feature h3 { font-size: clamp(1.6rem, 4.6vw, 2.1rem); }
.feature p { margin-top: 12px; }
.tag { display: inline-block; font: 600 0.8rem/1 var(--body); letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); background: var(--pistachio); border-radius: 999px; padding: 6px 10px; margin-bottom: 12px; }
.steps { margin: 16px 0 0; padding-left: 1.2em; }
.steps li { margin-top: 6px; }
.steps li::marker { color: var(--gold); font-weight: 600; }

/* ---- journey ---- */
.journey { display: grid; gap: 32px; align-items: start; }
@media (min-width: 900px) { .journey { grid-template-columns: 0.9fr 1.1fr; gap: 56px; } }
.states { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 10px; }
.states li {
  display: grid; grid-template-columns: 56px 1fr; gap: 14px; align-items: center;
  background: rgba(58, 31, 77, 0.55); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 10px 14px 10px 10px;
}
.states img { width: 56px; height: 56px; }
.states b { display: block; color: var(--ivory); font-weight: 600; }
.states span { color: var(--muted); font-size: 0.94rem; }

/* ---- club ---- */
.club { display: grid; gap: 12px; }
@media (min-width: 700px) { .club { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .club { grid-template-columns: repeat(3, 1fr); } }
.club .card { padding: 18px; }
.club h3 { font-size: 1.12rem; }

/* ---- gallery ---- */
.gallery {
  display: grid; grid-auto-flow: column; grid-auto-columns: min(62vw, 240px); gap: 14px;
  overflow-x: auto; overscroll-behavior-x: contain; scroll-snap-type: x mandatory;
  padding: 4px var(--gutter) 18px; margin: 0 calc(-1 * var(--gutter));
  scrollbar-width: thin; scrollbar-color: var(--surface-2) transparent;
}
@media (min-width: 1152px) { .gallery { padding-inline: 0; margin: 0; } }
.gallery figure { margin: 0; scroll-snap-align: start; }
.gallery img { width: 100%; aspect-ratio: 9 / 16; object-fit: cover; border-radius: 18px; border: 1px solid var(--line); background: #120818; }
.gallery figcaption { color: var(--muted); font-size: 0.9rem; margin-top: 8px; }

/* ---- honest notes ---- */
.notes { display: grid; gap: 12px; }
@media (min-width: 760px) { .notes { grid-template-columns: repeat(2, 1fr); } }
.note { border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px 18px; background: rgba(38, 18, 50, 0.7); }
.note b { color: var(--ivory); display: block; font-weight: 600; margin-bottom: 4px; }
.note p { color: var(--muted); }

/* ---- final cta ---- */
.final { text-align: center; padding: 56px 20px; border-radius: 28px; border: 1px solid var(--line-strong);
  background: radial-gradient(600px 240px at 50% 0%, rgba(245, 184, 61, 0.22), transparent 70%), var(--bg-raised); }
.final img { width: 88px; height: 88px; border-radius: 22px; margin: 0 auto 18px; box-shadow: 0 16px 40px -18px rgba(233, 138, 28, 0.8); }
.final p { color: var(--muted); margin: 12px auto 0; max-width: 46ch; }
.final .cta-row { justify-content: center; }

/* ---- footer ---- */
.site-footer { border-top: 1px solid var(--line); margin-top: 72px; padding: 32px 0 40px; color: var(--muted); font-size: 0.93rem; }
.site-footer .wrap { display: grid; gap: 14px; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.site-footer a { color: var(--text); }
.site-footer small { font-size: 0.85rem; }

/* ---- document pages (support, privacy) ---- */
.doc { padding: 48px 0 24px; }
.doc .wrap { max-width: 760px; }
.doc h1 { font-size: clamp(2.2rem, 8vw, 3.2rem); }
.doc .updated { color: var(--muted); margin-top: 10px; }
.doc h2 { font-size: clamp(1.45rem, 4.6vw, 1.8rem); margin-top: 44px; }
.doc h3 { font-family: var(--body); font-weight: 600; font-size: 1.12rem; margin-top: 26px; }
.doc p, .doc ul, .doc ol { margin-top: 12px; }
.doc ul, .doc ol { padding-left: 1.25em; }
.doc li { margin-top: 6px; }
.doc li::marker { color: var(--gold); }
.doc .callout { margin-top: 22px; padding: 18px 20px; border-radius: var(--radius-sm); border: 1px solid var(--line-strong); background: var(--bg-raised); }
.doc .callout p:first-child { margin-top: 0; }
.doc details { border: 1px solid var(--line); border-radius: var(--radius-sm); background: rgba(38, 18, 50, 0.7); margin-top: 10px; }
.doc summary { cursor: pointer; padding: 14px 18px; font-weight: 600; color: var(--ivory); list-style: none; display: flex; justify-content: space-between; gap: 12px; }
.doc summary::-webkit-details-marker { display: none; }
.doc summary::after { content: "+"; color: var(--gold); font-size: 1.3rem; line-height: 1; }
.doc details[open] summary::after { content: "–"; }
.doc details > div { padding: 0 18px 16px; }
.doc details > div > :first-child { margin-top: 0; }
.doc .contact-actions { display: flex; flex-wrap: wrap; gap: 18px 12px; margin-top: 18px; padding-top: 6px; }
.table-scroll { overflow-x: auto; margin-top: 14px; }
.doc table { border-collapse: collapse; width: 100%; font-size: 0.97rem; }
.doc th, .doc td { text-align: left; vertical-align: top; padding: 10px 8px; border-bottom: 1px solid var(--line); overflow-wrap: anywhere; }
.doc th { color: var(--ivory); font-weight: 600; background: rgba(58, 31, 77, 0.6); }
.doc td { color: var(--text); }
.toc { margin-top: 22px; padding: 16px 20px; border-radius: var(--radius-sm); border: 1px solid var(--line); background: rgba(38, 18, 50, 0.6); }
.toc ol { margin: 6px 0 0; }

/* ---- 404 ---- */
.notfound { text-align: center; }
.notfound img { margin: 24px auto 8px; }
.notfound .contact-actions { justify-content: center; }
