:root {
	--ivory: #f7f1e8;
	--cream: #efe3d2;
	--sand: #d9c2a7;
	--sand-dark: #b89c7c;
	--brown: #5b4432;
	--brown-dark: #38281e;
	--brown-soft: #806a55;
	--sage: #9a9b82;
	--white: #fffaf4;
	--line: rgba(91, 68, 50, .12);
	--shadow: 0 24px 70px rgba(73, 51, 34, .12);
	--shadow-sm: 0 12px 35px rgba(73, 51, 34, .08);
	--radius: 26px;
}

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

html {
	scroll-behavior: smooth
}

body {
	font-family: "DM Sans", Arial, sans-serif;
	background: var(--ivory);
	color: var(--brown-dark);
	line-height: 1.7;
}

img {
	max-width: 100%;
	display: block
}

a {
	text-decoration: none;
	color: inherit
}

button, input, textarea, select {
	font: inherit
}

.container {
	width: min(1180px, 92%);
	margin: auto
}

.serif {
	font-family: "Cormorant Garamond", serif
}

.script {
	font-family: "Allura", cursive
}

.kicker {
	text-transform: uppercase;
	letter-spacing: 3px;
	font-size: 15px;
	font-weight: 700;
	color: var(--sand-dark);
}

.kicker2 {
	text-transform: uppercase;
	letter-spacing: 3px;
	font-size: 22px;
	font-weight: 700;
	color: var(--sand-dark);
}

h1, h2, h3 {
	font-family: "Cormorant Garamond", serif;
	font-weight: 500;
	color: var(--brown-dark)
}

h2 {
	font-size: clamp(42px, 5vw, 62px);
	line-height: 1.02
}

p {
	color: var(--brown-soft)
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 0 25px;
	border-radius: 999px;
	background: var(--brown);
	color: #fffaf4;
	border: 1px solid var(--brown);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .2px;
	transition: .25s ease;
	cursor: pointer;
}

.btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(91, 68, 50, .2)
}

.btn-light {
	background: transparent;
	color: var(--brown);
	border-color: rgba(91, 68, 50, .25)
}

.btn-white {
	background: #fffaf4;
	color: var(--brown);
	border-color: #fffaf4
}

/* HEADER */
.header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(247, 241, 232, .92);
	backdrop-filter: blur(15px);
	border-bottom: 1px solid var(--line);
}

.nav {
	min-height: 82px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}

.brand {
	font-family: "Cormorant Garamond", serif;
	font-size: 30px;
	font-weight: 600;
	line-height: .8;
	color: var(--brown-dark);
}

.brand small {
	display: block;
	font-family: "Allura", cursive;
	font-size: 18px;
	font-weight: 400;
	color: var(--brown-soft);
	margin: 8px 0 0 4px;
}

.navlinks {
	display: flex;
	align-items: center;
	gap: 27px;
	font-size: 13px;
	color: var(--brown-soft)
}

.navlinks a:hover {
	color: var(--brown-dark)
}

.navlinks .btn {
	min-height: 43px;
	padding: 0 20px
}

.mobile-toggle {
	display: none;
	background: none;
	border: 0;
	font-size: 27px;
	color: var(--brown)
}

/* HERO */
.hero {
	position: relative;
	overflow: hidden;
	min-height: 690px;
	background: radial-gradient(circle at 79% 19%, rgba(255, 250, 244, .9) 0
		5%, transparent 27%),
		linear-gradient(125deg, #f9f4ed 0%, #ecdfce 55%, #dbc5aa 100%);
}

.hero:before {
	content: "";
	position: absolute;
	width: 580px;
	height: 580px;
	border-radius: 50%;
	right: -280px;
	top: -260px;
	background: rgba(184, 156, 124, .16);
}

.hero:after {
	content: "";
	position: absolute;
	width: 330px;
	height: 330px;
	border-radius: 50%;
	left: -190px;
	bottom: -220px;
	background: rgba(154, 155, 130, .12);
}

.hero-grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1.03fr .97fr;
	align-items: center;
	gap: 70px;
	padding: 95px 0;
}

.hero h1 {
	font-size: clamp(58px, 7vw, 88px);
	line-height: .91;
	letter-spacing: -1.5px;
	margin-top: 13px
}

.hero h1 em {
	font-family: "Allura", cursive;
	color: var(--brown-soft);
	font-size: 1.08em;
	font-style: normal
}

.hero-desc {
	font-size: 20px;
	font-style: bold;
	max-width: 590px;
	margin: 25px 0 29px
}

.hero-desc2 {
	font-size: 16px;
	max-width: 590px;
	margin: 25px 0 29px
}

.hero-buttons {
	display: flex;
	gap: 12px;
	flex-wrap: wrap
}

.hero-meta {
	display: flex;
	gap: 22px;
	flex-wrap: wrap;
	margin-top: 25px;
	font-size: 11px;
	color: var(--brown-soft)
}

.hero-meta span:before {
	content: "✓";
	margin-right: 7px;
	color: var(--sand-dark);
	font-weight: 700
}

/* HERO VISUAL */
.hero-photo {
	min-height: 520px;
	border-radius: 240px 240px 30px 30px;
	overflow: hidden;
	position: relative;
	box-shadow: var(--shadow);
	background: linear-gradient(145deg, rgba(255, 250, 244, .2),
		rgba(112, 86, 64, .18)),
		url("../images/Online-Counselling.png?auto=compress&cs=tinysrgb&w=1600")
		center/cover no-repeat, linear-gradient(145deg, #eee0cd, #c9ae8e);
	border: 8px solid rgba(255, 250, 244, .6);
}

.hero-photo:after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 45%, rgba(53, 37, 27, .18));
}

.hero-badge {
	position: absolute;
	z-index: 2;
	left: 30px;
	bottom: 42px;
	width: 330px;
	padding: 22px 23px;
	border-radius: 20px;
	background: rgba(255, 250, 244, .95);
	box-shadow: var(--shadow-sm);
}

.hero-badge strong {
	display: block;
	font-family: "Cormorant Garamond", serif;
	font-size: 25px;
	line-height: 1.05
}

.hero-badge span {
	display: block;
	font-size: 11px;
	color: var(--brown-soft);
	margin-top: 7px
}

/* TRUST */
.trust {
	background: var(--white);
	border-bottom: 1px solid var(--line)
}

.trust-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	padding: 22px 0
}

.trust-item {
	text-align: center;
	padding: 6px 18px;
	border-right: 1px solid var(--line);
	font-size: 11px;
	color: var(--brown-soft)
}

.trust-item:last-child {
	border: 0
}

.trust-item strong {
	display: block;
	color: var(--brown);
	font-size: 13px;
	margin-bottom: 2px
}

/* GENERAL SECTION */
section {
	padding: 30px 0
}

.section-head {
	text-align: center;
	max-width: 730px;
	margin: 0 auto 52px
}

.section-head p {
	margin-top: 17px;
	font-size: 15px
}

/* ABOUT */
.about {
	background: #fbf7f1
}

.about-grid {
	display: grid;
	grid-template-columns: .85fr 1.15fr;
	gap: 80px;
	align-items: center
}

.about-photo {
	position: relative;
	min-height: 590px;
	border-radius: 30px;
	overflow: hidden;
	background: url("../images/Rachna.jpg?auto=compress&cs=tinysrgb&w=1400")
		center/cover no-repeat, linear-gradient(145deg, #e8d7c1, #c9ad8e);
	box-shadow: var(--shadow);
}

.about-photo-label {
	position: absolute;
	left: 22px;
	bottom: 22px;
	right: 22px;
	background: rgba(255, 250, 244, .94);
	border-radius: 18px;
	padding: 17px 20px;
}

.about-photo-label strong {
	font-family: "Cormorant Garamond", serif;
	font-size: 24px;
	font-weight: 600
}

.about-photo-label span {
	display: block;
	color: var(--brown-soft);
	font-size: 11px
}

.about-copy h2 {
	margin-top: 10px
}

.about-copy>p {
	margin-top: 21px;
	font-size: 15px
}

.credentials {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin: 28px 0
}

.credential {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 17px;
	padding: 15px 17px;
}

.credential strong {
	display: block;
	font-size: 12px;
	color: var(--brown)
}

.credential span {
	display: block;
	font-size: 11px;
	color: var(--brown-soft);
	margin-top: 2px
}

.signature {
	font-family: "Allura", cursive;
	font-size: 32px;
	color: var(--brown-soft);
	margin: 20px 0
}

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

.service-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px
}

.service {
	background: var(--white);
	padding: 30px;
	border-radius: 25px;
	border: 1px solid var(--line);
	transition: .25s ease;
	position: relative;
	overflow: hidden;
}

.service:after {
	content: "";
	position: absolute;
	right: -35px;
	top: -35px;
	width: 110px;
	height: 110px;
	border-radius: 50%;
	background: var(--cream);
	opacity: .65;
}

.service:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-sm)
}

.service-icon {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: var(--cream);
	color: var(--brown);
	font-size: 21px;
	position: relative;
	z-index: 1;
}

.service h3 {
	font-size: 29px;
	margin: 21px 0 7px;
	line-height: 1.05
}

.service p {
	font-size: 13px
}

.service-link {
	display: inline-block;
	margin-top: 17px;
	font-size: 12px;
	font-weight: 700;
	color: var(--brown)
}

/* FEATURE */
.feature {
	background: #e9dece
}

.feature-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 65px;
	align-items: center
}

.feature-copy h2 {
	margin: 11px 0 20px
}

.feature-copy>p {
	font-size: 15px
}

.feature-list {
	display: grid;
	gap: 13px;
	margin: 27px 0
}

.feature-list div {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	font-size: 13px;
	color: var(--brown)
}

.feature-list span {
	width: 24px;
	height: 24px;
	flex: none;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: rgba(255, 250, 244, .7);
	font-size: 11px;
}

.feature-card {
	min-height: 430px;
	border-radius: 32px;
	background: url("../images/Room.png?auto=compress&cs=tinysrgb&w=1400")
		center/cover no-repeat,
		linear-gradient(145deg, rgba(255, 250, 244, .4), rgba(91, 68, 50, .06)),
		#d4bda0;
	position: relative;
	overflow: hidden;
	box-shadow: var(--shadow-sm);
}

.feature-card:after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(255, 250, 244, .05),
		rgba(56, 40, 30, .20));
}

/* HOW */
.steps {
	background: var(--white)
}

.step-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px
}

.step {
	padding: 28px 22px;
	border-radius: 22px;
	background: #faf5ee;
	border: 1px solid var(--line)
}

.step-number {
	font-family: "Cormorant Garamond", serif;
	font-size: 46px;
	color: var(--sand-dark);
	line-height: 1
}

.step h3 {
	font-size: 26px;
	margin: 9px 0 5px
}

.step p {
	font-size: 12px
}

/* TESTIMONIAL */
.testimonials {
	background: #fbf7f1
}

.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px
}

.testimonial {
	padding: 30px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 23px
}

.stars {
	color: #a58b6d;
	letter-spacing: 3px;
	font-size: 12px
}

.testimonial blockquote {
	font-family: "Cormorant Garamond", serif;
	font-size: 23px;
	line-height: 1.35;
	margin: 17px 0;
	color: var(--brown-dark)
}

.testimonial small {
	font-size: 11px;
	color: var(--brown-soft)
}

/* APPOINTMENT */
.appointment {
	background: var(--brown);
	color: #fffaf4
}

.appointment-grid {
	display: grid;
	grid-template-columns: .82fr 1.18fr;
	gap: 65px;
	align-items: start
}

.appointment h2 {
	color: #fffaf4;
	margin-top: 10px
}

.appointment-copy>p {
	color: #d9c8b6;
	margin-top: 20px
}

.appointment-points {
	display: grid;
	gap: 11px;
	margin-top: 27px
}

.appointment-points div {
	font-size: 12px;
	color: #e5d7c8
}

.appointment-points span {
	margin-right: 9px;
	color: #d9bd98
}

.form {
	background: var(--white);
	border-radius: 28px;
	padding: 32px;
	color: var(--brown-dark);
	box-shadow: var(--shadow);
}

.form h3 {
	font-size: 32px;
	margin-bottom: 5px
}

.form-note {
	font-size: 11px;
	color: var(--brown-soft);
	margin-bottom: 22px
}

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

.field {
	display: grid;
	gap: 6px
}

.field.full {
	grid-column: 1/-1
}

.field label {
	font-size: 11px;
	font-weight: 700;
	color: var(--brown)
}

.field input, .field textarea, .field select {
	width: 100%;
	border: 1px solid var(--line);
	background: #fffdf9;
	color: var(--brown-dark);
	border-radius: 12px;
	padding: 12px 13px;
	outline: 0;
	font-size: 13px;
}

.field input:focus, .field textarea:focus, .field select:focus {
	border-color: var(--sand-dark);
	box-shadow: 0 0 0 3px rgba(184, 156, 124, .12)
}

.field textarea {
	min-height: 105px;
	resize: vertical
}

.form .btn {
	width: 100%;
	margin-top: 17px
}

.form-status {
	display: none;
	margin-top: 13px;
	padding: 11px 13px;
	background: #eee4d6;
	border-radius: 10px;
	font-size: 12px;
	color: var(--brown)
}

/* WHATSAPP */
.whatsapp {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 1001;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: #5f7258;
	color: #fff;
	font-size: 25px;
	box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
	transition: .2s;
}

.whatsapp:hover {
	transform: translateY(-3px) scale(1.03)
}

.whatsapp-tip {
	position: absolute;
	right: 72px;
	white-space: nowrap;
	background: var(--white);
	color: var(--brown);
	border-radius: 99px;
	padding: 7px 11px;
	font-size: 11px;
	box-shadow: var(--shadow-sm);
	opacity: 0;
	pointer-events: none;
	transition: .2s;
}

.whatsapp:hover .whatsapp-tip {
	opacity: 1
}

/* INSTAGRAM */
.instagram {
	background: var(--ivory)
}

.insta-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px
}

.insta {
	aspect-ratio: 1;
	border-radius: 18px;
	overflow: hidden;
	position: relative;
	display: flex;
	align-items: flex-end;
	padding: 17px;
	background: linear-gradient(rgba(255, 250, 244, .08),
		rgba(91, 68, 50, .18)),
		url("photo-7579188.jpeg?auto=compress&cs=tinysrgb&w=1600")
		center/cover;
}

.insta:nth-child(2) {
	background: linear-gradient(rgba(255, 250, 244, .15),
		rgba(91, 68, 50, .18)),
		url("photo-3958417.jpeg?auto=compress&cs=tinysrgb&w=1400")
		center/cover
}

.insta:nth-child(3) {
	background: linear-gradient(rgba(255, 250, 244, .10),
		rgba(91, 68, 50, .18)),
		url("-photo-4534687.jpeg?auto=compress&cs=tinysrgb&w=1400")
		center/cover
}

.insta:nth-child(4) {
	background: linear-gradient(rgba(255, 250, 244, .10),
		rgba(91, 68, 50, .16)),
		url("photo-8964892.jpeg?auto=compress&cs=tinysrgb&w=1400")
		center/cover
}

.insta:before {
	content: "";
	position: absolute;
	width: 65%;
	height: 65%;
	border-radius: 50%;
	right: -14%;
	top: -15%;
	background: rgba(255, 250, 244, .35);
}

.insta-content {
	position: relative;
	z-index: 1
}

.insta-content span {
	font-size: 10px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--brown)
}

.insta-content strong {
	display: block;
	font-family: "Cormorant Garamond", serif;
	font-size: 22px;
	line-height: 1.05;
	color: var(--brown-dark);
	margin-top: 3px
}

.insta-follow {
	text-align: center;
	margin-top: 28px
}

/* FAQ */
.faq {
	background: #efe4d5
}

.faq-list {
	max-width: 850px;
	margin: auto
}

.faq-item {
	border-bottom: 1px solid rgba(91, 68, 50, .18)
}

.faq-question {
	width: 100%;
	padding: 21px 0;
	border: 0;
	background: none;
	text-align: left;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	gap: 20px;
	color: var(--brown-dark);
	font-family: "Cormorant Garamond", serif;
	font-size: 24px;
}

.faq-question span {
	font-family: "DM Sans", sans-serif;
	font-size: 20px;
	color: var(--brown-soft);
	transition: .2s
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height .3s ease
}

.faq-answer p {
	padding: 0 45px 21px 0;
	font-size: 13px
}

.faq-item.open .faq-answer {
	max-height: 180px
}

.faq-item.open .faq-question span {
	transform: rotate(45deg)
}

/* FINAL CTA */
.final-cta {
	padding: 35px 0 100px;
	background: #efe4d5
}

.cta-box {
	border-radius: 34px;
	padding: 65px 30px;
	text-align: center;
	background: linear-gradient(135deg, #dbc6ab, #c4a887);
	box-shadow: var(--shadow-sm);
}

.cta-box h2 {
	color: var(--brown-dark)
}

.cta-box p {
	max-width: 600px;
	margin: 15px auto 25px;
	color: #624b39
}

/* FOOTER */
.footer {
	background: #38281e;
	color: #dfd0c0;
	padding: 65px 0 25px
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.45fr 1fr 1fr 1fr;
	gap: 45px
}

.footer .brand {
	color: #fff9f1
}

.footer-about {
	font-size: 12px;
	color: #c7b6a3;
	max-width: 350px;
	margin-top: 17px
}

.footer h4 {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #fff9f1;
	margin-bottom: 16px
}

.footer ul {
	list-style: none;
	display: grid;
	gap: 7px;
	font-size: 12px;
	color: #c7b6a3
}

.footer ul a:hover {
	color: #fff9f1
}

.socials {
	display: flex;
	gap: 9px;
	margin-top: 18px
}

.social {
	width: 35px;
	height: 35px;
	border: 1px solid rgba(255, 255, 255, .2);
	border-radius: 50%;
	display: grid;
	place-items: center;
	font-size: 12px;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	border-top: 1px solid rgba(255, 255, 255, .12);
	margin-top: 50px;
	padding-top: 19px;
	font-size: 10px;
	color: #ad9a87;
}

/* RESPONSIVE */
@media ( max-width :950px) {
	.navlinks {
		display: none
	}
	.mobile-toggle {
		display: block
	}
	.navlinks.mobile-open {
		display: flex;
		position: absolute;
		top: 82px;
		left: 0;
		right: 0;
		background: var(--ivory);
		flex-direction: column;
		align-items: flex-start;
		padding: 22px 4%;
		border-bottom: 1px solid var(--line);
	}
	.hero-grid, .about-grid, .feature-grid, .appointment-grid {
		grid-template-columns: 1fr;
		gap: 45px
	}
	.hero {
		min-height: auto
	}
	.hero-photo {
		min-height: 500px
	}
	.service-grid, .testimonial-grid {
		grid-template-columns: 1fr 1fr
	}
	.step-grid {
		grid-template-columns: 1fr 1fr
	}
	.footer-grid {
		grid-template-columns: 1.5fr 1fr 1fr
	}
	.footer-grid>div:last-child {
		grid-column: 2
	}
}

@media ( max-width :620px) {
	section {
		padding: 72px 0
	}
	.hero-grid {
		padding: 70px 0
	}
	.hero h1 {
		font-size: 58px
	}
	.hero-photo {
		min-height: 410px
	}
	.hero-badge {
		left: 12px;
		bottom: 20px
	}
	.trust-grid {
		grid-template-columns: 1fr 1fr
	}
	.trust-item:nth-child(2) {
		border: 0
	}
	.service-grid, .testimonial-grid, .step-grid, .form-grid, .credentials,
		.insta-grid {
		grid-template-columns: 1fr
	}
	.field.full {
		grid-column: auto
	}
	.about-photo {
		min-height: 450px
	}
	.footer-grid {
		grid-template-columns: 1fr 1fr
	}
	.footer-grid>div:last-child {
		grid-column: auto
	}
	.footer-bottom {
		flex-direction: column
	}
	.whatsapp {
		right: 16px;
		bottom: 16px
	}
}

.image-credit {
	font-size: 10px;
	color: #9f8d7b;
	margin-top: 13px;
	line-height: 1.5;
}

.image-credit a {
	color: #b8a48f;
	text-decoration: underline
}
/* Sub-menu styling */
.page-menu-bar {
	background: var(--cream);
	border-bottom: 1px solid var(--line);
	position: sticky;
	top: 82px; /* Position right below main header */
	z-index: 999;
	padding: 10px 0;
	font-size: 12px;
}

.page-menu-links {
	display: flex;
	align-items: center;
	gap: 20px;
	overflow-x: auto;
	white-space: nowrap;
}

.page-menu-title {
	font-weight: 700;
	color: var(--brown-dark);
}

.page-menu-links a {
	color: var(--brown-soft);
	transition: color 0.2s ease;
}

.page-menu-links a:hover {
	color: var(--brown-dark);
}

/* Floating Pill Page Menu */
.page-menu-wrapper {
	position: sticky;
	top: 92px; /* Offset below site header */
	z-index: 998;
	display: flex;
	justify-content: center;
	padding: 12px 0;
	pointer-events: none; /* Allows clicks around the pill */
}

.pill-menu {
	pointer-events: auto;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(255, 250, 244, 0.85);
	backdrop-filter: blur(10px);
	padding: 6px 10px;
	border-radius: 999px;
	border: 1px solid var(--line);
	box-shadow: var(--shadow-sm);
	max-width: 92%;
	overflow-x: auto;
}

.pill-link {
	font-size: 12px;
	font-weight: 600;
	color: var(--brown-soft);
	padding: 6px 16px;
	border-radius: 999px;
	transition: all 0.2s ease;
	white-space: nowrap;
}

.pill-link:hover, .pill-link.active {
	background: var(--brown);
	color: var(--white);
}

/* Vertical Side-Dot Page Menu */
.side-page-menu {
	position: fixed;
	right: 28px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 999;
}

.side-page-menu ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.dot-link {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
	text-decoration: none;
}

.dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: 2px solid var(--sand-dark);
	background: var(--ivory);
	transition: all 0.25s ease;
}

.dot-label {
	font-size: 11px;
	font-weight: 600;
	color: var(--brown);
	background: var(--white);
	padding: 4px 10px;
	border-radius: 6px;
	border: 1px solid var(--line);
	box-shadow: var(--shadow-sm);
	opacity: 0;
	transform: translateX(8px);
	transition: all 0.25s ease;
	pointer-events: none;
	white-space: nowrap;
}

/* Hover Effects */
.dot-link:hover .dot {
	background: var(--brown);
	transform: scale(1.3);
}

.dot-link:hover .dot-label {
	opacity: 1;
	transform: translateX(0);
}

/* Hide side menu on mobile devices */
@media ( max-width : 768px) {
	.side-page-menu {
		display: none;
	}
}

/* VIDEO / FOUNDER MESSAGE */
.founder-video-box {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 50px;
	box-shadow: var(--shadow-sm);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
}

.video-placeholder {
	width: 100%;
	min-height: 320px;
	border-radius: 20px;
	background: linear-gradient(135deg, var(--sand), var(--sand-dark));
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: var(--white);
	box-shadow: var(--shadow-sm);
	position: relative;
	cursor: pointer;
}

.video-play-btn {
	width: 65px;
	height: 65px;
	border-radius: 50%;
	background: var(--white);
	color: var(--brown);
	display: grid;
	place-items: center;
	font-size: 24px;
	margin-bottom: 12px;
	box-shadow: var(--shadow-sm);
}

/* HER SAFE SPACE */
.safe-space-box {
	background: linear-gradient(135deg, #efe3d2 0%, #d9c2a7 100%);
	border-radius: var(--radius);
	padding: 60px;
	text-align: center;
	box-shadow: var(--shadow-sm);
}

.safe-space-box p {
	color: var(--brown-dark);
	max-width: 680px;
	margin: 15px auto 30px;
}

/* COMMUNITY BANNER */
.community-card {
	background: var(--brown);
	color: var(--white);
	border-radius: var(--radius);
	padding: 50px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	box-shadow: var(--shadow);
}

.community-card h3 {
	color: var(--white);
	font-size: 36px;
}

.community-card p {
	color: #d9c8b6;
	margin-top: 8px;
}

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

.service-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 25px
}

.service {
	background: var(--white);
	padding: 35px;
	border-radius: 25px;
	border: 1px solid var(--line);
	transition: .25s ease;
	position: relative;
	overflow: hidden;
}

.service:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-sm)
}

.service h3 {
	font-size: 28px;
	margin: 15px 0 8px;
	line-height: 1.1
}

/* RESPONSIVE */
@media ( max-width :950px) {
	.navlinks {
		display: none
	}
	.mobile-toggle {
		display: block
	}
	.hero-grid, .about-grid, .feature-grid, .appointment-grid,
		.founder-video-box, .community-card {
		grid-template-columns: 1fr;
		gap: 40px
	}
	.service-grid, .testimonial-grid, .team-grid, .workshop-grid {
		grid-template-columns: 1fr
	}
	.footer-grid {
		grid-template-columns: 1fr 1fr
	}
}

/* TAGS / AREAS WE WORK WITH */
.pills-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
	max-width: 900px;
	margin: 30px auto 40px;
}

.pill-item {
	background: var(--white);
	border: 1px solid var(--line);
	padding: 10px 22px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 600;
	color: var(--brown-dark);
	box-shadow: var(--shadow-sm);
}

/* AUDIENCE SECTION */
.audience-box {
	background: #faf5ee;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 40px;
	text-align: center;
}

.audience-tags {
	display: flex;
	justify-content: center;
	gap: 20px;
	font-family: "Cormorant Garamond", serif;
	font-size: 28px;
	color: var(--brown-dark);
	margin: 15px 0;
	flex-wrap: wrap;
}

/* WORKSHOPS GRID */
.workshop-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 40px;
}

.workshop-card {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 22px;
	padding: 30px;
	box-shadow: var(--shadow-sm);
}

.workshop-card h3 {
	font-size: 24px;
	margin-bottom: 8px;
}

.service-features-list {
	list-style: none;
	margin: 20px 0 30px;
	display: grid;
	gap: 10px;
}

.service-features-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	color: var(--brown);
}

.service-features-list li span {
	color: var(--sand-dark);
	font-weight: bold;
}

.why-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 30px
}

.why-item {
	background: var(--white);
	border-radius: 22px;
	padding: 25px;
	border: 1px solid var(--line);
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.why-item .num {
	font-family: "Cormorant Garamond", serif;
	font-size: 32px;
	color: var(--sand-dark);
	line-height: 1;
}