/* The Motherhood — homepage sections (loaded on front page only). */

#tm-home { overflow-x: hidden; }
#tm-home section { padding: clamp(3rem, 6vw, 5.5rem) 0; }
#tm-home .tm-wrap { max-width: var(--tm-maxw); margin: 0 auto; padding: 0 1.25rem; }
#tm-home .tm-kicker {
	font-family: var(--tm-font-head); font-style: italic; color: var(--tm-clay);
	font-size: 1.3rem; text-align: center; margin: 0 0 .4rem;
}
#tm-home .tm-section-title {
	font-size: clamp(1.9rem, 3.6vw, 2.9rem); text-align: center; margin: 0 0 .6rem; color: var(--tm-clay);
}
#tm-home .tm-section-sub { text-align: center; color: var(--tm-muted); max-width: 620px; margin: 0 auto 2.5rem; }

/* ---------- HERO ---------- */
.tm-hero {
	background:
		radial-gradient(900px 420px at 50% -10%, #fff6e6 0%, transparent 70%),
		linear-gradient(180deg, var(--tm-cream) 0%, var(--tm-cream-2) 100%);
	text-align: center;
}
.tm-hero__kicker {
	font-family: var(--tm-font-head); font-style: italic; color: var(--tm-clay);
	font-size: clamp(1.2rem, 2.4vw, 1.6rem); margin: 0 0 .5rem;
}
.tm-hero__title {
	font-size: clamp(2.3rem, 5.2vw, 4rem); line-height: 1.08; margin: 0 auto 1rem; max-width: 14ch; color: var(--tm-clay);
}
.tm-hero__lead { color: var(--tm-muted); font-size: 1.1rem; max-width: 560px; margin: 0 auto 2.2rem; }

/* 3-way stage cards */
.tm-stages { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin: 0 auto 2.2rem; max-width: 1060px; }
@media (min-width: 760px) { .tm-stages { grid-template-columns: repeat(3, 1fr); } }
.tm-stage {
	display: block; background: var(--tm-ivory); border: 1px solid var(--tm-line);
	border-radius: 22px; padding: 1.6rem 1.4rem 1.8rem; box-shadow: var(--tm-shadow-sm);
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.tm-stage:hover { transform: translateY(-5px); box-shadow: var(--tm-shadow); border-color: var(--tm-coral); }
.tm-stage__art {
	height: 120px; border-radius: 90px 90px 16px 16px; margin-bottom: 1rem;
	display: flex; align-items: flex-end; justify-content: center; font-size: 2.4rem;
}
.tm-stage--garbha .tm-stage__art { background: linear-gradient(160deg,#f6e3d4,#eab59a); }
.tm-stage--sutika .tm-stage__art { background: linear-gradient(160deg,#f3ddd0,#e0a98e); }
.tm-stage--shishu .tm-stage__art { background: linear-gradient(160deg,#e7ecdd,#bcd0a6); }
.tm-stage__name { font-family: var(--tm-font-head); font-size: 1.9rem; color: var(--tm-clay); margin: 0; }
.tm-stage__desc { color: var(--tm-muted); font-size: .98rem; margin: .25rem 0 0; }

/* ---------- Trust bar ---------- */
.tm-trustbar { background: var(--tm-clay); color: #fbeede; padding: 1.1rem 0 !important; }
.tm-trustbar .tm-wrap { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2.2rem; }
.tm-trustbar span { font-size: .9rem; letter-spacing: .3px; display: inline-flex; align-items: center; gap: .45rem; }

/* ---------- Carousel (Best Sellers / Gifting) ---------- */
.tm-carousel-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 1.8rem; }
.tm-carousel-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin: 0; }
.tm-carousel-head a { font-family: var(--tm-font-head); font-size: 1.15rem; }
.tm-carousel-wrap { position: relative; }
.tm-carousel {
	display: grid; grid-auto-flow: column;
	grid-auto-columns: 78%;
	gap: 1.4rem; overflow-x: auto; scroll-snap-type: x mandatory;
	scrollbar-width: none; padding-bottom: .5rem;
}
.tm-carousel::-webkit-scrollbar { display: none; }
@media (min-width: 600px) { .tm-carousel { grid-auto-columns: 44%; } }
@media (min-width: 1000px) { .tm-carousel { grid-auto-columns: 23%; } }
.tm-card { scroll-snap-align: start; text-align: center; }
.tm-card__art {
	position: relative; display: block; aspect-ratio: 4/5; width: 100%;
	border-radius: var(--tm-arch) var(--tm-arch) 18px 18px; overflow: hidden;
	background: linear-gradient(160deg, var(--tm-cream-2), #eccfae);
	box-shadow: var(--tm-shadow-sm); margin-bottom: 1rem;
	display: flex; align-items: center; justify-content: center;
}
.tm-card__art img { width: 100%; height: 100%; object-fit: cover; }
.tm-card__art-fallback { font-family: var(--tm-font-head); color: var(--tm-clay); font-size: 1.05rem; opacity: .65; padding: 1rem; }
.tm-card__art .onsale {
	position: absolute; top: 12px; left: 12px; background: var(--tm-coral); color: #5a2e1f;
	font-size: .72rem; font-weight: 700; padding: .3em .8em; border-radius: 999px;
}
.tm-card__title { font-family: var(--tm-font-head); font-size: 1.2rem; color: var(--tm-clay); margin: 0 0 .35rem; min-height: 2.5em; display: block; }
.tm-card__price { font-weight: 600; color: var(--tm-charcoal); margin-bottom: .85rem; display: block; }
.tm-card__price del { color: var(--tm-muted); font-weight: 400; opacity: .7; margin-right: .4rem; }
.tm-card__price ins { text-decoration: none; color: var(--tm-clay-deep); }
.tm-card .button, .tm-card .tm-btn { width: 90%; }

.tm-arrow {
	position: absolute; top: 38%; transform: translateY(-50%); z-index: 5;
	width: 46px; height: 46px; border-radius: 50%; border: 0; cursor: pointer;
	background: var(--tm-coral); color: #5a2e1f; font-size: 1.3rem; line-height: 1;
	box-shadow: var(--tm-shadow-sm); display: none;
}
@media (min-width: 1000px) { .tm-arrow { display: block; } }
.tm-arrow:hover { background: var(--tm-coral-deep); }
.tm-arrow--prev { left: -22px; }
.tm-arrow--next { right: -22px; }

/* ---------- Journey explainer ---------- */
.tm-journey { background: var(--tm-cream-2); }
.tm-journey__grid { display: grid; grid-template-columns: 1fr; gap: 1.4rem; }
@media (min-width: 800px) { .tm-journey__grid { grid-template-columns: repeat(3, 1fr); } }
.tm-journey__step { background: var(--tm-ivory); border-radius: 20px; padding: 2rem 1.6rem; text-align: center; box-shadow: var(--tm-shadow-sm); }
.tm-journey__num { font-family: var(--tm-font-head); font-size: 2.2rem; color: var(--tm-coral-deep); }
.tm-journey__step h3 { margin: .3rem 0 .5rem; font-size: 1.5rem; }
.tm-journey__step p { color: var(--tm-muted); margin: 0; }

/* ---------- Gifting banner ---------- */
.tm-gift { background: linear-gradient(120deg, var(--tm-clay) 0%, var(--tm-clay-deep) 100%); color: #fbeede; text-align: center; }
.tm-gift h2 { color: #fff !important; font-size: clamp(2rem, 4vw, 3rem); margin: 0 0 .6rem; }
.tm-gift p { max-width: 560px; margin: 0 auto 1.6rem; color: #f3ddc9; }
.tm-gift .tm-btn { background: var(--tm-cream) !important; color: var(--tm-clay-deep) !important; }

/* ---------- Promise / Made Without ---------- */
.tm-promise__grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; max-width: 760px; margin: 0 auto; }
@media (min-width: 700px) { .tm-promise__grid { grid-template-columns: repeat(4,1fr); } }
.tm-promise__item { text-align: center; background: var(--tm-ivory); border:1px solid var(--tm-line); border-radius: 16px; padding: 1.4rem 1rem; }
.tm-promise__item strong { display: block; color: var(--tm-clay); font-family: var(--tm-font-head); font-size: 1.2rem; }
.tm-promise__item span { font-size: .9rem; color: var(--tm-muted); }

/* ---------- Founder note ---------- */
.tm-founder { background: var(--tm-cream-2); }
.tm-founder__inner { max-width: 760px; margin: 0 auto; text-align: center; }
.tm-founder blockquote { font-family: var(--tm-font-head); font-size: clamp(1.4rem,2.6vw,2rem); color: var(--tm-clay); line-height: 1.4; margin: 0 0 1rem; }
.tm-founder cite { color: var(--tm-muted); font-style: normal; }

/* ---------- Newsletter ---------- */
.tm-news { text-align: center; }
.tm-news form { display: flex; gap: .6rem; max-width: 460px; margin: 1.4rem auto 0; flex-wrap: wrap; justify-content: center; }
.tm-news input[type=email] { flex: 1 1 220px; border: 1px solid var(--tm-line); border-radius: 10px; padding: .9em 1.1em; font-size: 1rem; background: var(--tm-ivory); }
