/* ══════════════════════════════════════════════════ RESET + TOKENS */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
	--orange: #FF5F00;
	--dark:   #0e0e0e;
	--mid:    #1a1a1a;
	--light:  #f0f0f0;
	--gray:   #888;
}

body {
	background-color: var(--dark);
	color: var(--light);
	font-family: 'Barlow', sans-serif;
	font-weight: 300;
	overflow-x: hidden;
}


/* ══════════════════════════════════════════════════════════ NAV */

nav {
	position: fixed; top: 0; left: 0; right: 0;
	z-index: 100;
	display: flex; align-items: center; justify-content: space-between;
	padding: 1.1rem 2.5rem;
	background: linear-gradient(to bottom, rgba(14,14,14,.97), transparent);
}

.nav-logo img {
	height: 2rem;
	display: block;
}

.nav-right {
	display: flex;
	align-items: center;
	gap: 1.4rem;
}

.nav-lang {
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 700;
	font-size: 1rem;
	letter-spacing: 0.18em;
	color: rgba(255,255,255,.55);
	text-decoration: none;
	transition: color .2s;
}
.nav-lang:hover { color: var(--orange); }

.nav-social-link {
	color: rgba(255,255,255,.5);
	text-decoration: none;
	display: flex;
	align-items: center;
	transition: color .2s;
}
.nav-social-link:hover { color: var(--orange); }

.nav-toggle {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	color: rgba(255,255,255,.7);
}

.nav-toggle-label {
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 700;
	font-size: 1rem;
	letter-spacing: 0.18em;
	transition: color .2s;
}
.nav-toggle:hover .nav-toggle-label { color: var(--orange); }

.nav-toggle-icon { display: flex; flex-direction: column; gap: 4px; }

.nav-toggle-icon span {
	display: block;
	width: 20px;
	height: 2px;
	background: currentColor;
	transition: all .3s;
}
.nav-toggle.open .nav-toggle-icon span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open .nav-toggle-icon span:nth-child(2) { opacity: 0; }
.nav-toggle.open .nav-toggle-icon span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }


/* ══════════════════════════════════════════════ FULLSCREEN MENU */

.nav-menu {
	position: fixed;
	inset: 0;
	background: rgba(10,10,10,.97);
	z-index: 99;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity .3s;
}
.nav-menu.open { opacity: 1; pointer-events: all; }

.nav-menu ul { list-style: none; text-align: center; }
.nav-menu ul li { margin: 1rem 0; }
.nav-menu ul a {
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 900;
	font-size: clamp(2rem, 6vw, 4rem);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255,255,255,.7);
	text-decoration: none;
	transition: color .2s;
}
.nav-menu ul a:hover { color: var(--orange); }

.nav-menu-close {
	position: absolute;
	top: 1.5rem; right: 2.5rem;
	background: none;
	border: none;
	color: rgba(255,255,255,.5);
	font-size: 1.5rem;
	cursor: pointer;
	transition: color .2s;
}
.nav-menu-close:hover { color: var(--orange); }


/* ══════════════════════════════════════════════════════ HERO */

.hero {
	height: 100vh;
	position: relative;
	display: flex;
	align-items: flex-end;
	padding: 6rem 3rem 10rem;
	overflow: hidden;
}

.hero-bg {
	position: absolute; inset: 0;
	background-size: cover;
	background-position: center 30%;
	transform: scale(1.05);
	transition: transform 8s ease;
}
.hero-bg::after {
	content: '';
	position: absolute; inset: 0;
	background: linear-gradient(to top, rgba(14,14,14,1) 0%, rgba(14,14,14,1) 15%, rgba(14,14,14,.4) 50%, transparent 100%);
}
.hero:hover .hero-bg { transform: scale(1); }

.hero-content { position: relative; z-index: 1; max-width: 700px; }

.hero-eyebrow {
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 700;
	font-size: 0.75rem;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--orange);
	margin-bottom: 1rem;
}

.hero h1 {
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 900;
	font-size: clamp(4rem, 10vw, 8rem);
	line-height: 0.9;
	text-transform: uppercase;
	letter-spacing: -0.02em;
	margin-bottom: 1.5rem;
}

.hero h1 em {
	color: var(--orange);
	font-style: normal;
	border-right: 3px solid var(--orange);
	padding-right: 4px;
	animation: blink .7s step-end infinite;
}

@keyframes blink { 50% { border-color: transparent; } }

.hero p {
	font-size: 1rem;
	line-height: 1.7;
	color: rgba(255,255,255,.6);
	max-width: 480px;
	margin-bottom: 2.5rem;
}

.btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn {
	display: inline-block;
	padding: 0.85rem 2.2rem;
	background: var(--orange);
	color: #fff;
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 700;
	font-size: 0.85rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	text-decoration: none;
	border: 1px solid transparent;
	transition: background .2s, transform .2s;
}
.btn:hover { background: #e05000; transform: translateY(-2px); }

.btn-ghost {
	background: transparent;
	border: 1px solid rgba(255,255,255,.25);
	color: rgba(255,255,255,.75);
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); background: transparent; transform: translateY(-2px); }


/* ══════════════════════════════════════════════ PRODUCT SECTIONS */

.product-section { padding: 7rem 3rem; }

.section-title {
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 900;
	font-size: clamp(2.5rem, 6vw, 5rem);
	text-transform: uppercase;
	line-height: 0.95;
	margin-bottom: 1rem;
}

.section-desc {
	color: var(--gray);
	font-size: 0.95rem;
	line-height: 1.75;
	max-width: 560px;
	margin-bottom: 3rem;
}


/* ══════════════════════════════════════════════════ PRODUCT CARDS */

.product-cards {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 1.25rem;
}

.card {
	background: var(--mid);
	border-top: 2px solid var(--orange);
	cursor: pointer;
	transition: transform .25s, box-shadow .25s;
	position: relative;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.5); }

.card.card--soon { border-top-color: #2a2a2a; cursor: default; }
.card.card--soon:hover { transform: none; box-shadow: none; }

.card-img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	display: block;
	background: #111;
}
.card-img.contain { object-fit: contain; padding: 1.5rem; }

.card-body { padding: 1.1rem 1.1rem 1.3rem; }

.card-name {
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 900;
	font-size: 1.35rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 0.3rem;
}

.card-sub { font-size: 0.75rem; color: var(--gray); }

.card-price {
	display: inline-block;
	margin-top: 0.7rem;
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 700;
	font-size: 1rem;
	color: var(--orange);
}

.soon-tag {
	display: inline-block;
	margin-top: 0.7rem;
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 700;
	font-size: 0.65rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #444;
	border: 1px solid #2a2a2a;
	padding: 0.2rem 0.55rem;
}

.card-specs { display: none; }


/* ══════════════════════════════════════════════════════ DIVIDER */

.divider {
	height: 1px;
	background: linear-gradient(to right, transparent, rgba(255,95,0,.3), transparent);
	margin: 0 3rem;
}


/* ══════════════════════════════════════════════════════ MODAL */

.modal-overlay {
	position: fixed; inset: 0;
	background: rgba(0,0,0,.5);
	z-index: 200;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem;
	opacity: 0;
	pointer-events: none;
	transition: opacity .25s;
	backdrop-filter: blur(6px);
}
.modal-overlay.active { opacity: 1; pointer-events: all; }

.modal {
	background: var(--mid);
	max-width: 680px; width: 100%;
	max-height: 90vh; overflow-y: auto;
	position: relative;
	border-top: 3px solid var(--orange);
}

.modal-close {
	position: absolute;
	top: 1rem; right: 1.2rem;
	background: none; border: none;
	color: var(--gray); font-size: 1.4rem;
	cursor: pointer; transition: color .2s; z-index: 1;
}
.modal-close:hover { color: var(--orange); }

.modal-img {
	width: 100%; height: 260px;
	object-fit: cover; display: block;
	background: #111;
}
.modal-img.contain { object-fit: contain; padding: 2rem; }

.modal-body { padding: 1.75rem 2.25rem 2.25rem; }

.modal-name {
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 900; font-size: 2.2rem;
	letter-spacing: 0.08em; text-transform: uppercase;
	margin-bottom: 0.2rem;
}

.modal-category {
	font-size: 0.7rem; letter-spacing: 0.22em;
	text-transform: uppercase; color: var(--orange);
	margin-bottom: 1.5rem;
}

.spec-table { width: 100%; border-collapse: collapse; }
.spec-table tr { border-bottom: 1px solid rgba(255,255,255,.05); }
.spec-table tr:last-child { border-bottom: none; }
.spec-table td { padding: 0.55rem 0.4rem; font-size: 0.85rem; vertical-align: top; line-height: 1.4; }
.spec-table td:first-child {
	color: var(--gray); font-size: 0.68rem;
	text-transform: uppercase; letter-spacing: 0.1em;
	width: 30%;
}
.spec-table td b { color: #fff; font-weight: 500; }

.spec-price td {
	padding-top: 1rem;
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 700; font-size: 1.15rem;
	color: var(--orange);
	border-top: 1px solid rgba(255,95,0,.25);
	border-bottom: none;
}


/* ══════════════════════════════════════════════════ CONTACT */

.contact-section {
	padding: 7rem 3rem;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	align-items: start;
}

.section-label {
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 700;
	font-size: 0.7rem;
	letter-spacing: 0.35em;
	text-transform: uppercase;
	color: var(--orange);
	margin-bottom: 0.6rem;
}

.contact-heading {
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 900;
	font-size: clamp(2.8rem, 6vw, 5.5rem);
	text-transform: uppercase;
	line-height: 0.92;
	margin-bottom: 2.5rem;
}
.contact-heading em { color: var(--orange); font-style: normal; }

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

.contact-item-label {
	font-size: 0.65rem; letter-spacing: 0.25em;
	text-transform: uppercase; color: var(--orange);
	margin-bottom: 0.2rem;
}

.contact-item-value {
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 700; font-size: 1.2rem;
	color: #fff; text-decoration: none;
	display: block; transition: color .2s;
}
a.contact-item-value:hover { color: var(--orange); }

.social-links { display: flex; gap: 0.75rem; margin-top: 0.5rem; }

.social-btn {
	display: flex; align-items: center; justify-content: center;
	width: 2.4rem; height: 2.4rem;
	border: 1px solid #2a2a2a;
	color: var(--gray); text-decoration: none;
	transition: border-color .2s, color .2s;
}
.social-btn:hover { border-color: var(--orange); color: var(--orange); }

.action-links { display: flex; flex-direction: column; gap: 1rem; }
.action-links .section-label { margin-bottom: 1rem; }


/* ══════════════════════════════════════════════════════ FOOTER */

footer {
	border-top: 1px solid #1a1a1a;
	padding: 1.75rem 3rem;
	display: flex; justify-content: space-between;
	align-items: center; flex-wrap: wrap; gap: 0.75rem;
}
footer p { font-size: 0.72rem; color: #3a3a3a; }
footer a { color: #3a3a3a; text-decoration: none; transition: color .2s; }
footer a:hover { color: var(--orange); }


/* ══════════════════════════════════════════════════ ANIMATIONS */

@keyframes fadeUp {
	from { opacity: 0; transform: translateY(28px); }
	to   { opacity: 1; transform: translateY(0); }
}
.hero-content > * { animation: fadeUp .8s ease both; }
.hero-eyebrow { animation-delay: .1s; }
.hero h1      { animation-delay: .25s; }
.hero p       { animation-delay: .4s; }
.btns         { animation-delay: .55s; }


/* ══════════════════════════════════════════════════ RESPONSIVE */

@media (max-width: 900px) {
	nav                { padding: 1rem 1.5rem; }
	.hero              { padding: 5rem 1.5rem; }
	.product-section   { padding: 5rem 1.5rem; }
	.divider           { margin: 0 1.5rem; }
	.contact-section   { grid-template-columns: 1fr; gap: 3.5rem; padding: 5rem 1.5rem; }
	footer             { padding: 1.5rem; flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
	.hero h1           { font-size: 3.5rem; }
	.product-cards     { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
}












.card-link {
    text-decoration: underline;
    text-decoration-color: rgba(255,95,0,.4);
    text-underline-offset: 3px;
    transition: color .2s;
}
.card-link:hover { color: var(--orange); }