/*
Theme Name: Nupur Jyotish
Theme URI: https://nupurjyotish.com
Author: Nupur Jyotish
Description: Presentation-only theme for nupurjyotish.com. All booking, registration, and payment logic lives in the astronupur-site-features plugin — this theme never queries the database beyond what core WordPress templates already do, and never talks to Razorpay directly.
Version: 1.3.14
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: astronupur-theme
*/

:root {
	--an-ivory: #FBF7EE;
	--an-ivory-soft: #FFFDF8;
	--an-cream: #F3EAD6;
	--an-cream-strong: #EBDDbd;
	--an-maroon: #5E1B22;
	--an-maroon-deep: #4A141D;
	--an-ink: #2B211C;
	--an-muted: #5F5145;
	--an-gold: #8C6427;
	--an-gold-light: #D9C28C;
	--an-border: #E2D2AF;
	--an-serif: Georgia, 'Times New Roman', serif;
	--an-max: 1060px;
	--an-measure: 660px;
	--an-radius: 2px;

	/* Golden-ratio-inspired type scale, tuned for readability. */
	--an-text-micro: 12px;
	--an-text-sm: 15px;
	--an-text-base: 18px;
	--an-text-md: 23px;
	--an-text-lg: 29px;
	--an-text-xl: clamp(36px, 5vw, 54px);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	background: var(--an-ivory);
	color: var(--an-ink);
	font-family: var(--an-serif);
	font-size: var(--an-text-base);
	line-height: 1.68;
	margin: 0;
	text-rendering: optimizeLegibility;
}

a {
	color: var(--an-maroon);
	text-underline-offset: 0.14em;
}

img {
	max-width: 100%;
	height: auto;
}

.an-skip-link {
	position: absolute;
	left: -999px;
	top: 10px;
	z-index: 1000;
	background: var(--an-maroon);
	color: var(--an-ivory);
	padding: 10px 14px;
	text-decoration: none;
}

.an-skip-link:focus {
	left: 10px;
}

.an-site-main {
	overflow-x: hidden;
}

.an-content-page {
	padding: 58px 26px;
	max-width: var(--an-measure);
	margin: 0 auto;
}

.an-empty-state {
	text-align: center;
	color: var(--an-muted);
}

.an-button:focus-visible,
.an-service-card:focus-visible,
.an-intro-offer:focus-visible,
.an-nav a:focus-visible,
.an-footer a:focus-visible,
.an-about-card a:focus-visible,
.an-booking-text-link:focus-visible {
	outline: 2px solid var(--an-gold);
	outline-offset: 4px;
}

.an-eyebrow {
	text-align: center;
	font-size: var(--an-text-micro);
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--an-gold);
	margin-bottom: 14px;
}

.an-button {
	background: var(--an-maroon);
	color: var(--an-ivory);
	border: 1px solid var(--an-maroon);
	padding: 14px 24px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
	text-decoration: none;
	display: inline-block;
	border-radius: var(--an-radius);
	transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}

.an-button:hover {
	background: var(--an-maroon-deep);
	border-color: var(--an-maroon-deep);
	transform: translateY(-1px);
}

.an-button.is-outline {
	background: transparent;
	color: var(--an-maroon);
	border: 1px solid var(--an-maroon);
}

.an-button.is-outline:hover {
	background: var(--an-maroon);
	color: var(--an-ivory);
}

.an-button.is-small {
	padding: 10px 16px;
	font-size: 12px;
}

/* Navigation */
.an-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 26px;
	border-bottom: 1px solid var(--an-border);
	background: rgba(251, 247, 238, .96);
	backdrop-filter: blur(6px);
	flex-wrap: wrap;
	gap: 16px;
	position: sticky;
	top: 0;
	z-index: 20;
}

.admin-bar .an-nav {
	top: 32px;
}

.an-logo {
	font-family: var(--an-serif);
	font-size: var(--an-text-md);
	line-height: 1;
	color: var(--an-ink);
	text-decoration: none;
}

.an-logo span {
	color: var(--an-maroon);
}

.an-nav-links ul {
	display: flex;
	align-items: center;
	gap: 20px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.an-nav-links a {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--an-muted);
	text-decoration: none;
}

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

.an-nav-right {
	display: flex;
	align-items: center;
	gap: 20px;
}

/* Footer */
.an-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 22px 26px;
	border-top: 1px solid var(--an-border);
	flex-wrap: wrap;
	gap: 14px;
}

.an-footer-brand {
	font-family: var(--an-serif);
	font-size: var(--an-text-sm);
	color: var(--an-muted);
}

.an-footer-links a {
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--an-gold);
	text-decoration: none;
	margin-left: 16px;
}

/* Ornamental divider */
.an-divider {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin: 22px 0 28px;
}

.an-divider-line {
	width: 36px;
	height: 1px;
	background: var(--an-gold-light);
}

.an-divider-dot {
	color: var(--an-gold);
	font-size: 8px;
}

/* Hero */
.an-hero {
	padding: 58px 26px 46px;
	text-align: center;
	max-width: 900px;
	margin: 0 auto;
}

.an-hero h1 {
	font-family: var(--an-serif);
	font-size: var(--an-text-xl);
	font-weight: 500;
	color: var(--an-maroon);
	line-height: 1.08;
	letter-spacing: -0.025em;
	max-width: 760px;
	margin: 12px auto 16px;
}

.an-hero-sub {
	font-size: var(--an-text-base);
	color: var(--an-muted);
	line-height: 1.72;
	max-width: 600px;
	margin: 0 auto;
}

.an-hero-actions {
	display: flex;
	gap: 12px;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin: 0 0 30px;
}

.an-hero-seal {
	display: block;
	width: 200px;
	height: 200px;
	margin: 0 auto;
}

.an-hero-seal-svg {
	display: block;
	width: 100%;
	height: 100%;
}

.an-photo-caption {
	font-family: var(--an-serif);
	font-size: var(--an-text-base);
	font-style: italic;
	color: var(--an-ink);
	margin: 16px 0 0;
}

.an-photo-meta {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--an-gold);
	margin: 6px 0 0;
}

/* About / proof */
.an-about {
	padding: 44px 26px 52px;
	background: var(--an-cream);
	border-top: 1px solid #eadbb8;
	border-bottom: 1px solid #eadbb8;
}

.an-about-card {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
	gap: 36px;
	align-items: center;
	max-width: var(--an-max);
	margin: 0 auto;
}

.an-about-copy h2 {
	font-size: var(--an-text-lg);
	font-weight: 500;
	line-height: 1.25;
	color: var(--an-maroon);
	margin: 0 0 14px;
}

.an-about-copy p {
	font-size: var(--an-text-base);
	line-height: 1.78;
	color: var(--an-muted);
	margin: 0 0 16px;
}

.an-about-copy p:last-child {
	margin-bottom: 0;
}

.an-proof-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
}

.an-proof-item {
	padding: 17px 18px;
	background: rgba(255, 253, 248, .64);
	border: 1px solid var(--an-border);
}

.an-proof-num {
	display: block;
	font-size: var(--an-text-lg);
	line-height: 1.1;
	color: var(--an-maroon);
	margin-bottom: 4px;
}

.an-proof-label {
	display: block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 1.45;
	text-transform: uppercase;
	color: var(--an-gold);
}

/* Services */
.an-services {
	scroll-margin-top: 96px;
	padding: 58px 26px 64px;
	max-width: var(--an-max);
	margin: 0 auto;
}

.an-services h2 {
	font-family: var(--an-serif);
	font-size: var(--an-text-lg);
	font-weight: 500;
	line-height: 1.25;
	color: var(--an-maroon);
	text-align: center;
	margin: 0 0 10px;
}

.an-services-sub {
	text-align: center;
	font-size: var(--an-text-sm);
	color: var(--an-muted);
	line-height: 1.7;
	max-width: 620px;
	margin: 0 auto 34px;
}

.an-intro-offer {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 22px;
	align-items: center;
	border: 1px solid var(--an-gold);
	background: var(--an-cream);
	max-width: 760px;
	margin: 0 auto 42px;
	padding: 26px 28px;
	text-decoration: none;
	color: inherit;
	box-shadow: 0 16px 42px rgba(74, 20, 29, .06);
}

.an-intro-offer:hover {
	border-color: var(--an-maroon);
}

.an-intro-offer-label {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--an-gold);
	margin-bottom: 8px;
}

.an-intro-offer-title {
	font-family: var(--an-serif);
	font-size: var(--an-text-md);
	line-height: 1.22;
	color: var(--an-ink);
	margin-bottom: 9px;
}

.an-intro-offer-price {
	display: flex;
	align-items: baseline;
	gap: 8px;
	margin-bottom: 10px;
}

.an-intro-offer-price strong {
	font-family: var(--an-serif);
	font-size: var(--an-text-lg);
	font-weight: 500;
	line-height: 1;
	color: var(--an-maroon);
}

.an-intro-offer-price span {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--an-muted);
}

.an-intro-offer p {
	font-size: var(--an-text-sm);
	color: var(--an-muted);
	line-height: 1.7;
	margin: 0;
}

.an-intro-offer-cta {
	white-space: nowrap;
}

.an-service-sections {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 36px;
}

.an-service-col {
	min-width: 0;
}

.an-service-cat {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--an-gold);
	padding-bottom: 10px;
	border-bottom: 1px solid var(--an-gold-light);
	margin-bottom: 16px;
}

.an-service-list {
	display: grid;
	gap: 14px;
}

.an-service-card {
	display: block;
	padding: 20px 20px 18px;
	background: var(--an-ivory-soft);
	border: 1px solid var(--an-border);
	color: inherit;
	text-decoration: none;
	transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.an-service-card:hover {
	border-color: var(--an-gold);
	box-shadow: 0 12px 30px rgba(74, 20, 29, .055);
	transform: translateY(-1px);
}

.an-service-name-line {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 18px;
}

.an-service-name {
	font-family: var(--an-serif);
	font-size: 21px;
	line-height: 1.3;
	color: var(--an-ink);
}

.an-service-price {
	font-family: var(--an-serif);
	font-size: 20px;
	font-weight: 500;
	line-height: 1.3;
	color: var(--an-maroon);
	white-space: nowrap;
}

.an-service-desc {
	font-size: var(--an-text-sm);
	color: var(--an-muted);
	line-height: 1.72;
	margin: 10px 0 0;
}

.an-service-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 14px;
}

.an-service-duration,
.an-service-cta {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.an-service-duration {
	color: var(--an-gold);
}

.an-service-cta {
	color: var(--an-maroon);
	white-space: nowrap;
}

/* CTA band */
.an-cta-band {
	padding: 52px 26px;
	text-align: center;
	background: var(--an-maroon-deep);
	border-top: 1px solid var(--an-gold);
	border-bottom: 1px solid var(--an-gold);
}

.an-cta-band h2 {
	font-family: var(--an-serif);
	font-size: var(--an-text-lg);
	font-weight: 500;
	line-height: 1.25;
	color: var(--an-ivory);
	margin: 0 0 12px;
}

.an-cta-band p {
	font-size: var(--an-text-sm);
	color: var(--an-gold-light);
	line-height: 1.8;
	max-width: 560px;
	margin: 0 auto 26px;
}

.an-cta-band .an-button {
	background: var(--an-gold-light);
	border-color: var(--an-gold-light);
	color: var(--an-maroon-deep);
}

.an-cta-band .an-button:hover {
	background: var(--an-ivory);
	border-color: var(--an-ivory);
}


/* About page */
.an-eyebrow--start {
	text-align: left;
}

.an-aboutp-hero {
	max-width: var(--an-max);
	margin: 0 auto;
	padding: 56px 26px 38px;
	display: grid;
	grid-template-columns: minmax(0, 330px) minmax(0, 1fr);
	gap: 46px;
	align-items: center;
}

.an-aboutp-portrait-frame {
	position: relative;
	max-width: 340px;
	padding: 14px;
	background: linear-gradient(180deg, #fffaf2 0%, #f5ecda 100%);
	border: 1px solid var(--an-gold-light);
	outline: 1px solid var(--an-gold);
	outline-offset: -8px;
	box-shadow: 0 18px 46px rgba(74, 20, 29, .10);
}

.an-aboutp-portrait {
	display: block;
	width: 100%;
	height: auto;
}

.an-aboutp-hero-text h1 {
	font-family: var(--an-serif);
	font-size: var(--an-text-xl);
	font-weight: 500;
	color: var(--an-maroon);
	line-height: 1.05;
	letter-spacing: -0.02em;
	margin: 0 0 10px;
}

.an-aboutp-role {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--an-gold);
	margin: 0;
}

.an-aboutp-hero-text .an-divider {
	justify-content: flex-start;
	margin: 22px 0 0;
}

.an-aboutp-story {
	max-width: 712px;
	margin: 0 auto;
	padding: 18px 26px 6px;
}

.an-aboutp-story p {
	font-size: 19px;
	line-height: 1.85;
	color: var(--an-ink);
	margin: 0 0 22px;
}

.an-aboutp-story p:last-child {
	margin-bottom: 0;
}

.an-aboutp-story p.an-aboutp-lead {
	font-family: var(--an-serif);
	font-size: 22px;
	font-style: italic;
	line-height: 1.6;
	color: var(--an-maroon);
}

.an-aboutp-howiread {
	background: var(--an-cream);
	border-top: 1px solid #eadbb8;
	border-bottom: 1px solid #eadbb8;
	padding: 50px 26px;
	margin-top: 42px;
}

.an-aboutp-howiread-inner {
	max-width: 720px;
	margin: 0 auto;
}

.an-aboutp-howiread-inner::before {
	content: "";
	display: block;
	width: 42px;
	height: 2px;
	background: var(--an-gold);
	margin: 0 0 18px;
}

.an-aboutp-howiread-label {
	margin: 0 0 18px;
}

.an-aboutp-howiread p {
	font-size: 18px;
	line-height: 1.85;
	color: var(--an-muted);
	margin: 0 0 18px;
}

.an-aboutp-howiread p:last-child {
	margin-bottom: 0;
}

@media (max-width: 760px) {
	.an-aboutp-hero {
		grid-template-columns: 1fr;
		gap: 26px;
		text-align: center;
		padding: 40px 22px 26px;
	}

	.an-aboutp-portrait-frame {
		max-width: 280px;
		margin: 0 auto;
	}

	.an-aboutp-hero-text .an-eyebrow--start,
	.an-aboutp-howiread-label.an-eyebrow--start {
		text-align: center;
	}

	.an-aboutp-hero-text .an-divider {
		justify-content: center;
	}

	.an-aboutp-howiread-inner::before {
		margin-left: auto;
		margin-right: auto;
	}

	.an-aboutp-story p {
		font-size: 17px;
	}

	.an-aboutp-story p.an-aboutp-lead {
		font-size: 20px;
	}

	.an-aboutp-howiread p {
		font-size: 17px;
	}
}


/* Booking page */
.an-booking-page {
	padding: 56px 26px 72px;
	max-width: var(--an-max);
	margin: 0 auto;
}

.an-booking-hero {
	max-width: 760px;
	margin: 0 auto 40px;
	text-align: center;
}

.an-booking-hero h1 {
	font-family: var(--an-serif);
	font-size: clamp(34px, 5vw, 50px);
	font-weight: 500;
	line-height: 1.16;
	color: var(--an-maroon);
	margin: 0 auto 16px;
}

.an-booking-hero p {
	font-size: var(--an-text-base);
	line-height: 1.75;
	color: var(--an-muted);
	max-width: 680px;
	margin: 0 auto;
}

.an-booking-trust-tags {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	list-style: none;
	padding: 0;
	margin: 24px 0 0;
}

.an-booking-trust-tags li {
	border: 1px solid var(--an-border);
	background: var(--an-ivory-soft);
	color: var(--an-gold);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1.45;
	padding: 9px 12px;
	text-transform: uppercase;
}

.an-booking-layout {
	display: grid;
	grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
	gap: 28px;
	align-items: start;
}

.an-booking-guide {
	display: grid;
	gap: 18px;
}

.an-booking-guide-card {
	border: 1px solid var(--an-border);
	background: var(--an-ivory-soft);
	padding: 24px;
	box-shadow: 0 14px 34px rgba(74, 20, 29, .045);
}

.an-booking-guide-card.is-soft {
	background: var(--an-cream);
}

.an-booking-guide-card h2 {
	font-family: var(--an-serif);
	font-size: var(--an-text-md);
	font-weight: 500;
	line-height: 1.25;
	color: var(--an-maroon);
	margin: 0 0 16px;
}

.an-booking-guide-card p {
	font-size: var(--an-text-sm);
	line-height: 1.7;
	color: var(--an-muted);
	margin: 0;
}

.an-booking-steps {
	list-style: none;
	margin: 0;
	padding: 0;
}

.an-booking-steps li {
	display: grid;
	grid-template-columns: 38px minmax(0, 1fr);
	gap: 14px;
	padding: 0 0 18px;
	position: relative;
}

.an-booking-steps li + li {
	border-top: 1px solid #ECDEC1;
	padding-top: 18px;
}

.an-booking-steps span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border: 1px solid var(--an-gold-light);
	color: var(--an-gold);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
}

.an-booking-steps strong {
	display: block;
	font-size: 16px;
	line-height: 1.35;
	color: var(--an-ink);
	margin-bottom: 4px;
}

.an-booking-text-link {
	display: inline-block;
	margin-top: 14px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--an-maroon);
}

.an-booking-text-link:hover {
	text-decoration: underline;
}

.an-booking-funnel {
	min-width: 0;
}

.an-booking-note {
	max-width: 760px;
	margin: 28px auto 0;
	padding: 18px 22px;
	border-top: 1px solid var(--an-border);
	border-bottom: 1px solid var(--an-border);
	text-align: center;
}

.an-booking-note p {
	font-size: var(--an-text-sm);
	line-height: 1.7;
	color: var(--an-muted);
	margin: 0;
}

.an-booking-note strong {
	color: var(--an-maroon);
}


@media (max-width: 920px) {
	.an-booking-layout {
		grid-template-columns: 1fr;
	}

	.an-booking-guide {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 782px) {
	.admin-bar .an-nav {
		top: 46px;
	}
}

@media (max-width: 760px) {

	.an-booking-page {
		padding: 42px 18px 56px;
	}

	.an-booking-hero {
		margin-bottom: 30px;
	}

	.an-booking-hero h1 {
		font-size: 32px;
	}

	.an-booking-trust-tags {
		align-items: stretch;
		flex-direction: column;
	}

	.an-booking-guide {
		grid-template-columns: 1fr;
	}

	.an-booking-guide-card {
		padding: 20px;
	}
	.an-nav {
		position: static;
		padding: 16px 18px;
	}

	.admin-bar .an-nav {
		top: auto;
	}

	.an-logo {
		font-size: 22px;
	}

	.an-nav-right {
		width: 100%;
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		gap: 12px;
	}

	.an-nav-links ul {
		gap: 12px 14px;
		flex-wrap: wrap;
	}

	.an-nav-right .an-button {
		width: 100%;
		text-align: center;
	}

	.an-hero {
		padding: 42px 18px 36px;
	}

	.an-hero h1 {
		font-size: 34px;
		max-width: 100%;
	}

	.an-hero-sub {
		max-width: 100%;
	}

	.an-hero-actions,
	.an-hero-actions .an-button {
		width: 100%;
	}

	.an-about,
	.an-services,
	.an-testimonials,
	.an-cta-band,
	.an-booking-page,
	.an-content-page {
		padding-left: 18px;
		padding-right: 18px;
	}

	.an-about-card {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.an-proof-grid {
		grid-template-columns: 1fr;
	}

	.an-trust-item {
		max-width: none;
		min-width: 100%;
		padding: 14px 0;
	}

	.an-trust-item + .an-trust-item {
		border-left: 0;
		border-top: 1px solid var(--an-gold-light);
	}

	.an-intro-offer {
		grid-template-columns: 1fr;
		gap: 18px;
		max-width: 100%;
		padding: 22px;
	}

	.an-intro-offer-cta,
	.an-intro-offer-cta .an-button {
		width: 100%;
		text-align: center;
	}

	.an-service-sections {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.an-service-name-line {
		gap: 10px;
	}

	.an-service-meta {
		align-items: flex-start;
		flex-direction: column;
	}

	.an-testimonial p {
		font-size: 18px;
	}

	.an-footer {
		align-items: flex-start;
	}

	.an-footer-links a {
		display: inline-block;
		margin-left: 0;
		margin-right: 14px;
	}
}

@media (max-width: 420px) {
	.an-hero h1 {
		font-size: 31px;
	}

	.an-hero-seal {
		width: 180px;
		height: 180px;
	}

	.an-cta-band h2,
	.an-services h2,
	.an-testimonials h2,
	.an-about-copy h2,
	.an-booking-hero h1 {
		font-size: 26px;
	}

	.an-service-name-line {
		flex-direction: column;
	}
}


/* Booking page aesthetic shell — production patch 1.2.5. */
.an-booking-page {
	max-width: 1120px;
}

.an-booking-hero {
	margin-bottom: 32px;
}

.an-booking-hero::after {
	content: '';
	display: block;
	width: 72px;
	height: 1px;
	margin: 24px auto 0;
	background: var(--an-gold-light);
}

.an-booking-layout {
	max-width: 1060px;
	margin: 0 auto;
	grid-template-columns: minmax(250px, 310px) minmax(0, 1fr);
	gap: 24px;
	padding: 24px;
	border: 1px solid var(--an-border);
	background: linear-gradient(180deg, #FFFDF8 0%, #FBF7EE 100%);
	box-shadow: 0 18px 46px rgba(74, 20, 29, .055);
}

.an-booking-guide-card {
	box-shadow: none;
}

.an-booking-guide-card:not(.is-soft) {
	border: 0;
	background: transparent;
	padding: 4px 0 0;
}

.an-booking-guide-card.is-soft {
	background: #F6EBD7;
	box-shadow: none;
}

.an-booking-steps li {
	grid-template-columns: 34px minmax(0, 1fr);
	gap: 12px;
}

.an-booking-steps span {
	width: 30px;
	height: 30px;
	background: #FFFDF8;
}

.an-booking-funnel #astronupur-booking-app {
	border-color: var(--an-gold-light);
	background: #FFFDF8;
	box-shadow: none;
}

@media (max-width: 920px) {
	.an-booking-layout {
		padding: 22px;
	}
}

@media (max-width: 760px) {
	.an-booking-page {
		padding-top: 36px;
	}

	.an-booking-layout {
		padding: 18px;
		border-left: 0;
		border-right: 0;
		margin-left: -18px;
		margin-right: -18px;
	}
}


/* Booking page — premium consultation-room treatment. */
.an-booking-page {
	position: relative;
	max-width: 1120px;
	padding: 64px 26px 76px;
}

.an-booking-page::before {
	content: '';
	position: absolute;
	inset: 0 26px auto;
	height: 260px;
	z-index: -1;
	background:
		radial-gradient(circle at 50% 0%, rgba(217, 194, 140, .34), rgba(217, 194, 140, 0) 66%),
		linear-gradient(180deg, rgba(255, 253, 248, .9), rgba(251, 247, 238, 0));
	pointer-events: none;
}

.an-booking-hero {
	max-width: 780px;
	margin: 0 auto 38px;
	padding-bottom: 28px;
	border-bottom: 1px solid var(--an-border);
	text-align: center;
}

.an-booking-hero h1 {
	font-size: clamp(38px, 5vw, 58px);
	letter-spacing: -0.015em;
	line-height: 1.08;
	margin-bottom: 18px;
}

.an-booking-hero p {
	max-width: 720px;
	font-size: 18px;
	line-height: 1.78;
}

.an-booking-trust-tags {
	gap: 0;
	margin-top: 28px;
}

.an-booking-trust-tags li {
	border: 0;
	border-right: 1px solid var(--an-border);
	background: transparent;
	padding: 4px 14px;
	color: var(--an-muted);
}

.an-booking-trust-tags li:last-child {
	border-right: 0;
}

.an-booking-studio {
	display: grid;
	grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
	gap: 0;
	align-items: stretch;
	border: 1px solid var(--an-border);
	background: var(--an-ivory-soft);
	box-shadow: 0 28px 70px rgba(74, 20, 29, .08);
}

.an-booking-assurance {
	position: relative;
	padding: 34px 30px;
	background:
		linear-gradient(180deg, rgba(94, 27, 34, .98), rgba(74, 20, 29, .98)),
		radial-gradient(circle at 10% 0%, rgba(217, 194, 140, .28), rgba(217, 194, 140, 0) 52%);
	color: var(--an-ivory);
}

.an-booking-assurance::after {
	content: '';
	position: absolute;
	inset: 12px;
	border: 1px solid rgba(217, 194, 140, .38);
	pointer-events: none;
}

.an-booking-assurance-mark {
	position: relative;
	z-index: 1;
	width: 42px;
	height: 42px;
	margin-bottom: 24px;
	border: 1px solid rgba(217, 194, 140, .56);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--an-gold-light);
	font-size: 18px;
}

.an-booking-assurance h2 {
	position: relative;
	z-index: 1;
	font-family: var(--an-serif);
	font-size: 28px;
	font-weight: 500;
	line-height: 1.18;
	margin: 0 0 26px;
	color: var(--an-ivory);
}

.an-booking-assurance .an-booking-steps {
	position: relative;
	z-index: 1;
}

.an-booking-assurance .an-booking-steps li {
	grid-template-columns: 42px minmax(0, 1fr);
	gap: 14px;
	padding-bottom: 20px;
}

.an-booking-assurance .an-booking-steps li + li {
	border-top-color: rgba(217, 194, 140, .22);
	padding-top: 20px;
}

.an-booking-assurance .an-booking-steps span {
	border-color: rgba(217, 194, 140, .55);
	color: var(--an-gold-light);
	background: rgba(255, 253, 248, .04);
}

.an-booking-assurance .an-booking-steps strong {
	color: var(--an-ivory);
}

.an-booking-assurance .an-booking-steps p {
	color: rgba(251, 247, 238, .76);
}

.an-booking-start-card {
	position: relative;
	z-index: 1;
	margin-top: 10px;
	padding: 18px;
	border: 1px solid rgba(217, 194, 140, .4);
	background: rgba(255, 253, 248, .055);
}

.an-booking-start-card p {
	margin: 0 0 8px;
	font-size: 15px;
	line-height: 1.55;
	color: rgba(251, 247, 238, .78);
}

.an-booking-start-card a {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--an-gold-light);
}

.an-booking-funnel {
	min-width: 0;
	padding: 34px;
	background:
		linear-gradient(180deg, rgba(255, 253, 248, .96), rgba(251, 247, 238, .82));
}

.an-booking-note {
	max-width: 880px;
	margin-top: 34px;
	border-top-color: var(--an-gold-light);
	border-bottom-color: var(--an-gold-light);
}

@media (max-width: 920px) {
	.an-booking-studio {
		grid-template-columns: 1fr;
	}

	.an-booking-assurance {
		padding: 30px 26px;
	}

	.an-booking-assurance .an-booking-steps {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 18px;
	}

	.an-booking-assurance .an-booking-steps li,
	.an-booking-assurance .an-booking-steps li + li {
		border-top: 0;
		padding: 0;
	}
}

@media (max-width: 640px) {
	.an-booking-page {
		padding: 44px 18px 58px;
	}

	.an-booking-page::before {
		inset-left: 18px;
		inset-right: 18px;
	}

	.an-booking-hero {
		margin-bottom: 28px;
	}

	.an-booking-hero h1 {
		font-size: 34px;
	}

	.an-booking-hero p {
		font-size: 16px;
	}

	.an-booking-trust-tags {
		align-items: center;
		flex-direction: column;
		gap: 8px;
	}

	.an-booking-trust-tags li {
		border-right: 0;
		padding: 0;
	}

	.an-booking-assurance .an-booking-steps {
		grid-template-columns: 1fr;
	}

	.an-booking-assurance,
	.an-booking-funnel {
		padding: 24px 18px;
	}
}

.an-booking-hero::after {
	display: none;
}

.an-booking-start-card a:focus-visible {
	outline: 2px solid var(--an-gold-light);
	outline-offset: 4px;
}

/* Express same-day banner — a prominent, attention-capturing callout above
   the booking funnel (the Express service is otherwise hidden from the grid). */
.an-express-banner {
	max-width: 1060px;
	margin: 0 auto 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
	flex-wrap: wrap;
	padding: 20px 26px;
	border: 1px solid var(--an-gold);
	border-radius: var(--an-radius);
	background:
		linear-gradient(180deg, rgba(94, 27, 34, .98), rgba(74, 20, 29, .98)),
		radial-gradient(circle at 12% 0%, rgba(217, 194, 140, .30), rgba(217, 194, 140, 0) 55%);
	box-shadow: 0 18px 46px rgba(74, 20, 29, .12);
}

.an-express-banner-text {
	min-width: 0;
}

.an-express-banner-eyebrow {
	display: block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--an-gold-light);
	margin-bottom: 6px;
}

.an-express-banner h2 {
	font-family: var(--an-serif);
	font-size: 24px;
	font-weight: 500;
	line-height: 1.2;
	color: var(--an-ivory);
	margin: 0 0 6px;
}

.an-express-banner p {
	margin: 0;
	font-size: 15px;
	line-height: 1.55;
	color: rgba(251, 247, 238, .82);
}

.an-express-banner-cta.an-button {
	flex: 0 0 auto;
	background: var(--an-gold-light);
	border-color: var(--an-gold-light);
	color: var(--an-maroon-deep);
}

.an-express-banner-cta.an-button:hover {
	background: var(--an-ivory);
	border-color: var(--an-ivory);
}

@media (max-width: 640px) {
	.an-express-banner {
		padding: 18px;
	}

	.an-express-banner-cta.an-button {
		width: 100%;
		text-align: center;
	}
}


/* ============================================================
   Legal / trust pages — Privacy, Terms, Refund (theme 1.2.7)
   Built from existing tokens only: ivory/cream base, oxblood
   maroon + antique gold accents, small-caps tracked labels,
   the double-rule frame motif (border + inset rule), the
   dotted leader price list, and the oversized serif quote mark.
   ============================================================ */

.an-legal-page {
	overflow-x: hidden;
}

.an-legal-hero {
	text-align: center;
	padding: 56px 26px 30px;
	background: var(--an-cream);
	border-bottom: 1px solid #eadbb8;
}

.an-legal-title {
	font-size: var(--an-text-xl);
	font-weight: 500;
	line-height: 1.08;
	color: var(--an-maroon);
	margin: 6px auto 0;
	max-width: 16ch;
}

.an-legal-updated {
	font-size: var(--an-text-micro);
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--an-gold);
	margin: 14px 0 0;
}

/* Featured pull-quote lede, reusing the oversized serif quote mark. */
.an-pullquote {
	max-width: 760px;
	margin: 40px auto 0;
	padding: 0 26px;
	position: relative;
}

.an-pullquote blockquote {
	margin: 0;
	position: relative;
	padding: 18px 0 0 58px;
}

.an-pullquote blockquote::before {
	content: '\201C';
	position: absolute;
	left: -4px;
	top: -18px;
	font-family: var(--an-serif);
	font-size: 96px;
	line-height: 1;
	color: var(--an-gold-light);
}

.an-pullquote p {
	font-size: var(--an-text-md);
	line-height: 1.5;
	font-style: italic;
	color: var(--an-maroon-deep);
	margin: 0;
}

/* Constrained, readable body column. */
.an-legal-body {
	max-width: 700px;
	margin: 0 auto;
	padding: 36px 26px 8px;
}

.an-legal-lede {
	font-size: var(--an-text-md);
	line-height: 1.6;
	color: var(--an-ink);
	margin: 0 0 18px;
}

.an-legal-section {
	margin-top: 38px;
}

/* Section headers as small-caps tracked labels. */
.an-legal-section h2 {
	font-size: var(--an-text-sm);
	font-weight: 700;
	font-variant: small-caps;
	letter-spacing: 0.14em;
	text-transform: lowercase;
	color: var(--an-gold);
	margin: 0 0 14px;
	padding-bottom: 9px;
	border-bottom: 1px solid var(--an-border);
}

.an-legal-body p {
	font-size: var(--an-text-base);
	line-height: 1.78;
	color: var(--an-ink);
	margin: 0 0 16px;
}

.an-legal-body ul {
	margin: 0 0 16px;
	padding-left: 1.15em;
}

.an-legal-body li {
	font-size: var(--an-text-base);
	line-height: 1.7;
	color: var(--an-ink);
	margin-bottom: 8px;
}

.an-legal-body a {
	color: var(--an-maroon);
	text-decoration: underline;
	text-underline-offset: 0.14em;
}

.an-legal-signoff {
	margin-top: 20px;
	color: var(--an-muted);
}

.an-legal-help {
	padding: 20px 22px;
	background: rgba(255, 253, 248, .64);
	border: 1px solid var(--an-border);
}

.an-legal-help p {
	margin: 0;
}

/* Dotted leader-line price list (Terms — Services & Pricing). */
.an-price-list {
	list-style: none;
	margin: 4px 0 16px;
	padding: 0;
}

.an-price-row {
	display: flex;
	align-items: baseline;
	gap: 10px;
	padding: 11px 0;
	border-bottom: 1px solid rgba(226, 210, 175, .5);
}

.an-price-name {
	font-size: var(--an-text-base);
	color: var(--an-ink);
	white-space: nowrap;
}

.an-price-leader {
	flex: 1 1 auto;
	border-bottom: 1px dotted var(--an-gold-light);
	transform: translateY(-3px);
	min-width: 18px;
}

.an-price-value {
	font-size: var(--an-text-base);
	color: var(--an-maroon);
	white-space: nowrap;
}

.an-price-note {
	font-size: var(--an-text-sm);
	color: var(--an-muted);
	font-style: italic;
}

/* Refund scenarios as double-rule frame cards (border + inset rule). */
.an-scenario-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
	max-width: 940px;
	margin: 8px auto 0;
	padding: 0 26px;
}

.an-scenario-card {
	padding: 24px 22px;
	background: var(--an-ivory-soft);
	border: 1px solid var(--an-gold-light);
	outline: 1px solid var(--an-gold);
	outline-offset: -7px;
}

.an-scenario-label {
	font-size: var(--an-text-micro);
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--an-gold);
	margin-bottom: 10px;
}

.an-scenario-card p {
	font-size: var(--an-text-sm);
	line-height: 1.7;
	color: var(--an-ink);
	margin: 0;
}

/* Contact form. */
.an-contact {
	max-width: 700px;
	margin: 44px auto 0;
	padding: 40px 26px 64px;
	border-top: 1px solid var(--an-border);
}

.an-section-label {
	font-size: var(--an-text-micro);
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--an-gold);
	margin-bottom: 10px;
}

.an-contact-title {
	font-size: var(--an-text-lg);
	font-weight: 500;
	line-height: 1.2;
	color: var(--an-maroon);
	margin: 0 0 10px;
}

.an-contact-intro {
	font-size: var(--an-text-base);
	line-height: 1.7;
	color: var(--an-muted);
	margin: 0 0 22px;
}

.an-contact-notice {
	padding: 13px 16px;
	margin: 0 0 20px;
	border: 1px solid var(--an-border);
	font-size: var(--an-text-sm);
}

.an-contact-notice.is-success {
	border-color: var(--an-gold);
	background: rgba(140, 100, 39, .07);
	color: var(--an-maroon-deep);
}

.an-contact-notice.is-error {
	border-color: var(--an-maroon);
	background: rgba(94, 27, 34, .05);
	color: var(--an-maroon);
}

.an-contact-field {
	display: block;
	margin-bottom: 18px;
}

.an-contact-label {
	display: block;
	font-size: var(--an-text-micro);
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--an-gold);
	margin-bottom: 7px;
}

.an-contact-field input,
.an-contact-field textarea {
	width: 100%;
	padding: 12px 14px;
	font-family: var(--an-serif);
	font-size: var(--an-text-base);
	color: var(--an-ink);
	background: var(--an-ivory-soft);
	border: 1px solid var(--an-border);
	border-radius: var(--an-radius);
}

.an-contact-field input:focus,
.an-contact-field textarea:focus {
	outline: 2px solid var(--an-gold);
	outline-offset: 1px;
	border-color: var(--an-gold);
}

.an-contact-field textarea {
	resize: vertical;
	line-height: 1.6;
}

/* Honeypot — hidden from people, present for bots. */
.an-contact-hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

@media (max-width: 640px) {
	.an-scenario-grid {
		grid-template-columns: 1fr;
		padding-left: 18px;
		padding-right: 18px;
	}

	.an-legal-body,
	.an-contact {
		padding-left: 18px;
		padding-right: 18px;
	}

	.an-price-name,
	.an-price-value {
		white-space: normal;
	}
}


/* Floating WhatsApp button (site-wide, suppressed on the booking funnel) */
.an-whatsapp-float {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 50;
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 12px 18px;
	border-radius: 999px;
	background: #25D366;
	color: #fff;
	font-family: var(--an-serif);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-decoration: none;
	box-shadow: 0 12px 30px rgba(0, 0, 0, .22);
	transition: background-color .18s ease, transform .18s ease;
}

.an-whatsapp-float:hover {
	background: #1ebe5d;
	color: #fff;
	transform: translateY(-1px);
}

.an-whatsapp-float:focus-visible {
	outline: 2px solid var(--an-gold);
	outline-offset: 3px;
}

.an-whatsapp-float svg {
	width: 22px;
	height: 22px;
	fill: currentColor;
	display: block;
	flex: 0 0 auto;
}

@media (max-width: 600px) {
	.an-whatsapp-float {
		right: 14px;
		bottom: 14px;
		padding: 13px;
	}

	/* Icon-only on phones to stay compact and out of the way. */
	.an-whatsapp-float-label {
		display: none;
	}
}


/* Account / auth pages — Login and My Bookings (mobile-first) */
.an-auth-page,
.an-account-page {
	max-width: 640px;
}

.an-hp-field {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.an-auth-title,
.an-account-title {
	font-family: var(--an-serif);
	font-size: var(--an-text-lg);
	font-weight: 500;
	color: var(--an-maroon);
	line-height: 1.2;
	margin: 0 0 16px;
}

.an-auth-intro {
	color: var(--an-muted);
	line-height: 1.7;
	margin: 0 0 22px;
}

.an-auth-page .an-field,
.an-account-page .an-field {
	margin-bottom: 16px;
}

.an-auth-page .an-field label,
.an-account-page .an-field label {
	display: block;
	font-size: var(--an-text-sm);
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--an-gold);
	margin-bottom: 7px;
}

.an-auth-page .an-field input,
.an-account-page .an-field input {
	width: 100%;
	font-size: 16px;
	min-height: 48px;
	padding: 12px 14px;
	border: 1px solid var(--an-border);
	background: var(--an-ivory-soft);
	color: var(--an-ink);
	font-family: inherit;
	border-radius: var(--an-radius);
}

.an-auth-page .an-field input:focus,
.an-account-page .an-field input:focus {
	outline: 2px solid rgba(140, 100, 39, .32);
	outline-offset: 2px;
	border-color: var(--an-maroon);
}

.an-auth-page .an-field input:disabled,
.an-account-page .an-field input:disabled {
	background: var(--an-cream);
	color: var(--an-muted);
}

.an-auth-page .an-button,
.an-account-form .an-button {
	width: 100%;
	min-height: 48px;
	margin-top: 6px;
}

.an-auth-note {
	padding: 12px 14px;
	border: 1px solid var(--an-border);
	margin: 0 0 20px;
	line-height: 1.6;
	border-radius: var(--an-radius);
}

.an-auth-note--ok {
	background: #f1f7ef;
	border-color: #cfe3c6;
	color: #2f5d2a;
}

.an-auth-note--warn {
	background: #fbf1ea;
	border-color: #e9cdb8;
	color: #8a4b27;
}

.an-auth-card {
	padding: 22px;
	border: 1px solid var(--an-gold-light);
	background: var(--an-ivory-soft);
	border-radius: var(--an-radius);
}

.an-auth-card-title {
	font-family: var(--an-serif);
	font-weight: 500;
	color: var(--an-maroon);
	margin: 0 0 10px;
	font-size: var(--an-text-md);
}

.an-account-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
	margin: 0 0 30px;
}

.an-account-logout {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--an-muted);
	text-decoration: none;
}

.an-account-logout:hover {
	color: var(--an-maroon);
}

.an-account-section {
	margin: 0 0 34px;
}

.an-account-subtitle {
	font-family: var(--an-serif);
	font-size: var(--an-text-md);
	font-weight: 500;
	color: var(--an-maroon);
	margin: 0 0 14px;
	padding-bottom: 8px;
	border-bottom: 1px solid var(--an-gold-light);
}

.an-account-empty {
	color: var(--an-muted);
}

.an-session-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 10px;
}

.an-session {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 6px 14px;
	padding: 14px 16px;
	border: 1px solid var(--an-border);
	background: var(--an-ivory-soft);
}

.an-session-service {
	font-family: var(--an-serif);
	font-size: 18px;
	color: var(--an-ink);
	flex: 1 1 auto;
}

.an-session-when {
	font-size: var(--an-text-sm);
	color: var(--an-muted);
	flex: 1 1 100%;
}

.an-session-amount {
	font-family: var(--an-serif);
	color: var(--an-maroon);
}

.an-session-list--past .an-session {
	opacity: 0.82;
}
