:root {
	--primary-orange: #ff6a00;
	--primary-hover: #e05d00;
	--dark-brown: #2a1c18;
	--darker-brown: #1f1411;
	--light-bg: #fdfbf9;
	--gray-bg: #f4f0ec;
	--white: #ffffff;
	--text-dark: #3B2722;
	--text-light: #8a7d7a;
	--transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
	--fast-transition: all 0.15s ease-in-out;
	--radius: 16px;
}

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

body {
	font-family: 'Inter', sans-serif;
	color: var(--text-dark);
	background-color: var(--light-bg);
	line-height: 1.6;
	overflow-x: hidden;
	scroll-behavior: smooth;
}

h1, h2, h3, h4 {
	font-family: 'Playfair Display', serif;
	font-weight: 700;
	line-height: 1.2;
}

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

/* --- HEADER --- */
header {
	position: fixed;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	width: 90%;
	max-width: 1200px;
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	z-index: 1000;
	padding: 8px 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-radius: 50px;
	border: 1px solid rgba(255, 255, 255, 0.4);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	transition: var(--transition);
}

header.scrolled {
	top: 0;
	width: 100%;
	max-width: 100%;
	border-radius: 0;
	padding: 10px 50px;
	background: rgba(255, 255, 255, 0.98);
	border: none;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.logo img {
	height: 35px;
	transition: var(--transition);
}

header.scrolled .logo img {
	height: 30px;
}

.header-right {
	display: flex;
	align-items: center;
	gap: 30px;
}

nav > ul {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 35px;
}

nav a {
	color: var(--text-dark);
	font-weight: 600;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 1.2px;
	position: relative;
}

nav > ul > li > a::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: -5px;
	left: 0;
	background-color: var(--primary-orange);
	transition: var(--fast-transition);
}

nav > ul > li > a:hover,
nav > ul > li > a.active {
	color: var(--primary-orange);
}

nav > ul > li > a:hover::after,
nav > ul > li > a.active::after {
	width: 100%;
}

.dropdown {
	position: relative;
	padding: 10px 0;
}

.dropdown-menu {
	list-style: none;
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%) translateY(15px);
	background-color: var(--white);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	border-radius: 12px;
	padding: 10px 0;
	min-width: 240px;
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition);
	border: 1px solid rgba(0,0,0,0.05);
}

.dropdown:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
	width: 100%;
}

.dropdown-menu a {
	display: block;
	padding: 12px 25px;
	text-transform: none;
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--text-dark);
	letter-spacing: 0.5px;
	transition: var(--fast-transition);
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
	background-color: var(--gray-bg);
	color: var(--primary-orange);
}

.dropdown-menu a::after {
	display: none;
}

.btn-support {
	background-color: var(--primary-orange);
	color: var(--white) !important;
	padding: 12px 28px;
	border-radius: 30px;
	font-weight: 600;
	letter-spacing: 1px;
	box-shadow: 0 4px 15px rgba(255, 106, 0, 0.2);
	display: inline-block;
	text-align: center;
}

.btn-support::after {
	display: none !important;
}

.btn-support:hover {
	background-color: var(--primary-hover);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 106, 0, 0.3);
	color: var(--white) !important;
}

.btn-outline {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 35px;
	border: 2px solid var(--primary-orange);
	color: var(--primary-orange);
	border-radius: 30px;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 0.85rem;
	letter-spacing: 1.5px;
	position: relative;
	overflow: hidden;
	z-index: 1;
	transition: var(--transition);
}

.btn-outline::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background: var(--primary-orange);
	z-index: -1;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
}

.btn-outline:hover {
	color: var(--white);
}

.btn-outline:hover::before {
	transform: scaleX(1);
}

.btn-submit {
	-webkit-appearance: none;
	appearance: none;
	display: block;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	background-color: #ff6a00;
	background: #ff6a00;
	color: #ffffff !important;
	border: none;
	padding: 18px 28px;
	font-size: 1rem;
	font-weight: 600;
	font-family: 'Inter', sans-serif;
	line-height: 1.4;
	cursor: pointer;
	border-radius: 12px;
	transition: var(--transition);
	text-transform: uppercase;
	letter-spacing: 1px;
	box-shadow: 0 4px 15px rgba(255, 106, 0, 0.2);
	text-align: center;
}

.btn-submit:hover,
.btn-submit:focus {
	background-color: #e05d00;
	background: #e05d00;
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(255, 106, 0, 0.25);
	color: #ffffff !important;
	outline: none;
}

/* --- FOOTER --- */
footer {
	background-color: var(--darker-brown);
	color: var(--white);
	padding: 80px 5vw 30px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 60px;
	max-width: 1200px;
	margin: 0 auto 60px;
}

.footer-col {
	display: flex;
	flex-direction: column;
	gap: 80px;
}

.footer-brand img {
	height: 50px;
	margin-bottom: 25px;
}

.footer-brand p {
	color: rgba(255,255,255,0.6);
	max-width: 400px;
	line-height: 1.8;
	margin-bottom: 25px;
}

.social-links {
	display: flex;
	gap: 15px;
}

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

.social-links a:hover {
	background: var(--primary-orange);
	transform: translateY(-3px);
}

.footer-links h4 {
	font-family: 'Inter', sans-serif;
	font-size: 1.2rem;
	margin-bottom: 25px;
	position: relative;
	padding-bottom: 10px;
}

.footer-links h4::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 30px;
	height: 2px;
	background: var(--primary-orange);
}

.footer-links h4 a {
	color: inherit;
}

.footer-links h4 a:hover {
	color: var(--primary-orange);
	transform: none;
}

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

.footer-links li {
	margin-bottom: 15px;
}

.footer-links li:last-child {
	margin-bottom: 0;
}

.footer-links a {
	color: rgba(255,255,255,0.6);
	transition: var(--fast-transition);
	display: inline-block;
}

.footer-links a:hover {
	color: var(--primary-orange);
	transform: translateX(5px);
}

.bottom-footer {
	border-top: 1px solid rgba(255,255,255,0.1);
	padding-top: 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	font-size: 0.9rem;
	color: rgba(255,255,255,0.5);
	flex-wrap: wrap;
	gap: 20px;
}

.bottom-footer-links {
	display: flex;
	gap: 20px;
}

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

.go-top {
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 10px;
	background: rgba(255,255,255,0.05);
	padding: 10px 20px;
	border-radius: 30px;
	transition: var(--transition);
	color: var(--white);
	font-weight: 500;
}

.go-top:hover {
	background: var(--primary-orange);
}

/* --- COOKIE BANNER --- */
.cookie-banner {
	position: fixed;
	left: 20px;
	right: 20px;
	bottom: 20px;
	z-index: 9999;
	max-width: 720px;
	margin: 0 auto;
	padding: 22px 26px;
	background: var(--dark-brown);
	color: var(--white);
	border-radius: var(--radius);
	box-shadow: 0 20px 50px rgba(42, 28, 24, 0.35);
	display: none;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	transform: translateY(20px);
	opacity: 0;
	transition: opacity 0.35s ease, transform 0.35s ease;
}

.cookie-banner.is-visible {
	display: flex;
	opacity: 1;
	transform: translateY(0);
}

.cookie-banner-text {
	flex: 1;
	min-width: 0;
}

.cookie-banner-text p {
	font-family: 'Inter', sans-serif;
	font-size: 0.92rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.88);
	margin: 0;
}

.cookie-banner-text a {
	color: var(--primary-orange);
	font-weight: 600;
	border-bottom: 1px solid transparent;
	transition: border-color 0.2s ease;
}

.cookie-banner-text a:hover {
	border-bottom-color: var(--primary-orange);
}

.cookie-banner-actions {
	display: flex;
	flex-shrink: 0;
	gap: 10px;
	align-items: center;
}

.cookie-banner-actions button {
	font-family: 'Inter', sans-serif;
	font-size: 0.85rem;
	font-weight: 600;
	padding: 11px 18px;
	border-radius: 999px;
	border: none;
	cursor: pointer;
	transition: var(--transition);
}

.cookie-btn-accept {
	background: var(--primary-orange);
	color: var(--white);
}

.cookie-btn-accept:hover {
	background: #e55f00;
	transform: translateY(-1px);
}

.cookie-btn-refuse {
	background: transparent;
	color: rgba(255, 255, 255, 0.85);
	border: 1px solid rgba(255, 255, 255, 0.25) !important;
}

.cookie-btn-refuse:hover {
	border-color: rgba(255, 255, 255, 0.55) !important;
	background: rgba(255, 255, 255, 0.06);
}

/* --- ANIMATIONS --- */
.reveal {
	opacity: 0;
	transform: translateY(40px);
	transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
	opacity: 1;
	transform: translateY(0);
}

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

	header {
		width: 95%;
		padding: 15px 20px;
	}

	nav > ul {
		display: none;
	}

	.cookie-banner {
		flex-direction: column;
		align-items: stretch;
		left: 12px;
		right: 12px;
		bottom: 12px;
		padding: 18px 20px;
	}

	.cookie-banner-actions {
		flex-direction: column;
		width: 100%;
	}

	.cookie-banner-actions button {
		width: 100%;
	}
}
