/* Rahato — main styles v2 */

:root {
	--rahato-ink: #1a2328;
	--rahato-ink-soft: #4a5568;
	--rahato-cream: #f6f3ed;
	--rahato-surface: #ffffff;
	--rahato-sand: #ebe4d8;
	/* Dual brand: warm terracotta + cool teal */
	--rahato-warm: #c46845;
	--rahato-warm-dark: #a85538;
	--rahato-teal: #2a6360;
	--rahato-teal-dark: #1f4a48;
	--rahato-primary: var(--rahato-warm);
	--rahato-primary-dark: var(--rahato-warm-dark);
	--rahato-accent: var(--rahato-teal);
	--rahato-mist: #e8f0ef;
	--rahato-blush: #f3e8ec;
	--rahato-amber: #c9a062;
	--rahato-border: rgba(26, 35, 40, 0.08);
	--rahato-shadow: 0 4px 24px rgba(26, 35, 40, 0.06);
	--rahato-shadow-md: 0 12px 40px rgba(26, 35, 40, 0.08);
	--rahato-shadow-lg: 0 24px 64px rgba(26, 35, 40, 0.1);
	--rahato-radius: 16px;
	--rahato-radius-sm: 10px;
	--rahato-font-display: "Fraunces", Georgia, serif;
	--rahato-font-body: "Plus Jakarta Sans", system-ui, sans-serif;
	/* Two-sided gradients — warm → teal */
	--rahato-gradient-brand: linear-gradient(135deg, var(--rahato-warm) 0%, var(--rahato-teal) 100%);
	--rahato-gradient-brand-reverse: linear-gradient(135deg, var(--rahato-teal) 0%, var(--rahato-warm) 100%);
	--rahato-gradient-hero: linear-gradient(135deg, var(--rahato-blush) 0%, var(--rahato-cream) 40%, var(--rahato-mist) 100%);
	--rahato-gradient-soft: linear-gradient(135deg, rgba(196, 104, 69, 0.08) 0%, rgba(42, 99, 96, 0.08) 100%);
	--rahato-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

body.rahato-site {
	margin: 0;
	font-family: var(--rahato-font-body);
	color: var(--rahato-ink);
	background: var(--rahato-cream);
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* ── Layout helpers ───────────────────────────────────── */
.rahato-wrap {
	width: min(1160px, calc(100% - 2.5rem));
	margin-inline: auto;
}

.rahato-section {
	padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.rahato-section--tight {
	padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.rahato-eyebrow {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--rahato-primary);
	margin-bottom: 0.75rem;
}

.rahato-heading {
	font-family: var(--rahato-font-display);
	font-weight: 600;
	line-height: 1.1;
	margin: 0 0 1rem;
	color: var(--rahato-ink);
}

.rahato-heading--xl {
	font-size: clamp(2.75rem, 6vw, 4.5rem);
	letter-spacing: -0.02em;
}

.rahato-heading--lg {
	font-size: clamp(2rem, 4vw, 2.75rem);
}

.rahato-heading--md {
	font-size: clamp(1.5rem, 3vw, 2rem);
}

.rahato-lead {
	font-size: clamp(1.05rem, 2vw, 1.2rem);
	color: rgba(26, 35, 40, 0.78);
	max-width: 36rem;
	line-height: 1.7;
}

.rahato-text-center {
	text-align: center;
}

.rahato-text-center .rahato-lead {
	margin-inline: auto;
}

/* ── Header ───────────────────────────────────────────── */
.rahato-header {
	position: sticky;
	top: 0;
	z-index: 200;
	background: rgba(246, 243, 237, 0.88);
	backdrop-filter: blur(20px) saturate(180%);
	border-bottom: 1px solid var(--rahato-border);
}

.rahato-header__inner {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	column-gap: 2rem;
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 1rem clamp(1.25rem, 4vw, 3rem);
}

.rahato-header__logo {
	grid-column: 1;
	grid-row: 1;
	justify-self: start;
	flex-shrink: 0;
}

.rahato-header__nav {
	grid-column: 3;
	grid-row: 1;
	justify-self: end;
}

.rahato-nav-toggle {
	grid-column: 3;
	grid-row: 1;
	justify-self: end;
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
}

.rahato-header__logo img {
	width: 192px;
	max-width: 48vw;
	height: auto;
	display: block;
}

.rahato-nav {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 2rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.rahato-nav a {
	text-decoration: none;
	color: var(--rahato-ink-soft);
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.02em;
	transition: color 0.25s var(--rahato-ease);
}

.rahato-nav a:hover {
	color: var(--rahato-primary);
}

.rahato-nav__cta {
	background: var(--rahato-gradient-brand);
	color: #fff !important;
	padding: 0.6rem 1.4rem;
	border-radius: var(--rahato-radius-sm);
	box-shadow: 0 6px 20px rgba(196, 104, 69, 0.22);
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	transition: transform 0.25s var(--rahato-ease), box-shadow 0.25s var(--rahato-ease) !important;
}

.rahato-nav__cta:hover {
	transform: translateY(-1px);
	box-shadow: 0 10px 28px rgba(42, 99, 96, 0.28);
	color: #fff !important;
}

@media (max-width: 768px) {
	.rahato-header__inner {
		grid-template-columns: 1fr auto;
		position: relative;
		padding-inline: clamp(1rem, 4vw, 1.5rem);
	}

	.rahato-nav-toggle {
		display: block;
	}

	.rahato-header__nav {
		grid-column: 1 / -1;
		grid-row: 2;
		justify-self: stretch;
	}

	.rahato-nav {
		display: none;
		flex-direction: column;
		align-items: flex-start;
		background: var(--rahato-cream);
		padding: 1.25rem 0 0.5rem;
		gap: 1rem;
	}

	.rahato-nav.is-open {
		display: flex;
	}
}

/* ── Buttons ──────────────────────────────────────────── */
.rahato-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.875rem 1.75rem;
	border-radius: var(--rahato-radius-sm);
	font-family: inherit;
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: transform 0.25s var(--rahato-ease), box-shadow 0.25s var(--rahato-ease), background 0.25s var(--rahato-ease);
}

.rahato-btn--primary {
	background: var(--rahato-gradient-brand);
	color: #fff;
	box-shadow: var(--rahato-shadow-md);
}

.rahato-btn--primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 40px rgba(42, 99, 96, 0.25);
	background: var(--rahato-gradient-brand-reverse);
	color: #fff;
}

.rahato-btn--ghost {
	background: var(--rahato-surface);
	color: var(--rahato-ink);
	border: 1px solid var(--rahato-border);
	box-shadow: var(--rahato-shadow);
}

.rahato-btn--ghost:hover {
	border-color: var(--rahato-primary);
	color: var(--rahato-primary);
}

.rahato-btn--light {
	background: #fff;
	color: var(--rahato-primary);
	box-shadow: var(--rahato-shadow-md);
}

.rahato-btn--light:hover {
	transform: translateY(-2px);
	box-shadow: var(--rahato-shadow-lg);
	color: var(--rahato-primary-dark);
}

.rahato-btn-row {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	align-items: center;
}

.rahato-btn-row--center {
	justify-content: center;
}

/* ── Hero ─────────────────────────────────────────────── */
.rahato-hero {
	position: relative;
	overflow: hidden;
	padding: clamp(3.5rem, 8vw, 6rem) 0;
	background:
		radial-gradient(ellipse 70% 55% at 90% 20%, rgba(42, 99, 96, 0.1) 0%, transparent 55%),
		radial-gradient(ellipse 55% 50% at 5% 85%, rgba(196, 104, 69, 0.08) 0%, transparent 50%),
		var(--rahato-gradient-hero);
}

.rahato-hero__grid {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
}

.rahato-hero__content {
	max-width: 540px;
}

.rahato-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: #fff;
	border: 1px solid rgba(42, 99, 96, 0.18);
	padding: 0.45rem 1rem;
	border-radius: 999px;
	font-size: 0.82rem;
	font-weight: 500;
	color: var(--rahato-teal);
	margin-bottom: 1.25rem;
	box-shadow: 0 4px 16px rgba(26, 35, 40, 0.05);
}

.rahato-hero__badge-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--rahato-gradient-brand);
	animation: rahato-pulse 2s ease infinite;
}

@keyframes rahato-pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.5; transform: scale(0.85); }
}

.rahato-hero__subtitle {
	font-family: var(--rahato-font-display);
	font-size: clamp(1.35rem, 3vw, 1.85rem);
	font-style: italic;
	background: var(--rahato-gradient-brand);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	margin: 0 0 1.25rem;
}

.rahato-hero__visual {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.rahato-hero__visual img {
	width: min(100%, 560px);
	height: auto;
	display: block;
	object-fit: contain;
	filter: drop-shadow(0 28px 56px rgba(42, 99, 96, 0.18));
}

.rahato-made-in-india {
	height: auto;
	max-width: 140px;
	opacity: 0.92;
}

/* Made in India — identity badge */
.rahato-india-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.85rem;
}

.rahato-india-badge img {
	display: block;
	height: auto;
	flex-shrink: 0;
}

.rahato-india-badge__copy {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}

.rahato-india-badge__copy strong {
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1.2;
}

.rahato-india-badge__copy span {
	font-size: 0.8125rem;
	line-height: 1.4;
	opacity: 0.75;
}

.rahato-india-badge--footer {
	margin-top: 1.5rem;
	padding-top: 1.25rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.rahato-india-badge--footer img {
	width: 64px;
}

.rahato-india-badge--footer span {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.65);
}

.rahato-india-badge--dark {
	margin-top: 2rem;
	padding: 1rem 1.25rem;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--rahato-radius-sm);
}

.rahato-india-badge--dark img {
	width: 72px;
}

.rahato-india-badge--dark .rahato-india-badge__copy strong {
	color: #fff;
}

.rahato-india-badge--dark .rahato-india-badge__copy span {
	color: rgba(255, 255, 255, 0.55);
}

.rahato-india-badge--light {
	padding: 1.25rem 1.5rem;
	background: var(--rahato-gradient-soft);
	border: 1px solid rgba(196, 104, 69, 0.12);
	border-radius: var(--rahato-radius);
}

.rahato-india-badge--light img {
	width: 72px;
}

.rahato-india-badge--light .rahato-india-badge__copy strong {
	color: var(--rahato-teal);
}

.rahato-india-badge--light .rahato-india-badge__copy span {
	color: var(--rahato-ink-soft);
}

.rahato-india-band {
	background: var(--rahato-gradient-soft);
	border-block: 1px solid rgba(196, 104, 69, 0.1);
	padding: 1.25rem 0;
}

.rahato-india-band__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.25rem;
	text-align: left;
}

.rahato-india-band__inner img {
	width: 72px;
	height: auto;
	flex-shrink: 0;
}

.rahato-india-band__inner p {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.55;
	color: var(--rahato-ink-soft);
	max-width: 42rem;
}

.rahato-india-band__inner strong {
	color: var(--rahato-teal);
	font-weight: 700;
}

@media (max-width: 600px) {
	.rahato-india-band__inner {
		flex-direction: column;
		text-align: center;
		gap: 0.85rem;
	}

	.rahato-india-badge--footer {
		justify-content: flex-start;
	}
}

@media (max-width: 900px) {
	.rahato-hero__grid {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.rahato-hero__content {
		max-width: none;
		margin-inline: auto;
	}

	.rahato-hero__visual {
		order: -1;
	}

	.rahato-hero__visual img {
		width: min(100%, 480px);
		margin-inline: auto;
	}

	.rahato-btn-row {
		justify-content: center;
	}
}

/* ── Promo banner ─────────────────────────────────────── */
.rahato-banner {
	background: var(--rahato-gradient-brand);
	color: #fff;
	padding: clamp(2rem, 5vw, 3rem) 0;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.rahato-banner::before {
	content: "";
	position: absolute;
	inset: 0;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	opacity: 0.5;
}

.rahato-banner__inner {
	position: relative;
	z-index: 1;
}

.rahato-banner h2 {
	font-family: var(--rahato-font-display);
	font-size: clamp(1.35rem, 3vw, 1.85rem);
	margin: 0 0 0.75rem;
	color: #fff;
}

.rahato-banner p {
	margin: 0 0 1.5rem;
	opacity: 0.92;
	max-width: 32rem;
	margin-inline: auto;
}

/* ── Cards grid ───────────────────────────────────────── */
.rahato-grid {
	display: grid;
	gap: 1.5rem;
}

.rahato-grid--3 {
	grid-template-columns: repeat(3, 1fr);
}

.rahato-grid--4 {
	grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 900px) {
	.rahato-grid--3,
	.rahato-grid--4 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 560px) {
	.rahato-grid--3,
	.rahato-grid--4 {
		grid-template-columns: 1fr;
	}
}

.rahato-card {
	background: #fff;
	border-radius: var(--rahato-radius);
	padding: 2rem 1.75rem;
	border: 1px solid rgba(196, 104, 69, 0.1);
	box-shadow: 0 4px 20px rgba(26, 35, 40, 0.04);
	transition: transform 0.25s, box-shadow 0.25s;
}

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

.rahato-card__icon {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: linear-gradient(135deg, var(--rahato-mist) 0%, #fff 100%);
	border: 1px solid rgba(42, 99, 96, 0.12);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	margin-bottom: 1.25rem;
}

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

.rahato-card p {
	margin: 0;
	font-size: 0.95rem;
	color: rgba(26, 35, 40, 0.72);
	line-height: 1.65;
}

/* ── Product cards ────────────────────────────────────── */
.rahato-product {
	background: #fff;
	border-radius: 24px;
	overflow: hidden;
	border: 1px solid rgba(42, 99, 96, 0.1);
	box-shadow: var(--rahato-shadow);
	transition: transform 0.3s, box-shadow 0.3s;
	display: flex;
	flex-direction: column;
}

.rahato-product__image {
	background: var(--rahato-mist);
	padding: 1.25rem 1.25rem 0;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 200px;
}

.rahato-product__image img {
	width: 100%;
	max-height: 220px;
	object-fit: contain;
	display: block;
	transition: transform 0.3s ease;
}

.rahato-product__image--travel {
	padding: 0.75rem;
	min-height: 240px;
}

.rahato-product__image--travel img {
	max-height: 280px;
	width: 100%;
	object-fit: cover;
	border-radius: 12px;
}

.rahato-product__image--luxury {
	padding: 0.75rem;
	min-height: 240px;
}

.rahato-product__image--luxury img {
	max-height: 280px;
	width: 100%;
	object-fit: cover;
	border-radius: 12px;
	object-position: center top;
}

.rahato-product:hover .rahato-product__image img {
	transform: scale(1.03);
}

.rahato-product:hover {
	transform: translateY(-6px);
	box-shadow: var(--rahato-shadow-lg);
}

.rahato-product__top {
	padding: 2rem 2rem 1.25rem;
	background: linear-gradient(180deg, var(--rahato-mist) 0%, #fff 100%);
	min-height: 140px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.rahato-product--teal .rahato-product__top {
	background: linear-gradient(180deg, rgba(42, 99, 96, 0.1) 0%, #fff 100%);
}

.rahato-product--teal .rahato-product__tag {
	color: var(--rahato-teal);
}

.rahato-product__tag {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--rahato-primary);
	margin-bottom: 0.5rem;
}

.rahato-product__top h3 {
	font-family: var(--rahato-font-display);
	font-size: 1.65rem;
	margin: 0;
}

.rahato-product__body {
	padding: 1.25rem 2rem 2rem;
	flex: 1;
}

.rahato-product__body p {
	margin: 0;
	font-size: 0.92rem;
	color: rgba(26, 35, 40, 0.75);
	line-height: 1.7;
}

.rahato-product__features {
	list-style: none;
	padding: 0;
	margin: 1rem 0 0;
}

.rahato-product__features li {
	font-size: 0.85rem;
	padding: 0.35rem 0;
	color: var(--rahato-primary-dark);
	font-weight: 500;
}

.rahato-product__features li::before {
	content: "✓ ";
	color: var(--rahato-primary);
}

/* ── Testimonials ───────────────────────────────────────── */
.rahato-testimonial {
	background: #fff;
	border-radius: var(--rahato-radius);
	padding: 2rem;
	border: 1px solid rgba(196, 104, 69, 0.08);
	position: relative;
}

.rahato-testimonial::before {
	content: "\201C";
	font-family: var(--rahato-font-display);
	font-size: 4rem;
	line-height: 1;
	color: var(--rahato-mist);
	position: absolute;
	top: 0.5rem;
	left: 1.25rem;
}

.rahato-testimonial blockquote {
	margin: 0 0 1.5rem;
	padding-top: 1.5rem;
	font-style: italic;
	font-size: 0.95rem;
	color: rgba(26, 35, 40, 0.8);
	line-height: 1.7;
}

.rahato-testimonial__author {
	display: flex;
	align-items: center;
	gap: 0.85rem;
}

.rahato-testimonial__avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--rahato-gradient-brand);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 0.85rem;
	flex-shrink: 0;
}

.rahato-testimonial__name {
	font-weight: 600;
	font-size: 0.92rem;
	margin: 0;
}

.rahato-testimonial__role {
	font-size: 0.82rem;
	color: rgba(26, 35, 40, 0.55);
	margin: 0;
}

/* ── CTA section ──────────────────────────────────────── */
.rahato-cta {
	background:
		radial-gradient(ellipse 70% 80% at 50% 120%, rgba(196, 104, 69, 0.2) 0%, transparent 60%),
		radial-gradient(ellipse 50% 60% at 10% 20%, rgba(42, 99, 96, 0.25) 0%, transparent 50%),
		linear-gradient(160deg, #1f4a48 0%, var(--rahato-ink) 100%);
	color: #fff;
	text-align: center;
}

.rahato-cta .rahato-heading {
	color: #fff;
}

.rahato-cta .rahato-lead {
	color: rgba(255, 255, 255, 0.78);
	margin-inline: auto;
}

/* ── App store download buttons ───────────────────────── */
.rahato-app-stores {
	margin-top: 1.5rem;
}

.rahato-app-stores__label {
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--rahato-ink-soft);
	margin: 0 0 0.85rem;
}

.rahato-app-stores__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.rahato-store-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	padding: 0.55rem 1rem 0.55rem 0.75rem;
	min-width: 158px;
	background: var(--rahato-ink);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 12px;
	text-decoration: none;
	transition:
		transform 0.25s var(--rahato-ease),
		box-shadow 0.25s var(--rahato-ease),
		background 0.25s var(--rahato-ease);
	box-shadow: 0 4px 16px rgba(26, 35, 40, 0.12);
}

.rahato-store-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 28px rgba(26, 35, 40, 0.18);
	color: #fff;
}

.rahato-store-btn--apple:hover {
	background: #1a1a1a;
}

.rahato-store-btn--google:hover {
	background: #0d3b2e;
	border-color: rgba(42, 99, 96, 0.4);
}

.rahato-store-btn__icon {
	width: 26px;
	height: 26px;
	flex-shrink: 0;
	fill: currentColor;
}

.rahato-store-btn__icon--apple {
	width: 22px;
	height: 26px;
}

.rahato-store-btn__icon--google {
	width: 24px;
	height: 24px;
	fill: none;
}

.rahato-store-btn__text {
	display: flex;
	flex-direction: column;
	line-height: 1.15;
}

.rahato-store-btn__text small {
	font-size: 0.5625rem;
	font-weight: 500;
	letter-spacing: 0.02em;
	opacity: 0.82;
}

.rahato-store-btn__text strong {
	font-size: 0.9375rem;
	font-weight: 600;
	letter-spacing: -0.01em;
}

.rahato-app-stores--center {
	text-align: center;
}

.rahato-app-stores--center .rahato-app-stores__buttons {
	justify-content: center;
}

.rahato-app-stores-wrap--dark .rahato-app-stores__label {
	color: rgba(255, 255, 255, 0.55);
}

.rahato-app-stores-wrap--dark .rahato-store-btn {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.18);
	backdrop-filter: blur(8px);
}

.rahato-app-stores-wrap--dark .rahato-store-btn:hover {
	background: rgba(255, 255, 255, 0.14);
	border-color: rgba(255, 255, 255, 0.32);
}

.rahato-app-stores-wrap--cta .rahato-app-stores__label {
	color: rgba(255, 255, 255, 0.6);
}

.rahato-app-stores-wrap--cta .rahato-store-btn {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.22);
}

.rahato-app-stores-wrap--cta .rahato-store-btn:hover {
	background: rgba(255, 255, 255, 0.18);
}

.rahato-app-stores--footer {
	margin-top: 1.75rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.rahato-app-stores--footer .rahato-app-stores__label {
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 0.75rem;
}

.rahato-app-stores--footer .rahato-store-btn {
	min-width: 140px;
	padding: 0.5rem 0.85rem 0.5rem 0.65rem;
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.14);
	box-shadow: none;
}

.rahato-app-stores--footer .rahato-store-btn:hover {
	background: rgba(255, 255, 255, 0.12);
	box-shadow: none;
}

.rahato-app-stores--footer .rahato-store-btn__icon {
	width: 22px;
	height: 22px;
}

.rahato-app-stores--footer .rahato-store-btn__icon--apple {
	width: 18px;
	height: 22px;
}

.rahato-app-stores--footer .rahato-store-btn__text strong {
	font-size: 0.8125rem;
}

.rahato-app-stores--compact {
	margin-top: 1.25rem;
}

@media (max-width: 480px) {
	.rahato-app-stores__buttons {
		flex-direction: column;
	}

	.rahato-store-btn {
		width: 100%;
		max-width: 220px;
	}
}

/* ── Amazon buy ─────────────────────────────────────────── */
.rahato-amazon-buy__card {
	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);
	text-decoration: none;
	color: inherit;
	transition: transform 0.35s var(--rahato-ease), box-shadow 0.35s, border-color 0.35s;
}

.rahato-amazon-buy__card:hover {
	transform: translateY(-3px);
	box-shadow: var(--rahato-shadow-lg);
	border-color: rgba(255, 153, 0, 0.35);
}

.rahato-amazon-buy__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;
}

.rahato-amazon-buy__media img {
	width: 100%;
	max-height: 200px;
	object-fit: contain;
	display: block;
	transition: transform 0.35s var(--rahato-ease);
}

.rahato-amazon-buy__card:hover .rahato-amazon-buy__media img {
	transform: scale(1.03);
}

.rahato-amazon-buy__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	margin-bottom: 0.65rem;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--rahato-teal);
}

.rahato-amazon-buy__brand {
	height: 1.1rem;
	width: auto;
	display: block;
}

.rahato-amazon-buy__title {
	margin: 0 0 0.5rem;
	font-family: var(--rahato-font-display);
	font-size: clamp(1.35rem, 2.5vw, 1.65rem);
	font-weight: 600;
	color: var(--rahato-ink);
	line-height: 1.15;
}

.rahato-amazon-buy__desc {
	margin: 0 0 1.15rem;
	font-size: 0.9375rem;
	line-height: 1.7;
	color: rgba(26, 35, 40, 0.72);
	max-width: 34rem;
}

.rahato-amazon-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.65rem 1rem 0.65rem 0.9rem;
	background: #232f3e;
	color: #fff;
	border-radius: 10px;
	border: 1px solid #131921;
	box-shadow: 0 4px 14px rgba(19, 25, 33, 0.18);
	transition: background 0.25s, transform 0.25s;
}

.rahato-amazon-buy__card:hover .rahato-amazon-btn,
.rahato-amazon-btn:hover {
	background: #131921;
	transform: translateY(-1px);
}

.rahato-amazon-btn--compact {
	margin-top: 0.85rem;
	padding: 0.5rem 0.8rem 0.5rem 0.7rem;
}

.rahato-text-center .rahato-amazon-btn--compact {
	display: inline-flex;
}

.rahato-amazon-btn__logo {
	height: 1.35rem;
	width: auto;
	display: block;
}

.rahato-amazon-btn--compact .rahato-amazon-btn__logo {
	height: 1.15rem;
}

.rahato-amazon-btn__suffix {
	font-size: 1rem;
	font-weight: 700;
	line-height: 1;
	color: #ff9900;
	letter-spacing: -0.02em;
	padding-bottom: 0.05rem;
}

.rahato-amazon-btn__icon {
	flex-shrink: 0;
}

.rahato-amazon-btn__text {
	display: grid;
	line-height: 1.15;
	text-align: left;
}

.rahato-amazon-btn__text small {
	font-size: 0.625rem;
	font-weight: 500;
	opacity: 0.82;
	letter-spacing: 0.02em;
}

.rahato-amazon-btn__text strong {
	font-size: 0.9375rem;
	font-weight: 700;
	letter-spacing: 0.01em;
}

.rahato-product__buy {
	padding: 0 1.35rem 1.35rem;
	margin-top: auto;
}

@media (max-width: 720px) {
	.rahato-amazon-buy__card {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.rahato-amazon-buy__desc {
		margin-inline: auto;
	}

	.rahato-amazon-btn {
		margin-inline: auto;
	}
}

/* ── Rahato Official Store CTA (homepage) ─────────────── */
.rahato-shop-cta {
	position: relative;
}

.rahato-shop-cta__card {
	position: relative;
	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: linear-gradient(135deg, #fff 0%, #faf8f6 100%);
	border: 1px solid rgba(42, 99, 96, 0.16);
	border-radius: var(--rahato-radius);
	box-shadow: var(--rahato-shadow);
	text-decoration: none;
	color: inherit;
	overflow: hidden;
	transition: transform 0.35s var(--rahato-ease), box-shadow 0.35s, border-color 0.35s;
}

.rahato-shop-cta__glow {
	position: absolute;
	inset: -40% -20% auto auto;
	width: 280px;
	height: 280px;
	background: radial-gradient(circle, rgba(196, 104, 69, 0.18) 0%, rgba(42, 99, 96, 0.08) 45%, transparent 70%);
	pointer-events: none;
}

.rahato-shop-cta__card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 48px rgba(26, 35, 40, 0.12);
	border-color: rgba(42, 99, 96, 0.28);
}

.rahato-shop-cta__media {
	position: relative;
	background: linear-gradient(165deg, rgba(42, 99, 96, 0.08) 0%, #fff 55%);
	border-radius: calc(var(--rahato-radius-sm) + 2px);
	padding: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.rahato-shop-cta__badge {
	position: absolute;
	top: 0.65rem;
	left: 0.65rem;
	z-index: 1;
	padding: 0.28rem 0.55rem;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--rahato-warm), var(--rahato-teal));
	color: #fff;
	font-size: 0.625rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.rahato-shop-cta__media img {
	width: 100%;
	max-height: 200px;
	object-fit: contain;
	display: block;
	transition: transform 0.4s var(--rahato-ease);
}

.rahato-shop-cta__card:hover .rahato-shop-cta__media img {
	transform: scale(1.05);
}

.rahato-shop-cta__eyebrow {
	display: inline-block;
	margin-bottom: 0.55rem;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--rahato-teal);
}

.rahato-shop-cta__title {
	margin: 0 0 0.55rem;
	font-family: var(--rahato-font-display);
	font-size: clamp(1.4rem, 2.6vw, 1.75rem);
	font-weight: 600;
	color: var(--rahato-ink);
	line-height: 1.15;
}

.rahato-shop-cta__desc {
	margin: 0 0 1rem;
	max-width: 36rem;
	font-size: 0.9375rem;
	line-height: 1.65;
	color: var(--rahato-ink-soft);
}

.rahato-shop-cta__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	margin: 0 0 1.15rem;
	padding: 0;
	list-style: none;
}

.rahato-shop-cta__tags li {
	padding: 0.35rem 0.7rem;
	border-radius: 999px;
	background: rgba(42, 99, 96, 0.08);
	border: 1px solid rgba(42, 99, 96, 0.12);
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--rahato-teal-dark);
}

.rahato-shop-cta__btn {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.75rem 1.35rem;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--rahato-warm) 0%, var(--rahato-teal) 100%);
	color: #fff;
	font-size: 0.9375rem;
	font-weight: 700;
	box-shadow: 0 8px 24px rgba(42, 99, 96, 0.22);
	transition: transform 0.25s var(--rahato-ease), box-shadow 0.25s;
}

.rahato-shop-cta__card:hover .rahato-shop-cta__btn {
	transform: translateX(3px);
	box-shadow: 0 12px 28px rgba(42, 99, 96, 0.28);
}

@media (max-width: 720px) {
	.rahato-shop-cta__card {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.rahato-shop-cta__desc {
		margin-inline: auto;
	}

	.rahato-shop-cta__tags {
		justify-content: center;
	}

	.rahato-shop-cta__btn {
		margin-inline: auto;
	}
}

/* ── Site-wide shop strip (header) ─────────────────────── */
.rahato-shop-strip {
	background: linear-gradient(90deg, rgba(42, 99, 96, 0.08) 0%, rgba(196, 104, 69, 0.08) 100%);
	border-bottom: 1px solid rgba(42, 99, 96, 0.1);
}

.rahato-shop-strip__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.55rem 0;
}

.rahato-shop-strip__text {
	margin: 0;
	font-size: 0.8125rem;
	line-height: 1.45;
	color: var(--rahato-ink-soft);
}

.rahato-shop-strip__text strong {
	color: var(--rahato-teal-dark);
}

.rahato-shop-strip__btn {
	flex-shrink: 0;
	padding: 0.45rem 1rem;
	border-radius: 999px;
	background: var(--rahato-gradient-brand);
	color: #fff !important;
	font-size: 0.75rem;
 font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-decoration: none;
	box-shadow: 0 4px 14px rgba(42, 99, 96, 0.18);
	transition: transform 0.2s var(--rahato-ease), box-shadow 0.2s;
}

.rahato-shop-strip__btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 8px 20px rgba(42, 99, 96, 0.24);
	color: #fff !important;
}

/* ── Full shop banner section ──────────────────────────── */
.rahato-shop-banner {
	padding: clamp(2.5rem, 6vw, 3.75rem) 0;
	background: linear-gradient(135deg, #faf8f6 0%, rgba(42, 99, 96, 0.06) 50%, rgba(196, 104, 69, 0.05) 100%);
	border-block: 1px solid var(--rahato-border);
}

.rahato-shop-banner__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: clamp(1.5rem, 4vw, 3rem);
}

.rahato-shop-banner__eyebrow {
	display: inline-block;
	margin-bottom: 0.5rem;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--rahato-teal);
}

.rahato-shop-banner__title {
	margin: 0 0 0.65rem;
	font-family: var(--rahato-font-display);
	font-size: clamp(1.5rem, 3vw, 2rem);
	line-height: 1.2;
	color: var(--rahato-ink);
}

.rahato-shop-banner__desc {
	margin: 0 0 1rem;
	max-width: 36rem;
	font-size: 0.9375rem;
	line-height: 1.65;
	color: var(--rahato-ink-soft);
}

.rahato-shop-banner__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.rahato-shop-banner__tags li {
	padding: 0.35rem 0.7rem;
	border-radius: 999px;
	background: #fff;
	border: 1px solid rgba(42, 99, 96, 0.12);
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--rahato-teal-dark);
}

.rahato-shop-banner__actions {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 0.65rem;
	flex-shrink: 0;
}

.rahato-shop-banner__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.85rem 1.75rem;
	border-radius: 999px;
	background: var(--rahato-gradient-brand);
	color: #fff !important;
	font-size: 0.9375rem;
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 10px 28px rgba(42, 99, 96, 0.22);
	transition: transform 0.25s var(--rahato-ease), box-shadow 0.25s;
}

.rahato-shop-banner__btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 36px rgba(42, 99, 96, 0.28);
	color: #fff !important;
}

.rahato-shop-banner__secondary {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--rahato-teal-dark);
	text-decoration: none;
}

.rahato-shop-banner__secondary:hover {
	text-decoration: underline;
}

.rahato-shop-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1.5rem;
	border-radius: var(--rahato-radius-sm);
	background: var(--rahato-gradient-brand);
	color: #fff !important;
	font-size: 0.875rem;
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 8px 22px rgba(42, 99, 96, 0.2);
	transition: transform 0.25s var(--rahato-ease), box-shadow 0.25s;
}

.rahato-shop-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(42, 99, 96, 0.26);
	color: #fff !important;
}

.rahato-shop-bar {
	padding: clamp(1.25rem, 3vw, 1.75rem) 0;
	background: linear-gradient(90deg, rgba(42, 99, 96, 0.06) 0%, rgba(196, 104, 69, 0.04) 100%);
	border-block: 1px solid var(--rahato-border);
}

.rahato-shop-bar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem 1.5rem;
	flex-wrap: wrap;
}

.rahato-shop-bar__text {
	margin: 0;
	font-size: 0.9375rem;
	color: var(--rahato-ink-muted);
}

.rahato-shop-bar__text strong {
	color: var(--rahato-ink);
}

.rahato-shop-bar__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.65rem 1.25rem;
	border-radius: var(--rahato-radius-sm);
	background: var(--rahato-gradient-brand);
	color: #fff !important;
	font-size: 0.8125rem;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
	box-shadow: 0 6px 18px rgba(42, 99, 96, 0.18);
	transition: transform 0.25s var(--rahato-ease), box-shadow 0.25s;
}

.rahato-shop-bar__btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 10px 24px rgba(42, 99, 96, 0.24);
	color: #fff !important;
}

@media (max-width: 768px) {
	.rahato-shop-bar__inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.rahato-shop-strip__inner {
		flex-direction: column;
		align-items: stretch;
		text-align: center;
		padding: 0.65rem 0;
	}

	.rahato-shop-strip__btn {
		align-self: center;
	}

	.rahato-shop-banner__inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.rahato-shop-banner__actions {
		align-items: flex-start;
		width: 100%;
	}
}

/* ── Footer ─────────────────────────────────────────────── */
.rahato-footer {
	background: var(--rahato-ink);
	color: rgba(255, 255, 255, 0.82);
	padding: clamp(3rem, 6vw, 4.5rem) 0 2rem;
}

.rahato-footer__grid {
	display: grid;
	grid-template-columns: 1.35fr repeat(5, minmax(0, 1fr));
	gap: 2.5rem;
	margin-bottom: 2.5rem;
}

.rahato-footer__logo img {
	width: 110px;
	filter: brightness(0) invert(1);
	opacity: 0.95;
}

.rahato-footer__tagline {
	font-size: 0.9rem;
	line-height: 1.65;
	margin-top: 1rem;
	margin-bottom: 1.5rem;
	opacity: 0.75;
	max-width: 280px;
}

.rahato-footer__follow {
	margin-bottom: 1.5rem;
}

.rahato-footer__follow h4 {
	margin-bottom: 0.85rem;
	color: #fff;
	opacity: 0.95;
}

.rahato-footer h4 {
	font-family: var(--rahato-font-body);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--rahato-mist);
	margin: 0 0 1rem;
}

.rahato-footer ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.rahato-footer li {
	margin-bottom: 0.55rem;
}

.rahato-footer a {
	color: rgba(255, 255, 255, 0.75);
	text-decoration: none;
	font-size: 0.9rem;
	transition: color 0.2s;
}

.rahato-footer a:hover {
	color: #fff;
}

.rahato-footer__contact {
	display: grid;
	gap: 0.85rem;
}

.rahato-footer__contact-item {
	display: flex;
	align-items: flex-start;
	gap: 0.7rem;
	margin-bottom: 0;
}

.rahato-footer__contact-icon {
	flex-shrink: 0;
	width: 2rem;
	height: 2rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.88);
}

.rahato-footer__contact-text,
.rahato-footer__contact-link {
	font-size: 0.875rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.78);
}

.rahato-footer__contact-link {
	text-decoration: none;
	transition: color 0.2s;
	word-break: break-word;
}

.rahato-footer__contact-link:hover {
	color: #fff;
}

.rahato-footer__contact-meta {
	font-size: 0.8125rem;
	opacity: 0.82;
}

.rahato-footer__bottom {
	text-align: center;
	padding-top: 1.75rem;
	margin-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-bottom: 0.25rem;
}

.rahato-footer__copy {
	margin: 0;
	font-size: 0.85rem;
	opacity: 0.65;
	color: rgba(255, 255, 255, 0.82);
}

.rahato-social {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.rahato-social__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	color: #fff;
	background: rgba(255, 255, 255, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.22);
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
	transition: color 0.25s, background 0.25s, border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.rahato-social__link svg {
	width: 1.25rem;
	height: 1.25rem;
	display: block;
}

.rahato-social__link:hover {
	color: #fff;
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

.rahato-social__link:nth-child(1) {
	background: rgba(24, 119, 242, 0.35);
	border-color: rgba(24, 119, 242, 0.55);
}

.rahato-social__link:nth-child(2) {
	background: rgba(225, 48, 108, 0.32);
	border-color: rgba(225, 48, 108, 0.5);
}

.rahato-social__link:nth-child(3) {
	background: rgba(255, 0, 0, 0.32);
	border-color: rgba(255, 0, 0, 0.5);
}

.rahato-social__link:nth-child(4) {
	background: rgba(10, 102, 194, 0.35);
	border-color: rgba(10, 102, 194, 0.55);
}

.rahato-social__link:nth-child(1):hover {
	background: #1877f2;
	border-color: #1877f2;
}

.rahato-social__link:nth-child(2):hover {
	background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
	border-color: transparent;
}

.rahato-social__link:nth-child(3):hover {
	background: #ff0000;
	border-color: #ff0000;
}

.rahato-social__link:nth-child(4):hover {
	background: #0a66c2;
	border-color: #0a66c2;
}

@media (max-width: 1100px) {
	.rahato-footer__grid {
		grid-template-columns: 1.2fr 1fr 1fr;
	}
}

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

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

/* ── Inner pages ──────────────────────────────────────── */
.rahato-page-hero {
	background: linear-gradient(180deg, var(--rahato-mist) 0%, var(--rahato-cream) 100%);
	padding: clamp(3rem, 7vw, 5rem) 0;
	text-align: center;
}

.rahato-page-hero .rahato-heading {
	margin-bottom: 0.75rem;
}

/* ── Contact form ─────────────────────────────────────── */
.rahato-contact-form {
	background: #fff;
	border-radius: 24px;
	padding: 2.5rem;
	box-shadow: var(--rahato-shadow);
	border: 1px solid rgba(196, 104, 69, 0.1);
}

.rahato-contact-form__notice {
	padding: 1rem 1.25rem;
	border-radius: 12px;
	margin-bottom: 1.5rem;
	font-size: 0.95rem;
}

.rahato-contact-form__notice--success {
	background: #e8f5ea;
	color: #2d5a34;
	border: 1px solid #b8dfc0;
}

.rahato-contact-form__notice--error {
	background: #fdecea;
	color: #7a2e2e;
	border: 1px solid #f5c6c6;
}

.rahato-contact-form__field {
	margin-bottom: 1.25rem;
}

.rahato-contact-form__field label {
	display: block;
	margin-bottom: 0.4rem;
	font-weight: 500;
	font-size: 0.92rem;
}

.rahato-contact-form__field label span {
	color: var(--rahato-primary);
}

.rahato-contact-form__optional {
	font-weight: 400;
	color: rgba(26, 35, 40, 0.55);
	font-size: 0.85em;
}

.rahato-contact-form__field input,
.rahato-contact-form__field select,
.rahato-contact-form__field textarea {
	width: 100%;
	padding: 0.85rem 1rem;
	border: 1px solid rgba(196, 104, 69, 0.2);
	border-radius: 12px;
	font-family: inherit;
	font-size: 1rem;
	background: var(--rahato-cream);
	transition: border-color 0.2s, box-shadow 0.2s;
}

.rahato-contact-form__field input:focus,
.rahato-contact-form__field select:focus,
.rahato-contact-form__field textarea:focus {
	outline: none;
	border-color: var(--rahato-primary);
	box-shadow: 0 0 0 3px rgba(196, 104, 69, 0.12);
	background: #fff;
}

/* ── Team cards ───────────────────────────────────────── */
.rahato-team-card {
	text-align: center;
	background: #fff;
	border-radius: 20px;
	padding: 2.5rem 1.5rem;
	border: 1px solid rgba(196, 104, 69, 0.1);
	box-shadow: 0 4px 20px rgba(26, 35, 40, 0.04);
}

.rahato-team-card__initial {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	margin: 0 auto 1.25rem;
	background: var(--rahato-gradient-brand);
	color: #fff;
	font-family: var(--rahato-font-display);
	font-size: 1.75rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
}

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

.rahato-team-card p {
	margin: 0;
	font-size: 0.88rem;
	color: var(--rahato-teal);
	font-weight: 500;
}

/* ── Feature list (products page) ─────────────────────── */
.rahato-feature-list {
	background: #fff;
	border-radius: 24px;
	padding: 2.5rem;
	box-shadow: var(--rahato-shadow);
	border: 1px solid rgba(196, 104, 69, 0.08);
}

.rahato-feature-list li {
	padding: 0.65rem 0;
	border-bottom: 1px solid rgba(196, 104, 69, 0.08);
	font-size: 0.98rem;
	line-height: 1.6;
}

.rahato-feature-list li:last-child {
	border-bottom: none;
}

.rahato-feature-list strong {
	color: var(--rahato-primary-dark);
}

/* Fade-in animation */
.rahato-fade-in {
	animation: rahato-fade 0.8s ease both;
}

@keyframes rahato-fade {
	from { opacity: 0; transform: translateY(16px); }
	to { opacity: 1; transform: translateY(0); }
}

/* ── Coming soon — wellness for everyone ──────────────── */
.rahato-coming {
	background: linear-gradient(180deg, #fff 0%, var(--rahato-mist) 100%);
	position: relative;
	overflow: hidden;
}

.rahato-coming::before {
	content: "";
	position: absolute;
	top: -40%;
	right: -10%;
	width: 420px;
	height: 420px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(42, 99, 96, 0.08) 0%, transparent 70%);
	pointer-events: none;
}

.rahato-coming__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-top: 2.5rem;
}

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

.rahato-coming__card {
	background: #fff;
	border-radius: var(--rahato-radius);
	padding: 2rem 1.75rem;
	border: 1px dashed rgba(42, 99, 96, 0.25);
	position: relative;
	transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.rahato-coming__card:hover {
	transform: translateY(-3px);
	border-color: var(--rahato-teal);
	box-shadow: var(--rahato-shadow);
}

.rahato-coming__pill {
	display: inline-block;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--rahato-teal);
	background: var(--rahato-mist);
	padding: 0.35rem 0.75rem;
	border-radius: 999px;
	margin-bottom: 1rem;
}

.rahato-coming__card h3 {
	font-family: var(--rahato-font-display);
	font-size: 1.35rem;
	margin: 0 0 0.65rem;
}

.rahato-coming__card p {
	margin: 0;
	font-size: 0.92rem;
	color: rgba(26, 35, 40, 0.72);
	line-height: 1.65;
}

.rahato-page-hero {
	background: var(--rahato-gradient-hero);
}

.rahato-page-hero__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2.5rem;
	align-items: center;
	text-align: left;
}

.rahato-page-hero__media img {
	width: 100%;
	max-width: 400px;
	margin-inline: auto;
	display: block;
	border-radius: 20px;
	box-shadow: var(--rahato-shadow-lg);
	object-fit: cover;
}

.rahato-page-hero--image .rahato-lead {
	margin: 0;
}

@media (max-width: 768px) {
	.rahato-page-hero__grid {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.rahato-page-hero__media {
		order: -1;
	}
}

/* ── Split image + text sections ──────────────────────── */
.rahato-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
}

.rahato-split-section--reverse .rahato-split__media {
	order: 2;
}

.rahato-split-section--reverse .rahato-split__content {
	order: 1;
}

.rahato-split__media img {
	width: 100%;
	max-width: 520px;
	margin-inline: auto;
	display: block;
	border-radius: 24px;
	box-shadow: var(--rahato-shadow-lg);
}

.rahato-split__media--lifestyle img {
	max-height: 560px;
	object-fit: cover;
	object-position: center top;
}

.rahato-split__content .rahato-lead {
	margin-bottom: 1.5rem;
}

.rahato-checklist {
	list-style: none;
	padding: 0;
	margin: 0;
}

.rahato-checklist li {
	position: relative;
	padding: 0.5rem 0 0.5rem 1.75rem;
	font-size: 0.98rem;
	color: rgba(26, 35, 40, 0.82);
	line-height: 1.55;
}

.rahato-checklist li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 0.55rem;
	width: 1.25rem;
	height: 1.25rem;
	border-radius: 50%;
	background: var(--rahato-mist);
	color: var(--rahato-teal);
	font-size: 0.72rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

@media (max-width: 900px) {
	.rahato-split,
	.rahato-split-section--reverse .rahato-split {
		grid-template-columns: 1fr;
	}

	.rahato-split-section--reverse .rahato-split__media,
	.rahato-split-section--reverse .rahato-split__content {
		order: unset;
	}

	.rahato-split__media {
		order: -1;
	}
}
