﻿
*, *::before, *::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--green-deep: #0d3b1e;
	--green-main: #1a5c2a;
	--green-mid: #2d7a40;
	--green-light: #4a9e5c;
	--green-pale: #e8f5eb;
	--navy-deep: #0f2a3d;
	--navy-main: #1c4a63;
	--blue-light: #6fb3d8;
	--blue-pale: #eaf4fa;
	--gold-deep: #8b6914;
	--gold-main: #c9980a;
	--gold-bright: #e8b820;
	--gold-light: #f5d97a;
	--gold-pale: #fdf6e3;
	--cream: #faf8f2;
	--white: #ffffff;
	--text-dark: #1a1a1a;
	--text-mid: #3d3d3d;
	--text-muted: #666;
	--border: #d4c89a;
	--shadow: rgba(13,59,30,0.12);
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Nunito', sans-serif;
	color: var(--text-dark);
	background: var(--cream);
	overflow-x: hidden;
}

/* NAVBAR */
nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: white;
	backdrop-filter: blur(10px);
	padding: 0 5%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 72px;
	border-bottom: 2px solid var(--gold-main);
}

.nav-logo {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
}

	.nav-logo img {
		height: 52px;
		width: 52px;
		object-fit: contain;
		border-radius: 50%;
		border: 2px solid var(--gold-main);
	}

.nav-brand {
	display: flex;
	flex-direction: column;
}

	.nav-brand span:first-child {
		font-family: 'Playfair Display', serif;
		font-size: 15px;
		font-weight: 700;
		color: var(--gold-bright);
		letter-spacing: 0.5px;
		line-height: 1.2;
	}

	.nav-brand span:last-child {
		font-size: 10px;
		color: #b8d4be;
		letter-spacing: 1.5px;
		text-transform: uppercase;
	}

.nav-links {
	display: flex;
	gap: 32px;
	list-style: none;
	align-items: center;
}

	.nav-links a {
		color: #1d4c1c;
		text-decoration: none;
		font-weight: 600;
		text-transform: uppercase;
		font-size: 11.5px;
		letter-spacing: 1px;
		transition: color 0.2s;
	}

		.nav-links a:hover {
			color: var(--gold-bright);
		}

.nav-cta {
	background: linear-gradient(135deg, var(--gold-main), var(--gold-bright));
	color: var(--green-deep) !important;
	padding: 9px 20px;
	border-radius: 24px;
	font-weight: 700 !important;
	transition: transform 0.2s, box-shadow 0.2s !important;
}

	.nav-cta:hover {
		transform: translateY(-1px);
		box-shadow: 0 4px 16px rgba(201,152,10,0.4);
	}

.hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	padding: 5px;
}

	.hamburger span {
		display: block;
		width: 24px;
		height: 2px;
		background: var(--gold-bright);
		border-radius: 2px;
		transition: 0.3s;
	}

/* HERO */
.hero {
	min-height: 100vh;
	background: linear-gradient(135deg, var(--green-main) 0%, var(--green-mid) 50%, var(--green-light) 100%);
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	padding: 100px 5% 60px;
}

	.hero::before {
		content: '';
		position: absolute;
		inset: 0;
		background-image: radial-gradient(circle at 20% 50%, rgba(201,152,10,0.08) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(74,158,92,0.15) 0%, transparent 40%), radial-gradient(circle at 60% 80%, rgba(201,152,10,0.06) 0%, transparent 40%);
	}

.hero-pattern {
	position: absolute;
	inset: 0;
	opacity: 0.04;
	background-image: 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='%23d4a017' fill-opacity='1'%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");
}

.hero-inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(201,152,10,0.15);
	border: 1px solid rgba(201,152,10,0.4);
	color: var(--gold-bright);
	padding: 6px 16px;
	border-radius: 24px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	margin-bottom: 24px;
}

.hero-title {
	font-family: 'Playfair Display', serif;
	font-size: clamp(36px, 5vw, 62px);
	font-weight: 700;
	color: var(--white);
	line-height: 1.15;
	margin-bottom: 20px;
}

	.hero-title .gold {
		color: var(--gold-bright);
	}

	.hero-title em {
		font-style: italic;
		color: #9fd4ac;
	}

.hero-sub {
	font-size: 16px;
	color: #9fd4ac;
	line-height: 1.75;
	margin-bottom: 36px;
	font-weight: 300;
	max-width: 480px;
}

.hero-btns {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.btn-primary {
	background: linear-gradient(135deg, var(--gold-main), var(--gold-bright));
	color: var(--green-deep);
	padding: 14px 32px;
	border-radius: 32px;
	font-weight: 700;
	font-size: 14px;
	text-decoration: none;
	letter-spacing: 0.5px;
	transition: transform 0.2s, box-shadow 0.2s;
	display: inline-block;
}

	.btn-primary:hover {
		transform: translateY(-2px);
		box-shadow: 0 8px 28px rgba(201,152,10,0.45);
	}

.btn-outline {
	border: 2px solid rgba(255,255,255,0.35);
	color: var(--white);
	padding: 13px 28px;
	border-radius: 32px;
	font-weight: 600;
	font-size: 14px;
	text-decoration: none;
	transition: border-color 0.2s, background 0.2s;
	display: inline-block;
}

	.btn-outline:hover {
		border-color: var(--gold-bright);
		background: rgba(201,152,10,0.1);
	}

.hero-stats {
	display: flex;
	gap: 32px;
	margin-top: 48px;
}

.stat-item {
	text-align: center;
}

.stat-num {
	font-family: 'Playfair Display', serif;
	font-size: 32px;
	font-weight: 700;
	color: var(--gold-bright);
	display: block;
}

.stat-label {
	font-size: 11px;
	color: #7aab83;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.stat-div {
	width: 1px;
	background: rgba(255,255,255,0.15);
	align-self: stretch;
}

.hero-right {
	position: relative;
}

.hero-img-wrap {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 32px 80px rgba(0,0,0,0.4);
}

	.hero-img-wrap img {
		width: 100%;
		height: 500px;
		object-fit: cover;
		display: block;
	}

.hero-img-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(13,59,30,0.6) 0%, transparent 60%);
}

.hero-card-float {
	position: absolute;
	bottom: 24px;
	left: 24px;
	right: 24px;
	background: rgba(255,255,255,0.12);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(255,255,255,0.2);
	border-radius: 14px;
	padding: 16px 20px;
	display: flex;
	align-items: center;
	gap: 14px;
}

.float-icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--gold-main), var(--gold-bright));
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	flex-shrink: 0;
}

.float-text strong {
	display: block;
	color: var(--white);
	font-size: 14px;
	font-weight: 700;
}

.float-text span {
	color: rgba(255,255,255,0.7);
	font-size: 12px;
}

/* SECTIONS */
section {
	padding: 88px 5%;
}

.section-label {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: var(--gold-main);
	margin-bottom: 12px;
}

.section-title {
	font-family: 'Playfair Display', serif;
	font-size: clamp(28px, 4vw, 46px);
	font-weight: 700;
	color: var(--green-deep);
	line-height: 1.2;
	margin-bottom: 16px;
}

	.section-title span {
		color: var(--gold-main);
	}

.section-sub {
	font-size: 16px;
	color: var(--text-muted);
	line-height: 1.75;
	max-width: 560px;
}

.section-header {
	margin-bottom: 56px;
}

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

	.text-center .section-sub {
		margin: 0 auto;
	}

/* ABOUT STRIP */
.about-strip {
	background: var(--cream);
	padding: 56px 5%;
	display: flex;
	align-items: center;
	gap: 60px;
	flex-wrap: wrap;
}

.strip-img {
	flex: 1;
	min-width: 300px;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

	.strip-img img {
		width: 100%;
		/*height: 380px;*/
		/*object-fit: cover;*/
		display: block;
	}

.strip-content {
	flex: 1;
	min-width: 280px;
}

	.strip-content .section-title {
		color: var(--text-dark);
	}

	.strip-content .section-sub {
		color: var(--text-mid);
	}

	.strip-content .section-label {
		color: var(--green-mid);
	}

.feature-list {
	list-style: none;
	margin-top: 28px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

	.feature-list li {
		display: flex;
		align-items: flex-start;
		gap: 12px;
		color: var(--text-mid);
		font-size: 15px;
	}

		.feature-list li::before {
			content: '✦';
			color: var(--gold-main);
			flex-shrink: 0;
			font-size: 12px;
			margin-top: 3px;
		}

/* SERVICES */
.services {
	background: var(--cream);
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 28px;
}

.service-card {
	background: var(--white);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 4px 24px var(--shadow);
	transition: transform 0.3s, box-shadow 0.3s;
	border: 1px solid rgba(212,200,154,0.3);
}

	.service-card:hover {
		transform: translateY(-6px);
		box-shadow: 0 16px 48px rgba(13,59,30,0.18);
	}

.service-img {
	height: 210px;
	overflow: hidden;
	position: relative;
}

	.service-img img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: transform 0.5s;
	}

.service-card:hover .service-img img {
	transform: scale(1.06);
}

.service-tag {
	position: absolute;
	top: 14px;
	left: 14px;
	background: var(--gold-main);
	color: var(--white);
	font-size: 10px;
	font-weight: 700;
	padding: 4px 12px;
	border-radius: 20px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.service-body {
	padding: 24px;
}

	.service-body h3 {
		font-family: 'Playfair Display', serif;
		font-size: 20px;
		font-weight: 700;
		color: var(--green-deep);
		margin-bottom: 10px;
	}

	.service-body p {
		font-size: 14px;
		color: var(--text-muted);
		line-height: 1.7;
		margin-bottom: 16px;
	}

.service-link {
	color: var(--green-mid);
	font-weight: 700;
	font-size: 13px;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	letter-spacing: 0.3px;
	transition: color 0.2s;
}

	.service-link:hover {
		color: var(--gold-main);
	}

	.service-link::after {
		content: '→';
	}

/* AYURVEDA BANNER */
.ayur-banner {
	background: linear-gradient(135deg, var(--green-main), var(--green-deep));
	padding: 80px 5%;
	position: relative;
	overflow: hidden;
}

	.ayur-banner::before {
		content: '';
		position: absolute;
		top: -100px;
		right: -100px;
		width: 400px;
		height: 400px;
		border-radius: 50%;
		background: rgba(201,152,10,0.08);
	}

.ayur-banner-inner {
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.ayur-left .section-label {
	color: var(--gold-bright);
}

.ayur-left .section-title {
	color: var(--white);
}

.ayur-left .section-sub {
	color: #9fd4ac;
}

.dosha-cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-top: 28px;
}

.dosha-card {
	background: rgba(255,255,255,0.07);
	border: 1px solid rgba(201,152,10,0.25);
	border-radius: 14px;
	padding: 20px 18px;
	text-align: center;
}

	.dosha-card .emoji {
		font-size: 28px;
		display: block;
		margin-bottom: 8px;
	}

	.dosha-card h4 {
		font-family: 'Playfair Display', serif;
		font-size: 16px;
		color: var(--gold-bright);
		margin-bottom: 6px;
	}

	.dosha-card p {
		font-size: 12px;
		color: #7aab83;
		line-height: 1.6;
	}

.ayur-right img {
	width: 100%;
	border-radius: 20px;
	height: 420px;
	object-fit: cover;
	box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

/* NPS SECTION */
.nps-section {
	background: var(--gold-pale);
	border-top: 3px solid var(--gold-light);
	border-bottom: 3px solid var(--gold-light);
}

.nps-inner {
	max-width: 1100px;
	margin: 0 auto;
}

.nps-hero-strip {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	margin-bottom: 56px;
}

	.nps-hero-strip img {
		width: 100%;
		border-radius: 20px;
		box-shadow: 0 16px 56px rgba(139,105,20,0.25);
	}

.nps-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 20px;
}

.nps-card {
	background: var(--white);
	border-radius: 16px;
	padding: 28px 24px;
	box-shadow: 0 4px 20px rgba(139,105,20,0.1);
	border-top: 4px solid var(--gold-main);
	text-align: center;
	transition: transform 0.2s;
}

	.nps-card:hover {
		transform: translateY(-4px);
	}

.nps-card-icon {
	width: 56px;
	height: 56px;
	border-radius: 16px;
	background: linear-gradient(135deg, var(--gold-main), var(--gold-bright));
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	margin: 0 auto 16px;
}

.nps-card h4 {
	font-family: 'Playfair Display', serif;
	font-size: 16px;
	color: var(--green-deep);
	margin-bottom: 10px;
	font-weight: 700;
}

.nps-card p {
	font-size: 13.5px;
	color: var(--text-muted);
	line-height: 1.65;
}

.nps-highlight {
	background: linear-gradient(135deg, var(--gold-deep), var(--gold-main));
	border-radius: 20px;
	padding: 48px;
	margin-top: 40px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
}

.nps-highlight-left h3 {
	font-family: 'Playfair Display', serif;
	font-size: 26px;
	color: var(--white);
	margin-bottom: 14px;
}

.nps-highlight-left p {
	color: rgba(255,255,255,0.85);
	font-size: 15px;
	line-height: 1.75;
}

.nps-tiers {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.tier-row {
	display: flex;
	align-items: center;
	gap: 14px;
	background: rgba(255,255,255,0.12);
	border-radius: 12px;
	padding: 14px 18px;
	border: 1px solid rgba(255,255,255,0.25);
}

.tier-icon {
	font-size: 24px;
	flex-shrink: 0;
}

.tier-info strong {
	display: block;
	color: var(--white);
	font-size: 14px;
	margin-bottom: 3px;
}

.tier-info span {
	font-size: 12.5px;
	color: rgba(255,255,255,0.75);
}

/* TREATMENTS */
.treatments {
	background: var(--blue-pale);
}

.treat-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 24px;
}

.treat-item {
	background: var(--white);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 2px 16px var(--shadow);
	transition: transform 0.3s;
}

	.treat-item:hover {
		transform: translateY(-4px);
	}

.treat-img {
	height: 180px;
	overflow: hidden;
}

	.treat-img img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: transform 0.5s;
	}

.treat-item:hover .treat-img img {
	transform: scale(1.08);
}

.treat-body {
	padding: 20px;
}

	.treat-body h4 {
		font-family: 'Playfair Display', serif;
		font-size: 17px;
		color: var(--green-deep);
		margin-bottom: 8px;
	}

	.treat-body p {
		font-size: 13px;
		color: var(--text-muted);
		line-height: 1.65;
	}

/* TESTIMONIALS */
.testimonials {
	background: var(--white);
}

.testi-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 28px;
}

.testi-card {
	background: var(--cream);
	border-radius: 20px;
	padding: 32px;
	border: 1px solid rgba(212,200,154,0.4);
	position: relative;
}

	.testi-card::before {
		content: '"';
		position: absolute;
		top: 20px;
		right: 28px;
		font-family: 'Playfair Display', serif;
		font-size: 80px;
		color: var(--gold-light);
		line-height: 1;
	}

.stars {
	color: var(--gold-main);
	font-size: 16px;
	margin-bottom: 16px;
	letter-spacing: 2px;
}

.testi-card p {
	color: var(--text-mid);
	line-height: 1.8;
	margin-bottom: 24px;
	font-style: italic;
	font-family: 'Cormorant Garamond', serif;
	font-size: 17px;
}

.testi-person {
	display: flex;
	align-items: center;
	gap: 14px;
}

.testi-avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid var(--gold-light);
}

.testi-person strong {
	display: block;
	color: var(--green-deep);
	font-size: 14px;
	font-weight: 700;
}

.testi-person span {
	font-size: 12px;
	color: var(--text-muted);
}

/* CONTACT */
.contact {
	background: var(--navy-deep);
}

	.contact .section-title {
		color: var(--white);
	}

	.contact .section-sub {
		color: var(--blue-light);
	}

	.contact .section-label {
		color: var(--gold-bright);
	}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
	margin-top: 48px;
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.contact-row {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.c-icon {
	width: 48px;
	height: 48px;
	border-radius: 14px;
	background: rgba(201,152,10,0.15);
	border: 1px solid rgba(201,152,10,0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	flex-shrink: 0;
}

.c-text strong {
	display: block;
	color: var(--gold-bright);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.5px;
	margin-bottom: 4px;
}

.c-text span {
	font-size: 15px;
	color: var(--blue-light);
}

.contact-form {
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: 20px;
	padding: 36px;
}

	.contact-form h3 {
		font-family: 'Playfair Display', serif;
		font-size: 22px;
		color: var(--white);
		margin-bottom: 24px;
	}

.form-group {
	margin-bottom: 18px;
}

	.form-group label {
		display: block;
		font-size: 12px;
		color: var(--gold-light);
		font-weight: 600;
		letter-spacing: 0.5px;
		margin-bottom: 8px;
	}

	.form-group input, .form-group select, .form-group textarea {
		width: 100%;
		background: rgba(255,255,255,0.07);
		border: 1px solid rgba(255,255,255,0.15);
		border-radius: 10px;
		padding: 12px 16px;
		color: var(--white);
		font-size: 14px;
		font-family: 'Nunito', sans-serif;
		outline: none;
		transition: border-color 0.2s;
	}

		.form-group input::placeholder, .form-group textarea::placeholder {
			color: rgba(255,255,255,0.3);
		}

		.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
			border-color: var(--gold-main);
		}

		.form-group select option {
			background: var(--navy-deep);
			color: var(--white);
		}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

.btn-submit {
	width: 100%;
	background: linear-gradient(135deg, var(--gold-main), var(--gold-bright));
	color: var(--green-deep);
	border: none;
	padding: 14px;
	border-radius: 12px;
	font-size: 15px;
	font-weight: 800;
	cursor: pointer;
	font-family: 'Nunito', sans-serif;
	letter-spacing: 0.5px;
	transition: transform 0.2s, box-shadow 0.2s;
	margin-top: 6px;
}

	.btn-submit:hover {
		transform: translateY(-2px);
		box-shadow: 0 8px 24px rgba(201,152,10,0.4);
	}

/* FOOTER */
footer {
	background: #0a1f2c;
	padding: 56px 5% 28px;
	border-top: 2px solid var(--gold-deep);
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 48px;
	margin-bottom: 48px;
}

.footer-brand img {
	height: 64px;
	width: 64px;
	border-radius: 50%;
	border: 2px solid var(--gold-main);
	margin-bottom: 16px;
}

.footer-brand p {
	font-size: 13.5px;
	color: #5a7a5e;
	line-height: 1.7;
	margin-bottom: 20px;
	max-width: 280px;
}

.social-links {
	display: flex;
	gap: 10px;
}

.social-link {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: rgba(201,152,10,0.1);
	border: 1px solid rgba(201,152,10,0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gold-main);
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	transition: background 0.2s;
}

	.social-link:hover {
		background: rgba(201,152,10,0.25);
	}

.footer-col h4 {
	font-family: 'Playfair Display', serif;
	font-size: 15px;
	color: var(--gold-bright);
	margin-bottom: 20px;
	font-weight: 700;
}

.footer-col ul {
	list-style: none;
}

.footer-col li {
	margin-bottom: 10px;
}

.footer-col a {
	color: #5a7a5e;
	font-size: 13.5px;
	text-decoration: none;
	transition: color 0.2s;
}

	.footer-col a:hover {
		color: var(--gold-light);
	}

.footer-bottom {
	border-top: 1px solid rgba(90,122,94,0.2);
	padding-top: 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
}

	.footer-bottom p {
		font-size: 12.5px;
		color: #3d5c41;
	}

.footer-tagline {
	font-family: 'Playfair Display', serif;
	font-size: 13px;
	color: var(--gold-deep);
	font-style: italic;
}

/* REVEAL */
.reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* MOBILE MENU */
.mobile-menu {
	display: none;
	position: fixed;
	top: 72px;
	left: 0;
	right: 0;
	background: var(--white);
	border-bottom: 2px solid var(--gold-main);
	padding: 20px 5%;
	z-index: 999;
	flex-direction: column;
	gap: 16px;
}

	.mobile-menu.open {
		display: flex;
	}

	.mobile-menu a {
		color: var(--text-dark);
		font-size: 14px;
		text-decoration: none;
		font-weight: 600;
		padding: 10px 0;
		border-bottom: 1px solid var(--border);
		text-transform: uppercase;
		letter-spacing: 1px;
	}

		.mobile-menu a:last-child {
			border-bottom: none;
		}

/* RESPONSIVE */
@media (max-width: 900px) {
	.hero-inner {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.hero-right {
		display: none;
	}

	.nps-hero-strip {
		grid-template-columns: 1fr;
	}

		.nps-hero-strip img {
			height: 280px;
		}

	.nps-highlight {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.contact-grid {
		grid-template-columns: 1fr;
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 32px;
	}

	.ayur-banner-inner {
		grid-template-columns: 1fr;
	}

	.ayur-right {
		display: none;
	}

	.about-strip {
		flex-direction: column;
	}
}

@media (max-width: 640px) {
	.nav-links {
		display: none;
	}

	.hamburger {
		display: flex;
	}

	section {
		padding: 60px 4%;
	}

	.hero {
		padding: 90px 4% 50px;
	}

	.hero-stats {
		gap: 20px;
	}

	.hero-btns {
		flex-direction: column;
		align-items: flex-start;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.form-row {
		grid-template-columns: 1fr;
	}

	.dosha-cards {
		grid-template-columns: 1fr 1fr;
	}

	.nps-highlight {
		padding: 28px 20px;
	}

	.contact-form {
		padding: 24px 20px;
	}
}


/* PRODUCTS / COMING SOON */
.products-section {
	padding: 90px 8%;
	background: var(--cream);
}
.coming-soon-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	margin: 50px 0 80px;
}
.coming-soon-box {
	position: relative;
	background: var(--white);
	border: 1px dashed var(--border);
	border-radius: 18px;
	padding: 40px 28px;
	text-align: center;
	box-shadow: 0 10px 30px var(--shadow);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.coming-soon-box:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 36px var(--shadow);
}
.cs-icon {
	font-size: 42px;
	margin-bottom: 16px;
}
.cs-badge {
	display: inline-block;
	background: var(--gold-pale);
	color: var(--gold-deep);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	padding: 5px 14px;
	border-radius: 30px;
	margin-bottom: 14px;
}
.coming-soon-box h4 {
	font-family: 'Playfair Display', serif;
	font-size: 20px;
	color: var(--green-deep);
	margin-bottom: 10px;
}
.coming-soon-box p {
	font-size: 14px;
	color: var(--text-muted);
	line-height: 1.7;
}

/* WHY CHOOSE US */
.why-choose {
	margin-top: 20px;
}
.why-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin-top: 50px;
}
.why-item {
	background: var(--white);
	border-radius: 16px;
	padding: 32px 22px;
	text-align: center;
	box-shadow: 0 8px 24px var(--shadow);
	border-top: 3px solid var(--gold-main);
	transition: transform 0.3s ease;
}
.why-item:hover {
	transform: translateY(-6px);
}
.why-icon {
	font-size: 36px;
	margin-bottom: 14px;
}
.why-item h4 {
	font-family: 'Playfair Display', serif;
	font-size: 17px;
	color: var(--green-deep);
	margin-bottom: 10px;
}
.why-item p {
	font-size: 13.5px;
	color: var(--text-muted);
	line-height: 1.7;
}

@media (max-width: 900px) {
	.coming-soon-grid {
		grid-template-columns: 1fr;
	}
	.why-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 520px) {
	.why-grid {
		grid-template-columns: 1fr;
	}
}
