/* === Reset & Base === */
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', sans-serif;
	font-weight: 300;
	line-height: 1.7;
	color: #f0ede8;
	background: #111;
	-webkit-font-smoothing: antialiased;
}

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

a {
	color: inherit;
	text-decoration: none;
}

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

.container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 2rem;
}

/* === Header === */
#header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background: rgba(17, 17, 17, 0.92);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 64px;
}

.logo {
	font-family: 'Playfair Display', serif;
	font-size: 1.4rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	color: #e5474b;
}

#nav {
	display: flex;
	gap: 2rem;
}

#nav a {
	font-size: 0.9rem;
	font-weight: 400;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	opacity: 0.7;
	transition: opacity 0.2s;
}

#nav a:hover {
	opacity: 1;
}

.nav-toggle {
	display: none;
	background: none;
	border: none;
	color: #f0ede8;
	cursor: pointer;
	padding: 0.5rem;
	min-width: 44px;
	min-height: 44px;
	-webkit-tap-highlight-color: transparent;
	touch-action: manipulation;
}

/* === Banner === */
#banner {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 6rem 2rem 4rem;
	background:
		linear-gradient(to bottom, rgba(17, 17, 17, 0.5), rgba(17, 17, 17, 0.85)),
		url('../../images/banner.jpg') center/cover no-repeat;
}

#banner h1 {
	font-size: clamp(2.5rem, 6vw, 4.5rem);
	letter-spacing: 0.04em;
	margin-bottom: 1.5rem;
	color: #fff;
}

.tagline {
	font-size: clamp(1rem, 2.5vw, 1.35rem);
	font-weight: 300;
	opacity: 0.75;
	letter-spacing: 0.03em;
	line-height: 1.6;
}

/* === Section: About === */
.section-light {
	background: #fff;
	color: #222;
}

.section-light .container {
	padding-top: 5rem;
	padding-bottom: 5rem;
	text-align: center;
	max-width: 750px;
}

.section-light h2 {
	font-size: 2.2rem;
	margin-bottom: 1.5rem;
	color: #111;
}

.section-light p {
	font-size: 1.1rem;
	line-height: 1.8;
	opacity: 0.8;
}

/* === Section: Products / Cards === */
#two {
	padding: 5rem 0;
}

.card-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2.5rem;
}

.card {
	background: #1a1a1a;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.card-image {
	overflow: hidden;
	aspect-ratio: 4 / 3;
}

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

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

.card-body {
	padding: 1.75rem;
}

.card-body h3 {
	font-size: 1.5rem;
	margin-bottom: 0.75rem;
	color: #e5474b;
}

.card-body p {
	font-size: 0.95rem;
	opacity: 0.75;
	line-height: 1.7;
}

/* === Footer === */
#footer {
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	padding: 3rem 0;
	text-align: center;
}

.footer-brand {
	font-family: 'Playfair Display', serif;
	font-size: 1.2rem;
	font-weight: 700;
	color: #e5474b;
	margin-bottom: 0.5rem;
}

.footer-tagline {
	font-size: 0.85rem;
	opacity: 0.4;
	letter-spacing: 0.04em;
}

/* === Fade-in Animation === */
.fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

/* === Responsive === */
@media (max-width: 768px) {
	.nav-toggle {
		display: block;
	}

	#nav {
		display: none;
		position: absolute;
		top: 64px;
		left: 0;
		right: 0;
		background: rgba(17, 17, 17, 0.97);
		flex-direction: column;
		padding: 1.5rem 2rem;
		gap: 1.25rem;
		border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	}

	#nav.open {
		display: flex;
	}

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

	.card-image {
		aspect-ratio: 16 / 9;
		max-height: 260px;
	}

	.section-light .container {
		padding-top: 3.5rem;
		padding-bottom: 3.5rem;
	}

	#two {
		padding: 3.5rem 0;
	}
}
