/*
Theme Name: Milestone Stories
Theme URI: https://themilestonestories.com/
Author: Milestone Stories
Description: Fast, SEO-ready theme for Milestone Stories: photography & films for weddings and life's milestones in Pune. Service, Story and Review pages; an enquiry form that saves every lead; WhatsApp buttons; Google-ready titles, descriptions and business schema. Everything is editable in Appearance > Customize.
Version: 1.0.0
Requires at least: 6.6
Tested up to: 7.1
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: milestone-stories
*/

/* ==========================================================================
   Design tokens (colours taken from the original Milestone Stories site)
   ========================================================================== */
:root {
	--c-olive: #5d664a;
	--c-olive-deep: #4c543d;
	--c-gold: #ceb88f;
	--c-gold-ink: #a08a63; /* gold for small text on light backgrounds (readable) */
	--c-bg: #faf8f5;
	--c-bg-alt: #f7f4ee;
	--c-bg-deep: #ede8df;
	--c-surface: #fcfbf8;
	--c-ink: #46443f;
	--c-text: #55544f;
	--c-muted: #716e66;
	--c-line: #e8e3da;
	--c-line-strong: #d9d3c7;
	--c-cream: #faf8f5;

	--font-serif: "Cormorant Garamond", "Cormorant", Garamond, "Times New Roman", serif;
	--font-sans: "Jost", "Futura", "Century Gothic", system-ui, -apple-system, "Segoe UI", sans-serif;

	--container: 1360px;
	--container-narrow: 1200px;
	--gutter: clamp(20px, 4vw, 40px);
	--header-h: 80px;
	--section-y: clamp(80px, 8vw, 128px);
	--radius-card: 24px;
	--radius-media: 28px;

	--fs-hero: clamp(2.75rem, 1.6rem + 3.6vw, 4.5rem);
	--fs-h1: clamp(2.5rem, 1.6rem + 2.4vw, 3.75rem);
	--fs-h2: clamp(2.125rem, 1.6rem + 1.4vw, 3rem);
	--fs-cta: clamp(2.5rem, 1.6rem + 2.4vw, 3.75rem);
	--fs-story: clamp(1.875rem, 1.5rem + 0.9vw, 2.25rem);
	--fs-stat: clamp(3rem, 1.8rem + 3.4vw, 5.75rem);
	--fs-lead: clamp(1.0625rem, 1rem + 0.3vw, 1.25rem);
	--fs-eyebrow: 0.75rem;

	--ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* ==========================================================================
   Base
   ========================================================================== */
*,
*::before,
*::after { box-sizing: border-box; }

html {
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	scroll-padding-top: calc(var(--header-h) + 16px);
}

@media (prefers-reduced-motion: no-preference) {
	html { scroll-behavior: smooth; }
}

body {
	margin: 0;
	padding-top: var(--header-h);
	background: var(--c-bg);
	color: var(--c-muted);
	font-family: var(--font-sans);
	font-size: 1.0625rem;
	font-weight: 300;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

body.has-overlay-header { padding-top: 0; }

img,
video { display: block; max-width: 100%; height: auto; }

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

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	font-family: var(--font-serif);
	font-weight: 500;
	line-height: 1.1;
	color: var(--c-olive);
	overflow-wrap: break-word;
}

p { margin: 0; }

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

strong, b { font-weight: 500; }

:focus-visible { outline: 2px solid var(--c-olive); outline-offset: 3px; }

::selection { background: var(--c-gold); color: #2f2c24; }

.mst-icon { display: inline-block; flex: none; vertical-align: middle; }

.screen-reader-text,
.sr-only {
	position: absolute !important;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link {
	position: absolute;
	left: 16px; top: -100px;
	z-index: 200;
	padding: 12px 18px;
	background: var(--c-olive);
	color: var(--c-cream);
	border-radius: 12px;
}
.skip-link:focus { top: 16px; }

.site-main:focus { outline: none; }

/* ==========================================================================
   Layout helpers
   ========================================================================== */
.container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }
.container-narrow { width: min(100% - 2 * var(--gutter), var(--container-narrow)); margin-inline: auto; }
.container-text { width: min(100% - 2 * var(--gutter), 760px); margin-inline: auto; }

.section { padding-block: var(--section-y); }
.section--content { padding-block: clamp(56px, 6vw, 96px); }

.bg-alt { background: var(--c-bg-alt); }
.bg-deep { background: var(--c-bg-deep); }
.bg-olive { background: var(--c-olive); color: var(--c-cream); }

.eyebrow {
	margin: 0 0 1.25rem;
	font-family: var(--font-sans);
	font-size: var(--fs-eyebrow);
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--c-gold-ink);
}
.eyebrow--light { color: var(--c-gold); font-size: 0.8125rem; }
.eyebrow-emoji { letter-spacing: 0; }

.section-head { margin-bottom: clamp(40px, 4vw, 56px); }
.section-title { font-size: var(--fs-h2); max-width: 16em; }
.section-more { margin-top: clamp(32px, 4vw, 48px); }
.section-more--center { text-align: center; }

/* ==========================================================================
   Buttons & links
   ========================================================================== */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	min-height: 3.25rem;
	padding: 0.8rem 2rem;
	border: 1px solid transparent;
	border-radius: 999px;
	font-family: var(--font-sans);
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: 0.01em;
	text-align: center;
	cursor: pointer;
	transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.btn .mst-icon-arrow-right { transition: transform 0.25s ease; }
.btn:hover .mst-icon-arrow-right { transform: translateX(3px); }
.btn:active { transform: translateY(1px); }

.btn-sm { min-height: 2.5rem; padding: 0.45rem 1.35rem; font-size: 0.9375rem; }
.btn-lg { min-height: 3.5rem; padding: 0.95rem 2.5rem; }
.btn-block { display: flex; width: 100%; }

.btn-gold { background: var(--c-gold); color: #2f2c24; }
.btn-gold:hover { background: #d9c7a4; }

.btn-olive { background: var(--c-olive); color: var(--c-cream); }
.btn-olive:hover { background: var(--c-olive-deep); color: #fff; }

.btn-ghost-light { border-color: rgba(255, 255, 255, 0.6); color: #fff; }
.btn-ghost-light:hover { background: rgba(255, 255, 255, 0.12); border-color: #fff; }

.btn-outline { border-color: var(--c-line-strong); color: var(--c-olive); background: transparent; }
.btn-outline:hover { border-color: var(--c-olive); background: rgba(93, 102, 74, 0.04); }

.btn[disabled], .btn.is-busy { opacity: 0.7; cursor: progress; }

.link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding-bottom: 0.3rem;
	border-bottom: 1px solid currentColor;
	font-size: 1.0625rem;
	font-weight: 400;
	color: var(--c-gold-ink);
	transition: color 0.2s ease, gap 0.2s ease;
}
.link-arrow:hover { color: var(--c-olive); gap: 0.75rem; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 100;
	height: var(--header-h);
	display: flex;
	align-items: center;
	color: var(--c-olive);
	background: rgba(250, 248, 245, 0.9);
	-webkit-backdrop-filter: saturate(1.4) blur(14px);
	backdrop-filter: saturate(1.4) blur(14px);
	border-bottom: 1px solid rgba(93, 102, 74, 0.08);
	transition: background-color 0.35s ease, border-color 0.35s ease, color 0.35s ease;
}
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) {
	.admin-bar .site-header { top: 46px; }
}

.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: inline-flex; align-items: center; gap: 14px; color: inherit; min-width: 0; }
.brand-logo { max-height: 52px; width: auto; }
.brand-mark {
	flex: none;
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border: 1px solid rgba(93, 102, 74, 0.45);
	font-family: var(--font-sans);
	font-size: 0.6875rem;
	font-weight: 500;
	letter-spacing: 0.14em;
	padding-left: 0.14em;
}
.brand-text { display: flex; flex-direction: column; min-width: 0; }
.brand-name {
	font-family: var(--font-serif);
	font-size: 1.375rem;
	font-weight: 500;
	line-height: 1.05;
	white-space: nowrap;
}
.brand-tag {
	margin-top: 0.4rem;
	font-size: 0.625rem;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: var(--c-text);
	white-space: nowrap;
}

.primary-nav { display: flex; align-items: center; gap: 2.25rem; }
.primary-nav .menu { display: flex; align-items: center; gap: 2.25rem; margin: 0; padding: 0; list-style: none; }
.primary-nav .menu a {
	font-size: 0.9375rem;
	font-weight: 400;
	color: var(--c-text);
	transition: color 0.2s ease;
}
.primary-nav .menu a:hover,
.primary-nav .menu .current-menu-item > a,
.primary-nav .menu .current_page_item > a,
.primary-nav .menu .current-menu-ancestor > a { color: var(--c-gold-ink); }
.nav-quick { display: none; }

/* Header over the home page photo */
.has-overlay-header .site-header:not(.is-scrolled):not(.nav-is-open) {
	background: transparent;
	border-bottom-color: transparent;
	-webkit-backdrop-filter: none;
	backdrop-filter: none;
	color: #fff;
}
.has-overlay-header .site-header:not(.is-scrolled):not(.nav-is-open) .brand-mark { border-color: rgba(255, 255, 255, 0.55); }
.has-overlay-header .site-header:not(.is-scrolled):not(.nav-is-open) .brand-tag { color: rgba(255, 255, 255, 0.78); }
.has-overlay-header .site-header:not(.is-scrolled):not(.nav-is-open) .menu a { color: rgba(255, 255, 255, 0.88); }
.has-overlay-header .site-header:not(.is-scrolled):not(.nav-is-open) .menu a:hover,
.has-overlay-header .site-header:not(.is-scrolled):not(.nav-is-open) .menu .current-menu-item > a,
.has-overlay-header .site-header:not(.is-scrolled):not(.nav-is-open) .menu .current_page_item > a,
.has-overlay-header .site-header:not(.is-scrolled):not(.nav-is-open) .menu .current-menu-ancestor > a { color: var(--c-gold); }
.has-overlay-header .site-header:not(.is-scrolled):not(.nav-is-open) .nav-toggle-bars span { background: #fff; }

.nav-toggle {
	display: none;
	width: 44px; height: 44px;
	margin-right: -8px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	place-items: center;
}
.nav-toggle-bars { position: relative; display: block; width: 24px; height: 12px; }
.nav-toggle-bars span {
	position: absolute; left: 0;
	width: 100%; height: 1.5px;
	background: var(--c-olive);
	border-radius: 2px;
	transition: transform 0.3s var(--ease), top 0.3s var(--ease), background-color 0.3s ease;
}
.nav-toggle-bars span:first-child { top: 0; }
.nav-toggle-bars span:last-child { top: 10px; }
.nav-open .nav-toggle-bars span:first-child { top: 5px; transform: rotate(45deg); }
.nav-open .nav-toggle-bars span:last-child { top: 5px; transform: rotate(-45deg); }

@media (max-width: 1080px) {
	:root { --header-h: 72px; }
	/* A blur on the header would trap the full-screen menu inside it, so use a solid colour. */
	.site-header { -webkit-backdrop-filter: none; backdrop-filter: none; background: rgba(250, 248, 245, 0.98); }
	.nav-toggle { display: grid; }
	.primary-nav {
		position: fixed;
		top: var(--header-h);
		left: 0; right: 0; bottom: 0;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 24px var(--gutter) 40px;
		background: var(--c-bg);
		overflow-y: auto;
		opacity: 0;
		visibility: hidden;
		transform: translateY(-8px);
		transition: opacity 0.3s ease, transform 0.3s var(--ease), visibility 0s linear 0.3s;
	}
	.admin-bar .primary-nav { top: calc(var(--header-h) + 46px); }
	.nav-open .primary-nav {
		opacity: 1;
		visibility: visible;
		transform: none;
		transition: opacity 0.3s ease, transform 0.3s var(--ease);
	}
	.nav-open { overflow: hidden; }
	.primary-nav .menu { flex-direction: column; align-items: stretch; gap: 0; }
	.primary-nav .menu li { border-bottom: 1px solid var(--c-line); }
	.primary-nav .menu a {
		display: block;
		padding: 16px 0;
		font-family: var(--font-serif);
		font-size: 1.875rem;
		font-weight: 500;
		color: var(--c-olive);
	}
	.primary-nav .header-cta { margin-top: 28px; min-height: 3.25rem; font-size: 1.0625rem; }
	.nav-quick { display: flex; gap: 12px; margin-top: 14px; }
	.nav-quick a {
		flex: 1;
		display: inline-flex; align-items: center; justify-content: center; gap: 8px;
		min-height: 3rem;
		border: 1px solid var(--c-line-strong);
		border-radius: 999px;
		color: var(--c-olive);
		font-weight: 400;
	}
}
@media (max-width: 480px) {
	.brand { gap: 10px; }
	.brand-mark { width: 38px; height: 38px; font-size: 0.625rem; }
	.brand-name { font-size: 1.3rem; }
	.brand-tag { font-size: 0.5625rem; letter-spacing: 0.26em; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
	position: relative;
	display: flex;
	align-items: flex-end;
	min-height: 100vh;
	min-height: 100svh;
	overflow: hidden;
	color: #fff;
	background: #3b382c;
	isolation: isolate;
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img,
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-placeholder {
	position: absolute; inset: 0;
	background:
		radial-gradient(120% 90% at 75% 20%, rgba(206, 184, 143, 0.35), transparent 60%),
		linear-gradient(160deg, #6f6a55 0%, #4b4a3a 45%, #2f2d23 100%);
}
.hero::after {
	content: "";
	position: absolute; inset: 0;
	z-index: -1;
	background:
		linear-gradient(to top, rgba(24, 22, 16, 0.78) 0%, rgba(24, 22, 16, 0.3) 48%, rgba(24, 22, 16, 0.25) 100%),
		linear-gradient(to right, rgba(24, 22, 16, 0.45), rgba(24, 22, 16, 0) 70%);
	opacity: calc(0.35 + var(--hero-overlay, 0.45));
}
.hero-content { padding-block: calc(var(--header-h) + 48px) clamp(64px, 7vw, 112px); }
.hero-content .eyebrow { margin-bottom: 1.6rem; }
.hero-title {
	max-width: 10.5em;
	margin-bottom: 1.6rem;
	font-size: var(--fs-hero);
	font-weight: 500;
	line-height: 1.02;
	letter-spacing: -0.01em;
	color: #fff;
}
.hero-text {
	max-width: 36rem;
	margin-bottom: 2.6rem;
	font-size: var(--fs-lead);
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.9);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-actions--center { justify-content: center; margin-top: 2rem; }

.hero--service { min-height: clamp(560px, 82vh, 860px); }
.hero-title--page { font-size: var(--fs-h1); max-width: 14em; }

@media (max-width: 560px) {
	.hero-actions .btn { flex: 1 1 100%; }
	.hero-content { padding-bottom: 96px; }
}

/* ==========================================================================
   Home: introduction
   ========================================================================== */
.intro { text-align: center; }
.intro-title { max-width: 17.5em; margin: 0 auto 2rem; font-size: var(--fs-h2); }
.intro-text { max-width: 53rem; margin: 0 auto; font-size: 1.125rem; line-height: 1.65; }

/* ==========================================================================
   Service cards
   ========================================================================== */
.svc-grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .svc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .svc-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.svc-card {
	position: relative;
	aspect-ratio: 3 / 4;
	overflow: hidden;
	border-radius: var(--radius-card);
	background: var(--c-bg-deep);
	isolation: isolate;
}
@media (max-width: 639px) { .svc-card { aspect-ratio: 4 / 3.4; } }

.svc-card-link { position: absolute; inset: 0; display: block; color: #fff; }
.svc-card-media,
.svc-card-media img,
.svc-card-media .ph { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.svc-card-media img { transition: transform 1.2s var(--ease); }
.svc-card:hover .svc-card-media img { transform: scale(1.045); }

.svc-card-shade {
	position: absolute; inset: 0;
	background: linear-gradient(to top, rgba(22, 20, 14, 0.74) 0%, rgba(22, 20, 14, 0.28) 42%, rgba(22, 20, 14, 0) 68%);
}
.svc-card-shade::after {
	content: "";
	position: absolute; inset: 0;
	background: rgba(93, 102, 74, 0.55);
	opacity: 0;
	transition: opacity 0.5s ease;
}
.svc-card:hover .svc-card-shade::after,
.svc-card-link:focus-visible .svc-card-shade::after { opacity: 1; }

.svc-card-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 28px 28px 26px; }
.svc-card-emoji { display: block; margin-bottom: 0.75rem; font-size: 1.5rem; line-height: 1; }
.svc-card-title { margin-bottom: 0.35rem; font-size: 1.5rem; color: #fff; }
.svc-card-tagline { font-size: 0.875rem; color: rgba(255, 255, 255, 0.88); }
.svc-card-price { margin-top: 0.4rem; font-size: 0.875rem; font-weight: 400; color: var(--c-gold); }
.svc-card-more {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	margin-top: 0.75rem;
	font-size: 0.875rem;
	font-weight: 400;
	color: var(--c-gold);
	opacity: 0;
	transform: translateY(6px);
	transition: opacity 0.4s ease, transform 0.4s var(--ease);
}
.svc-card:hover .svc-card-more,
.svc-card-link:focus-visible .svc-card-more { opacity: 1; transform: none; }
@media (hover: none) { .svc-card-more { opacity: 1; transform: none; } }
.svc-card .ph-badge {
	position: absolute;
	top: 16px; left: 16px;
	padding: 4px 10px;
	border-radius: 999px;
	background: rgba(255, 253, 247, 0.92);
	color: #7a5d24;
	font-size: 0.75rem;
}

/* Photo placeholder */
.ph { width: 100%; height: 100%; background: linear-gradient(145deg, #dcd4c4 0%, #bdb6a0 45%, #8f937b 100%); }

/* ==========================================================================
   Stories
   ========================================================================== */
.story-list { display: grid; gap: clamp(64px, 8vw, 112px); }
.story-row { display: grid; gap: clamp(28px, 4.5vw, 64px); align-items: center; }
@media (min-width: 900px) {
	.story-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.story-row.is-reversed .story-media { order: 2; }
}
.story-media {
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border-radius: var(--radius-media);
	background: var(--c-bg-deep);
}
.story-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.story-row:hover .story-media img { transform: scale(1.03); }
.story-title { margin-bottom: 1.25rem; font-size: var(--fs-story); }
.story-title a:hover { color: var(--c-olive-deep); }
.story-excerpt { max-width: 28rem; margin-bottom: 1.75rem; font-size: 1.125rem; line-height: 1.65; }

.story-cover { margin-top: clamp(-40px, -3vw, -24px); }
.story-cover img { width: 100%; max-height: 82vh; object-fit: cover; border-radius: var(--radius-media); }
.story-cover--text { margin-top: clamp(40px, 5vw, 64px); }
.story-service {
	margin-top: 2.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--c-line);
	font-size: 1.0625rem;
}
.story-service a { color: var(--c-olive); text-decoration: underline; text-decoration-color: var(--c-gold); text-underline-offset: 4px; }

/* ==========================================================================
   Why choose us
   ========================================================================== */
.why-title { max-width: 14em; }
.why-grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.why-card { padding: 32px 32px 36px; border-radius: var(--radius-card); background: var(--c-bg); }
.why-icon {
	display: grid;
	place-items: center;
	width: 48px; height: 48px;
	margin-bottom: 1.75rem;
	border-radius: 50%;
	background: var(--c-bg-alt);
	color: var(--c-olive);
}
.why-card-title { margin-bottom: 0.75rem; font-size: 1.5rem; }
.why-card p { font-size: 1rem; line-height: 1.65; }

/* ==========================================================================
   Numbers band
   ========================================================================== */
.stats { padding-block: clamp(72px, 7vw, 112px); }
.stats-grid {
	display: grid;
	grid-template-columns: repeat(var(--stat-count, 3), minmax(0, 1fr));
	gap: 24px;
	text-align: center;
}
.stat-num {
	display: block;
	margin-bottom: 0.9rem;
	font-family: var(--font-serif);
	font-size: var(--fs-stat);
	font-weight: 500;
	line-height: 1;
	color: var(--c-gold);
}
.stat-label {
	display: block;
	font-size: 0.8125rem;
	font-weight: 400;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: rgba(250, 248, 245, 0.9);
}
@media (max-width: 560px) {
	.stats-grid { gap: 12px; }
	.stat-label { font-size: 0.6875rem; letter-spacing: 0.18em; }
}

/* ==========================================================================
   Reviews
   ========================================================================== */
.review-grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .review-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .review-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.review-card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 28px;
	margin: 0;
	padding: 32px;
	border: 1px solid #efebe4;
	border-radius: var(--radius-card);
	background: var(--c-surface);
	box-shadow: 0 1px 2px rgba(70, 68, 63, 0.04), 0 14px 34px -22px rgba(70, 68, 63, 0.22);
}
.review-quote { margin: 0; }
.review-quote p {
	font-family: var(--font-serif);
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1.6;
	color: var(--c-ink);
}
.review-author { display: flex; align-items: center; gap: 16px; }
.review-avatar {
	flex: none;
	width: 56px; height: 56px;
	border-radius: 50%;
	object-fit: cover;
	background: var(--c-bg-deep);
}
.review-avatar--initial {
	display: grid;
	place-items: center;
	font-family: var(--font-serif);
	font-size: 1.5rem;
	color: var(--c-olive);
}
.review-name { display: block; font-size: 1.0625rem; font-weight: 500; color: var(--c-olive); }
.review-meta { display: block; font-size: 0.9375rem; color: var(--c-muted); }

/* ==========================================================================
   Instagram photos
   ========================================================================== */
.reels-head .btn { min-height: 2.75rem; padding: 0.5rem 1.5rem; font-size: 0.9375rem; }
.reels-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 24px; }
.reels-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
@media (min-width: 1024px) { .reels-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); } }
.reel { display: block; aspect-ratio: 1; overflow: hidden; border-radius: 20px; background: var(--c-bg-deep); }
.reel img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.reel:hover img { transform: scale(1.05); }

/* ==========================================================================
   Call to action
   ========================================================================== */
.cta { text-align: center; }
.cta-title { margin-bottom: 1.5rem; font-size: var(--fs-cta); }
.cta-text { max-width: 44rem; margin: 0 auto 2.75rem; font-size: var(--fs-lead); line-height: 1.6; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
	padding-top: clamp(64px, 6vw, 88px);
	background: var(--c-olive);
	color: rgba(250, 248, 245, 0.82);
}
.footer-grid { display: grid; gap: 48px; grid-template-columns: 1fr; }
@media (min-width: 768px) {
	.footer-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
	.footer-brand { grid-column: span 2; }
}
.footer-brand-name { font-family: var(--font-serif); font-size: 1.875rem; font-weight: 500; line-height: 1.1; color: #f9f6f1; }
.footer-brand-tag { margin-top: 0.7rem; font-size: 0.6875rem; letter-spacing: 0.35em; text-transform: uppercase; color: rgba(250, 248, 245, 0.7); }
.footer-about { max-width: 24rem; margin-top: 1.5rem; font-size: 1rem; line-height: 1.7; }
.footer-heading { margin-bottom: 1.25rem; font-size: 1.25rem; color: #f9f6f1; }
.footer-links { display: grid; gap: 0.7rem; margin: 0; padding: 0; list-style: none; }
.footer-links a {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 0.9375rem;
	color: rgba(250, 248, 245, 0.82);
	transition: color 0.2s ease;
}
.footer-links a:hover { color: #fff; }
.footer-bottom { margin-top: clamp(56px, 6vw, 88px); border-top: 1px solid rgba(250, 248, 245, 0.14); }
.footer-bottom-inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 8px 24px;
	padding-block: 28px 32px;
	font-size: 0.9375rem;
	color: rgba(250, 248, 245, 0.7);
}
.site-footer .admin-hint { color: #5b5646; }

/* Floating WhatsApp button */
.wa-float {
	position: fixed;
	right: 20px; bottom: 20px;
	z-index: 90;
	display: grid;
	place-items: center;
	width: 58px; height: 58px;
	border-radius: 50%;
	background: #25d366;
	color: #fff;
	box-shadow: 0 12px 26px -10px rgba(0, 0, 0, 0.45);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.wa-float:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -10px rgba(0, 0, 0, 0.5); }
.nav-open .wa-float { display: none; }

/* ==========================================================================
   Inner pages
   ========================================================================== */
.page-hero {
	padding-block: clamp(64px, 7vw, 104px);
	background: var(--c-bg-alt);
	text-align: center;
}
.page-title { max-width: 16em; margin-inline: auto; font-size: var(--fs-h1); }
.page-meta { margin-top: 1rem; font-size: 0.9375rem; letter-spacing: 0.08em; color: var(--c-muted); }
.page-intro { max-width: 42rem; margin: 1.5rem auto 0; font-size: var(--fs-lead); line-height: 1.6; }
.page-hero .hero-actions { justify-content: center; margin-top: 2rem; }
.page-hero .admin-hint { max-width: 42rem; margin: 1.5rem auto 0; text-align: left; }

.breadcrumbs { margin-bottom: 1.75rem; font-size: 0.875rem; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.4rem; margin: 0; padding: 0; list-style: none; }
.breadcrumbs li + li::before { content: "/"; margin-right: 0.4rem; opacity: 0.5; }
.breadcrumbs a { color: var(--c-muted); }
.breadcrumbs a:hover { color: var(--c-olive); }
.breadcrumbs [aria-current] { color: var(--c-text); }
.breadcrumbs--light { color: rgba(255, 255, 255, 0.85); }
.breadcrumbs--light ol { justify-content: flex-start; }
.breadcrumbs--light a,
.breadcrumbs--light [aria-current] { color: rgba(255, 255, 255, 0.85); }
.breadcrumbs--light a:hover { color: #fff; }

.empty-note { font-size: 1.125rem; text-align: center; }
.empty-note a { color: var(--c-olive); text-decoration: underline; text-underline-offset: 4px; }

/* Price chip in page headers */
.price-chip {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.35rem 0.75rem;
	margin: 0 0 2rem;
	padding: 0.55rem 1.1rem;
	border-radius: 999px;
	font-size: 0.9375rem;
}
.price-chip strong { font-size: 1.0625rem; font-weight: 500; }
.price-chip--light { border: 1px solid rgba(255, 255, 255, 0.35); color: rgba(255, 255, 255, 0.92); background: rgba(24, 22, 16, 0.2); }
.price-chip--light strong { color: var(--c-gold); }
.price-chip--dark { margin-top: 1.75rem; border: 1px solid var(--c-line-strong); color: var(--c-text); background: var(--c-bg); }
.price-chip--dark strong { color: var(--c-olive); }
.page-hero .price-chip--dark + .hero-actions { margin-top: 0; }

/* Service page body */
.svc-layout { display: grid; gap: 48px; }
@media (min-width: 1024px) {
	.svc-layout { grid-template-columns: minmax(0, 1fr) 360px; gap: clamp(48px, 6vw, 96px); align-items: start; }
}
.svc-main { max-width: 760px; }
.svc-subtitle { margin: 2.75rem 0 1.25rem; font-size: clamp(1.75rem, 1.4rem + 1vw, 2.25rem); }
.svc-main > .svc-subtitle:first-child { margin-top: 0; }
.moment-list,
.check-list { display: grid; gap: 0.8rem 1.5rem; margin: 0; padding: 0; list-style: none; }
@media (min-width: 640px) { .moment-list, .check-list { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.moment-list li,
.check-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 1.0625rem; color: var(--c-text); }
.moment-list .mst-icon,
.check-list .mst-icon { margin-top: 0.2em; color: var(--c-gold-ink); }
.check-list .mst-icon { color: var(--c-olive); }

.faq-list { border-top: 1px solid var(--c-line); }
.faq { border-bottom: 1px solid var(--c-line); }
.faq summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.2rem 0;
	list-style: none;
	cursor: pointer;
	font-family: var(--font-serif);
	font-size: 1.375rem;
	font-weight: 500;
	line-height: 1.3;
	color: var(--c-olive);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .mst-icon { color: var(--c-gold-ink); transition: transform 0.3s var(--ease); }
.faq[open] summary .mst-icon { transform: rotate(180deg); }
.faq p { padding: 0 0 1.4rem; font-size: 1.0625rem; line-height: 1.7; }

.svc-aside { position: sticky; top: calc(var(--header-h) + 24px); }
.price-card {
	display: grid;
	gap: 12px;
	padding: 32px;
	border: 1px solid #eae7df;
	border-radius: var(--radius-card);
	background: var(--c-bg-alt);
}
.price-card .eyebrow { margin: 0; }
.price-card-amount { font-family: var(--font-serif); font-size: 3rem; font-weight: 500; line-height: 1; color: var(--c-olive); }
.price-card-note { margin-bottom: 8px; font-size: 1rem; color: var(--c-text); }
.price-card-lead { margin-bottom: 8px; font-size: 1.0625rem; color: var(--c-text); }
@media (max-width: 1023px) { .svc-aside { position: static; } }

.book-title { margin-bottom: 1.25rem; }
.book-text { max-width: 30rem; margin-bottom: 2rem; font-size: 1.125rem; }

/* ==========================================================================
   Contact page & enquiry form
   ========================================================================== */
.contact-grid { display: grid; gap: 48px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: start; } }
.contact-grid--single { grid-template-columns: minmax(0, 1fr) !important; max-width: 640px; }
.contact-heading { margin-bottom: 2rem; font-size: 2.25rem; }
.contact-list { display: grid; gap: 1.35rem; margin: 0; padding: 0; list-style: none; }
.contact-list a {
	display: inline-flex;
	align-items: center;
	gap: 1rem;
	font-size: 1.1875rem;
	color: var(--c-text);
	transition: color 0.2s ease;
	overflow-wrap: anywhere;
}
.contact-list a:hover { color: var(--c-olive); }
.contact-list .mst-icon { color: var(--c-olive); }
.contact-extra { margin-top: 2.5rem; }

.form-card {
	padding: clamp(24px, 3vw, 36px);
	border: 1px solid #eae7df;
	border-radius: var(--radius-card);
	background: var(--c-bg-alt);
}
.field { display: grid; gap: 0.5rem; margin-bottom: 1.25rem; min-width: 0; }
.field-row { display: grid; gap: 0 16px; }
@media (min-width: 600px) { .field-row { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.field label { font-size: 0.9375rem; font-weight: 400; color: var(--c-text); }
.field .optional { color: var(--c-muted); font-size: 0.8125rem; }
.field input,
.field select,
.field textarea {
	width: 100%;
	min-height: 3.125rem;
	padding: 0.75rem 1.1rem;
	border: 1px solid #e2ded5;
	border-radius: 16px;
	background: var(--c-bg);
	font-size: 1.0625rem;
	font-weight: 400;
	color: var(--c-ink);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
	-webkit-appearance: none;
	appearance: none;
}
.field select {
	padding-right: 2.75rem;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%235d664a' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1rem center;
}
.field textarea { min-height: 8rem; resize: vertical; line-height: 1.5; }
.field input::placeholder,
.field textarea::placeholder { color: #a9a59c; opacity: 1; }
.field input:focus,
.field select:focus,
.field textarea:focus { outline: none; border-color: var(--c-olive); box-shadow: 0 0 0 3px rgba(93, 102, 74, 0.15); }
.field [aria-invalid="true"] { border-color: #b4553a; }
.form-note { margin-top: 1rem; font-size: 0.8125rem; text-align: center; color: var(--c-muted); }
.form-note a { text-decoration: underline; text-underline-offset: 3px; }
.form-alert { margin-bottom: 1.25rem; padding: 14px 16px; border-radius: 14px; font-size: 0.9375rem; font-weight: 400; }
.form-alert.is-error { background: #f6e7e1; color: #7a3b26; }
.form-alert p + p { margin-top: 0.4rem; }
.hp-field { position: absolute !important; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-success:focus,
.form-alert:focus { outline: none; }

.form-success { text-align: center; }
.form-success .success-icon {
	display: grid;
	place-items: center;
	width: 56px; height: 56px;
	margin: 0 auto 1.25rem;
	border-radius: 50%;
	background: var(--c-olive);
	color: #fff;
}
.form-success-title { margin-bottom: 0.75rem; font-size: 2.25rem; }
.form-success p { margin-bottom: 1rem; font-size: 1.0625rem; }
.form-success .btn { margin-top: 0.5rem; }

/* ==========================================================================
   Blog
   ========================================================================== */
.post-grid { display: grid; gap: 48px 24px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .post-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .post-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.post-card-media { display: block; aspect-ratio: 4 / 3; margin-bottom: 1.25rem; overflow: hidden; border-radius: 20px; background: var(--c-bg-deep); }
.post-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.post-card:hover .post-card-media img { transform: scale(1.04); }
.post-card-meta { margin-bottom: 0.5rem; font-size: 0.8125rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--c-gold-ink); }
.post-card-title { margin-bottom: 0.6rem; font-size: 1.75rem; }
.post-card-excerpt { font-size: 1rem; }

.pagination { margin-top: clamp(48px, 5vw, 72px); }
.pagination .nav-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.pagination .page-numbers {
	display: grid;
	place-items: center;
	min-width: 44px; height: 44px;
	padding: 0 14px;
	border: 1px solid var(--c-line-strong);
	border-radius: 999px;
	color: var(--c-olive);
}
.pagination .page-numbers.current { background: var(--c-olive); border-color: var(--c-olive); color: #fff; }

/* ==========================================================================
   Editor content
   ========================================================================== */
.entry-content { font-size: 1.125rem; line-height: 1.75; }
.entry-content > * { margin-block: 0 1.4em; }
.entry-content > *:last-child { margin-bottom: 0; }
.entry-content h2 { margin: 2em 0 0.6em; font-size: clamp(1.9rem, 1.5rem + 1vw, 2.5rem); }
.entry-content h3 { margin: 1.7em 0 0.5em; font-size: clamp(1.5rem, 1.3rem + 0.6vw, 1.875rem); }
.entry-content h4 { margin: 1.5em 0 0.5em; font-size: 1.375rem; }
.entry-content > h2:first-child,
.entry-content > h3:first-child { margin-top: 0; }
.entry-content a:not(.wp-block-button__link) {
	color: var(--c-olive);
	text-decoration: underline;
	text-decoration-color: var(--c-gold);
	text-decoration-thickness: 1px;
	text-underline-offset: 4px;
}
.entry-content ul,
.entry-content ol { padding-left: 1.3em; }
.entry-content li + li { margin-top: 0.4em; }
.entry-content strong { color: var(--c-ink); }
.entry-content img { border-radius: 18px; }
.entry-content figure { margin-inline: 0; }
.entry-content figcaption { margin-top: 0.6rem; font-size: 0.9375rem; text-align: center; color: var(--c-muted); }
.entry-content blockquote {
	margin-inline: 0;
	padding-left: 1.4em;
	border-left: 2px solid var(--c-gold);
	font-family: var(--font-serif);
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.5;
	color: var(--c-ink);
}
.entry-content hr { border: 0; border-top: 1px solid var(--c-line); margin-block: 2.5em; }
.entry-content table { width: 100%; border-collapse: collapse; font-size: 1rem; }
.entry-content th,
.entry-content td { padding: 0.75rem; border-bottom: 1px solid var(--c-line); text-align: left; }
.entry-content .wp-block-button__link {
	display: inline-flex;
	align-items: center;
	padding: 0.85rem 2rem;
	border-radius: 999px;
	background: var(--c-olive);
	color: var(--c-cream);
	font-size: 1.0625rem;
	font-weight: 400;
	text-decoration: none;
}
.entry-content .is-style-outline .wp-block-button__link { background: transparent; border: 1px solid var(--c-line-strong); color: var(--c-olive); }
.entry-content .wp-block-gallery { gap: 12px; }
.entry-content .wp-block-gallery img { border-radius: 14px; }
.entry-content .alignwide { width: min(1200px, 100vw - 2 * var(--gutter)); max-width: none; margin-inline: calc(50% - min(600px, 50vw - var(--gutter))); }
.entry-content .alignfull { width: 100vw; max-width: none; margin-inline: calc(50% - 50vw); }
.entry-content .alignfull img { border-radius: 0; }
.entry-content .alignleft { float: left; margin: 0.3em 1.5em 1em 0; }
.entry-content .alignright { float: right; margin: 0.3em 0 1em 1.5em; }
.entry-content--wide > * { max-width: 760px; margin-inline: auto; }
.entry-content--wide > .alignwide,
.entry-content--wide > .alignfull { max-width: none; }
.home-content { padding-block: clamp(56px, 6vw, 96px); }
.page-links { margin-top: 2rem; }

/* ==========================================================================
   Admin-only hints (never shown to visitors)
   ========================================================================== */
.admin-hint {
	margin: 12px 0;
	padding: 14px 18px;
	border: 1px dashed #b9ae95;
	border-radius: 14px;
	background: #fffdf7;
	color: #5b5646;
	font-size: 0.9375rem;
	font-weight: 400;
	line-height: 1.5;
	text-align: left;
}
.admin-hint strong { color: #7a5d24; }
.admin-hint a { color: #5d664a; text-decoration: underline; text-underline-offset: 3px; }
.hero .admin-hint { max-width: 34rem; margin-bottom: 1.5rem; }

/* ==========================================================================
   Gentle reveal on scroll (only when JavaScript runs)
   ========================================================================== */
@media (prefers-reduced-motion: no-preference) {
	.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.9s ease, transform 0.9s var(--ease); }
	.js .reveal.is-visible { opacity: 1; transform: none; }
}

@media print {
	.site-header, .wa-float, .nav-toggle { display: none !important; }
	body { padding-top: 0; }
	.js .reveal { opacity: 1 !important; transform: none !important; }
}
