/* ─── TOKENS ──────────────────────────────────────────────────────────────── */
:root {
	--black: #0A0A0A;
	--black-2: #111111;
	--black-3: #1A1A1A;
	--black-4: #242424;
	--red: #CC1414;
	--red-dark: #991010;
	--red-light: #E52020;
	--chrome: #C0C0C0;
	--chrome-light: #E8E8E8;
	--chrome-dark: #8A8A8A;
	--green: #2E8B57;
	--amber: #C98A1F;
	--chrome-shine: linear-gradient(135deg, #E8E8E8 0%, #A8A8A8 40%, #E0E0E0 60%, #B0B0B0 100%);
	--text: #F0F0F0;
	--text-muted: #9A9A9A;
	--border: #2A2A2A;
	--border-red: rgba(204, 20, 20, 0.3);

	--radius-sm: 4px;
	--radius: 8px;
	--radius-lg: 16px;

	--shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
	--shadow-red: 0 0 24px rgba(204, 20, 20, 0.25);

	--font-heading: 'Georgia', serif;
	--font-body: system-ui, -apple-system, sans-serif;

	--nav-h: 70px;
	--section-pad: clamp(64px, 10vw, 120px);
}

/* ─── RESET ───────────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

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

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

a {
	color: var(--chrome-light);
	text-decoration: none;
	transition: color .2s;
}

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

ul {
	list-style: none;
}

button {
	cursor: pointer;
	border: none;
	background: none;
	font: inherit;
}

/* ─── UTILITIES ───────────────────────────────────────────────────────────── */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 clamp(16px, 4vw, 48px);
}

.chrome-text {
	background: var(--chrome-shine);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.red-text {
	color: var(--red);
}

.section {
	padding: var(--section-pad) 0;
}

.section-header {
	text-align: center;
	margin-bottom: clamp(40px, 6vw, 72px);
}

.section-title {
	font-family: var(--font-heading);
	font-size: clamp(2rem, 4vw, 3rem);
	letter-spacing: .02em;
	margin-bottom: .5rem;
}

.section-subtitle {
	color: var(--text-muted);
	font-size: 1.1rem;
	max-width: 560px;
	margin: 0 auto;
}

/* ─── BUTTONS ─────────────────────────────────────────────────────────────── */
.btn {
	display: inline-block;
	padding: .75rem 1.75rem;
	border-radius: var(--radius-sm);
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: .06em;
	text-transform: uppercase;
	transition: all .2s;
	cursor: pointer;
}

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

.btn-primary:hover {
	background: var(--red-light);
	border-color: var(--red-light);
	color: #fff;
	box-shadow: var(--shadow-red);
}

.btn-outline {
	background: transparent;
	color: var(--chrome-light);
	border: 2px solid var(--chrome-dark);
}

.btn-outline:hover {
	border-color: var(--chrome-light);
	color: var(--chrome-light);
	background: rgba(200, 200, 200, .07);
}

.btn-sm {
	padding: .5rem 1.25rem;
	font-size: .875rem;
}

.btn-lg {
	padding: 1rem 2.25rem;
	font-size: 1.1rem;
}

/* ─── NAV ─────────────────────────────────────────────────────────────────── */
.nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	height: var(--nav-h);
	background: rgba(10, 10, 10, .92);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--border);
	transition: box-shadow .3s;
}

.nav.scrolled {
	box-shadow: 0 2px 20px rgba(0, 0, 0, .8);
}

.nav-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 clamp(16px, 4vw, 48px);
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.nav-logo {
	display: flex;
	align-items: center;
	gap: .35rem;
	text-decoration: none;
	flex-shrink: 0;
}

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

.nav-right {
	display: flex;
	align-items: center;
	gap: clamp(1rem, 3vw, 2.5rem);
}

.nav-links {
	display: flex;
	align-items: center;
	gap: clamp(.75rem, 2vw, 2rem);
}

.nav-links a {
	color: var(--chrome);
	font-size: .9rem;
	letter-spacing: .04em;
	text-transform: uppercase;
	font-weight: 500;
	white-space: nowrap;
	transition: color .2s;
}

.nav-links a:hover {
	color: var(--red-light);
}

.nav-cta {
	background: var(--red) !important;
	color: #fff !important;
	padding: .45rem 1.1rem;
	border-radius: var(--radius-sm);
	border: 2px solid var(--red);
	transition: background .2s, box-shadow .2s !important;
}

.nav-cta:hover {
	background: var(--red-light) !important;
	border-color: var(--red-light);
	box-shadow: var(--shadow-red) !important;
}

.nav-actions {
	display: flex;
	align-items: center;
	gap: .6rem;
	flex-shrink: 0;
}

.nav-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .4rem;
	padding: .45rem 1rem;
	border-radius: var(--radius-sm);
	font-size: .85rem;
	letter-spacing: .04em;
	text-transform: uppercase;
	font-weight: 500;
	white-space: nowrap;
	transition: background .2s, border-color .2s, box-shadow .2s, color .2s;
}

/* The SVGs also carry width/height attributes in nav.html. That's deliberate
   redundancy, not duplication: an inline <svg> with only a viewBox has no
   intrinsic size, so if this stylesheet is ever stale, slow, or missing the
   icon falls back to the CSS default replaced-element size of 300x150px and
   detonates the header. The attributes cap it at 16px with no CSS at all;
   these rules still win when the stylesheet does load, which is what lets the
   mobile override below scale them up. */
.nav-btn-icon {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}

.nav-btn-call {
	color: var(--chrome);
	border: 2px solid var(--border);
	background: transparent;
}

.nav-btn-call:hover {
	color: var(--chrome-light);
	border-color: var(--chrome);
}

.nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	padding: 4px;
}

.nav-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--chrome);
	transition: all .3s;
}

.nav-toggle.open span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
	opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* ─── HERO ────────────────────────────────────────────────────────────────── */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: calc(var(--nav-h) + 2rem) 1rem 4rem;
	background: linear-gradient(160deg, #0A0A0A 0%, #1A0505 50%, #0A0A0A 100%);
	overflow: hidden;
}

.hero--photo {
	background-image: url('/public/images/hero-image.jpg');
	background-size: cover;
	background-position: center;
}

.hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 80% 60% at 60% 40%, rgba(204, 20, 20, .12) 0%, transparent 70%),
		repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(255, 255, 255, .015) 40px, rgba(255, 255, 255, .015) 41px),
		repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(255, 255, 255, .015) 40px, rgba(255, 255, 255, .015) 41px);
}

.hero-overlay {
	/* When you have a background photo, set .hero { background-image: url(...) } and use this overlay */
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, .6);
	pointer-events: none;
}

.hero-content {
	position: relative;
	text-align: center;
	max-width: 800px;
}

.hero-eyebrow {
	color: var(--chrome-dark);
	font-size: .85rem;
	letter-spacing: .18em;
	text-transform: uppercase;
	margin-bottom: 1.25rem;
}

.hero-title {
	font-family: var(--font-heading);
	font-size: clamp(3rem, 9vw, 7rem);
	line-height: 1;
	letter-spacing: .04em;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: .1em;
	margin-bottom: .75rem;
}

.hero-subtitle {
	color: var(--chrome);
	font-size: clamp(1rem, 2vw, 1.3rem);
	letter-spacing: .25em;
	text-transform: uppercase;
	margin-bottom: 1.25rem;
}

.hero-desc {
	color: var(--text-muted);
	font-size: 1.1rem;
	max-width: 540px;
	margin: 0 auto 2.5rem;
}

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

/* ─── PLACEHOLDER IMAGES ──────────────────────────────────────────────────── */
.placeholder-img {
	width: 100%;
	background: var(--black-3);
	border: 1px dashed var(--border);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-muted);
	font-size: .85rem;
	letter-spacing: .06em;
	text-transform: uppercase;
	aspect-ratio: 4/3;
}

/* ─── STYLES SECTION ──────────────────────────────────────────────────────── */
.styles-section {
	background: var(--black-2);
}

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

.style-card {
	background: var(--black-3);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	transition: border-color .25s, transform .25s;
	position: relative;
}

.style-card:hover {
	border-color: var(--red);
	transform: translateY(-4px);
	box-shadow: var(--shadow-red);
}

.style-card--featured {
	border-color: var(--red);
}

.style-badge {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: var(--red);
	color: #fff;
	font-size: .75rem;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	padding: .3rem .75rem;
	border-radius: 99px;
	z-index: 1;
}

.style-img-wrap {
	position: relative;
	height: 220px;
	overflow: hidden;
}

.style-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity .6s ease, transform .4s;
}

.style-img.active {
	opacity: 1;
}

.style-card:hover .style-img.active {
	transform: scale(1.04);
}

.style-card-body {
	padding: 1.5rem;
}

.style-name {
	font-size: 1.4rem;
	font-family: var(--font-heading);
	margin-bottom: .5rem;
}

.style-desc {
	color: var(--text-muted);
	font-size: .95rem;
	margin-bottom: 1rem;
}

.style-features {
	margin-bottom: 1.5rem;
}

.style-features li {
	color: var(--chrome);
	font-size: .9rem;
	padding: .3rem 0;
	border-bottom: 1px solid var(--border);
	display: flex;
	align-items: center;
	gap: .5rem;
}

.style-features li::before {
	content: '—';
	color: var(--red);
}

/* ─── CAROUSEL CONTROLS (shared by style cards + gallery) ────────────────── */
.carousel-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	background: rgba(0, 0, 0, .45);
	color: var(--chrome-light);
	border: 1px solid var(--border);
	border-radius: 50%;
	width: 32px;
	height: 32px;
	font-size: 1.1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background .2s;
}

.carousel-btn:hover {
	background: var(--red);
}

.carousel-prev {
	left: .5rem;
}

.carousel-next {
	right: .5rem;
}

.carousel-dots {
	position: absolute;
	bottom: .6rem;
	left: 0;
	right: 0;
	z-index: 2;
	display: flex;
	justify-content: center;
	gap: .4rem;
}

.carousel-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .4);
	border: 1px solid rgba(0, 0, 0, .3);
	cursor: pointer;
	transition: background .2s;
}

.carousel-dot.active {
	background: var(--red);
}

/* ─── GALLERY ─────────────────────────────────────────────────────────────── */
.gallery-section {
	background: var(--black);
}

.gallery-carousel {
	position: relative;
	overflow: hidden;
	border-radius: var(--radius);
	border: 1px solid var(--border);
}

.gallery-track {
	display: flex;
	transition: transform .5s ease;
}

.gallery-slide {
	position: relative;
	flex: 0 0 100%;
	cursor: pointer;
}

.gallery-img {
	display: block;
	width: 100%;
	height: 480px;
	object-fit: cover;
}

.gallery-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(transparent, rgba(0, 0, 0, .85));
	color: var(--chrome-light);
	font-size: .95rem;
	letter-spacing: .06em;
	text-transform: uppercase;
	padding: 2rem 1.25rem 1rem;
}

.gallery-carousel-btn {
	width: 44px;
	height: 44px;
	font-size: 1.5rem;
}

.gallery-carousel-btn.carousel-prev {
	left: 1rem;
}

.gallery-carousel-btn.carousel-next {
	right: 1rem;
}

.carousel-dots--gallery {
	bottom: 1rem;
	flex-wrap: wrap;
	padding: 0 1rem;
}

/* LIGHTBOX */
.lightbox {
	position: fixed;
	inset: 0;
	z-index: 2000;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	pointer-events: none;
	opacity: 0;
	/* visibility, not just opacity/pointer-events: an element that is merely
	   transparent still keeps its buttons in the tab order, so a keyboard user
	   could tab into the closed lightbox. Focus landing inside this
	   aria-hidden="true" subtree is what makes Chrome log "Blocked aria-hidden
	   on an element because its descendant retained focus". visibility:hidden
	   removes descendants from the tab order outright. Transitioning it (it
	   flips discretely, at the end when hiding) keeps the fade-out intact. */
	visibility: hidden;
	transition: opacity .3s, visibility .3s;
}

.lightbox.open {
	pointer-events: all;
	opacity: 1;
	visibility: visible;
}

.lightbox-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, .92);
	z-index: 1999;
	pointer-events: none;
	opacity: 0;
	transition: opacity .3s;
}

.lightbox-backdrop.open {
	pointer-events: all;
	opacity: 1;
}

.lightbox-img-wrap {
	max-width: 80vw;
	max-height: 80vh;
}

.lightbox-img {
	width: 80vw;
	max-width: 900px;
	height: 60vh;
	aspect-ratio: unset;
	object-fit: cover;
	border-radius: var(--radius);
	border: 1px solid var(--border);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
	background: rgba(255, 255, 255, .1);
	color: var(--chrome-light);
	border: 1px solid var(--border);
	border-radius: 50%;
	width: 48px;
	height: 48px;
	font-size: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background .2s;
	flex-shrink: 0;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
	pointer-events: all;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
	background: var(--red);
}

.lightbox-close {
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
}

/* ─── PRICING ─────────────────────────────────────────────────────────────── */
.pricing-section {
	background: var(--black-2);
}

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

.pricing-card {
	background: var(--black-3);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 2rem 1.75rem;
	position: relative;
	transition: border-color .25s, transform .25s;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.pricing-card:hover {
	border-color: var(--chrome-dark);
	transform: translateY(-3px);
}

.pricing-card--featured {
	border-color: var(--red);
}

.pricing-badge {
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--red);
	color: #fff;
	font-size: .75rem;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	padding: .3rem 1rem;
	border-radius: 99px;
	white-space: nowrap;
}

.pricing-card-header h3 {
	font-family: var(--font-heading);
	font-size: 1.5rem;
}

.pricing-size {
	color: var(--text-muted);
	font-size: .9rem;
	margin-top: .2rem;
}

.pricing-price {
	display: flex;
	flex-direction: column;
}

.price-amount {
	font-size: 2.25rem;
	font-weight: 700;
	background: var(--chrome-shine);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.price-note {
	color: var(--text-muted);
	font-size: .8rem;
}

.pricing-includes {
	display: flex;
	flex-direction: column;
	gap: .4rem;
	flex: 1;
}

.pricing-includes li {
	color: var(--chrome);
	font-size: .9rem;
	display: flex;
	gap: .5rem;
	align-items: center;
}

.pricing-includes li::before {
	content: '✓';
	color: var(--red);
	font-weight: 700;
}

.pricing-disclaimer {
	text-align: center;
	color: var(--text-muted);
	font-size: .9rem;
}

/* ─── SPECS ───────────────────────────────────────────────────────────────── */
.specs-section {
	background: var(--black);
}

.specs-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
}

.spec-block {
	background: var(--black-3);
	border: 1px solid var(--border);
	border-left: 3px solid var(--red);
	border-radius: 0 var(--radius) var(--radius) 0;
	padding: 1.5rem;
	transition: border-color .2s;
}

.spec-block:hover {
	border-left-color: var(--chrome);
}

.spec-icon {
	font-size: 1.5rem;
	color: var(--red);
	margin-bottom: .5rem;
}

.spec-block h4 {
	font-size: 1.05rem;
	margin-bottom: .75rem;
	color: var(--chrome-light);
	letter-spacing: .03em;
}

.spec-block ul {
	display: flex;
	flex-direction: column;
	gap: .35rem;
}

.spec-block li {
	color: var(--text-muted);
	font-size: .9rem;
	padding-left: .75rem;
	position: relative;
}

.spec-block li::before {
	content: '·';
	position: absolute;
	left: 0;
	color: var(--red);
}

/* ─── ADD-ONS ─────────────────────────────────────────────────────────────── */
.addons-section {
	background: var(--black-2);
}

.addons-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 1.25rem;
	margin-bottom: 2rem;
}

.addon-card {
	background: var(--black-3);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 1.5rem;
	transition: border-color .25s, transform .2s;
}

.addon-card:hover {
	border-color: var(--red);
	transform: translateY(-2px);
}

.addon-icon {
	font-size: 1.75rem;
	margin-bottom: .6rem;
}

.addon-card h4 {
	color: var(--chrome-light);
	font-size: 1rem;
	margin-bottom: .4rem;
}

.addon-card p {
	color: var(--text-muted);
	font-size: .88rem;
	line-height: 1.55;
}

.addons-note {
	text-align: center;
	color: var(--text-muted);
	font-size: .95rem;
}

.addons-note a {
	color: var(--red);
}

.addons-note a:hover {
	color: var(--red-light);
}

/* ─── TESTIMONIALS ────────────────────────────────────────────────────────── */
.testimonials-section {
	background: var(--black);
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
}

.testimonial-card {
	background: var(--black-3);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 1.75rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	transition: border-color .25s;
}

.testimonial-card:hover {
	border-color: var(--chrome-dark);
}

.testimonial-stars {
	color: var(--red);
	font-size: 1.1rem;
	letter-spacing: .1em;
}

.testimonial-card blockquote {
	color: var(--chrome);
	font-size: .95rem;
	line-height: 1.7;
	font-style: italic;
	flex: 1;
}

.testimonial-card blockquote::before {
	content: '"';
	color: var(--red);
	font-size: 1.5rem;
	line-height: 0;
	vertical-align: -.4em;
	margin-right: .25rem;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: .75rem;
}

.testimonial-avatar {
	width: 44px;
	height: 44px;
	background: var(--red);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: .8rem;
	font-weight: 700;
	letter-spacing: .04em;
	flex-shrink: 0;
}

.testimonial-author strong {
	display: block;
	color: var(--chrome-light);
	font-size: .95rem;
}

.testimonial-author span {
	color: var(--text-muted);
	font-size: .8rem;
}

/* ─── CONTACT ─────────────────────────────────────────────────────────────── */
.contact-section {
	background: var(--black-2);
}

.contact-wrap {
	display: grid;
	grid-template-columns: 1fr 360px;
	gap: 3rem;
	align-items: start;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.25rem;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: .4rem;
}

.form-group label {
	font-size: .85rem;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--chrome);
	font-weight: 500;
}

.req {
	color: var(--red);
}

.form-group input,
.form-group select,
.form-group textarea {
	background: var(--black-3);
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	color: var(--text);
	font-size: 1rem;
	font-family: var(--font-body);
	padding: .75rem 1rem;
	outline: none;
	transition: border-color .2s, box-shadow .2s;
	width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	border-color: var(--red);
	box-shadow: 0 0 0 3px rgba(204, 20, 20, .15);
}

.form-group select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A8A8A' stroke-width='2' fill='none'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1rem center;
	padding-right: 2.5rem;
}

.form-group textarea {
	resize: vertical;
	min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	color: var(--chrome-dark);
}

.form-group option {
	background: var(--black-3);
}

.form-submit-row {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.spinner {
	display: none;
	width: 22px;
	height: 22px;
	border: 3px solid var(--border);
	border-top-color: var(--red);
	border-radius: 50%;
	animation: spin .7s linear infinite;
}

.htmx-request .spinner {
	display: block;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

.form-error {
	background: rgba(204, 20, 20, .1);
	border: 1px solid var(--border-red);
	border-radius: var(--radius-sm);
	padding: 1rem;
	color: #F87171;
	font-size: .95rem;
}

.form-success {
	background: rgba(20, 180, 80, .08);
	border: 1px solid rgba(20, 180, 80, .3);
	border-radius: var(--radius);
	padding: 2rem;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: .75rem;
}

.success-icon {
	width: 56px;
	height: 56px;
	background: rgba(20, 180, 80, .15);
	border: 2px solid rgba(20, 180, 80, .5);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: #4ade80;
}

.form-success h3 {
	font-size: 1.4rem;
}

.form-success p {
	color: var(--text-muted);
	font-size: .95rem;
}

.form-success a {
	color: var(--red);
}

.contact-sidebar {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.contact-info-block {
	background: var(--black-3);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 1.5rem;
}

.contact-info-block h3 {
	font-size: 1rem;
	color: var(--chrome);
	letter-spacing: .05em;
	text-transform: uppercase;
	margin-bottom: .75rem;
}

.contact-info-block p {
	color: var(--text-muted);
	font-size: .9rem;
}

.contact-phone {
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--red);
	display: block;
	margin-bottom: .25rem;
}

.contact-phone:hover {
	color: var(--red-light);
}

.contact-steps {
	display: flex;
	flex-direction: column;
	gap: .5rem;
	counter-reset: steps;
}

.contact-steps li {
	color: var(--text-muted);
	font-size: .9rem;
	padding-left: 1.75rem;
	position: relative;
	counter-increment: steps;
}

.contact-steps li::before {
	content: counter(steps);
	position: absolute;
	left: 0;
	width: 20px;
	height: 20px;
	background: var(--red);
	border-radius: 50%;
	color: #fff;
	font-size: .7rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	top: 2px;
}

/* ─── FOOTER ──────────────────────────────────────────────────────────────── */
.footer {
	background: var(--black);
	border-top: 1px solid var(--border);
	padding: 3rem 0 1.5rem;
}

.footer-inner {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 2rem;
	margin-bottom: 2rem;
	flex-wrap: wrap;
}

.footer-brand {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: .35rem;
}

.footer-logo-img {
	height: 26px;
	width: auto;
	display: block;
}

.footer-brand p {
	width: 100%;
	color: var(--text-muted);
	font-size: .85rem;
	margin-top: .5rem;
}

.footer-links {
	display: flex;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.footer-links a {
	color: var(--text-muted);
	font-size: .9rem;
	transition: color .2s;
}

.footer-links a:hover {
	color: var(--red);
}

.footer-copy {
	color: var(--chrome-dark);
	font-size: .8rem;
	text-align: center;
	border-top: 1px solid var(--border);
	padding-top: 1.5rem;
}

/* ─── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
	.contact-wrap {
		grid-template-columns: 1fr;
	}

	.contact-sidebar {
		order: -1;
	}

	.gallery-img {
		height: 340px;
	}
}

/* Stage 2 of the 3-stage header: the full link list + labeled buttons need
   ~1100px to fit on one line, so the links collapse into the hamburger well
   before the phone breakpoint. The Call / Get a Quote buttons keep their
   text labels here — there's still plenty of room without the links. */
@media (max-width: 1100px) {
	.nav-links {
		position: fixed;
		top: var(--nav-h);
		left: 0;
		right: 0;
		background: rgba(10, 10, 10, .97);
		backdrop-filter: blur(10px);
		border-bottom: 1px solid var(--border);
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 1rem 0;
		transform: translateY(-120%);
		/* visibility, not just opacity/pointer-events — otherwise all seven
		   links stay in the tab order while the menu is visually closed, and a
		   keyboard user tabbing past the logo falls into an invisible menu. */
		visibility: hidden;
		transition: transform .3s, opacity .3s, visibility .3s;
		pointer-events: none;
		opacity: 0;
	}

	.nav-links.open {
		transform: translateY(0);
		pointer-events: all;
		opacity: 1;
		visibility: visible;
	}

	.nav-links a {
		padding: .75rem 2rem;
		border-bottom: 1px solid var(--border);
	}

	.nav-toggle {
		display: flex;
	}
}

@media (max-width: 680px) {
	/* Stage 3: phone widths — the labeled buttons shrink to icon-only
	   circles next to the hamburger. */
	.nav-actions {
		gap: .4rem;
	}

	.nav-btn {
		width: 40px;
		height: 40px;
		padding: 0;
		border-radius: 50%;
		gap: 0;
	}

	.nav-btn-label {
		display: none;
	}

	.nav-btn-icon {
		width: 18px;
		height: 18px;
	}

	.form-row {
		grid-template-columns: 1fr;
	}

	.gallery-img {
		height: 240px;
	}

	.gallery-carousel-btn {
		width: 36px;
		height: 36px;
		font-size: 1.2rem;
	}

	.hero-title {
		font-size: clamp(2.5rem, 12vw, 5rem);
	}
}

/* ─── PRICING TABS & TABLE ────────────────────────────────────────────────── */
.pricing-tabs {
	display: flex;
	gap: .5rem;
	margin-bottom: 1.75rem;
	border-bottom: 1px solid var(--border);
	padding-bottom: 0;
}

.pricing-tab {
	padding: .65rem 1.5rem;
	font-size: .9rem;
	font-weight: 600;
	letter-spacing: .05em;
	text-transform: uppercase;
	color: var(--text-muted);
	border-bottom: 3px solid transparent;
	margin-bottom: -1px;
	transition: color .2s, border-color .2s;
}

.pricing-tab:hover {
	color: var(--chrome-light);
}

.pricing-tab.active {
	color: var(--red);
	border-bottom-color: var(--red);
}

.pricing-pane {
	display: none;
}

.pricing-pane.active {
	display: block;
}

.pane-desc {
	color: var(--text-muted);
	font-size: .9rem;
	margin-bottom: 1.25rem;
	line-height: 1.6;
}

.pricing-table-wrap {
	overflow-x: auto;
}

.pricing-table {
	width: 100%;
	border-collapse: collapse;
	font-size: .95rem;
}

.pricing-table thead tr {
	background: var(--black-4);
	border-bottom: 2px solid var(--border-red);
}

.pricing-table th {
	text-align: left;
	padding: .75rem 1rem;
	font-size: .8rem;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--chrome-dark);
	font-weight: 600;
}

.pricing-table td {
	padding: .65rem 1rem;
	border-bottom: 1px solid var(--border);
	color: var(--chrome);
}

.pricing-table tbody tr:hover td {
	background: rgba(255, 255, 255, .03);
}

.group-header td {
	background: var(--black-4);
	color: var(--chrome-dark);
	font-size: .78rem;
	letter-spacing: .12em;
	text-transform: uppercase;
	font-weight: 700;
	padding: .5rem 1rem;
	border-bottom: 1px solid var(--border);
}

.price-cell {
	font-weight: 700;
	font-size: 1.05rem;
	background: var(--chrome-shine);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.pricing-disclaimer {
	margin-top: 1.5rem;
	text-align: center;
	color: var(--text-muted);
	font-size: .875rem;
}

/* ─── SPECS TIERS ─────────────────────────────────────────────────────────── */
.specs-shared {
	background: var(--black-3);
	border: 1px solid var(--border);
	border-top: 3px solid var(--red);
	border-radius: 0 0 var(--radius) var(--radius);
	padding: 1.5rem 2rem;
	margin-bottom: 2.5rem;
	text-align: center;
}

.specs-shared-title {
	color: var(--chrome-dark);
	font-size: .8rem;
	letter-spacing: .14em;
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 1rem;
}

.specs-shared-grid {
	display: flex;
	flex-wrap: wrap;
	gap: .75rem 2rem;
	justify-content: center;
}

.specs-shared-grid span {
	color: var(--chrome);
	font-size: .9rem;
	display: flex;
	align-items: center;
	gap: .4rem;
}

.specs-shared-grid span::before {
	content: '✓';
	color: var(--red);
	font-weight: 700;
}

.specs-tiers {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.specs-tier {
	background: var(--black-3);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
}

.specs-tier--deluxe {
	border-color: var(--red);
}

.specs-tier-header {
	padding: 1.25rem 1.5rem;
	background: var(--black-4);
	border-bottom: 1px solid var(--border);
}

.specs-tier--deluxe .specs-tier-header {
	border-bottom-color: var(--border-red);
}

.specs-tier-header h3 {
	font-family: var(--font-heading);
	font-size: 1.3rem;
	margin-bottom: .25rem;
}

.specs-tier-tag {
	display: inline-block;
	font-size: .75rem;
	color: var(--chrome-dark);
	letter-spacing: .08em;
	text-transform: uppercase;
}

.specs-tier--deluxe .specs-tier-tag {
	color: var(--red);
}

.specs-list {
	padding: 1rem 1.5rem;
	display: flex;
	flex-direction: column;
}

.specs-list li {
	display: grid;
	grid-template-columns: 110px 1fr;
	gap: .5rem 1rem;
	padding: .75rem 0;
	border-bottom: 1px solid var(--border);
	font-size: .9rem;
	align-items: baseline;
}

.specs-list li:last-child {
	border-bottom: none;
}

.specs-list li strong {
	color: var(--chrome-dark);
	font-size: .78rem;
	letter-spacing: .06em;
	text-transform: uppercase;
	font-weight: 600;
}

.specs-list li em {
	color: var(--text-muted);
	font-style: normal;
	font-size: .82rem;
}

.specs-note {
	text-align: center;
	color: var(--text-muted);
	font-size: .875rem;
	padding: 1rem;
	border-top: 1px solid var(--border);
}

@media (max-width: 680px) {
	.specs-tiers {
		grid-template-columns: 1fr;
	}

	.specs-list li {
		grid-template-columns: 90px 1fr;
	}

	.pricing-tab {
		padding: .55rem .9rem;
		font-size: .8rem;
	}
}

/* ─── ADD-ON CARDS (updated with prices) ─────────────────────────────────── */
.addon-price-tag {
	display: inline-block;
	background: var(--red);
	color: #fff;
	font-size: 1rem;
	font-weight: 700;
	padding: .2rem .6rem;
	border-radius: var(--radius-sm);
	margin-bottom: .6rem;
	letter-spacing: .02em;
}

.addon-unit {
	font-size: .7rem;
	font-weight: 500;
	opacity: .85;
}

.addon-sub {
	font-size: .75rem;
	color: var(--text-muted);
	font-weight: 400;
}

/* ─── IN STOCK ────────────────────────────────────────────────────────────── */
.instock-section { background: var(--black-2); padding-top: calc(var(--nav-h) + 3rem); }

.instock-empty {
	text-align: center;
	color: var(--text-muted);
	font-size: 1.05rem;
	padding: 2rem 0;
}

.lot-heading {
	font-family: var(--font-heading);
	font-size: 1.2rem;
	color: var(--chrome);
	margin: 2rem 0 1rem;
	padding-bottom: .5rem;
	border-bottom: 1px solid var(--border);
}

.lot-heading:first-child { margin-top: 0; }

.instock-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1.5rem;
	margin-bottom: 1rem;
}

.instock-card {
	background: var(--black-3);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	transition: border-color .25s, transform .25s;
}

.instock-card:hover {
	border-color: var(--red);
	transform: translateY(-4px);
	box-shadow: var(--shadow-red);
}

.instock-img-wrap { position: relative; height: 200px; overflow: hidden; }
.instock-img-wrap .placeholder-img { height: 100%; }

/* Single photo (no [data-carousel]): a plain filled image, no crossfade. */
.instock-img-wrap > .instock-img:only-of-type { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Multiple photos: same crossfade mechanic as .style-img, reused verbatim. */
.instock-img-wrap[data-carousel] .instock-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity .6s ease;
}
.instock-img-wrap[data-carousel] .instock-img.active { opacity: 1; }

.status-badge {
	position: absolute;
	top: 1rem; right: 1rem;
	color: #fff;
	font-size: .7rem;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	padding: .3rem .7rem;
	border-radius: 99px;
	z-index: 1;
}

.status-badge--in-stock { background: var(--green); }
.status-badge--on-hold { background: var(--amber); }
.status-badge--sold { background: var(--chrome-dark); }

.sold-ribbon {
	position: absolute;
	top: 14px; left: -38px;
	width: 150px;
	transform: rotate(-45deg);
	background: var(--red);
	color: #fff;
	font-size: .75rem;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	text-align: center;
	padding: .35rem 0;
	z-index: 2;
	box-shadow: 0 2px 8px rgba(0, 0, 0, .5);
}

.instock-card-body { padding: 1.25rem; }

.instock-title {
	font-family: var(--font-heading);
	font-size: 1.1rem;
	margin-bottom: .25rem;
}

.instock-lot {
	color: var(--text-muted);
	font-size: .9rem;
	margin-bottom: .75rem;
}

.instock-colors {
	display: flex;
	gap: .5rem;
	margin-bottom: .75rem;
}

.color-swatch {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 1px solid var(--border);
	display: inline-block;
}

.instock-price {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--chrome-light);
	margin-bottom: .9rem;
}

.instock-price--call {
	font-size: .95rem;
	font-weight: 600;
	color: var(--text-muted);
}

/* ─── ADMIN ───────────────────────────────────────────────────────────────── */
.admin-body { background: var(--black); min-height: 100vh; }

.admin-shell { padding: 3rem clamp(16px, 4vw, 48px); max-width: 1000px; }

.admin-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 2rem;
}

.admin-table-wrap { overflow-x: auto; }

.admin-table {
	width: 100%;
	border-collapse: collapse;
	font-size: .9rem;
}

.admin-table th,
.admin-table td {
	padding: .75rem 1rem;
	text-align: left;
	border-bottom: 1px solid var(--border);
	white-space: nowrap;
}

.admin-table th {
	color: var(--chrome-dark);
	text-transform: uppercase;
	font-size: .75rem;
	letter-spacing: .06em;
}

.admin-table select {
	background: var(--black-3);
	color: var(--text);
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	padding: .35rem .5rem;
	font-size: .85rem;
}

.admin-empty { color: var(--text-muted); text-align: center; padding: 2rem !important; }

.admin-row-actions { display: flex; gap: .5rem; }

.admin-form { max-width: 640px; }

.color-legend {
	display: flex;
	flex-wrap: wrap;
	gap: .4rem;
	margin-top: .5rem;
}

.photo-upload-row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 1rem;
}

.photo-upload-row input[type="file"] {
	font-size: .8rem;
	padding: .4rem 0;
}

.admin-photos { margin-bottom: 2rem; }
.admin-photos h3 { font-family: var(--font-heading); font-size: 1.1rem; margin-bottom: .75rem; }

.admin-empty-inline { color: var(--text-muted); font-size: .9rem; }

.admin-photo-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
	gap: .75rem;
}

.admin-photo-thumb {
	position: relative;
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	overflow: hidden;
	background: var(--black-3);
}

.admin-photo-thumb img {
	width: 100%;
	height: 90px;
	object-fit: cover;
	display: block;
}

.admin-photo-category {
	display: block;
	text-align: center;
	font-size: .7rem;
	text-transform: uppercase;
	letter-spacing: .05em;
	color: var(--text-muted);
	padding: .3rem 0;
}

.admin-photo-delete {
	position: absolute;
	top: .3rem;
	right: .3rem;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: rgba(0, 0, 0, .6);
	color: #fff;
	font-size: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background .2s;
}

.admin-photo-delete:hover { background: var(--red); }

/* ─── MODAL (interest form) ──────────────────────────────────────────────── */
.modal {
	position: fixed;
	inset: 0;
	z-index: 2000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
	pointer-events: none;
	opacity: 0;
	/* Same reasoning as .lightbox above, and it matters more here: this modal
	   wraps the whole inquiry form, so without visibility:hidden a keyboard
	   user could tab into invisible name/phone/email fields. */
	visibility: hidden;
	transition: opacity .3s, visibility .3s;
}

.modal.open {
	pointer-events: all;
	opacity: 1;
	visibility: visible;
}

.modal-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, .85);
	z-index: 1999;
	pointer-events: none;
	opacity: 0;
	transition: opacity .3s;
}

.modal-backdrop.open {
	pointer-events: all;
	opacity: 1;
}

.modal-content {
	position: relative;
	width: 100%;
	max-width: 520px;
	max-height: 90vh;
	overflow-y: auto;
	background: var(--black-3);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 2rem;
}

.modal-close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: rgba(255, 255, 255, .1);
	color: var(--chrome-light);
	border: 1px solid var(--border);
	border-radius: 50%;
	width: 36px;
	height: 36px;
	font-size: 1.3rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background .2s;
}

.modal-close:hover { background: var(--red); }

.modal-title {
	font-family: var(--font-heading);
	font-size: 1.4rem;
	margin-bottom: .35rem;
	padding-right: 2rem;
}

.modal-summary {
	color: var(--text-muted);
	font-size: .9rem;
	margin-bottom: 1.5rem;
}
