/* ============================================
   OPA SPA — Theme Styles
   Premium Medical Spa WordPress Block Theme
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
	--primary: #1A1A2E;
	--secondary: #C4A35A;
	--secondary-hover: #B8923E;
	--accent: #E8D5B7;
	--background: #FAF8F5;
	--text: #2D2D2D;
	--text-muted: #6B6B6B;
	--white: #FFFFFF;
	--shadow-soft: 0 4px 24px rgba(26, 26, 46, 0.08);
	--shadow-card: 0 8px 32px rgba(26, 26, 46, 0.1);
	--shadow-elevated: 0 16px 48px rgba(26, 26, 46, 0.12);
	--radius-sm: 8px;
	--radius-md: 12px;
	--radius-lg: 16px;
	--radius-xl: 24px;
	--font-heading: 'Playfair Display', serif;
	--font-body: 'Inter', sans-serif;
	--font-cta: 'Montserrat', sans-serif;
	--transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	--section-padding: 80px;
	--container-width: 1200px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	font-family: var(--font-body);
	font-size: 1rem;
	line-height: 1.7;
	color: var(--text);
	background-color: var(--background);
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

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

a {
	color: var(--secondary);
	text-decoration: none;
	transition: color var(--transition);
}

a:hover {
	color: var(--primary);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
	outline: 2px solid var(--secondary);
	outline-offset: 2px;
}

/* --- Typography --- */
h1, h2, h3, h4 {
	font-family: var(--font-heading);
	font-weight: 700;
	color: var(--primary);
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1.1; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); line-height: 1.2; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); line-height: 1.3; }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); line-height: 1.4; }

p {
	margin-bottom: 1rem;
}

.text-muted {
	color: var(--text-muted);
}

/* --- Container --- */
.container {
	width: 100%;
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 24px;
}

/* --- Buttons --- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: var(--font-cta);
	font-weight: 600;
	font-size: 0.9375rem;
	letter-spacing: 0.03em;
	padding: 14px 32px;
	border-radius: var(--radius-sm);
	border: 2px solid transparent;
	cursor: pointer;
	transition: background-color var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
	text-decoration: none;
	line-height: 1.4;
	white-space: nowrap;
}

.btn-primary {
	background-color: var(--secondary);
	color: var(--white);
	border-color: var(--secondary);
}

.btn-primary:hover {
	background-color: var(--secondary-hover);
	border-color: var(--secondary-hover);
	color: var(--white);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(196, 163, 90, 0.35);
}

.btn-outline {
	background-color: transparent;
	color: var(--white);
	border-color: var(--white);
}

.btn-outline:hover {
	background-color: var(--white);
	color: var(--primary);
	transform: translateY(-2px);
}

.btn-outline-dark {
	background-color: transparent;
	color: var(--primary);
	border-color: var(--primary);
}

.btn-outline-dark:hover {
	background-color: var(--primary);
	color: var(--white);
	transform: translateY(-2px);
}

.btn-sm {
	padding: 10px 24px;
	font-size: 0.875rem;
}

.btn-lg {
	padding: 18px 40px;
	font-size: 1rem;
}

/* --- Gold Divider --- */
.gold-divider {
	width: 60px;
	height: 3px;
	background: linear-gradient(90deg, var(--secondary), var(--accent));
	border: none;
	margin: 16px auto;
	border-radius: 2px;
}

.gold-divider-left {
	margin-left: 0;
}

/* --- Section Padding --- */
.section {
	padding: var(--section-padding) 0;
}

.section-sm {
	padding: 48px 0;
}

/* --- Section Headers --- */
.section-eyebrow {
	font-family: var(--font-cta);
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--secondary);
	margin-bottom: 12px;
	display: block;
}

.section-title {
	margin-bottom: 16px;
}

.section-subtitle {
	font-size: 1.125rem;
	color: var(--text-muted);
	max-width: 640px;
	margin: 0 auto 48px;
	line-height: 1.7;
}

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

/* ============================================
   HEADER
   ============================================ */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 16px 0;
	transition: background-color var(--transition), backdrop-filter var(--transition), box-shadow var(--transition), padding var(--transition);
	background-color: transparent;
}

.site-header.scrolled {
	background-color: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	box-shadow: 0 2px 20px rgba(26, 26, 46, 0.08);
	padding: 10px 0;
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 24px;
}

.site-logo {
	font-family: var(--font-heading);
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--white);
	text-decoration: none;
	letter-spacing: 0.05em;
	transition: color var(--transition);
}

.site-header.scrolled .site-logo {
	color: var(--primary);
}

.main-nav {
	display: none;
}

.main-nav ul {
	display: flex;
	list-style: none;
	gap: 36px;
	align-items: center;
}

.main-nav a {
	font-family: var(--font-body);
	font-size: 0.9375rem;
	font-weight: 500;
	color: var(--white);
	text-decoration: none;
	position: relative;
	padding: 4px 0;
	transition: color var(--transition);
}

.main-nav a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--secondary);
	transition: width var(--transition);
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
	width: 100%;
}

.site-header.scrolled .main-nav a {
	color: var(--text);
}

.site-header.scrolled .main-nav a:hover {
	color: var(--secondary);
}

.header-cta {
	display: none;
}

.header-cta .btn {
	padding: 10px 24px;
	font-size: 0.875rem;
}

/* Hamburger */
.mobile-menu-toggle {
	display: flex;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	z-index: 1001;
}

.mobile-menu-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background-color: var(--white);
	transition: transform var(--transition), opacity var(--transition), background-color var(--transition);
}

.site-header.scrolled .mobile-menu-toggle span {
	background-color: var(--primary);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
	transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Drawer */
.mobile-drawer {
	position: fixed;
	top: 0;
	right: -100%;
	width: min(380px, 85vw);
	height: 100vh;
	background-color: var(--primary);
	z-index: 999;
	padding: 100px 40px 40px;
	transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	overflow-y: auto;
	overscroll-behavior: contain;
}

.mobile-drawer.open {
	right: 0;
}

.mobile-drawer-overlay {
	position: fixed;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 998;
	opacity: 0;
	visibility: hidden;
	transition: opacity var(--transition), visibility var(--transition);
}

.mobile-drawer-overlay.open {
	opacity: 1;
	visibility: visible;
}

.mobile-drawer ul {
	list-style: none;
}

.mobile-drawer li {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-drawer a {
	display: block;
	font-family: var(--font-heading);
	font-size: 1.5rem;
	color: var(--white);
	padding: 20px 0;
	transition: color var(--transition);
}

.mobile-drawer a:hover {
	color: var(--secondary);
}

.mobile-drawer .btn {
	margin-top: 32px;
	width: 100%;
	text-align: center;
}

.mobile-drawer-contact {
	margin-top: 48px;
	padding-top: 32px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-drawer-contact a {
	font-family: var(--font-body);
	font-size: 1rem;
	padding: 8px 0;
	color: var(--accent);
}

@media (min-width: 768px) {
	.main-nav {
		display: block;
	}

	.header-cta {
		display: block;
	}

	.mobile-menu-toggle {
		display: none;
	}
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
	position: relative;
	min-height: 100vh;
	min-height: 100dvh;
	display: flex;
	align-items: center;
	overflow: hidden;
	background-color: var(--primary);
}

.hero-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	content-visibility: auto;
}

.hero-bg::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		rgba(26, 26, 46, 0.85) 0%,
		rgba(26, 26, 46, 0.6) 50%,
		rgba(26, 26, 46, 0.3) 100%
	);
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 680px;
	padding: 120px 24px 80px;
}

.hero .container {
	width: 100%;
}

.hero-eyebrow {
	font-family: var(--font-cta);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--secondary);
	margin-bottom: 20px;
	display: block;
}

.hero h1 {
	color: var(--white);
	margin-bottom: 20px;
	font-size: clamp(2.5rem, 6vw, 4.5rem);
}

.hero-subtitle {
	font-size: clamp(1rem, 2vw, 1.25rem);
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.7;
	margin-bottom: 36px;
	max-width: 540px;
}

.hero-ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 48px;
}

.hero-trust-bar {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	padding-top: 32px;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-trust-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.9);
	font-weight: 500;
}

.hero-trust-item svg {
	flex-shrink: 0;
	color: var(--secondary);
}

.scroll-indicator {
	position: absolute;
	bottom: 32px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	color: rgba(255, 255, 255, 0.6);
	animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-indicator span {
	font-size: 0.75rem;
	font-family: var(--font-cta);
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

@keyframes scrollBounce {
	0%, 100% { transform: translateX(-50%) translateY(0); }
	50% { transform: translateX(-50%) translateY(8px); }
}

/* Short Hero (Services, About, Contact) */
.hero-short {
	min-height: 40vh;
	padding-top: 100px;
}

.hero-short .hero-content {
	padding: 80px 24px 60px;
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

/* ============================================
   WELCOME SECTION
   ============================================ */
.welcome-section {
	padding: var(--section-padding) 0;
}

.welcome-content {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.welcome-content p {
	font-size: 1.125rem;
	line-height: 1.8;
	color: var(--text-muted);
}

/* ============================================
   TREATMENTS / CARDS
   ============================================ */
.treatments-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	margin-top: 48px;
}

@media (min-width: 640px) {
	.treatments-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.treatments-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.treatment-card {
	background: var(--white);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-soft);
	transition: transform var(--transition), box-shadow var(--transition);
	text-decoration: none;
	color: inherit;
	display: block;
}

.treatment-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-elevated);
	color: inherit;
}

.treatment-card-image {
	position: relative;
	height: 220px;
	overflow: hidden;
}

.treatment-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.treatment-card:hover .treatment-card-image img {
	transform: scale(1.05);
}

.treatment-card-body {
	padding: 28px;
}

.treatment-card-body h3 {
	font-size: 1.25rem;
	margin-bottom: 8px;
}

.treatment-card-body p {
	color: var(--text-muted);
	font-size: 0.9375rem;
	margin-bottom: 16px;
	line-height: 1.6;
}

.treatment-card-link {
	font-family: var(--font-cta);
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--secondary);
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: gap var(--transition);
}

.treatment-card:hover .treatment-card-link {
	gap: 10px;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-section {
	background-color: var(--primary);
	color: var(--white);
}

.why-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	margin-top: 48px;
}

@media (min-width: 768px) {
	.why-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.why-card {
	text-align: center;
	padding: 40px 24px;
}

.why-icon {
	width: 72px;
	height: 72px;
	margin: 0 auto 24px;
	background: rgba(196, 163, 90, 0.15);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.why-icon svg {
	width: 32px;
	height: 32px;
	color: var(--secondary);
}

.why-card h3 {
	color: var(--white);
	font-size: 1.4rem;
	margin-bottom: 16px;
}

.why-card p {
	color: rgba(255, 255, 255, 0.75);
	font-size: 0.9375rem;
	line-height: 1.7;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	margin-top: 48px;
}

@media (min-width: 768px) {
	.testimonials-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.testimonial-card {
	background: var(--white);
	border-radius: var(--radius-lg);
	padding: 36px;
	box-shadow: var(--shadow-soft);
	position: relative;
}

.testimonial-stars {
	display: flex;
	gap: 4px;
	margin-bottom: 16px;
}

.testimonial-stars svg {
	width: 18px;
	height: 18px;
	color: var(--secondary);
	fill: var(--secondary);
}

.testimonial-card blockquote {
	font-size: 1rem;
	line-height: 1.7;
	color: var(--text);
	font-style: italic;
	margin-bottom: 20px;
}

.testimonial-author {
	font-family: var(--font-cta);
	font-weight: 600;
	font-size: 0.9375rem;
	color: var(--primary);
}

.testimonial-detail {
	font-size: 0.8125rem;
	color: var(--text-muted);
	margin-top: 2px;
}

/* ============================================
   BEFORE & AFTER
   ============================================ */
.ba-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
	margin-top: 48px;
}

@media (min-width: 768px) {
	.ba-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.ba-card {
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: var(--white);
	box-shadow: var(--shadow-soft);
}

.ba-images {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.ba-images figure {
	position: relative;
	overflow: hidden;
	aspect-ratio: 1 / 1;
}

.ba-images img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ba-images figcaption {
	position: absolute;
	bottom: 8px;
	left: 8px;
	background: rgba(26, 26, 46, 0.75);
	color: var(--white);
	font-size: 0.6875rem;
	font-family: var(--font-cta);
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	padding: 4px 10px;
	border-radius: 4px;
}

.ba-card-body {
	padding: 20px 24px;
}

.ba-card-body h4 {
	font-size: 1.05rem;
	margin-bottom: 4px;
}

.ba-card-body p {
	font-size: 0.8125rem;
	color: var(--text-muted);
	margin: 0;
}

.ba-disclaimer {
	text-align: center;
	margin-top: 32px;
	font-size: 0.8125rem;
	color: var(--text-muted);
	font-style: italic;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
	background: linear-gradient(135deg, var(--primary) 0%, #2a2a4e 100%);
	color: var(--white);
	padding: 80px 0;
	text-align: center;
}

.cta-banner h2 {
	color: var(--white);
	margin-bottom: 16px;
}

.cta-banner p {
	font-size: 1.125rem;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 32px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.cta-banner .cta-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
	align-items: center;
}

.cta-banner .cta-phone {
	color: var(--secondary);
	font-family: var(--font-cta);
	font-weight: 600;
	font-size: 1.125rem;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.cta-banner .cta-phone:hover {
	color: var(--accent);
}

/* ============================================
   INSTAGRAM
   ============================================ */
.instagram-section {
	padding: var(--section-padding) 0 60px;
}

.instagram-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 8px;
	margin-top: 32px;
}

@media (min-width: 640px) {
	.instagram-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (min-width: 1024px) {
	.instagram-grid {
		grid-template-columns: repeat(6, 1fr);
	}
}

.instagram-item {
	position: relative;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: var(--radius-sm);
}

.instagram-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.instagram-item:hover img {
	transform: scale(1.08);
}

.instagram-item::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(26, 26, 46, 0);
	transition: background var(--transition);
	display: flex;
	align-items: center;
	justify-content: center;
}

.instagram-item:hover::after {
	background: rgba(26, 26, 46, 0.3);
}

.instagram-handle {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-cta);
	font-weight: 600;
	color: var(--secondary);
	margin-top: 24px;
	font-size: 1.0625rem;
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.services-category {
	padding-bottom: 60px;
	border-bottom: 1px solid rgba(196, 163, 90, 0.2);
	margin-bottom: 60px;
}

.services-category:last-child {
	border-bottom: none;
	margin-bottom: 0;
}

.services-category h2 {
	font-size: 1.6rem;
	margin-bottom: 8px;
}

.services-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
	margin-top: 32px;
}

@media (min-width: 640px) {
	.services-list {
		grid-template-columns: repeat(2, 1fr);
	}
}

.service-item {
	background: var(--white);
	border-radius: var(--radius-md);
	padding: 28px;
	box-shadow: var(--shadow-soft);
	transition: box-shadow var(--transition), transform var(--transition);
}

.service-item:hover {
	box-shadow: var(--shadow-card);
	transform: translateY(-3px);
}

.service-item h4 {
	font-size: 1.15rem;
	margin-bottom: 8px;
	color: var(--primary);
}

.service-item p {
	font-size: 0.9375rem;
	color: var(--text-muted);
	margin-bottom: 12px;
	line-height: 1.6;
}

.service-item .btn-sm {
	margin-top: 4px;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-story {
	max-width: 800px;
	margin: 0 auto;
}

.about-story p {
	font-size: 1.0625rem;
	line-height: 1.8;
	color: var(--text-muted);
}

.providers-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
	margin-top: 48px;
}

@media (min-width: 768px) {
	.providers-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.provider-card {
	background: var(--white);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-soft);
	text-align: center;
	transition: box-shadow var(--transition), transform var(--transition);
}

.provider-card:hover {
	box-shadow: var(--shadow-card);
	transform: translateY(-4px);
}

.provider-photo {
	height: 320px;
	overflow: hidden;
}

.provider-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
}

.provider-info {
	padding: 28px;
}

.provider-info h3 {
	font-size: 1.3rem;
	margin-bottom: 4px;
}

.provider-credentials {
	font-family: var(--font-cta);
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--secondary);
	letter-spacing: 0.05em;
	text-transform: uppercase;
	margin-bottom: 12px;
	display: block;
}

.provider-info p {
	font-size: 0.9375rem;
	color: var(--text-muted);
	line-height: 1.6;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	margin-top: 32px;
}

@media (min-width: 768px) {
	.gallery-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.gallery-item {
	border-radius: var(--radius-md);
	overflow: hidden;
	aspect-ratio: 4 / 3;
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

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

.values-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
	margin-top: 48px;
}

@media (min-width: 640px) {
	.values-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.values-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.value-card {
	text-align: center;
	padding: 32px 20px;
}

.value-icon {
	width: 64px;
	height: 64px;
	margin: 0 auto 20px;
	background: rgba(196, 163, 90, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.value-icon svg {
	width: 28px;
	height: 28px;
	color: var(--secondary);
}

.value-card h4 {
	margin-bottom: 8px;
}

.value-card p {
	font-size: 0.9375rem;
	color: var(--text-muted);
	line-height: 1.6;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 48px;
	margin-top: 48px;
}

@media (min-width: 768px) {
	.contact-grid {
		grid-template-columns: 1.2fr 0.8fr;
		gap: 64px;
	}
}

.contact-form {
	background: var(--white);
	border-radius: var(--radius-lg);
	padding: 40px;
	box-shadow: var(--shadow-soft);
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	font-family: var(--font-cta);
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.03em;
	color: var(--text);
	margin-bottom: 6px;
}

.form-group .required {
	color: #c0392b;
}

.form-control {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid #ddd;
	border-radius: var(--radius-sm);
	font-family: var(--font-body);
	font-size: 0.9375rem;
	color: var(--text);
	background: var(--background);
	transition: border-color var(--transition), box-shadow var(--transition);
	appearance: none;
}

.form-control:focus {
	border-color: var(--secondary);
	box-shadow: 0 0 0 3px rgba(196, 163, 90, 0.15);
}

.form-control:focus:not(:focus-visible) {
	outline: none;
}

.form-control:focus-visible {
	outline: 2px solid var(--secondary);
	outline-offset: 2px;
}

.form-control::placeholder {
	color: #aaa;
}

textarea.form-control {
	min-height: 120px;
	resize: vertical;
}

select.form-control {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B6B6B' d='M6 8.825a.7.7 0 0 1-.5-.206L1.83 4.95a.706.706 0 1 1 1-1L6 7.12l3.17-3.17a.706.706 0 1 1 1 1L6.5 8.619a.7.7 0 0 1-.5.206z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
	padding-right: 40px;
}

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

@media (max-width: 480px) {
	.form-row {
		grid-template-columns: 1fr;
	}
}

.contact-info-sidebar h3 {
	font-size: 1.3rem;
	margin-bottom: 24px;
}

.contact-detail {
	display: flex;
	gap: 16px;
	margin-bottom: 28px;
}

.contact-detail-icon {
	width: 48px;
	height: 48px;
	flex-shrink: 0;
	background: rgba(196, 163, 90, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.contact-detail-icon svg {
	width: 20px;
	height: 20px;
	color: var(--secondary);
}

.contact-detail-text h4 {
	font-size: 1rem;
	margin-bottom: 2px;
}

.contact-detail-text p,
.contact-detail-text a {
	font-size: 0.9375rem;
	color: var(--text-muted);
	margin: 0;
}

.contact-detail-text a:hover {
	color: var(--secondary);
}

.contact-hours {
	margin-top: 32px;
	padding-top: 32px;
	border-top: 1px solid rgba(196, 163, 90, 0.2);
}

.contact-hours h4 {
	font-size: 1.1rem;
	margin-bottom: 12px;
}

.hours-table {
	width: 100%;
}

.hours-table tr {
	display: flex;
	justify-content: space-between;
	padding: 6px 0;
}

.hours-table td:first-child {
	font-weight: 500;
	color: var(--text);
}

.hours-table td:last-child {
	color: var(--text-muted);
}

.contact-map {
	margin-top: 32px;
	border-radius: var(--radius-md);
	overflow: hidden;
	height: 220px;
	background: #e0ddd8;
}

.contact-map iframe {
	width: 100%;
	height: 100%;
	border: 0;
}

.form-success {
	background: #e8f5e9;
	border: 1px solid #a5d6a7;
	color: #2e7d32;
	padding: 16px 24px;
	border-radius: var(--radius-sm);
	margin-bottom: 24px;
	font-weight: 500;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
	background-color: var(--primary);
	color: rgba(255, 255, 255, 0.8);
	padding: 80px 0 0;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	padding-bottom: 60px;
}

@media (min-width: 640px) {
	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.footer-grid {
		grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
	}
}

.footer-col h4 {
	font-family: var(--font-heading);
	color: var(--white);
	font-size: 1.15rem;
	margin-bottom: 20px;
}

.footer-col p {
	font-size: 0.9375rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.65);
}

.footer-col ul {
	list-style: none;
}

.footer-col li {
	margin-bottom: 10px;
}

.footer-col a {
	color: rgba(255, 255, 255, 0.65);
	font-size: 0.9375rem;
	transition: color var(--transition);
}

.footer-col a:hover {
	color: var(--secondary);
}

.footer-social {
	display: flex;
	gap: 12px;
	margin-top: 20px;
}

.footer-social a {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color var(--transition);
}

.footer-social a:hover {
	background: var(--secondary);
}

.footer-social svg {
	width: 18px;
	height: 18px;
	color: var(--white);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 24px 0;
	text-align: center;
}

.footer-bottom p {
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.45);
	margin: 0;
}

.footer-disclaimer {
	max-width: 800px;
	margin: 0 auto 16px;
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.35);
	line-height: 1.5;
	text-align: center;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-up {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
	opacity: 1;
	transform: translateY(0);
}

/* Stagger children */
.stagger-children .fade-up:nth-child(1) { transition-delay: 0s; }
.stagger-children .fade-up:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .fade-up:nth-child(3) { transition-delay: 0.2s; }
.stagger-children .fade-up:nth-child(4) { transition-delay: 0.3s; }
.stagger-children .fade-up:nth-child(5) { transition-delay: 0.4s; }
.stagger-children .fade-up:nth-child(6) { transition-delay: 0.5s; }

/* ============================================
   UTILITY CLASSES
   ============================================ */
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* ============================================
   BLOG STYLES
   ============================================ */
.wp-block-post-template {
	gap: 32px;
}

.wp-block-post-template .wp-block-group.has-white-background-color {
	box-shadow: var(--shadow-soft);
	transition: transform var(--transition), box-shadow var(--transition);
	overflow: hidden;
}

.wp-block-post-template .wp-block-group.has-white-background-color:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-card);
}

.wp-block-post-template .wp-block-post-featured-image {
	margin: 0;
	height: 200px;
	overflow: hidden;
}

.wp-block-post-template .wp-block-post-featured-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.wp-block-post-template .wp-block-post-title a {
	color: var(--primary);
	text-decoration: none;
}

.wp-block-post-template .wp-block-post-title a:hover {
	color: var(--secondary);
}

.wp-block-post-excerpt__more-link {
	font-family: var(--font-cta);
	font-weight: 600;
	font-size: 0.875rem;
	color: var(--secondary);
}

/* Single post body content styling */
.wp-block-group .wp-block-post-content h2 {
	margin-top: 40px;
	margin-bottom: 16px;
	font-size: 1.6rem;
}

.wp-block-group .wp-block-post-content h3 {
	margin-top: 32px;
	margin-bottom: 12px;
	font-size: 1.3rem;
}

.wp-block-group .wp-block-post-content p {
	font-size: 1.0625rem;
	line-height: 1.8;
	color: var(--text-muted);
}

.wp-block-group .wp-block-post-content ul,
.wp-block-group .wp-block-post-content ol {
	padding-left: 24px;
	margin-bottom: 24px;
}

.wp-block-group .wp-block-post-content li {
	font-size: 1.0625rem;
	line-height: 1.8;
	color: var(--text-muted);
	margin-bottom: 8px;
}

.wp-block-group .wp-block-post-content a {
	color: var(--secondary);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.wp-block-group .wp-block-post-content blockquote {
	border-left: 4px solid var(--secondary);
	padding: 16px 24px;
	margin: 32px 0;
	background: rgba(196, 163, 90, 0.06);
	border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.wp-block-group .wp-block-post-content blockquote p {
	font-style: italic;
	color: var(--text);
}

/* Query pagination */
.wp-block-query-pagination {
	gap: 8px;
}

.wp-block-query-pagination .page-numbers,
.wp-block-query-pagination-previous,
.wp-block-query-pagination-next {
	padding: 8px 16px;
	border-radius: var(--radius-sm);
	font-family: var(--font-cta);
	font-weight: 600;
	font-size: 0.875rem;
	color: var(--text);
}

.wp-block-query-pagination .page-numbers.current {
	background: var(--secondary);
	color: var(--white);
}

@media (max-width: 767px) {
	:root {
		--section-padding: 56px;
	}

	.wp-block-post-template {
		grid-template-columns: 1fr !important;
	}
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}

	html {
		scroll-behavior: auto;
	}

	.fade-up {
		opacity: 1;
		transform: none;
	}

	.scroll-indicator {
		animation: none;
	}

	.treatment-card-image img,
	.instagram-item img,
	.gallery-item img {
		transition: none;
	}
}
