/* Font Face Declarations */
@font-face {
	font-family: 'Bariol';
	font-style: normal;
	font-weight: normal;
	src: url('fonts/Bariol/bariol_regular-webfont.woff') format('woff');
}

@font-face {
	font-family: 'Bariol';
	font-style: italic;
	font-weight: normal;
	src: url('fonts/Bariol/bariol_regular_italic-webfont.woff') format('woff');
}

@font-face {
	font-family: 'Bariol';
	font-style: normal;
	font-weight: 300;
	src: url('fonts/Bariol/bariol_light-webfont.woff') format('woff');
}

@font-face {
	font-family: 'Bariol';
	font-style: italic;
	font-weight: 300;
	src: url('fonts/Bariol/bariol_light_italic-webfont.woff') format('woff');
}

@font-face {
	font-family: 'Bariol';
	font-style: normal;
	font-weight: 700;
	src: url('fonts/Bariol/bariol_bold-webfont.woff') format('woff');
}

@font-face {
	font-family: 'Bariol';
	font-style: italic;
	font-weight: 700;
	src: url('fonts/Bariol/bariol_bold_italic-webfont.woff') format('woff');
}

/* Novela Font Face Declarations */
@font-face {
	font-family: 'Novela';
	font-style: normal;
	font-weight: 400;
	src: url('fonts/Novela/Novela-Regular.otf') format('opentype');
}

@font-face {
	font-family: 'Novela';
	font-style: italic;
	font-weight: 400;
	src: url('fonts/Novela/Novela-RegularItalic.otf') format('opentype');
}

@font-face {
	font-family: 'Novela';
	font-style: normal;
	font-weight: 700;
	src: url('fonts/Novela/Novela-Bold.otf') format('opentype');
}

@font-face {
	font-family: 'Novela';
	font-style: normal;
	font-weight: 900;
	src: url('fonts/Novela/Novela-Black.otf') format('opentype');
}

@font-face {
	font-family: 'Novela';
	font-style: normal;
	font-weight: 500;
	src: url('fonts/Novela/Novela-Poster.otf') format('opentype');
}

@font-face {
	font-family: 'Novela';
	font-style: normal;
	font-weight: 300;
	src: url('fonts/Novela/Novela-DisplayRegular.otf') format('opentype');
}

@font-face {
	font-family: 'Novela';
	font-style: italic;
	font-weight: 300;
	src: url('fonts/Novela/Novela-DisplayItalic.otf') format('opentype');
}

/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: inherit;
}

:root {
	--primary-green: #64ff8d;
	--hero-background: #f6f6f6;
	--black: #000000;
	--white: #ffffff;
	--light-grey: #f5f5f5;
	--dark-grey: #333333;
	--text-grey: #666666;
	--font-italic: 'Novela', serif;
	--font-title-bold: 'Barlow Condensed', sans-serif;
	--font-body: 'Bariol', sans-serif;
	--font-title: 'Barlow', sans-serif;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-body);
	color: var(--black);
	background-color: var(--white);
	line-height: 1.6;
	overflow-x: hidden;
}

/* Font Utility Classes */
.italic {
	font-family: var(--font-italic);
	font-style: italic;
}

.title-bold {
	font-family: var(--font-title-bold);
}

/* Header */
.header {
	position: sticky;
	top: 0;
	background: var(--white);
	z-index: 1000;
	border-bottom: 1px solid var(--black);
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 94px;
}

.logo {
	display: flex;
	align-items: center;
	gap: 12px;
	position: relative;
	z-index: 2;
}

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

.logo-text {
	font-size: 25px;
	font-weight: 400;
	line-height: 30px;
	letter-spacing: 2.5px;
	color: var(--black);
	font-family: var(--font-title-bold);
}

.nav-menu {
	display: flex;
	align-items: center;
	gap: 30px;
	padding-right: 20px;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	width: 30px;
	height: 24px;
	position: relative;
	z-index: 1001;
}

.hamburger-line {
	display: block;
	width: 100%;
	height: 2px;
	background-color: var(--black);
	transition: all 0.3s ease;
	border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
	transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
	opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
	transform: rotate(-45deg) translate(8px, -8px);
}

.nav-link {
	text-decoration: none;
	color: var(--black);
	font-size: 15px;
	line-height: 32px;
	font-family: var(--font-title);
	transition: opacity 0.3s;
	position: relative;
	padding-bottom: 4px;
}

.nav-link:hover {
	opacity: 0.7;
}

.nav-link.active {
	opacity: 1;
}

/* Profile Selection Dialog */
.profile-dialog {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10000;
	display: none;
	align-items: center;
	justify-content: center;
}

.profile-dialog.show {
	display: flex;
}

.profile-dialog-backdrop {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.profile-dialog-content {
	position: relative;
	background: var(--white);
	border: 1px solid var(--black);
	max-width: 880px;
	height: 80vh;
	max-height: 590px;
	width: 80%;
	padding: 80px 80px 20px;
	text-align: center;
	z-index: 10001;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.profile-dialog-language-selector {
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 10002;
}

.profile-dialog-language-selector .language-selector {
	position: relative;
}

.profile-dialog-language-selector .language-dropdown {
	right: 0;
	left: auto;
}

.profile-dialog-header {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
}

.profile-dialog-logo {
	display: inline-block;
}

.profile-dialog-logo img {
	width: 120px;
	height: auto;
}

.profile-dialog-title {
	font-family: var(--font-italic);
	font-style: italic;
	font-size: 50px;
	line-height: 50px;
	color: var(--black);
	margin-bottom: 50px;
	font-weight: 400;
}

.profile-options {
	display: flex;
	align-items: flex-start;
	gap: 0;
	justify-content: center;
}

.profile-option-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	flex: 1;
	max-width: 300px;
}

.profile-option-illustration {
	width: 100%;
	max-width: 200px;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

.profile-illustration {
	width: 100%;
	height: auto;
}

.profile-option {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.profile-option-text {
	text-transform: uppercase;
}

.profile-option img {
	transition: transform 0.3s ease;
}

.profile-option:hover img {
	transform: translateX(5px);
}

.profile-options-divider {
	width: 1px;
	background: var(--black);
	margin: 0 40px;
	align-self: stretch;
}

@media (max-width: 768px) {
	.profile-dialog-content {
		padding: 48px 20px 20px;
		height: 85vh;
	}

	.profile-dialog-header {
		top: 0px;
		left: 20px;
		transform: translate(0, -50%);
	}

	.profile-dialog-language-selector {
		top: 10px;
	}

	.profile-dialog-logo {
		img {
			width: 80px;
			height: auto;
		}
	}

	.profile-dialog-title {
		font-size: 24px;
		line-height: 30px;
		margin-bottom: 20px;
	}

	.profile-options {
		flex-direction: column;
		gap: 30px;
		max-width: 280px;
		margin: 0 auto;
	}

	.profile-option-wrapper {
		max-width: 100%;
		width: 100%;
	}

	.profile-option-illustration {
		max-width: 110px;
	}

	.profile-options-divider {
		width: 100%;
		height: 1px;
		margin: 0;
	}
}

@media (max-width: 375px) {
	.profile-dialog-content {
		padding: 48px 20px 20px;
		width: 75%;
		max-height: 70vh;
	}

	.profile-dialog-title {
		font-size: 20px;
		line-height: 24px;
		margin-bottom: 10px;
	}

	.profile-option-text {
		font-size: 14px;
		line-height: 18px;
	}

	.profile-option-illustration {
		max-width: 80px;
	}

	.profile-options {
		max-width: 200px;
	}

	.profile-option {
		img {
			width: 20px;
		}
	}
}

.nav-link.active::after {
	content: '';
	position: absolute;
	bottom: -6px;
	left: 0;
	right: 0;
	height: 2px;
	background-color: var(--primary-green);
}

.language-selector {
	position: relative;
}

.language-btn {
	display: flex;
	align-items: center;
	gap: 8px;
	background: none;
	border: none;
	cursor: pointer;
	font-size: 14px;
	color: var(--black);
	font-family: var(--font-title);
	padding: 5px 10px;
}

.language-btn .flag-icon {
	width: 20px;
	height: 20px;
	object-fit: cover;
	border-radius: 2px;
}

.language-btn .language-code {
	font-size: 14px;
	font-weight: 500;
}

.language-btn .arrow {
	font-size: 10px;
	transition: transform 0.3s;
}

.language-selector.active .language-btn .arrow {
	transform: rotate(180deg);
}

.language-dropdown {
	position: absolute;
	top: 100%;
	right: 0;
	background: var(--white);
	border: 1px solid var(--light-grey);
	border-radius: 4px;
	padding: 10px;
	margin-top: 5px;
	display: none;
	min-width: 150px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.language-selector.active .language-dropdown {
	display: block;
}

.language-option {
	display: flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	color: var(--black);
	padding: 8px;
	border-radius: 4px;
	transition: background 0.3s;
}

.language-option .flag-icon {
	width: 20px;
	height: 20px;
	object-fit: cover;
	border-radius: 2px;
}

.language-option .language-code {
	font-size: 14px;
	font-weight: 500;
}

.language-option:hover {
	background: var(--light-grey);
}

/* Hero Section */
.hero-section {
	padding: 80px 40px;
	margin: 0 auto;
	background-color: var(--hero-background);
	position: relative;
	overflow: visible;
	z-index: 1;
}

.hero-centered-img {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: -1;
}

.hero-container {
	display: flex;
	justify-content: flex-start;
	gap: 20px;
	align-items: center;
	position: relative;
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	padding: 0px 50px;
}

.hero-content {
	z-index: 2;
}

.hero-description {
	max-width: 629px;
	font-size: 28px;
	font-family: var(--font-title);
	font-weight: 400;
	color: var(--black);
	margin-bottom: 40px;
	line-height: 40px;
}

.hero-title {
	max-width: 800px;
	font-size: 100px;
	font-family: var(--font-italic);
	font-style: italic;
	font-weight: 400;
	line-height: 110px;
	margin-bottom: 80px;
	color: var(--black);
}

.cta-button {
	background: var(--black);
	color: var(--white);
	border: none;
	padding: 16px 32px;
	font-size: 18px;
	line-height: 32px;
	font-weight: 600;
	letter-spacing: 1px;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	transition: background 0.3s;
	font-family: var(--font-body);
	text-decoration: none;
	z-index: 10;
}

.cta-button:hover {
	background: var(--dark-grey);
}

.arrow-icon {
	font-size: 18px;
}

.hero-visuals {
	position: relative;
	height: 600px;
	overflow: visible;
}

.hero-images {
	position: relative;
	width: 520px;
	height: 100%;
	overflow: visible;
}

.hero-image {
	position: absolute;
}

.hero-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.hero-image-1 {
	width: 136.815px;
	height: 239px;
	top: -16px;
	left: 10px;
	z-index: 3;
}

.hero-image-2 {
	width: 337px;
	height: 339px;
	aspect-ratio: 337 / 339;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 6;
}

.hero-image-3 {
	width: 156px;
	height: 273px;
	bottom: -160px;
	left: 92px;
	z-index: 5;
}

.hero-image-4 {
	width: 236.288px;
	height: 421px;
	bottom: -78px;
	right: -28px;
	z-index: 5;
}

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

.badge-text {
	font-weight: 700;
	font-size: 14px;
	color: var(--white);
	text-align: center;
	letter-spacing: 1px;
}

.drop-icon {
	font-size: 20px;
}

/* Features Section */
.features-section {
	padding: 110px 60px 60px;
	background: var(--white);
	position: relative;
	z-index: 0;
}

.features-container {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 60px;
}

.feature-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 85px;
}

.feature-icon {
	height: 230px;
	width: auto;
	color: var(--black);
}

.feature-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.feature-text {
	font-size: 30px;
	color: var(--black);
	line-height: 40px;
	font-family: var(--font-title);
	font-weight: 400;
}

.feature-number {
	font-weight: 600;
}

/* Missions Section */
.missions-section {
	padding: 20px 40px;
	background: var(--white);
}

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

.section-title {
	font-size: 48px;
	margin-bottom: 0px auto 20px;
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 16px;
}

.title-bold {
	font-family: var(--font-title-bold);
	font-weight: 700;
	font-size: 80px;
}

.title-elegant {
	font-family: var(--font-italic);
	font-style: italic;
	font-size: 66px;
	font-weight: 400;
}

.missions-subtitle {
	font-size: 30px;
	line-height: 34px;
	color: var(--black);
	margin-bottom: 60px;
	font-family: var(--font-italic);
	font-style: italic;
	text-align: center;
}

/* Holistic Section */
.holistic-section {
	padding: 0px 60px 0px;
	background: var(--white);
}

.holistic-section-title {
	font-family: var(--font-italic);
	font-style: italic;
	font-size: 60px;
	font-weight: 400;
	line-height: 65px;
	color: var(--black);
	text-align: center;
	margin-bottom: 40px;
}

.holistic-container {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: stretch;
	position: relative;
	overflow: hidden;
}

.green-box {
	background: var(--primary-green);
	padding: 60px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	position: relative;
	height: 100%;
}

.holistic-text {
	font-family: var(--font-italic);
	font-style: italic;
	font-size: 30px;
	line-height: 40px;
	color: var(--black);
	z-index: 1;
	text-align: left;
	max-width: 420px;
}

.holistic-button {
	font-family: var(--font-body);
	color: var(--black);
	font-size: 28px;
	font-weight: 400;
	line-height: 26px;
	cursor: pointer;
	transition: background 0.3s;
	z-index: 2;
}

.holistic-anchor {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: transparent;
	color: var(--black);
	font-family: var(--font-body);
	font-size: 20px;
	font-weight: 400;
	line-height: 26px;
	border: none;
	border-bottom: 1px solid var(--black);
	padding: 12px 0px;
	position: relative;
	z-index: 2;
	transition: opacity 0.3s;
	width: 100%;
	max-width: 190px;
	cursor: pointer;
}

.holistic-anchor:hover {
	opacity: 0.9;
}

.holistic-anchor img {
	width: 17px;
	height: 15px;
	display: block;
	flex-shrink: 0;
}

.holistic-image {
	height: 100%;
	display: flex;
}

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

.holistic-bg-image {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	pointer-events: none;
}

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

.holistic-image-placeholder {
	width: 100%;
	height: 100%;
	background: var(--light-grey);
	border: 1px solid var(--black);
}

/* Exclusive Section */
.exclusive-section {
	padding: 80px 40px 0px;
	background: var(--white);
}

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

.exclusive-section-title {
	font-family: var(--font-title);
	font-size: 28px;
	font-weight: 400;
	line-height: 30px;
	color: var(--black);
	text-align: center;
	margin-bottom: 20px;
}

/* Testimonials Section */
.testimonials-section {
	padding: 80px 80px;
	background: var(--white);
}

.testimonials-container {
	max-width: 1440px;
	margin: 0 auto;
	text-align: center;
}

.testimonials-section-title {
	font-family: var(--font-title);
	font-size: 28px;
	font-weight: 400;
	line-height: 30px;
	color: var(--black);
	text-align: center;
	margin-bottom: 40px;
}

.testimonials-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	margin-bottom: 70px;
}

.testimonial-card {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.testimonial-image {
	border-bottom: 1px solid var(--black);
	padding: 0px;

	img {
		width: 100%;
		margin-bottom: 16px;
	}
}

.testimonial-quote {
	font-family: var(--font-italic);
	font-style: italic;
	font-size: 45px;
	line-height: 50px;
	font-weight: 400;
	color: var(--black);
	text-align: left;
	margin-bottom: 10px;
	max-width: 275px;
}

.testimonial-name {
	font-size: 16px;
	line-height: 20px;
	font-weight: 400;
	color: var(--black);
	text-align: left;
}

/* Neighborhood Section */
.neighborhood-section {
	padding: 80px 80px;
	background: var(--white);
	border-top: 1px solid var(--black);
	border-bottom: 1px solid var(--black);
}

.neighborhood-container {
	max-width: 1440px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 460px 1fr;
	gap: 60px;
	align-items: start;
}

.neighborhood-section-title {
	margin-bottom: 20px;
	display: flex;
	flex-direction: column;

	.title-bold {
		font-size: 75px;
		line-height: 80px;
	}

	.title-elegant {
		font-size: 66px;
		line-height: 70px;
		margin-bottom: 30px;
	}
}

.neighborhood-text {
	font-family: var(--font-body);
	font-size: 20px;
	line-height: 26px;
	margin-bottom: 20px;
	color: var(--black);
	width: 390px;
}

.neighborhood-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.neighborhood-list li {
	font-family: var(--font-body);
	font-size: 20px;
	line-height: 26px;
	padding-left: 25px;
	position: relative;
	color: var(--black);
}

.neighborhood-list li::before {
	content: '•';
	position: absolute;
	left: 0;
	font-size: 20px;
	color: var(--black);
}

.neighborhood-images {
	display: flex;
	flex-direction: column;
	gap: 20px;
	overflow: hidden;
	width: 100%;
}

.image-carousel {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	padding-bottom: 10px;
	scrollbar-width: none; /* Firefox */
	-ms-overflow-style: none; /* IE and Edge */
}

.image-carousel::-webkit-scrollbar {
	display: none; /* Chrome, Safari, Opera */
}

.carousel-image {
	width: 362px;
	height: 485px;
	flex-shrink: 0;
	background: var(--light-grey);
	border: 1px solid var(--black);
	position: relative;
	overflow: hidden;
	scroll-snap-align: start;
}

.carousel-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.image-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.7);
	color: var(--white);
	padding: 20px;
	font-weight: 700;
	font-size: 14px;
	line-height: 1.4;
}

.carousel-dots {
	display: flex;
	justify-content: center;
	gap: 10px;
	min-height: 20px;
}

.dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--light-grey);
	border: 2px solid var(--black);
	cursor: pointer;
	transition: background 0.3s;
}

.dot.active {
	background: var(--primary-green);
}

/* Map Section */
.map-section {
	padding: 0px;
	background: var(--white);
}

.map-container {
	max-width: 1440px;
	margin: 0 auto;
	text-align: center;
}

.map-wrapper {
	margin-bottom: 30px;

	img {
		width: 100%;
	}

	.mobile-map {
		display: none;
	}

	.desktop-map {
		display: block;
	}
}

.map-text {
	font-family: var(--font-body);
	font-size: 20px;
	line-height: 26px;
	font-weight: 400;
	letter-spacing: 0.4px;
	text-align: center;
	margin-bottom: 30px;
	color: var(--black);
}

.profile-circles {
	display: flex;
	justify-content: center;
	gap: 20px;
}

.profile-circle {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: var(--light-grey);
	border: 2px solid var(--black);
}

/* Gallery Section */
.gallery-section {
	padding: 80px 40px;
	background: var(--white);
	overflow: hidden;
	background-color: var(--black);
}

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

.gallery-scroll {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	padding-bottom: 20px;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
}

.gallery-scroll::-webkit-scrollbar {
	height: 8px;
}

.gallery-scroll::-webkit-scrollbar-track {
	background: var(--light-grey);
}

.gallery-scroll::-webkit-scrollbar-thumb {
	background: var(--black);
	border-radius: 4px;
}

.gallery-item {
	min-width: 300px;
	height: 300px;
	background: var(--light-grey);
	border: 1px solid var(--black);
	flex-shrink: 0;
	scroll-snap-align: start;
}

.gallery-handle {
	font-family: var(--font-body);
	text-align: center;
	margin-top: 30px;
	font-size: 30px;
	font-weight: 400;
	color: var(--primary-green);
}

/* Hero Section for Manifest Page */
.hero-section-manifest {
	background-color: var(--primary-green);
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 479px;
	max-height: 479px;
	position: relative;
}

.hero-logo-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	flex: 1;
}

.hero-logo-center {
	height: 479px;
	width: auto;
	object-fit: contain;
}

/* Manifesto Section */
.manifesto {
	background-color: var(--white);
	padding: 60px 80px 80px;
	position: relative;
	overflow: hidden;
}

.manifesto-container {
	max-width: 1440px;
	margin: 0 auto;
	position: relative;
	text-align: center;
}

.manifesto-title {
	font-family: var(--font-title);
	font-size: 28px;
	line-height: 30px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 2.8px;
	color: var(--black);
	text-align: center;
	margin-bottom: 60px;
	position: relative;
	z-index: 2;
}

.manifesto-decorative-bg {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -65%);
	width: auto;
	height: auto;
	opacity: 0.7;
	z-index: 1;
	pointer-events: none;
}

.manifesto-decorative-bg img {
	width: 100%;
	height: auto;
	display: block;
}

.manifesto-decorative-left {
	position: absolute;
	left: 0;
	bottom: 0;
	width: auto;
	height: auto;
	opacity: 0.7;
	z-index: 1;
	pointer-events: none;
}

.manifesto-decorative-left img {
	width: 100%;
	height: auto;
	display: block;
}

.manifesto-decorative-right {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: auto;
	height: auto;
	opacity: 0.7;
	z-index: 1;
	pointer-events: none;
}

.manifesto-decorative-right img {
	width: 100%;
	height: auto;
	display: block;
}

.manifesto-headline {
	font-family: var(--font-italic);
	font-style: italic;
	font-size: 110px;
	line-height: 130px;
	font-weight: 400;
	text-align: center;
	color: var(--black);
	margin-bottom: 80px;
	position: relative;
	z-index: 2;
}

.manifesto-content {
	position: relative;
	margin-bottom: 140px;
}

.manifesto-text {
	max-width: 970px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
	text-align: left;
}

.manifesto-text p {
	font-family: var(--font-title);
	font-size: 28px;
	line-height: 40px;
	margin-bottom: 50px;
	color: var(--black);
}

.manifesto-text strong {
	font-weight: 700;
}

.manifesto .cta-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-decoration: none;
	position: relative;
	z-index: 10;
}

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

.manifesto .cta-button img {
	transition: transform 0.3s ease;
}

.manifesto .cta-button:hover img {
	transform: translateX(5px);
}

/* FAQ Section */
.faq-section {
	padding: 80px 80px;
	background: var(--white);
}

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

.faq-section-title {
	font-family: var(--font-title-bold);
	font-size: 100px;
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 40px;
}

.faq-list {
	display: flex;
	flex-direction: column;
	gap: 0px;
}

.faq-item {
	border-bottom: 1px solid var(--black);
	background: inherit;
}

.faq-question {
	font-family: var(--font-body);
	font-size: 30px;
	font-weight: 400;
	width: 100%;
	background: none !important;
	border: none;
	padding: 24px 0px;
	text-align: left;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: color 0.3s ease;
	color: var(--black);
	outline: none;
	-webkit-tap-highlight-color: transparent;
}

.faq-question:focus,
.faq-question:active,
.faq-question:focus-visible {
	outline: none !important;
	background: none !important;
	background-color: transparent !important;
	box-shadow: none !important;
}

.faq-question:hover {
	color: var(--primary-green);
}

.faq-question:hover .faq-arrow {
	filter: brightness(0) saturate(100%) invert(67%) sepia(100%) saturate(1352%)
		hue-rotate(90deg) brightness(101%) contrast(101%);
}

.faq-arrow {
	width: 21px;
	height: 21px;
	display: block;
	transition:
		transform 0.3s ease,
		filter 0.3s ease;
}

.faq-item.active .faq-arrow {
	transform: scaleY(-1);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition:
		max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
		opacity 0.3s ease;
	opacity: 0;
}

.faq-item.active .faq-answer {
	max-height: 1000px;
	opacity: 1;
	transition:
		max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
		opacity 0.3s ease 0.1s;
}

.faq-answer p {
	padding: 0 30px 40px 0px;
	font-size: 18px;
	line-height: 20px;
	color: var(--black);
}

.faq-answer ul {
	padding: 0 30px 40px 0px;
	margin: 0;
	list-style-position: inside;
}

.faq-answer li {
	font-size: 18px;
	line-height: 20px;
	color: var(--black);
	margin-bottom: 8px;
}

/* Footer */
.footer {
	padding: 80px 80px 40px;
	background: var(--white);
}

.footer-main {
	max-width: 1440px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 120px;
	margin-bottom: 40px;
	align-items: start;
}

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

.footer-column {
	display: flex;
	flex-direction: column;
	border-top: 1px solid var(--black);
}

.footer-title {
	font-family: var(--font-body);
	font-size: 13px;
	line-height: 32px;
	font-weight: 400;
	text-transform: uppercase;
	margin-bottom: 20px;
	color: var(--black);
	letter-spacing: 0.5px;
}

.footer-link {
	display: block;
	text-decoration: none;
	color: var(--black);
	margin-bottom: 8px;
	transition: color 0.3s;
	font-family: var(--font-body);
	font-size: 18px;
	font-weight: 400;
}

.footer-link:hover {
	color: var(--primary-green);
}

.newsletter-form {
	display: flex;
	flex-direction: column;
}

.newsletter-input-group {
	display: flex;
	gap: 0;
	align-items: center;
}

.newsletter-input {
	padding: 12px 16px;
	border: 1px solid var(--black);
	border-right: none;
	border-radius: 4px 0 0 4px;
	font-size: 14px;
	background: var(--white);
	color: var(--black);
	font-family: var(--font-body);
	width: 200px;
}

.newsletter-input::placeholder {
	color: var(--text-grey);
	text-transform: uppercase;
	font-size: 12px;
	letter-spacing: 0.5px;
}

.newsletter-button {
	background: var(--white);
	color: var(--black);
	border: 1px solid var(--black);
	border-left: none;
	border-radius: 0 4px 4px 0;
	padding: 12px 24px;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	cursor: pointer;
	transition:
		background 0.3s,
		color 0.3s;
	font-family: var(--font-body);
	white-space: nowrap;
}

.newsletter-button:hover {
	background: var(--black);
	color: var(--white);
}

.footer-logo-section {
	position: relative;
	overflow: hidden;
	border-radius: 4px;
	min-width: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.footer-logo-image {
	width: 100%;
	height: auto;
	position: relative;
	z-index: 1;
	display: block;
}

.footer-bottom {
	max-width: 1440px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 50px;
	padding-top: 30px;
}

.copyright {
	font-family: var(--font-body);
	font-size: 13px;
	color: var(--black);
	letter-spacing: 0.3px;
}

.legal-link {
	font-family: var(--font-body);
	font-size: 13px;
	color: var(--black);
	text-decoration: none;
	transition: color 0.3s;
}

.legal-link:hover {
	color: var(--primary-green);
}

/* Breakpoint for index hero section */
@media (max-width: 1280px) {
	.hero-section {
		padding: 40px 20px;
	}

	.hero-container {
		padding: 0px 20px;
	}

	.hero-title {
		font-size: 60px;
		line-height: 65px;
		margin-bottom: 40px;
	}

	.hero-description {
		font-size: 20px;
		line-height: 26px;
		margin-bottom: 30px;
	}

	.hero-visuals {
		height: 400px;
	}

	.hero-images {
		width: 400px;
	}

	.hero-image-2 {
		width: 220px;
		height: auto;
		aspect-ratio: 337 / 339;
	}

	.hero-image-1 {
		width: 80px;
		height: auto;
		aspect-ratio: 136.815 / 239;
		top: -10px;
		left: 20px;
		z-index: 3;
	}

	.hero-image-3 {
		width: 80px;
		height: auto;
		aspect-ratio: 156 / 273;
		bottom: -80px;
		left: 92px;
		z-index: 5;
	}

	.hero-image-4 {
		width: 120px;
		height: auto;
		aspect-ratio: 236.288 / 421;
		bottom: -40px;
		right: 0px;
		z-index: 5;
	}
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
	.header {
		padding: 0;
	}

	.header-container {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: stretch;
		height: auto;
		padding: 0;
		position: relative;
	}

	.logo {
		display: flex;
		align-items: center;
		justify-content: flex-start;
		gap: 12px;
		/* padding: 15px 20px; */
		flex: 0 0 auto;
		min-height: 60px;
		position: relative;
		z-index: 1;
	}

	.logo-image {
		height: 60px;
		width: auto;
		display: block;
		flex-shrink: 0;
		/* Keep original logo colors - no filter needed for logo_nav.png */
	}

	.logo-text {
		display: flex;
		align-items: center;
		padding: 0;
		font-size: 12px;
		letter-spacing: 1.2px;
		color: var(--black);
		white-space: nowrap;
		font-weight: 400;
		background: transparent;
		flex: 0 0 auto;
		min-height: auto;
	}

	.mobile-menu-toggle {
		display: flex !important;
		padding: 18px 20px;
		background: var(--white);
		min-height: 60px;
		align-items: center;
		justify-content: center;
		flex: 0 0 auto;
		position: relative;
		z-index: 1001;
		width: auto;
		height: auto;
		gap: 5px;
	}

	.mobile-menu-toggle .hamburger-line {
		background-color: var(--black) !important;
		width: 24px;
		height: 2px;
		display: block;
		border-radius: 2px;
	}

	.nav-menu {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--white);
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 0;
		max-height: 0;
		overflow: hidden;
		transition:
			max-height 0.3s ease,
			padding 0.3s ease;
		border-top: 1px solid var(--black);
		box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	}

	.nav-menu.active {
		max-height: 500px;
		padding: 20px 0;
	}

	.nav-menu .nav-link {
		display: block;
		padding: 15px 20px;
		text-align: left;
		border-bottom: 1px solid var(--light-grey);
		font-size: 16px;
	}

	.nav-menu .nav-link:last-of-type {
		border-bottom: none;
	}

	.nav-menu .nav-link.active::after {
		display: none;
	}

	.nav-menu .language-selector {
		padding: 15px 20px;
		border-top: 1px solid var(--light-grey);
	}

	.nav-menu .language-btn {
		color: var(--black);
		width: 100%;
		gap: 8px;
		padding: 0;
	}

	.nav-menu .language-dropdown {
		position: static;
		box-shadow: none;
		border: none;
		margin-top: 10px;
		display: none;
	}

	.nav-menu .language-selector.active .language-dropdown {
		display: block;
	}

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

	.hero-container {
		flex-direction: column-reverse;
		gap: 40px;
	}

	.hero-content {
		display: flex;
		flex-direction: column;
	}

	.hero-title {
		font-size: 45px;
		line-height: 50px;
		order: 1;
		margin-bottom: 20px;
	}

	.hero-description {
		font-size: 18px;
		line-height: 24px;
		margin-bottom: 20px;
		order: 2;
	}

	.cta-button {
		order: 3;
		margin: 0 auto;
		display: inline-flex;
		align-self: center;
	}

	.hero-visuals {
		height: 280px;
	}

	.hero-image-4 {
		top: -10px;
		left: -10px;
		z-index: 6;
	}

	.hero-image-3 {
		bottom: 0;
		right: 20px;
		left: unset;
		z-index: 6;
	}

	.hero-image-1 {
		display: none;
	}

	.hero-section-manifest {
		padding: 0;
		max-height: unset;
		height: auto;
	}

	.hero-centered-img {
		width: 100%;
	}

	.hero-logo-center {
		width: 100%;
		height: auto;
		object-fit: contain;
	}

	.cta-button {
		margin: 0 auto;
	}

	.manifesto {
		padding: 40px 40px;
	}

	.manifesto-decorative-bg {
		display: none;
	}

	.manifesto-decorative-left {
		display: none;
	}

	.manifesto-decorative-right {
		display: none;
	}

	.manifesto-title {
		font-size: 20px;
		margin-bottom: 40px;
	}

	.manifesto-headline {
		font-size: 48px;
		margin-bottom: 60px;
	}

	.manifesto-text p {
		font-size: 18px;
	}

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

	.features-container {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.feature-item {
		flex-direction: row-reverse;
		justify-content: space-between;
		gap: 0;
	}
	.feature-text {
		font-size: 20px;
		line-height: 24px;
		text-align: left;
	}
	.feature-icon {
		width: 100px;
		height: auto;
		flex-shrink: 0;
	}

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

	.section-title {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 0px;
		margin-bottom: 20px;

		.title-bold {
			font-size: 70px;
			line-height: 75px;
		}
		.title-elegant {
			font-size: 50px;
			line-height: 55px;
		}
	}

	.missions-subtitle {
		font-size: 28px;
		line-height: 32px;
		margin-bottom: 20px;
	}

	.section-title-center {
		font-size: 32px;
	}

	.campaigns-grid {
		grid-template-columns: 1fr;
	}

	.campaign-card {
		grid-template-columns: 1fr;
	}

	.holistic-section {
		padding: 0px 0px;
	}

	.holistic-container {
		grid-template-columns: 1fr;
	}

	.holistic-section-title {
		font-size: 35px;
		line-height: 40px;
		text-align: left;
		padding: 0 40px;
	}

	.green-box {
		padding: 40px;
	}

	.holistic-title {
		font-size: 32px;
	}

	.holistic-text {
		z-index: 2;
		font-size: 30px;
		line-height: 40px;
	}

	.holistic-bg-image {
		width: 100%;
		top: -40px;
		transform: translate(-50%, 0);
	}

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

	.exclusive-section-title {
		font-size: 24px;
		line-height: 38px;
		letter-spacing: 2.4px;
	}

	.profile-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

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

	.testimonials-grid {
		grid-template-columns: 1fr;
	}

	.testimonial-quote {
		font-size: 24px;
	}

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

	.neighborhood-section-title {
		.title-bold {
			font-size: 70px;
			line-height: 85px;
		}

		.title-elegant {
			font-size: 50px;
			line-height: 55px;
		}
	}

	.neighborhood-text {
		width: unset;
	}

	.neighborhood-container {
		grid-template-columns: 1fr;
	}

	.image-carousel {
		overflow-x: auto;
		display: flex;
		scroll-snap-type: x mandatory;
	}

	.carousel-image {
		width: 362px;
		height: 485px;
		min-width: 362px;
	}

	.carousel-dots {
		display: flex !important;
		justify-content: center;
		align-items: center;
		gap: 12px;
		margin-top: 24px;
		padding: 12px 0;
		min-height: 38px;
		visibility: visible !important;
		opacity: 1 !important;
		width: 100%;
	}

	.dot {
		width: 14px;
		height: 14px;
		border-radius: 50%;
		background: var(--light-grey);
		border: 2px solid var(--black);
		cursor: pointer;
		transition: background 0.3s;
		flex-shrink: 0;
	}

	.map-section {
		padding: 0px;
	}

	.map-wrapper {
		.desktop-map {
			display: none;
		}

		.mobile-map {
			display: block;
		}
	}

	.map-placeholder {
		height: 300px;
	}

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

	.gallery-item {
		min-width: 250px;
		height: 250px;
	}

	.manifesto {
		padding: 40px 20px;
	}

	.manifesto-title {
		font-size: 18px;
		margin-bottom: 30px;
	}

	.manifesto-headline {
		font-size: 45px;
		line-height: 50px;
		margin-bottom: 60px;
	}

	.manifesto-text p {
		font-family: var(--font-title);
		font-size: 20px;
		line-height: 28px;
		margin-bottom: 20px;
		margin-right: 20px;
		margin-left: 20px;
	}

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

	.faq-section-title {
		margin-bottom: 20px;
		line-height: 100px;
	}

	.faq-question {
		font-size: 22px;
		line-height: 28px;
	}

	.footer {
		padding: 40px 20px 20px;
	}

	.footer-main {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.footer-main {
		display: grid;
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.footer-wrapper {
		display: contents;
	}

	.footer-content {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto auto;
		gap: 20px 40px;
		grid-row: 1;
	}

	.footer-column:nth-child(1),
	.footer-column:nth-child(2) {
		grid-row: 1;
	}

	.footer-column:nth-child(3) {
		grid-column: 1 / -1;
		grid-row: 2;
	}

	.footer-column {
		border: none;
	}

	.footer-logo-section {
		grid-row: 2;
		min-width: auto;
		margin-bottom: 0px;
		width: 100%;
		padding: 0 20px;
	}

	.footer-bottom {
		grid-row: 3;
		flex-direction: column;
		gap: 15px;
		text-align: left;
		align-items: flex-start;
		margin-top: 0;
		padding-top: 20px;
	}

	.footer-logo-image {
		width: 100%;
		max-width: 300px;
	}

	.cta-button {
		font-size: 16px;
		line-height: 22px;
		padding: 12px 16px;
	}
}

@media (max-width: 400px) {
	.hero-title {
		font-size: 32px;
		line-height: 38px;
		margin-bottom: 20px;
	}
	.hero-description {
		font-size: 16px;
		line-height: 22px;
		margin-bottom: 20px;
	}
	.hero-visuals {
		height: 220px;
	}
	.hero-images {
		width: 100%;
	}
	.hero-image-3 {
		display: none;
	}
	.hero-image-4 {
		display: none;
	}

	.section-title {
		.title-bold {
			font-size: 45px;
			line-height: 50px;
		}
		.title-elegant {
			font-size: 35px;
			line-height: 40px;
		}
	}

	.missions-subtitle {
		font-size: 18px;
		line-height: 24px;
		margin-bottom: 20px;
	}

	.holistic-section-title {
		font-size: 30px;
		line-height: 35px;
	}

	.holistic-text {
		font-size: 24px;
		line-height: 32px;
	}

	.neighborhood-section-title {
		display: flex;
		flex-direction: column;
		margin-bottom: 10px;

		.title-bold {
			font-size: 45px;
			line-height: 50px;
		}
		.title-elegant {
			font-size: 35px;
			line-height: 40px;
		}
	}

	.neighborhood-text {
		font-size: 18px;
		line-height: 24px;
	}

	.neighborhood-list {
		li {
			font-size: 18px;
			line-height: 24px;
		}
	}

	.faq-section-title {
		font-size: 50px;
		line-height: 55px;
	}

	.faq-question {
		font-size: 18px;
		line-height: 24px;
	}

	.faq-answer {
		font-size: 16px;
		line-height: 22px;
	}
}
