
:root
{
	--gold: #d8911f;
	--gold-dark: #9d6412;
	--dark: #171819;
	--ink: #242424;
	--muted: #666;
	--cream: #f8f3eb;
	--line: #e8dfd3;
	--white: #fff;
}

*
{
	box-sizing: border-box;
}

body
{
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
	color: var(--ink);
	background: var(--white);
	line-height: 1.55;
}

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

a
{
	color: inherit;
}

.container
{
	width: min(1180px, calc(100% - 42px));
	margin: 0 auto;
}

.top-strip
{
	background: var(--dark);
	color: white;
	font-size: 14px;
}

.top-strip__inner
{
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.top-strip a
{
	color: white;
	text-decoration: none;
	margin-left: 24px;
	font-weight: 700;
}

.header
{
	background: rgb(31, 67, 68);
	border-bottom: 1px solid rgba(255,255,255,0.08);
	position: sticky;
	top: 0;
	z-index: 50;
}

.header__inner
{
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}



.logo
{
	display: flex;
	align-items: center;
	gap: 14px;
	text-decoration: none;
}

.logo__house
{
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	line-height: 1;
	color: #d8952a;
}

.logo__text
{
	display: flex;
	flex-direction: column;
	align-items: center;
	line-height: 1;
}

.logo__text strong
{
	font-size: 1.62rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	color: var(--gold);
}

.logo__text em
{
	margin-top: 4px;
	font-style: normal;
	font-weight: 550;
	font-size: 0.87rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.7);
}

.burger
{
	display: none !important;
	flex-direction: column;
	justify-content: center;
	gap: 5px;

	width: 46px;
	height: 46px;

	background: transparent;
	border: 0;
	cursor: pointer;
	padding: 0;
}

.burger span
{
	display: block;
	width: 24px;
	height: 2px;
	background: var(--gold);
	border-radius: 2px;
}

.nav
{
	display: flex;
	align-items: center;
	gap: 30px;
}

.nav a
{
	color: var(--gold);
	text-decoration: none;
	text-transform: uppercase;
	font-weight: 900;
	font-size: 13px;
	letter-spacing: 0.4px;
}

.nav a:hover
{
	color: rgba(255,255,255,0.7);
}

.nav a.active
{
	color: rgba(255,255,255,0.7);
}
.btn
{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0 25px;
	background: var(--gold);
	color: white;
	border-radius: 3px;
	border: 0;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: 900;
	font-size: 13px;
	letter-spacing: 0.4px;
	cursor: pointer;
}

.btn:hover
{
	background: var(--gold-dark);
}

.btn--quote
{
	min-height: 42px;
}

.btn--outline
{
	background: white;
	color: var(--gold-dark);
	border: 1px solid var(--gold);
}

.btn--outline-dark
{
	background: transparent;
	border: 1px solid var(--gold);
}

.hero
{
	position: relative;
	overflow: hidden;
	background: linear-gradient(90deg, white 0%, #fbfaf7 52%, #eee7dc 100%);
}

.hero__inner
{
	min-height: 520px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 30px;
}

.hero__copy
{
	padding: 60px 0;
	position: relative;
	z-index: 2;
}

.hero h1
{
	font-size: clamp(44px, 5.6vw, 72px);
	line-height: 0.98;
	letter-spacing: -1px;
	text-transform: uppercase;
	margin: 0 0 22px;
	max-width: 650px;
	font-weight: 950;
}



.hero h1::first-line
{
	color: var(--ink);
}

.hero p
{
	font-size: 18px;
	color: #4e4e4e;
	max-width: 520px;
	margin-bottom: 28px;
}

.hero__image
{
	position: relative;
	overflow: hidden;

	height: 560px;

	
}

.hero__image img
{
	width: 100%;
	height: 100%;

	object-fit: cover;
	object-position: center center;

	display: block;
}
.highlight
{
	color: var(--gold);
}

.badges
{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	max-width: 620px;
	margin: 28px 0 34px;
}

.badges div
{
	display: grid;
	grid-template-columns: 42px 1fr;
	column-gap: 10px;
	align-items: center;
}

.badges span
{
	grid-row: span 2;
	color: var(--gold);
	font-size: 33px;
	line-height: 1;
}

.badges strong
{
	font-size: 14px;
}

.badges em
{
	font-style: normal;
	color: var(--muted);
	font-size: 13px;
}

.hero__buttons
{
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

.hero__actions
{
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}


.services-preview
{
	background: var(--cream);
	padding: 70px 0 82px;
}

.services-preview--page
{
	background: var(--cream);
}

.service-card
{
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease,
		border-color 0.2s ease;
}

.service-card:hover
{
	transform: translateY(-6px);

	border-color: rgba(216,145,31,0.35);

	box-shadow:
		0 18px 40px rgba(0,0,0,0.10);
}

.service-card:hover span
{
	transform: scale(1.06);
}

.service-card span
{
	transition: transform 0.2s ease;
}

.section-title
{
	text-align: center;
	margin-bottom: 34px;
}

.section-title p,
.small-title,
.page-title p
{
	font-size: 18px;
	color: #5d5d5d;
	max-width: 620px;
	margin-top: 18px;
	line-height: 1.7;
}
.section-title h2
{
	text-transform: uppercase;
	font-size: 42px;
	line-height: 1;
	margin: 0;
	font-weight: 950;
}

.narrow-text
{
	max-width: 920px;
	background: white;

	padding:
		60px
		clamp(26px, 5vw, 70px);

	border: 1px solid var(--line);

	box-shadow:
		0 12px 34px rgba(0,0,0,0.06);
}

.narrow-text h2
{
	font-size: clamp(34px, 4vw, 52px);
	line-height: 1;
	text-transform: uppercase;
	margin-bottom: 28px;
	font-weight: 950;
}



.narrow-text p
{
	font-size: 18px;
	line-height: 1.8;
	color: #555;
	margin-bottom: 22px;
	max-width: 760px;
}

.icon-grid
{
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 14px;
}

.icon-grid a,
.icon-grid div
{
	background: white;
	border: 1px solid var(--line);
	box-shadow: 0 7px 20px rgba(0,0,0,0.07);
	min-height: 210px;
	padding: 28px 18px;
	text-align: center;
	text-decoration: none;
}

.icon-grid span
{
	display: block;
	color: var(--gold);
	font-size: 54px;
	line-height: 1;
	margin-bottom: 16px;
}

.icon-grid h3
{
	font-size: 18px;
	line-height: 1.15;
	margin: 0 0 9px;
}

.icon-grid p
{
	color: var(--muted);
	font-size: 14px;
	margin: 0;
}

.center
{
	text-align: center;
	margin-top: 30px;
}

.about-split
{
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	background: white;
}

.about-split__image img
{
	width: 100%;
	height: 420px;
	object-fit: cover;
}

.about-split__text
{
	padding: 52px 8vw;
	align-self: center;
}

.about-split h2
{
	text-transform: uppercase;
	font-size: 38px;
	line-height: 1.05;
	margin: 0 0 18px;
}

.about-split p
{
	color: #555;
}

.about-split ul
{
	list-style: none;
	padding: 0;
	margin: 20px 0 26px;
}

.about-split li
{
	margin: 8px 0;
}

.about-split li:before
{
	content: "✓";
	color: var(--gold);
	font-weight: 900;
	margin-right: 8px;
}

.reviews-section
{
	padding: 80px 0;
	background: #f7f4ee;
}

.reviews-grid
{
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.review-card
{
	background: #ffffff;
	padding: 28px;
	border-radius: 18px;
	border: 1px solid rgba(0,0,0,0.06);
	box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

.stars
{
	color: #d8952a;
	letter-spacing: 2px;
	margin-bottom: 14px;
}

.review-card p
{
	line-height: 1.7;
	color: #444;
}

.review-card strong
{
	display: block;
	margin-top: 18px;
}

.review-card span
{
	color: #888;
	font-size: 0.9rem;
}

@media (max-width: 900px)
{
	.reviews-grid
	{
		grid-template-columns: 1fr;
	}
}
.cta
{
	background:
		linear-gradient(90deg, rgba(23,24,25,0.96), rgba(23,24,25,0.86)),
		url("assets/images/work4.jpg") center / cover;
	color: white;
	padding: 35px 0;
}

.cta__inner
{
	display: grid;
	grid-template-columns: 70px 1fr auto;
	align-items: center;
	gap: 24px;
}

.cta__icon
{
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: var(--gold);
	display: grid;
	place-items: center;
	font-size: 28px;
}

.cta h2
{
	text-transform: uppercase;
	margin: 0;
	font-size: 30px;
}

.cta p
{
	margin: 0;
	color: rgba(255,255,255,0.8);
}

.cta__buttons
{
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.footer
{
	background: var(--dark);
	color: white;
}

.footer__grid
{
	display: grid;
	grid-template-columns: 1.4fr 0.9fr 1.1fr 1fr;
	gap: 38px;
	padding: 50px 0;
}
.logo--footer
{
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 18px;
}

.logo--footer strong
{
	color: white;
}

.logo--footer em
{
	color: rgba(255,255,255,0.7);
}
.footer p,
.footer a
{
	color: rgba(255,255,255,0.72);
}

.footer a
{
	display: flex;
	text-decoration: none;
	margin: 7px 0;
}

.footer h3
{
	color: white;
	text-transform: uppercase;
	font-size: 14px;
}

.footer__bottom
{
	background: var(--gold);
	color: white;
	text-align: center;
	padding: 13px;
	font-size: 13px;
}



.page-title
{
	background: var(--cream);
	padding: 120px 0 90px;
}

.page-title h1
{
	font-size: clamp(44px, 5.6vw, 72px);
	line-height: 0.98;
	letter-spacing: -1px;
	text-transform: uppercase;
	margin: 0;
	max-width: 850px;
	font-weight: 950;
	color: var(--ink);
}


.plain-section
{
	padding: 70px 0;
}

.two-col,
.contact-grid
{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 38px;
	align-items: start;
}

.info-list
{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.info-list div,
.contact-card,
.form
{
	background: white;
	border: 1px solid var(--line);
	box-shadow: 0 7px 20px rgba(0,0,0,0.06);
	padding: 24px;
}

.info-list strong
{
	display: block;
	color: var(--gold-dark);
	margin-bottom: 6px;
}

.info-list span
{
	color: var(--muted);
}

.gallery-grid
{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.gallery-grid a
{
	position: relative;
	display: block;
	overflow: hidden;
	background: var(--dark);
	text-decoration: none;
}

.gallery-grid img
{
	width: 100%;
	height: 250px;
	object-fit: cover;
	transition: transform .25s ease;
}

.gallery-grid a:hover img
{
	transform: scale(1.04);
}

.gallery-grid span
{
	position: absolute;
	left: 12px;
	right: 12px;
	bottom: 12px;
	padding: 8px 10px;
	background: rgba(23,24,25,0.85);
	color: white;
	font-weight: 800;
	text-align: center;
	font-size: 13px;
}

.contact-card a
{
	color: var(--gold-dark);
	font-weight: 800;
}

.form
{
	display: grid;
	gap: 15px;
}

.form label
{
	display: grid;
	gap: 7px;
	font-weight: 800;
}

.form input,
.form textarea
{
	border: 1px solid var(--line);
	padding: 13px;
	font: inherit;
}

.whatsapp-float
{
	position: fixed;
	right: 18px;
	bottom: 18px;
	z-index: 100;
	background: #25D366;
	color: white;
	border-radius: 999px;
	padding: 13px 17px;
	font-weight: 900;
	text-decoration: none;
	box-shadow: 0 9px 24px rgba(0,0,0,.22);
}

@media (max-width: 1000px)
{
	.top-strip__inner
	{
		height: auto;
		padding: 16px 0;
		flex-direction: column;
		align-items: flex-start;
	}

	.header__inner
	{
		position: relative;
		height: auto;
		min-height: 82px;
		padding: 16px 0;

		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}

	.burger
	{
		display: flex !important;
	}

	.nav
	{
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;

		display: none;
		flex-direction: column;
		align-items: flex-start;

		width: 100%;
		gap: 18px;
		padding: 20px 24px;

		background: rgb(31, 67, 68);
		border-top: 1px solid rgba(255,255,255,0.08);
		box-shadow: 0 14px 28px rgba(0,0,0,0.18);

		overflow: visible;
	}

	.nav.open
	{
		display: flex;
	}

	.btn--quote
	{
		display: none;
	}

	.hero__inner,
	.about-split,
	.two-col,
	.contact-grid,
	.footer__grid
	{
		grid-template-columns: 1fr;
	}

	.hero__image
	{
		min-height: 320px;
	}

	.icon-grid,
	.gallery-grid
	{
		grid-template-columns: repeat(2, 1fr);
	}

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

@media (max-width: 600px)
{
	.container
	{
		width: min(100% - 28px, 1180px);
	}

	.hero h1
	{
		font-size: 39px;
	}

	.badges,
	.review-grid,
	.icon-grid,
	.gallery-grid,
	.info-list
	{
		grid-template-columns: 1fr;
	}

	.hero__image
	{
		min-height: 260px;
	}

	.about-split__text
	{
		padding: 38px 22px;
	}

	.top-strip a
	{
		margin: 8px 12px 0 0;
		display: inline-block;
	}
}
