/* Rahato — Professional portfolio layer */

body.rahato-site.rahato-portfolio {
	background: var(--rahato-cream);
	color: var(--rahato-ink);
}

.rahato-portfolio .rahato-wrap {
	width: min(1200px, calc(100% - 2.5rem));
}

/* ── Header ───────────────────────────────────────────── */
.rahato-portfolio .rahato-header .rahato-header__inner {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	width: 100%;
	max-width: none;
	margin: 0;
}

.rahato-portfolio .rahato-header__logo {
	grid-column: 1;
	justify-self: start;
}

.rahato-portfolio .rahato-header__nav {
	grid-column: 3;
	justify-self: end;
	margin-left: 0;
}

.rahato-portfolio .rahato-nav {
	justify-content: flex-end;
	margin-left: 0;
}

.rahato-portfolio .rahato-header {
	background: rgba(246, 243, 237, 0.9);
}

.rahato-portfolio .rahato-nav {
	gap: 2.25rem;
}

.rahato-portfolio .rahato-nav a {
	font-size: 0.8125rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

/* ── Hero — full-bleed immersive ──────────────────────── */
.pf-hero {
	min-height: calc(100vh - 80px);
	display: flex;
	align-items: center;
	padding: clamp(4rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 4rem);
	position: relative;
	overflow: hidden;
}

.pf-hero--immersive {
	min-height: max(620px, calc(100vh - 80px));
	padding: clamp(5rem, 10vw, 7rem) 0 clamp(4rem, 8vw, 5rem);
}

.pf-hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.pf-hero__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 68% 42%;
	display: block;
	filter: brightness(0.96) saturate(1);
}

.pf-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(
			98deg,
			rgba(12, 18, 22, 0.55) 0%,
			rgba(18, 32, 36, 0.4) 26%,
			rgba(31, 74, 72, 0.18) 44%,
			rgba(26, 35, 40, 0.06) 58%,
			transparent 72%
		),
		linear-gradient(to top, rgba(12, 18, 22, 0.24) 0%, transparent 38%);
	pointer-events: none;
}

.pf-hero__inner {
	position: relative;
	z-index: 2;
	width: min(1200px, calc(100% - 2.5rem));
	margin-inline: auto;
}

.pf-hero--immersive .pf-hero__inner {
	margin-left: clamp(1.25rem, 4.5vw, 4rem);
	margin-right: auto;
	padding-right: 42%;
}

.pf-hero__content {
	max-width: 32rem;
}

.pf-hero__label {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.92);
	margin-bottom: 1.75rem;
	padding: 0.45rem 0.9rem;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 999px;
	backdrop-filter: blur(10px);
}

.pf-hero__label::before {
	display: none;
}

.pf-hero__title {
	font-family: var(--rahato-font-display);
	font-size: clamp(3.25rem, 8vw, 5.75rem);
	font-weight: 600;
	line-height: 0.98;
	letter-spacing: -0.035em;
	margin: 0 0 0.75rem;
	color: #fff;
	text-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.pf-hero__tagline {
	font-family: var(--rahato-font-display);
	font-size: clamp(1.35rem, 3vw, 2rem);
	font-weight: 500;
	font-style: italic;
	background: linear-gradient(135deg, #f0c9a8 0%, #fff 48%, #b8ddd8 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	margin: 0 0 1.25rem;
	letter-spacing: -0.01em;
	filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.25));
}

.pf-hero__desc {
	font-size: 1.0625rem;
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.82);
	max-width: 28rem;
	margin: 0 0 2.25rem;
	font-weight: 400;
	text-shadow: 0 2px 16px rgba(0, 0, 0, 0.28);
}

.pf-hero--immersive .rahato-btn--ghost-light {
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
	border-color: rgba(255, 255, 255, 0.38);
	backdrop-filter: blur(8px);
}

.pf-hero--immersive .rahato-btn--ghost-light:hover {
	background: rgba(255, 255, 255, 0.14);
	border-color: rgba(255, 255, 255, 0.65);
	color: #fff;
}

.pf-hero__scroll {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.55);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.65rem;
	z-index: 2;
}

.pf-hero__scroll span {
	width: 1px;
	height: 48px;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0.65), transparent);
	animation: pf-scroll-line 2.2s ease-in-out infinite;
}

/* ── Made in India corner emblem ──────────────────────── */
.rahato-india-corner {
	position: absolute;
	right: clamp(1rem, 2.5vw, 2rem);
	bottom: clamp(5rem, 10vw, 7rem);
	z-index: 3;
	pointer-events: none;
}

.rahato-india-corner__card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.55rem;
	padding: 1rem 1.15rem 0.9rem;
	min-width: 124px;
	background:
		linear-gradient(155deg, rgba(31, 74, 72, 0.94) 0%, rgba(26, 35, 40, 0.96) 55%, rgba(20, 28, 32, 0.98) 100%);
	backdrop-filter: blur(16px) saturate(140%);
	border-radius: 20px;
	box-shadow:
		0 22px 48px rgba(26, 35, 40, 0.28),
		0 0 0 1px rgba(255, 255, 255, 0.08) inset;
	transform: rotate(-2deg);
	animation: rahato-india-float 6s ease-in-out infinite;
}

.rahato-india-corner__card::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	padding: 1px;
	background: var(--rahato-gradient-brand);
	mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	mask-composite: exclude;
	opacity: 0.65;
	pointer-events: none;
}

.rahato-india-corner__glow {
	position: absolute;
	inset: -30%;
	background: radial-gradient(circle, rgba(196, 104, 69, 0.22) 0%, rgba(42, 99, 96, 0.18) 40%, transparent 70%);
	filter: blur(18px);
	opacity: 0.85;
	animation: rahato-india-glow 4s ease-in-out infinite alternate;
	pointer-events: none;
}

.rahato-india-corner__lion {
	position: relative;
	z-index: 1;
	width: 96px;
	height: auto;
	display: block;
	filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
}

.rahato-india-corner__text {
	position: relative;
	z-index: 1;
	font-size: 0.625rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.92);
	line-height: 1.2;
	text-align: center;
}

.pf-page-hero .rahato-india-corner {
	bottom: clamp(1.5rem, 4vw, 2.5rem);
	right: clamp(1rem, 3vw, 2rem);
}

@keyframes rahato-india-float {
	0%, 100% { transform: rotate(-2deg) translateY(0); }
	50% { transform: rotate(-2deg) translateY(-6px); }
}

@keyframes rahato-india-glow {
	0% { opacity: 0.55; transform: scale(0.95); }
	100% { opacity: 1; transform: scale(1.05); }
}

@media (max-width: 768px) {
	.pf-page-hero .rahato-india-corner {
		position: absolute;
		right: 1rem;
		bottom: 1rem;
		margin: 0;
		width: auto;
	}
}

@media (max-width: 480px) {
	.rahato-india-corner__card {
		min-width: 112px;
	}

	.rahato-india-corner__lion {
		width: 84px;
	}

	.rahato-india-corner__text {
		font-size: 0.575rem;
	}
}

/* ── Strip banner — dual gradient ─────────────────────── */
.pf-strip {
	background: var(--rahato-gradient-brand);
	color: #fff;
	padding: 1rem 0;
	text-align: center;
	border-block: none;
}

.pf-strip--shop .pf-strip__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.25rem;
	flex-wrap: wrap;
}

.pf-strip__text {
	margin: 0;
	font-size: 0.9375rem;
	font-weight: 500;
	letter-spacing: 0.01em;
}

.pf-strip__btn {
	padding: 0.55rem 1.25rem;
	border-radius: 999px;
	background: #fff;
	color: var(--rahato-teal-dark) !important;
	font-size: 0.8125rem;
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
	transition: transform 0.2s, box-shadow 0.2s;
}

.pf-strip__btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
	color: var(--rahato-teal-dark) !important;
}

.pf-strip p {
	margin: 0;
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.01em;
}

.pf-strip a {
	color: #fff;
	font-weight: 600;
	text-decoration: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.4);
	transition: border-color 0.2s;
}

.pf-strip a:hover {
	border-color: #fff;
}

/* ── Sections ─────────────────────────────────────────── */
.pf-section {
	padding: clamp(5rem, 12vw, 8rem) 0;
	position: relative;
}

.pf-section--alt {
	background: var(--rahato-surface);
	border-block: 1px solid var(--rahato-border);
}

.pf-section--dark {
	background:
		radial-gradient(ellipse 80% 60% at 0% 100%, rgba(196, 104, 69, 0.15) 0%, transparent 50%),
		radial-gradient(ellipse 60% 50% at 100% 0%, rgba(42, 99, 96, 0.2) 0%, transparent 50%),
		linear-gradient(165deg, #1f4a48 0%, var(--rahato-ink) 100%);
	color: #fff;
}

.pf-section__head {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 1.5rem 3rem;
	align-items: end;
	margin-bottom: clamp(2.5rem, 5vw, 4rem);
	padding-bottom: 2rem;
	border-bottom: 1px solid var(--rahato-border);
}

.pf-section__head--center {
	grid-template-columns: 1fr;
	justify-items: center;
	text-align: center;
	border-bottom: none;
	padding-bottom: 0;
}

.pf-section--dark .pf-section__head {
	border-bottom-color: rgba(255, 255, 255, 0.1);
}

.pf-section__num {
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	background: var(--rahato-gradient-brand);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	display: block;
	margin-bottom: 0.65rem;
}

.pf-section--dark .pf-section__num {
	color: var(--rahato-amber);
}

.pf-section__title {
	font-family: var(--rahato-font-display);
	font-size: clamp(2rem, 4vw, 2.75rem);
	font-weight: 600;
	line-height: 1.08;
	letter-spacing: -0.02em;
	margin: 0;
	color: var(--rahato-ink);
}

.pf-section--dark .pf-section__title {
	color: #fff;
}

.pf-section__desc {
	max-width: 26rem;
	font-size: 0.9375rem;
	line-height: 1.75;
	color: var(--rahato-ink-soft);
	margin: 0;
	grid-column: 1;
}

.pf-section__head--center .pf-section__desc {
	max-width: 32rem;
}

.pf-section--dark .pf-section__desc {
	color: rgba(255, 255, 255, 0.65);
}

.pf-link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--rahato-ink);
	text-decoration: none;
	transition: gap 0.3s var(--rahato-ease), color 0.3s;
	align-self: end;
}

.pf-link-arrow:hover {
	gap: 0.75rem;
	color: var(--rahato-primary);
}

.pf-section--dark .pf-link-arrow {
	color: #fff;
}

.pf-section--dark .pf-link-arrow:hover {
	color: var(--rahato-amber);
}

.pf-section--dark .rahato-btn--ghost {
	color: #fff;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.35);
	box-shadow: none;
}

.pf-section--dark .rahato-btn--ghost:hover {
	border-color: #fff;
	color: #fff;
	background: rgba(255, 255, 255, 0.08);
}

/* ── Project grid ─────────────────────────────────────── */
.pf-grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 1rem;
}

.pf-card {
	position: relative;
	border-radius: var(--rahato-radius);
	overflow: hidden;
	background: var(--rahato-surface);
	text-decoration: none;
	color: inherit;
	display: block;
	min-height: 340px;
	grid-column: span 4;
	border: 1px solid var(--rahato-border);
	box-shadow: var(--rahato-shadow);
	transition: transform 0.45s var(--rahato-ease), box-shadow 0.45s var(--rahato-ease);
}

.pf-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--rahato-shadow-lg);
}

.pf-card--wide {
	grid-column: span 8;
	min-height: 440px;
}

.pf-card--tall {
	grid-column: span 4;
	min-height: 500px;
}

.pf-card__img {
	position: absolute;
	inset: 0;
	background: var(--rahato-sand);
}

.pf-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.7s var(--rahato-ease);
}

.pf-card__img--travel img {
	object-position: center top;
}

.pf-card__img--luxury img {
	object-position: center top;
}

.pf-card:hover .pf-card__img img {
	transform: scale(1.04);
}

.pf-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba(31, 74, 72, 0.92) 0%,
		rgba(196, 104, 69, 0.35) 45%,
		transparent 100%
	);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 1.75rem;
}

.pf-card__cat {
	font-size: 0.625rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--rahato-amber);
	margin-bottom: 0.4rem;
}

.pf-card__name {
	font-family: var(--rahato-font-display);
	font-size: 1.5rem;
	font-weight: 600;
	color: #fff;
	margin: 0 0 0.35rem;
	line-height: 1.15;
	letter-spacing: -0.01em;
}

.pf-card__meta {
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.7);
	margin: 0;
	opacity: 0;
	transform: translateY(6px);
	transition: opacity 0.35s var(--rahato-ease), transform 0.35s var(--rahato-ease);
}

.pf-card:hover .pf-card__meta {
	opacity: 1;
	transform: translateY(0);
}

.pf-card--soon {
	grid-column: span 4;
	min-height: 260px;
	background: var(--rahato-surface);
	border: 1px dashed rgba(196, 104, 69, 0.35);
	box-shadow: none;
}

.pf-card--soon:hover {
	transform: translateY(-2px);
	border-color: var(--rahato-primary);
	box-shadow: var(--rahato-shadow);
}

.pf-card--soon .pf-card__overlay {
	background: transparent;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 2rem;
}

.pf-card--soon .pf-card__name {
	color: var(--rahato-ink);
	font-size: 1.2rem;
}

.pf-card--soon .pf-card__cat {
	color: var(--rahato-primary);
}

.pf-card--soon .pf-card__meta {
	opacity: 1;
	transform: none;
	color: var(--rahato-ink-soft);
}

/* ── Gallery ──────────────────────────────────────────── */
.pf-gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}

.pf-gallery__item {
	border-radius: var(--rahato-radius);
	overflow: hidden;
	aspect-ratio: 4 / 5;
	border: 1px solid var(--rahato-border);
	box-shadow: var(--rahato-shadow);
}

.pf-gallery__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.6s var(--rahato-ease);
}

.pf-gallery__item:hover img {
	transform: scale(1.03);
}

/* ── About block ──────────────────────────────────────── */
.pf-about {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2.5rem, 6vw, 5rem);
	align-items: center;
}

.pf-about__visual {
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 32px 64px rgba(0, 0, 0, 0.35);
}

.pf-about__visual img {
	width: 100%;
	display: block;
	border-radius: 20px;
}

.pf-about__stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-top: 2.5rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pf-stat strong {
	display: block;
	font-family: var(--rahato-font-display);
	font-size: 2.25rem;
	font-weight: 600;
	background: linear-gradient(135deg, var(--rahato-amber) 0%, var(--rahato-warm) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	line-height: 1;
	margin-bottom: 0.35rem;
	letter-spacing: -0.02em;
}

.pf-stat span {
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.55);
	line-height: 1.45;
}

/* ── Testimonials ─────────────────────────────────────── */
.pf-quotes {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}

.pf-quote {
	background: var(--rahato-surface);
	border-radius: var(--rahato-radius);
	padding: 2rem 1.75rem;
	border: 1px solid var(--rahato-border);
	margin: 0;
	box-shadow: var(--rahato-shadow);
	transition: box-shadow 0.35s var(--rahato-ease), transform 0.35s var(--rahato-ease);
}

.pf-quote:hover {
	box-shadow: var(--rahato-shadow-md);
	transform: translateY(-2px);
}

.pf-quote p {
	font-size: 0.9375rem;
	font-style: normal;
	line-height: 1.75;
	color: var(--rahato-ink-soft);
	margin: 0 0 1.5rem;
}

.pf-quote p::before {
	content: "\201C";
	font-family: var(--rahato-font-display);
	font-size: 2.5rem;
	line-height: 0;
	background: var(--rahato-gradient-brand);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	opacity: 0.6;
	display: block;
	margin-bottom: 0.5rem;
}

.pf-quote footer {
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--rahato-ink);
	padding-top: 1rem;
	border-top: 1px solid var(--rahato-border);
}

.pf-quote footer span {
	display: block;
	font-weight: 400;
	color: var(--rahato-ink-soft);
	margin-top: 0.2rem;
	font-size: 0.75rem;
}

/* ── CTA ──────────────────────────────────────────────── */
.pf-cta {
	text-align: center;
	padding: clamp(5rem, 12vw, 8rem) 0;
	background:
		radial-gradient(ellipse 70% 60% at 20% 100%, rgba(196, 104, 69, 0.25) 0%, transparent 50%),
		radial-gradient(ellipse 60% 50% at 80% 0%, rgba(42, 99, 96, 0.3) 0%, transparent 50%),
		linear-gradient(160deg, #1f4a48 0%, var(--rahato-ink) 100%);
	color: #fff;
}

.pf-cta__title {
	font-family: var(--rahato-font-display);
	font-size: clamp(2.25rem, 5vw, 3.5rem);
	font-weight: 600;
	line-height: 1.05;
	letter-spacing: -0.025em;
	margin: 0 0 1rem;
	color: #fff;
}

.pf-cta__desc {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.65);
	max-width: 30rem;
	margin: 0 auto 2.25rem;
	line-height: 1.75;
}

.pf-cta .rahato-btn--ghost {
	color: #fff;
	background: transparent;
	border-color: rgba(255, 255, 255, 0.25);
	box-shadow: none;
}

.pf-cta .rahato-btn--ghost:hover {
	border-color: #fff;
	color: #fff;
}

/* ── About page ───────────────────────────────────────── */
.pf-about-hero {
	padding: clamp(5rem, 11vw, 7.5rem) 0 clamp(3rem, 6vw, 4rem);
	background:
		radial-gradient(ellipse 70% 60% at 10% 0%, rgba(196, 104, 69, 0.1) 0%, transparent 55%),
		radial-gradient(ellipse 60% 50% at 90% 100%, rgba(42, 99, 96, 0.1) 0%, transparent 50%),
		var(--rahato-gradient-hero);
	border-bottom: 1px solid var(--rahato-border);
	text-align: center;
}

.pf-about-hero__inner {
	max-width: 760px;
	margin-inline: auto;
}

.pf-about-hero__title {
	font-family: var(--rahato-font-display);
	font-size: clamp(2.25rem, 5vw, 3.5rem);
	font-weight: 600;
	line-height: 1.08;
	letter-spacing: -0.03em;
	margin: 0.75rem 0 1.25rem;
	color: var(--rahato-ink);
}

.pf-about-hero__lead {
	font-size: clamp(1.05rem, 2vw, 1.2rem);
	line-height: 1.75;
	color: var(--rahato-ink-soft);
	margin: 0;
	max-width: 42rem;
	margin-inline: auto;
}

.pf-about-story__grid {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: clamp(2.5rem, 6vw, 5rem);
	align-items: start;
}

.pf-about-story__content p {
	font-size: 1.0625rem;
	line-height: 1.85;
	color: var(--rahato-ink-soft);
	margin: 0 0 1.25rem;
}

.pf-about-story__opening {
	font-family: var(--rahato-font-display);
	font-size: clamp(1.35rem, 3vw, 1.75rem) !important;
	font-style: italic;
	color: var(--rahato-teal) !important;
	line-height: 1.5 !important;
	margin-bottom: 1.75rem !important;
}

.pf-about-story__quote {
	margin: 2rem 0;
	padding: 1.5rem 1.75rem;
	background: var(--rahato-gradient-soft);
	border-left: 3px solid var(--rahato-warm);
	border-radius: 0 var(--rahato-radius-sm) var(--rahato-radius-sm) 0;
}

.pf-about-story__quote p {
	margin: 0 !important;
	font-family: var(--rahato-font-display);
	font-size: 1.2rem !important;
	font-weight: 500;
	font-style: italic;
	line-height: 1.55 !important;
	color: var(--rahato-ink) !important;
}

.pf-about-story__closing {
	font-weight: 600 !important;
	color: var(--rahato-teal) !important;
	font-size: 1.1rem !important;
	margin-top: 1.5rem !important;
}

.pf-about-story__milestone {
	margin-top: 2rem;
	padding: 1.35rem 1.5rem;
	background: #fff;
	border: 1px solid var(--rahato-border);
	border-radius: var(--rahato-radius-sm);
	box-shadow: var(--rahato-shadow);
}

.pf-about-story__milestone h3 {
	margin: 0 0 0.65rem;
	font-family: var(--rahato-font-display);
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--rahato-teal);
}

.pf-about-story__milestone p {
	margin: 0 !important;
	font-size: 0.9875rem !important;
	line-height: 1.75 !important;
}

.pf-about-story__visual {
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid var(--rahato-border);
	box-shadow: var(--rahato-shadow-lg);
	position: sticky;
	top: 6rem;
}

.pf-about-story__gallery {
	display: grid;
	gap: 1rem;
	background: transparent;
	border: none;
	box-shadow: none;
	overflow: visible;
}

.pf-about-story__photo {
	margin: 0;
	border-radius: 18px;
	overflow: hidden;
	border: 1px solid var(--rahato-border);
	box-shadow: var(--rahato-shadow-lg);
	background: #fff;
}

.pf-about-story__photo img {
	width: 100%;
	height: auto;
	display: block;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	object-position: center 35%;
}

.pf-about-story__photo--accent img,
.pf-about-story__photo--featured img {
	object-position: center 22%;
}

.pf-about-story__photo--featured img {
	aspect-ratio: 16 / 9;
	min-height: clamp(240px, 36vw, 380px);
}

.pf-about-story__photo figcaption {
	padding: 0.75rem 1rem;
	font-size: 0.8125rem;
	line-height: 1.5;
	color: var(--rahato-ink-soft);
	text-align: center;
	background: #fff;
	border-top: 1px solid var(--rahato-border);
}

.pf-about-story__photo figcaption strong {
	color: var(--rahato-ink);
}

.pf-about-story__visual img {
	width: 100%;
	display: block;
	object-fit: cover;
	aspect-ratio: 4 / 5;
}

.pf-about-story__gallery.pf-about-story__visual img {
	aspect-ratio: 4 / 3;
}

.pf-about-pillars {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
	margin-top: 2.5rem;
}

.pf-about-pillar {
	background: var(--rahato-surface);
	border: 1px solid var(--rahato-border);
	border-radius: var(--rahato-radius);
	padding: 2rem 1.5rem;
	box-shadow: var(--rahato-shadow);
	transition: transform 0.35s var(--rahato-ease), box-shadow 0.35s var(--rahato-ease);
}

.pf-about-pillar:hover {
	transform: translateY(-4px);
	box-shadow: var(--rahato-shadow-md);
}

.pf-about-pillar__icon {
	font-size: 1.75rem;
	display: block;
	margin-bottom: 1rem;
}

.pf-about-pillar h3 {
	font-family: var(--rahato-font-display);
	font-size: 1.25rem;
	margin: 0 0 0.65rem;
	color: var(--rahato-ink);
}

.pf-about-pillar p {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.65;
	color: var(--rahato-ink-soft);
}

.pf-about-team__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
	margin-top: 2.5rem;
}

.pf-team-card {
	position: relative;
	text-align: center;
	background: var(--rahato-surface);
	border-radius: 20px;
	padding: 2.5rem 1.5rem 2rem;
	border: 1px solid var(--rahato-border);
	box-shadow: var(--rahato-shadow);
	transition: transform 0.35s var(--rahato-ease), box-shadow 0.35s var(--rahato-ease);
}

.pf-team-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--rahato-shadow-md);
}

.pf-team-card__badge {
	position: absolute;
	top: 1rem;
	right: 1rem;
	font-size: 0.5625rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	padding: 0.3rem 0.55rem;
	border-radius: 999px;
	background: var(--rahato-gradient-soft);
	color: var(--rahato-teal);
	border: 1px solid rgba(42, 99, 96, 0.15);
}

.pf-team-card__photo {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	margin: 0 auto 1.25rem;
	overflow: hidden;
	border: 3px solid rgba(196, 104, 69, 0.2);
	box-shadow: 0 8px 24px rgba(26, 35, 40, 0.12);
	background: var(--rahato-sand);
}

.pf-team-card__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	display: block;
}

.pf-team-card__initial {
	width: 76px;
	height: 76px;
	border-radius: 50%;
	margin: 0 auto 1.25rem;
	background: var(--rahato-gradient-brand);
	color: #fff;
	font-family: var(--rahato-font-display);
	font-size: 1.85rem;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 24px rgba(196, 104, 69, 0.2);
}

.pf-team-card h3 {
	font-family: var(--rahato-font-display);
	font-size: 1.35rem;
	margin: 0 0 0.35rem;
	color: var(--rahato-ink);
}

.pf-team-card p {
	margin: 0;
	font-size: 0.875rem;
	color: var(--rahato-teal);
	font-weight: 600;
	letter-spacing: 0.02em;
}

@media (max-width: 900px) {
	.pf-about-story__grid,
	.pf-about-pillars,
	.pf-about-team__grid {
		grid-template-columns: 1fr;
	}

	.pf-about-story__visual {
		position: static;
		order: -1;
	}

	.pf-about-story__gallery {
		order: -1;
	}

	.pf-about-story__visual img,
	.pf-about-story__photo img {
		aspect-ratio: 16 / 10;
	}
}

#work.pf-section {
	padding-bottom: clamp(2rem, 5vw, 3rem);
}

.pf-buy-manual-stack {
	display: grid;
	gap: 1rem;
}

.pf-section--buy-manual {
	background: var(--rahato-cream);
	border-block: 1px solid var(--rahato-border);
}

.pf-section--buy-manual + .pf-product-features {
	padding-top: clamp(2.5rem, 6vw, 4rem);
}

@media (min-width: 900px) {
	.pf-buy-manual-stack {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		align-items: stretch;
		gap: 1.15rem;
	}

	.pf-buy-manual-stack .rahato-amazon-buy,
	.pf-buy-manual-stack .rahato-shop-cta,
	.pf-buy-manual-stack .pf-manual-link {
		height: 100%;
	}
}

/* ── Homepage trust stack (TV + investors right after products) ─ */
.pf-home-trust .pf-section--feature,
.pf-home-trust .pf-investors.pf-section {
	padding: clamp(2.25rem, 5vw, 3.25rem) 0;
}

.pf-home-trust .pf-section--feature {
	border-top: none;
}

.pf-home-trust .pf-investors.pf-section--alt {
	padding-top: 0;
	border-top: none;
}

.pf-home-trust .pf-section__head {
	margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
	padding-bottom: 1.15rem;
}

.pf-home-trust .pf-section__head--center .pf-section__desc {
	max-width: 40rem;
	margin-inline: auto;
}

.pf-home-trust .pf-media-feature {
	gap: clamp(1.25rem, 3vw, 2rem);
	align-items: center;
}

.pf-home-trust .pf-media-feature__highlights {
	margin: 1rem 0 1.15rem;
	gap: 0.75rem;
}

.pf-home-trust .pf-media-feature__highlights li {
	padding: 0.75rem 0.9rem;
}

.pf-home-trust .pf-media-feature__lead,
.pf-home-trust .pf-media-feature__text {
	font-size: 0.98rem;
	margin-bottom: 0.75rem;
}

.pf-home-trust .pf-media-feature__badges {
	margin-bottom: 1.15rem;
}

.pf-home-trust .pf-media-feature__pratik {
	padding: 0.65rem;
}

.pf-home-trust .pf-media-feature__pratik img {
	min-height: 160px;
	max-height: 220px;
}

.pf-home-trust .pf-investors__spotlight--hero {
	margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
}

.pf-home-trust .pf-investors__spotlight-slider {
	aspect-ratio: 3 / 2;
	max-height: 490px;
}

.pf-home-trust .pf-investors__spotlight-slide img {
	object-position: center 30%;
}

.pf-home-trust .pf-investors__spotlight-slide[data-slide="1"] img {
	object-position: center 36%;
}

.pf-home-trust .pf-investors__spotlight-visual {
	display: flex;
	flex-direction: column;
}

.pf-home-trust .pf-investors__spotlight-profile {
	position: static;
	bottom: auto;
	left: auto;
	right: auto;
	margin: 0.7rem clamp(0.85rem, 2.5vw, 1.15rem) 0;
	max-width: none;
	align-self: flex-start;
	pointer-events: auto;
}

.pf-home-trust .pf-investors__spotlight-profile img {
	width: clamp(72px, 10vw, 88px);
	height: auto;
	aspect-ratio: 480 / 764;
	object-fit: contain;
	object-position: center center;
}

.pf-home-trust .pf-investors__spotlight-copy {
	padding: 0.85rem clamp(0.85rem, 2vw, 1.15rem) 1rem;
}

.pf-home-trust .pf-investors__spotlight-text {
	font-size: 0.92rem;
	margin: 0;
}

.pf-home-trust .pf-investors__spotlight-points {
	display: none;
}

.pf-home-trust .pf-investors__voices {
	display: grid;
	gap: 1rem;
	margin-top: clamp(1.25rem, 3vw, 1.75rem);
}

.pf-home-trust .pf-investor-voice {
	padding: 1rem 1.1rem;
}

.pf-home-trust .pf-investor-voice__proof {
	max-height: 100px;
}

.pf-home-trust .pf-investors__grid {
	margin-bottom: 0;
}

@media (max-width: 768px) {
	.pf-home-trust .pf-media-feature {
		grid-template-columns: 1fr;
	}

	.pf-home-trust .pf-investors__spotlight-slider {
		max-height: 300px;
	}

	.pf-home-trust .pf-investors__spotlight-slide img {
		object-position: center 26%;
	}

	.pf-home-trust .pf-investors__spotlight-profile {
		max-width: none;
		margin-top: 0.55rem;
	}
}

/* ── Media feature (Idea Baaz / Zee TV) ───────────────── */
.pf-section--feature {
	background:
		linear-gradient(180deg, #fff 0%, var(--rahato-cream) 100%);
	border-block: 1px solid var(--rahato-border);
	overflow: hidden;
}

.pf-section--feature::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 50% 60% at 100% 0%, rgba(42, 99, 96, 0.08) 0%, transparent 55%),
		radial-gradient(ellipse 40% 50% at 0% 100%, rgba(196, 104, 69, 0.1) 0%, transparent 50%);
	pointer-events: none;
}

.pf-media-feature {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 1.1fr);
	gap: clamp(2rem, 5vw, 4rem);
	align-items: start;
	position: relative;
	z-index: 1;
}

.pf-media-feature__aside {
	display: grid;
	gap: 1rem;
}

.pf-media-feature__video {
	width: 100%;
}

.pf-media-feature__video-slider {
	position: relative;
	width: 100%;
	outline: none;
}

.pf-media-feature__video-slider:focus-visible {
	box-shadow: 0 0 0 3px rgba(42, 99, 96, 0.35);
	border-radius: calc(var(--rahato-radius) + 4px);
}

.pf-media-feature__video-track {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
}

.pf-media-feature__video-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	z-index: 0;
	transition:
		opacity 0.65s ease-in-out,
		visibility 0s linear 0.65s;
}

.pf-media-feature__video-slide.is-active {
	opacity: 1;
	visibility: visible;
	z-index: 1;
	transition:
		opacity 0.65s ease-in-out,
		visibility 0s linear 0s;
}

.pf-media-feature__video-slide .pf-video {
	height: 100%;
}

.pf-media-feature__video-nav {
	position: absolute;
	top: 50%;
	z-index: 3;
	transform: translateY(-50%);
	width: 2.35rem;
	height: 2.35rem;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.55);
	border-radius: 50%;
	background: rgba(26, 35, 40, 0.45);
	color: #fff;
	font-size: 1.55rem;
	line-height: 1;
	cursor: pointer;
	transition: background 0.25s, transform 0.25s;
	backdrop-filter: blur(6px);
}

.pf-media-feature__video-nav span {
	display: block;
	margin-top: -0.1rem;
}

.pf-media-feature__video-nav:hover,
.pf-media-feature__video-nav:focus-visible {
	background: rgba(42, 99, 96, 0.85);
	transform: translateY(-50%) scale(1.05);
}

.pf-media-feature__video-nav--prev {
	left: 0.65rem;
}

.pf-media-feature__video-nav--next {
	right: 0.65rem;
}

.pf-media-feature__video-dots {
	position: absolute;
	left: 50%;
	bottom: 0.65rem;
	z-index: 3;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.35rem 0.55rem;
	border-radius: 999px;
	background: rgba(26, 35, 40, 0.42);
	backdrop-filter: blur(6px);
}

.pf-media-feature__video-dot {
	width: 0.5rem;
	height: 0.5rem;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.55);
	cursor: pointer;
	transition: transform 0.25s, background 0.25s;
}

.pf-media-feature__video-dot.is-active {
	transform: scale(1.25);
	background: #fff;
}

.pf-media-feature__video-dot:hover,
.pf-media-feature__video-dot:focus-visible {
	background: #fff;
}

@media (prefers-reduced-motion: reduce) {
	.pf-media-feature__video-slide {
		transition: opacity 0.2s ease, visibility 0s linear 0.2s;
	}

	.pf-media-feature__video-slide.is-active {
		transition: opacity 0.2s ease, visibility 0s linear 0s;
	}
}

.pf-media-feature__lead,
.pf-media-feature__text {
	font-size: 1.0625rem;
	line-height: 1.8;
	color: var(--rahato-ink-soft);
	margin: 0 0 1rem;
}

.pf-media-feature__lead strong,
.pf-media-feature__text strong {
	color: var(--rahato-ink);
}

.pf-media-feature__highlights {
	list-style: none;
	margin: 1.75rem 0 1.75rem;
	padding: 0;
	display: grid;
	gap: 1rem;
}

.pf-media-feature__highlights li {
	display: grid;
	gap: 0.2rem;
	padding: 1rem 1.15rem;
	background: var(--rahato-surface);
	border: 1px solid var(--rahato-border);
	border-radius: var(--rahato-radius-sm);
	box-shadow: var(--rahato-shadow);
}

.pf-media-feature__highlights strong {
	font-family: var(--rahato-font-display);
	font-size: 1.05rem;
	color: var(--rahato-teal);
}

.pf-media-feature__highlights span {
	font-size: 0.9375rem;
	color: var(--rahato-ink-soft);
}

.pf-media-feature__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	margin-bottom: 1.75rem;
}

.pf-media-feature__trust {
	display: none;
}

.pf-media-feature__pratik {
	display: grid;
	grid-template-columns: minmax(150px, 42%) minmax(0, 1fr);
	gap: 1rem;
	align-items: center;
	padding: 0.85rem;
	background: #fff;
	border: 1px solid var(--rahato-border);
	border-radius: 18px;
	box-shadow: var(--rahato-shadow-md);
}

.pf-media-feature__pratik img {
	width: 100%;
	height: auto;
	min-height: 220px;
	max-height: 320px;
	object-fit: cover;
	object-position: center 4%;
	border-radius: 14px;
	display: block;
	border: 2px solid #fff;
	box-shadow: 0 8px 24px rgba(26, 35, 40, 0.14);
}

.pf-media-feature__pratik-label {
	margin: 0 0 0.25rem;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--rahato-teal);
}

.pf-media-feature__pratik-copy h3 {
	margin: 0 0 0.35rem;
	font-family: var(--rahato-font-display);
	font-size: clamp(1.15rem, 2vw, 1.45rem);
	color: var(--rahato-ink);
}

.pf-media-feature__pratik-copy p {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.55;
	color: var(--rahato-ink-soft);
}

.pf-media-feature__pratik-quote {
	margin: 0;
	padding: 0;
	border: 0;
}

.pf-media-feature__pratik-quote p {
	margin: 0;
	font-size: 0.8125rem;
	line-height: 1.6;
	font-style: italic;
	color: var(--rahato-ink-soft);
}

.pf-media-badge {
	display: inline-flex;
	align-items: center;
	padding: 0.45rem 0.85rem;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--rahato-teal);
	background: var(--rahato-mist);
	border: 1px solid rgba(42, 99, 96, 0.15);
	border-radius: 999px;
}

.pf-media-badge--accent {
	color: #fff;
	background: linear-gradient(135deg, var(--rahato-warm), var(--rahato-teal));
	border-color: transparent;
}

.pf-video {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: calc(var(--rahato-radius) + 4px);
	overflow: hidden;
	background: var(--rahato-ink);
	box-shadow:
		0 24px 60px rgba(26, 35, 40, 0.18),
		0 0 0 1px rgba(42, 99, 96, 0.12);
}

.pf-video__poster {
	appearance: none;
	border: 0;
	padding: 0;
	margin: 0;
	width: 100%;
	height: 100%;
	display: block;
	position: relative;
	cursor: pointer;
	background: #000;
}

.pf-video__poster img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s var(--rahato-ease), filter 0.5s;
}

.pf-video__poster.is-fallback {
	background:
		radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.14) 0%, transparent 42%),
		linear-gradient(135deg, #2a6360 0%, #1a2328 58%, #243840 100%);
}

.pf-video__poster.is-fallback img {
	display: none;
}

.pf-video__poster-label {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.55rem;
	padding: clamp(1rem, 4vw, 2rem);
	text-align: center;
	color: #fff;
	pointer-events: none;
}

.pf-video__poster-tag {
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.88);
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.pf-video__poster-title {
	font-family: var(--rahato-font-display);
	font-size: clamp(1.35rem, 3.2vw, 2rem);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.01em;
	text-wrap: balance;
	text-shadow: 0 3px 18px rgba(0, 0, 0, 0.5);
}

.pf-video__poster-sub {
	max-width: 22rem;
	font-size: clamp(0.82rem, 1.8vw, 0.95rem);
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.92);
	text-wrap: balance;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.pf-video__poster--labeled .pf-video__shade {
	z-index: 1;
	background:
		linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.38) 42%, rgba(0, 0, 0, 0.22) 100%);
}

.pf-video__poster--labeled .pf-video__play {
	z-index: 3;
}

.pf-video__shade {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.08) 45%, transparent 100%);
	pointer-events: none;
	transition: opacity 0.35s;
}

.pf-video__play {
	position: absolute;
	inset: 0;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
	transition: transform 0.35s var(--rahato-ease);
}

.pf-video__play svg {
	filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
}

.pf-video__poster:hover img,
.pf-video__poster:focus-visible img {
	transform: scale(1.03);
	filter: brightness(0.92);
}

.pf-video__poster:hover .pf-video__play,
.pf-video__poster:focus-visible .pf-video__play {
	transform: scale(1.06);
}

.pf-video__poster:focus-visible {
	outline: 3px solid var(--rahato-warm);
	outline-offset: 3px;
}

.pf-video iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.pf-video.is-playing {
	box-shadow:
		0 28px 70px rgba(26, 35, 40, 0.22),
		0 0 0 1px rgba(42, 99, 96, 0.18);
}

.pf-video__caption {
	margin: 0.85rem 0 0;
	font-size: 0.8125rem;
	color: var(--rahato-ink-soft);
	text-align: center;
}

.pf-video__caption a {
	color: var(--rahato-teal);
	font-weight: 600;
	text-decoration: none;
}

.pf-video__caption a:hover {
	color: var(--rahato-warm);
}

@media (max-width: 900px) {
	.pf-media-feature {
		grid-template-columns: 1fr;
	}

	.pf-media-feature__aside {
		order: -1;
	}

	.pf-media-feature__pratik {
		grid-template-columns: minmax(130px, 38%) minmax(0, 1fr);
	}
}

/* ── Investor trust ───────────────────────────────────── */
.pf-investors__grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 1rem;
	margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.pf-investor-card {
	padding: 1.5rem 1rem 1.35rem;
	background: #fff;
	border: 1px solid var(--rahato-border);
	border-radius: var(--rahato-radius-sm);
	box-shadow: var(--rahato-shadow);
	text-align: center;
	transition: transform 0.35s var(--rahato-ease), box-shadow 0.35s;
}

.pf-investor-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--rahato-shadow-lg);
}

.pf-investor-card__photo {
	width: clamp(6.5rem, 11vw, 8.25rem);
	height: clamp(6.5rem, 11vw, 8.25rem);
	margin: 0 auto 1rem;
	border-radius: 50%;
	overflow: hidden;
	border: 3px solid rgba(42, 99, 96, 0.14);
	box-shadow: 0 6px 20px rgba(26, 35, 40, 0.12);
}

.pf-investor-card__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	display: block;
}

.pf-investor-card__initial {
	width: 3rem;
	height: 3rem;
	margin: 0 auto 0.85rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--rahato-font-display);
	font-size: 0.875rem;
	font-weight: 700;
	color: #fff;
	background: var(--rahato-gradient-brand);
}

.pf-investor-card__name {
	font-family: var(--rahato-font-display);
	font-size: clamp(0.95rem, 1.6vw, 1.05rem);
	font-weight: 600;
	line-height: 1.35;
	margin: 0 0 0.35rem;
	color: var(--rahato-ink);
}

.pf-investor-card__role {
	margin: 0;
	font-size: clamp(0.78rem, 1.2vw, 0.84rem);
	line-height: 1.5;
	color: var(--rahato-ink-soft);
}

.pf-investors__voices {
	display: grid;
	gap: 1.25rem;
}

.pf-investor-voice {
	margin: 0;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(140px, 220px);
	gap: 1.25rem;
	align-items: stretch;
	padding: 1.35rem 1.35rem 1.35rem 1.5rem;
	background: #fff;
	border: 1px solid var(--rahato-border);
	border-left: 3px solid var(--rahato-teal);
	border-radius: var(--rahato-radius-sm);
	box-shadow: var(--rahato-shadow);
}

.pf-investor-voice__body p {
	margin: 0 0 1rem;
	font-family: var(--rahato-font-display);
	font-size: 1.0625rem;
	line-height: 1.65;
	font-style: italic;
	color: var(--rahato-ink);
}

.pf-investor-voice__body footer {
	display: grid;
	gap: 0.15rem;
}

.pf-investor-voice__body cite {
	font-style: normal;
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--rahato-teal);
}

.pf-investor-voice__body span {
	font-size: 0.75rem;
	color: var(--rahato-ink-soft);
}

.pf-investor-voice__proof {
	margin: 0;
	border-radius: calc(var(--rahato-radius-sm) - 2px);
	overflow: hidden;
	border: 1px solid var(--rahato-border);
	background: #0f1418;
	align-self: center;
}

.pf-investor-voice__proof img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 88px;
	object-fit: cover;
	object-position: left center;
}

.pf-investors__spotlight {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	max-width: 48rem;
	margin: clamp(2rem, 4vw, 2.75rem) auto 0;
	padding: 1.25rem 1.5rem;
	background: var(--rahato-gradient-soft);
	border-radius: var(--rahato-radius-sm);
	border: 1px solid rgba(196, 104, 69, 0.12);
	box-shadow: var(--rahato-shadow);
}

.pf-investors__spotlight--hero {
	display: block;
	max-width: none;
	margin: 0 0 clamp(2.5rem, 5vw, 3.5rem);
	padding: 0;
	background: #fff;
	border: 1px solid rgba(42, 99, 96, 0.14);
	border-radius: var(--rahato-radius);
	box-shadow: var(--rahato-shadow-md);
	overflow: hidden;
}

.pf-section__head + .pf-investors__spotlight--hero {
	margin-top: clamp(1.25rem, 3vw, 1.75rem);
}

.pf-investors__spotlight-visual {
	position: relative;
	margin: 0;
	background: var(--rahato-mist);
}

.pf-investors__spotlight-slider {
	position: relative;
	width: 100%;
	aspect-ratio: 4 / 3;
	max-height: 520px;
	overflow: hidden;
	outline: none;
}

.pf-investors__spotlight-slider:focus-visible {
	box-shadow: inset 0 0 0 3px rgba(42, 99, 96, 0.45);
}

.pf-investors__spotlight-slides {
	position: absolute;
	inset: 0;
}

.pf-investors__spotlight-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	z-index: 0;
	transition:
		opacity 1.5s ease-in-out,
		visibility 0s linear 1.5s;
}

.pf-investors__spotlight-slide.is-active {
	opacity: 1;
	visibility: visible;
	z-index: 1;
	transition:
		opacity 1.5s ease-in-out,
		visibility 0s linear 0s;
}

@media (prefers-reduced-motion: reduce) {
	.pf-investors__spotlight-slide {
		transition: opacity 0.2s ease, visibility 0s linear 0.2s;
	}

	.pf-investors__spotlight-slide.is-active {
		transition: opacity 0.2s ease, visibility 0s linear 0s;
	}
}

.pf-investors__spotlight-slide img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 20%;
}

.pf-investors__spotlight-slide[data-slide="0"] img {
	object-position: center 28%;
}

.pf-investors__spotlight-slide[data-slide="1"] img {
	object-position: center 34%;
}

.pf-investors__spotlight-nav {
	position: absolute;
	top: 50%;
	z-index: 3;
	transform: translateY(-50%);
	width: 2.5rem;
	height: 2.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.55);
	border-radius: 50%;
	background: rgba(26, 35, 40, 0.42);
	color: #fff;
	font-size: 1.65rem;
	line-height: 1;
	cursor: pointer;
	transition: background 0.25s, transform 0.25s, opacity 0.25s;
	backdrop-filter: blur(6px);
}

.pf-investors__spotlight-nav span {
	display: block;
	margin-top: -0.12rem;
}

.pf-investors__spotlight-nav:hover,
.pf-investors__spotlight-nav:focus-visible {
	background: rgba(42, 99, 96, 0.82);
	transform: translateY(-50%) scale(1.05);
}

.pf-investors__spotlight-nav--prev {
	left: clamp(0.65rem, 2vw, 1rem);
}

.pf-investors__spotlight-nav--next {
	right: clamp(0.65rem, 2vw, 1rem);
}

.pf-investors__spotlight-zones {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr 1fr;
	pointer-events: none;
}

.pf-investors__spotlight-zone {
	width: 100%;
	height: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	pointer-events: auto;
}

.pf-investors__spotlight-zone:focus-visible {
	outline: 2px solid rgba(255, 255, 255, 0.85);
	outline-offset: -4px;
}

.pf-investors__spotlight-dots {
	position: absolute;
	left: 50%;
	top: clamp(0.65rem, 2vw, 0.85rem);
	bottom: auto;
	z-index: 4;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.35rem 0.55rem;
	border-radius: 999px;
	background: rgba(26, 35, 40, 0.38);
	backdrop-filter: blur(6px);
}

.pf-investors__spotlight-dot {
	width: 0.55rem;
	height: 0.55rem;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.55);
	cursor: pointer;
	transition: transform 0.25s, background 0.25s;
}

.pf-investors__spotlight-dot.is-active {
	transform: scale(1.25);
	background: #fff;
}

.pf-investors__spotlight-dot:hover,
.pf-investors__spotlight-dot:focus-visible {
	background: #fff;
}

.pf-investors__spotlight-profile {
	position: absolute;
	left: clamp(0.85rem, 2.5vw, 1.25rem);
	right: clamp(0.85rem, 2.5vw, 1.25rem);
	bottom: clamp(0.85rem, 2.5vw, 1.25rem);
	z-index: 5;
	display: flex;
	align-items: center;
	gap: clamp(0.85rem, 2vw, 1.15rem);
	padding: 0.75rem 1rem;
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid rgba(42, 99, 96, 0.12);
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(26, 35, 40, 0.16);
	max-width: 34rem;
	pointer-events: none;
}

.pf-investors__spotlight-profile img {
	width: clamp(72px, 10vw, 88px);
	height: auto;
	aspect-ratio: 480 / 764;
	flex-shrink: 0;
	border-radius: 12px;
	object-fit: contain;
	object-position: center center;
	display: block;
	background: #1e2830;
	border: 2px solid #fff;
	box-shadow: 0 6px 18px rgba(26, 35, 40, 0.12);
}

.pf-investors__spotlight-profile .pf-investors__spotlight-label {
	margin-bottom: 0.15rem;
}

.pf-investors__spotlight-profile .pf-investors__spotlight-name {
	margin: 0 0 0.1rem;
	font-size: clamp(1.1rem, 2.2vw, 1.45rem);
}

.pf-investors__spotlight-profile .pf-investors__spotlight-role {
	margin: 0;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--rahato-teal);
}

.pf-investors__spotlight-media {
	display: none;
}

.pf-investors__spotlight-badge {
	display: none;
}

.pf-investors__spotlight-photo {
	width: 7.25rem;
	height: 9rem;
	border-radius: 14px;
	object-fit: cover;
	object-position: center 8%;
	flex-shrink: 0;
	border: 2px solid #fff;
	box-shadow: 0 6px 20px rgba(26, 35, 40, 0.14);
}

.pf-investors__spotlight--hero .pf-investors__spotlight-photo {
	display: none;
}

.pf-investors__spotlight-scene {
	display: none;
}

.pf-investors__spotlight-copy {
	min-width: 0;
	display: block;
	padding: 1.15rem clamp(1rem, 3vw, 1.5rem) 1.25rem;
}

.pf-investors__spotlight-quote {
	margin: 0.85rem 0 0;
	padding: 0.75rem 0 0 0.95rem;
	border-left: 3px solid rgba(42, 99, 96, 0.35);
}

.pf-investors__spotlight-quote p {
	margin: 0;
	font-size: 0.8125rem;
	line-height: 1.65;
	font-style: italic;
	color: var(--rahato-ink-soft);
}

.pf-investors__spotlight-quote footer {
	margin-top: 0.55rem;
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.35rem 0.6rem;
	font-size: 0.75rem;
	line-height: 1.4;
}

.pf-investors__spotlight-quote cite {
	font-style: normal;
	font-weight: 600;
	color: var(--rahato-ink);
}

.pf-investors__spotlight-quote span {
	color: var(--rahato-teal);
	font-weight: 500;
}

.pf-investors__spotlight-points {
	margin: 1rem 0 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 0.45rem;
}

.pf-investors__spotlight-points li {
	position: relative;
	padding-left: 1.2rem;
	font-size: 0.9rem;
	line-height: 1.5;
	color: var(--rahato-ink-soft);
}

.pf-investors__spotlight-points li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--rahato-teal);
	font-weight: 700;
}

.pf-investors__spotlight-label {
	margin: 0 0 0.25rem;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--rahato-teal);
}

.pf-investors__spotlight-name {
	margin: 0 0 0.15rem;
	font-family: var(--rahato-font-display);
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--rahato-ink);
}

.pf-investors__spotlight--hero .pf-investors__spotlight-name {
	font-size: clamp(1.5rem, 3vw, 2rem);
}

.pf-investors__spotlight--hero .pf-investors__spotlight-role {
	font-size: 1rem;
	font-weight: 600;
	color: var(--rahato-teal);
}

.pf-investors__spotlight--hero .pf-investors__spotlight-text {
	font-size: 1rem;
	color: var(--rahato-ink-soft);
}

.pf-investors__spotlight-role {
	margin: 0 0 0.5rem;
	font-size: 0.8125rem;
	color: var(--rahato-ink-soft);
}

.pf-investors__spotlight-text {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.65;
	color: var(--rahato-ink-soft);
}

.pf-investors__note {
	max-width: 42rem;
	margin: clamp(2rem, 4vw, 2.75rem) auto 0;
	padding: 1rem 1.25rem;
	text-align: center;
	font-size: 0.9375rem;
	line-height: 1.7;
	color: var(--rahato-ink-soft);
	background: var(--rahato-gradient-soft);
	border-radius: var(--rahato-radius-sm);
	border: 1px solid rgba(196, 104, 69, 0.12);
}

.pf-investors__note strong {
	color: var(--rahato-ink);
}

@media (max-width: 1100px) {
	.pf-investors__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 768px) {
	.pf-investors__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.pf-investor-voice {
		grid-template-columns: 1fr;
	}

	.pf-investor-voice__proof {
		max-height: 120px;
	}
}

@media (max-width: 480px) {
	.pf-investors__grid {
		grid-template-columns: 1fr;
	}

	.pf-investors__spotlight-profile {
		flex-direction: row;
		align-items: center;
	}

	.pf-investors__spotlight-slider {
		max-height: none;
	}

	.pf-investors__spotlight-nav {
		width: 2.15rem;
		height: 2.15rem;
		font-size: 1.35rem;
	}
}

/* ── Privacy / legal page ─────────────────────────────── */
.pf-page-hero--legal .pf-page-hero__inner {
	max-width: 720px;
	margin-inline: auto;
	text-align: left;
}

.pf-breadcrumb {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.5rem;
	font-size: 0.8125rem;
	color: var(--rahato-ink-soft);
	margin-bottom: 1.25rem;
}

.pf-breadcrumb a {
	color: var(--rahato-teal);
	text-decoration: none;
	font-weight: 500;
}

.pf-breadcrumb a:hover {
	color: var(--rahato-warm);
}

.pf-breadcrumb span[aria-hidden="true"] {
	opacity: 0.45;
}

.pf-legal__content {
	max-width: 720px;
	margin-inline: auto;
}

.pf-legal__meta {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin-bottom: 2.5rem;
	padding: 1.5rem;
	background: var(--rahato-surface);
	border: 1px solid var(--rahato-border);
	border-radius: var(--rahato-radius);
	box-shadow: var(--rahato-shadow);
}

.pf-legal__meta-label {
	display: block;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--rahato-ink-soft);
	margin-bottom: 0.35rem;
}

.pf-legal__meta-item strong {
	font-family: var(--rahato-font-display);
	font-size: 1.125rem;
	color: var(--rahato-ink);
}

.pf-legal__section {
	margin-bottom: 2.25rem;
	padding-bottom: 2.25rem;
	border-bottom: 1px solid var(--rahato-border);
}

.pf-legal__section:last-of-type {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.pf-legal__section h2 {
	font-family: var(--rahato-font-display);
	font-size: 1.35rem;
	font-weight: 600;
	color: var(--rahato-teal);
	margin: 0 0 1rem;
	letter-spacing: -0.01em;
}

.pf-legal__section p {
	font-size: 1.0625rem;
	line-height: 1.8;
	color: var(--rahato-ink-soft);
	margin: 0 0 1rem;
}

.pf-legal__section ul {
	margin: 0 0 1rem;
	padding-left: 1.25rem;
}

.pf-legal__section li {
	font-size: 1.0625rem;
	line-height: 1.75;
	color: var(--rahato-ink-soft);
	margin-bottom: 0.65rem;
}

.pf-legal__section li strong {
	color: var(--rahato-ink);
}

.pf-legal__footer-note {
	margin-top: 2.5rem;
	padding: 1.25rem 1.5rem;
	background: var(--rahato-gradient-soft);
	border-radius: var(--rahato-radius-sm);
	border: 1px solid rgba(196, 104, 69, 0.12);
}

.pf-legal__footer-note p {
	margin: 0;
	font-size: 0.9375rem;
	color: var(--rahato-ink-soft);
}

.pf-legal__footer-note a {
	color: var(--rahato-teal);
	font-weight: 600;
}

@media (max-width: 600px) {
	.pf-legal__meta {
		grid-template-columns: 1fr;
	}
}

/* ── Footer ───────────────────────────────────────────── */
.rahato-portfolio .rahato-footer {
	background: #0a0f14;
	padding: 4rem 0 2rem;
}

.rahato-portfolio .rahato-footer__grid {
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	padding-bottom: 2.5rem;
}

.rahato-portfolio .rahato-footer h4 {
	font-family: var(--rahato-font-body);
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.16em;
}

.rahato-portfolio .rahato-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	margin-top: 1.75rem;
	padding-top: 1.25rem;
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.4);
	letter-spacing: 0.03em;
	text-align: center;
}

.rahato-portfolio .rahato-footer__follow h4 {
	font-family: var(--rahato-font-body);
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.16em;
}

.rahato-portfolio .rahato-footer__copy {
	color: rgba(255, 255, 255, 0.45);
}

/* ── Inner pages ──────────────────────────────────────── */
.pf-page-hero {
	padding: clamp(5rem, 10vw, 7rem) 0 clamp(2.5rem, 5vw, 3.5rem);
	background: var(--rahato-gradient-hero);
	border-bottom: 1px solid var(--rahato-border);
	position: relative;
	overflow: hidden;
}

.pf-page-hero .pf-section__title {
	font-size: clamp(2.25rem, 4.5vw, 3.25rem);
}

.pf-page-hero__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}

.pf-page-hero__grid img {
	width: 100%;
	max-width: 400px;
	margin-inline: auto;
	display: block;
	border-radius: var(--rahato-radius);
	border: 1px solid var(--rahato-border);
	box-shadow: var(--rahato-shadow-lg);
}

/* ── Scroll reveal ────────────────────────────────────── */
.pf-reveal {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.8s var(--rahato-ease), transform 0.8s var(--rahato-ease);
}

.pf-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.pf-reveal-item {
	opacity: 0;
}

.pf-reveal.is-visible .pf-reveal-item {
	animation: pf-enter-left 0.95s var(--rahato-ease) forwards;
}

.pf-reveal.is-visible .pf-reveal-item--left {
	animation: pf-enter-left 0.95s var(--rahato-ease) forwards;
}

.pf-reveal.is-visible .pf-reveal-item--right {
	animation: pf-enter-right 0.95s 0.18s var(--rahato-ease) forwards;
}

/* ── Hero entrance (slide from left) ──────────────────── */
.pf-enter {
	opacity: 0;
	transform: translateX(-48px);
}

.pf-hero.is-ready .pf-enter {
	animation: pf-enter-left 0.9s var(--rahato-ease) forwards;
}

.pf-hero.is-ready .pf-enter--d1 { animation-delay: 0.12s; }
.pf-hero.is-ready .pf-enter--d2 { animation-delay: 0.24s; }
.pf-hero.is-ready .pf-enter--d3 { animation-delay: 0.36s; }
.pf-hero.is-ready .pf-enter--d4 { animation-delay: 0.48s; }

/* ── Traveling marquee text ───────────────────────────── */
.pf-marquee {
	overflow: hidden;
	background: var(--rahato-surface);
	border-block: 1px solid var(--rahato-border);
	padding: 0.85rem 0;
	mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.pf-marquee__row {
	overflow: hidden;
	padding: 0.35rem 0;
}

.pf-marquee__row + .pf-marquee__row {
	padding-top: 0;
}

.pf-marquee__track {
	display: flex;
	width: max-content;
	animation: pf-marquee-left 38s linear infinite;
}

.pf-marquee__row--reverse .pf-marquee__track {
	animation-name: pf-marquee-right;
	animation-duration: 44s;
}

.pf-marquee__content {
	display: flex;
	align-items: center;
	gap: 1.75rem;
	padding-right: 1.75rem;
	white-space: nowrap;
}

.pf-marquee__content span:not(.pf-marquee__dot) {
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--rahato-ink-soft);
	transition: color 0.3s;
}

.pf-marquee__content span:not(.pf-marquee__dot):hover {
	color: var(--rahato-teal);
}

.pf-marquee__row:first-child .pf-marquee__content span:not(.pf-marquee__dot) {
	background: var(--rahato-gradient-brand);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.pf-marquee__dot {
	font-size: 0.5rem;
	color: var(--rahato-warm);
	opacity: 0.7;
}

/* ── Stagger children on scroll ───────────────────────── */
.pf-stagger > * {
	opacity: 0;
	transform: translateY(28px);
	transition:
		opacity 0.65s var(--rahato-ease),
		transform 0.65s var(--rahato-ease);
}

.pf-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.pf-stagger.is-visible > *:nth-child(2) { transition-delay: 0.12s; }
.pf-stagger.is-visible > *:nth-child(3) { transition-delay: 0.19s; }
.pf-stagger.is-visible > *:nth-child(4) { transition-delay: 0.26s; }
.pf-stagger.is-visible > *:nth-child(5) { transition-delay: 0.33s; }
.pf-stagger.is-visible > *:nth-child(6) { transition-delay: 0.4s; }

.pf-stagger.is-visible > * {
	opacity: 1;
	transform: translateY(0);
}

.pf-grid.pf-stagger > *:nth-child(odd) {
	transform: translateX(-36px);
}

.pf-grid.pf-stagger > *:nth-child(even) {
	transform: translateX(36px);
}

.pf-grid.pf-stagger.is-visible > * {
	transform: translate(0, 0);
}

.pf-gallery.pf-stagger > * {
	transform: translateY(40px) scale(0.96);
}

.pf-gallery.pf-stagger.is-visible > * {
	transform: translateY(0) scale(1);
}

.pf-quotes.pf-stagger > *:nth-child(1) { transform: translateX(-32px); }
.pf-quotes.pf-stagger > *:nth-child(2) { transform: translateY(32px); }
.pf-quotes.pf-stagger > *:nth-child(3) { transform: translateX(32px); }

.pf-quotes.pf-stagger.is-visible > * {
	transform: translate(0, 0);
}

.pf-about__stats.pf-stagger > * {
	transform: translateY(20px);
}

/* ── Motion keyframes ─────────────────────────────────── */
@keyframes pf-enter-left {
	from {
		opacity: 0;
		transform: translateX(-48px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes pf-enter-right {
	from {
		opacity: 0;
		transform: translateX(48px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes pf-marquee-left {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

@keyframes pf-marquee-right {
	from { transform: translateX(-50%); }
	to { transform: translateX(0); }
}

@keyframes pf-scroll-line {
	0%, 100% {
		transform: translateY(0);
		opacity: 1;
	}
	50% {
		transform: translateY(8px);
		opacity: 0.45;
	}
}

@media (prefers-reduced-motion: reduce) {
	.pf-enter,
	.pf-reveal-item,
	.pf-stagger > * {
		opacity: 1;
		transform: none;
		animation: none !important;
		transition: none !important;
	}

	.pf-marquee__track {
		animation: none;
	}

	.pf-hero__scroll span {
		animation: none;
	}
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 1024px) {
	.pf-card,
	.pf-card--wide,
	.pf-card--tall,
	.pf-card--soon {
		grid-column: span 6;
		min-height: 300px;
	}

	.pf-hero__grid,
	.pf-about,
	.pf-page-hero__grid {
		grid-template-columns: 1fr;
	}

	.pf-hero--immersive {
		min-height: auto;
		padding: clamp(5.5rem, 14vw, 6.5rem) 0 clamp(2rem, 5vw, 2.5rem);
		display: flex;
		flex-direction: column;
		align-items: stretch;
		justify-content: center;
	}

	.pf-hero--immersive .pf-hero__inner {
		margin-inline: auto;
		padding-right: 0;
		width: min(1200px, calc(100% - 1.5rem));
		order: 1;
	}

	.pf-hero--immersive .rahato-india-corner {
		order: 2;
		position: relative;
		right: auto;
		bottom: auto;
		margin: 1.25rem auto 0;
		display: flex;
		justify-content: center;
		width: 100%;
	}

	.pf-hero--immersive .rahato-india-corner__card {
		transform: rotate(0deg);
		animation: none;
	}

	.pf-hero--immersive .pf-hero__overlay {
		background:
			linear-gradient(
				180deg,
				rgba(12, 18, 22, 0.58) 0%,
				rgba(18, 32, 36, 0.42) 45%,
				rgba(26, 35, 40, 0.22) 100%
			),
			linear-gradient(to top, rgba(12, 18, 22, 0.35) 0%, transparent 55%);
	}

	.pf-hero--immersive .pf-hero__content {
		max-width: none;
		text-align: center;
		margin-inline: auto;
	}

	.pf-hero--immersive .pf-hero__title {
		font-size: clamp(2.75rem, 12vw, 3.75rem);
	}

	.pf-hero--immersive .pf-hero__tagline {
		font-size: clamp(1.15rem, 4.5vw, 1.5rem);
	}

	.pf-hero--immersive .pf-hero__desc {
		margin-inline: auto;
		font-size: 0.98rem;
		max-width: 22rem;
		margin-bottom: 1.75rem;
	}

	.pf-hero--immersive .rahato-btn-row {
		justify-content: center;
		gap: 0.75rem;
	}

	.pf-hero--immersive .rahato-btn-row .rahato-btn {
		min-width: min(100%, 220px);
		flex: 1 1 140px;
		padding: 0.8rem 1.25rem;
	}

	.pf-hero--immersive .rahato-india-corner__card {
		min-width: 118px;
		padding: 0.95rem 1.1rem 0.85rem;
	}

	.pf-hero--immersive .rahato-india-corner__lion {
		width: 88px;
	}

	.pf-hero {
		min-height: auto;
	}

	.pf-hero__scroll {
		display: none;
	}

	.pf-section__head {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.pf-hero--immersive .rahato-btn-row {
		flex-direction: column;
		align-items: stretch;
	}

	.pf-hero--immersive .rahato-btn-row .rahato-btn {
		width: 100%;
		max-width: 280px;
		margin-inline: auto;
	}

	.pf-card,
	.pf-card--wide,
	.pf-card--tall,
	.pf-card--soon {
		grid-column: span 12;
	}

	.pf-gallery,
	.pf-quotes {
		grid-template-columns: 1fr;
	}

	.pf-about__stats {
		grid-template-columns: 1fr;
	}
}

/* ── User manual page ─────────────────────────────────── */
.pf-manual-hero {
	text-align: center;
	padding-bottom: clamp(1.25rem, 3vw, 2rem);
}

.pf-manual-hero + .pf-section,
.pf-page-hero.pf-manual-hero {
	padding-bottom: clamp(1.5rem, 3vw, 2rem);
}

.pf-manual-hero__inner {
	max-width: 720px;
	margin-inline: auto;
}

.pf-manual-hero .pf-section__desc {
	margin-inline: auto;
}

.pf-manual-resources {
	padding-top: clamp(2rem, 4vw, 3rem);
	background: var(--rahato-cream);
	border-top: 1px solid var(--rahato-border);
}

.pf-manual-resources__head {
	text-align: center;
	max-width: 520px;
	margin: 0 auto 1.75rem;
}

.pf-manual-resources__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(1rem, 2.5vw, 1.5rem);
	align-items: stretch;
}

.pf-manual-video-card,
.pf-manual-download--compact .pf-manual-download__card {
	height: 100%;
	display: flex;
	flex-direction: column;
	padding: clamp(1rem, 2.5vw, 1.35rem);
	background: #fff;
	border: 1px solid var(--rahato-border);
	border-radius: var(--rahato-radius);
	box-shadow: var(--rahato-shadow);
}

.pf-manual-video-card__player {
	margin-bottom: 1rem;
}

.pf-manual-download__preview--compact {
	margin: -0.15rem -0.15rem 1rem;
	border-radius: calc(var(--rahato-radius) - 4px);
	overflow: hidden;
	border: 1px solid var(--rahato-border);
	background: var(--rahato-mist);
	aspect-ratio: 16 / 9;
}

.pf-manual-download__preview--compact img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

.pf-manual-video-card__player .pf-video {
	border-radius: calc(var(--rahato-radius) - 4px);
}

.pf-manual-video-card__body,
.pf-manual-download--compact .pf-manual-download__content {
	display: flex;
	flex-direction: column;
	flex: 1;
}

.pf-manual-download--compact .pf-manual-download__title {
	font-size: clamp(1.05rem, 2vw, 1.2rem);
	margin-bottom: 0.5rem;
}

.pf-manual-download--compact .pf-manual-download__desc {
	margin-bottom: 1rem;
	font-size: 0.92rem;
}

.pf-manual-download--compact .pf-manual-download__btn {
	margin-top: 0.75rem;
	align-self: flex-start;
}

.pf-manual-download {
	padding-top: 0;
}

.pf-manual-download__card {
	display: grid;
	grid-template-columns: minmax(160px, 220px) minmax(0, 1fr);
	gap: clamp(1.5rem, 4vw, 2.5rem);
	align-items: center;
	padding: clamp(1.25rem, 3vw, 1.75rem);
	background: #fff;
	border: 1px solid var(--rahato-border);
	border-radius: var(--rahato-radius);
	box-shadow: var(--rahato-shadow);
}

.pf-manual-download__preview {
	border-radius: calc(var(--rahato-radius) - 4px);
	overflow: hidden;
	border: 1px solid var(--rahato-border);
	background: var(--rahato-mist);
	box-shadow: var(--rahato-shadow-md);
}

.pf-manual-download__preview img {
	display: block;
	width: 100%;
	height: auto;
}

.pf-manual-download__label {
	display: inline-block;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--rahato-teal);
	margin-bottom: 0.65rem;
}

.pf-manual-download__title {
	font-family: var(--rahato-font-display);
	font-size: clamp(1.35rem, 2.5vw, 1.75rem);
	font-weight: 600;
	line-height: 1.15;
	margin: 0 0 0.75rem;
	color: var(--rahato-ink);
}

.pf-manual-download__desc {
	margin: 0 0 1rem;
	font-size: 0.98rem;
	line-height: 1.6;
	color: rgba(26, 35, 40, 0.76);
	max-width: 52ch;
}

.pf-manual-download__list {
	list-style: none;
	padding: 0;
	margin: 0 0 1.25rem;
	display: grid;
	gap: 0.4rem;
}

.pf-manual-download__list li {
	position: relative;
	padding-left: 1.1rem;
	font-size: 0.9rem;
	line-height: 1.5;
	color: rgba(26, 35, 40, 0.78);
}

.pf-manual-download__list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 0;
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--rahato-teal);
}

.pf-manual-download__btn {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
}

.pf-manual-download__icon {
	width: 1.1rem;
	height: 1.1rem;
	flex-shrink: 0;
}

.pf-manual-download__note {
	margin: 0.85rem 0 0;
	font-size: 0.8rem;
	color: rgba(26, 35, 40, 0.55);
}

.pf-manual-section__head {
	max-width: 640px;
	margin-bottom: clamp(2rem, 5vw, 3rem);
}

.pf-manual-section__label {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--rahato-warm);
	margin-bottom: 0.75rem;
}

.pf-manual-section__title {
	font-family: var(--rahato-font-display);
	font-size: clamp(1.75rem, 3.5vw, 2.35rem);
	font-weight: 600;
	line-height: 1.15;
	margin: 0 0 0.75rem;
	color: var(--rahato-ink);
}

.pf-manual-section__intro {
	margin: 0;
	font-size: 1.02rem;
	line-height: 1.6;
	color: rgba(26, 35, 40, 0.72);
}

.pf-manual-steps {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: clamp(2rem, 4vw, 2.75rem);
}

.pf-manual-step {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
	gap: clamp(1.25rem, 3vw, 2rem);
	align-items: center;
	padding: clamp(1.25rem, 2.5vw, 1.75rem);
	background: #fff;
	border: 1px solid var(--rahato-border);
	border-radius: var(--rahato-radius);
	box-shadow: var(--rahato-shadow);
}

.pf-section--alt .pf-manual-step {
	background: var(--rahato-cream);
}

.pf-manual-step:nth-child(even) {
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.pf-manual-step:nth-child(even) .pf-manual-step__media {
	order: 2;
}

.pf-manual-step:nth-child(even) .pf-manual-step__body {
	order: 1;
}

.pf-manual-step__media {
	border-radius: calc(var(--rahato-radius) - 4px);
	overflow: hidden;
	background: var(--rahato-mist);
	border: 1px solid var(--rahato-border);
}

.pf-manual-step__media img {
	display: block;
	width: 100%;
	height: auto;
}

.pf-manual-step__num {
	display: inline-block;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--rahato-teal);
	margin-bottom: 0.5rem;
}

.pf-manual-step__body h3 {
	font-family: var(--rahato-font-display);
	font-size: clamp(1.15rem, 2vw, 1.35rem);
	font-weight: 600;
	margin: 0 0 0.5rem;
	color: var(--rahato-ink);
}

.pf-manual-step__body p {
	margin: 0;
	font-size: 0.98rem;
	line-height: 1.6;
	color: rgba(26, 35, 40, 0.78);
}

.pf-manual-step__stores {
	margin-top: 1.15rem;
}

.pf-manual-step__stores .rahato-app-stores__label {
	margin-bottom: 0.65rem;
	font-size: 0.82rem;
}

.pf-manual-step__features {
	list-style: none;
	padding: 0;
	margin: 1rem 0 0;
	display: grid;
	gap: 0.55rem;
}

.pf-manual-step__features li {
	position: relative;
	padding-left: 1.1rem;
	font-size: 0.92rem;
	line-height: 1.55;
	color: rgba(26, 35, 40, 0.78);
}

.pf-manual-step__features li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55rem;
	width: 0.35rem;
	height: 0.35rem;
	border-radius: 50%;
	background: var(--rahato-teal);
}

.pf-manual-mode {
	background: linear-gradient(180deg, #fff 0%, var(--rahato-mist) 100%);
	border-block: 1px solid var(--rahato-border);
}

.pf-manual-mode__card {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: clamp(1.25rem, 3vw, 2rem);
	align-items: start;
	padding: clamp(1.25rem, 2.5vw, 1.75rem);
	background: #fff;
	border: 1px solid var(--rahato-border);
	border-radius: var(--rahato-radius);
	box-shadow: var(--rahato-shadow);
}

.pf-manual-mode__media {
	border-radius: calc(var(--rahato-radius) - 4px);
	overflow: hidden;
	border: 1px solid var(--rahato-border);
	background: var(--rahato-mist);
}

.pf-manual-mode__media img {
	display: block;
	width: 100%;
	height: auto;
}

.pf-manual-mode__body {
	display: grid;
	gap: 1.15rem;
}

.pf-manual-mode__block h3 {
	font-family: var(--rahato-font-display);
	font-size: 1.05rem;
	font-weight: 600;
	margin: 0 0 0.5rem;
	color: var(--rahato-ink);
}

.pf-manual-mode__block p {
	margin: 0;
	font-size: 0.92rem;
	line-height: 1.55;
	color: rgba(26, 35, 40, 0.78);
}

.pf-manual-mode__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 0.45rem;
}

.pf-manual-mode__list li {
	position: relative;
	padding-left: 1rem;
	font-size: 0.92rem;
	line-height: 1.55;
	color: rgba(26, 35, 40, 0.78);
}

.pf-manual-mode__list li::before {
	content: "•";
	position: absolute;
	left: 0;
	color: var(--rahato-teal);
	font-weight: 700;
}

.pf-manual-mode__leds {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 0.75rem;
}

.pf-manual-led {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.45rem 0.75rem;
	font-size: 0.82rem;
	border-radius: 999px;
	border: 1px solid var(--rahato-border);
	background: var(--rahato-cream);
	color: rgba(26, 35, 40, 0.82);
}

.pf-manual-led::before {
	content: "";
	width: 0.55rem;
	height: 0.55rem;
	border-radius: 50%;
	flex-shrink: 0;
}

.pf-manual-led--green::before { background: #22c55e; box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.25); }
.pf-manual-led--yellow::before { background: #eab308; box-shadow: 0 0 0 2px rgba(234, 179, 8, 0.25); }
.pf-manual-led--red::before { background: #ef4444; box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.25); }

.pf-manual-mode__note {
	margin: 0;
	padding: 0.85rem 1rem;
	font-size: 0.88rem;
	line-height: 1.55;
	color: rgba(26, 35, 40, 0.72);
	background: var(--rahato-mist);
	border-left: 3px solid var(--rahato-teal);
	border-radius: 0 var(--rahato-radius-sm) var(--rahato-radius-sm) 0;
}

.pf-manual-link {
	display: grid;
	grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
	gap: clamp(1.25rem, 3vw, 2rem);
	align-items: center;
	padding: clamp(1.25rem, 3vw, 1.75rem);
	background: #fff;
	border: 1px solid rgba(42, 99, 96, 0.12);
	border-radius: var(--rahato-radius);
	box-shadow: var(--rahato-shadow);
}

.pf-manual-link__media {
	background: linear-gradient(180deg, var(--rahato-mist) 0%, #fff 100%);
	border-radius: calc(var(--rahato-radius-sm) + 2px);
	padding: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100%;
}

.pf-manual-link__media img {
	width: 100%;
	max-height: 200px;
	object-fit: contain;
	display: block;
	border-radius: var(--rahato-radius-sm);
	box-shadow: 0 4px 14px rgba(26, 35, 40, 0.08);
}

.pf-manual-link__content {
	min-width: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.35rem;
}

.pf-manual-link__eyebrow {
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--rahato-teal);
}

.pf-manual-link__title {
	font-family: var(--rahato-font-display);
	font-size: clamp(1.05rem, 2vw, 1.2rem);
	font-weight: 600;
	margin: 0;
	color: var(--rahato-ink);
}

.pf-manual-link__desc {
	margin: 0 0 0.65rem;
	font-size: 0.92rem;
	line-height: 1.55;
	color: rgba(26, 35, 40, 0.72);
}

.pf-manual-link__btn {
	flex-shrink: 0;
	white-space: nowrap;
	margin-top: auto;
}

/* ── Product feature showcase ─────────────────────────── */
.pf-product-features {
	padding-top: clamp(2rem, 5vw, 3rem);
	padding-bottom: clamp(2rem, 5vw, 3rem);
	background:
		linear-gradient(180deg, var(--rahato-mist) 0%, var(--rahato-cream) 100%);
}

.pf-product-features__head {
	margin-bottom: clamp(1.5rem, 3.5vw, 2rem);
}

.pf-product-features__head .pf-section__desc {
	max-width: 42ch;
	margin-inline: auto;
}

.pf-features {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(0.85rem, 2vw, 1.15rem);
}

.pf-feature {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--rahato-border);
	border-radius: var(--rahato-radius);
	overflow: hidden;
	box-shadow: var(--rahato-shadow);
	transition: transform 0.3s var(--rahato-ease), box-shadow 0.3s var(--rahato-ease);
}

.pf-feature:hover {
	transform: translateY(-4px);
	box-shadow: var(--rahato-shadow-md);
}

.pf-feature__media {
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(145deg, var(--rahato-mist) 0%, #fff 100%);
	overflow: hidden;
	aspect-ratio: 1;
	min-height: clamp(200px, 28vw, 260px);
	padding: clamp(0.75rem, 2vw, 1.1rem);
}

.pf-feature__media img {
	display: block;
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	object-position: center;
	transition: transform 0.45s var(--rahato-ease);
}

.pf-feature:hover .pf-feature__media img {
	transform: scale(1.03);
}

.pf-feature__body {
	padding: 1rem 1.1rem 1.15rem;
	display: flex;
	flex-direction: column;
	flex: 1;
	border-top: 1px solid var(--rahato-border);
	background: #fff;
}

.pf-feature__tag {
	display: inline-flex;
	align-self: flex-start;
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--rahato-teal);
	background: var(--rahato-mist);
	border: 1px solid rgba(42, 99, 96, 0.12);
	padding: 0.3rem 0.6rem;
	border-radius: 999px;
	margin-bottom: 0.55rem;
}

.pf-feature__body h3 {
	font-family: var(--rahato-font-display);
	font-size: clamp(1rem, 1.8vw, 1.15rem);
	font-weight: 600;
	line-height: 1.25;
	margin: 0 0 0.4rem;
	color: var(--rahato-ink);
}

.pf-feature__body p {
	margin: 0;
	font-size: 0.875rem;
	line-height: 1.55;
	color: rgba(26, 35, 40, 0.74);
}

/* ── Lifestyle feature rows ─────────────────────────────── */
.pf-feature-showcase {
	padding-top: clamp(2rem, 5vw, 3rem);
	background: linear-gradient(180deg, var(--rahato-cream) 0%, #fff 100%);
	border-block: 1px solid var(--rahato-border);
}

.pf-feature-showcase__list {
	display: grid;
	gap: clamp(2rem, 5vw, 3.5rem);
}

.pf-feature-showcase__item {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(1.5rem, 4vw, 3rem);
	align-items: center;
	padding: clamp(1rem, 2.5vw, 1.5rem);
	background: #fff;
	border: 1px solid var(--rahato-border);
	border-radius: var(--rahato-radius);
	box-shadow: var(--rahato-shadow);
}

.pf-feature-showcase__item--reverse .pf-feature-showcase__media {
	order: 2;
}

.pf-feature-showcase__item--reverse .pf-feature-showcase__body {
	order: 1;
}

.pf-feature-showcase__media {
	border-radius: calc(var(--rahato-radius) - 4px);
	overflow: hidden;
	border: 1px solid var(--rahato-border);
	background: var(--rahato-mist);
}

.pf-feature-showcase__media img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
}

.pf-feature-showcase__tag {
	display: inline-block;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--rahato-warm);
	margin-bottom: 0.5rem;
}

.pf-feature-showcase__body h3 {
	font-family: var(--rahato-font-display);
	font-size: clamp(1.25rem, 2.5vw, 1.6rem);
	font-weight: 600;
	line-height: 1.15;
	margin: 0 0 0.75rem;
	color: var(--rahato-ink);
}

.pf-feature-showcase__body p {
	margin: 0 0 1rem;
	font-size: 0.98rem;
	line-height: 1.65;
	color: rgba(26, 35, 40, 0.76);
}

.pf-feature-showcase__points {
	list-style: none;
	padding: 0;
	margin: 0 0 1.25rem;
	display: grid;
	gap: 0.45rem;
}

.pf-feature-showcase__points li {
	position: relative;
	padding-left: 1.15rem;
	font-size: 0.9rem;
	line-height: 1.5;
	color: rgba(26, 35, 40, 0.78);
}

.pf-feature-showcase__points li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 0;
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--rahato-teal);
}

@media (max-width: 768px) {
	.pf-features {
		grid-template-columns: 1fr;
	}

	.pf-feature__media {
		min-height: 220px;
	}

	.pf-feature-showcase__item,
	.pf-feature-showcase__item--reverse {
		grid-template-columns: 1fr;
	}

	.pf-feature-showcase__item--reverse .pf-feature-showcase__media,
	.pf-feature-showcase__item--reverse .pf-feature-showcase__body {
		order: unset;
	}

	.pf-manual-mode__card {
		grid-template-columns: 1fr;
	}

	.pf-manual-resources__grid {
		grid-template-columns: 1fr;
	}

	.pf-manual-download__card {
		grid-template-columns: 1fr;
	}

	.pf-manual-step,
	.pf-manual-step:nth-child(even) {
		grid-template-columns: 1fr;
	}

	.pf-manual-step:nth-child(even) .pf-manual-step__media,
	.pf-manual-step:nth-child(even) .pf-manual-step__body {
		order: unset;
	}

	.pf-manual-link {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.pf-manual-link__content {
		align-items: center;
	}

	.pf-manual-link__desc {
		margin-inline: auto;
	}

	.pf-manual-link__btn {
		width: 100%;
		text-align: center;
	}
}

@media (prefers-reduced-motion: reduce) {
	.pf-reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}

	.pf-card,
	.pf-card__img img,
	.pf-quote {
		transition: none;
	}
}
