/*==============================================================
  BURAK PALET — Site (cinematic warehouse)
  Independent of Multi template / style.css
==============================================================*/

:root {
	--void: #0b0c0e;
	--void-2: #121417;
	--void-3: #1a1d22;
	--mist: #c8ced6;
	--fog: #8b939e;
	--amber: #e8a04a;
	--amber-hot: #f0b45f;
	--white: #f5f6f7;
	--line: rgba(245, 246, 247, 0.12);
	--font-display: "Anton", sans-serif;
	--font-body: "Manrope", sans-serif;
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
	--nav-h: 72px;
	--pad: clamp(1.25rem, 4vw, 4.5rem);
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font-body);
	background: var(--void);
	color: var(--mist);
	line-height: 1.6;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

body.nav-open {
	overflow: hidden;
}

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

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

h1,
h2,
h3 {
	font-family: var(--font-display);
	font-weight: 400;
	line-height: 0.95;
	letter-spacing: 0.01em;
	color: var(--white);
	margin: 0;
}

.eyebrow {
	font-family: var(--font-body);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--amber);
	margin: 0 0 1rem;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.95rem 1.6rem;
	font-family: var(--font-body);
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	border-radius: 0;
	border: 1px solid transparent;
	transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease),
		border-color 0.3s var(--ease);
}

.btn--amber {
	background: var(--amber);
	color: var(--void);
}

.btn--amber:hover {
	background: var(--amber-hot);
	transform: translateY(-2px);
}

.btn--ghost {
	background: transparent;
	color: var(--white);
	border-color: rgba(245, 246, 247, 0.35);
}

.btn--ghost:hover {
	border-color: var(--white);
	background: rgba(245, 246, 247, 0.06);
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-top: 1.75rem;
	font-weight: 700;
	font-size: 0.9rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--amber);
	transition: gap 0.3s var(--ease);
}

.text-link:hover {
	gap: 0.85rem;
	color: var(--amber-hot);
}

.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-in {
	opacity: 1;
	transform: none;
}

/*--------------------------------------------------------------
  Nav
--------------------------------------------------------------*/
.site-nav {
	position: fixed;
	inset: 0 0 auto;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem var(--pad);
	height: var(--nav-h);
	transition: background 0.35s var(--ease), backdrop-filter 0.35s var(--ease), border-color 0.35s;
	border-bottom: 1px solid transparent;
}

.site-nav.is-scrolled {
	background: rgba(11, 12, 14, 0.82);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom-color: var(--line);
}

.site-nav__logo img {
	height: 48px;
	width: auto;
}

.site-nav__menu {
	display: flex;
	align-items: center;
	gap: 0.15rem;
}

.site-nav__menu a {
	padding: 0.55rem 0.9rem;
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: rgba(245, 246, 247, 0.78);
	transition: color 0.25s;
}

.site-nav__menu a:hover,
.site-nav__menu a.is-active {
	color: var(--white);
}

.site-nav__wa {
	margin-left: 0.6rem;
	background: var(--amber);
	color: var(--void) !important;
	font-weight: 800 !important;
	letter-spacing: 0.08em;
	padding: 0.65rem 1.1rem !important;
}

.site-nav__wa:hover {
	background: var(--amber-hot);
	color: var(--void) !important;
}

.site-nav__toggle {
	display: none;
	width: 44px;
	height: 44px;
	border: 0;
	background: transparent;
	cursor: pointer;
	padding: 0;
	position: relative;
	z-index: 1001;
}

.site-nav__toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--white);
	margin: 6px auto;
	transition: transform 0.3s var(--ease), opacity 0.3s;
}

.site-nav__toggle.is-open span:first-child {
	transform: translateY(4px) rotate(45deg);
}

.site-nav__toggle.is-open span:last-child {
	transform: translateY(-4px) rotate(-45deg);
}

@media (max-width: 900px) {
	.site-nav__toggle {
		display: block;
	}

	.site-nav__menu {
		position: fixed;
		inset: 0;
		flex-direction: column;
		justify-content: center;
		gap: 0.5rem;
		background: rgba(11, 12, 14, 0.97);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: opacity 0.35s var(--ease), visibility 0.35s;
	}

	.site-nav__menu.is-open {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	.site-nav__menu a {
		font-size: 1.35rem;
		padding: 0.85rem 1.25rem;
	}

	.site-nav__wa {
		margin: 1rem 0 0;
	}
}

/*--------------------------------------------------------------
  Hero
--------------------------------------------------------------*/
.hero {
	position: relative;
	min-height: 100vh;
	min-height: 100svh;
	display: flex;
	align-items: flex-end;
	padding: calc(var(--nav-h) + 2rem) var(--pad) 5.5rem;
	overflow: hidden;
}

.hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.hero__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.08);
	animation: kenburns 14s var(--ease) forwards;
}

@keyframes kenburns {
	to {
		transform: scale(1);
	}
}

.hero__veil {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(105deg, rgba(11, 12, 14, 0.92) 0%, rgba(11, 12, 14, 0.55) 48%, rgba(11, 12, 14, 0.25) 100%),
		radial-gradient(ellipse at 70% 85%, rgba(232, 160, 74, 0.18), transparent 50%);
}

.hero__content {
	position: relative;
	z-index: 1;
	max-width: 920px;
	animation: hero-rise 1s var(--ease) 0.15s both;
}

@keyframes hero-rise {
	from {
		opacity: 0;
		transform: translateY(36px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

.hero__brand {
	font-family: var(--font-display);
	font-size: clamp(4rem, 14vw, 9.5rem);
	line-height: 0.86;
	letter-spacing: 0.02em;
	color: var(--white);
	margin: 0 0 1.25rem;
	text-shadow: 0 12px 50px rgba(0, 0, 0, 0.45);
}

.hero__title {
	font-family: var(--font-body);
	font-size: clamp(1.15rem, 2.4vw, 1.65rem);
	font-weight: 600;
	line-height: 1.35;
	letter-spacing: -0.01em;
	max-width: 18ch;
	color: var(--white);
}

.hero__lead {
	margin: 1rem 0 0;
	font-size: 1.05rem;
	color: rgba(200, 206, 214, 0.85);
	max-width: 32ch;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 2rem;
}

.hero__scroll {
	position: absolute;
	bottom: 1.75rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	width: 22px;
	height: 36px;
	border: 1.5px solid rgba(245, 246, 247, 0.4);
	border-radius: 20px;
	display: flex;
	justify-content: center;
	padding-top: 8px;
}

.hero__scroll span {
	width: 3px;
	height: 8px;
	background: var(--amber);
	border-radius: 2px;
	animation: scroll-dot 1.6s ease-in-out infinite;
}

@keyframes scroll-dot {
	0% {
		opacity: 1;
		transform: translateY(0);
	}
	100% {
		opacity: 0;
		transform: translateY(12px);
	}
}

@media (max-width: 640px) {
	.hero__scroll {
		display: none;
	}
}

/*--------------------------------------------------------------
  Marquee
--------------------------------------------------------------*/
.marquee {
	background: var(--amber);
	color: var(--void);
	overflow: hidden;
	padding: 0.95rem 0;
	border-block: 1px solid rgba(11, 12, 14, 0.12);
}

.marquee__track {
	display: flex;
	width: max-content;
	gap: 1.5rem;
	align-items: center;
	font-family: var(--font-display);
	font-size: clamp(1.1rem, 2.2vw, 1.55rem);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	animation: marquee 32s linear infinite;
	will-change: transform;
}

.marquee__track span[aria-hidden="true"] {
	opacity: 0.45;
}

@keyframes marquee {
	to {
		transform: translateX(-50%);
	}
}

@media (prefers-reduced-motion: reduce) {
	.marquee__track {
		animation: none;
	}
	.hero__img {
		animation: none;
		transform: none;
	}
}

/*--------------------------------------------------------------
  Story
--------------------------------------------------------------*/
.story {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 85vh;
	background: var(--void);
}

.story__copy {
	padding: clamp(3rem, 8vw, 6.5rem) var(--pad);
	display: flex;
	flex-direction: column;
	justify-content: center;
	border-right: 1px solid var(--line);
}

.story__copy h2 {
	font-size: clamp(2.4rem, 5.5vw, 4.4rem);
	margin-bottom: 1.5rem;
	max-width: 10ch;
}

.story__copy > p {
	font-size: 1.05rem;
	color: var(--fog);
	max-width: 42ch;
	margin: 0 0 1.75rem;
}

.story__values {
	list-style: none;
	padding: 0;
	margin: 0;
	border-top: 1px solid var(--line);
}

.story__values li {
	padding: 0.95rem 0;
	border-bottom: 1px solid var(--line);
	font-size: 0.98rem;
	color: var(--mist);
}

.story__values strong {
	color: var(--white);
	font-weight: 700;
}

.story__visual {
	position: relative;
	min-height: 420px;
	overflow: hidden;
}

.story__visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	inset: 0;
	transition: transform 1.2s var(--ease);
}

.story__visual.is-in img,
.story:hover .story__visual img {
	transform: scale(1.04);
}

@media (max-width: 900px) {
	.story {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.story__copy {
		border-right: 0;
		border-bottom: 1px solid var(--line);
		order: 2;
	}

	.story__visual {
		order: 1;
		min-height: 52vw;
		max-height: 420px;
	}

	.story__visual img {
		position: relative;
		height: 52vw;
		max-height: 420px;
	}
}

/*--------------------------------------------------------------
  Stats
--------------------------------------------------------------*/
.stats {
	position: relative;
	min-height: 70vh;
	display: flex;
	align-items: center;
	padding: 5rem var(--pad);
	overflow: hidden;
}

.stats__media {
	position: absolute;
	inset: 0;
}

.stats__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.stats__veil {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(11, 12, 14, 0.72), rgba(11, 12, 14, 0.88));
}

.stats__grid {
	position: relative;
	z-index: 1;
	width: 100%;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.stat {
	text-align: center;
	padding: 1rem;
}

.stat__num {
	display: block;
	font-family: var(--font-display);
	font-size: clamp(3.5rem, 10vw, 7.5rem);
	line-height: 0.9;
	color: var(--white);
	letter-spacing: 0.02em;
}

.stat__label {
	display: block;
	margin-top: 1rem;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--amber);
}

@media (max-width: 700px) {
	.stats {
		min-height: 0;
		padding: 4rem var(--pad);
	}

	.stats__grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
}

/*--------------------------------------------------------------
  Services
--------------------------------------------------------------*/
.services {
	background: var(--void-2);
	padding: 0 0 0;
}

.services__head {
	padding: clamp(3rem, 7vw, 5.5rem) var(--pad) 2rem;
}

.services__head h2 {
	font-size: clamp(2.6rem, 6vw, 5rem);
}

.services__panels {
	display: flex;
	flex-direction: column;
}

.service-panel {
	position: relative;
	display: grid;
	grid-template-columns: 5rem 1fr auto;
	align-items: center;
	gap: 1.5rem;
	padding: clamp(2rem, 4vw, 3.25rem) var(--pad);
	border-top: 1px solid var(--line);
	overflow: hidden;
	isolation: isolate;
	min-height: 160px;
	transition: color 0.35s var(--ease);
}

.service-panel::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: var(--panel-img);
	background-size: cover;
	background-position: center;
	opacity: 0;
	transform: scale(1.08);
	transition: opacity 0.5s var(--ease), transform 0.8s var(--ease);
	z-index: -2;
}

.service-panel::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(11, 12, 14, 0.92), rgba(11, 12, 14, 0.7));
	opacity: 0;
	transition: opacity 0.45s var(--ease);
	z-index: -1;
}

.service-panel:hover::before,
.service-panel:focus-visible::before {
	opacity: 1;
	transform: scale(1);
}

.service-panel:hover::after,
.service-panel:focus-visible::after {
	opacity: 1;
}

.service-panel:last-child {
	border-bottom: 1px solid var(--line);
}

.service-panel__num {
	font-family: var(--font-display);
	font-size: 2rem;
	color: var(--amber);
	letter-spacing: 0.04em;
}

.service-panel__body h3 {
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	margin-bottom: 0.45rem;
}

.service-panel__body p {
	margin: 0;
	max-width: 42ch;
	color: var(--fog);
	font-size: 0.98rem;
	transition: color 0.35s;
}

.service-panel:hover .service-panel__body p {
	color: rgba(245, 246, 247, 0.85);
}

.service-panel__go {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--line);
	font-size: 1.25rem;
	color: var(--white);
	transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease);
}

.service-panel:hover .service-panel__go {
	background: var(--amber);
	border-color: var(--amber);
	color: var(--void);
	transform: rotate(8deg);
}

@media (max-width: 640px) {
	.service-panel {
		grid-template-columns: 3.5rem 1fr;
		grid-template-rows: auto auto;
	}

	.service-panel__go {
		display: none;
	}
}

/*--------------------------------------------------------------
  Founder
--------------------------------------------------------------*/
.founder {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 90vh;
	background: var(--void);
}

.founder__photo {
	position: relative;
	min-height: 480px;
	overflow: hidden;
	background: var(--void-3);
}

.founder__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	position: absolute;
	inset: 0;
}

.founder__bio {
	padding: clamp(3rem, 8vw, 6rem) var(--pad);
	display: flex;
	flex-direction: column;
	justify-content: center;
	border-left: 1px solid var(--line);
}

.founder__bio h2 {
	font-size: clamp(3rem, 7vw, 5.5rem);
	margin-bottom: 0.5rem;
}

.founder__role {
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--amber);
	margin: 0 0 1.75rem;
}

.founder__bio p:not(.eyebrow):not(.founder__role) {
	color: var(--fog);
	margin: 0 0 1rem;
	max-width: 44ch;
	font-size: 1.02rem;
}

@media (max-width: 900px) {
	.founder {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.founder__photo {
		min-height: 70vw;
		max-height: 520px;
	}

	.founder__photo img {
		position: relative;
		height: 70vw;
		max-height: 520px;
	}

	.founder__bio {
		border-left: 0;
		border-top: 1px solid var(--line);
	}
}

/*--------------------------------------------------------------
  Contact band
--------------------------------------------------------------*/
.contact-band {
	background: var(--void-3);
	padding: clamp(4rem, 9vw, 7rem) var(--pad);
	border-top: 1px solid var(--line);
}

.contact-band__inner {
	width: 100%;
	max-width: none;
}

.contact-band h2 {
	font-size: clamp(3rem, 8vw, 6rem);
	margin-bottom: 0.75rem;
}

.contact-band__lead {
	color: var(--fog);
	font-size: 1.1rem;
	margin: 0 0 2.5rem;
	max-width: 36ch;
}

.contact-band__links {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: var(--line);
	border: 1px solid var(--line);
}

.contact-band__links a {
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
	padding: 1.6rem 1.4rem;
	background: var(--void-3);
	transition: background 0.3s var(--ease);
}

.contact-band__links a:hover {
	background: var(--void-2);
}

.contact-band__links span {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--amber);
}

.contact-band__links strong {
	font-family: var(--font-body);
	font-size: clamp(1rem, 2vw, 1.25rem);
	font-weight: 700;
	color: var(--white);
}

@media (max-width: 720px) {
	.contact-band__links {
		grid-template-columns: 1fr;
	}
}

/*--------------------------------------------------------------
  Footer
--------------------------------------------------------------*/
.site-footer {
	background: var(--void);
	padding: 3rem var(--pad) 2rem;
	border-top: 1px solid var(--line);
}

.site-footer__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	flex-wrap: wrap;
	padding-bottom: 2rem;
	border-bottom: 1px solid var(--line);
}

.site-footer__brand img {
	height: 64px;
	width: auto;
}

.site-footer__nav {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem 1.25rem;
}

.site-footer__nav a {
	font-size: 0.88rem;
	font-weight: 600;
	color: var(--fog);
	transition: color 0.25s;
}

.site-footer__nav a:hover {
	color: var(--amber);
}

.site-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1rem;
	padding-top: 1.5rem;
	font-size: 0.85rem;
	color: var(--fog);
}

.site-footer__bottom p {
	margin: 0;
}

.site-footer__credit {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	flex-wrap: wrap;
}

.site-footer__credit img {
	height: 28px;
	width: auto;
	display: inline-block;
	vertical-align: middle;
}

@media (max-width: 700px) {
	.site-footer {
		padding: 2.5rem 1.25rem 5.5rem;
		text-align: center;
	}

	.site-footer__top {
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 1.5rem;
		padding-bottom: 1.75rem;
	}

	.site-footer__brand img {
		height: 56px;
		margin-inline: auto;
	}

	.site-footer__nav {
		width: 100%;
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 0.75rem 0.5rem;
		justify-items: center;
	}

	.site-footer__nav a {
		display: block;
		padding: 0.55rem 0.75rem;
		font-size: 0.9rem;
		width: 100%;
		text-align: center;
		border: 1px solid var(--line);
		color: var(--mist);
	}

	.site-footer__bottom {
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 1.15rem;
		padding-top: 1.5rem;
		text-align: center;
	}

	.site-footer__credit {
		width: 100%;
		justify-content: center;
		flex-direction: column;
		gap: 0.45rem;
		line-height: 1.4;
	}

	.site-footer__credit img {
		height: 32px;
		margin-inline: auto;
	}
}

/*--------------------------------------------------------------
  WhatsApp float
--------------------------------------------------------------*/
.wa-float {
	position: fixed;
	left: 1.25rem;
	bottom: 1.25rem;
	z-index: 999;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: #25d366;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.7rem;
	box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
	transition: transform 0.3s var(--ease);
	animation: wa-pulse 2.4s ease-in-out infinite;
}

.wa-float:hover {
	transform: scale(1.08);
	color: #fff;
}

@keyframes wa-pulse {
	0%,
	100% {
		box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35);
	}
	50% {
		box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5), 0 0 0 12px rgba(37, 211, 102, 0.12);
	}
}

@media (prefers-reduced-motion: reduce) {
	.reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
	.wa-float,
	.hero__scroll span {
		animation: none;
	}
}

/*==============================================================
  Inner pages
==============================================================*/

.page-hero {
	position: relative;
	min-height: 52vh;
	display: flex;
	align-items: flex-end;
	padding: calc(var(--nav-h) + 2rem) var(--pad) 3.5rem;
	overflow: hidden;
}

.page-hero__media {
	position: absolute;
	inset: 0;
}

.page-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.page-hero__veil {
	position: absolute;
	inset: 0;
	background: linear-gradient(105deg, rgba(11, 12, 14, 0.92) 0%, rgba(11, 12, 14, 0.55) 55%, rgba(11, 12, 14, 0.35) 100%);
}

.page-hero__content {
	position: relative;
	z-index: 1;
	max-width: 820px;
}

.page-hero__crumb {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	align-items: center;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--fog);
	margin-bottom: 1rem;
}

.page-hero__crumb a {
	color: var(--amber);
}

.page-hero__crumb a:hover {
	color: var(--amber-hot);
}

.page-hero h1 {
	font-size: clamp(3rem, 9vw, 6.5rem);
}

.page-hero p {
	margin: 1rem 0 0;
	max-width: 42ch;
	color: rgba(200, 206, 214, 0.88);
	font-size: 1.05rem;
}

.section-pad {
	padding: clamp(3.5rem, 8vw, 6.5rem) var(--pad);
}

.section-head {
	max-width: 720px;
	margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.section-head h2 {
	font-size: clamp(2.4rem, 5.5vw, 4.2rem);
}

.section-head p {
	margin: 1rem 0 0;
	color: var(--fog);
	max-width: 48ch;
}

/* Mission / split copy */
.mission-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 1px;
	background: var(--line);
	border: 1px solid var(--line);
}

.mission-block {
	background: var(--void);
	padding: clamp(1.75rem, 4vw, 3rem);
}

.mission-block--alt {
	background: var(--void-2);
}

.mission-block h3 {
	font-size: clamp(1.8rem, 3vw, 2.6rem);
	margin-bottom: 0.85rem;
}

.mission-block p {
	margin: 0;
	color: var(--fog);
}

@media (max-width: 800px) {
	.mission-grid {
		grid-template-columns: 1fr;
	}
}

/* Timeline */
.timeline {
	position: relative;
	max-width: 900px;
	margin: 0 auto;
	padding-left: 1.5rem;
	border-left: 2px solid var(--line);
}

.timeline__item {
	position: relative;
	padding: 0 0 2.5rem 1.75rem;
}

.timeline__item:last-child {
	padding-bottom: 0;
}

.timeline__item::before {
	content: "";
	position: absolute;
	left: -1.5rem;
	top: 0.35rem;
	width: 12px;
	height: 12px;
	background: var(--amber);
	transform: translateX(-55%) rotate(45deg);
}

.timeline__year {
	font-family: var(--font-display);
	font-size: 1.5rem;
	color: var(--amber);
	letter-spacing: 0.04em;
	display: block;
	margin-bottom: 0.35rem;
}

.timeline__item h3 {
	font-size: 1.55rem;
	margin-bottom: 0.4rem;
}

.timeline__item p {
	margin: 0;
	color: var(--fog);
	max-width: 52ch;
}

/* Depots */
.depot-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: var(--line);
	border: 1px solid var(--line);
}

.depot {
	background: var(--void-2);
	padding: clamp(1.5rem, 3vw, 2.25rem);
	transition: background 0.3s;
}

.depot:hover {
	background: var(--void-3);
}

.depot__mark {
	font-family: var(--font-display);
	font-size: 2.8rem;
	color: var(--amber);
	line-height: 1;
	margin-bottom: 0.75rem;
}

.depot h3 {
	font-size: 1.8rem;
	margin-bottom: 0.5rem;
}

.depot p {
	margin: 0;
	color: var(--fog);
	font-size: 0.95rem;
}

.depot__tag {
	display: inline-block;
	margin-top: 1rem;
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--void);
	background: var(--amber);
	padding: 0.35rem 0.65rem;
}

@media (max-width: 800px) {
	.depot-grid {
		grid-template-columns: 1fr;
	}
}

/* Sectors */
.sector-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1px;
	background: var(--line);
	border: 1px solid var(--line);
}

.sector {
	background: var(--void);
	padding: 1.75rem 1.25rem;
	text-align: center;
	transition: background 0.3s;
}

.sector:hover {
	background: var(--void-2);
}

.sector i {
	font-size: 1.75rem;
	color: var(--amber);
	display: block;
	margin-bottom: 0.85rem;
}

.sector strong {
	display: block;
	font-family: var(--font-display);
	font-size: 1.35rem;
	color: var(--white);
	font-weight: 400;
	letter-spacing: 0.02em;
}

.sector span {
	display: block;
	margin-top: 0.4rem;
	font-size: 0.85rem;
	color: var(--fog);
}

@media (max-width: 900px) {
	.sector-list {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 480px) {
	.sector-list {
		grid-template-columns: 1fr;
	}
}

/* Service deep */
.service-deep {
	border-top: 1px solid var(--line);
}

.service-deep__row {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	min-height: 420px;
	border-bottom: 1px solid var(--line);
}

.service-deep__row--flip .service-deep__copy {
	order: 2;
}

.service-deep__row--flip .service-deep__visual {
	order: 1;
}

.service-deep__visual {
	position: relative;
	min-height: 320px;
	overflow: hidden;
}

.service-deep__visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	inset: 0;
}

.service-deep__copy {
	padding: clamp(2rem, 5vw, 4rem) var(--pad);
	display: flex;
	flex-direction: column;
	justify-content: center;
	background: var(--void);
}

.service-deep__copy .num {
	font-family: var(--font-display);
	font-size: 2rem;
	color: var(--amber);
	margin-bottom: 0.75rem;
}

.service-deep__copy h3 {
	font-size: clamp(2rem, 4vw, 3.2rem);
	margin-bottom: 1rem;
}

.service-deep__copy p {
	margin: 0 0 1rem;
	color: var(--fog);
	max-width: 46ch;
}

.service-deep__copy ul {
	list-style: none;
	padding: 0;
	margin: 0.5rem 0 0;
}

.service-deep__copy li {
	padding: 0.55rem 0;
	border-top: 1px solid var(--line);
	color: var(--mist);
	font-size: 0.95rem;
}

.service-deep__copy li:last-child {
	border-bottom: 1px solid var(--line);
}

.service-deep__copy li::before {
	content: "▸";
	color: var(--amber);
	margin-right: 0.6rem;
}

@media (max-width: 900px) {
	.service-deep__row,
	.service-deep__row--flip {
		grid-template-columns: 1fr;
	}

	.service-deep__row--flip .service-deep__copy,
	.service-deep__row--flip .service-deep__visual {
		order: initial;
	}

	.service-deep__visual {
		min-height: 48vw;
		max-height: 360px;
	}

	.service-deep__visual img {
		position: relative;
		height: 48vw;
		max-height: 360px;
	}
}

/* Pallet types */
.pallet-types {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1px;
	background: var(--line);
	border: 1px solid var(--line);
}

.pallet-type {
	background: var(--void-2);
	padding: clamp(1.5rem, 3vw, 2.5rem);
	transition: background 0.3s;
}

.pallet-type:hover {
	background: var(--void-3);
}

.pallet-type__size {
	font-family: var(--font-display);
	font-size: clamp(2rem, 4vw, 3rem);
	color: var(--amber);
	line-height: 1;
	margin-bottom: 0.65rem;
}

.pallet-type h3 {
	font-size: 1.7rem;
	margin-bottom: 0.55rem;
}

.pallet-type p {
	margin: 0;
	color: var(--fog);
	font-size: 0.95rem;
}

.pallet-type__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 1.15rem;
}

.pallet-type__meta span {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	border: 1px solid var(--line);
	padding: 0.35rem 0.6rem;
	color: var(--mist);
}

@media (max-width: 700px) {
	.pallet-types {
		grid-template-columns: 1fr;
	}
}

/* Process */
.process {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	counter-reset: step;
}

.process__step {
	padding: 1.75rem 1.25rem;
	border: 1px solid var(--line);
	border-left: 0;
	position: relative;
}

.process__step:first-child {
	border-left: 1px solid var(--line);
}

.process__step::before {
	counter-increment: step;
	content: "0" counter(step);
	font-family: var(--font-display);
	font-size: 2.2rem;
	color: var(--amber);
	display: block;
	margin-bottom: 0.85rem;
	line-height: 1;
}

.process__step h3 {
	font-size: 1.35rem;
	margin-bottom: 0.45rem;
}

.process__step p {
	margin: 0;
	font-size: 0.9rem;
	color: var(--fog);
}

@media (max-width: 900px) {
	.process {
		grid-template-columns: 1fr 1fr;
	}

	.process__step:nth-child(odd) {
		border-left: 1px solid var(--line);
	}
}

@media (max-width: 520px) {
	.process {
		grid-template-columns: 1fr;
	}

	.process__step {
		border-left: 1px solid var(--line);
	}
}

/* Spec table */
.spec-wrap {
	overflow-x: auto;
	border: 1px solid var(--line);
}

.spec-table {
	width: 100%;
	border-collapse: collapse;
	min-width: 640px;
}

.spec-table th,
.spec-table td {
	padding: 1rem 1.15rem;
	text-align: left;
	border-bottom: 1px solid var(--line);
	font-size: 0.92rem;
}

.spec-table th {
	font-family: var(--font-body);
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-size: 0.72rem;
	color: var(--amber);
	background: var(--void-2);
}

.spec-table td {
	color: var(--mist);
}

.spec-table tr:last-child td {
	border-bottom: 0;
}

.spec-table tbody tr:hover td {
	background: rgba(232, 160, 74, 0.05);
}

/* FAQ */
.faq-list {
	max-width: 860px;
	border-top: 1px solid var(--line);
}

.faq-item {
	border-bottom: 1px solid var(--line);
}

.faq-item summary {
	list-style: none;
	cursor: pointer;
	padding: 1.35rem 2.5rem 1.35rem 0;
	font-family: var(--font-display);
	font-size: 1.35rem;
	color: var(--white);
	position: relative;
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item summary::after {
	content: "+";
	position: absolute;
	right: 0;
	top: 1.25rem;
	color: var(--amber);
	font-family: var(--font-body);
	font-weight: 700;
	font-size: 1.4rem;
	line-height: 1;
}

.faq-item[open] summary::after {
	content: "−";
}

.faq-item p {
	margin: 0 0 1.35rem;
	color: var(--fog);
	max-width: 58ch;
	padding-right: 2rem;
}

/* Gallery */
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.75rem;
}

.gallery-item {
	position: relative;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	background: var(--void-3);
	cursor: zoom-in;
	border: 0;
	padding: 0;
	display: block;
	width: 100%;
	color: inherit;
	font: inherit;
	text-align: left;
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s var(--ease);
}

.gallery-item:hover img {
	transform: scale(1.05);
}

.gallery-item.is-hidden {
	display: none;
}

@media (max-width: 900px) {
	.gallery-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 560px) {
	.gallery-grid {
		grid-template-columns: 1fr;
	}
}

/* Home gallery preview */
.gallery-preview {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.65rem;
}

.gallery-preview a {
	display: block;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	background: var(--void-3);
}

.gallery-preview img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s var(--ease);
}

.gallery-preview a:hover img {
	transform: scale(1.05);
}

@media (max-width: 700px) {
	.gallery-preview {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Lightbox */
.lightbox {
	position: fixed;
	inset: 0;
	z-index: 2000;
	background: rgba(11, 12, 14, 0.94);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem;
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
}

.lightbox.is-open {
	opacity: 1;
	visibility: visible;
}

.lightbox img {
	max-width: min(1100px, 100%);
	max-height: 85vh;
	object-fit: contain;
}

.lightbox__close {
	position: absolute;
	top: 1.25rem;
	right: 1.25rem;
	width: 48px;
	height: 48px;
	border: 1px solid var(--line);
	background: transparent;
	color: var(--white);
	font-size: 1.5rem;
	cursor: pointer;
}

/* Contact page */
.contact-layout {
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: start;
}

.contact-channels {
	display: flex;
	flex-direction: column;
	gap: 1px;
	background: var(--line);
	border: 1px solid var(--line);
}

.contact-channels a {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	padding: 1.4rem 1.3rem;
	background: var(--void-2);
	transition: background 0.3s;
}

.contact-channels a:hover {
	background: var(--void-3);
}

.contact-channels span {
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--amber);
}

.contact-channels strong {
	font-size: 1.15rem;
	color: var(--white);
}

.hours {
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--line);
}

.hours h3 {
	font-size: 1.4rem;
	margin-bottom: 0.75rem;
}

.hours p {
	margin: 0.25rem 0;
	color: var(--fog);
	font-size: 0.95rem;
}

.contact-form {
	display: grid;
	gap: 1rem;
	background: var(--void-2);
	border: 1px solid var(--line);
	padding: clamp(1.5rem, 3vw, 2.25rem);
}

.contact-form label {
	display: grid;
	gap: 0.45rem;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--fog);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
	width: 100%;
	font-family: var(--font-body);
	font-size: 1rem;
	font-weight: 500;
	color: var(--white);
	background: var(--void);
	border: 1px solid var(--line);
	padding: 0.9rem 1rem;
	outline: none;
	transition: border-color 0.25s;
	letter-spacing: normal;
	text-transform: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
	border-color: var(--amber);
}

.contact-form textarea {
	min-height: 140px;
	resize: vertical;
}

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

.contact-form button {
	justify-self: start;
	margin-top: 0.25rem;
}

@media (max-width: 900px) {
	.contact-layout {
		grid-template-columns: 1fr;
	}

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

/* CTA strip */
.cta-strip {
	position: relative;
	padding: clamp(4rem, 9vw, 6.5rem) var(--pad);
	overflow: hidden;
	text-align: center;
}

.cta-strip__media {
	position: absolute;
	inset: 0;
}

.cta-strip__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cta-strip__veil {
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, rgba(11, 12, 14, 0.92), rgba(11, 12, 14, 0.78));
}

.cta-strip__inner {
	position: relative;
	z-index: 1;
	max-width: 700px;
	margin: 0 auto;
}

.cta-strip h2 {
	font-size: clamp(2.4rem, 6vw, 4.2rem);
	margin-bottom: 1rem;
}

.cta-strip p {
	color: rgba(200, 206, 214, 0.85);
	margin: 0 0 1.75rem;
}

.cta-strip__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: center;
}

/* Values row (about) */
.values-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: var(--line);
	border: 1px solid var(--line);
}

.value-cell {
	background: var(--void);
	padding: clamp(1.5rem, 3vw, 2.5rem);
}

.value-cell h3 {
	font-size: 1.8rem;
	margin-bottom: 0.65rem;
}

.value-cell p {
	margin: 0;
	color: var(--fog);
}

@media (max-width: 700px) {
	.values-row {
		grid-template-columns: 1fr;
	}
}
