/*
 * Pitru Theme v2 — pages/city.css
 *
 * Page-specific CSS for the single-city template. Eight generic
 * sections; the Gaya path's overrides + extras live in the same
 * stylesheet (added by sibling agents A2/A3 — they append to this
 * file under the `--- GAYA ---` divider near the bottom).
 *
 * Section blocks (verbatim from ORG city.html):
 *   .pps-single-city-hero          (lines 248-292)
 *   .pps-single-city-scripture     (lines 294-303)
 *   .pps-single-city-origin        (lines 305-324)
 *   .pps-single-city-ghats         (lines 326-348)
 *   .pps-single-city-rites         (lines 350-379)
 *   .pps-single-city-practical     (lines 381-404)  — dark band
 *   .pps-single-city-others        (lines 406-435)
 *   .pps-single-city-bottom-cta    (lines 437-442)
 *
 * Tokens-only; lengths match the ORG inline styles. Breakpoints follow
 * the rest of the theme: 1024px (tablet), 720px (mobile).
 */

/* ============================================================
 * 1. HERO  (.pps-single-city-hero)
 * ============================================================ */
.pps-single-city-hero {
  padding: 40px 0 80px;
}

.pps-single-city-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--stone);
  font-size: 13px;
}
.pps-single-city-hero__crumb {
  color: var(--stone);
  text-decoration: none;
  transition: color 160ms var(--ease-ios);
}
.pps-single-city-hero__crumb:hover { color: var(--ink); }
.pps-single-city-hero__crumb--current { color: var(--ink); }
.pps-single-city-hero__sep { color: var(--stone-2); }

.pps-single-city-hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
}

.pps-single-city-hero__chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.pps-single-city-hero__sanskrit {
  font-family: var(--font-display);
  font-size: 76px;
  font-style: italic;
  font-weight: 400;
  color: var(--gold-deep);
  letter-spacing: -0.02em;
  line-height: 1;
}

.pps-single-city-hero__title {
  margin: 8px 0 0;
  font-family: var(--font-display);
  font-size: 84px;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.93;
}

.pps-single-city-hero__lede {
  margin: 24px 0 0;
  max-width: 540px;
  font-size: 20px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.pps-single-city-hero__facts {
  margin: 36px 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.pps-single-city-hero__fact {
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}
.pps-single-city-hero__fact-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
}
.pps-single-city-hero__fact-value {
  margin: 4px 0 0;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.pps-single-city-hero__ctas {
  margin: 36px 0 0;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.pps-single-city-hero__cta-primary { padding: 14px 24px; }
.pps-single-city-hero__cta-ghost   { padding: 14px 20px; }

.pps-single-city-hero__media {
  height: 520px;
  border-radius: var(--r-xl);
}
.pps-single-city-hero__media-inner {
  text-align: center;
}
.pps-single-city-hero__motif {
  color: var(--vermillion);
  display: inline-flex;
}
.pps-single-city-hero__photo-label {
  margin-top: 16px;
}

@media (max-width: 1024px) {
  .pps-single-city-hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .pps-single-city-hero__title { font-size: 64px; }
  .pps-single-city-hero__sanskrit { font-size: 60px; }
  .pps-single-city-hero__media { height: 420px; }
  .pps-single-city-hero__facts { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .pps-single-city-hero { padding: 32px 0 56px; }
  .pps-single-city-hero__title { font-size: 48px; }
  .pps-single-city-hero__sanskrit { font-size: 44px; }
  .pps-single-city-hero__lede { font-size: 17px; }
  .pps-single-city-hero__media { height: 320px; }
}

/* ============================================================
 * 2. SCRIPTURE  (.pps-single-city-scripture)
 *
 * Light-band variant — ivory-2 background, gold-deep ornament.
 * Distinct from .pps-band-scripture (dark / ink band).
 * ============================================================ */
.pps-single-city-scripture {
  padding: 60px 0;
  background: var(--ivory-2);
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
  text-align: center;
}
.pps-single-city-scripture__inner {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.pps-single-city-scripture__motif {
  color: var(--gold-deep);
  display: inline-flex;
  margin-bottom: 18px;
}
.pps-single-city-scripture__quote {
  margin: 0;
  font-family: var(--font-display);
  font-size: 34px;
  font-style: italic;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink-2);
}
.pps-single-city-scripture__ref {
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
}

@media (max-width: 720px) {
  .pps-single-city-scripture { padding: 48px 0; }
  .pps-single-city-scripture__quote { font-size: 24px; line-height: 1.35; }
}

/* ============================================================
 * 3. ORIGIN STORY  (.pps-single-city-origin)
 * ============================================================ */
.pps-single-city-origin {
  padding: 100px 0;
}
.pps-single-city-origin__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.pps-single-city-origin__media {
  height: 460px;
  border-radius: var(--r-xl);
}
.pps-single-city-origin__eyebrow {
  display: inline-block;
}
.pps-single-city-origin__title {
  margin: 10px 0 0;
  font-family: var(--font-display);
  font-size: 54px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.02;
}
.pps-single-city-origin__body {
  margin: 26px 0 0;
  font-size: 19px;
  color: var(--ink-soft);
  line-height: 1.65;
}
.pps-single-city-origin__caption {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
}

@media (max-width: 1024px) {
  .pps-single-city-origin { padding: 80px 0; }
  .pps-single-city-origin__grid { grid-template-columns: 1fr; gap: 40px; }
  .pps-single-city-origin__title { font-size: 44px; }
  .pps-single-city-origin__media { height: 360px; }
}
@media (max-width: 720px) {
  .pps-single-city-origin { padding: 56px 0; }
  .pps-single-city-origin__title { font-size: 34px; }
  .pps-single-city-origin__body  { font-size: 17px; }
  .pps-single-city-origin__media { height: 260px; }
}

/* ============================================================
 * 4. GHATS  (.pps-single-city-ghats)
 * ============================================================ */
.pps-single-city-ghats {
  padding: 90px 0;
  background: var(--paper);
}
.pps-single-city-ghats__header {
  text-align: center;
  margin-bottom: 56px;
}
.pps-single-city-ghats__title {
  margin: 10px 0 0;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.pps-single-city-ghats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.pps-single-city-ghats__card {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
}
.pps-single-city-ghats__media {
  height: 160px;
  border-radius: var(--r-md);
  margin-bottom: 18px;
}
.pps-single-city-ghats__index {
  margin-bottom: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.pps-single-city-ghats__name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.pps-single-city-ghats__desc {
  margin: 10px 0 0;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .pps-single-city-ghats__grid { grid-template-columns: repeat(2, 1fr); }
  .pps-single-city-ghats__title { font-size: 38px; }
}
@media (max-width: 720px) {
  .pps-single-city-ghats { padding: 64px 0; }
  .pps-single-city-ghats__grid { grid-template-columns: 1fr; }
  .pps-single-city-ghats__title { font-size: 30px; }
}

/* ============================================================
 * 5. RITES AVAILABLE  (.pps-single-city-rites)
 * ============================================================ */
.pps-single-city-rites {
  padding: 100px 0;
}
.pps-single-city-rites__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
}
.pps-single-city-rites__title {
  margin: 10px 0 0;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.02;
}
.pps-single-city-rites__lede {
  margin: 18px 0 0;
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.pps-single-city-rites__cta {
  margin-top: 24px;
  padding: 12px 20px;
}

.pps-single-city-rites__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.pps-single-city-rites__card {
  display: block;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  color: var(--ink);
  text-decoration: none;
  transition: transform 200ms var(--ease-ios), box-shadow 200ms var(--ease-ios);
}
.pps-single-city-rites__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.pps-single-city-rites__card-index {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
}
.pps-single-city-rites__card-name {
  margin: 10px 0 0;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.pps-single-city-rites__card-cta {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

@media (max-width: 1024px) {
  .pps-single-city-rites { padding: 80px 0; }
  .pps-single-city-rites__grid { grid-template-columns: 1fr; gap: 40px; }
  .pps-single-city-rites__title { font-size: 38px; }
}
@media (max-width: 720px) {
  .pps-single-city-rites { padding: 56px 0; }
  .pps-single-city-rites__cards { grid-template-columns: 1fr; }
  .pps-single-city-rites__title { font-size: 30px; }
}

/* ============================================================
 * 6. PRACTICAL  (.pps-single-city-practical)
 *
 * Dark band — ink background, ivory text, gold-soft motif/labels.
 * ============================================================ */
.pps-single-city-practical {
  padding: 100px 0;
  background: var(--ink);
  color: var(--ivory);
}
.pps-single-city-practical__header {
  text-align: center;
  margin-bottom: 56px;
}
.pps-single-city-practical__motif {
  color: var(--gold-soft);
  display: inline-flex;
  margin-bottom: 12px;
}
.pps-single-city-practical__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ivory);
}
.pps-single-city-practical__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1080px;
  margin: 0 auto;
}
.pps-single-city-practical__cell { margin: 0; }
.pps-single-city-practical__label {
  margin-bottom: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.pps-single-city-practical__value {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--ivory) 85%, transparent);
}

@media (max-width: 1024px) {
  .pps-single-city-practical { padding: 80px 0; }
  .pps-single-city-practical__title { font-size: 38px; }
  .pps-single-city-practical__grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}
@media (max-width: 720px) {
  .pps-single-city-practical { padding: 56px 0; }
  .pps-single-city-practical__grid { grid-template-columns: 1fr; gap: 24px; }
  .pps-single-city-practical__title { font-size: 30px; }
}

/* ============================================================
 * 7. OTHER CITIES  (.pps-single-city-others)
 *
 * Header bar (eyebrow + 36px title on the left, ghost CTA on the right)
 * + 3-column compact-card grid. Cards themselves come from the shared
 * .pps-card-city--compact in components.css.
 * ============================================================ */
.pps-single-city-others {
  padding: 90px 0;
}
.pps-single-city-others__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}
.pps-single-city-others__title {
  margin: 8px 0 0;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.pps-single-city-others__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 1024px) {
  .pps-single-city-others { padding: 72px 0; }
  .pps-single-city-others__grid { grid-template-columns: repeat(2, 1fr); }
  .pps-single-city-others__title { font-size: 30px; }
}
@media (max-width: 720px) {
  .pps-single-city-others { padding: 56px 0; }
  .pps-single-city-others__grid { grid-template-columns: 1fr; }
  .pps-single-city-others__title { font-size: 26px; }
}

/* ============================================================
 * 8. BOTTOM CTA  (.pps-single-city-bottom-cta)
 * ============================================================ */
.pps-single-city-bottom-cta {
  padding: 60px 0 120px;
  text-align: center;
}
.pps-single-city-bottom-cta__inner {
  /* wrap already centers — nothing further */
}
.pps-single-city-bottom-cta__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.pps-single-city-bottom-cta__cta {
  margin-top: 28px;
  padding: 16px 32px;
  font-size: 16px;
}

@media (max-width: 720px) {
  .pps-single-city-bottom-cta { padding: 48px 0 80px; }
  .pps-single-city-bottom-cta__title { font-size: 32px; }
}

/* ============================================================
 * GAYA OVERRIDES — single-city-gaya/* sections (C.6 / A2 + A3)
 *
 * 8 Gaya-only sections built by A2 (hero, rama-story, geography)
 * and A3 (pilgrims-day, gayawal-pandits, poojas, practical-guide,
 * closing). Class prefix: .pps-single-city-gaya-{section}*
 *
 * NB: A2's CSS originally referenced --space-N tokens that don't
 * exist in tokens.css — substituted with literal px values matching
 * ORG (CityGaya1.jsx Hero line 17: padding 40 0 80).
 * ============================================================ */

/* --- Gaya · Hero (A2) ---------------------------------------------- */
.pps-single-city-gaya-hero { position: relative; padding: 40px 0 80px; overflow: hidden; }
.pps-single-city-gaya-hero__backdrop { position: absolute; top: 80px; right: -140px; opacity: 0.05; color: var(--vermillion); pointer-events: none; }
.pps-single-city-gaya-hero__inner { position: relative; }
.pps-single-city-gaya-hero__crumb-row { display: flex; justify-content: space-between; align-items: center; padding-bottom: 24px; border-bottom: 1px solid var(--line-2); margin-bottom: 48px; flex-wrap: wrap; gap: 12px; }
.pps-single-city-gaya-hero__crumbs { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--stone); }
.pps-single-city-gaya-hero__crumb-link { color: var(--stone); text-decoration: none; }
.pps-single-city-gaya-hero__crumb-link:hover { color: var(--ink); }
.pps-single-city-gaya-hero__crumb-sep { color: var(--stone); }
.pps-single-city-gaya-hero__crumb-current { color: var(--ink); }
.pps-single-city-gaya-hero__meta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.pps-single-city-gaya-hero__coords { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; color: var(--stone); }
.pps-single-city-gaya-hero__live { display: flex; align-items: center; gap: 8px; }
.pps-single-city-gaya-hero__live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--vermillion); }
.pps-single-city-gaya-hero__live-text { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; color: var(--ink-soft); }
.pps-single-city-gaya-hero__grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 64px; align-items: end; }
.pps-single-city-gaya-hero__eyebrow-row { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.pps-single-city-gaya-hero__eyebrow-rule { width: 28px; height: 1px; background: var(--vermillion); }
.pps-single-city-gaya-hero__eyebrow { color: var(--vermillion); }
.pps-single-city-gaya-hero__title { font-size: clamp(72px, 9vw, 140px); letter-spacing: -0.035em; line-height: 0.9; font-family: var(--font-display); font-weight: 500; margin: 0; }
.pps-single-city-gaya-hero__title-em { font-style: italic; color: var(--gold-deep); font-size: 0.4em; letter-spacing: -0.01em; font-weight: 400; }
.pps-single-city-gaya-hero__lede { margin-top: 28px; font-size: 20px; color: var(--ink-soft); line-height: 1.6; max-width: 560px; }
.pps-single-city-gaya-hero__facts { margin-top: 36px; display: grid; grid-template-columns: repeat(2, max-content); gap: 24px 48px; }
.pps-single-city-gaya-hero__fact-label { font-family: var(--font-mono); font-size: 10px; color: var(--stone); letter-spacing: 0.14em; text-transform: uppercase; }
.pps-single-city-gaya-hero__fact-value { font-family: var(--font-display); font-size: 22px; font-weight: 500; letter-spacing: -0.01em; color: var(--ink); margin-top: 4px; }
.pps-single-city-gaya-hero__ctas { margin-top: 36px; display: flex; gap: 16px; flex-wrap: wrap; }
.pps-single-city-gaya-hero__photo { height: 540px; border-radius: var(--r-xl); position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 0 32px; text-align: center; }
.pps-single-city-gaya-hero__photo-icon { color: var(--vermillion); margin-bottom: 16px; }
.pps-single-city-gaya-hero__photo-quote { font-family: var(--font-display); font-size: 22px; font-style: italic; color: color-mix(in srgb, var(--ink) 60%, transparent); line-height: 1.4; letter-spacing: -0.01em; }
.pps-single-city-gaya-hero__photo-label { margin-top: 20px; }
@media (max-width: 991px) {
  .pps-single-city-gaya-hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .pps-single-city-gaya-hero__photo { height: 420px; }
}
@media (max-width: 575px) {
  .pps-single-city-gaya-hero__facts { grid-template-columns: 1fr; gap: 20px; }
  .pps-single-city-gaya-hero__crumb-row { gap: 16px; }
}

/* --- Gaya · Rama Story (A2) ---------------------------------------- */
.pps-single-city-gaya-rama-story { padding: 120px 0; background: var(--vermillion-deep); color: var(--ivory); position: relative; overflow: hidden; }
.pps-single-city-gaya-rama-story__glow { position: absolute; inset: 0; background: radial-gradient(circle at 20% 30%, color-mix(in srgb, var(--gold-soft) 12%, transparent), transparent 60%); pointer-events: none; }
.pps-single-city-gaya-rama-story__motif { position: absolute; bottom: -100px; right: -100px; opacity: 0.05; color: var(--gold-soft); pointer-events: none; }
.pps-single-city-gaya-rama-story__inner { position: relative; }
.pps-single-city-gaya-rama-story__grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 72px; align-items: start; }
.pps-single-city-gaya-rama-story__ornament { display: inline-flex; color: var(--gold-soft); margin-bottom: 16px; }
.pps-single-city-gaya-rama-story__eyebrow { color: color-mix(in srgb, var(--ivory) 55%, transparent); }
.pps-single-city-gaya-rama-story__title { font-size: clamp(44px, 5.5vw, 76px); letter-spacing: -0.025em; line-height: 1.04; margin-top: 14px; color: var(--ivory); }
.pps-single-city-gaya-rama-story__title-em { font-style: italic; color: var(--gold-soft); }
.pps-single-city-gaya-rama-story__attribution { margin-top: 40px; padding: 24px 28px; background: color-mix(in srgb, var(--ivory) 6%, transparent); border-radius: var(--r-md); border-left: 2px solid var(--gold-soft); }
.pps-single-city-gaya-rama-story__attribution-eyebrow { font-family: var(--font-mono); font-size: 10px; color: var(--gold-soft); letter-spacing: 0.16em; }
.pps-single-city-gaya-rama-story__attribution-body { font-size: 15px; color: color-mix(in srgb, var(--ivory) 82%, transparent); line-height: 1.7; margin-top: 12px; font-style: italic; }
.pps-single-city-gaya-rama-story__prose { font-family: var(--font-display); font-size: 22px; line-height: 1.8; color: color-mix(in srgb, var(--ivory) 92%, transparent); font-style: italic; }
.pps-single-city-gaya-rama-story__p { margin: 0; }
.pps-single-city-gaya-rama-story__p + .pps-single-city-gaya-rama-story__p { margin-top: 22px; }
.pps-single-city-gaya-rama-story__curses { margin-top: 40px; padding: 24px; background: color-mix(in srgb, var(--ivory) 4%, transparent); border-radius: var(--r-md); border: 1px solid color-mix(in srgb, var(--ivory) 10%, transparent); }
.pps-single-city-gaya-rama-story__curses-eyebrow { font-family: var(--font-mono); font-size: 10px; color: var(--gold-soft); letter-spacing: 0.16em; margin-bottom: 12px; }
.pps-single-city-gaya-rama-story__curse-row { display: grid; grid-template-columns: auto 1fr; gap: 14px; padding: 10px 0; border-top: 1px solid color-mix(in srgb, var(--ivory) 8%, transparent); }
.pps-single-city-gaya-rama-story__curse-row--first { border-top: none; }
.pps-single-city-gaya-rama-story__curse-num { font-family: var(--font-display); font-size: 24px; font-style: italic; color: var(--gold-soft); line-height: 1; width: 28px; }
.pps-single-city-gaya-rama-story__curse-on { font-size: 14px; color: var(--ivory); font-weight: 500; }
.pps-single-city-gaya-rama-story__curse-text { font-size: 13px; color: color-mix(in srgb, var(--ivory) 65%, transparent); margin-top: 4px; line-height: 1.55; }
@media (max-width: 991px) {
  .pps-single-city-gaya-rama-story { padding: 80px 0; }
  .pps-single-city-gaya-rama-story__grid { grid-template-columns: 1fr; gap: 48px; }
  .pps-single-city-gaya-rama-story__prose { font-size: 19px; }
}

/* --- Gaya · Geography (A2) ----------------------------------------- */
.pps-single-city-gaya-geography { padding: 120px 0; background: var(--ivory-2); }
.pps-single-city-gaya-geography__intro { max-width: 780px; margin-bottom: 56px; }
.pps-single-city-gaya-geography__title { font-size: clamp(42px, 5.5vw, 72px); letter-spacing: -0.02em; line-height: 1.05; margin-top: 10px; }
.pps-single-city-gaya-geography__title-em { font-style: italic; color: var(--gold-deep); }
.pps-single-city-gaya-geography__lede { margin-top: 20px; font-size: 17px; color: var(--ink-soft); line-height: 1.65; max-width: 620px; }
.pps-single-city-gaya-geography__grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: start; }
.pps-single-city-gaya-geography__map { aspect-ratio: 4/5; background: var(--paper); border-radius: var(--r-xl); border: 1px solid var(--line); position: relative; overflow: hidden; }
.pps-single-city-gaya-geography__svg { width: 100%; height: 100%; display: block; }
.pps-single-city-gaya-geography__pin-link { cursor: pointer; }
.pps-single-city-gaya-geography__pin-ring { animation: pps-gaya-geo-pulse 2.4s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
@keyframes pps-gaya-geo-pulse { 0%,100% { r: 3; opacity: 0.6; } 50% { r: 7; opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .pps-single-city-gaya-geography__pin-ring { animation: none; } }
.pps-single-city-gaya-geography__map-label { position: absolute; font-family: var(--font-mono); font-size: 10px; color: var(--stone); letter-spacing: 0.14em; }
.pps-single-city-gaya-geography__map-label--tl { top: 16px; left: 16px; }
.pps-single-city-gaya-geography__map-label--br { bottom: 16px; right: 16px; }
.pps-single-city-gaya-geography__picker { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-bottom: 28px; }
.pps-single-city-gaya-geography__pick { padding: 12px 14px; border-radius: var(--r-md); border: 1px solid var(--line); background: var(--paper); color: var(--ink); text-align: left; cursor: pointer; font-family: inherit; font-size: 12px; transition: all 0.22s var(--ease-ios); display: flex; flex-direction: column; gap: 3px; text-decoration: none; }
.pps-single-city-gaya-geography__pick:hover { border-color: var(--ink); }
.pps-single-city-gaya-geography__pick.is-active { border-color: var(--ink); background: var(--ink); color: var(--paper); }
.pps-single-city-gaya-geography__pick-mean { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.1em; opacity: 0.7; }
.pps-single-city-gaya-geography__pick-name { font-family: var(--font-display); font-size: 15px; font-weight: 500; letter-spacing: -0.005em; }
.pps-single-city-gaya-geography__cards { display: flex; flex-direction: column; gap: 20px; }
.pps-single-city-gaya-geography__card { padding: 28px; background: var(--paper); border-radius: var(--r-lg); border: 1px solid var(--line); scroll-margin-top: 96px; }
.pps-single-city-gaya-geography__card:target { animation: pps-gaya-geo-fadeup 0.4s var(--ease-ios); border-color: var(--ink); }
.pps-single-city-gaya-geography.pps-hotspot-enhanced .pps-single-city-gaya-geography__card.is-active { animation: pps-gaya-geo-fadeup 0.4s var(--ease-ios); border-color: var(--ink); }
@keyframes pps-gaya-geo-fadeup { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
  .pps-single-city-gaya-geography__card:target,
  .pps-single-city-gaya-geography.pps-hotspot-enhanced .pps-single-city-gaya-geography__card.is-active { animation: none; }
}
.pps-single-city-gaya-geography__card-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; }
.pps-single-city-gaya-geography__card-mean { font-family: var(--font-mono); font-size: 10px; color: var(--gold-deep); letter-spacing: 0.16em; }
.pps-single-city-gaya-geography__card-dist { font-family: var(--font-mono); font-size: 10px; color: var(--stone); letter-spacing: 0.14em; }
.pps-single-city-gaya-geography__card-name { font-size: 30px; letter-spacing: -0.015em; font-weight: 500; margin: 0; }
.pps-single-city-gaya-geography__card-body { margin-top: 14px; font-size: 16px; color: var(--ink-soft); line-height: 1.7; }
@media (max-width: 991px) {
  .pps-single-city-gaya-geography { padding: 80px 0; }
  .pps-single-city-gaya-geography__grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 575px) {
  .pps-single-city-gaya-geography__picker { grid-template-columns: 1fr; }
}

/* --- Gaya · Pilgrims Day (A3) -------------------------------------- */
.pps-single-city-gaya-pilgrims-day { padding: 120px 0; background: var(--paper); }
.pps-single-city-gaya-pilgrims-day__intro { max-width: 720px; margin-bottom: 56px; }
.pps-single-city-gaya-pilgrims-day__eyebrow { display: block; }
.pps-single-city-gaya-pilgrims-day__title { font-size: clamp(42px, 5.5vw, 72px); letter-spacing: -0.02em; line-height: 1.05; margin-top: 10px; }
.pps-single-city-gaya-pilgrims-day__lede { margin-top: 22px; font-size: 17px; line-height: 1.65; color: var(--ink-soft); }
.pps-single-city-gaya-pilgrims-day__list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.pps-single-city-gaya-pilgrims-day__row-item { border-bottom: 1px solid var(--line); }
.pps-single-city-gaya-pilgrims-day__row { padding: 0; }
.pps-single-city-gaya-pilgrims-day__summary { display: grid; grid-template-columns: 80px 14px 1fr auto; align-items: center; gap: 18px; padding: 18px 4px; cursor: pointer; list-style: none; transition: background 0.22s var(--ease-ios); }
.pps-single-city-gaya-pilgrims-day__summary::-webkit-details-marker { display: none; }
.pps-single-city-gaya-pilgrims-day__summary::marker { content: ""; }
.pps-single-city-gaya-pilgrims-day__summary:hover { background: color-mix(in srgb, var(--ivory-2) 60%, transparent); }
.pps-single-city-gaya-pilgrims-day__time { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; color: var(--stone); transition: color 0.22s var(--ease-ios); }
.pps-single-city-gaya-pilgrims-day__dot { width: 14px; height: 14px; border-radius: 50%; background: var(--paper); border: 2px solid var(--line); transition: all 0.22s var(--ease-ios); }
.pps-single-city-gaya-pilgrims-day__phase { font-family: var(--font-display); font-size: 17px; letter-spacing: -0.005em; color: var(--ink-soft); transition: color 0.22s var(--ease-ios); }
.pps-single-city-gaya-pilgrims-day__toggle { font-family: var(--font-mono); font-size: 14px; color: var(--stone); width: 22px; text-align: center; }
.pps-single-city-gaya-pilgrims-day__toggle-minus { display: none; }
.pps-single-city-gaya-pilgrims-day__row[open] .pps-single-city-gaya-pilgrims-day__toggle-plus { display: none; }
.pps-single-city-gaya-pilgrims-day__row[open] .pps-single-city-gaya-pilgrims-day__toggle-minus { display: inline; }
.pps-single-city-gaya-pilgrims-day__row[open] .pps-single-city-gaya-pilgrims-day__time,
.pps-single-city-gaya-pilgrims-day__row--highlight .pps-single-city-gaya-pilgrims-day__time { color: var(--vermillion); font-weight: 500; }
.pps-single-city-gaya-pilgrims-day__row[open] .pps-single-city-gaya-pilgrims-day__dot,
.pps-single-city-gaya-pilgrims-day__row--highlight .pps-single-city-gaya-pilgrims-day__dot { background: var(--vermillion); border-color: var(--vermillion); }
.pps-single-city-gaya-pilgrims-day__row[open] .pps-single-city-gaya-pilgrims-day__phase { color: var(--ink); font-weight: 500; }
.pps-single-city-gaya-pilgrims-day__panel { position: relative; margin: 0 0 12px 0; background: var(--ivory-2); border-radius: var(--r-xl); padding: 36px 36px 40px; }
.pps-single-city-gaya-pilgrims-day__chip { position: absolute; top: 18px; right: 18px; padding: 6px 12px; background: var(--vermillion); color: var(--paper); border-radius: var(--r-pill); font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; }
.pps-single-city-gaya-pilgrims-day__panel-meta { font-family: var(--font-mono); font-size: 11px; color: var(--vermillion); letter-spacing: 0.18em; }
.pps-single-city-gaya-pilgrims-day__panel-title { font-size: clamp(28px, 3.4vw, 44px); letter-spacing: -0.02em; margin-top: 10px; font-weight: 500; max-width: 480px; }
.pps-single-city-gaya-pilgrims-day__panel-body { margin-top: 18px; font-size: 18px; line-height: 1.75; color: var(--ink-2); max-width: 620px; font-family: var(--font-body); }
@media (max-width: 768px) {
  .pps-single-city-gaya-pilgrims-day { padding: 80px 0; }
  .pps-single-city-gaya-pilgrims-day__summary { grid-template-columns: 64px 12px 1fr auto; gap: 12px; }
  .pps-single-city-gaya-pilgrims-day__panel { padding: 24px; }
}

/* --- Gaya · Gayawal Pandits (A3) ----------------------------------- */
.pps-single-city-gaya-gayawal-pandits { padding: 120px 0; background: var(--ink); color: var(--ivory); position: relative; overflow: hidden; }
.pps-single-city-gaya-gayawal-pandits__mandala { position: absolute; top: -100px; left: -100px; opacity: 0.05; color: var(--gold-soft); pointer-events: none; }
.pps-single-city-gaya-gayawal-pandits__inner { position: relative; }
.pps-single-city-gaya-gayawal-pandits__grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 72px; align-items: start; }
.pps-single-city-gaya-gayawal-pandits__ornament { display: inline-flex; color: var(--gold-soft); margin-bottom: 18px; }
.pps-single-city-gaya-gayawal-pandits__eyebrow { display: block; color: color-mix(in srgb, var(--ivory) 55%, transparent); }
.pps-single-city-gaya-gayawal-pandits__title { font-size: clamp(42px, 5.5vw, 72px); letter-spacing: -0.02em; line-height: 1.04; color: var(--ivory); margin-top: 12px; }
.pps-single-city-gaya-gayawal-pandits__title-em { font-style: italic; color: var(--gold-soft); }
.pps-single-city-gaya-gayawal-pandits__lede { margin-top: 18px; font-size: 17px; line-height: 1.7; color: color-mix(in srgb, var(--ivory) 72%, transparent); max-width: 420px; }
.pps-single-city-gaya-gayawal-pandits__lede:first-of-type { margin-top: 22px; }
.pps-single-city-gaya-gayawal-pandits__quote { margin: 32px 0 0; padding: 20px 24px; background: color-mix(in srgb, var(--ivory) 4%, transparent); border-left: 2px solid var(--gold-soft); border-radius: 0 var(--r-md) var(--r-md) 0; }
.pps-single-city-gaya-gayawal-pandits__quote-text { font-family: var(--font-display); font-size: 24px; font-style: italic; color: var(--ivory); line-height: 1.45; }
.pps-single-city-gaya-gayawal-pandits__quote-cite { margin-top: 10px; font-family: var(--font-mono); font-size: 10px; color: var(--gold-soft); letter-spacing: 0.16em; }
.pps-single-city-gaya-gayawal-pandits__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.pps-single-city-gaya-gayawal-pandits__card { padding: 24px; border-radius: var(--r-lg); background: color-mix(in srgb, var(--ivory) 4%, transparent); border: 1px solid color-mix(in srgb, var(--ivory) 10%, transparent); }
.pps-single-city-gaya-gayawal-pandits__card-head { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 14px; }
.pps-single-city-gaya-gayawal-pandits__avatar { width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0; background: linear-gradient(135deg, var(--gold), var(--vermillion-deep)); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 20px; font-style: italic; color: var(--ivory); }
.pps-single-city-gaya-gayawal-pandits__card-id { min-width: 0; }
.pps-single-city-gaya-gayawal-pandits__card-name { font-family: var(--font-display); font-size: 18px; font-weight: 500; color: var(--ivory); letter-spacing: -0.005em; line-height: 1.25; }
.pps-single-city-gaya-gayawal-pandits__card-gen { font-family: var(--font-mono); font-size: 10px; color: var(--gold-soft); letter-spacing: 0.12em; margin-top: 4px; }
.pps-single-city-gaya-gayawal-pandits__card-langs { font-size: 12px; line-height: 1.55; color: color-mix(in srgb, var(--ivory) 70%, transparent); }
.pps-single-city-gaya-gayawal-pandits__card-spec { margin-top: 12px; padding-top: 12px; border-top: 1px solid color-mix(in srgb, var(--ivory) 10%, transparent); }
.pps-single-city-gaya-gayawal-pandits__card-spec-label { font-family: var(--font-mono); font-size: 9px; color: var(--gold-soft); letter-spacing: 0.14em; }
.pps-single-city-gaya-gayawal-pandits__card-spec-value { font-size: 13px; margin-top: 3px; color: color-mix(in srgb, var(--ivory) 85%, transparent); }
.pps-single-city-gaya-gayawal-pandits__card-rites { margin-top: 10px; display: flex; justify-content: space-between; align-items: baseline; }
.pps-single-city-gaya-gayawal-pandits__card-rites-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; color: color-mix(in srgb, var(--ivory) 50%, transparent); }
.pps-single-city-gaya-gayawal-pandits__card-rites-value { font-family: var(--font-display); font-size: 16px; font-weight: 500; color: var(--gold-soft); }
.pps-single-city-gaya-gayawal-pandits__cta { display: inline-flex; align-items: center; gap: 6px; margin-top: 24px; padding: 12px 22px; font-size: 13px; color: var(--ivory); border: 1px solid color-mix(in srgb, var(--ivory) 22%, transparent); }
@media (max-width: 900px) {
  .pps-single-city-gaya-gayawal-pandits { padding: 80px 0; }
  .pps-single-city-gaya-gayawal-pandits__grid { grid-template-columns: 1fr; gap: 48px; }
  .pps-single-city-gaya-gayawal-pandits__cards { grid-template-columns: 1fr; }
}

/* --- Gaya · Poojas (A3) -------------------------------------------- */
.pps-single-city-gaya-poojas { padding: 120px 0; }
.pps-single-city-gaya-poojas__head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 40px; flex-wrap: wrap; gap: 24px; }
.pps-single-city-gaya-poojas__intro { max-width: 620px; }
.pps-single-city-gaya-poojas__eyebrow { display: block; }
.pps-single-city-gaya-poojas__title { font-size: clamp(40px, 5vw, 64px); letter-spacing: -0.02em; line-height: 1.05; margin-top: 10px; }
.pps-single-city-gaya-poojas__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pps-single-city-gaya-poojas__card { display: flex; flex-direction: column; position: relative; padding: 28px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); text-decoration: none; color: var(--ink); transition: transform 0.24s var(--ease-ios), box-shadow 0.24s var(--ease-ios); }
.pps-single-city-gaya-poojas__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pps-single-city-gaya-poojas__chip { position: absolute; top: 16px; right: 16px; font-family: var(--font-mono); font-size: 9px; padding: 3px 8px; background: var(--vermillion); color: var(--paper); border-radius: var(--r-pill); letter-spacing: 0.08em; }
.pps-single-city-gaya-poojas__sanskrit { font-family: var(--font-display); font-size: 32px; color: var(--gold-deep); font-style: italic; letter-spacing: -0.01em; line-height: 1; margin-bottom: 12px; }
.pps-single-city-gaya-poojas__name { font-size: 24px; letter-spacing: -0.01em; font-weight: 500; }
.pps-single-city-gaya-poojas__desc { font-size: 14px; color: var(--ink-soft); margin-top: 8px; line-height: 1.6; flex: 1; }
.pps-single-city-gaya-poojas__meta { margin: 20px 0 0; padding-top: 14px; border-top: 1px solid var(--line-2); display: flex; flex-direction: column; gap: 6px; }
.pps-single-city-gaya-poojas__meta-row { display: flex; justify-content: space-between; gap: 10px; margin: 0; }
.pps-single-city-gaya-poojas__meta-label { font-family: var(--font-mono); font-size: 9px; color: var(--stone); letter-spacing: 0.12em; }
.pps-single-city-gaya-poojas__meta-value { font-size: 12px; color: var(--ink-2); text-align: right; margin: 0; }
.pps-single-city-gaya-poojas__foot { margin-top: 18px; display: flex; justify-content: space-between; align-items: baseline; gap: 8px; }
.pps-single-city-gaya-poojas__price-label { font-family: var(--font-mono); font-size: 9px; color: var(--stone); letter-spacing: 0.12em; }
.pps-single-city-gaya-poojas__price-value { font-family: var(--font-display); font-size: 22px; font-weight: 500; letter-spacing: -0.01em; white-space: nowrap; }
.pps-single-city-gaya-poojas__cta { font-size: 13px; color: var(--gold-deep); font-weight: 500; white-space: nowrap; }
@media (max-width: 980px) { .pps-single-city-gaya-poojas__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) {
  .pps-single-city-gaya-poojas { padding: 80px 0; }
  .pps-single-city-gaya-poojas__grid { grid-template-columns: 1fr; }
}

/* --- Gaya · Practical Guide (A3) ----------------------------------- */
.pps-single-city-gaya-practical-guide { padding: 100px 0; background: var(--ivory-2); }
.pps-single-city-gaya-practical-guide__intro { max-width: 720px; margin-bottom: 48px; }
.pps-single-city-gaya-practical-guide__eyebrow { display: block; }
.pps-single-city-gaya-practical-guide__title { font-size: clamp(40px, 5vw, 60px); letter-spacing: -0.02em; line-height: 1.05; margin-top: 10px; }
.pps-single-city-gaya-practical-guide__lede { margin-top: 20px; font-size: 16px; color: var(--ink-soft); line-height: 1.65; }
.pps-single-city-gaya-practical-guide__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.pps-single-city-gaya-practical-guide__card { padding: 24px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); display: flex; flex-direction: column; height: 100%; }
.pps-single-city-gaya-practical-guide__card-num { font-family: var(--font-mono); font-size: 10px; color: var(--gold-deep); letter-spacing: 0.14em; }
.pps-single-city-gaya-practical-guide__card-name { font-size: 22px; letter-spacing: -0.01em; margin-top: 8px; font-weight: 500; }
.pps-single-city-gaya-practical-guide__card-body { font-size: 14px; color: var(--ink-soft); margin-top: 12px; line-height: 1.7; flex: 1; }
@media (max-width: 980px) { .pps-single-city-gaya-practical-guide__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) {
  .pps-single-city-gaya-practical-guide { padding: 72px 0; }
  .pps-single-city-gaya-practical-guide__grid { grid-template-columns: 1fr; }
}

/* --- Gaya · Closing (A3) ------------------------------------------- */
.pps-single-city-gaya-closing { padding: 100px 0 140px; background: var(--ink); color: var(--ivory); position: relative; overflow: hidden; }
.pps-single-city-gaya-closing__wash { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse at 50% 40%, color-mix(in srgb, var(--vermillion) 18%, transparent), transparent 70%); }
.pps-single-city-gaya-closing__mandala { position: absolute; top: 40px; left: 50%; transform: translateX(-50%); opacity: 0.07; color: var(--gold-soft); pointer-events: none; }
.pps-single-city-gaya-closing__inner { position: relative; text-align: center; max-width: 780px; margin: 0 auto; }
.pps-single-city-gaya-closing__flame { display: inline-flex; color: var(--gold-soft); margin-bottom: 24px; }
.pps-single-city-gaya-closing__quote { font-family: var(--font-display); font-size: clamp(40px, 5vw, 68px); font-style: italic; line-height: 1.15; letter-spacing: -0.02em; color: var(--ivory); font-weight: 500; margin: 0; }
.pps-single-city-gaya-closing__attribution { margin-top: 24px; display: flex; align-items: center; justify-content: center; gap: 16px; color: color-mix(in srgb, var(--ivory) 50%, transparent); }
.pps-single-city-gaya-closing__rule { width: 40px; height: 1px; background: currentColor; }
.pps-single-city-gaya-closing__source { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; }
.pps-single-city-gaya-closing__actions { margin-top: 52px; display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.pps-single-city-gaya-closing__cta-primary { padding: 16px 30px; font-size: 15px; background: var(--gold-soft); color: var(--ink); border-color: var(--gold-soft); }
.pps-single-city-gaya-closing__cta-ghost { padding: 16px 26px; font-size: 15px; color: var(--ivory); border: 1px solid color-mix(in srgb, var(--ivory) 28%, transparent); }
@media (max-width: 540px) {
  .pps-single-city-gaya-closing { padding: 72px 0 96px; }
  .pps-single-city-gaya-closing__actions { flex-direction: column; align-items: stretch; }
}
