/**
 * Aura Hair & Beauty Atelier - Main Stylesheet
 * 
 * Palette:
 * --bg-primary: #F3EEE8
 * --bg-secondary: #F7F3EE
 * --text-primary: #151312
 * --text-secondary: #77716B
 * --accent-taupe: #9A7B5F
 * --border-light: #DED7CE
 * --bg-dark: #151312
 */

/* ==========================================================================
   1. CSS CUSTOM PROPERTIES (DESIGN SYSTEM TOKENS)
   ========================================================================== */
:root {
	/* Color Palette */
	--bg-primary: #F3EEE8;
	--bg-secondary: #F7F3EE;
	--bg-surface: #FFFFFF;
	--bg-dark: #151312;
	--bg-dark-surface: #1D1A19;
	--bg-dark-card: #23201E;

	--text-primary: #151312;
	--text-secondary: #77716B;
	--text-muted: #9E9790;
	--text-light: #F3EEE8;
	--text-light-secondary: #C7C0B8;

	--accent-taupe: #9A7B5F;
	--accent-taupe-light: #B4967A;
	--accent-taupe-dark: #7D634C;
	--accent-gold: #C5A880;

	--border-light: #DED7CE;
	--border-subtle: #E8E2D9;
	--border-dark: #2C2826;

	/* Typography */
	--font-serif: 'Cormorant Garamond', Garamond, 'Times New Roman', serif;
	--font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

	/* Sizing & Spacing */
	--header-height: 90px;
	--header-height-scrolled: 74px;
	--container-max: 1360px;
	--container-narrow: 1140px;
	--radius-sm: 4px;
	--radius-md: 8px;
	--radius-hero: 16px;
	--radius-full: 9999px;

	/* Transitions */
	--transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
	--transition-medium: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	--transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);

	/* Shadows */
	--shadow-sm: 0 2px 10px rgba(21, 19, 18, 0.04);
	--shadow-md: 0 8px 30px rgba(21, 19, 18, 0.08);
	--shadow-lg: 0 20px 50px rgba(21, 19, 18, 0.12);
	--shadow-modal: 0 25px 70px rgba(0, 0, 0, 0.35);
}

/* ==========================================================================
   2. GLOBAL RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

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

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

body.modal-open,
body.drawer-open {
	overflow: hidden;
}

img, svg, picture, video, iframe {
	display: block;
	max-width: 100%;
}

img {
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
	transition: color var(--transition-fast), opacity var(--transition-fast);
}

button {
	font-family: inherit;
	background: none;
	border: none;
	cursor: pointer;
}

ul, ol {
	list-style: none;
}

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

.screen-reader-text:focus {
	position: fixed;
	top: 10px;
	left: 10px;
	width: auto;
	height: auto;
	padding: 12px 24px;
	background: var(--bg-dark);
	color: var(--text-light);
	z-index: 10000;
	clip: auto;
}

/* Container Utilities */
.container,
.hero-container,
.gallery-container,
.team-container,
.reviews-container,
.cta-strip-container,
.contact-container,
.footer-container {
	width: 100%;
	max-width: var(--container-max);
	margin-left: auto;
	margin-right: auto;
	padding-left: clamp(1.25rem, 4vw, 3rem);
	padding-right: clamp(1.25rem, 4vw, 3rem);
}

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

/* ==========================================================================
   3. TYPOGRAPHY & SECTION HEADERS
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-serif);
	font-weight: 500;
	line-height: 1.15;
	color: var(--text-primary);
	letter-spacing: -0.01em;
}

.section-header {
	margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
	display: flex;
	flex-direction: column;
	width: 100%;
}

.section-header.text-center {
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	align-items: center;
	justify-content: center;
}

.section-eyebrow {
	display: block;
	width: 100%;
	text-align: center;
	font-family: var(--font-sans);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--accent-taupe);
	margin-bottom: 0.75rem;
}

.section-title {
	display: block;
	width: 100%;
	text-align: center;
	font-size: clamp(2.25rem, 4vw, 3.25rem);
	font-weight: 400;
	color: var(--text-primary);
	margin-bottom: 1rem;
}

.section-subtitle {
	display: block;
	width: 100%;
	text-align: center;
	font-size: clamp(1rem, 1.2vw, 1.125rem);
	color: var(--text-secondary);
	line-height: 1.7;
	font-weight: 300;
	max-width: 580px;
	margin-left: auto;
	margin-right: auto;
}

/* ==========================================================================
   4. BUTTONS & INTERACTIVE ELEMENTS
   ========================================================================== */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	padding: 0.95rem 1.85rem;
	font-family: var(--font-sans);
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	border-radius: var(--radius-sm);
	transition: all var(--transition-medium);
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

.btn-primary {
	background-color: var(--bg-dark);
	color: var(--text-light);
	border: 1px solid var(--bg-dark);
}

.btn-primary:hover {
	background-color: var(--accent-taupe);
	border-color: var(--accent-taupe);
	color: #FFFFFF;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(21, 19, 18, 0.15);
}

.btn-secondary {
	background-color: transparent;
	color: var(--text-primary);
	border: 1px solid var(--border-light);
}

.btn-secondary:hover {
	background-color: var(--bg-surface);
	border-color: var(--text-primary);
	color: var(--text-primary);
	transform: translateY(-2px);
}

.btn-luxury-light {
	background-color: var(--text-light);
	color: var(--bg-dark);
	border: 1px solid var(--text-light);
}

.btn-luxury-light:hover {
	background-color: var(--accent-gold);
	border-color: var(--accent-gold);
	color: var(--bg-dark);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-block {
	width: 100%;
}

.aura-icon {
	display: inline-block;
	vertical-align: middle;
	flex-shrink: 0;
}

/* ==========================================================================
   5. HEADER & NAVIGATION
   ========================================================================== */
.site-header {
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	height: var(--header-height);
	background-color: rgba(243, 238, 232, 0.94);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--border-light);
	z-index: 900;
	transition: height var(--transition-medium), background-color var(--transition-medium), box-shadow var(--transition-medium);
}

.site-header.is-scrolled {
	height: var(--header-height-scrolled);
	background-color: rgba(243, 238, 232, 0.98);
	box-shadow: 0 4px 20px rgba(21, 19, 18, 0.04);
}

.header-container {
	max-width: var(--container-max);
	height: 100%;
	margin: 0 auto;
	padding: 0 clamp(1.25rem, 4vw, 3rem);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

/* Brand / Logo */
.header-branding {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.brand-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: transform var(--transition-fast);
}

.brand-logo-link:hover {
	transform: scale(1.06);
}

.brand-logo-svg {
	width: 44px;
	height: 44px;
	color: var(--text-primary);
	transition: color 0.3s ease, transform 0.3s ease;
	display: block;
}

.brand-title {
	font-family: var(--font-serif);
	font-size: clamp(1.25rem, 1.8vw, 1.5rem);
	font-weight: 600;
	letter-spacing: 0.1em;
	color: var(--text-primary);
	line-height: 1.1;
	white-space: nowrap;
}

.brand-slogan {
	font-family: var(--font-sans);
	font-size: 0.53125rem;
	font-weight: 500;
	letter-spacing: 0.18em;
	color: var(--accent-taupe);
	margin-top: 3px;
	text-transform: uppercase;
}

/* Desktop Navigation */
.desktop-navigation {
	display: flex;
	align-items: center;
}

.nav-menu-list {
	display: flex;
	align-items: center;
	gap: clamp(1.25rem, 2.2vw, 2.5rem);
}

.nav-link {
	font-family: var(--font-sans);
	font-size: 0.8125rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	color: var(--text-primary);
	text-transform: uppercase;
	position: relative;
	padding: 0.4rem 0;
	transition: color var(--transition-fast);
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 1px;
	background-color: var(--text-primary);
	transition: width var(--transition-medium);
}

.nav-link:hover,
.nav-link.active {
	color: var(--accent-taupe);
}

.nav-link:hover::after,
.nav-link.active::after {
	width: 100%;
	background-color: var(--accent-taupe);
}

/* Header Actions */
.header-actions {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.btn-header-cta {
	padding: 0.75rem 1.4rem;
	font-size: 0.75rem;
	background-color: var(--bg-dark);
	color: var(--text-light);
	border: 1px solid var(--bg-dark);
}

.btn-header-cta:hover {
	background-color: var(--accent-taupe);
	border-color: var(--accent-taupe);
	color: #FFFFFF;
}

/* Hamburger Toggle Button */
.mobile-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 6px;
	width: 44px;
	height: 44px;
	padding: 8px;
	border-radius: var(--radius-sm);
	color: var(--text-primary);
}

.hamburger-bar {
	display: block;
	width: 22px;
	height: 1.5px;
	background-color: var(--text-primary);
	transition: transform var(--transition-fast), opacity var(--transition-fast);
}

/* ==========================================================================
   6. MOBILE NAVIGATION DRAWER
   ========================================================================== */
.mobile-drawer {
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	height: 100vh;
	height: 100dvh;
	z-index: 1000;
	visibility: hidden;
	transition: visibility 0.4s ease;
}

.mobile-drawer.is-open {
	visibility: visible;
}

.mobile-drawer-backdrop {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(21, 19, 18, 0.6);
	backdrop-filter: blur(6px);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.mobile-drawer.is-open .mobile-drawer-backdrop {
	opacity: 1;
}

.mobile-drawer-inner {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	max-width: 380px;
	height: 100%;
	background-color: var(--bg-primary);
	border-left: 1px solid var(--border-light);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 2rem 1.75rem;
	transform: translateX(100%);
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	overflow-y: auto;
}

.mobile-drawer.is-open .mobile-drawer-inner {
	transform: translateX(0);
}

.mobile-drawer-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid var(--border-light);
}

.mobile-drawer-close {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-primary);
	border-radius: 50%;
	background-color: var(--bg-secondary);
	transition: background-color var(--transition-fast);
}

.mobile-menu-list {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	padding: 2rem 0;
}

.mobile-link {
	font-family: var(--font-serif);
	font-size: 1.625rem;
	font-weight: 500;
	color: var(--text-primary);
	display: block;
	transition: color var(--transition-fast), transform var(--transition-fast);
}

.mobile-link:hover {
	color: var(--accent-taupe);
	transform: translateX(6px);
}

.mobile-drawer-footer {
	padding-top: 1.5rem;
	border-top: 1px solid var(--border-light);
}

.mobile-contact-snippet {
	margin-top: 1.25rem;
	font-size: 0.8125rem;
	color: var(--text-secondary);
	line-height: 1.6;
}

.mobile-phone a {
	color: var(--accent-taupe);
	font-weight: 600;
}

/* ==========================================================================
   7. HERO SECTION (EDITORIAL 2-COL + 3-IMAGE COLLAGE)
   ========================================================================== */
.hero-section {
	position: relative;
	background-color: var(--bg-primary);
	min-height: calc(100vh - var(--header-height));
	display: flex;
	align-items: center;
	padding-top: clamp(2rem, 4vw, 3.5rem);
	padding-bottom: clamp(3rem, 5vw, 5rem);
	overflow: hidden;
	position: relative;
}

/* Mobile Background Slider (Hidden on Desktop) */
.hero-mobile-bg-slider {
	display: none;
}

.hero-container {
	display: grid;
	grid-template-columns: 1.12fr 0.88fr;
	gap: clamp(2rem, 5vw, 5rem);
	align-items: center;
}

/* Left Hero Content */
.hero-content {
	display: flex;
	flex-direction: column;
	z-index: 2;
}

.hero-eyebrow-wrap {
	margin-bottom: 1.25rem;
}

.hero-eyebrow {
	font-family: var(--font-sans);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--accent-taupe);
}

.hero-headline {
	font-size: clamp(2.75rem, 5.2vw, 4.75rem);
	font-weight: 400;
	line-height: 1.05;
	letter-spacing: -0.02em;
	margin-bottom: 1.25rem;
	color: var(--text-primary);
}

.headline-line-wrap {
	display: block;
	overflow: hidden;
}

.headline-line {
	display: block;
}

.hero-subtitle {
	font-family: var(--font-serif);
	font-size: clamp(1.25rem, 2vw, 1.625rem);
	font-weight: 400;
	color: var(--accent-taupe-dark);
	margin-bottom: 1.25rem;
	line-height: 1.35;
}

.hero-subtitle em {
	font-style: italic;
}

.hero-description {
	font-size: clamp(0.9375rem, 1.1vw, 1.0625rem);
	color: var(--text-secondary);
	max-width: 520px;
	line-height: 1.7;
	margin-bottom: 2rem;
	font-weight: 300;
}

/* Hero Actions */
.hero-actions {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
	flex-wrap: wrap;
}

.btn-hero-cta {
	padding: 1rem 2rem;
	font-size: 0.8125rem;
	letter-spacing: 0.14em;
}

.hero-secondary-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.95rem 1.65rem;
	background-color: rgba(255, 255, 255, 0.6);
	border: 1px solid var(--border-light);
	border-radius: var(--radius-sm);
	font-family: var(--font-sans);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--text-primary);
	transition: all var(--transition-medium);
}

.hero-secondary-btn .arrow-symbol {
	transition: transform var(--transition-fast);
}

.hero-secondary-btn:hover {
	background-color: #FFFFFF;
	border-color: var(--accent-taupe);
	color: var(--accent-taupe);
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(21, 19, 18, 0.06);
}

.hero-secondary-btn:hover .arrow-symbol {
	transform: translateX(4px);
}

/* Hero Mobile Image (Hidden on desktop) */
.hero-mobile-image-wrap {
	display: none;
	margin: 1.5rem 0 2rem 0;
}

.hero-mobile-img-card {
	position: relative;
	border-radius: var(--radius-hero);
	overflow: hidden;
	box-shadow: var(--shadow-md);
	aspect-ratio: 4 / 5;
}

.hero-mobile-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-mobile-badge {
	position: absolute;
	bottom: 16px;
	right: 16px;
	background-color: rgba(21, 19, 18, 0.85);
	backdrop-filter: blur(8px);
	color: var(--text-light);
	padding: 6px 14px;
	border-radius: var(--radius-full);
	font-family: var(--font-serif);
	font-style: italic;
	font-size: 0.875rem;
	border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Trust Indicators (4 items with vertical dividers matching reference) */
.hero-trust-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border-top: 1px solid var(--border-light);
	padding-top: 1.75rem;
}

.trust-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 0.6rem;
	padding: 0 0.5rem;
}

.trust-item:not(:last-child) {
	border-right: 1px solid var(--border-light);
}

.trust-icon-box {
	color: var(--text-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	height: 26px;
}

.trust-text {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.trust-label-top,
.trust-label-bottom {
	font-family: var(--font-sans);
	font-size: 0.625rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	line-height: 1.35;
	color: var(--text-primary);
}

.trust-label-bottom {
	color: var(--text-secondary);
}

/* Right Hero Visual / Reference 3-Image Composition */
.hero-visual {
	position: relative;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero-ref-composition {
	position: relative;
	width: 100%;
	max-width: 580px;
	height: 560px;
}

.ref-layer {
	position: absolute;
	border-radius: 20px;
	overflow: hidden;
	transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.ref-frame-inner {
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: relative;
}

.ref-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.8s ease;
}

.ref-layer:hover .ref-img {
	transform: scale(1.03);
}

/* 1. Top-Left Frame (Extended 15% to the left) */
.frame-top-left {
	width: 275px;
	height: 290px;
	top: 0;
	left: -38px;
	z-index: 1;
	border: 1.5px solid #FFFFFF;
	box-shadow: 0 10px 28px rgba(21, 19, 18, 0.08);
}

/* 2. Bottom-Left Frame (Brunette Salon Portrait) */
.frame-bottom-left {
	width: 295px;
	height: 335px;
	top: 220px;
	left: 12px;
	z-index: 3;
	border: 1.5px solid #FFFFFF;
	box-shadow: 0 16px 40px rgba(21, 19, 18, 0.12);
}

/* 3. Main Right Frame (Blonde Wavy Hair Portrait) */
.frame-main-right {
	width: 325px;
	height: 465px;
	top: 22px;
	right: 25px;
	z-index: 2;
	border: 1.5px solid #FFFFFF;
	box-shadow: 0 18px 45px rgba(21, 19, 18, 0.1);
}

/* 4. Circular Monogram Badge */
.ref-monogram-badge {
	position: absolute;
	top: 178px;
	left: 172px;
	z-index: 4;
	width: 90px;
	height: 90px;
}

.ref-badge-disc {
	position: relative;
	width: 100%;
	height: 100%;
	background-color: #A28265;
	border: 1.5px solid #FFFFFF;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 24px rgba(21, 19, 18, 0.22);
}

.ref-badge-circular-text {
	position: absolute;
	width: 100%;
	height: 100%;
	animation: rotateBadge 20s linear infinite;
	fill: #FFFFFF;
}

.ref-badge-core {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #FFFFFF;
	font-family: var(--font-serif);
	font-size: 1.15rem;
	font-weight: 500;
}

/* 5. Cursive Script Signature (Glow With Aura) */
.ref-script-signature {
	position: absolute;
	top: 175px;
	right: -10px;
	z-index: 3;
	display: flex;
	flex-direction: column;
	font-family: 'Cormorant Garamond', Garamond, serif;
	font-style: italic;
	font-size: 2.15rem;
	line-height: 1.02;
	color: #9A7B5F;
	pointer-events: none;
	user-select: none;
	filter: drop-shadow(0 2px 6px rgba(255, 255, 255, 0.6));
}

.script-word {
	display: block;
}

/* 6. Floating Services Mini-Card */
.ref-floating-services-card {
	position: absolute;
	bottom: 50px;
	right: -15px;
	z-index: 5;
	background-color: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(10px);
	border: 1px solid var(--border-light);
	border-radius: 12px;
	padding: 1.15rem 1.45rem;
	box-shadow: 0 14px 35px rgba(21, 19, 18, 0.1);
	min-width: 165px;
}

.ref-services-list {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
}

.ref-services-list li {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	font-family: var(--font-sans);
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--text-primary);
}

.ref-star {
	color: var(--accent-taupe);
	font-size: 0.8125rem;
	line-height: 1;
}

/* ==========================================================================
   8. HERO ENTRANCE ANIMATIONS (ORGANIC SOFT LEFT/RIGHT DRIFT - ZERO LAG)
   ========================================================================== */
.hero-drift-left,
.hero-drift-right,
.hero-drift-top-left,
.hero-drift-bottom-left,
.hero-drift-bottom-right,
.hero-drift-badge {
	will-change: transform, opacity;
	animation-duration: 0.95s;
	animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
	animation-fill-mode: both;
}

/* Organic Departure Offsets */
.hero-drift-left {
	animation-name: heroDriftLeft;
}

.hero-drift-right {
	animation-name: heroDriftRight;
}

.hero-drift-top-left {
	animation-name: heroDriftTopLeft;
}

.hero-drift-bottom-left {
	animation-name: heroDriftBottomLeft;
}

.hero-drift-bottom-right {
	animation-name: heroDriftBottomRight;
}

.hero-drift-badge {
	animation-name: heroDriftBadge;
}

/* Fast, Fluid Micro-Delays (Everything arrives in under 0.55s) */
.hero-d-1 { animation-delay: 0.05s; }
.hero-d-2 { animation-delay: 0.12s; }
.hero-d-3 { animation-delay: 0.20s; }
.hero-d-4 { animation-delay: 0.28s; }
.hero-d-5 { animation-delay: 0.36s; }
.hero-d-6 { animation-delay: 0.44s; }

@keyframes heroDriftLeft {
	0% {
		opacity: 0;
		transform: translateX(-40px) translateY(8px);
	}
	100% {
		opacity: 1;
		transform: translate(0, 0);
	}
}

@keyframes heroDriftRight {
	0% {
		opacity: 0;
		transform: translateX(40px) translateY(8px);
	}
	100% {
		opacity: 1;
		transform: translate(0, 0);
	}
}

@keyframes heroDriftTopLeft {
	0% {
		opacity: 0;
		transform: translateX(-50px) translateY(-35px) scale(0.95) rotate(-1deg);
	}
	100% {
		opacity: 1;
		transform: translate(0, 0) scale(1) rotate(0deg);
	}
}

@keyframes heroDriftBottomLeft {
	0% {
		opacity: 0;
		transform: translateX(-45px) translateY(45px) scale(0.95) rotate(1deg);
	}
	100% {
		opacity: 1;
		transform: translate(0, 0) scale(1) rotate(0deg);
	}
}

@keyframes heroDriftBottomRight {
	0% {
		opacity: 0;
		transform: translateX(45px) translateY(35px);
	}
	100% {
		opacity: 1;
		transform: translate(0, 0);
	}
}

@keyframes heroDriftBadge {
	0% {
		opacity: 0;
		transform: translateX(30px) translateY(-30px) scale(0.6) rotate(-25deg);
	}
	100% {
		opacity: 1;
		transform: translate(0, 0) scale(1) rotate(0deg);
	}
}

/* ==========================================================================
   9. SERVICES SECTION (ZERO-GAP 3x2 FULLWIDTH GRID)
   ========================================================================== */
.services-section {
	padding-top: clamp(4rem, 7vw, 7rem);
	background-color: var(--bg-primary);
}

.services-fullwidth-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	width: 100%;
	border-top: 1px solid var(--border-light);
	border-bottom: 1px solid var(--border-light);
}

.service-card {
	position: relative;
	aspect-ratio: 4 / 4.6;
	overflow: hidden;
	cursor: pointer;
	border-right: 1px solid rgba(255, 255, 255, 0.1);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	background-color: var(--bg-dark);
	outline: none;
}

@media (min-width: 992px) {
	.service-card:nth-child(3n) {
		border-right: none;
	}
	.service-card:nth-child(n+4) {
		border-bottom: none;
	}
}

.service-card:focus-visible {
	outline: 2px solid var(--accent-gold);
	outline-offset: -2px;
	z-index: 5;
}

.service-card-media {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.service-card-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1);
	transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}

.service-card:hover .service-card-img {
	transform: scale(1.05);
	filter: brightness(0.9);
}

/* Dark Gradient Overlay */
.service-card-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(21, 19, 18, 0.05) 0%, rgba(21, 19, 18, 0.3) 40%, rgba(21, 19, 18, 0.9) 100%);
	transition: opacity 0.4s ease;
}

.service-card:hover .service-card-overlay {
	background: linear-gradient(180deg, rgba(21, 19, 18, 0.1) 0%, rgba(21, 19, 18, 0.45) 35%, rgba(21, 19, 18, 0.95) 100%);
}

/* Card Body Content */
.service-card-body {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: clamp(1.25rem, 2.2vw, 2rem);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	z-index: 2;
	color: var(--text-light);
}

.service-meta-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.service-number {
	font-family: var(--font-sans);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	color: var(--accent-gold);
}

.service-arrow {
	font-size: 1.25rem;
	color: var(--text-light);
	opacity: 0.65;
	transform: translate(0, 0);
	transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.service-card:hover .service-arrow {
	opacity: 1;
	transform: translate(3px, -3px);
	color: var(--accent-gold);
}

.service-meta-bottom {
	transform: translateY(6px);
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-meta-bottom {
	transform: translateY(0);
}

.service-title {
	font-family: var(--font-serif);
	font-size: clamp(1.35rem, 1.8vw, 1.75rem);
	font-weight: 500;
	color: #FFFFFF;
	margin-bottom: 0.4rem;
	line-height: 1.2;
}

.service-desc {
	font-size: 0.8125rem;
	color: var(--text-light-secondary);
	line-height: 1.5;
	margin-bottom: 0.6rem;
	font-weight: 300;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.service-cta-hint {
	display: inline-block;
	font-family: var(--font-sans);
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--accent-gold);
	opacity: 0;
	transform: translateY(4px);
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.service-card:hover .service-cta-hint {
	opacity: 1;
	transform: translateY(0);
}

/* ==========================================================================
   10. SERVICE MODAL POPUP
   ========================================================================== */
.aura-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	height: 100dvh;
	z-index: 2000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(1rem, 3vw, 2.5rem);
	visibility: hidden;
	opacity: 0;
	transition: visibility 0.35s ease, opacity 0.35s ease;
}

.aura-modal.is-active {
	visibility: visible;
	opacity: 1;
}

.aura-modal-backdrop {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(15, 13, 12, 0.75);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.aura-modal-dialog {
	position: relative;
	width: 100%;
	max-width: 900px;
	max-height: 90vh;
	background-color: var(--bg-primary);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-modal);
	border: 1px solid var(--border-light);
	overflow: hidden;
	z-index: 2;
	transform: scale(0.94) translateY(15px);
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	display: flex;
	flex-direction: column;
}

.aura-modal.is-active .aura-modal-dialog {
	transform: scale(1) translateY(0);
}

.aura-modal-close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: rgba(243, 238, 232, 0.85);
	backdrop-filter: blur(8px);
	color: var(--text-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
	box-shadow: var(--shadow-sm);
	transition: transform var(--transition-fast), background-color var(--transition-fast);
}

.aura-modal-close:hover {
	transform: rotate(90deg);
	background-color: var(--bg-dark);
	color: var(--text-light);
}

.aura-modal-content-grid {
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	overflow-y: auto;
	max-height: calc(90vh - 2px);
}

.aura-modal-media {
	position: relative;
	background-color: var(--bg-dark);
	min-height: 380px;
}

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

.modal-media-badge {
	position: absolute;
	top: 20px;
	left: 20px;
	background-color: rgba(21, 19, 18, 0.85);
	backdrop-filter: blur(6px);
	color: var(--accent-gold);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: 0.875rem;
}

.aura-modal-info {
	padding: clamp(1.75rem, 3.5vw, 3rem);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.modal-header-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 0.75rem;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.modal-eyebrow {
	font-family: var(--font-sans);
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--accent-taupe);
}

.modal-pills {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.pill {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.3rem 0.75rem;
	border-radius: var(--radius-full);
	font-size: 0.75rem;
	font-weight: 600;
}

.pill-duration {
	background-color: var(--bg-secondary);
	color: var(--text-secondary);
	border: 1px solid var(--border-light);
}

.pill-price {
	background-color: rgba(154, 123, 95, 0.12);
	color: var(--accent-taupe-dark);
}

.modal-title {
	font-size: clamp(1.75rem, 2.5vw, 2.25rem);
	color: var(--text-primary);
	margin-bottom: 1.25rem;
}

.modal-desc-content {
	font-size: 0.9375rem;
	color: var(--text-secondary);
	line-height: 1.7;
	margin-bottom: 1.5rem;
	font-weight: 300;
}

.modal-features-list {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	margin-bottom: 2rem;
	padding: 1.25rem;
	background-color: var(--bg-secondary);
	border-radius: var(--radius-sm);
	border: 1px solid var(--border-light);
}

.modal-feature-item {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	font-size: 0.8125rem;
	color: var(--text-primary);
}

.feature-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: var(--accent-taupe);
	flex-shrink: 0;
}

.modal-cta-btn {
	padding: 1.05rem;
}

.modal-note {
	margin-top: 0.75rem;
	font-size: 0.75rem;
	color: var(--text-muted);
	text-align: center;
	line-height: 1.4;
}

/* ==========================================================================
   11. SALON GALLERY SECTION (ASYMMETRIC 5-IMAGE)
   ========================================================================== */
.gallery-section {
	padding-top: clamp(4.5rem, 7vw, 7.5rem);
	padding-bottom: clamp(4.5rem, 7vw, 7.5rem);
	background-color: var(--bg-secondary);
}

.gallery-editorial-grid {
	display: flex;
	flex-direction: column;
	gap: clamp(1rem, 2vw, 1.75rem);
}

.gallery-row {
	display: grid;
	gap: clamp(1rem, 2vw, 1.75rem);
}

.gallery-row-top {
	grid-template-columns: 1.25fr 0.75fr;
}

.gallery-stack-col {
	display: grid;
	grid-template-rows: 1fr 1fr;
	gap: clamp(1rem, 2vw, 1.75rem);
}

.gallery-row-bottom {
	grid-template-columns: 0.95fr 1.05fr;
}

.gallery-item {
	position: relative;
	border-radius: var(--radius-sm);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
}

.gallery-img-wrap {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.gallery-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.gallery-caption-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 1.5rem;
	background: linear-gradient(180deg, rgba(21, 19, 18, 0) 0%, rgba(21, 19, 18, 0.7) 100%);
	color: #FFFFFF;
	opacity: 0;
	transform: translateY(8px);
	transition: opacity 0.35s ease, transform 0.35s ease;
}

.gallery-item:hover .gallery-caption-overlay {
	opacity: 1;
	transform: translateY(0);
}

.gallery-caption-text {
	font-family: var(--font-serif);
	font-style: italic;
	font-size: 1.0625rem;
	letter-spacing: 0.02em;
}

/* Height definitions for asymmetric gallery */
.item-large { min-height: 480px; }
.item-stacked { min-height: 225px; }
.item-wide { min-height: 380px; }
.item-portrait { min-height: 380px; }

/* Instagram Callout Banner Card */
.gallery-instagram-banner {
	margin-top: clamp(2rem, 4vw, 3.5rem);
	background: rgba(255, 255, 255, 0.88);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border: 1px solid rgba(154, 123, 95, 0.2);
	border-radius: 18px;
	padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1.75rem, 4vw, 3rem);
	box-shadow: 0 10px 30px rgba(21, 19, 18, 0.04);
	transition: all 0.5s var(--ease-luxury);
}

.gallery-instagram-banner:hover {
	background: #FFFFFF;
	border-color: var(--accent-taupe);
	transform: translateY(-3px);
	box-shadow: 0 16px 40px rgba(21, 19, 18, 0.08);
}

.instagram-banner-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

.instagram-banner-left {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.instagram-badge-icon {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background-color: var(--bg-secondary);
	border: 1px solid var(--border-light);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--accent-taupe);
	flex-shrink: 0;
	transition: transform 0.4s ease, background-color 0.4s ease, color 0.4s ease;
}

.gallery-instagram-banner:hover .instagram-badge-icon {
	background-color: var(--accent-taupe);
	color: #FFFFFF;
	transform: rotate(8deg) scale(1.05);
}

.instagram-banner-text {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.instagram-banner-eyebrow {
	font-family: var(--font-sans);
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--accent-taupe);
}

.instagram-banner-title {
	font-family: var(--font-serif);
	font-size: clamp(1.25rem, 2vw, 1.625rem);
	font-weight: 500;
	color: var(--text-primary);
	line-height: 1.2;
}

.instagram-banner-desc {
	font-size: 0.875rem;
	color: var(--text-secondary);
	line-height: 1.5;
	max-width: 600px;
	margin: 0;
}

.btn-instagram-cta {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	padding: 0.85rem 1.65rem;
	background-color: var(--bg-dark);
	color: var(--text-light);
	border-radius: var(--radius-full);
	font-family: var(--font-sans);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	white-space: nowrap;
	transition: all 0.35s ease;
	border: 1px solid var(--bg-dark);
}

.btn-instagram-cta .ig-arrow {
	transition: transform 0.3s ease;
}

.btn-instagram-cta:hover {
	background-color: var(--accent-taupe);
	border-color: var(--accent-taupe);
	color: #FFFFFF;
	box-shadow: 0 6px 18px rgba(154, 123, 95, 0.25);
	transform: translateY(-2px);
}

.btn-instagram-cta:hover .ig-arrow {
	transform: translate(3px, -3px);
}

/* ==========================================================================
   12. TEAM SECTION (3-COLUMN STYLISTS)
   ========================================================================== */
.team-section {
	padding-top: clamp(4.5rem, 7vw, 7.5rem);
	padding-bottom: clamp(4.5rem, 7vw, 7.5rem);
	background-color: var(--bg-primary);
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(1.5rem, 3vw, 2.75rem);
}

.team-card {
	display: flex;
	flex-direction: column;
}

.team-media-wrap {
	position: relative;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	border-radius: var(--radius-sm);
	margin-bottom: 1.25rem;
	background-color: var(--bg-secondary);
}

.team-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-card:hover .team-img {
	transform: scale(1.04);
}

.team-exp-badge {
	position: absolute;
	top: 14px;
	left: 14px;
	background-color: rgba(243, 238, 232, 0.9);
	backdrop-filter: blur(6px);
	padding: 4px 10px;
	border-radius: var(--radius-sm);
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	color: var(--accent-taupe-dark);
}

.team-info {
	display: flex;
	flex-direction: column;
}

.team-meta-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 0.25rem;
}

.team-name {
	font-size: 1.5rem;
	font-weight: 500;
	color: var(--text-primary);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.team-instagram-link {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--accent-taupe);
	transition: color var(--transition-fast);
}

.team-instagram-link:hover {
	color: var(--text-primary);
}

.team-role {
	font-family: var(--font-serif);
	font-style: italic;
	font-size: 1.0625rem;
	color: var(--accent-taupe-dark);
	margin-bottom: 0.5rem;
}

.team-specialties {
	font-size: 0.8125rem;
	color: var(--text-secondary);
	line-height: 1.5;
	font-weight: 300;
}

/* ==========================================================================
   13. GOOGLE REVIEWS SECTION
   ========================================================================== */
.reviews-section {
	padding-top: clamp(4.5rem, 7vw, 7.5rem);
	padding-bottom: clamp(4.5rem, 7vw, 7.5rem);
	background-color: var(--bg-secondary);
}

.google-rating-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.6rem 1.4rem;
	background-color: var(--bg-surface);
	border: 1px solid var(--border-light);
	border-radius: var(--radius-full);
	box-shadow: var(--shadow-sm);
	margin-top: 1.25rem;
}

.google-badge-score {
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

.score-num {
	font-weight: 700;
	font-size: 1rem;
	color: var(--text-primary);
}

.stars-row {
	display: flex;
	gap: 2px;
	color: #E6A838;
}

.google-badge-label {
	font-size: 0.75rem;
	font-weight: 500;
	color: var(--text-secondary);
	border-left: 1px solid var(--border-light);
	padding-left: 0.75rem;
}

.reviews-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(1.25rem, 2.5vw, 2rem);
	margin-top: 3rem;
	margin-bottom: 3rem;
}

.review-card {
	background-color: var(--bg-surface);
	border: 1px solid var(--border-light);
	border-radius: var(--radius-md);
	padding: clamp(1.5rem, 2.5vw, 2rem);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	box-shadow: var(--shadow-sm);
	transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

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

.review-card-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1rem;
}

.reviewer-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: var(--accent-taupe);
	color: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: 1rem;
}

.reviewer-meta {
	display: flex;
	flex-direction: column;
	flex: 1;
	margin-left: 0.85rem;
}

.reviewer-name {
	font-weight: 600;
	font-size: 0.9375rem;
	color: var(--text-primary);
}

.review-time {
	font-size: 0.75rem;
	color: var(--text-muted);
}

.review-stars-row {
	display: flex;
	gap: 3px;
	margin-bottom: 1rem;
}

.star-icon-small {
	width: 14px;
	height: 14px;
}

.review-quote {
	font-size: 0.9375rem;
	color: var(--text-secondary);
	line-height: 1.65;
	margin-bottom: 1.5rem;
	font-weight: 300;
}

.review-card-footer {
	padding-top: 1rem;
	border-top: 1px solid var(--border-subtle);
}

.verified-badge {
	font-size: 0.6875rem;
	font-weight: 600;
	color: #2E7D32;
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
}

.btn-reviews-all {
	padding: 0.85rem 1.8rem;
}

/* ==========================================================================
   14. APPOINTMENT CTA STRIP (DARK HIGH-IMPACT)
   ========================================================================== */
.cta-strip-section {
	position: relative;
	background-color: var(--bg-dark);
	color: var(--text-light);
	padding: clamp(5rem, 8vw, 8rem) 0;
	overflow: hidden;
	text-align: center;
}

.cta-bg-watermark {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-family: var(--font-serif);
	font-size: clamp(8rem, 22vw, 22rem);
	font-weight: 600;
	letter-spacing: 0.2em;
	color: rgba(255, 255, 255, 0.025);
	pointer-events: none;
	user-select: none;
	white-space: nowrap;
}

.cta-strip-content {
	position: relative;
	z-index: 2;
	max-width: 720px;
	margin: 0 auto;
}

.cta-eyebrow {
	display: inline-block;
	font-family: var(--font-sans);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--accent-gold);
	margin-bottom: 1.25rem;
}

.cta-headline {
	font-size: clamp(2.5rem, 4.5vw, 3.75rem);
	font-weight: 400;
	color: #FFFFFF;
	margin-bottom: 1.25rem;
	line-height: 1.15;
}

.cta-description {
	font-size: 1.0625rem;
	color: var(--text-light-secondary);
	line-height: 1.7;
	margin-bottom: 2.5rem;
	font-weight: 300;
}

/* ==========================================================================
   15. CONTACT SECTION & GOOGLE MAPS
   ========================================================================== */
.contact-section {
	padding-top: clamp(4.5rem, 7vw, 7.5rem);
	padding-bottom: clamp(4.5rem, 7vw, 7.5rem);
	background-color: var(--bg-primary);
}

.contact-two-columns {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2rem, 5vw, 4.5rem);
	align-items: stretch;
}

.contact-info-col {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.contact-cards-list {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	margin-bottom: 2rem;
}

.contact-card-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.1rem 1.25rem;
	background-color: var(--bg-secondary);
	border: 1px solid var(--border-light);
	border-radius: var(--radius-sm);
	transition: border-color var(--transition-fast);
}

.contact-card-item:hover {
	border-color: var(--accent-taupe);
}

.contact-card-icon {
	color: var(--accent-taupe);
	margin-top: 2px;
}

.contact-card-label {
	display: block;
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--text-muted);
	margin-bottom: 0.2rem;
}

.contact-card-value {
	font-size: 0.9375rem;
	font-weight: 500;
	color: var(--text-primary);
}

.link-whatsapp {
	color: var(--accent-taupe-dark);
	font-weight: 600;
}

/* Hours Box */
.contact-hours-box {
	background-color: var(--bg-surface);
	border: 1px solid var(--border-light);
	border-radius: var(--radius-sm);
	padding: 1.25rem 1.5rem;
	margin-bottom: 2rem;
}

.hours-header {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--accent-taupe);
	margin-bottom: 0.75rem;
}

.hours-title {
	font-family: var(--font-sans);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--text-primary);
}

.hours-schedule {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.hours-row {
	display: flex;
	justify-content: space-between;
	font-size: 0.875rem;
}

.hours-days {
	color: var(--text-secondary);
}

.hours-time {
	font-weight: 600;
	color: var(--text-primary);
}

.closed-time {
	color: #B91C1C;
}

.directions-cta-wrap {
	margin-top: 0.5rem;
}

/* Map Column */
.contact-map-col {
	position: relative;
	min-height: 500px;
}

.map-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 520px;
	border-radius: var(--radius-sm);
	overflow: hidden;
	border: 1px solid var(--border-light);
	box-shadow: var(--shadow-sm);
}

.google-map-iframe {
	width: 100%;
	height: 100%;
	min-height: 520px;
}

.map-overlay-action {
	position: absolute;
	bottom: 16px;
	right: 16px;
}

.map-open-link {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.5rem 1rem;
	background-color: var(--bg-dark);
	color: var(--text-light);
	border-radius: var(--radius-sm);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.map-open-link:hover {
	background-color: var(--accent-taupe);
	color: #FFFFFF;
}

/* ==========================================================================
   16. FOOTER
   ========================================================================== */
.site-footer {
	background-color: var(--bg-dark);
	color: var(--text-light);
	padding-top: clamp(4rem, 6vw, 6rem);
	padding-bottom: clamp(2rem, 4vw, 3rem);
	border-top: 1px solid var(--border-dark);
}

.footer-main-row {
	display: grid;
	grid-template-columns: 1.4fr 0.8fr 1fr;
	gap: clamp(2rem, 4vw, 4rem);
	padding-bottom: 3.5rem;
	border-bottom: 1px solid var(--border-dark);
}

.footer-brand-title {
	font-family: var(--font-serif);
	font-size: 2rem;
	font-weight: 600;
	letter-spacing: 0.15em;
	color: #FFFFFF;
	display: block;
}

.footer-brand-slogan {
	font-size: 0.625rem;
	font-weight: 500;
	letter-spacing: 0.25em;
	color: var(--accent-gold);
	display: block;
	margin-top: 4px;
	text-transform: uppercase;
}

.footer-tagline {
	margin-top: 1.25rem;
	font-size: 0.875rem;
	color: var(--text-light-secondary);
	line-height: 1.7;
	max-width: 380px;
	font-weight: 300;
}

.footer-heading {
	display: block;
	font-family: var(--font-sans);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--accent-gold);
	margin-bottom: 1.25rem;
}

.footer-nav-list,
.footer-contact-list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.footer-link,
.footer-contact-link {
	font-size: 0.875rem;
	color: var(--text-light-secondary);
	transition: color var(--transition-fast);
}

.footer-contact-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.footer-link:hover,
.footer-contact-link:hover {
	color: #FFFFFF;
}

.footer-bottom-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 2rem;
	font-size: 0.8125rem;
	color: var(--text-muted);
}

.footer-bottom-links {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.footer-bottom-links a {
	color: var(--text-light-secondary);
}

.footer-bottom-links a:hover {
	color: #FFFFFF;
}

.sep {
	color: var(--border-dark);
}

/* ==========================================================================
   17. FLOATING MOBILE BOOKING CTA (< 768px)
   ========================================================================== */
.floating-mobile-bar {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: rgba(21, 19, 18, 0.95);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 0.75rem 1.25rem;
	padding-bottom: calc(0.75rem + env(safe-area-inset-bottom));
	z-index: 850;
	box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
}

.floating-bar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 480px;
	margin: 0 auto;
}

.floating-bar-text {
	display: flex;
	flex-direction: column;
}

.floating-title {
	font-family: var(--font-serif);
	font-size: 1.125rem;
	color: #FFFFFF;
	font-weight: 500;
	letter-spacing: 0.06em;
}

.floating-subtitle {
	font-size: 0.6875rem;
	color: var(--accent-gold);
}

.btn-floating-cta {
	padding: 0.7rem 1.25rem;
	font-size: 0.75rem;
	background-color: var(--text-light);
	color: var(--bg-dark);
}

/* ==========================================================================
   18. HAUTE COUTURE LUXURY ANIMATION ENGINE
   ========================================================================== */
:root {
	--ease-luxury: cubic-bezier(0.19, 1, 0.22, 1);
	--ease-editorial: cubic-bezier(0.16, 1, 0.3, 1);
	--ease-curtain: cubic-bezier(0.77, 0, 0.175, 1);
	--ease-glide: cubic-bezier(0.25, 1, 0.5, 1);
	--ease-magnetic: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* 1. Atmospheric Blur & Focal Rise (Text & Headers) */
.reveal-blur-up,
.reveal-up {
	opacity: 0;
	filter: blur(10px);
	transform: translateY(32px) scale(0.985);
	will-change: transform, opacity, filter;
	transition: opacity 1.1s var(--ease-luxury),
	            transform 1.1s var(--ease-luxury),
	            filter 1s var(--ease-luxury);
}

.is-revealed.reveal-blur-up,
.is-revealed.reveal-up {
	opacity: 1;
	filter: blur(0px);
	transform: translateY(0) scale(1);
}

/* 2. Editorial Curtain Mask Reveal (Images & Photos) */
.reveal-curtain-up,
.reveal-scale {
	opacity: 0.2;
	clip-path: inset(100% 0 0 0 round 16px);
	transform: scale(1.08);
	will-change: clip-path, transform, opacity;
	transition: clip-path 1.25s var(--ease-curtain),
	            transform 1.4s var(--ease-luxury),
	            opacity 0.8s ease;
}

.is-revealed.reveal-curtain-up,
.is-revealed.reveal-scale {
	opacity: 1;
	clip-path: inset(0 0 0 0 round 16px);
	transform: scale(1);
}

/* 3. Deep Cinematic Depth Arrival (Cards & Panels) */
.reveal-depth {
	opacity: 0;
	filter: blur(6px);
	transform: perspective(1000px) translateZ(-60px) translateY(30px);
	will-change: transform, opacity, filter;
	transition: opacity 1.2s var(--ease-luxury),
	            transform 1.2s var(--ease-luxury),
	            filter 1s var(--ease-luxury);
}

.is-revealed.reveal-depth {
	opacity: 1;
	filter: blur(0);
	transform: perspective(1000px) translateZ(0) translateY(0);
}

/* 4. Soft Editorial Horizon Glides (Left / Right) */
.reveal-slide-soft-left,
.reveal-left {
	opacity: 0;
	filter: blur(8px);
	transform: translateX(-40px) scale(0.98);
	will-change: transform, opacity, filter;
	transition: opacity 1.1s var(--ease-luxury),
	            transform 1.1s var(--ease-luxury),
	            filter 1s var(--ease-luxury);
}

.reveal-slide-soft-right,
.reveal-right {
	opacity: 0;
	filter: blur(8px);
	transform: translateX(40px) scale(0.98);
	will-change: transform, opacity, filter;
	transition: opacity 1.1s var(--ease-luxury),
	            transform 1.1s var(--ease-luxury),
	            filter 1s var(--ease-luxury);
}

.is-revealed.reveal-slide-soft-left,
.is-revealed.reveal-left,
.is-revealed.reveal-slide-soft-right,
.is-revealed.reveal-right {
	opacity: 1;
	filter: blur(0);
	transform: translateX(0) scale(1);
}

/* 5. Kinetic Title Line Emergence */
.reveal-kinetic-title {
	position: relative;
	overflow: hidden;
}

.reveal-kinetic-title > * {
	display: block;
	opacity: 0;
	transform: translateY(115%) rotate(1.2deg);
	transition: opacity 1s var(--ease-luxury), transform 1s var(--ease-luxury);
	will-change: transform, opacity;
}

.is-revealed.reveal-kinetic-title > * {
	opacity: 1;
	transform: translateY(0) rotate(0deg);
}

/* 6. Cascading Grid Micro-Delays */
.stagger-cascade > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-cascade > *:nth-child(2) { transition-delay: 0.14s; }
.stagger-cascade > *:nth-child(3) { transition-delay: 0.23s; }
.stagger-cascade > *:nth-child(4) { transition-delay: 0.32s; }
.stagger-cascade > *:nth-child(5) { transition-delay: 0.41s; }
.stagger-cascade > *:nth-child(6) { transition-delay: 0.50s; }
.stagger-cascade > *:nth-child(7) { transition-delay: 0.59s; }
.stagger-cascade > *:nth-child(8) { transition-delay: 0.68s; }

/* 7. Refined Luxury Micro-Interactions & Hover Polish */
.service-card {
	transition: transform 0.65s var(--ease-luxury), box-shadow 0.65s var(--ease-luxury);
}

.service-card:hover {
	z-index: 4;
}

.service-card::after {
	content: '';
	position: absolute;
	inset: 0;
	border: 1px solid var(--accent-gold);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.5s var(--ease-luxury);
}

.service-card:hover::after {
	opacity: 0.65;
}

.review-card {
	transition: transform 0.6s var(--ease-luxury), box-shadow 0.6s var(--ease-luxury), border-color 0.4s ease;
}

.review-card:hover {
	transform: translateY(-6px) scale(1.01);
	border-color: var(--accent-taupe-light);
	box-shadow: 0 16px 40px rgba(21, 19, 18, 0.08);
}

.team-card {
	transition: transform 0.6s var(--ease-luxury);
}

.team-card:hover {
	transform: translateY(-5px);
}

.team-media-wrap::after {
	content: '';
	position: absolute;
	inset: 0;
	border: 1px solid rgba(255, 255, 255, 0.8);
	border-radius: inherit;
	opacity: 0;
	transition: opacity 0.5s ease;
	pointer-events: none;
}

.team-card:hover .team-media-wrap::after {
	opacity: 1;
}

/* Button Magnetic Slide Elevation */
.btn {
	transition: transform 0.45s var(--ease-magnetic), background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.45s ease, color 0.3s ease;
}

.btn:hover {
	transform: translateY(-3px);
}

.btn:active {
	transform: translateY(-1px) scale(0.98);
}

/* Atelier Lens Unfold Animation (Services Grid) */
.service-card.reveal-atelier-unfold {
	opacity: 0;
	clip-path: inset(14% 6% 14% 6% round 14px);
	transform: translateY(32px) scale(0.94);
	filter: brightness(0.7) contrast(1.08);
	will-change: clip-path, transform, opacity, filter;
	transition: clip-path 1.15s cubic-bezier(0.16, 1, 0.3, 1),
	            transform 1.15s cubic-bezier(0.16, 1, 0.3, 1),
	            opacity 0.75s ease,
	            filter 0.9s ease;
}

.service-card.reveal-atelier-unfold .service-card-img {
	transform: scale(1.16);
	transition: transform 1.25s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}

.service-card.reveal-atelier-unfold .service-meta-top,
.service-card.reveal-atelier-unfold .service-meta-bottom {
	transform: translateY(16px);
	opacity: 0;
	transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
}

.is-revealed.service-card.reveal-atelier-unfold {
	opacity: 1;
	clip-path: inset(0 0 0 0 round 0px);
	transform: translateY(0) scale(1);
	filter: brightness(1) contrast(1);
}

.is-revealed.service-card.reveal-atelier-unfold .service-card-img {
	transform: scale(1);
}

.is-revealed.service-card.reveal-atelier-unfold .service-meta-top,
.is-revealed.service-card.reveal-atelier-unfold .service-meta-bottom {
	transform: translateY(0);
	opacity: 1;
}

.is-revealed.service-card.reveal-atelier-unfold:hover .service-card-img {
	transform: scale(1.06);
	filter: brightness(0.92);
}

/* Watermark Breathing Ambient Motion */
.cta-bg-watermark {
	animation: watermarkBreathe 12s ease-in-out infinite alternate;
}

@keyframes watermarkBreathe {
	0% {
		opacity: 0.025;
		transform: translate(-50%, -50%) scale(1);
	}
	100% {
		opacity: 0.045;
		transform: translate(-50%, -50%) scale(1.03);
	}
}

/* Accessibility: Reduced Motion */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
	.reveal-blur-up,
	.reveal-up,
	.reveal-curtain-up,
	.reveal-scale,
	.reveal-depth,
	.reveal-slide-soft-left,
	.reveal-left,
	.reveal-slide-soft-right,
	.reveal-right,
	.reveal-kinetic-title > *,
	.reveal-atelier-unfold,
	.hero-drift-left,
	.hero-drift-right,
	.hero-drift-top-left,
	.hero-drift-bottom-left,
	.hero-drift-bottom-right,
	.hero-drift-badge {
		opacity: 1 !important;
		filter: none !important;
		transform: none !important;
		clip-path: none !important;
		animation: none !important;
	}
}
