/*
	Theme Name: MèCHE Salon
	Theme URI: https://mechesalon.com
	Description: Custom theme for MèCHE Salon, Beverly Hills.
	Author: MèCHE Salon
	Author URI: https://mechesalon.com
	Version: 1.0.0
	Requires at least: 6.0
	Tested up to: 6.8
	Requires PHP: 7.4
	License: GNU General Public License v3 or later
	License URI: https://www.gnu.org/licenses/gpl-3.0.html
	Text Domain: meche
*/

/* ==========================================================================
   CSS Custom Properties
   ========================================================================== */

:root {
	--meche-white: #FFFFFF;
	--meche-charcoal: #333333;
	--meche-dark: #222222;
	--meche-gold: #B8A07E;
	--meche-black: #000000;
	--meche-footer-bg: #2D2D2D;
	--meche-overlay: rgba(0, 0, 0, 0.7);
	--meche-font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
	--meche-font-sans: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
}

/* ==========================================================================
   Reset / Global Base — zero default containers, full width everything
   ========================================================================== */

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

html {
	margin: 0;
	padding: 0;
	overflow-x: hidden;
}

body {
	margin: 0;
	padding: 0;
	font-family: var(--meche-font-serif);
	color: var(--meche-charcoal);
	background-color: var(--meche-white);
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.site-footer {
	margin-top: auto;
}

/* ==========================================================================
   Boulevard Booking Widget
   ========================================================================== */

/* Hide default floating button — we use our own nav button */
#blvd-book-button {
	display: none !important;
}

/* Large screens: sidebar from the left */
@media (min-width: 1100px) {
	#blvd-widget-iframe,
	iframe[src*="joinboulevard"] {
		left: 0 !important;
		right: auto !important;
		width: 450px !important;
		max-width: 450px !important;
		height: 100vh !important;
		top: 0 !important;
		bottom: 0 !important;
	}
}

/* Small / medium screens: full screen takeover */
@media (max-width: 1099.98px) {
	#blvd-widget-iframe,
	iframe[src*="joinboulevard"] {
		left: 0 !important;
		right: 0 !important;
		top: 0 !important;
		bottom: 0 !important;
		width: 100% !important;
		max-width: 100% !important;
		height: 100vh !important;
	}
}

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

a {
	color: inherit;
}

/* ==========================================================================
   Site Header
   ========================================================================== */

.site-header {
	background-color: var(--meche-white);
	z-index: 1030;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	max-width: 100vw;
	overflow-x: hidden;
}

.site-header .navbar {
	padding-top: 1rem;
	padding-bottom: 1rem;
}

/* Header spacer matches fixed header height */
.header-spacer {
	height: 80px;
}

/* ==========================================================================
   Logo
   ========================================================================== */

.meche-logo {
	padding: 0;
	text-decoration: none !important;
}

.meche-logo-img {
	height: 40px;
	width: auto;
}

/* ==========================================================================
   Nav Links
   ========================================================================== */

.site-header .navbar-nav .nav-link {
	font-family: var(--meche-font-sans);
	font-size: 0.8rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--meche-charcoal);
	padding: 0.5rem 1rem;
	border-radius: 0;
	transition: color 0.2s ease, background-color 0.2s ease;
}

.site-header .navbar-nav .nav-link:hover,
.site-header .navbar-nav .nav-link:focus {
	color: var(--meche-black);
}

.site-header .navbar-nav .nav-item.active .nav-link,
.site-header .navbar-nav .nav-item.current-menu-item .nav-link {
	color: var(--meche-black);
	background-color: rgba(0, 0, 0, 0.06);
}

/* ==========================================================================
   Book an Appointment Button
   ========================================================================== */

.btn-book-appointment {
	font-family: var(--meche-font-sans);
	font-size: 0.65rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--meche-black);
	background-color: transparent;
	border: 1px solid var(--meche-black);
	border-radius: 0;
	padding: 0.6rem 1.3rem;
	text-decoration: none;
	white-space: nowrap;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-book-appointment:hover,
.btn-book-appointment:focus {
	background-color: var(--meche-black);
	color: var(--meche-white);
	text-decoration: none;
}

/* ==========================================================================
   Hamburger Toggle
   ========================================================================== */

.site-header .navbar .navbar-toggler {
	margin-left: auto;
	border: 1px solid var(--meche-black);
	border-radius: 0;
	padding: 0.4rem 0.6rem;
}

.site-header .navbar .navbar-toggler:focus {
	box-shadow: none;
}

/* ==========================================================================
   Mobile Navigation
   ========================================================================== */

@media (max-width: 991.98px) {
	.header-spacer {
		height: 70px;
	}

	.site-header .navbar > .container-fluid {
		padding-left: 1.25rem;
		padding-right: 1.25rem;
	}

	.site-header .navbar .navbar-toggler {
		flex-shrink: 0;
		margin-right: 0;
	}

	.site-header .navbar-nav {
		padding-top: 1rem;
		padding-bottom: 0.5rem;
		text-align: center;
	}

	.site-header .navbar-nav .nav-link {
		font-size: 0.85rem;
		padding: 0.6rem 0;
		border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	}

	.site-header .navbar-nav .nav-item:last-child .nav-link {
		border-bottom: none;
	}

	.meche-logo-img {
		height: 32px;
	}
}

/* ==========================================================================
   Front Page — Hero Video
   ========================================================================== */

/* Hide the header spacer on the front page so the video
   slides up behind the fixed navbar. */
.home .header-spacer {
	display: none;
}

.hero-video {
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	background-color: var(--meche-black);
}

.hero-video__media {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	transform: translate(-50%, -50%);
	object-fit: cover;
}

/* Mobile: use a shorter hero so video isn't awkwardly cropped */
@media (max-width: 767.98px) {
	.hero-video {
		height: 75vh;
	}
}

/* ==========================================================================
   Front Page — Services Banner
   ========================================================================== */

.services-banner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 55vh;
	background-image: url('assets/images/heroes/wall-769963_1920.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	text-decoration: none;
	overflow: hidden;
}

.services-banner::after {
	content: '';
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.25);
	transition: background-color 0.3s ease;
}

.services-banner:hover::after {
	background-color: rgba(0, 0, 0, 0.4);
}

.services-banner__title {
	position: relative;
	z-index: 1;
	font-family: var(--meche-font-serif);
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: 0.35em;
	color: var(--meche-white);
}

.services-banner:hover .services-banner__title,
.services-banner:focus .services-banner__title {
	color: var(--meche-white);
	text-decoration: none;
}

/* ==========================================================================
   Front Page — About Us Video Banner
   ========================================================================== */

.about-banner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 55vh;
	overflow: hidden;
	background-color: var(--meche-black);
	text-decoration: none;
}

.about-banner__media {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	transform: translate(-50%, -50%);
	object-fit: cover;
}

.about-banner__title {
	position: relative;
	z-index: 1;
	font-family: var(--meche-font-serif);
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: 0.35em;
	color: var(--meche-white);
}

.about-banner:hover .about-banner__title,
.about-banner:focus .about-banner__title {
	color: var(--meche-white);
	text-decoration: none;
}

/* Shared outlined button style (reusable) */
.btn-meche-outline {
	display: inline-block;
	font-family: var(--meche-font-sans);
	font-size: 0.7rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--meche-black);
	border: 1px solid var(--meche-black);
	border-radius: 0;
	padding: 0.75rem 2.2rem;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-meche-outline:hover,
.btn-meche-outline:focus {
	background-color: var(--meche-black);
	color: var(--meche-white);
	text-decoration: none;
}

/* ==========================================================================
   Front Page — Meet the Team Carousel (Swiper)
   ========================================================================== */

.team-carousel-section {
	background-color: var(--meche-black);
	padding: 4rem 0;
	overflow: hidden;
}

.team-carousel {
	width: 100%;
}

/* Individual slide */
.team-slide {
	display: block;
	text-decoration: none;
	text-align: center;
	padding: 0 1rem;
}

/* Square photo container — 80% width for smaller images */
.team-slide__photo {
	position: relative;
	width: 80%;
	padding-bottom: 80%; /* 1:1 square at 80% of slide width */
	margin: 0 auto;
	overflow: hidden;
}

.team-slide__img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.team-slide:hover .team-slide__img {
	transform: scale(1.05);
}

.team-slide__placeholder {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #444;
}

/* Name & title always visible below photo */
.team-slide__info {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-top: 1rem;
}

.team-slide__name {
	font-family: var(--meche-font-serif);
	font-size: 1rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--meche-white);
	margin-bottom: 0.25rem;
}

.team-slide__title {
	font-family: var(--meche-font-sans);
	font-size: 0.75rem;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: rgba(255, 255, 255, 0.8);
}

/* Navigation arrows */
.team-carousel__prev,
.team-carousel__next {
	color: var(--meche-white);
}

.team-carousel__prev::after,
.team-carousel__next::after {
	font-size: 1.25rem;
}

.team-carousel__prev:hover,
.team-carousel__next:hover {
	color: rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   Front Page — Contact Banner
   ========================================================================== */

.contact-banner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 55vh;
	background-image: url('assets/images/heroes/Meche-Exterior.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	text-decoration: none;
	overflow: hidden;
}

.contact-banner::after {
	content: '';
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.3);
	transition: background-color 0.3s ease;
}

.contact-banner:hover::after {
	background-color: rgba(0, 0, 0, 0.45);
}

.contact-banner__title {
	position: relative;
	z-index: 1;
	font-family: var(--meche-font-serif);
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: 0.35em;
	color: var(--meche-white);
}

.contact-banner:hover .contact-banner__title,
.contact-banner:focus .contact-banner__title {
	color: var(--meche-white);
	text-decoration: none;
}

/* ==========================================================================
   About Us Page — Hero Video
   ========================================================================== */

.about-hero {
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	background-color: var(--meche-black);
}

.about-hero__media {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	transform: translate(-50%, -50%);
	object-fit: cover;
}

@media (max-width: 767.98px) {
	.about-hero {
		height: 75vh;
	}
}

/* Hide header spacer on about page so video sits behind fixed nav */
.page-about-us .header-spacer {
	display: none;
}

/* ==========================================================================
   About Us Page — Founders Photos
   ========================================================================== */

.founders-photos {
	padding: 4rem 1.5rem;
	background-color: var(--meche-white);
}

.founders-photos__img {
	width: 100%;
	aspect-ratio: 3 / 4;
	display: block;
	object-fit: cover;
}

/* ==========================================================================
   About Us Page — Bio Text
   ========================================================================== */

.about-bio {
	padding: 0 1.5rem 4rem;
	background-color: var(--meche-white);
}

.about-bio__col p {
	font-family: var(--meche-font-serif);
	font-size: 1rem;
	line-height: 1.85;
	color: var(--meche-charcoal);
	margin-bottom: 1.25rem;
}

/* ==========================================================================
   About Us Page — Meet the Team CTA
   ========================================================================== */

.about-cta {
	padding: 2rem 1.5rem 5rem;
	text-align: center;
	background-color: var(--meche-white);
}

/* ==========================================================================
   Site Footer
   ========================================================================== */

.site-footer {
	background-color: var(--meche-footer-bg);
	color: rgba(255, 255, 255, 0.7);
	padding: 0;
	width: 100%;
}

/* ---------- Our Instagram section ---------- */

.footer-instagram {
	padding: 3.5rem 1rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-instagram-link {
	display: inline-block;
	font-family: var(--meche-font-sans);
	font-size: 0.8rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: var(--meche-white);
	border: 1px solid rgba(255, 255, 255, 0.5);
	padding: 0.75rem 2.5rem;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.footer-instagram-link:hover,
.footer-instagram-link:focus {
	background-color: var(--meche-white);
	color: var(--meche-footer-bg);
	text-decoration: none;
}

/* ---------- Bottom bar ---------- */

.footer-bottom {
	padding: 1.75rem 0;
}

/* Copyright */
.footer-copyright {
	font-family: var(--meche-font-sans);
	font-size: 0.7rem;
	letter-spacing: 0.05em;
	color: rgba(255, 255, 255, 0.5);
}

/* Social icons */
.footer-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.6);
	margin: 0 0.6rem;
	transition: color 0.2s ease;
}

.footer-social a:hover {
	color: var(--meche-white);
}

/* Footer nav links */
.footer-nav-list {
	flex-wrap: wrap;
	gap: 0.4rem 1rem;
	justify-content: center;
}

.footer-nav-list li a,
.footer-nav .menu li a {
	font-family: var(--meche-font-sans);
	font-size: 0.65rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	transition: color 0.2s ease;
	white-space: nowrap;
}

.footer-nav-list li a:hover,
.footer-nav .menu li a:hover {
	color: var(--meche-white);
}

/* WP nav menu in footer — strip default list styles */
.footer-nav .menu {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem 1rem;
	justify-content: center;
}

@media (min-width: 768px) {
	.footer-nav .menu {
		justify-content: flex-end;
	}
}

/* ==========================================================================
   Scroll-to-Top Button
   ========================================================================== */

.scroll-to-top {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background-color: var(--meche-footer-bg);
	color: var(--meche-white);
	border: 1px solid rgba(255, 255, 255, 0.3);
	text-decoration: none;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease, background-color 0.2s ease;
}

.scroll-to-top.visible {
	opacity: 1;
	visibility: visible;
}

.scroll-to-top:hover {
	background-color: var(--meche-black);
	color: var(--meche-white);
}

/* ==========================================================================
   Meet the Team Page — Tabs
   ========================================================================== */

.team-section {
	padding: 4rem 0 5rem;
	background-color: var(--meche-white);
}

.team-tabs {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.25rem 2rem;
	margin-bottom: 3rem;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	padding-bottom: 1rem;
}

.team-tab {
	font-family: var(--meche-font-sans);
	font-size: 0.75rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: rgba(0, 0, 0, 0.4);
	background: none;
	border: none;
	border-bottom: 2px solid transparent;
	padding: 0.5rem 0;
	cursor: pointer;
	transition: color 0.2s ease, border-color 0.2s ease;
}

.team-tab:hover {
	color: var(--meche-charcoal);
}

.team-tab.active {
	color: var(--meche-black);
	border-bottom-color: var(--meche-black);
}

/* ==========================================================================
   Meet the Team Page — Team Grid Cards
   ========================================================================== */

.team-grid {
	--team-gap: 1.5rem;
}

.team-grid__col {
	margin-bottom: var(--team-gap);
}

.team-card {
	display: block;
	position: relative;
	width: 100%;
	padding-bottom: 100%; /* 1:1 square aspect ratio */
	overflow: hidden;
	background-color: #eee;
	text-decoration: none;
}

.team-card__img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.team-card__placeholder {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #ccc;
}

/* Grey overlay on hover — no text, just signals clickability */
.team-card__overlay {
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.25);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.team-card:hover .team-card__overlay {
	opacity: 1;
}

.team-card:hover .team-card__img {
	transform: scale(1.05);
}

/* Name, title, and button always visible below photo */
.team-card__info {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 1rem 0.5rem;
}

.team-card__name {
	font-family: var(--meche-font-serif);
	font-size: 1rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--meche-black);
	margin-bottom: 0.25rem;
}

.team-card__title {
	font-family: var(--meche-font-sans);
	font-size: 0.75rem;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--meche-charcoal);
	margin-bottom: 0.75rem;
}

.team-card__bio-btn {
	font-family: var(--meche-font-sans);
	font-size: 0.65rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--meche-black);
	border: 1px solid var(--meche-black);
	padding: 0.5rem 1.5rem;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.team-card__bio-btn:hover {
	background-color: var(--meche-black);
	color: var(--meche-white);
}

/* ==========================================================================
   Single Team Member Bio Page
   ========================================================================== */

.team-bio-section {
	padding: 4rem 1.5rem 5rem;
	background-color: var(--meche-white);
}

.team-bio__photo-col {
	margin-bottom: 2rem;
}

.team-bio__photo {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	display: block;
}

.team-bio__back {
	display: inline-block;
	margin-top: 2rem;
}

.team-bio__content-col {
	text-align: center;
}

.team-bio__name {
	font-family: var(--meche-font-serif);
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--meche-black);
	margin-bottom: 0.5rem;
}

.team-bio__title {
	font-family: var(--meche-font-sans);
	font-size: 0.85rem;
	font-weight: 400;
	font-style: italic;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: var(--meche-charcoal);
	margin-bottom: 2rem;
}

.team-bio__text {
	font-family: var(--meche-font-serif);
	font-size: 1rem;
	line-height: 1.85;
	color: var(--meche-charcoal);
}

.team-bio__text p {
	margin-bottom: 1.25rem;
}

/* Desktop: side-by-side layout */
@media (min-width: 992px) {
	.team-bio__photo-col {
		margin-bottom: 0;
	}
}

/* ==========================================================================
   Meet the Team — Mobile Responsive
   ========================================================================== */

@media (max-width: 767.98px) {
	.team-tabs {
		gap: 0.25rem 1rem;
	}

	.team-tab {
		font-size: 0.65rem;
		letter-spacing: 0.1em;
	}
}

/* ==========================================================================
   Services Page — Hero Banner
   ========================================================================== */

.services-hero {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 55vh;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
}

.services-hero::after {
	content: '';
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.25);
}

.services-hero__title {
	position: relative;
	z-index: 1;
	font-family: var(--meche-font-serif);
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: 0.35em;
	color: var(--meche-white);
}

/* ==========================================================================
   Services Page — Service Grid (350×350 hover boxes)
   ========================================================================== */

.services-grid-section {
	padding: 4rem 0 3rem;
	background-color: var(--meche-white);
}

.service-box {
	position: relative;
	width: 100%;
	padding-bottom: 100%; /* 1:1 square */
	overflow: hidden;
	background-color: #eee;
	margin-bottom: 1rem;
}

.service-box__img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

/* Overlay — full dark on mobile (original look) */
.service-box__overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
	background-color: var(--meche-overlay);
}

.service-box__name {
	font-family: var(--meche-font-serif);
	font-size: 1rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--meche-white);
	margin: 0 0 0.75rem;
}

/* Desktop: hover reveal effect */
@media (min-width: 992px) {
	.service-box__overlay {
		background-color: rgba(0, 0, 0, 0.25);
		transition: background-color 0.4s ease;
	}

	.service-box:hover .service-box__overlay {
		background-color: var(--meche-overlay);
	}

	.service-box__list {
		opacity: 0;
		transition: opacity 0.4s ease;
	}

	.service-box:hover .service-box__list {
		opacity: 1;
	}
}

.service-box__list {
	list-style: none;
	padding: 0;
	margin: 0;
	width: 100%;
}

.service-box__list li {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 0.5rem;
	padding: 0.3rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
	font-family: var(--meche-font-sans);
	font-size: 0.7rem;
	font-weight: 400;
	letter-spacing: 0.05em;
	color: var(--meche-white);
}

.service-box__list li:last-child {
	border-bottom: none;
}

.service-box__list li span:last-child {
	white-space: nowrap;
	text-align: right;
	color: rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   Services Page — Booking & Policy Text
   ========================================================================== */

.services-policy {
	padding: 2rem 1.5rem 5rem;
	text-align: center;
	background-color: var(--meche-white);
}

.services-policy__booking {
	font-family: var(--meche-font-serif);
	font-size: 1rem;
	line-height: 1.85;
	color: var(--meche-charcoal);
	margin-bottom: 1rem;
}

.services-policy__booking a {
	color: var(--meche-charcoal);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.services-policy__booking a:hover {
	color: var(--meche-black);
}

.services-policy__notice {
	font-family: var(--meche-font-serif);
	font-size: 0.9rem;
	line-height: 1.85;
	color: rgba(51, 51, 51, 0.7);
	max-width: 700px;
	margin: 0 auto;
}

/* ==========================================================================
   Services Page — Mobile
   ========================================================================== */

@media (max-width: 575.98px) {
	.services-hero {
		height: 40vh;
	}

	.service-box__list li {
		font-size: 0.65rem;
	}
}

/* ==========================================================================
   Press Page — Uniform Grid
   ========================================================================== */

.press-section {
	padding: 3rem 0 5rem;
	background-color: var(--meche-white);
}

.press-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}

.press-grid__item {
	display: block;
	position: relative;
	width: 100%;
	padding-bottom: 100%; /* 1:1 square */
	overflow: hidden;
	text-decoration: none;
	background-color: #eee;
}

.press-grid__img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease, opacity 0.3s ease;
}

.press-grid__item:hover .press-grid__img {
	transform: scale(1.03);
	opacity: 0.85;
}

@media (max-width: 767.98px) {
	.press-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 575.98px) {
	.press-grid {
		grid-template-columns: 1fr;
	}
}

/* ==========================================================================
   Single Press Post
   ========================================================================== */

.press-single {
	padding: 3rem 1.5rem 5rem;
	background-color: var(--meche-white);
}

.press-single__title {
	font-family: var(--meche-font-serif);
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--meche-black);
	text-align: center;
	margin-bottom: 2.5rem;
}

.press-single__image-wrap {
	max-width: 800px;
	margin: 0 auto 2.5rem;
}

.press-single__img {
	display: block;
	width: 100%;
	height: auto;
}

.press-single__actions {
	display: flex;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
}

/* ==========================================================================
   Contact Page — Hero Image
   ========================================================================== */

/* Hide header spacer so hero sits behind fixed nav */
.page-contact .header-spacer {
	display: none;
}

.contact-hero {
	width: 100%;
	height: 80vh;
	overflow: hidden;
}

.contact-hero .carousel,
.contact-hero .carousel-inner,
.contact-hero .carousel-item {
	height: 100%;
}

.contact-hero__img {
	width: 100%;
	height: 80vh;
	object-fit: cover;
}

@media (max-width: 767.98px) {
	.contact-hero,
	.contact-hero__img {
		height: 70vh;
	}
}

/* ==========================================================================
   Contact Page — Heading & Notice
   ========================================================================== */

.contact-heading {
	padding: 3.5rem 1.5rem 2.5rem;
	text-align: center;
	background-color: var(--meche-white);
}

.contact-heading__title {
	font-family: var(--meche-font-serif);
	font-size: clamp(1.75rem, 4vw, 2.75rem);
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: 0.3em;
	color: var(--meche-black);
	margin: 0 0 1.25rem;
}

.contact-heading__divider {
	display: block;
	width: 60px;
	height: 1px;
	background-color: var(--meche-charcoal);
	margin: 0 auto 1.5rem;
}

.contact-heading__notice {
	font-family: var(--meche-font-sans);
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	line-height: 1.9;
	color: var(--meche-charcoal);
	max-width: 700px;
	margin: 0 auto;
}

.contact-heading__notice a {
	color: var(--meche-charcoal);
	text-decoration: none;
}

.contact-heading__notice a:hover {
	text-decoration: underline;
}

/* ==========================================================================
   Contact Page — Two-Column Content
   ========================================================================== */

.contact-content {
	padding: 2rem 0 5rem;
	background-color: var(--meche-white);
}

/* ---------- Left column: Our Salon ---------- */

.contact-info {
	margin-bottom: 3rem;
}

.contact-info__heading {
	font-family: var(--meche-font-serif);
	font-size: 1.1rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--meche-black);
	margin: 0 0 1.25rem;
}

.contact-info__address {
	font-family: var(--meche-font-serif);
	font-size: 0.95rem;
	font-style: normal;
	line-height: 1.8;
	color: var(--meche-charcoal);
	margin-bottom: 0.75rem;
}

.contact-info__phone {
	font-family: var(--meche-font-serif);
	font-size: 0.95rem;
	color: var(--meche-charcoal);
	margin-bottom: 1.25rem;
}

.contact-info__phone a {
	color: var(--meche-charcoal);
	text-decoration: none;
}

.contact-info__phone a:hover {
	text-decoration: underline;
}

/* Social icons */
.contact-info__social {
	display: flex;
	gap: 1rem;
	margin-bottom: 1.75rem;
}

.contact-info__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--meche-charcoal);
	transition: color 0.2s ease;
}

.contact-info__social a:hover {
	color: var(--meche-black);
}

/* Google Map */
.contact-info__map {
	width: 100%;
	overflow: hidden;
}

.contact-info__map iframe {
	display: block;
	width: 100%;
}

/* ---------- Right column: Contact Form 7 ---------- */

@media (min-width: 992px) {
	.contact-info {
		margin-bottom: 0;
	}
}

/* CF7 labels */
.contact-form-col .wpcf7-form label {
	display: block;
	font-family: var(--meche-font-sans);
	font-size: 0.75rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--meche-charcoal);
	margin-bottom: 0.4rem;
}

/* CF7 form rows */
.contact-form-col .wpcf7-form p {
	margin-bottom: 1rem;
}

/* CF7 inputs and textareas */
.contact-form-col .wpcf7-form input[type="text"],
.contact-form-col .wpcf7-form input[type="email"],
.contact-form-col .wpcf7-form input[type="tel"],
.contact-form-col .wpcf7-form input[type="url"],
.contact-form-col .wpcf7-form textarea,
.contact-form-col .wpcf7-form select {
	display: block;
	width: 100%;
	font-family: var(--meche-font-sans);
	font-size: 0.85rem;
	color: var(--meche-charcoal);
	background-color: var(--meche-white);
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 0;
	padding: 0.75rem 1rem;
	transition: border-color 0.2s ease;
}

.contact-form-col .wpcf7-form input::placeholder,
.contact-form-col .wpcf7-form textarea::placeholder {
	color: rgba(0, 0, 0, 0.4);
	font-weight: 400;
}

.contact-form-col .wpcf7-form input:focus,
.contact-form-col .wpcf7-form textarea:focus {
	outline: none;
	border-color: var(--meche-black);
}

.contact-form-col .wpcf7-form textarea {
	resize: vertical;
	min-height: 150px;
}

/* Phone consent / small notice text */
.contact-form-col .wpcf7-form small,
.contact-form-col .wpcf7-form .sms-notice {
	display: block;
	font-family: var(--meche-font-sans);
	font-size: 0.65rem;
	line-height: 1.5;
	color: rgba(0, 0, 0, 0.45);
	margin-top: 0.4rem;
}

/* CF7 submit button — gold/tan, full width */
.contact-form-col .wpcf7-form input[type="submit"] {
	display: block;
	width: 100%;
	font-family: var(--meche-font-sans);
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--meche-white);
	background-color: var(--meche-gold);
	border: none;
	border-radius: 0;
	padding: 0.9rem;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.contact-form-col .wpcf7-form input[type="submit"]:hover {
	background-color: #a68e6c;
}

/* CF7 validation messages */
.contact-form-col .wpcf7-not-valid-tip {
	font-family: var(--meche-font-sans);
	font-size: 0.7rem;
	color: #c0392b;
	margin-top: 0.25rem;
}

.contact-form-col .wpcf7-response-output {
	font-family: var(--meche-font-serif);
	font-size: 1rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	text-align: center;
	margin: 1.5rem 0 0;
	padding: 1.25rem 1.5rem;
	border: 1px solid #B8A07E;
	border-radius: 0;
	color: var(--meche-black);
	background-color: transparent;
}

/* Success message */
.contact-form-col .wpcf7-form.sent .wpcf7-response-output {
	border-color: #2ecc71;
	background-color: rgba(46, 204, 113, 0.08);
	color: #27ae60;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1.5rem 2rem;
}

.contact-form-col .wpcf7-form.sent .wpcf7-response-output::before {
	content: '';
	display: inline-block;
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2327ae60' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: contain;
}

/* Error message */
.contact-form-col .wpcf7-form.failed .wpcf7-response-output,
.contact-form-col .wpcf7-form.aborted .wpcf7-response-output {
	border-color: #c0392b;
	background-color: rgba(192, 57, 43, 0.05);
	color: #c0392b;
}

/* CF7 spinner */
.contact-form-col .wpcf7-spinner {
	margin-top: 0.5rem;
}

/* ==========================================================================
   Hide reCAPTCHA Badge
   ========================================================================== */

.grecaptcha-badge {
	visibility: hidden !important;
}
