:root {
	--cream: #eaf5ef;
	/* soft mint cream background */
	--cream-deep: #c9e3d4;
	/* deeper mint */
	--mint: #65c19c;
	/* signature brand mint */
	--terracotta: #541d5e;
	/* deep purple (primary accent) */
	--terracotta-deep: #3d1545;
	/* darker purple */
	--rust: #275028;
	/* dark forest green */
	--moss: #275028;
	/* dark forest green (same as rust) */
	--ink: #1a3a1c;
	/* near-black green for body text */
	--mustard: #65c19c;
	/* mint accent */
	--rose: #8c4a99;
	/* lighter purple */
	--shadow: rgba(39, 80, 40, 0.1);
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	background: var(--cream);
	color: var(--ink);
	font-family: 'Nunito', sans-serif;
	font-weight: 400;
	line-height: 1.6;
	overflow-x: hidden;
	background-image:
		radial-gradient(circle at 20% 20%, rgba(101, 193, 156, 0.15) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(84, 29, 94, 0.06) 0%, transparent 50%);
}

/* Grain overlay */
body::before {
	content: '';
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 1;
	opacity: 0.3;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.2 0 0 0 0 0.1 0 0 0 0.08 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.display {
	font-family: 'Fraunces', serif;
	font-weight: 400;
	letter-spacing: -0.02em;
}

.mono {
	font-family: 'DM Mono', monospace;
}

/* Floating WhatsApp Book Now button */
.float-book {
	position: fixed;
	bottom: 1.5rem;
	right: 1.5rem;
	z-index: 99;
	background: #25D366;
	color: #fff;
	text-decoration: none;
	padding: 0.9rem 1.4rem;
	border-radius: 999px;
	display: flex;
	align-items: center;
	gap: 0.6rem;
	font-family: 'Nunito', sans-serif;
	font-weight: 600;
	font-size: 0.9rem;
	letter-spacing: 0.04em;
	box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35), 0 4px 10px rgba(0, 0, 0, 0.15);
	transition: transform 0.2s, box-shadow 0.2s;
	animation: pulse-in 0.6s ease-out 1.2s backwards;
}

.float-book:hover {
	transform: translateY(-3px) scale(1.04);
	box-shadow: 0 14px 32px rgba(37, 211, 102, 0.45), 0 6px 14px rgba(0, 0, 0, 0.2);
}

@keyframes pulse-in {
	from {
		opacity: 0;
		transform: translateY(20px) scale(0.8);
	}

	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@media (max-width: 600px) {
	.float-book span {
		display: none;
	}

	.float-book {
		padding: 1rem;
	}
}

/* Brand symbols */

/* NAV */
nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	padding: 1.25rem 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: rgba(244, 235, 220, 0.85);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(42, 31, 23, 0.08);
}

.logo {
	font-family: 'Fraunces', serif;
	font-size: 1.5rem;
	font-style: italic;
	font-weight: 500;
	color: var(--terracotta);
	letter-spacing: -0.02em;
	text-decoration: none;
}

.logo span {
	color: var(--rust);
	font-style: normal;
	font-weight: 400;
}

.nav-links {
	display: flex;
	gap: 2rem;
	align-items: center;
}

.nav-links a {
	color: var(--ink);
	text-decoration: none;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	transition: color 0.2s;
}

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

.cart-btn {
	background: var(--ink);
	color: var(--cream);
	padding: 0.6rem 1.2rem;
	border-radius: 999px;
	font-size: 0.8rem !important;
	letter-spacing: 0.1em !important;
}

.cart-btn:hover {
	background: var(--terracotta-deep) !important;
	color: var(--cream) !important;
}

/* HERO */
.hero {
	position: relative;
	min-height: 80vh;
	padding: 9rem 2rem 5rem;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	z-index: 2;
	max-width: 1100px;
	margin: 0 auto;
}

.hero-text {
	position: relative;
	max-width: 38rem;
}

.eyebrow {
	display: inline-block;
	font-size: 0.75rem;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--rust);
	margin-bottom: 1.5rem;
	padding: 0.4rem 0.9rem;
	border: 1px solid var(--rust);
	border-radius: 999px;
}

.hero h1 {
	font-family: 'Fraunces', serif;
	font-size: clamp(3rem, 8vw, 6.5rem);
	line-height: 0.95;
	font-weight: 300;
	margin-bottom: 1.5rem;
	color: var(--ink);
}

.hero h1 em {
	font-style: italic;
	color: var(--terracotta);
	font-weight: 400;
}

.hero h1 .underline {
	position: relative;
	display: inline-block;
}

.hero h1 .underline::after {
	content: '';
	position: absolute;
	bottom: 0.1em;
	left: -2%;
	right: -2%;
	height: 0.15em;
	background: var(--mustard);
	z-index: -1;
	opacity: 0.6;
}

.hero p {
	font-size: 1.15rem;
	max-width: 30rem;
	margin-bottom: 2.5rem;
	color: rgba(42, 31, 23, 0.8);
}

.hero-cta {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.btn {
	display: inline-block;
	padding: 1rem 1.8rem;
	border-radius: 999px;
	font-size: 0.9rem;
	text-decoration: none;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	transition: transform 0.2s, box-shadow 0.2s;
	cursor: pointer;
	border: none;
	font-family: 'Nunito', sans-serif;
	font-weight: 600;
}

.btn-primary {
	background: var(--terracotta);
	color: var(--cream);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(199, 90, 60, 0.25);
}

.btn-secondary {
	background: transparent;
	color: var(--ink);
	border: 1.5px solid var(--ink);
}

.btn-secondary:hover {
	background: var(--ink);
	color: var(--cream);
}

/* Hero visual */
.hero-visual {
	position: relative;
	height: 70vh;
	min-height: 500px;
}

.floating-tag {
	position: absolute;
	background: var(--cream);
	padding: 0.6rem 1rem;
	border-radius: 999px;
	font-size: 0.75rem;
	font-family: 'DM Mono', monospace;
	letter-spacing: 0.05em;
	box-shadow: 0 4px 12px var(--shadow);
	z-index: 4;
}

.tag-1 {
	top: 8%;
	left: -2%;
	color: var(--rust);
}

.tag-2 {
	bottom: 20%;
	right: 0%;
	color: var(--moss);
}

/* MARQUEE */
.marquee {
	background: var(--rust);
	color: var(--cream);
	overflow: hidden;
	padding: 1.2rem 0;
	border-top: 1px solid var(--mint);
	border-bottom: 1px solid var(--mint);
	position: relative;
	z-index: 2;
}

.marquee-track {
	display: flex;
	gap: 3rem;
	white-space: nowrap;
	animation: scroll 30s linear infinite;
	font-family: 'Fraunces', serif;
	font-style: italic;
	font-size: 1.4rem;
}

.marquee-track span {
	display: flex;
	align-items: center;
	gap: 3rem;
}

.marquee-track .dot {
	color: var(--mint);
}

@keyframes scroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

/* SECTION HEADERS */
section {
	position: relative;
	z-index: 2;
}

.section-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 3rem;
	flex-wrap: wrap;
	gap: 1rem;
}

.section-num {
	font-family: 'DM Mono', monospace;
	font-size: 0.85rem;
	color: var(--rust);
	letter-spacing: 0.1em;
	margin-bottom: 0.5rem;
}

.section-title {
	font-family: 'Fraunces', serif;
	font-size: clamp(2.2rem, 5vw, 4rem);
	line-height: 1;
	font-weight: 300;
	max-width: 24rem;
}

.section-title em {
	font-style: italic;
	color: var(--terracotta);
}

.section-aside {
	max-width: 22rem;
	color: rgba(42, 31, 23, 0.7);
}

/* SHOP */
.shop {
	padding: 7rem 2rem 5rem;
	max-width: 1400px;
	margin: 0 auto;
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 2rem;
}

.product {
	background: var(--cream-deep);
	border-radius: 18px;
	overflow: hidden;
	cursor: pointer;
	transition: transform 0.3s, box-shadow 0.3s;
	position: relative;
}

.product:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 40px var(--shadow);
}

.product-img {
	aspect-ratio: 1 / 1;
	width: 100%;
	position: relative;
	overflow: hidden;
}

.product-img svg {
	width: 100%;
	height: 100%;
	display: block;
}

.product-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.product:hover .product-img img {
	transform: scale(1.05);
}

.ship {
	display: block;
	font-family: 'Nunito', sans-serif;
	font-size: 0.7rem;
	color: rgba(42, 31, 23, 0.55);
	font-weight: 400;
	letter-spacing: 0.02em;
	margin-top: 2px;
}

.product-badge {
	position: absolute;
	top: 1rem;
	left: 1rem;
	background: var(--cream);
	color: var(--ink);
	font-family: 'DM Mono', monospace;
	font-size: 0.7rem;
	padding: 0.3rem 0.7rem;
	border-radius: 999px;
	letter-spacing: 0.05em;
}

.product-info {
	padding: 1.3rem 1.5rem 1.5rem;
}

.product-name {
	font-family: 'Fraunces', serif;
	font-size: 1.35rem;
	font-weight: 400;
	margin-bottom: 0.3rem;
}

.product-meta {
	font-size: 0.85rem;
	color: rgba(42, 31, 23, 0.6);
	margin-bottom: 0.45rem;
}

.product-description {
	font-size: 0.9rem;
	color: rgba(42, 31, 23, 0.72);
	margin-bottom: 0.8rem;
}

.product-bottom {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 1rem;
}

.product-price {
	font-family: 'Fraunces', serif;
	font-size: 1.3rem;
	color: var(--rust);
	line-height: 1.1;
	min-width: 0;
}

.price-line {
	display: flex;
	align-items: baseline;
	gap: 0.4rem;
	white-space: nowrap;
}

.price-current {
	display: inline-block;
}

.price-original {
	font-family: 'Nunito', sans-serif;
	font-size: 0.85rem;
	color: rgba(42, 31, 23, 0.45);
	text-decoration: line-through;
	font-weight: 400;
}

.price-discount {
	display: block;
	width: fit-content;
	background: #e8f5e9;
	color: #2e7d32;
	font-family: 'DM Mono', monospace;
	font-size: 0.65rem;
	padding: 0.15rem 0.5rem;
	border-radius: 999px;
	margin-top: 0.4rem;
	letter-spacing: 0.04em;
}

/* Buy Now pill button */
.buy-btn {
	background: var(--terracotta);
	color: var(--cream);
	text-decoration: none;
	padding: 0.6rem 1.2rem;
	border-radius: 999px;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-family: 'Nunito', sans-serif;
	transition: background 0.2s, transform 0.2s;
	flex-shrink: 0;
}

.buy-btn:hover {
	background: var(--terracotta-deep);
	transform: translateY(-2px);
}

/* Order info block (How to order) */
.order-info {
	margin-top: 4rem;
	background: var(--cream-deep);
	border-radius: 24px;
	padding: 3rem 2.5rem;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2.5rem;
	position: relative;
	overflow: hidden;
}

.order-info::before {
	content: 'How to order';
	position: absolute;
	top: 1rem;
	right: 1.5rem;
	font-family: 'DM Mono', monospace;
	font-size: 0.7rem;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--rust);
	opacity: 0.5;
}

.order-step .step-num {
	font-family: 'Fraunces', serif;
	font-size: 2rem;
	color: var(--terracotta);
	line-height: 1;
	margin-bottom: 0.8rem;
}

.order-step h4 {
	font-family: 'Fraunces', serif;
	font-size: 1.3rem;
	font-weight: 400;
	margin-bottom: 0.5rem;
	color: var(--ink);
}

.order-step p {
	font-size: 0.95rem;
	color: rgba(26, 58, 28, 0.75);
	line-height: 1.6;
	margin-bottom: 1rem;
}

.upi-block {
	background: var(--cream);
	padding: 0.7rem 1rem;
	border-radius: 10px;
	margin: 0.8rem 0;
	border: 1.5px dashed var(--terracotta);
}

.upi-label {
	display: block;
	font-family: 'DM Mono', monospace;
	font-size: 0.65rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--rust);
	opacity: 0.7;
	margin-bottom: 0.2rem;
}

.upi-id {
	font-family: 'DM Mono', monospace;
	font-size: 0.95rem;
	color: var(--terracotta);
	font-weight: 500;
	word-break: break-all;
}

.upi-link {
	display: inline-block;
	color: var(--terracotta);
	text-decoration: none;
	font-size: 0.85rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	border-bottom: 1.5px solid var(--terracotta);
	padding-bottom: 2px;
	transition: color 0.2s;
}

.upi-link:hover {
	color: var(--terracotta-deep);
}

@media (max-width: 800px) {
	.order-info {
		grid-template-columns: 1fr;
		gap: 2rem;
		padding: 2.5rem 1.5rem;
	}
}

/* WORKSHOPS */
.workshops {
	background: var(--rust);
	color: var(--cream);
	padding: 6rem 2rem;
	position: relative;
	overflow: hidden;
}

.workshops::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 70% 30%, rgba(101, 193, 156, 0.15), transparent 60%);
	pointer-events: none;
}

.workshops-inner {
	max-width: 1400px;
	margin: 0 auto;
	position: relative;
}

.workshops .section-title {
	color: var(--cream);
}

.workshops .section-title em {
	color: var(--mustard);
}

.workshops .section-num {
	color: var(--mustard);
}

.workshops .section-aside {
	color: rgba(244, 235, 220, 0.7);
}

.workshop-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 1.5rem;
}

.workshop-card {
	background: rgba(244, 235, 220, 0.05);
	border: 1px solid rgba(244, 235, 220, 0.15);
	border-radius: 18px;
	padding: 2rem;
	transition: background 0.3s, border-color 0.3s;
	position: relative;
}

.workshop-card:hover {
	background: rgba(199, 90, 60, 0.12);
	border-color: var(--terracotta);
}

.workshop-date {
	font-family: 'DM Mono', monospace;
	font-size: 0.85rem;
	color: var(--mustard);
	margin-bottom: 1rem;
	letter-spacing: 0.05em;
}

.workshop-name {
	font-family: 'Fraunces', serif;
	font-size: 1.6rem;
	font-weight: 400;
	margin-bottom: 0.5rem;
}

.workshop-venue {
	font-size: 0.95rem;
	color: rgba(244, 235, 220, 0.7);
	margin-bottom: 1.5rem;
}

.workshop-details {
	display: flex;
	gap: 1.5rem;
	margin-bottom: 1.5rem;
	font-size: 0.85rem;
	color: rgba(244, 235, 220, 0.85);
}

.workshop-details span::before {
	content: '◦ ';
	color: var(--mustard);
}

.workshop-cta {
	display: inline-block;
	color: var(--cream);
	text-decoration: none;
	font-size: 0.85rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	border-bottom: 1px solid var(--mustard);
	padding-bottom: 2px;
	transition: color 0.2s;
}

.workshop-cta:hover {
	color: var(--mustard);
}

.workshop-cta::after {
	content: ' →';
}

.workshop-note {
	margin-top: 3rem;
	padding: 1.8rem 2rem;
	background: rgba(155, 194, 74, 0.08);
	border-left: 3px solid var(--mustard);
	border-radius: 0 12px 12px 0;
	font-size: 0.98rem;
	line-height: 1.7;
	color: rgba(244, 235, 220, 0.85);
	max-width: 60rem;
}

.workshop-note .note-label {
	display: block;
	font-family: 'DM Mono', monospace;
	font-size: 0.75rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--mustard);
	margin-bottom: 0.6rem;
}

/* STORY */
.story {
	padding: 7rem 2rem;
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 4rem;
	align-items: center;
}

.story-visual {
	position: relative;
	aspect-ratio: 4 / 5;
	border-radius: 200px 200px 12px 12px;
	overflow: hidden;
	background: var(--cream-deep);
	box-shadow: 0 30px 60px var(--shadow);
}

.story-visual svg {
	width: 100%;
	height: 100%;
}

.story-text h2 {
	font-family: 'Fraunces', serif;
	font-size: clamp(2.2rem, 4.5vw, 3.5rem);
	line-height: 1.05;
	font-weight: 300;
	margin-bottom: 1.5rem;
}

.story-text h2 em {
	font-style: italic;
	color: var(--terracotta);
}

.story-text p {
	font-size: 1.05rem;
	color: rgba(42, 31, 23, 0.8);
	margin-bottom: 1.2rem;
	max-width: 32rem;
}

.story-stats {
	display: flex;
	gap: 2.5rem;
	margin-top: 2rem;
	flex-wrap: wrap;
}

.stat-num {
	font-family: 'Fraunces', serif;
	font-size: 2.5rem;
	color: var(--terracotta);
	line-height: 1;
}

.stat-label {
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: rgba(42, 31, 23, 0.6);
	margin-top: 0.3rem;
}

/* CONTACT */
.contact {
	background: var(--terracotta);
	color: var(--cream);
	padding: 6rem 2rem;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.contact::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 30% 70%, rgba(212, 162, 74, 0.2), transparent 50%);
}

.contact-inner {
	position: relative;
	max-width: 700px;
	margin: 0 auto;
}

.contact-info {
	display: flex;
	justify-content: center;
	gap: 4rem;
	margin: 2.5rem 0;
	flex-wrap: wrap;
}

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

.info-label {
	font-family: 'DM Mono', monospace;
	font-size: 0.75rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	opacity: 0.7;
	margin-bottom: 0.6rem;
}

.info-value {
	font-family: 'Fraunces', serif;
	font-size: 1.15rem;
	line-height: 1.4;
}

.contact h2 {
	font-family: 'Fraunces', serif;
	font-size: clamp(2.5rem, 6vw, 4.5rem);
	line-height: 1;
	font-weight: 300;
	margin-bottom: 1.5rem;
}

.contact h2 em {
	font-style: italic;
}

.contact p {
	font-size: 1.1rem;
	margin-bottom: 2.5rem;
	opacity: 0.9;
}

.contact-links {
	display: flex;
	gap: 2rem;
	justify-content: center;
	flex-wrap: wrap;
}

.contact-links a {
	color: var(--cream);
	text-decoration: none;
	border-bottom: 1px solid var(--cream);
	padding-bottom: 4px;
	font-size: 1rem;
	transition: color 0.2s, border-color 0.2s;
}

.contact-links a:hover {
	color: var(--mustard);
	border-color: var(--mustard);
}

/* FOOTER */
footer {
	background: var(--rust);
	color: rgba(234, 245, 239, 0.7);
	padding: 2.5rem 2rem;
	text-align: center;
	font-size: 0.85rem;
	position: relative;
	z-index: 2;
}

footer span {
	color: var(--mint);
}

/* RESPONSIVE */
@media (max-width: 900px) {
	.hero {
		padding-top: 7rem;
	}

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

	.nav-links a:not(.cart-btn) {
		display: none;
	}
}

/* Fade in on load */
.fade-in {
	opacity: 0;
	transform: translateY(20px);
	animation: fadeUp 0.8s forwards;
}

@keyframes fadeUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.delay-1 {
	animation-delay: 0.1s;
}

.delay-2 {
	animation-delay: 0.25s;
}

.delay-3 {
	animation-delay: 0.4s;
}

.delay-4 {
	animation-delay: 0.55s;
}
