/* ==========================================================================
   Black Turtle Productions — Main Styles
   Colors: Black #0a0a0a | Gold #c9a84c | Teal #3d8b7a | White #f0f0f0
   Fonts: Cormorant Garamond (headings) | Montserrat (body)
   ========================================================================== */

:root {
	--btp-black: #0a0a0a;
	--btp-dark: #111111;
	--btp-dark-2: #1a1a1a;
	--btp-dark-3: #242424;
	--btp-gold: #c9a84c;
	--btp-gold-light: #e0c878;
	--btp-teal: #3d8b7a;
	--btp-teal-dark: #2d6a5e;
	--btp-white: #f0f0f0;
	--btp-gray: #a0a0a0;
	--btp-gray-dark: #666666;
	--btp-font-heading: 'Cormorant Garamond', Georgia, serif;
	--btp-font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
	--btp-container: 1200px;
	--btp-narrow: 800px;
	--btp-header-height: 80px;
	--btp-transition: 0.3s ease;
}

*, *::before, *::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	padding: 0;
	font-family: var(--btp-font-body);
	font-size: 16px;
	line-height: 1.7;
	color: var(--btp-white);
	background-color: var(--btp-black);
	-webkit-font-smoothing: antialiased;
}

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

a {
	color: var(--btp-gold);
	text-decoration: none;
	transition: color var(--btp-transition);
}

a:hover {
	color: var(--btp-gold-light);
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--btp-font-heading);
	font-weight: 600;
	line-height: 1.2;
	margin: 0 0 1rem;
	color: var(--btp-white);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); }

p {
	margin: 0 0 1.25rem;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.container {
	width: 100%;
	max-width: var(--btp-container);
	margin: 0 auto;
	padding: 0 24px;
}

.narrow {
	max-width: var(--btp-narrow);
}

/* Header */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	height: var(--btp-header-height);
	background: rgba(10, 10, 10, 0.95);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(201, 168, 76, 0.15);
	transition: background var(--btp-transition);
}

.site-header.scrolled {
	background: rgba(10, 10, 10, 0.98);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: var(--btp-header-height);
}

.site-branding a,
.site-logo,
.footer-logo,
.footer-logo .custom-logo-link {
	display: inline-flex;
	align-items: center;
}

.site-branding img,
.site-logo img,
.footer-logo img,
.footer-logo .custom-logo-link img {
	height: 50px;
	width: auto;
}

.nav-menu {
	display: flex;
	align-items: center;
	gap: 2rem;
	margin: 0;
	padding: 0;
}

.nav-menu li a {
	font-size: 0.8rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--btp-white);
}

.nav-menu li a:hover,
.nav-menu li.current-menu-item a {
	color: var(--btp-gold);
}

.menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 32px;
	height: 32px;
	padding: 0;
	background: none;
	border: none;
	cursor: pointer;
}

.menu-toggle-bar {
	display: block;
	width: 100%;
	height: 2px;
	background: var(--btp-gold);
	transition: var(--btp-transition);
}

/* Main */
.site-main {
	padding-top: var(--btp-header-height);
	min-height: 60vh;
}

/* Hero */
.hero {
	position: relative;
	min-height: 90vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background:
		linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(45, 106, 94, 0.3) 50%, rgba(10, 10, 10, 0.9) 100%),
		url('../images/hero-bg.jpg') center/cover no-repeat;
	background-color: var(--btp-dark);
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at center, transparent 0%, rgba(10, 10, 10, 0.6) 100%);
}

.hero-content {
	position: relative;
	z-index: 1;
	padding: 4rem 0;
}

.hero-eyebrow {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--btp-gold);
	margin-bottom: 1.5rem;
}

.hero-title {
	font-size: clamp(3rem, 7vw, 5.5rem);
	font-weight: 700;
	letter-spacing: 0.02em;
	margin-bottom: 1rem;
}

.hero-subtitle {
	font-size: clamp(1rem, 2vw, 1.25rem);
	font-weight: 300;
	color: var(--btp-gray);
	max-width: 600px;
	margin: 0 auto 2.5rem;
}

.hero-actions {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

/* Buttons */
.btn {
	display: inline-block;
	padding: 14px 32px;
	font-family: var(--btp-font-body);
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	border: 2px solid transparent;
	cursor: pointer;
	transition: all var(--btp-transition);
}

.btn-primary {
	background: var(--btp-gold);
	color: var(--btp-black);
	border-color: var(--btp-gold);
}

.btn-primary:hover {
	background: var(--btp-gold-light);
	border-color: var(--btp-gold-light);
	color: var(--btp-black);
}

.btn-outline {
	background: transparent;
	color: var(--btp-white);
	border-color: var(--btp-white);
}

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

/* Intro */
.intro-section {
	padding: 6rem 0;
	background: var(--btp-dark);
}

.lead-text {
	font-size: clamp(1.1rem, 2vw, 1.35rem);
	font-weight: 300;
	line-height: 1.8;
	color: var(--btp-gray);
	text-align: center;
}

/* Services Grid */
.services-section {
	padding: 6rem 0;
	background: var(--btp-black);
}

.section-header {
	text-align: center;
	margin-bottom: 4rem;
}

.section-header h2 {
	color: var(--btp-gold);
	margin-bottom: 1rem;
}

.section-header p {
	color: var(--btp-gray);
	max-width: 500px;
	margin: 0 auto;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2rem;
}

.service-card {
	background: var(--btp-dark-2);
	border: 1px solid rgba(201, 168, 76, 0.1);
	transition: all var(--btp-transition);
}

.service-card:hover {
	border-color: rgba(201, 168, 76, 0.4);
	transform: translateY(-4px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.service-card-inner {
	padding: 2.5rem;
}

.service-card h3 {
	color: var(--btp-gold);
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

.service-intro {
	color: var(--btp-white);
	font-weight: 500;
	margin-bottom: 1.25rem;
}

.service-bullets {
	margin-bottom: 1.5rem;
}

.service-bullets li {
	position: relative;
	padding-left: 1.25rem;
	margin-bottom: 0.5rem;
	font-size: 0.9rem;
	color: var(--btp-gray);
}

.service-bullets li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.6em;
	width: 6px;
	height: 6px;
	background: var(--btp-teal);
	border-radius: 50%;
}

.service-link {
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--btp-gold);
}

.service-link span {
	display: inline-block;
	transition: transform var(--btp-transition);
}

.service-link:hover span {
	transform: translateX(4px);
}

/* CTA */
.cta-section {
	padding: 6rem 0;
	background: linear-gradient(180deg, var(--btp-dark) 0%, var(--btp-teal-dark) 100%);
}

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

.cta-box h2 {
	margin-bottom: 1rem;
}

.cta-box p {
	color: var(--btp-gray);
	margin-bottom: 2rem;
}

/* Page Header */
.page-header {
	padding: 5rem 0 3rem;
	background: var(--btp-dark);
	border-bottom: 1px solid rgba(201, 168, 76, 0.15);
	text-align: center;
}

.page-eyebrow {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--btp-gold);
	margin-bottom: 1rem;
}

.page-title {
	color: var(--btp-white);
}

/* Service Content */
.service-content {
	padding: 4rem 0;
}

.service-intro {
	margin-bottom: 3rem;
}

.service-sections {
	display: flex;
	flex-direction: column;
	gap: 3rem;
}

.service-section {
	padding-bottom: 3rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.service-section:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.service-section h2 {
	color: var(--btp-gold);
	font-size: 1.75rem;
	margin-bottom: 1.25rem;
}

.section-body p {
	color: var(--btp-gray);
}

.service-nav-section {
	padding: 4rem 0;
	background: var(--btp-dark-2);
	text-align: center;
}

.service-nav-section h3 {
	color: var(--btp-gold);
	margin-bottom: 1.5rem;
}

.service-nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
}

.service-nav-links a {
	padding: 0.5rem 1.25rem;
	border: 1px solid rgba(201, 168, 76, 0.3);
	font-size: 0.8rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--btp-white);
	transition: all var(--btp-transition);
}

.service-nav-links a:hover {
	background: var(--btp-gold);
	color: var(--btp-black);
	border-color: var(--btp-gold);
}

/* Footer */
.site-footer {
	background: var(--btp-dark);
	border-top: 1px solid rgba(201, 168, 76, 0.15);
	padding-top: 4rem;
}

.footer-inner {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 3rem;
	padding-bottom: 3rem;
}

.footer-tagline {
	color: var(--btp-gray);
	font-size: 0.9rem;
	margin-top: 1rem;
}

.footer-nav h4,
.footer-contact h4 {
	font-family: var(--btp-font-body);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--btp-gold);
	margin-bottom: 1.25rem;
}

.footer-nav ul li {
	margin-bottom: 0.5rem;
}

.footer-nav a,
.footer-contact a {
	color: var(--btp-gray);
	font-size: 0.9rem;
}

.footer-nav a:hover,
.footer-contact a:hover {
	color: var(--btp-gold);
}

.footer-contact p {
	color: var(--btp-gray);
	font-size: 0.9rem;
	margin-bottom: 0.5rem;
}

.footer-bottom {
	padding: 1.5rem 0;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	text-align: center;
}

.footer-bottom p {
	margin: 0;
	font-size: 0.8rem;
	color: var(--btp-gray-dark);
}

/* Content area */
.content-area {
	padding: 3rem 0;
}

.page-content {
	color: var(--btp-gray);
}

/* 404 */
.error-404 {
	text-align: center;
	padding: 6rem 0;
}

.error-404 h1 {
	font-size: 6rem;
	color: var(--btp-gold);
}

/* Responsive */
@media (max-width: 900px) {
	.menu-toggle {
		display: flex;
	}

	.main-navigation {
		position: fixed;
		top: var(--btp-header-height);
		left: 0;
		right: 0;
		background: rgba(10, 10, 10, 0.98);
		padding: 2rem;
		transform: translateY(-120%);
		opacity: 0;
		visibility: hidden;
		transition: all var(--btp-transition);
		border-bottom: 1px solid rgba(201, 168, 76, 0.15);
	}

	.main-navigation.is-open {
		transform: translateY(0);
		opacity: 1;
		visibility: visible;
	}

	.nav-menu {
		flex-direction: column;
		align-items: flex-start;
		gap: 1.25rem;
	}

	.footer-inner {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

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

@media (max-width: 480px) {
	.hero-actions {
		flex-direction: column;
		align-items: center;
	}

	.btn {
		width: 100%;
		max-width: 280px;
		text-align: center;
	}
}
