/* ============================================
   MAISON OR & BIJOUX MOUGINS - CUSTOM STYLES
   ============================================ */

:root {
	/* Gold Colors */
	--color-gold: #C5A55A;
	--color-gold-light: #D4B96E;

	/* Dark Colors */
	--color-dark: #0D0D0D;
	--color-dark-profound: #1A1A1A;
	--color-dark-soft: #2A2A2A;

	/* Beige Colors */
	--color-beige: #F5F0E8;
	--color-beige-light: #FAF8F4;
	--color-beige-warm: #EDE5D8;

	/* Text Colors */
	--color-text: #1A1A1A;
	--color-text-secondary: #6B6355;
	--color-text-light: #B0A894;

	/* Neutral Colors */
	--color-white: #FFFFFF;
	--color-off-white: #F5F0E8;
	--color-light-brown: #B8B0A0;
	--color-cream: #E8E0D0;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

html {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	padding: 0;
	background-color: var(--color-white);
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Playfair Display', 'Georgia', serif;
	font-weight: 700;
	letter-spacing: -0.01em;
	color: var(--color-text);
}

h1 {
	font-size: 48px;
	line-height: 1.2;
	margin: 0;
}

h2 {
	font-size: 36px;
	line-height: 1.2;
	margin: 0 0 20px 0;
}

h3 {
	font-size: 24px;
	line-height: 1.3;
	margin: 0 0 12px 0;
}

h4 {
	font-size: 18px;
	line-height: 1.4;
	margin: 0 0 10px 0;
}

p {
	line-height: 1.6;
	color: var(--color-text-secondary);
	margin: 0 0 1rem 0;
}

a {
	color: var(--color-gold);
	text-decoration: none;
	transition: color 0.3s ease;
}

a:hover {
	color: var(--color-gold-light);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.gold-gradient-text {
	background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: 600;
}

.gold-gradient-bg {
	background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
}

/* ============================================
   HEADER STYLES
   ============================================ */

.site-header {
	position: sticky;
	top: 0;
	z-index: 999;
	background-color: var(--color-dark);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.header-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 2rem;
	flex-wrap: wrap;
	gap: 1rem;
	max-width: 1400px;
	margin: 0 auto;
}

.header-logo {
	display: flex;
	align-items: center;
}

.logo-svg {
	width: 140px;
	height: 60px;
	display: block;
}

.header-nav-wrapper {
	display: flex;
	gap: 3rem;
	align-items: center;
}

.header-navigation {
	display: flex;
	gap: 2rem;
	list-style: none;
	margin: 0;
	padding: 0;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
}

.header-navigation a {
	color: var(--color-text-light);
	text-decoration: none;
	transition: color 0.3s ease;
	font-weight: 500;
}

.header-navigation a:hover {
	color: var(--color-gold-light);
}

.header-cta-button {
	background-color: var(--color-dark);
	color: var(--color-gold-light);
	border: 2px solid var(--color-gold);
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	font-weight: 600;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: 'Inter', sans-serif;
}

.header-cta-button:hover {
	background-color: var(--color-gold);
	color: var(--color-dark);
	border-color: var(--color-gold);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(197, 165, 90, 0.3);
}

/* ============================================
   BURGER MENU (MOBILE)
   ============================================ */

.burger-menu {
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
	display: flex;
	flex-direction: column;
	gap: 6px;
	align-items: center;
	display: none;
}

.burger-menu span {
	width: 24px;
	height: 2px;
	background: var(--color-gold-light);
	transition: all 0.3s ease;
	display: block;
}

.burger-menu.active span:nth-child(1) {
	transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
	opacity: 0;
}

.burger-menu.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-nav-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(13, 13, 13, 0.95);
	z-index: 998;
	padding: 2rem;
	overflow-y: auto;
}

.mobile-nav-overlay.active {
	display: flex;
	flex-direction: column;
}

.mobile-nav-overlay nav {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	margin-top: 4rem;
}

.mobile-nav-overlay a {
	color: var(--color-gold-light);
	text-decoration: none;
	font-size: 18px;
	font-family: 'Inter', sans-serif;
	font-weight: 500;
	transition: color 0.3s ease;
}

.mobile-nav-overlay a:hover {
	color: var(--color-gold);
}

/* ============================================
   FOOTER STYLES
   ============================================ */

.site-footer {
	background-color: var(--color-dark);
	color: var(--color-text-light);
	margin-top: 4rem;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	padding: 2rem;
	max-width: 1400px;
	margin: 0 auto;
}

.footer-column {
	display: flex;
	flex-direction: column;
}

.footer-logo {
	width: 120px;
	height: 50px;
	display: block;
	margin-bottom: 1rem;
}

.footer-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.footer-list li {
	margin: 0;
}

.footer-list a {
	color: var(--color-text-light);
	text-decoration: none;
	font-size: 13px;
	transition: color 0.3s ease;
}

.footer-list a:hover {
	color: var(--color-gold-light);
}

.footer-bottom {
	background-color: var(--color-dark-profound);
	border-top: 1px solid var(--color-dark-soft);
	padding: 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
}

.footer-bottom p {
	margin: 0;
	font-size: 12px;
	color: var(--color-text-secondary);
}

.footer-bottom a {
	color: var(--color-text-secondary);
	font-size: 12px;
	transition: color 0.3s ease;
}

.footer-bottom a:hover {
	color: var(--color-gold-light);
}

/* ============================================
   HERO SECTION - MOB-HERO
   ============================================ */

.mob-hero {
	position: relative;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: var(--color-dark);
}

.mob-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(13, 13, 13, 0.75) 0%, rgba(13, 13, 13, 0.65) 50%, rgba(13, 13, 13, 0.75) 100%);
	z-index: 1;
	pointer-events: none;
}

.mob-hero > * {
	position: relative;
	z-index: 2;
}

/* Hero background image container */
.mob-hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.mob-hero-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/* Hero content container */
.mob-hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	color: var(--color-off-white);
	padding: 40px 20px;
	max-width: 900px;
}

.mob-hero-brand {
	margin-bottom: 40px;
}

.mob-hero-brand h1 {
	font-family: 'Playfair Display', serif;
	font-size: 3.5rem;
	font-weight: 700;
	margin: 0;
	letter-spacing: 2px;
	color: var(--color-gold);
	text-transform: uppercase;
}

.mob-hero-brand-subtitle {
	font-family: 'Inter', sans-serif;
	font-size: 1rem;
	letter-spacing: 3px;
	text-transform: uppercase;
	margin-top: 10px;
	color: var(--color-gold-light);
}

.mob-hero h2 {
	font-family: 'Playfair Display', serif;
	font-size: 2.8rem;
	font-weight: 700;
	margin: 30px 0;
	line-height: 1.2;
	color: var(--color-white);
	letter-spacing: 0.5px;
}

.mob-hero p {
	font-family: 'Inter', sans-serif;
	font-size: 1.1rem;
	margin: 30px auto 40px auto;
	color: var(--color-cream);
	line-height: 1.6;
	max-width: 700px;
}

/* Hero CTA buttons */
.mob-hero-cta {
	margin-top: 50px;
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

.mob-hero-cta a {
	display: inline-block;
	padding: 16px 40px;
	text-decoration: none;
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-radius: 2px;
	transition: all 0.3s ease;
	border: 2px solid var(--color-gold);
	cursor: pointer;
}

.mob-hero-cta a:first-child {
	background: var(--color-gold);
	color: var(--color-dark);
}

.mob-hero-cta a:first-child:hover {
	background: var(--color-gold-light);
	border-color: var(--color-gold-light);
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(197, 165, 90, 0.3);
}

.mob-hero-cta a:last-child {
	background: transparent;
	color: var(--color-gold);
}

.mob-hero-cta a:last-child:hover {
	background: rgba(197, 165, 90, 0.1);
	border-color: var(--color-gold-light);
	transform: translateY(-2px);
}

/* Scroll indicator */
.mob-hero-scroll {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
	color: var(--color-gold);
	font-size: 28px;
	animation: bounce 2s infinite;
}

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

/* ============================================
   TRUST BADGES SECTION
   ============================================ */

.trust-badges-section {
	background-color: var(--color-beige);
	padding: 40px 20px;
}

.trust-badges-grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 30px;
	text-align: center;
}

.trust-badge {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

.trust-badge svg {
	width: 40px;
	height: 40px;
	fill: var(--color-gold);
}

.trust-badge p {
	margin: 0;
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--color-text);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* ============================================
   ABOUT / INTRO SECTION
   ============================================ */

.about-section {
	background-color: var(--color-white);
	padding: 80px 20px;
}

.about-grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.about-image {
	overflow: hidden;
	border-radius: 4px;
	border: 3px solid var(--color-gold);
}

.about-image img {
	width: 100%;
	height: auto;
	display: block;
}

.about-content h2 {
	font-family: 'Playfair Display', serif;
	font-size: 2.5rem;
	font-weight: 700;
	margin: 0 0 20px 0;
	color: var(--color-text);
	line-height: 1.2;
}

.about-content p {
	font-family: 'Inter', sans-serif;
	font-size: 1rem;
	margin: 0 0 20px 0;
	color: var(--color-text-secondary);
	line-height: 1.8;
}

.about-location {
	font-family: 'Inter', sans-serif;
	font-size: 0.95rem;
	margin: 0;
	color: var(--color-gold);
	font-weight: 600;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services-section {
	background-color: var(--color-dark);
	padding: 80px 20px;
}

.services-header {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
	margin-bottom: 60px;
}

.services-header h2 {
	font-family: 'Playfair Display', serif;
	font-size: 2.5rem;
	font-weight: 700;
	margin: 0 0 15px 0;
	color: var(--color-white);
	display: inline-block;
	border-bottom: 3px solid var(--color-gold);
	padding-bottom: 15px;
}

.services-grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 30px;
}

.service-card {
	background: var(--color-dark-profound);
	border: 2px solid var(--color-dark-soft);
	overflow: hidden;
	transition: all 0.3s ease;
	cursor: pointer;
}

.service-card:hover {
	border-color: var(--color-gold);
	background-color: rgba(197, 165, 90, 0.05);
	transform: translateY(-4px);
	box-shadow: 0 8px 20px rgba(197, 165, 90, 0.2);
}

.service-card-image {
	height: 280px;
	overflow: hidden;
}

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

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

.service-card-content {
	padding: 30px;
}

.service-card h3 {
	font-family: 'Playfair Display', serif;
	font-size: 1.5rem;
	font-weight: 700;
	margin: 0 0 12px 0;
	color: var(--color-off-white);
}

.service-card p {
	font-family: 'Inter', sans-serif;
	font-size: 0.95rem;
	margin: 0 0 20px 0;
	color: var(--color-light-brown);
	line-height: 1.6;
}

.service-card a {
	color: var(--color-gold);
	text-decoration: none;
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: color 0.3s ease;
}

.service-card a:hover {
	color: var(--color-gold-light);
}

/* ============================================
   EXPERT SECTION
   ============================================ */

.expert-section {
	background-color: var(--color-beige);
	padding: 80px 20px;
}

.expert-grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

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

.expert-image-circle {
	width: 100%;
	max-width: 400px;
	height: 400px;
	border-radius: 50%;
	overflow: hidden;
	margin: 0 auto;
	border: 5px solid var(--color-gold);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.expert-image-circle img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.expert-content h2 {
	font-family: 'Playfair Display', serif;
	font-size: 2.3rem;
	font-weight: 700;
	margin: 0 0 30px 0;
	color: var(--color-text);
	line-height: 1.2;
}

.expert-stats {
	background: var(--color-white);
	padding: 30px;
	border-left: 4px solid var(--color-gold);
	margin-bottom: 30px;
}

.expert-stats-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-bottom: 20px;
}

.expert-stat-item p:first-child {
	margin: 0 0 8px 0;
	font-family: 'Inter', sans-serif;
	font-size: 0.85rem;
	color: var(--color-text-secondary);
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 0.5px;
}

.expert-stat-item p:last-child {
	margin: 0;
	font-family: 'Playfair Display', serif;
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--color-gold);
}

.expert-benefits {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.expert-benefit {
	display: flex;
	gap: 15px;
	align-items: flex-start;
}

.expert-benefit svg {
	width: 24px;
	height: 24px;
	fill: var(--color-gold);
	margin-top: 4px;
	flex-shrink: 0;
}

.expert-benefit p {
	margin: 0;
	font-family: 'Inter', sans-serif;
	font-size: 0.95rem;
	color: var(--color-text-secondary);
	line-height: 1.6;
}

/* ============================================
   FINAL CTA SECTION - MOB-FINAL-CTA
   ============================================ */

.mob-final-cta {
	background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-profound) 100%);
	text-align: center;
	padding: 80px 20px;
	position: relative;
	overflow: hidden;
}

.mob-final-cta::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 20% 50%, rgba(197, 165, 90, 0.05) 0%, transparent 50%);
	pointer-events: none;
}

.mob-final-cta > * {
	position: relative;
	z-index: 1;
}

.cta-section {
	background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-profound) 100%);
	text-align: center;
	padding: 80px 20px;
	position: relative;
	overflow: hidden;
}

.cta-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 20% 50%, rgba(197, 165, 90, 0.05) 0%, transparent 50%);
	pointer-events: none;
}

.cta-section > * {
	position: relative;
	z-index: 1;
}

.cta-content {
	max-width: 800px;
	margin: 0 auto;
}

.cta-section h2 {
	font-family: 'Playfair Display', serif;
	font-size: 2.5rem;
	font-weight: 700;
	margin: 0 0 20px 0;
	color: var(--color-white);
}

.cta-section p {
	font-family: 'Inter', sans-serif;
	font-size: 1.1rem;
	margin: 0 0 40px 0;
	color: var(--color-cream);
	line-height: 1.6;
}

/* ============================================
   SERVICES SECTION (ALTERNATIVE)
   ============================================ */

.services-section-alt {
	background-color: var(--color-beige);
}

.service-card-alt {
	background-color: var(--color-white);
	border-radius: 16px;
	padding: 2rem 1.5rem;
	transition: all 0.3s ease;
	border: 1px solid transparent;
}

.service-card-alt:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
	border-color: var(--color-gold);
}

.service-card-alt h3 {
	color: var(--color-text);
	font-size: 18px;
	font-weight: 600;
	margin: 1rem 0 0.75rem;
}

.service-card-alt p {
	color: var(--color-text-secondary);
	font-size: 14px;
	line-height: 1.6;
	margin: 0;
}

/* ============================================
   WHY US SECTION
   ============================================ */

.why-us-section {
	background-color: var(--color-dark);
}

.usp-card {
	border: 1px solid var(--color-dark-soft);
	border-radius: 16px;
	padding: 1.5rem;
	transition: all 0.3s ease;
}

.usp-card:hover {
	border-color: var(--color-gold);
	background-color: rgba(197, 165, 90, 0.05);
	transform: translateY(-4px);
	box-shadow: 0 8px 16px rgba(197, 165, 90, 0.1);
}

.usp-card h4 {
	color: var(--color-gold-light);
	font-size: 16px;
	font-weight: 600;
	margin: 0 0 0.75rem;
}

.usp-card p {
	color: var(--color-text-light);
	font-size: 13px;
	line-height: 1.6;
	margin: 0;
}

/* ============================================
   VILLES SECTION
   ============================================ */

.villes-section {
	background-color: var(--color-beige-light);
	padding: 80px 20px;
}

.villes-grid {
	max-width: 1200px;
	margin: 0 auto;
}

.ville-tag {
	background-color: var(--color-white);
	border-radius: 8px;
	padding: 1rem 1.5rem;
	text-align: center;
	transition: all 0.3s ease;
	border: 1px solid transparent;
	display: inline-block;
	margin: 10px;
}

.ville-tag:hover {
	background-color: var(--color-beige-warm);
	border-color: var(--color-gold);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(197, 165, 90, 0.1);
}

.ville-tag a {
	color: var(--color-text);
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
	transition: color 0.3s ease;
}

.ville-tag:hover a {
	color: var(--color-gold);
}

/* ============================================
   BLOG SECTION
   ============================================ */

.blog-section {
	background-color: var(--color-beige);
	padding: 80px 20px;
}

.blog-grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.blog-card {
	background-color: var(--color-white);
	border-radius: 16px;
	padding: 1.5rem;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	border: 1px solid transparent;
}

.blog-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
	border-color: var(--color-gold);
}

.blog-card-image {
	width: 100%;
	height: 200px;
	border-radius: 12px;
	overflow: hidden;
	margin-bottom: 1rem;
}

.blog-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.blog-card h3 {
	color: var(--color-text);
	font-size: 18px;
	font-weight: 600;
	margin: 0 0 0.75rem;
}

.blog-card p {
	color: var(--color-text-secondary);
	font-size: 14px;
	line-height: 1.6;
	margin: 0;
}

/* ============================================
   POST CARDS (INDEX)
   ============================================ */

.post-card {
	background-color: var(--color-beige-light);
	border-radius: 16px;
	padding: 1.5rem;
	transition: all 0.3s ease;
	border: 1px solid transparent;
}

.post-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
	border-color: var(--color-gold);
}

/* ============================================
   PAGE HERO
   ============================================ */

.page-hero {
	background-color: var(--color-beige);
	padding: 3rem 2rem;
	text-align: center;
}

.page-hero h1 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

/* ============================================
   POST STYLING
   ============================================ */

.post-header {
	background-color: var(--color-beige);
	padding: 2rem;
}

.post-header h1 {
	color: var(--color-text);
	font-size: 36px;
	font-weight: 700;
	margin: 0 0 1rem;
}

.post-content {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem;
}

.post-content-main {
	max-width: 100%;
}

.post-content-main img {
	max-width: 100%;
	height: auto;
	border-radius: 16px;
	margin: 2rem 0;
}

.post-content-main p {
	font-size: 15px;
	line-height: 1.8;
	color: var(--color-text-secondary);
	margin: 1.5rem 0;
}

.post-content-main h2 {
	font-size: 24px;
	margin: 2rem 0 1rem;
}

.post-content-main h3 {
	font-size: 18px;
	margin: 1.5rem 0 0.75rem;
}

.post-sidebar {
	background-color: var(--color-beige-light);
	border-radius: 16px;
	padding: 1.5rem;
	height: fit-content;
	position: sticky;
	top: 100px;
}

.post-sidebar h3 {
	color: var(--color-text);
	font-size: 18px;
	font-weight: 600;
	margin: 0 0 1rem;
}

.recent-post-item {
	background-color: var(--color-white);
	border: 1px solid var(--color-beige-warm);
	padding: 0.75rem;
	border-radius: 8px;
	transition: all 0.3s ease;
	margin-bottom: 0.75rem;
}

.recent-post-item:hover {
	border-color: var(--color-gold);
	background-color: var(--color-beige-warm);
}

.recent-post-item a {
	color: var(--color-text);
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	transition: color 0.3s ease;
}

.recent-post-item:hover a {
	color: var(--color-gold);
}

/* ============================================
   BUTTONS
   ============================================ */

.wp-block-button__link {
	border-radius: 50px;
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	font-size: 14px;
	padding: 0.875rem 2rem;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border: 2px solid var(--color-gold);
	background-color: var(--color-gold);
	color: var(--color-dark);
	display: inline-block;
	cursor: pointer;
	text-decoration: none;
}

.wp-block-button__link:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(197, 165, 90, 0.2);
	background-color: var(--color-gold-light);
	border-color: var(--color-gold-light);
}

.wp-block-button.full-width .wp-block-button__link {
	width: 100%;
	display: block;
	text-align: center;
}

.wp-block-button.is-style-outline .wp-block-button__link {
	background-color: transparent;
	color: var(--color-gold);
	border: 2px solid var(--color-gold);
}

.wp-block-button.is-style-outline .wp-block-button__link:hover {
	background-color: var(--color-gold);
	color: var(--color-dark);
}

.wp-block-buttons {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE (768px)
   ============================================ */

@media (max-width: 768px) {
	/* Header Mobile */
	.header-navigation {
		display: none;
	}

	.header-cta {
		display: none;
	}

	.burger-menu {
		display: flex !important;
	}

	.header-top {
		padding: 1rem !important;
	}

	/* Typography */
	h1 {
		font-size: 32px;
	}

	h2 {
		font-size: 26px;
	}

	h3 {
		font-size: 20px;
	}

	h4 {
		font-size: 16px;
	}

	/* Hero Section */
	.mob-hero {
		height: 70vh !important;
	}

	.mob-hero h1 {
		font-size: 2rem !important;
	}

	.mob-hero h2 {
		font-size: 1.8rem !important;
	}

	.mob-hero p {
		font-size: 0.95rem !important;
	}

	.mob-hero-content {
		padding: 20px !important;
	}

	.mob-hero-cta {
		flex-direction: column;
	}

	.mob-hero-cta a {
		width: 100%;
		text-align: center;
	}

	/* About Grid */
	.about-grid,
	.expert-grid {
		grid-template-columns: 1fr !important;
		gap: 40px !important;
	}

	.about-content h2,
	.expert-content h2 {
		font-size: 1.8rem !important;
	}

	/* Services Grid */
	.services-grid {
		grid-template-columns: 1fr !important;
	}

	.service-card {
		margin-bottom: 20px;
	}

	/* Expert Benefits */
	.expert-benefits {
		grid-template-columns: 1fr !important;
	}

	/* Grid Layouts */
	.footer-content {
		grid-template-columns: 1fr 1fr !important;
	}

	.service-card-alt,
	.blog-card,
	.post-card,
	.usp-card {
		padding: 1.5rem 1rem;
	}

	/* Footer */
	.footer-bottom {
		flex-direction: column;
		justify-content: center;
		text-align: center;
	}

	.footer-bottom > div {
		justify-content: center !important;
	}

	/* Post Layout */
	.post-content {
		grid-template-columns: 1fr !important;
	}

	.post-sidebar {
		position: static;
		top: auto;
		margin-top: 2rem;
	}

	/* Villes */
	.ville-tag {
		flex: 1 1 calc(50% - 1rem);
		display: inline-flex;
		justify-content: center;
	}

	/* Trust Badges */
	.trust-badges-grid {
		grid-template-columns: repeat(2, 1fr) !important;
	}

	/* Buttons */
	.wp-block-buttons {
		flex-direction: column !important;
	}

	.wp-block-button__link {
		width: 100%;
		text-align: center;
	}

	/* Expert stats grid */
	.expert-stats-grid {
		grid-template-columns: 1fr !important;
	}
}

/* ============================================
   RESPONSIVE DESIGN - SMALL MOBILE (480px)
   ============================================ */

@media (max-width: 480px) {
	/* Header */
	.header-logo {
		width: 100%;
		justify-content: center;
	}

	.header-nav-wrapper {
		width: 100%;
		justify-content: space-between;
	}

	.logo-svg {
		width: 100px;
		height: 45px;
	}

	/* Typography */
	h1 {
		font-size: 24px;
	}

	h2 {
		font-size: 20px;
	}

	h3 {
		font-size: 18px;
	}

	p {
		font-size: 13px;
	}

	/* Hero Section */
	.mob-hero {
		height: 60vh !important;
	}

	.mob-hero h1 {
		font-size: 1.5rem !important;
		letter-spacing: 1px !important;
	}

	.mob-hero h2 {
		font-size: 1.3rem !important;
	}

	.mob-hero p {
		font-size: 0.85rem !important;
	}

	.mob-hero-brand {
		margin-bottom: 20px !important;
	}

	.mob-hero-brand-subtitle {
		font-size: 0.75rem !important;
	}

	/* About section */
	.about-content h2,
	.expert-content h2 {
		font-size: 1.4rem !important;
	}

	.about-image,
	.expert-image-circle {
		display: none;
	}

	/* Sections */
	.hero-section,
	.mob-hero {
		padding: 2rem 1rem !important;
	}

	.services-section,
	.blog-section,
	.villes-section,
	.about-section,
	.expert-section,
	.mob-final-cta,
	.cta-section {
		padding: 2rem 1rem !important;
	}

	.footer-content {
		grid-template-columns: 1fr !important;
	}

	.footer-bottom {
		padding: 1.5rem !important;
	}

	/* Trust Badges */
	.trust-badge {
		flex: 1 1 calc(50% - 1rem);
	}

	.trust-badges-grid {
		grid-template-columns: 1fr !important;
		gap: 20px !important;
	}

	/* Buttons */
	.wp-block-buttons {
		flex-direction: column !important;
	}

	.wp-block-button__link {
		width: 100%;
		text-align: center;
		padding: 0.75rem 1rem !important;
	}

	.header-cta-button {
		padding: 0.5rem 1rem !important;
		font-size: 10px !important;
	}

	/* Villes */
	.ville-tag {
		padding: 0.75rem 1rem;
		display: block;
		width: 100%;
		margin: 8px 0;
	}

	/* Services grid */
	.services-grid {
		gap: 20px !important;
	}

	.service-card-image {
		height: 200px !important;
	}

	.service-card-content {
		padding: 20px !important;
	}

	/* Post sidebar sticky */
	.post-sidebar {
		top: 80px !important;
	}

	/* CTA content */
	.cta-content {
		padding: 0 1rem;
	}

	.cta-section h2,
	.mob-final-cta h2 {
		font-size: 1.5rem !important;
	}

	.cta-section p,
	.mob-final-cta p {
		font-size: 0.95rem !important;
	}

	/* Expert stats */
	.expert-stats {
		padding: 20px !important;
	}

	.expert-stat-item p:last-child {
		font-size: 1.5rem !important;
	}
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-20px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(20px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.wp-block-group {
	animation: fadeInUp 0.6s ease-out;
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

:focus-visible {
	outline: 2px solid var(--color-gold);
	outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
	outline: 2px solid var(--color-gold);
	outline-offset: 2px;
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible {
	outline: 2px solid var(--color-gold);
	outline-offset: 2px;
}

/* Skip to main link */
.skip-to-main {
	position: absolute;
	left: -10000px;
	z-index: 999;
	padding: 1em;
	background-color: var(--color-gold);
	color: var(--color-dark);
	text-decoration: none;
	font-weight: 600;
}

.skip-to-main:focus {
	left: 6px;
	top: 6px;
	z-index: 9999;
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
	.site-header,
	.site-footer,
	.mobile-nav-overlay,
	.mobile-menu-toggle {
		display: none;
	}

	body {
		background-color: var(--color-white);
		color: var(--color-text);
	}

	a {
		color: var(--color-gold);
		text-decoration: underline;
	}
}

/* ============================================
   UTILITY SPACING
   ============================================ */

.section-padding {
	padding: 80px 20px;
}

.section-padding-sm {
	padding: 40px 20px;
}

.section-padding-lg {
	padding: 120px 20px;
}

.max-width-container {
	max-width: 1200px;
	margin: 0 auto;
}

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

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

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

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

.bg-gold {
	background-color: var(--color-gold);
}

.bg-dark {
	background-color: var(--color-dark);
}

.bg-beige {
	background-color: var(--color-beige);
}

/* ============================================
   WORDPRESS BLOCK STYLES
   ============================================ */

.wp-block-group {
	margin: 0;
	padding: 0;
}

.wp-block-image {
	margin: 1rem 0;
}

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

.wp-block-separator {
	background-color: var(--color-gold);
	height: 2px;
	border: none;
	margin: 2rem 0;
}

/* ============================================
   UTILITY TRANSITIONS
   ============================================ */

.transition-all {
	transition: all 0.3s ease;
}

.transition-color {
	transition: color 0.3s ease;
}

.transition-transform {
	transition: transform 0.3s ease;
}

.transition-shadow {
	transition: box-shadow 0.3s ease;
}
