:root {
	/* Colours */
	--bg-color: #ffffff;
	--text-color: #333333;
	--accent-color: #1a1a1a;
	--red-accent: #e93d3d;
	--light-bg: #f5f5f5;

	/* Fonts */
	--font-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
	--font-h1: clamp(2.5rem, 2rem + 2.5vw, 4rem);
	--font-h2: clamp(2rem, 1.8rem + 1vw, 2.5rem);
}

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

body {
	font-family: system-ui, -apple-system, sans-serif;
	font-size: var(--font-base);
	color: var(--text-color);
	background-color: var(--bg-color);
	line-height: 1.6;
	overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
	font-family: 'Georgia', serif; /* Luxurious feel. */
	font-weight: 400;
	line-height: 1.2;
	margin-bottom: 1rem;
	color: var(--accent-color);
}

h1 { font-size: var(--font-h1); }
h2 { font-size: var(--font-h2); }

a {
	text-decoration: none;
	color: inherit;
	transition: color 0.3s ease;
}

/* Layout Primitives */
.container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}

.section-padding {
	padding: 5rem 0;
}

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

.dark-bg {
	background-color: var(--accent-color);
	color: #fff;
}
.dark-bg h2, .dark-bg p { color: #fff; }

.light-bg {
	background-color: var(--light-bg);
}

/* Buttons */
.btn {
	display: inline-block;
	padding: 0.8rem 1.5rem;
	border: 1px solid var(--accent-color);
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 0.9rem;
	cursor: pointer;
	transition: all 0.3s ease;
}

.btn-primary {
	background: transparent;
	color: var(--accent-color);
}

.btn-primary:hover {
	background: var(--accent-color);
	color: #fff;
}

.btn-solid {
	background: var(--red-accent);
	color: #fff;
	border-color: var(--red-accent);
}

.btn-solid:hover {
	background: transparent;
	color: var(--red-accent);
}

/* Header */
.site-header {
	border-bottom: 1px solid #eaeaea;
	padding: 1rem 0;
	position: sticky;
	top: 0;
	background: rgba(255, 255, 255, 0.98);
	z-index: 100;
}

.logo-img {
	max-height: 50px;
	width: auto;
	display: block;
}

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

.main-nav ul {
	list-style: none;
	display: flex;
	gap: 2rem;
}

.main-nav a:hover {
	color: var(--red-accent);
}

.mobile-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
}

/* Hero Section
 * I have no idea why this is called 'hero', but it was in the original bad
 * landing page, so I preserved it.
 */
.hero {
	min-height: 80vh;
	display: flex;
	align-items: center;
	background-color: var(--light-bg);
	text-align: center;
	padding: 2rem 0;
}

.hero-content {
	max-width: 800px;
}

.hero p {
	margin-bottom: 2rem;
	font-size: 1.1rem;
}

/* CTA Section Spacing */
.cta-section p {
	margin-bottom: 2rem; /* Creates clean separation between the copy and the button */
}

/* Splits & Grids */
.split-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.boutique-img {
	width: 100%;
	max-width: 100%;
	height: auto;
	object-fit: cover; 
	object-position: center; 
	display: block;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	border-radius: 4px;
}

.grid-layout {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.grid-3 {
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.card, .benefit-item {
	background: #fff;
	padding: 2rem;
	border: 1px solid #eaeaea;
	text-align: center;
}

.card-icon {
	font-size: 2.5rem;
	color: var(--red-accent);
	margin-bottom: 1rem;
}

/* Footer */
.site-footer {
	background: var(--accent-color);
	color: #fff;
	padding: 4rem 0 1rem 0;
}

.site-footer h3, .site-footer h4 { color: #fff; }

.footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 3rem;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col i { margin-right: 10px; color: var(--red-accent); }

.footer-bottom {
	text-align: center;
	border-top: 1px solid #333;
	padding-top: 1rem;
	font-size: 0.85rem;
	color: #aaa;
}

/* Video & iframe Container Geometry */
.split-image {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.split-image video {
	padding: 1.5rem;
	width: 100%;
	max-width: 100%;
	height: auto;
	display: block;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.footer-col iframe {
	width: 100%;
	max-width: 100%;
	height: 250px;
	border: none;
	margin-top: 15px;
	border-radius: 4px;
}

/* Mobile */
@media (max-width: 768px) {
	.main-nav {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background: #fff;
		padding: 1rem 0;
		box-shadow: 0 4px 6px rgba(0,0,0,0.1);
	}

	.main-nav.active {
		display: block;
	}

	.main-nav ul {
		flex-direction: column;
		align-items: center;
		gap: 1rem;
	}

	.nav-cta { display: none; }
	.mobile-toggle { display: block; }

	.split-layout {
		display: flex;
		flex-direction: column;
		gap: 2rem;
	}

	.hero.split-layout {
		flex-direction: column-reverse;
	}

	.split-image {
		padding: 1rem;
	}
}
