:root {
	--dark-green: #002b1b;
	--beige: #f9fde1;
	--serif: 'Playfair Display', serif;
	--sans: 'Montserrat', sans-serif;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: var(--sans);
	background: var(--beige);
	color: var(--dark-green);
}

/* ANIMATIONS SCROLL */
.scroll-animate {
	opacity: 0;
	transform: translateY(30px);
	transition:
		opacity 0.8s ease,
		transform 0.8s ease;
}

.scroll-animate.visible {
	opacity: 1;
	transform: translateY(0);
}

.scroll-animate-left {
	opacity: 0;
	transform: translateX(-30px);
	transition:
		opacity 0.8s ease,
		transform 0.8s ease;
}

.scroll-animate-left.visible {
	opacity: 1;
	transform: translateX(0);
}

.scroll-animate-right {
	opacity: 0;
	transform: translateX(30px);
	transition:
		opacity 0.8s ease,
		transform 0.8s ease;
}

.scroll-animate-right.visible {
	opacity: 1;
	transform: translateX(0);
}

.stagger-1 {
	transition-delay: 0.1s;
}
.stagger-2 {
	transition-delay: 0.2s;
}
.stagger-3 {
	transition-delay: 0.3s;
}

/* HERO */
.hero {
	min-height: 100vh;
	background-image: url('https://images.unsplash.com/photo-1511739001486-6bfe10ce785f?q=80&w=2400');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	color: var(--beige);
	display: flex;
	flex-direction: column;
	text-align: center;
	position: relative;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--dark-green);
	opacity: 0.9;
	z-index: 1;
}

nav {
	display: flex;
	justify-content: space-between;
	padding: 30px 5%;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
	position: relative;
	z-index: 2;
}

.logo {
	font-weight: 600;
	letter-spacing: 2px;
	font-size: 1rem;
}

.nav-links {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.nav-links a {
	color: var(--beige);
	text-decoration: none;
	font-size: 0.9rem;
	text-transform: uppercase;
	position: relative;
	transition: opacity 0.3s ease;
}

.nav-links a::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--beige);
	transition: width 0.3s ease;
}

.nav-links a:hover {
	opacity: 0.8;
}

.nav-links a:hover::after {
	width: 100%;
}

.hero-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 40px 20px;
	position: relative;
	z-index: 2;
}

.hero h1 {
	font-family: var(--serif);
	font-size: 5rem;
	margin-bottom: 10px;
}

.subtitle {
	letter-spacing: 5px;
	margin-bottom: 20px;
	font-weight: 300;
	font-size: 0.9rem;
}

.lawyer-tagline {
	font-style: italic;
	opacity: 0.8;
	margin-bottom: 30px;
}

/* SOCIAL ICONS IN HERO */
.social-icons {
	display: flex;
	gap: 20px;
	margin-bottom: 30px;
}

.social-icons a {
	width: 44px;
	height: 44px;
	border: 1px solid var(--beige);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--beige);
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}

.social-icons a::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: var(--beige);
	transition: left 0.4s ease;
	z-index: -1;
	border-radius: 50%;
}

.social-icons a:hover::before {
	left: 0;
}

.social-icons a:hover {
	color: var(--dark-green);
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(249, 253, 225, 0.3);
}

.social-icons svg {
	width: 20px;
	height: 20px;
	position: relative;
	z-index: 1;
}

.btn-primary {
	border: 1px solid var(--beige);
	color: var(--beige);
	padding: 15px 40px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.4s ease;
	display: inline-block;
	position: relative;
	overflow: hidden;
}

.btn-primary::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: var(--beige);
	transition: left 0.4s ease;
	z-index: -1;
}

.btn-primary:hover::before {
	left: 0;
}

.btn-primary:hover {
	color: var(--dark-green);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(249, 253, 225, 0.3);
}

/* SECTION LE CABINET */
.cabinet-section {
	padding: 80px 5% 80px;
	background: var(--dark-green);
	color: var(--beige);
}

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

.section-title {
	font-family: var(--serif);
	font-size: 2.5rem;
	margin-bottom: 40px;
	color: var(--beige);
	text-align: left;
}

.cabinet-text-only {
	max-width: 900px;
}

.cabinet-text-only p {
	font-size: 1.05rem;
	line-height: 1.8;
	margin-bottom: 25px;
	font-weight: 300;
	color: var(--beige);
}

/* SECTION AVOCAT */
.avocat-section {
	padding: 80px 5% 80px;
	background: var(--beige);
	color: var(--dark-green);
}

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

.section-title-light {
	font-family: var(--serif);
	font-size: 2.5rem;
	margin-bottom: 50px;
	text-align: left;
	color: var(--dark-green);
}

.avocat-content-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.avocat-image {
	width: 100%;
	height: 600px;
	border-radius: 4px;
	overflow: hidden;
}

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

.avocat-text p {
	font-size: 1rem;
	line-height: 1.8;
	margin-bottom: 20px;
	font-weight: 300;
	color: var(--dark-green);
}

/* SECTION EXPERTISE */
.expertise-section {
	padding: 80px 5% 80px;
	background: var(--dark-green);
	color: var(--beige);
}

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

.expertise-section .section-title-light {
	color: var(--beige);
}

.expertise-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

.expertise-card {
	background: rgba(255, 255, 255, 0.03);
	padding: 40px 30px;
	border-radius: 4px;
	border: 1px solid rgba(249, 253, 225, 0.1);
	transition: 0.3s;
}

.expertise-card:hover {
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(249, 253, 225, 0.3);
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(249, 253, 225, 0.1);
}

.expertise-card h3 {
	font-family: var(--serif);
	font-size: 1.5rem;
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 1px solid rgba(249, 253, 225, 0.2);
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--beige);
}

.expertise-card h3::before {
	content: '';
	display: inline-block;
	width: 24px;
	height: 24px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	flex-shrink: 0;
}

.expertise-card:nth-child(1) h3::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f9fde1' stroke-width='2'%3E%3Cpath d='M12 2L2 7l10 5 10-5-10-5z'/%3E%3Cpath d='M2 17l10 5 10-5M2 12l10 5 10-5'/%3E%3C/svg%3E");
}

.expertise-card:nth-child(2) h3::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f9fde1' stroke-width='2'%3E%3Crect x='1' y='3' width='15' height='13'/%3E%3Cpolyline points='16 8 20 8 23 11 23 16 16 16 16 8'/%3E%3Ccircle cx='5.5' cy='18.5' r='2.5'/%3E%3Ccircle cx='18.5' cy='18.5' r='2.5'/%3E%3C/svg%3E");
}

.expertise-card:nth-child(3) h3::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f9fde1' stroke-width='2'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E");
}

.expertise-description {
	font-size: 0.95rem;
	font-weight: 300;
	line-height: 1.7;
	margin-bottom: 25px;
	color: var(--beige);
	opacity: 0.9;
}

.expertise-card ul {
	list-style: none;
}

.expertise-card li {
	font-size: 0.95rem;
	font-weight: 300;
	margin-bottom: 12px;
	padding-left: 20px;
	position: relative;
	color: var(--beige);
}

.expertise-card li:before {
	content: '→';
	position: absolute;
	left: 0;
	opacity: 0.5;
}

/* SECTION PRESSE */
.presse-section {
	padding: 80px 5% 100px;
	background: var(--beige);
	color: var(--dark-green);
}

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

.presse-section .section-title {
	color: var(--dark-green);
}

.presse-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 50px;
	margin-top: 60px;
}

.presse-card {
	background: white;
	border-radius: 0;
	overflow: hidden;
	border: 1px solid rgba(0, 43, 27, 0.06);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	text-decoration: none;
	color: var(--dark-green);
	display: flex;
	flex-direction: column;
	position: relative;
	box-shadow: 0 2px 8px rgba(0, 43, 27, 0.04);
}

.presse-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 100%;
	background: var(--dark-green);
	transform: scaleY(0);
	transform-origin: top;
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.presse-card:hover::before {
	transform: scaleY(1);
}

.presse-card:hover {
	transform: translateY(-10px);
	border-color: rgba(0, 43, 27, 0.12);
	box-shadow: 0 20px 60px rgba(0, 43, 27, 0.12);
}

.presse-image {
	display: none;
}

.presse-content {
	padding: 45px 40px;
	display: flex;
	flex-direction: column;
	flex: 1;
	min-height: 320px;
}

.presse-source {
	font-size: 0.65rem;
	text-transform: uppercase;
	letter-spacing: 2.5px;
	color: var(--dark-green);
	opacity: 0.4;
	margin-bottom: 24px;
	font-weight: 600;
}

.presse-content h4 {
	font-family: var(--serif);
	font-size: 1.4rem;
	margin-bottom: 24px;
	line-height: 1.5;
	font-weight: 700;
	flex-grow: 1;
	color: var(--dark-green);
}

.presse-excerpt {
	font-size: 0.875rem;
	font-weight: 300;
	line-height: 1.75;
	color: var(--dark-green);
	opacity: 0.7;
	margin-top: auto;
	padding-top: 24px;
	border-top: 1px solid rgba(0, 43, 27, 0.06);
}

/* SECTION CONTACT */
.case-contact {
	padding: 80px 5% 80px;
	background: var(--dark-green);
	color: var(--beige);
}

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

.contact-top {
	margin-bottom: 60px;
}

.contact-info-section {
	display: flex;
	flex-direction: column;
}

.contact-info-section h2 {
	font-family: var(--serif);
	font-size: 2.5rem;
	margin-bottom: 40px;
	text-align: left;
	color: var(--beige);
}

.contact-info-wrapper {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 100px;
	align-items: start;
}

.contact-info-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 35px;
}

.contact-info-item h3 {
	font-family: var(--serif);
	font-size: 1.1rem;
	margin-bottom: 15px;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(249, 253, 225, 0.2);
	color: var(--beige);
}

.contact-info-item p {
	font-size: 0.95rem;
	font-weight: 300;
	margin-bottom: 8px;
	line-height: 1.6;
	color: var(--beige);
}

.contact-info-item a {
	color: var(--beige);
	text-decoration: none;
	transition: 0.3s;
}

.contact-info-item a:hover {
	opacity: 0.7;
}

.contact-form-container {
	background: rgba(255, 255, 255, 0.03);
	padding: 40px;
	border-radius: 4px;
	width: 100%;
	border: 1px solid rgba(249, 253, 225, 0.1);
}

input,
textarea {
	width: 100%;
	background: transparent;
	border: none;
	border-bottom: 1px solid rgba(249, 253, 225, 0.3);
	padding: 15px 0;
	color: var(--beige);
	margin-bottom: 30px;
	font-family: var(--sans);
	outline: none;
}

input:focus,
textarea:focus {
	border-bottom-color: var(--beige);
}

input::placeholder,
textarea::placeholder {
	color: rgba(249, 253, 225, 0.5);
}

/* ============================================
   HOMOGÉNÉISATION DES BOUTONS
   ============================================ */

.btn-submit {
	width: 100%;
	background: transparent;
	color: var(--beige);
	border: 1px solid var(--beige);
	padding: 20px;
	font-weight: 600;
	cursor: pointer;
	text-transform: uppercase;
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
	font-family: var(--sans);
}

.btn-submit::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: var(--beige);
	transition: left 0.4s ease;
	z-index: -1;
}

.btn-submit:hover::before {
	left: 0;
}

.btn-submit:hover {
	color: var(--dark-green);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(249, 253, 225, 0.3);
}

.map-wrapper {
	width: 100%;
	height: 400px;
	border-radius: 4px;
	overflow: hidden;
	border: 1px solid rgba(249, 253, 225, 0.2);
	background: var(--dark-green);
	position: relative;
}
.map-wrapper iframe {
	width: 100%;
	height: 100%;
	border: none;
}

/* FOOTER */
.footer {
	background: var(--dark-green);
	color: var(--beige);
	padding: 40px 5%;
	border-top: 1px solid rgba(249, 253, 225, 0.1);
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

/* FOOTER SOCIAL ICONS */
.footer-social {
	display: flex;
	gap: 15px;
	margin-bottom: 10px;
}

.footer-social a {
	width: 36px;
	height: 36px;
	border: 1px solid rgba(249, 253, 225, 0.3);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--beige);
	transition: all 0.3s ease;
}

.footer-social a:hover {
	background: var(--beige);
	color: var(--dark-green);
	border-color: var(--beige);
	transform: translateY(-3px);
}

.footer-social svg {
	width: 16px;
	height: 16px;
}

.footer-links {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
	justify-content: center;
}

.footer-links a {
	color: var(--beige);
	text-decoration: none;
	font-size: 0.9rem;
	opacity: 0.8;
	transition: 0.3s;
}

.footer-links a:hover {
	opacity: 1;
}

.footer-bottom {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	text-align: center;
}

.footer-copyright {
	font-size: 0.85rem;
	opacity: 0.6;
}

.footer-credit {
	font-size: 0.8rem;
	opacity: 0.5;
}

.footer-credit a {
	color: var(--beige);
	text-decoration: none;
	font-weight: 600;
	transition: 0.3s;
}

.footer-credit a:hover {
	opacity: 1;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
	.hero h1 {
		font-size: 3.5rem;
	}

	.avocat-content-inner,
	.contact-info-wrapper {
		grid-template-columns: 1fr;
		gap: 60px;
	}

	.expertise-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.presse-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.contact-info-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.section-title,
	.section-title-light,
	.contact-info-section h2 {
		font-size: 2.2rem;
	}

	.avocat-image {
		height: 400px;
	}

	.map-wrapper {
		height: 350px;
	}
}

@media (max-width: 768px) {
	.hero {
		background-attachment: fixed;
	}

	.hero h1 {
		font-size: 2.5rem;
	}

	.subtitle {
		font-size: 0.75rem;
		letter-spacing: 3px;
	}

	.logo {
		font-size: 0.85rem;
	}

	nav {
		padding: 20px 5%;
		justify-content: center;
		text-align: center;
	}

	.logo {
		width: 100%;
		margin-bottom: 10px;
	}

	.nav-links {
		width: 100%;
		justify-content: center;
		gap: 15px;
	}

	.nav-links a {
		font-size: 0.8rem;
	}

	.expertise-grid,
	.presse-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 25px;
	}

	.cabinet-section,
	.avocat-section {
		padding: 60px 5%;
	}

	.section-title,
	.section-title-light {
		font-size: 2rem;
		margin-bottom: 40px;
	}

	.avocat-image {
		height: 350px;
	}

	.footer-links {
		gap: 20px;
	}

	.footer-links a {
		font-size: 0.8rem;
	}

	/* ============================================
	   OPTIMISATION MOBILE - SECTION PRESSE
	   ============================================ */

	.presse-section {
		padding: 50px 5% 60px;
	}

	.presse-grid {
		gap: 20px;
		margin-top: 40px;
	}

	.presse-card {
		min-height: auto;
	}

	.presse-content {
		padding: 24px 20px;
		min-height: auto;
	}

	.presse-source {
		font-size: 0.6rem;
		letter-spacing: 2px;
		margin-bottom: 14px;
	}

	.presse-content h4 {
		font-size: 1rem;
		margin-bottom: 14px;
		line-height: 1.4;
	}

	.presse-excerpt {
		font-size: 0.8rem;
		line-height: 1.6;
		padding-top: 14px;
	}

	/* ============================================
	   OPTIMISATION MOBILE - SECTION EXPERTISE
	   ============================================ */

	.expertise-section {
		padding: 50px 5% 60px;
	}

	.expertise-grid {
		gap: 20px;
	}

	.expertise-card {
		padding: 20px 18px;
	}

	.expertise-card h3 {
		font-size: 1.25rem;
		margin-bottom: 14px;
		padding-bottom: 12px;
	}

	.expertise-card h3::before {
		width: 20px;
		height: 20px;
	}

	.expertise-description {
		font-size: 0.88rem;
		line-height: 1.5;
		margin-bottom: 18px;
	}

	.expertise-card li {
		font-size: 0.88rem;
		margin-bottom: 8px;
		padding-left: 18px;
	}

	/* ============================================
	   OPTIMISATION MOBILE - SECTION CONTACT
	   ============================================ */

	.case-contact {
		padding: 50px 5% 60px;
	}

	.contact-top {
		margin-bottom: 40px;
	}

	.contact-info-section h2 {
		font-size: 2rem;
		margin-bottom: 30px;
	}

	.contact-info-wrapper {
		gap: 40px;
	}

	.contact-info-grid {
		gap: 20px;
	}

	.contact-info-item h3 {
		font-size: 1rem;
		margin-bottom: 12px;
		padding-bottom: 8px;
	}

	.contact-info-item p {
		font-size: 0.88rem;
		margin-bottom: 6px;
		line-height: 1.5;
	}

	.contact-form-container {
		padding: 25px 20px;
	}

	input,
	textarea {
		padding: 12px 0;
		margin-bottom: 22px;
		font-size: 0.9rem;
	}

	.btn-submit {
		padding: 16px;
		font-size: 0.9rem;
	}

	.map-wrapper {
		height: 280px;
	}
}

@media (max-width: 480px) {
	.hero h1 {
		font-size: 2rem;
	}

	.btn-primary {
		padding: 12px 30px;
		font-size: 0.9rem;
	}

	.nav-links {
		gap: 10px;
	}

	.expertise-grid,
	.presse-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.avocat-image {
		height: 400px;
	}

	.section-title,
	.section-title-light {
		font-size: 1.8rem;
	}

	.footer-links {
		flex-direction: column;
		gap: 15px;
	}

	.social-icons {
		gap: 15px;
	}

	.social-icons a {
		width: 40px;
		height: 40px;
	}

	/* ============================================
	   OPTIMISATION MOBILE - SECTION PRESSE
	   ============================================ */

	.presse-section {
		padding: 40px 5% 50px;
	}

	.presse-grid {
		gap: 16px;
		margin-top: 30px;
	}

	.presse-content {
		padding: 20px 18px;
	}

	.presse-source {
		font-size: 0.55rem;
		margin-bottom: 12px;
	}

	.presse-content h4 {
		font-size: 0.95rem;
		margin-bottom: 12px;
	}

	.presse-excerpt {
		font-size: 0.75rem;
		line-height: 1.5;
		padding-top: 12px;
	}

	/* ============================================
	   OPTIMISATION MOBILE - SECTION EXPERTISE
	   ============================================ */

	.expertise-section {
		padding: 40px 5% 50px;
	}

	.expertise-grid {
		gap: 16px;
	}

	.expertise-card {
		padding: 18px 16px;
	}

	.expertise-card h3 {
		font-size: 1.15rem;
		margin-bottom: 12px;
		padding-bottom: 10px;
		gap: 10px;
	}

	.expertise-card h3::before {
		width: 18px;
		height: 18px;
	}

	.expertise-description {
		font-size: 0.85rem;
		line-height: 1.45;
		margin-bottom: 15px;
	}

	.expertise-card li {
		font-size: 0.85rem;
		margin-bottom: 7px;
		padding-left: 16px;
	}

	/* ============================================
	   OPTIMISATION MOBILE - SECTION CONTACT
	   ============================================ */

	.case-contact {
		padding: 40px 5% 50px;
	}

	.contact-top {
		margin-bottom: 30px;
	}

	.contact-info-section h2 {
		font-size: 1.8rem;
		margin-bottom: 25px;
	}

	.contact-info-wrapper {
		gap: 30px;
	}

	.contact-info-grid {
		gap: 18px;
	}

	.contact-info-item h3 {
		font-size: 0.95rem;
		margin-bottom: 10px;
		padding-bottom: 7px;
	}

	.contact-info-item p {
		font-size: 0.85rem;
		margin-bottom: 5px;
		line-height: 1.4;
	}

	.contact-form-container {
		padding: 22px 18px;
	}

	input,
	textarea {
		padding: 10px 0;
		margin-bottom: 20px;
		font-size: 0.88rem;
	}

	textarea {
		min-height: 100px;
	}

	.btn-submit {
		padding: 14px;
		font-size: 0.85rem;
	}

	.map-wrapper {
		height: 240px;
	}
}

/* ============================================
   PROFESSIONAL MOBILE FOOTER REFINEMENT
   ============================================ */

@media (max-width: 768px) {
	.footer {
		padding: 50px 6% 40px;
		background: linear-gradient(to bottom, #002b1b 0%, #001f14 100%);
		border-top: 1px solid rgba(249, 253, 225, 0.08);
	}

	.footer-content {
		gap: 28px;
	}

	/* Social block */
	.footer-social {
		gap: 18px;
		margin-bottom: 5px;
	}

	.footer-social a {
		width: 42px;
		height: 42px;
		border: 1px solid rgba(249, 253, 225, 0.25);
		background: rgba(249, 253, 225, 0.03);
		backdrop-filter: blur(4px);
	}

	.footer-social a:hover {
		background: var(--beige);
		color: var(--dark-green);
		transform: translateY(-2px);
	}

	.footer-social svg {
		width: 18px;
		height: 18px;
	}

	/* Legal links */
	.footer-links {
		flex-direction: column;
		gap: 14px;
		align-items: center;
		padding-top: 10px;
	}

	.footer-links a {
		font-size: 0.85rem;
		letter-spacing: 0.3px;
		opacity: 0.75;
		position: relative;
		padding-bottom: 6px;
	}

	.footer-links a::after {
		content: '';
		position: absolute;
		left: 50%;
		bottom: 0;
		transform: translateX(-50%);
		width: 0;
		height: 1px;
		background: var(--beige);
		transition: width 0.3s ease;
		opacity: 0.6;
	}

	.footer-links a:hover::after {
		width: 40%;
	}

	/* Bottom zone */
	.footer-bottom {
		margin-top: 20px;
		padding-top: 20px;
		border-top: 1px solid rgba(249, 253, 225, 0.08);
		gap: 8px;
	}

	.footer-copyright {
		font-size: 0.75rem;
		letter-spacing: 0.4px;
		opacity: 0.6;
	}

	.footer-credit {
		font-size: 0.72rem;
		opacity: 0.45;
	}

	.footer-credit a {
		font-weight: 500;
		letter-spacing: 0.3px;
	}
}

@media (max-width: 480px) {
	.footer {
		padding: 45px 7% 35px;
	}

	.footer-content {
		gap: 24px;
	}

	.footer-social a {
		width: 40px;
		height: 40px;
	}

	.footer-links a {
		font-size: 0.8rem;
	}

	.footer-copyright {
		font-size: 0.7rem;
	}

	.footer-credit {
		font-size: 0.68rem;
	}
}

/* ============================================
   GLOBAL HORIZONTAL OVERFLOW FIX
   ============================================ */

html,
body {
	width: 100%;
	max-width: 100%;
	overflow-x: hidden;
	position: relative;
}

/* Prevent any section from exceeding viewport */
section,
header,
footer {
	max-width: 100vw;
	overflow-x: hidden;
}

/* Fix transforms causing overflow on mobile */
@media (max-width: 768px) {
	.scroll-animate-left,
	.scroll-animate-right {
		transform: translateX(0);
	}
}
