/*
 * Pitrupaksha.org — August 2026 V2 public route families.
 *
 * Scoped composition layer for the launch-readiness templates. It preserves
 * the theme tokens and enquiry-only behavior while adding the information
 * depth and responsive hierarchy established by the approved V2 mockups.
 */

.pps-v2-public {
	overflow: clip;
	background: var(--ivory, #f6f1e6);
	color: var(--ink, #211b16);
}

.pps-v2-public :where(h1, h2, h3, p) {
	text-wrap: pretty;
}

.pps-v2-breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-bottom: clamp(32px, 4vw, 52px);
	font-family: var(--font-mono, monospace);
	font-size: 10px;
	line-height: 1.5;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--ink-soft, #4f463b);
}

.pps-v2-breadcrumbs a {
	display: inline-flex;
	align-items: center;
	min-width: 44px;
	justify-content: center;
	color: var(--gold-deep, #8c6623);
	text-decoration: none;
}

.pps-v2-breadcrumbs a:hover,
.pps-v2-breadcrumbs a:focus-visible {
	text-decoration: underline;
	text-underline-offset: 4px;
}

.pps-v2-hero {
	padding-block: clamp(34px, 5vw, 66px) clamp(62px, 8vw, 104px);
	background:
		radial-gradient(circle at 82% 18%, color-mix(in srgb, var(--gold, #c49a45) 10%, transparent), transparent 28rem),
		var(--ivory, #f6f1e6);
}

.pps-v2-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
	gap: clamp(34px, 6vw, 82px);
	align-items: center;
}

.pps-v2-hero__copy {
	min-width: 0;
}

.pps-v2-hero__copy h1 {
	max-width: 820px;
	margin: 14px 0 0;
	font-family: var(--font-display, Georgia, serif);
	font-size: clamp(48px, 6vw, 78px);
	font-weight: 400;
	line-height: .99;
	letter-spacing: -.035em;
}

.pps-v2-hero__copy > p:not(.pps-v2-note) {
	max-width: 690px;
	margin-top: 24px;
	font-size: clamp(16px, 1.7vw, 19px);
	line-height: 1.7;
	color: var(--ink-soft, #4f463b);
}

.pps-v2-note {
	max-width: 650px;
	margin-top: 18px;
	font-size: 13px;
	line-height: 1.65;
	color: color-mix(in srgb, var(--ink-soft, #4f463b) 86%, white);
}

.pps-v2-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 30px;
}

.pps-v2-actions .btn {
	min-height: 50px;
	padding-inline: 24px;
}

.pps-v2-actions--center {
	justify-content: center;
}

.pps-v2-hero__figure {
	min-width: 0;
	margin: 0;
	overflow: hidden;
	border: 1px solid var(--line, #ded5c6);
	border-radius: 24px;
	background: var(--paper, #fffdf7);
	box-shadow: 0 26px 70px rgba(44, 34, 24, .13);
}

.pps-v2-hero__figure img {
	display: block;
	width: 100%;
	height: clamp(380px, 48vw, 560px);
	object-fit: cover;
}

.pps-v2-hero__figure figcaption {
	padding: 12px 16px;
	font-size: 12px;
	line-height: 1.5;
	color: var(--ink-soft, #4f463b);
}

.pps-v2-index-card {
	min-width: 0;
	padding: clamp(22px, 3vw, 34px);
	border: 1px solid var(--line, #ded5c6);
	border-radius: 20px;
	background: color-mix(in srgb, var(--paper, #fffdf7) 91%, transparent);
	box-shadow: 0 16px 46px rgba(44, 34, 24, .06);
}

.pps-v2-index-card__head {
	margin-bottom: 14px;
}

.pps-v2-index-card h2 {
	margin-top: 8px;
	font-size: clamp(24px, 2.6vw, 34px);
	line-height: 1.08;
}

.pps-v2-index-card ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

.pps-v2-index-card li + li {
	border-top: 1px solid var(--line, #ded5c6);
}

.pps-v2-index-card li a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	min-height: 48px;
	color: inherit;
	text-decoration: none;
}

.pps-v2-index-card li a:hover strong,
.pps-v2-index-card li a:focus-visible strong {
	color: var(--gold-deep, #8c6623);
}

.pps-v2-index-card li strong {
	font-size: 14px;
	font-weight: 600;
}

.pps-v2-index-card li span {
	font-size: 12px;
	color: var(--ink-soft, #4f463b);
}

.pps-v2-index-card > p {
	margin-top: 16px;
	font-size: 11px;
	line-height: 1.55;
	color: var(--ink-soft, #4f463b);
}

.pps-v2-index-card--plain h2 {
	max-width: 420px;
	margin-bottom: 20px;
}

.pps-v2-check-list {
	display: grid;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.pps-v2-check-list li {
	position: relative;
	padding: 14px 0 14px 30px;
	border-top: 1px solid var(--line, #ded5c6);
	font-size: 14px;
	line-height: 1.55;
}

.pps-v2-check-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--gold-deep, #8c6623);
}

.pps-v2-section {
	padding-block: clamp(66px, 8vw, 108px);
}

.pps-v2-section--tint {
	background: color-mix(in srgb, var(--ivory-2, #efe5d3) 56%, var(--ivory, #f6f1e6));
}

.pps-v2-section-head {
	max-width: 760px;
	margin-bottom: clamp(30px, 4vw, 48px);
}

.pps-v2-section-head h2 {
	margin-top: 10px;
	font-family: var(--font-display, Georgia, serif);
	font-size: clamp(36px, 4.4vw, 58px);
	font-weight: 400;
	line-height: 1.04;
	letter-spacing: -.025em;
}

.pps-v2-section-head p {
	max-width: 670px;
	margin-top: 16px;
	font-size: 16px;
	line-height: 1.7;
	color: var(--ink-soft, #4f463b);
}

.pps-v2-section-head--split {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(260px, .9fr);
	gap: 40px;
	align-items: end;
	max-width: none;
}

.pps-v2-section-head--split > p,
.pps-v2-section-head--split > a {
	margin-bottom: 5px;
}

.pps-v2-number-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.pps-v2-number-grid > li,
.pps-v2-info-grid > article {
	min-width: 0;
	padding: clamp(21px, 2.7vw, 30px);
	border: 1px solid var(--line, #ded5c6);
	border-radius: 18px;
	background: var(--paper, #fffdf7);
}

.pps-v2-number-grid > li > span,
.pps-v2-card-number {
	display: block;
	margin-bottom: 18px;
	font-family: var(--font-display, Georgia, serif);
	font-size: 30px;
	line-height: 1;
	color: var(--gold-deep, #8c6623);
}

.pps-v2-number-grid h3,
.pps-v2-info-grid h3 {
	font-family: var(--font-body, serif);
	font-size: 16px;
	font-weight: 650;
	line-height: 1.35;
}

.pps-v2-number-grid p,
.pps-v2-info-grid p {
	margin-top: 10px;
	font-size: 13.5px;
	line-height: 1.65;
	color: var(--ink-soft, #4f463b);
}

.pps-v2-caution {
	max-width: 820px;
	margin-top: 18px;
	padding: 18px 20px;
	border: 1px solid color-mix(in srgb, #b96a42 25%, var(--line, #ded5c6));
	border-radius: 14px;
	background: color-mix(in srgb, #b96a42 7%, var(--paper, #fffdf7));
}

.pps-v2-caution strong {
	display: block;
	font-size: 13px;
}

.pps-v2-caution p {
	margin-top: 5px;
	font-size: 12.5px;
	line-height: 1.6;
	color: var(--ink-soft, #4f463b);
}

.pps-v2-site-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.pps-v2-site-card {
	display: flex;
	min-width: 0;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid var(--line, #ded5c6);
	border-radius: 18px;
	background: var(--paper, #fffdf7);
	color: inherit;
	text-decoration: none;
	transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.pps-v2-site-card:hover,
.pps-v2-site-card:focus-visible {
	transform: translateY(-3px);
	border-color: color-mix(in srgb, var(--gold, #c49a45) 52%, var(--line, #ded5c6));
	box-shadow: 0 20px 48px rgba(44, 34, 24, .12);
}

.pps-v2-site-card__media,
.pps-v2-rite-card__media {
	position: relative;
	display: block;
	overflow: hidden;
}

.pps-v2-site-card__media img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	transition: transform .45s ease;
}

.pps-v2-site-card:hover img {
	transform: scale(1.025);
}

.pps-v2-site-card__media > span,
.pps-v2-rite-card__media > span {
	position: absolute;
	top: 12px;
	right: 12px;
	display: inline-grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border-radius: 999px;
	background: rgba(25, 20, 16, .86);
	font-family: var(--font-mono, monospace);
	font-size: 10px;
	letter-spacing: .06em;
	color: #fff;
}

.pps-v2-site-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 18px 19px 20px;
}

.pps-v2-site-card h3 {
	margin-top: 7px;
	font-size: 27px;
	line-height: 1.08;
}

.pps-v2-site-card p {
	margin-top: 10px;
	font-size: 13px;
	line-height: 1.6;
	color: var(--ink-soft, #4f463b);
}

.pps-v2-text-link {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	min-height: 44px;
	margin-top: auto;
	padding-top: 14px;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.4;
	color: var(--gold-deep, #8c6623);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 4px;
}

.pps-v2-rite-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.pps-v2-rite-card {
	display: grid;
	grid-template-columns: minmax(210px, .78fr) minmax(0, 1.22fr);
	min-width: 0;
	overflow: hidden;
	border: 1px solid var(--line, #ded5c6);
	border-radius: 20px;
	background: var(--paper, #fffdf7);
}

.pps-v2-rite-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 300px;
	object-fit: cover;
}

.pps-v2-rite-card__body {
	display: flex;
	min-width: 0;
	flex-direction: column;
	padding: clamp(22px, 3vw, 32px);
}

.pps-v2-rite-card h3 {
	margin-top: 8px;
	font-size: clamp(27px, 3vw, 36px);
	line-height: 1.06;
}

.pps-v2-rite-card h3 a {
	color: inherit;
	text-decoration: none;
}

.pps-v2-rite-card p {
	margin-top: 14px;
	font-size: 14px;
	line-height: 1.68;
	color: var(--ink-soft, #4f463b);
}

.pps-v2-table-wrap {
	overflow-x: auto;
	border: 1px solid var(--line, #ded5c6);
	border-radius: 18px;
	background: var(--paper, #fffdf7);
	-webkit-overflow-scrolling: touch;
}

.pps-v2-table-wrap:focus-visible {
	outline: 3px solid color-mix(in srgb, var(--gold, #c49a45) 55%, transparent);
	outline-offset: 3px;
}

.pps-v2-table {
	width: 100%;
	min-width: 760px;
	border-collapse: collapse;
}

.pps-v2-table th,
.pps-v2-table td {
	padding: 15px 18px;
	border-bottom: 1px solid var(--line, #ded5c6);
	text-align: left;
	vertical-align: top;
	font-size: 13px;
	line-height: 1.5;
}

.pps-v2-table thead th {
	font-family: var(--font-mono, monospace);
	font-size: 9.5px;
	letter-spacing: .11em;
	text-transform: uppercase;
	color: var(--ink-soft, #4f463b);
}

.pps-v2-table tbody th {
	font-weight: 650;
}

.pps-v2-table tbody th a {
	display: inline-flex;
	align-items: center;
	min-width: 44px;
	min-height: 44px;
	color: inherit;
	text-underline-offset: 3px;
}

.pps-v2-table tbody tr:last-child :is(th, td) {
	border-bottom: 0;
}

.pps-v2-table-note {
	margin-top: 12px;
	font-size: 11.5px;
	line-height: 1.55;
	color: var(--ink-soft, #4f463b);
}

.pps-v2-info-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.pps-v2-info-grid--four {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pps-v2-info-grid .pps-lr-meta {
	margin: -8px 0 7px;
}

.pps-v2-resource-split,
.pps-v2-process-layout {
	display: grid;
	grid-template-columns: minmax(0, .92fr) minmax(380px, 1.08fr);
	gap: clamp(40px, 7vw, 96px);
	align-items: start;
}

.pps-v2-resource-list {
	display: grid;
	gap: 10px;
}

.pps-v2-resource-list a {
	display: grid;
	gap: 5px;
	min-height: 92px;
	padding: 17px 18px;
	border: 1px solid var(--line, #ded5c6);
	border-radius: 14px;
	background: var(--paper, #fffdf7);
	color: inherit;
	text-decoration: none;
}

.pps-v2-resource-list a:hover,
.pps-v2-resource-list a:focus-visible {
	border-color: var(--gold, #c49a45);
}

.pps-v2-resource-list span,
.pps-v2-related-grid span {
	font-family: var(--font-mono, monospace);
	font-size: 9px;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--gold-deep, #8c6623);
}

.pps-v2-resource-list strong {
	font-size: 15px;
}

.pps-v2-resource-list small {
	font-size: 12px;
	line-height: 1.5;
	color: var(--ink-soft, #4f463b);
}

.pps-v2-faq-panel {
	min-width: 0;
}

.pps-v2-faq-panel > h2 {
	margin-bottom: 18px;
	font-size: clamp(28px, 3.5vw, 42px);
	line-height: 1.08;
}

.pps-v2-faq-panel details {
	border-top: 1px solid var(--line, #ded5c6);
}

.pps-v2-faq-panel details:last-of-type {
	border-bottom: 1px solid var(--line, #ded5c6);
}

.pps-v2-faq-panel summary {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 58px;
	padding: 12px 36px 12px 0;
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.45;
	list-style: none;
}

.pps-v2-faq-panel summary::-webkit-details-marker {
	display: none;
}

.pps-v2-faq-panel summary::after {
	content: "+";
	position: absolute;
	right: 4px;
	font-size: 22px;
	font-weight: 400;
	color: var(--gold-deep, #8c6623);
}

.pps-v2-faq-panel details[open] summary::after {
	content: "−";
}

.pps-v2-faq-panel details p {
	max-width: 650px;
	padding: 0 34px 18px 0;
	font-size: 13.5px;
	line-height: 1.7;
	color: var(--ink-soft, #4f463b);
}

.pps-v2-prep-list {
	display: grid;
	gap: 0;
	margin: 0;
	padding: 0;
	border-top: 1px solid var(--line, #ded5c6);
	list-style: none;
}

.pps-v2-prep-list li {
	position: relative;
	padding: 15px 8px 15px 30px;
	border-bottom: 1px solid var(--line, #ded5c6);
	font-size: 14px;
	line-height: 1.6;
}

.pps-v2-prep-list li::before {
	content: "•";
	position: absolute;
	left: 8px;
	color: var(--gold-deep, #8c6623);
}

.pps-v2-stat-band {
	border-block: 1px solid var(--line, #ded5c6);
	background: var(--paper, #fffdf7);
}

.pps-v2-stat-band__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pps-v2-stat-band__grid > div {
	min-width: 0;
	padding: 24px clamp(16px, 2.6vw, 32px);
	border-right: 1px solid var(--line, #ded5c6);
}

.pps-v2-stat-band__grid > div:last-child {
	border-right: 0;
}

.pps-v2-stat-band strong,
.pps-v2-stat-band span {
	display: block;
}

.pps-v2-stat-band strong {
	font-family: var(--font-display, Georgia, serif);
	font-size: clamp(22px, 2.5vw, 34px);
	font-weight: 400;
	line-height: 1.08;
}

.pps-v2-stat-band span {
	margin-top: 7px;
	font-family: var(--font-mono, monospace);
	font-size: 9px;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--ink-soft, #4f463b);
}

.pps-v2-process-list {
	display: grid;
	margin: 0;
	padding: 0;
	border-top: 1px solid var(--line, #ded5c6);
	list-style: none;
}

.pps-v2-process-list li {
	display: grid;
	grid-template-columns: 54px 1fr;
	gap: 18px;
	padding: 24px 0;
	border-bottom: 1px solid var(--line, #ded5c6);
}

.pps-v2-process-list li > span {
	font-family: var(--font-display, Georgia, serif);
	font-size: 28px;
	line-height: 1;
	color: var(--gold-deep, #8c6623);
}

.pps-v2-process-list h3 {
	font-family: var(--font-body, serif);
	font-size: 17px;
	font-weight: 650;
	line-height: 1.35;
}

.pps-v2-process-list p,
.pps-v2-large-copy {
	margin-top: 8px;
	font-size: 14px;
	line-height: 1.68;
	color: var(--ink-soft, #4f463b);
}

.pps-v2-large-copy {
	max-width: 650px;
	font-size: 16px;
}

.pps-v2-site-chips {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
}

.pps-v2-site-chips a {
	display: grid;
	gap: 6px;
	min-height: 92px;
	padding: 19px;
	border: 1px solid var(--line, #ded5c6);
	border-radius: 15px;
	background: var(--paper, #fffdf7);
	color: inherit;
	text-decoration: none;
}

.pps-v2-site-chips a:hover,
.pps-v2-site-chips a:focus-visible {
	border-color: var(--gold, #c49a45);
}

.pps-v2-site-chips strong {
	font-family: var(--font-display, Georgia, serif);
	font-size: 22px;
	font-weight: 400;
}

.pps-v2-site-chips span {
	font-size: 11px;
	color: var(--ink-soft, #4f463b);
}

.pps-v2-feature-panel {
	display: grid;
	grid-template-columns: minmax(170px, .34fr) minmax(0, 1.66fr);
	gap: clamp(28px, 6vw, 86px);
	padding: clamp(32px, 5vw, 62px);
	border: 1px solid var(--line, #ded5c6);
	border-radius: 22px;
	background: var(--paper, #fffdf7);
}

.pps-v2-feature-panel__label {
	display: flex;
	flex-direction: column;
	gap: 12px;
	color: var(--gold-deep, #8c6623);
}

.pps-v2-feature-panel h2 {
	max-width: 780px;
	font-size: clamp(34px, 4.2vw, 54px);
	line-height: 1.05;
}

.pps-v2-feature-panel p {
	max-width: 770px;
	margin-top: 16px;
	font-size: 16px;
	line-height: 1.72;
	color: var(--ink-soft, #4f463b);
}

.pps-v2-related-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
}

.pps-v2-related-grid a {
	display: grid;
	gap: 7px;
	min-height: 108px;
	padding: 19px;
	border: 1px solid var(--line, #ded5c6);
	border-radius: 15px;
	background: var(--paper, #fffdf7);
	color: inherit;
	text-decoration: none;
}

.pps-v2-related-grid a:hover,
.pps-v2-related-grid a:focus-visible {
	border-color: var(--gold, #c49a45);
	transform: translateY(-2px);
}

.pps-v2-related-grid strong {
	font-family: var(--font-display, Georgia, serif);
	font-size: 23px;
	font-weight: 400;
	line-height: 1.1;
}

.pps-v2-related-grid small {
	font-size: 11px;
	line-height: 1.45;
	color: var(--ink-soft, #4f463b);
}

.pps-v2-empty {
	padding: clamp(28px, 5vw, 56px);
	border: 1px solid var(--line, #ded5c6);
	border-radius: 18px;
	background: var(--paper, #fffdf7);
}

.pps-v2-empty h3 {
	font-size: clamp(26px, 3.5vw, 40px);
}

.pps-v2-empty p {
	margin: 10px 0 22px;
	color: var(--ink-soft, #4f463b);
}

.pps-v2-section--closing {
	padding-top: 18px;
}

.pps-v2-closing-card {
	padding: clamp(46px, 8vw, 88px) clamp(24px, 7vw, 88px);
	border-radius: 22px;
	background: var(--ink, #211b16);
	color: var(--ivory, #f6f1e6);
	text-align: center;
}

.pps-v2-closing-card .eyebrow {
	color: var(--gold, #c49a45);
}

.pps-v2-closing-card h2 {
	max-width: 820px;
	margin: 12px auto 0;
	font-size: clamp(38px, 5vw, 64px);
	line-height: 1.03;
	color: inherit;
}

.pps-v2-closing-card p {
	max-width: 660px;
	margin: 18px auto 0;
	font-size: 15px;
	line-height: 1.7;
	color: rgba(246, 241, 230, .76);
}

.pps-v2-closing-card small {
	display: block;
	margin-top: 20px;
	font-size: 11px;
	line-height: 1.5;
	color: rgba(246, 241, 230, .62);
}

.pps-v2-closing-card .btn-primary {
	background: var(--paper, #fffdf7);
	color: var(--ink, #211b16);
}

.pps-v2-closing-card .btn-secondary {
	border-color: rgba(255, 255, 255, .35);
	color: var(--ivory, #f6f1e6);
}

/* City hubs receive distinct compositions without changing data authority. */
.pps-v2-city--ghats .pps-v2-city-hero .pps-v2-hero__grid {
	grid-template-columns: minmax(0, .86fr) minmax(420px, 1.14fr);
}

.pps-v2-city--ghats .pps-v2-city-hero .pps-v2-hero__figure img {
	height: clamp(430px, 54vw, 620px);
}

.pps-v2-city--river-steps .pps-v2-city-hero {
	background:
		linear-gradient(130deg, color-mix(in srgb, var(--ivory-2, #efe5d3) 75%, white), var(--ivory, #f6f1e6) 56%),
		var(--ivory, #f6f1e6);
}

.pps-v2-city--river-city .pps-v2-city-hero .pps-v2-hero__figure {
	grid-column: 1;
	grid-row: 1;
}

.pps-v2-city--river-city .pps-v2-city-hero .pps-v2-hero__copy {
	grid-column: 2;
	grid-row: 1;
}

.pps-v2-city--yamuna .pps-v2-feature-panel {
	background: color-mix(in srgb, var(--paper, #fffdf7) 82%, #f0dfd6);
}

.pps-v2-city--mountain .pps-v2-city-hero {
	background: #1b1a17;
	color: var(--ivory, #f6f1e6);
}

.pps-v2-city--mountain .pps-v2-city-hero :is(.pps-v2-breadcrumbs, .pps-v2-hero__copy > p, .pps-v2-note, figcaption) {
	color: rgba(246, 241, 230, .72);
}

.pps-v2-city--mountain .pps-v2-city-hero .pps-v2-hero__copy h1 {
	color: var(--ivory, #f6f1e6);
}

.pps-v2-city--mountain .pps-v2-city-hero .pps-v2-breadcrumbs a,
.pps-v2-city--mountain .pps-v2-city-hero .eyebrow {
	color: var(--gold, #c49a45);
}

.pps-v2-city--mountain .pps-v2-city-hero .pps-v2-hero__figure {
	border-color: rgba(255, 255, 255, .18);
	background: #25221e;
}

.pps-v2-city--mountain .pps-v2-city-hero .btn-secondary {
	border-color: rgba(255, 255, 255, .35);
	color: var(--ivory, #f6f1e6);
}

.pps-v2-city--coast .pps-v2-city-hero .pps-v2-hero__grid {
	grid-template-columns: minmax(0, .8fr) minmax(460px, 1.2fr);
}

.pps-v2-city--coast .pps-v2-city-hero .pps-v2-hero__figure img {
	height: clamp(360px, 42vw, 500px);
}

@media (max-width: 1100px) {
	.pps-v2-site-grid,
	.pps-v2-related-grid,
	.pps-v2-site-chips {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.pps-v2-number-grid,
	.pps-v2-info-grid--four {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.pps-v2-rite-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 860px) {
	.pps-v2-hero__grid,
	.pps-v2-city--ghats .pps-v2-city-hero .pps-v2-hero__grid,
	.pps-v2-city--coast .pps-v2-city-hero .pps-v2-hero__grid {
		grid-template-columns: 1fr;
	}

	.pps-v2-city--river-city .pps-v2-city-hero .pps-v2-hero__figure,
	.pps-v2-city--river-city .pps-v2-city-hero .pps-v2-hero__copy {
		grid-column: auto;
		grid-row: auto;
	}

	.pps-v2-city--river-city .pps-v2-city-hero .pps-v2-hero__figure {
		order: 0;
	}

	.pps-v2-section-head--split,
	.pps-v2-resource-split,
	.pps-v2-process-layout,
	.pps-v2-feature-panel {
		grid-template-columns: 1fr;
	}

	.pps-v2-section-head--split {
		gap: 12px;
	}

	.pps-v2-stat-band__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.pps-v2-stat-band__grid > div:nth-child(2) {
		border-right: 0;
	}

	.pps-v2-stat-band__grid > div:nth-child(-n+2) {
		border-bottom: 1px solid var(--line, #ded5c6);
	}

	.pps-v2-info-grid {
		grid-template-columns: 1fr;
	}

	.pps-v2-info-grid--four {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.pps-v2-feature-panel {
		gap: 20px;
	}

	.pps-v2-feature-panel__label {
		flex-direction: row;
	}
}

@media (max-width: 680px) {
	.pps-v2-hero {
		padding-block: 24px 62px;
	}

	.pps-v2-breadcrumbs {
		margin-bottom: 28px;
	}

	.pps-v2-hero__copy h1 {
		font-size: clamp(42px, 12vw, 58px);
	}

	.pps-v2-hero__figure img,
	.pps-v2-city--ghats .pps-v2-city-hero .pps-v2-hero__figure img,
	.pps-v2-city--coast .pps-v2-city-hero .pps-v2-hero__figure img {
		height: auto;
		aspect-ratio: 4 / 3;
	}

	.pps-v2-actions {
		flex-direction: column;
	}

	.pps-v2-actions .btn {
		width: 100%;
		justify-content: center;
		text-align: center;
	}

	.pps-v2-number-grid,
	.pps-v2-info-grid--four,
	.pps-v2-site-grid,
	.pps-v2-related-grid,
	.pps-v2-site-chips {
		grid-template-columns: 1fr;
	}

	.pps-v2-rite-card {
		grid-template-columns: 1fr;
	}

	.pps-v2-rite-card__media img {
		height: auto;
		min-height: 0;
		aspect-ratio: 16 / 10;
	}

	.pps-v2-stat-band__grid {
		grid-template-columns: 1fr;
	}

	.pps-v2-stat-band__grid > div {
		border-right: 0;
		border-bottom: 1px solid var(--line, #ded5c6);
	}

	.pps-v2-stat-band__grid > div:last-child {
		border-bottom: 0;
	}

	.pps-v2-site-card__media img {
		aspect-ratio: 16 / 9;
	}

	.pps-v2-resource-split,
	.pps-v2-process-layout {
		gap: 42px;
	}

	.pps-v2-closing-card {
		border-radius: 18px;
	}
}

@media (max-width: 390px) {
	.pps-v2-hero__copy h1 {
		font-size: 41px;
	}

	.pps-v2-section-head h2,
	.pps-v2-feature-panel h2 {
		font-size: 34px;
	}

	.pps-v2-index-card,
	.pps-v2-number-grid > li,
	.pps-v2-info-grid > article,
	.pps-v2-feature-panel {
		padding: 20px;
	}

	.pps-v2-index-card li a {
		gap: 10px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.pps-v2-site-card,
	.pps-v2-site-card img,
	.pps-v2-related-grid a {
		transition: none;
	}
}
