:root {
	--ink: #161716;
	--ink-soft: #20211f;
	--paper: #f4f1e9;
	--muted: #9a9b95;
	--gold: #c7a75c;
	--gold-light: #dfc477;
	--line: rgba(244, 241, 233, .13);
	--content: 1140px;
}

* { box-sizing: border-box }

html { scroll-behavior: smooth }

body {
	margin: 0;
	background: var(--ink);
	color: var(--paper);
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	overflow-x: hidden;
}

a { color: inherit; text-decoration: none }
img { display: block; max-width: 100% }

.container {
	width: min(calc(100% - 48px), var(--content));
	margin-inline: auto;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}

/* Ticker */
.ticker {
	height: 27px;
	overflow: hidden;
	border-bottom: 1px solid rgba(255, 255, 255, .05);
	background: #101110;
	color: #777872;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 1.6px;
	text-transform: uppercase;
	white-space: nowrap;
}

.ticker__track {
	display: flex;
	align-items: center;
	width: max-content;
	height: 100%;
	transform: translate3d(50vw, 0, 0);
	animation: ticker 32s linear infinite;
}

.ticker__group {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	gap: 18px;
	padding-right: 18px;
}

.ticker i { width: 3px; height: 3px; background: var(--gold); border-radius: 50% }

@keyframes ticker {
	from { transform: translate3d(50vw, 0, 0) }
	to { transform: translate3d(calc(50vw - 50%), 0, 0) }
}

/* Header */
.site-header {
	position: absolute;
	z-index: 10;
	top: 27px;
	left: 0;
	width: 100%;
	border-bottom: 1px solid rgba(255, 255, 255, .07);
	transition: background .25s, top .25s;
}

.site-header.is-scrolled {
	position: fixed;
	top: 0;
	background: rgba(15, 16, 15, .94);
	backdrop-filter: blur(10px);
}

.header-inner { height: 76px; display: flex; align-items: center; gap: 32px }

.brand { display: flex; align-items: center; gap: 10px }
.brand img { width: auto; height: 40px; object-fit: contain }
.custom-logo { max-height: 42px; width: auto }

.primary-nav { margin-left: auto }
.primary-nav ul { display: flex; gap: 32px; padding: 0; margin: 0; list-style: none }

.primary-nav a,
.header-cta { font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase }

.primary-nav a { color: #d4d3cc; transition: color .2s }
.primary-nav a:hover { color: var(--gold) }

.header-cta,
.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 43px;
	padding: 0 20px;
	text-transform: uppercase;
	font-size: 10px;
	letter-spacing: 1.3px;
	font-weight: 800;
	transition: background .2s, color .2s, border-color .2s;
}

.header-cta,
.button--gold { background: var(--gold); color: #191914 }

.header-cta:hover,
.button--gold:hover { background: var(--gold-light) }

.menu-toggle { display: none }

/* Hero */
.hero {
	min-height: calc(100vh - 27px);
	position: relative;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.hero__slides,
.hero__slide,
.hero__shade { position: absolute; inset: 0 }

.hero__slides { background: #111210 }

.hero__slide {
	opacity: 0;
	background-position: center;
	background-size: cover;
	filter: saturate(.65);
	transition: opacity 1.1s ease;
}

.hero__slide.is-active { opacity: 1 }

.hero__shade {
	background: linear-gradient(90deg, rgba(12, 13, 12, .9) 0%, rgba(12, 13, 12, .73) 40%, rgba(12, 13, 12, .32) 100%);
}

.hero__content { position: relative; z-index: 1; padding-top: 68px }

.eyebrow {
	margin: 0 0 13px;
	color: var(--gold);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.hero h1, h2, h3 { margin-top: 0; text-transform: uppercase }

.hero h1 {
	max-width: 700px;
	margin-bottom: 15px;
	font-size: clamp(43px, 5.1vw, 76px);
	line-height: .98;
	letter-spacing: -2.7px;
}

.hero h1 span { color: var(--gold) }
.hero__copy { max-width: 390px; margin: 0 0 26px; color: #d1d0ca; font-size: 14px }
.hero__actions { display: flex; flex-wrap: wrap; gap: 10px }

.button--outline { border: 1px solid rgba(255, 255, 255, .5); color: var(--paper) }
.button--outline:hover { border-color: var(--gold); color: var(--gold) }

.hero__metrics { display: flex; gap: 10px; margin-top: 42px }
.hero__metrics div { min-width: 120px; padding: 9px 10px; border: 1px solid rgba(255, 255, 255, .2) }
.hero__metrics strong { display: block; color: var(--gold); font-size: 20px; line-height: 1 }
.hero__metrics span { font-size: 8px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase }

.hero__dots {
	position: absolute;
	z-index: 2;
	left: 50%;
	bottom: 28px;
	display: flex;
	gap: 8px;
	transform: translateX(-50%);
}

.hero__dots button {
	width: 22px;
	height: 12px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.hero__dots button:before {
	content: "";
	display: block;
	width: 100%;
	height: 2px;
	background: rgba(255, 255, 255, .42);
	transition: background .25s;
}

.hero__dots button.is-active:before { background: var(--gold) }

.hero__scroll {
	position: absolute;
	right: 24px;
	bottom: 30px;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: 9px;
	transform: rotate(-90deg);
	transform-origin: right center;
	color: #cbc9c0;
	font-size: 8px;
	font-weight: 700;
	letter-spacing: 1.2px;
	text-transform: uppercase;
}

.hero__scroll span { display: block; width: 31px; height: 1px; background: var(--gold) }

/* Sections */
.section { padding: 112px 0 }
.section-heading { text-align: center; margin: 0 auto 48px }

.section-heading h2,
.about h2 { margin-bottom: 10px; font-size: clamp(30px, 3.4vw, 48px); letter-spacing: -1.6px; line-height: 1.05 }

.section-heading > p:last-child { margin: 0; color: var(--muted) }

/* Services */
.services { padding: 92px 0 0; background: var(--ink-soft) }
.services .section-heading { margin-bottom: 24px }
.services .section-heading h2 { font-size: clamp(28px, 3vw, 40px) }
.services .section-heading p { font-size: 13px }

.service-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 2px;
	width: 100%;
	background: var(--ink);
}

.service {
	position: relative;
	overflow: hidden;
	aspect-ratio: 2 / 1;
	background: #101110;
}

.service img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform .6s ease, filter .6s ease;
}

.service:after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(8, 9, 8, 0) 40%, rgba(8, 9, 8, .88) 100%);
	pointer-events: none;
}

.service h3 {
	position: absolute;
	z-index: 1;
	left: 28px;
	bottom: 24px;
	max-width: calc(100% - 48px);
	margin: 0;
	color: var(--paper);
	font-size: 15px;
	line-height: 1.2;
	letter-spacing: .4px;
	text-shadow: 0 1px 14px rgba(0, 0, 0, .55);
}

.service:hover img { transform: scale(1.05); filter: brightness(.8) }

/* About */
.about { background: #1b1c1a }

.about-grid {
	display: grid;
	grid-template-columns: .9fr 1fr;
	align-items: center;
	gap: clamp(45px, 8vw, 120px);
}

.about__copy > p:not(.eyebrow) { color: #babbb4; max-width: 520px }
.about ul { padding: 0; margin: 24px 0 28px; list-style: none; color: #cccac2; font-size: 13px }
.about li { margin: 8px 0 }
.about li:before { content: "—"; color: var(--gold); margin-right: 10px }

.text-link {
	display: inline-flex;
	gap: 10px;
	border-bottom: 1px solid var(--gold);
	padding-bottom: 6px;
	color: var(--gold);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.text-link span,
.whatsapp-link span { font-size: 16px; line-height: .8 }

.about__image {
	display: grid;
	grid-template-rows: minmax(0, 58fr) minmax(0, 42fr);
	gap: 10px;
	height: 460px;
	margin: 0;
}

.about__image-main,
.about__image-row { min-height: 0; overflow: hidden }

.about__image-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	grid-template-rows: minmax(0, 1fr);
	gap: 10px;
}

.about__image img { width: 100%; height: 100%; min-height: 0; object-fit: cover; filter: saturate(.72) }
.about__image-main img { object-position: center 40% }
.about__image-row img:last-child { object-position: center 35% }

/* Contact */
.contact { background: #151615 }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 50px }

.contact-details h3,
.quote-form h3 { margin-bottom: 19px; font-size: 15px; letter-spacing: .2px }

.contact-details > div:not(.contact-map) { padding: 13px 0; border-top: 1px solid var(--line) }

.contact-details span {
	display: block;
	color: var(--gold);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.contact-details p,
.contact-details a:not(.whatsapp-link) { display: block; margin: 3px 0 0; color: #c8c8c1; font-size: 13px }

.whatsapp-link {
	display: inline-flex;
	gap: 10px;
	margin: 19px 0;
	color: #56bc78;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.contact-map {
	width: 100%;
	aspect-ratio: 16 / 8;
	overflow: hidden;
}

.contact-map iframe { display: block; width: 100%; height: 100%; border: 0 }

.quote-form { padding: 29px; background: #232421 }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px }

.quote-form label {
	display: block;
	margin-bottom: 13px;
	color: #a5a59e;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.quote-form input,
.quote-form textarea {
	width: 100%;
	margin-top: 5px;
	border: 1px solid #373833;
	outline: 0;
	background: #191a18;
	color: var(--paper);
	font: inherit;
	font-size: 13px;
	padding: 12px;
	resize: vertical;
}

.quote-form input:focus,
.quote-form textarea:focus { border-color: var(--gold) }
.quote-form input::placeholder,
.quote-form textarea::placeholder { color: #5e5f59 }

.form-feedback {
	margin: 0 0 18px;
	padding: 11px 13px;
	border-left: 3px solid currentColor;
	background: rgba(255, 255, 255, .04);
	font-size: 12px;
	text-transform: none;
}

.form-feedback--success { color: #73c88d }
.form-feedback--error { color: #e6a09a }

/* Footer */
.site-footer { padding: 55px 0 0; border-top: 1px solid var(--line); background: #111210 }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr 1fr; gap: 50px; padding-bottom: 45px }

.footer-brand { display: flex; align-items: center; gap: 11px; margin-bottom: 12px }
.footer-brand img { width: auto; height: 36px; object-fit: contain }
.footer-brand span { margin: 0; color: var(--paper); font-size: 13px; font-weight: 800; letter-spacing: 1.5px }

.footer-grid p,
.footer-grid a:not(.footer-brand),
.footer-grid > div > span { display: block; margin: 5px 0; color: #898a84; font-size: 12px }

.footer-grid h3 { margin-bottom: 12px; color: var(--gold); font-size: 9px; letter-spacing: 1.2px }
.footer-grid a:not(.footer-brand):hover { color: var(--paper) }

.footer-bottom {
	padding: 16px 0;
	border-top: 1px solid var(--line);
	color: #666762;
	font-size: 10px;
	text-align: center;
}

/* WhatsApp */
.whatsapp-float {
	position: fixed;
	z-index: 20;
	right: 20px;
	bottom: 20px;
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border: 2px solid #151615;
	border-radius: 4px;
	background: #25d366;
	color: #102b18;
	box-shadow: 0 6px 20px rgba(0, 0, 0, .3);
}

.whatsapp-float svg { width: 24px; height: 24px; fill: currentColor }

.whatsapp-float span {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
}

/* Reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease }
.reveal.is-visible { opacity: 1; transform: none }

@media (max-width: 1024px) {
	.service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) }
	.service { aspect-ratio: 16 / 10 }
	.about__image { height: 420px }
}

@media (max-width: 760px) {
	.container { width: min(calc(100% - 36px), var(--content)) }
	.header-inner { height: 65px; gap: 15px }
	.brand img { height: 33px }
	.header-cta { display: none }

	.menu-toggle {
		display: flex;
		flex-direction: column;
		gap: 4px;
		align-items: center;
		justify-content: center;
		margin-left: auto;
		width: 37px;
		height: 37px;
		border: 0;
		background: transparent;
	}

	.menu-toggle span:not(.screen-reader-text) {
		display: block;
		width: 20px;
		height: 1px;
		background: var(--paper);
		transition: transform .2s;
	}

	.primary-nav {
		position: absolute;
		top: 65px;
		right: 0;
		left: 0;
		display: none;
		margin: 0;
		padding: 14px 18px;
		background: #161716;
		border-bottom: 1px solid var(--line);
	}

	.primary-nav.is-open { display: block }
	.primary-nav ul { display: block }
	.primary-nav li + li { border-top: 1px solid var(--line) }
	.primary-nav a { display: block; padding: 13px 0 }

	.hero { min-height: 680px }
	.hero__slide { background-position: 62% center }
	.hero__shade { background: linear-gradient(90deg, rgba(12, 13, 12, .88), rgba(12, 13, 12, .57)) }
	.hero__content { padding-top: 85px }
	.hero h1 { font-size: clamp(38px, 11vw, 54px); letter-spacing: -1.8px }
	.hero__copy { font-size: 13px }
	.hero__metrics { margin-top: 30px }
	.hero__metrics div { min-width: 106px }
	.hero__scroll { display: none }

	.section { padding: 75px 0 }
	.section-heading { margin-bottom: 35px }

	.services { padding-top: 76px }
	.services .section-heading { margin-bottom: 26px }
	.service-grid { grid-template-columns: 1fr; gap: 2px }
	.service { aspect-ratio: 16 / 9 }
	.service h3 { left: 18px; bottom: 15px; font-size: 14px }

	.about-grid,
	.contact-grid { grid-template-columns: 1fr; gap: 40px }

	.about__image { order: -1; height: 340px; gap: 8px }
	.about__image-row { gap: 8px }

	.form-row,
	.footer-grid { grid-template-columns: 1fr }
	.footer-grid { gap: 27px }
	.quote-form { padding: 22px }
	.ticker { font-size: 8px }
	.whatsapp-float { right: 14px; bottom: 14px; width: 45px; height: 45px }
}

@media (max-width: 400px) {
	.about__image { height: 300px }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto }
	.ticker__track { animation: none; transform: translate3d(50vw, 0, 0) }
	.reveal { opacity: 1; transform: none; transition: none }
	.hero__slide { transition: none }
	.service img { transition: none }
}
