/* ============================
   RED HAT DISPLAY — Variable Font
   ============================ */
@font-face {
	font-family: 'Red Hat Display';
	src: url('fonts/red-hat-display/RedHatDisplay-Variable.woff2') format('woff2'),
	     url('fonts/red-hat-display/RedHatDisplay-Variable.woff') format('woff');
	font-weight: 300 900;
	font-display: swap;
	font-style: normal;
}
@font-face {
	font-family: 'Red Hat Display';
	src: url('fonts/red-hat-display/RedHatDisplay-VariableItalic.woff2') format('woff2'),
	     url('fonts/red-hat-display/RedHatDisplay-VariableItalic.woff') format('woff');
	font-weight: 300 900;
	font-display: swap;
	font-style: italic;
}

/* ============================
   VARIABLES
   ============================ */
:root {
	--color-green: #3eb33e;
	--color-green-dark: #006800;
	--color-bg: #eee;
	--color-text: #1a1a1a;
	--color-text-light: #555;
	--color-white: #fff;
	--font-main: 'Red Hat Display', sans-serif;
	--header-height: 60px;
}
::selection {
	background: var(--color-green);
	color: var(--color-white);
}

/* ============================
   BASE
   ============================ */
* {
	box-sizing: border-box;
}

/* Masquer toutes les scrollbars */
* {
	scrollbar-width: none; /* Firefox */
	-ms-overflow-style: none; /* IE/Edge */
}
*::-webkit-scrollbar {
	display: none; /* Chrome/Safari/Opera */
}

body {
	font-family: var(--font-main);
	background: var(--color-white);
	color: var(--color-text);
	margin: 0;
	padding: 0;
	font-weight: 400;
	line-height: 1.6;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><circle cx="12" cy="12" r="10" fill="%233eb33e"/></svg>') 12 12, auto;
}
a {
	color: inherit;
	text-decoration: none;
	transition: opacity 0.2s;
	cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><circle cx="12" cy="12" r="10" fill="none" stroke="%23006800" stroke-width="2"/></svg>') 12 12, pointer;
}
a:hover {
	opacity: 0.9;
}

/* Curseur vert foncé pour tous les éléments cliquables */
button,
input[type="submit"],
.category-card,
.album-card,
.project-card,
.splash {
	cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><circle cx="12" cy="12" r="10" fill="none" stroke="%23006800" stroke-width="2"/></svg>') 12 12, pointer;
}
img {
	max-width: 100%;
	height: auto;
	display: block;
}
p{
	line-height: 1.4;
	text-wrap: pretty;
}

/* ============================
   HEADER / NAVIGATION
   ============================ */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	padding: 0 2em;
	height: var(--header-height);
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: linear-gradient(to bottom, var(--color-green) 20%, transparent);
	font-weight: 500;
	font-size: 0.9rem;
	letter-spacing: 0.05em;
}
.site-header a {
	text-transform: uppercase;
}
.site-header .logo-link {
	display: flex;
	align-items: center;
	gap: 0.5em;
}
.site-header .logo-link img {
	height: 30px;
	width: auto;
}
.site-nav {
	display: flex;
	gap: 2em;
	align-items: center;
}
.site-nav a {
	position: relative;
	padding-bottom: 4px;
}
.site-nav a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--color-text);
	transition: width 0.3s ease;
}
.site-nav a:hover::after {
	width: 100%;
}
.site-nav a.active::after {
	width: 100%;
}

/* ============================
   SPLASH / HOME
   ============================ */
.splash {
	position: fixed;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: var(--color-white);
	z-index: 200;
}
.splash video {
	max-width: 30vw;
	max-height: 30vh;
	position: relative;
	z-index: 1;
}
.splash .splash-logo {
	max-width: 250px;
}

/* Bande header sur splash */
.splash-header-band {
	position: fixed;
	left: 0;
	right: 0;
	z-index: 2;
	padding: 0 2em;
	height: 60px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.9rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	opacity: 0;
	transition: all 1s ease;
	top: -60px;
	background: linear-gradient(to bottom, var(--color-green), transparent);
}
.splash-header-band.visible {
	top: 0;
	opacity: 1;
}

/* Navigation dans les bandes */
.splash-header-band .logo-link {
	display: flex;
	align-items: center;
	gap: 0.5em;
}
.splash-header-band .logo-link img {
	height: 30px;
	width: auto;
}
.splash-nav {
	display: flex;
	gap: 2em;
	align-items: center;
}
.splash-nav a {
	text-transform: uppercase;
	transition: opacity 0.2s;
}
.splash-nav a:hover {
	opacity: 0.9;
}

/* ============================
   MAIN CONTENT
   ============================ */
main {
	padding: 2em;
	flex: 1;
	background: var(--color-white);
	font-weight: 300;
	margin-top: var(--header-height);
}

/* Main fullscreen pour les pages carrousel */
main.fullscreen-carousel {
	padding: 0;
	height: calc(100vh - var(--header-height));
	overflow: hidden;
}

/* ============================
   SECTION TITLES
   ============================ */
h1 {
	font-weight: 700;
	font-size: 2rem;
	margin-bottom: 0.5em;
	letter-spacing: -0.02em;
}
h2 {
	font-weight: 600;
	font-size: 1.3rem;
}
h3 {
	font-weight: 500;
	font-size: 1rem;
	color: var(--color-text-light);
}

/* ============================
   CATEGORY GRID (design.php)
   ============================ */
.category-grid {
	display: flex;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	height: 100%;
	gap: 0;
}
.category-grid::-webkit-scrollbar {
	display: none;
}
.category-grid {
	-ms-overflow-style: none;
	scrollbar-width: none;
}
.category-card {
	position: relative;
	flex: 0 0 100vw;
	width: 100vw;
	height: 100%;
	scroll-snap-align: start;
	overflow: hidden;
	background: #ddd;
	cursor: pointer;
}
.category-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}
.category-card:hover img {
	transform: scale(1.02);
}
.category-card .card-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	text-align: left;
	padding: 2rem;
	background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%, rgba(0,0,0,0.3) 100%);
	color: var(--color-white);
}
.category-card .card-overlay h2 {
	color: var(--color-white);
	font-weight: 500;
	font-size: 2rem;
	letter-spacing: 0.09rem;
}
.category-card .card-overlay span {
	font-weight: 300;
	font-size: 1rem;
	opacity: 0.9;
	letter-spacing: 0.05em;
	font-style: italic;
}

/* ============================
   PROJECT GRID (project-category.php)
   ============================ */
.category-title {
	font-size: 1.5rem;
	font-weight: 600;
	padding-top: 2em;
	border-top: 1px solid #eee;
}
.category-title:first-child {
	border-top: none;
	padding-top: 0;
}
.project-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 1.5em;
	padding: 2em;
	grid-auto-flow: dense;
}
.project-card {
	background: var(--color-white);
	border-radius: 2px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	transition: box-shadow 0.3s ease;
}
.project-card:hover {
	box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.project-card.featured-large {
	grid-column: span 2;
}
.project-card .card-image {
	aspect-ratio: 16/10;
	overflow: hidden;
	background: #ddd;
}
.project-card .card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}
.project-card:hover .card-image img {
	transform: scale(1.05);
}
.project-card .card-info {
	padding: 1em 1.2em;
}
.project-card .card-info h2 {
	font-size: 1.1rem;
	margin: 0 0 0.3em;
}
.project-card .card-info .card-meta {
	font-size: 0.8rem;
	color: var(--color-text-light);
	font-weight: 400;
}
.project-url {
	margin-bottom: 2em;
	color: var(--color-green);
}
.project-url:hover {
	font-style: italic;
	color: var(--color-green-dark);
}

/* ============================
   BREADCRUMB
   ============================ */
.breadcrumb {
	font-size: 0.8rem;
	font-weight: 400;
	color: var(--color-text-light);
	margin-bottom: 1em;
}
.breadcrumb a {
	color: var(--color-text-light);
}
.breadcrumb a:hover {
	color: var(--color-text);
}
.breadcrumb span {
	margin: 0 0.4em;
}

/* ============================
   PROJECT PAGE (project.php)
   ============================ */
.project-header {
	margin-bottom: 2em;
}
.project-header h1 {
	margin-bottom: 0.2em;
}
.project-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5em;
	font-size: 0.85rem;
	color: var(--color-text-light);
	margin-top: 0.5em;
}
.project-meta span {
	display: flex;
	align-items: center;
	gap: 0.3em;
}
.project-meta strong {
	font-weight: 600;
	color: var(--color-text);
}
.project-problematique {
	font-style: italic;
	font-weight: 400;
	font-size: 1.1rem;
	margin: 1em 0 1.5em;
	padding-left: 1em;
	border-left: 3px solid var(--color-green);
	color: var(--color-text-light);
}
.project-body {
	max-width: 800px;
	margin-bottom: 2em;
	font-weight: 300;
	line-height: 1.8;
}
.project-skills {
	margin-bottom: 2em;
}
.project-skills ul {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5em;
	list-style: none;
	padding: 0;
	margin: 0.5em 0 0;
}
.project-skills li {
	background: var(--color-white);
	padding: 0.3em 0.8em;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 500;
	border: 1px solid #ddd;
}
.project-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
	gap: 1em;
	margin-top: 1em;
	grid-auto-flow: dense;
}
.project-gallery img {
	width: 100%;
	border-radius: 2px;
	cursor: pointer;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	transition: box-shadow 0.3s ease, opacity 0.2s;
}
.project-gallery img:hover {
	opacity: 0.9;
	box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.project-gallery img.featured-large {
	grid-column: span 2;
	grid-row: span 2;
}
.project-gallery video {
	width: 100%;
	border-radius: 2px;
}

/* ============================
   PHOTO ALBUM GRID (photo.php)
   ============================ */
.album-grid {
	display: flex;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	height: 100%;
	gap: 0;
}
.album-grid::-webkit-scrollbar {
	display: none;
}
.album-grid {
	-ms-overflow-style: none;
	scrollbar-width: none;
}
.album-card {
	position: relative;
	flex: 0 0 100vw;
	width: 100vw;
	height: 100%;
	scroll-snap-align: start;
	overflow: hidden;
	background: #ddd;
	cursor: pointer;
}
.album-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}
.album-card:hover img {
	transform: scale(1.02);
}
.album-card.featured-large {
	flex: 0 0 calc(66.666% - 1em);
}
.album-card .card-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	text-align: left;
	padding: 2rem;
	background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 50%, rgba(0,0,0,0.2) 100%);
	color: var(--color-white);
}
.album-card .card-overlay h2 {
	color: var(--color-white);
	font-weight: 500;
	font-size: 2rem;
	letter-spacing: 0.05em;
}
.album-card .card-overlay span {
	font-size: 1rem;
	opacity: 0.9;
}

/* ============================
   PHOTO ALBUM PAGE (photo-album.php)
   ============================ */
.album-gallery {
	columns: 3;
	column-gap: 1em;
	margin-top: 1.5em;
}
.album-gallery .album-photo {
	break-inside: avoid;
	margin-bottom: 1em;
}
.album-gallery img {
	width: 100%;
	border-radius: 2px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	transition: box-shadow 0.3s ease;
}
.album-gallery img:hover {
	box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.album-gallery .album-photo.featured-large {
	column-span: all;
	margin-bottom: 1em;
}

/* ============================
   ABOUT PAGE & SECTION
   ============================ */
/* About page standalone */
.about-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 3em 2em;
}

/* About section on homepage */
.about-section {
	padding-top: calc(var(--header-height) + 2em);
}
.about-section .about-content {
	max-width: 1200px;
	margin: 0 auto;
}

/* Layout image + text */
.about-layout {
	display: flex;
	gap: 3em;
	margin-top: 2em;
	align-items: flex-start;
}
.about-image {
	flex: 0 0 30%;
}
.about-image img {
	width: 100%;
	height: auto;
	border-radius: 2px;
	object-fit: cover;
}
.about-text {
	flex: 0 0 50%;
}
.about-content .about-intro {
	font-size: 1.15rem;
	font-weight: 300;
	line-height: 1.8;
	margin-bottom: 2em;
}

/* Contact info */
.about-contact {
	display: flex;
	flex-direction: column;
	gap: 0.8em;
	font-weight: 400;
}
.about-contact a {
	font-weight: 500;
}
.about-contact .contact-item {
	display: flex;
	align-items: center;
	gap: 0.5em;
}
.about-contact .contact-label {
	font-weight: 600;
	min-width: 100px;
}

/* Responsive */
@media (max-width: 768px) {
	.about-content {
		padding: 2em 1em;
	}
	.about-content h1 {
		margin-bottom: 2em;
	}
	.about-layout {
		flex-direction: column;
		gap: 2.5em;
		margin-top: 2em;
	}
	.about-image {
		flex: 0 0 auto;
		max-width: 60%;
	}
	.about-text {
		flex: 1;
	}
	.about-content .about-intro {
		font-size: 1rem;
		line-height: 1.6;
		margin-bottom: 2.5em;
	}
	.about-intro p:last-child {
		display: none;
	}
}

/* ============================
   CONTACT PAGE & SECTION
   ============================ */
/* Contact page standalone - reuses contact-section styles */
.contact-page {
	padding: 3em 2em;
}
.contact-page .contact-content {
	max-width: 1200px;
	margin: 0 auto;
}

/* Contact section on homepage */
.contact-section {
	height: calc(100vh - var(--header-height));
	overflow-y: auto;
	justify-content: flex-start;
	padding: 3em 2em;
}
.contact-section .contact-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 3rem 0;
	width: 100%;
}

/* Shared intro text */
.contact-intro,
.contact-section .contact-intro {
	font-size: 1.15rem;
	font-weight: 300;
	line-height: 1.8;
	margin-bottom: 2em;
	color: var(--color-text-light);
	max-width: 700px;
}

/* Contact grid */
.contact-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.5em;
	margin-top: 2em;
}

/* Contact items */
.contact-item {
	padding: 1.5rem;
	background: var(--color-white);
	border-radius: 2px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	transition: box-shadow 0.3s ease;
}
.contact-item:hover {
	box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.contact-item h3 {
	font-size: 0.85rem;
	font-weight: 600;
	text-transform: uppercase;
	color: var(--color-text-light);
	margin-bottom: 0.5em;
}
.contact-item p {
	font-size: 1.1rem;
	margin: 0;
}

/* Contact links with underline effect */
.contact-item a {
	color: var(--color-text);
	position: relative;
	padding-bottom: 2px;
	display: inline-block;
}
.contact-item a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--color-text);
	transition: width 0.3s ease;
}
.contact-item a:hover::after,
.contact-item a:active::after {
	width: 100%;
}

/* ============================
   DESIGN PAGE (design.php)
   ============================ */
.design-grid {
	display: flex;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	height: 100vh;
	gap: 0;
}
.design-grid::-webkit-scrollbar {
	height: 8px;
}
.design-grid::-webkit-scrollbar-track {
	background: rgba(0,0,0,0.1);
}
.design-grid::-webkit-scrollbar-thumb {
	background: var(--color-green);
	border-radius: 2px;
}
.design-card {
	position: relative;
	flex: 0 0 100vw;
	width: 100vw;
	height: 100vh;
	scroll-snap-align: start;
	overflow: hidden;
	background: #ddd;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
}
.design-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}
.design-card:hover img {
	transform: scale(1.02);
}

/* ============================
   HOME PAGE SCROLL SNAP
   ============================ */
.home-body {
	overflow: hidden;
}
.home-content {
	height: 100vh;
	overflow-y: auto;
	scroll-snap-type: y mandatory;
}
.snap-container {
	margin-top: 0;
	padding: 0;
}
.snap-section {
	height: calc(100vh - var(--header-height));
	scroll-snap-align: start;
	scroll-snap-stop: always;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 2em;
	box-sizing: border-box;
	overflow: hidden;
}

/* Section Carousel */
.carousel-section {
	justify-content: flex-start;
	padding: 0;
	padding-top: 2em;
}

.section-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 3rem;
	margin-bottom: 1.5em;
	padding: 2em 2em 0;
	height: 80px;
	flex-shrink: 0;
}
.section-header h2 {
	font-size: 2rem;
	font-weight: 600;
	margin: 3rem 0;
}
.carousel-nav {
	display: flex;
	gap: 1em;
}
.carousel-arrow {
	width: 60px;
	height: 60px;
	background: transparent;
	border: none;
	cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><circle cx="12" cy="12" r="10" fill="none" stroke="%23006800" stroke-width="2"/></svg>') 12 12, pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0;
}
.carousel-arrow::before {
	content: '';
	width: 40px;
	height: 40px;
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 24"><path d="M0 12 L36 12 M36 12 L24 0 M36 12 L24 24" fill="none" stroke="black" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/></svg>');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	transition: transform 0.3s ease;
}
.carousel-prev::before {
	transform: scaleX(-1);
}
.carousel-arrow:hover::before {
	transform: scale(1.15);
}
.carousel-prev:hover::before {
	transform: scaleX(-1) scale(1.15);
}

/* Carousel wrapper et items */
.carousel-wrapper {
	flex: 1;
	overflow: hidden;
	position: relative;
	min-height: 0;
}
.project-carousel {
	display: flex;
	gap: 1.5em;
	overflow-x: auto;
	overflow-y: hidden;
	padding: 0 2em 2em;
	scroll-behavior: smooth;
	height: 100%;
	align-items: center;
}
.carousel-item {
	flex: 0 0 calc(33.333% - 1em);
	min-width: 300px;
	max-height: 100%;
	display: flex;
	flex-direction: column;
	background: var(--color-white);
	border-radius: 2px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.carousel-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.carousel-item-image {
	flex: 1;
	overflow: hidden;
	background: #ddd;
}
.carousel-item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}
.carousel-item:hover .carousel-item-image img {
	transform: scale(1.05);
}
.carousel-item-info {
	padding: 1.5em;
}
.carousel-item-info h3 {
	font-size: 1.2rem;
	font-weight: 600;
	margin: 0 0 0.5em;
}
.carousel-item-category {
	font-size: 0.9rem;
	color: var(--color-text-light);
	font-style: italic;
}

/* Mobile responsive */
@media (max-width: 768px) {
	.carousel-item {
		flex: 0 0 calc(100% - 2em);
		min-width: 280px;
	}
	.section-header {
		padding: 0 1em;
	}
	.project-carousel {
		padding: 0 1em 2em;
	}
	.carousel-arrow {
		width: 40px;
		height: 40px;
		font-size: 1.2rem;
	}
}

/* ============================
   PROJECT NAVIGATION (PREV/NEXT)
   ============================ */
.project-navigation {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 4em;
	padding-top: 2em;
	border-top: 1px solid #ddd;
	gap: 2em;
}
.project-navigation a {
	font-size: 1rem;
	font-weight: 500;
	color: var(--color-text);
	transition: color 0.2s;
}
.project-navigation a:hover {
	color: var(--color-green);
}
.nav-prev {
	text-align: left;
}
.nav-next {
	text-align: right;
}
.nav-disabled {
	visibility: hidden;
}

/* ============================
   FOOTER
   ============================ */
footer {
	padding: 1.5em 2em;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	background: linear-gradient(to top, var(--color-green), var(--color-white));
	font-size: 0.8rem;
	font-weight: 400;
	margin-top: auto;
}
footer ul {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 1.5em;
	list-style: none;
	padding: 0;
	margin: 0;
}
footer a {
	text-transform: uppercase;
	letter-spacing: 0.05em;
	position: relative;
	padding-bottom: 2px;
}
footer a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--color-text);
	transition: width 0.3s ease;
}
footer a:hover::after {
	width: 100%;
}

/* ============================
   LIGHTBOX (simple)
   ============================ */
.lightbox {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.9);
	z-index: 1000;
	align-items: center;
	justify-content: center;
}
.lightbox.active {
	display: flex;
}
.lightbox img {
	max-width: 90%;
	max-height: 90%;
	object-fit: contain;
	cursor: default;
}
.lightbox-close {
	position: absolute;
	top: 2rem;
	right: 2rem;
	background: transparent;
	border: none;
	color: var(--color-white);
	font-size: 3rem;
	font-weight: 300;
	cursor: pointer;
	z-index: 1001;
	transition: color 0.2s;
	line-height: 1;
	padding: 0;
	width: 50px;
	height: 50px;
}
.lightbox-close:hover {
	color: var(--color-green);
}
.lightbox-prev,
.lightbox-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	border: none;
	background: transparent;
	cursor: pointer;
	z-index: 1001;
	transition: all 0.2s;
	padding: 1rem;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0;
}
.lightbox-prev::before,
.lightbox-next::before {
	content: '';
	width: 50px;
	height: 50px;
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 24"><path d="M0 12 L36 12 M36 12 L24 0 M36 12 L24 24" fill="none" stroke="white" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/></svg>');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	transition: transform 0.3s ease;
}
.lightbox-prev::before {
	transform: scaleX(-1);
}
.lightbox-prev:hover::before,
.lightbox-next:hover::before {
	transform: scale(1.2);
}
.lightbox-prev:hover::before {
	transform: scaleX(-1) scale(1.2);
}
.lightbox-prev {
	left: 2rem;
}
.lightbox-next {
	right: 2rem;
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 768px) {
	.site-header {
		padding: 0 1em;
		font-size: 0.8rem;
	}
	.site-header .site-nav {
		gap: 2em;
	}
	.splash video {
		max-width: 60vw;
		max-height: 60vh;
	}
	.site-nav {
		gap: 1em;
	}
	main {
		padding: 1em;
	}
	h1 {
		font-size: 1.5rem;
	}
	.category-grid,
	.project-grid,
	.album-grid {
		grid-template-columns: 1fr;
	}
	.project-gallery {
		grid-template-columns: 1fr;
	}
	.project-card.featured-large {
		grid-column: span 1;
	}
	.project-gallery img.featured-large {
		grid-column: span 1;
		grid-row: span 1;
	}
	.album-gallery {
		columns: 2;
	}
	.project-meta {
		flex-direction: column;
		gap: 0.5em;
	}
	/* Lightbox arrows bigger and thicker on mobile */
	.lightbox-prev::before,
	.lightbox-next::before {
		width: 60px;
		height: 60px;
		background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 24"><path d="M0 12 L36 12 M36 12 L24 0 M36 12 L24 24" fill="none" stroke="white" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
	}
	.lightbox-prev,
	.lightbox-next {
		width: 60px;
		height: 60px;
	}
	.contact-grid {
		grid-template-columns: 1fr;
		gap: 0.5rem;
		padding: 1rem;
	}
	.contact-item {
		padding: 0.8rem;
	}
	.about-section {
		justify-content: flex-start;
		padding-top: 2em;
	}
}
@media (max-width: 480px) {
	.album-gallery {
		columns: 1;
	}
	.splash video {
		max-width: 80vw;
		max-height: 80vh;
	}
	.site-nav {
		gap: 0.6em;
		font-size: 0.75rem;
	}
}